salix/modules/order/front/create/index.js

15 lines
380 B
JavaScript
Raw Normal View History

2018-03-14 10:41:19 +00:00
import ngModule from '../module';
2020-03-17 14:18:02 +00:00
import Section from 'salix/components/section';
2018-03-14 10:41:19 +00:00
2020-03-17 14:18:02 +00:00
class Controller extends Section {
2018-07-09 11:54:43 +00:00
async onSubmit() {
let newOrderID = await this.$.card.createOrder();
this.$state.go('order.card.summary', {id: newOrderID});
2018-03-14 10:41:19 +00:00
}
}
ngModule.component('vnOrderCreate', {
template: require('./index.html'),
controller: Controller
2018-03-14 10:41:19 +00:00
});