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']
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-24 12:22:30 +00:00
|
|
|
ngModule.vnComponent('vnTicketPicture', {
|
2018-08-03 05:52:37 +00:00
|
|
|
template: require('./index.html'),
|
2021-05-24 08:31:51 +00:00
|
|
|
controller: Controller,
|
|
|
|
bindings: {
|
|
|
|
ticket: '<'
|
|
|
|
}
|
2018-08-03 05:52:37 +00:00
|
|
|
});
|