22 lines
525 B
JavaScript
22 lines
525 B
JavaScript
|
import ngModule from '../module';
|
||
|
import Section from 'salix/components/section';
|
||
|
|
||
|
class Controller extends Section {
|
||
|
constructor($element, $) {
|
||
|
super($element, $);
|
||
|
}
|
||
|
|
||
|
async $onInit() {
|
||
|
this.$state.go('ticket.card.summary', {id: this.$params.id});
|
||
|
window.location.href = await this.vnApp.getUrl(`ticket/${this.$params.id}/sms`);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
ngModule.vnComponent('vnTicketSms', {
|
||
|
template: require('./index.html'),
|
||
|
controller: Controller,
|
||
|
bindings: {
|
||
|
ticket: '<'
|
||
|
}
|
||
|
});
|