salix/modules/ticket/front/basic-data/index.js

37 lines
656 B
JavaScript
Raw Normal View History

2018-04-10 05:48:04 +00:00
import ngModule from '../module';
class Controller {
constructor($scope, $state) {
this.$scope = $scope;
this.$state = $state;
}
set ticket(data) {
if (!data) return;
2018-04-10 05:48:04 +00:00
this.data = Object.assign({}, data);
}
registerChild(child) {
this.child = child;
2018-04-10 05:48:04 +00:00
}
onStepChange(state) {
return this.child.onStepChange(state);
}
onSubmit() {
this.child.onSubmit();
2018-04-10 05:48:04 +00:00
}
}
Controller.$inject = ['$scope', '$state'];
ngModule.component('vnTicketBasicData', {
template: require('./index.html'),
2018-04-10 05:48:04 +00:00
bindings: {
ticket: '<'
},
controller: Controller
});