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

15 lines
337 B
JavaScript
Raw Normal View History

2018-07-18 12:38:43 +00:00
import ngModule from '../module';
2020-03-17 14:18:02 +00:00
import Section from 'salix/components/section';
2018-07-18 12:38:43 +00:00
2020-03-17 14:18:02 +00:00
export default class Controller extends Section {
2020-04-25 09:50:04 +00:00
preview(order) {
this.selectedOrder = order;
this.$.summary.show();
2018-07-18 12:38:43 +00:00
}
}
ngModule.component('vnOrderIndex', {
template: require('./index.html'),
controller: Controller
});