salix/modules/travel/front/create/index.js

16 lines
385 B
JavaScript
Raw Normal View History

2019-12-09 11:15:19 +00:00
import ngModule from '../module';
import Section from 'salix/components/section';
class Controller extends Section {
onSubmit() {
return this.$.watcher.submit().then(
res => this.$state.go('travel.card.summary', {id: res.data.id})
);
}
}
ngModule.component('vnTravelCreate', {
template: require('./index.html'),
controller: Controller
});