salix/modules/ticket/front/picture/index.js

25 lines
535 B
JavaScript
Raw Normal View History

2018-08-03 05:52:37 +00:00
import ngModule from '../module';
2020-03-18 07:35:59 +00:00
import Section from 'salix/components/section';
2018-08-03 05:52:37 +00:00
2020-03-18 07:35:59 +00:00
class Controller extends Section {
constructor($element, $) {
super($element, $);
2018-08-03 05:52:37 +00:00
this.filter = {
include: {
relation: 'item',
scope: {
field: ['name', 'image']
}
}
};
}
}
ngModule.vnComponent('vnTicketPicture', {
2018-08-03 05:52:37 +00:00
template: require('./index.html'),
controller: Controller,
bindings: {
ticket: '<'
}
2018-08-03 05:52:37 +00:00
});