31 lines
565 B
JavaScript
31 lines
565 B
JavaScript
import ngModule from '../module';
|
|
import Section from 'salix/components/section';
|
|
|
|
class Controller extends Section {
|
|
set ticket(data) {
|
|
if (!data) return;
|
|
|
|
this.data = Object.assign({}, data);
|
|
}
|
|
|
|
registerChild(child) {
|
|
this.child = child;
|
|
}
|
|
|
|
onStepChange() {
|
|
return this.child.onStepChange();
|
|
}
|
|
|
|
onSubmit() {
|
|
this.child.onSubmit();
|
|
}
|
|
}
|
|
|
|
ngModule.component('vnTicketBasicData', {
|
|
template: require('./index.html'),
|
|
bindings: {
|
|
ticket: '<'
|
|
},
|
|
controller: Controller
|
|
});
|