salix/client/ticket/src/list/ticket-list.js

27 lines
534 B
JavaScript
Raw Normal View History

2018-03-12 13:02:29 +00:00
import ngModule from '../module';
2018-03-14 10:41:19 +00:00
import './ticket-item';
import './style.scss';
2018-03-12 13:02:29 +00:00
export default class Controller {
2018-04-10 05:48:04 +00:00
constructor($scope) {
this.$scope = $scope;
this.ticketSelected = null;
}
2018-03-12 13:02:29 +00:00
search(index) {
index.accept();
}
2018-04-10 05:48:04 +00:00
openSummary(ticket) {
this.ticketSelected = ticket;
this.$scope.dialogSummaryTicket.show();
}
2018-03-12 13:02:29 +00:00
}
2018-04-10 05:48:04 +00:00
Controller.$inject = ['$scope'];
2018-03-12 13:02:29 +00:00
2018-03-14 10:41:19 +00:00
ngModule.component('vnTicketList', {
template: require('./ticket-list.html'),
2018-03-12 13:02:29 +00:00
controller: Controller
});