import ngModule from '../module'; import Section from 'salix/components/section'; import './style.scss'; class Controller extends Section { onSubmit() { this.$.watcher.submit().then(() => { if (this.aclService.hasAny(['salesAssistant'])) this.$state.go('claim.card.detail'); }); } } ngModule.component('vnClaimBasicData', { template: require('./index.html'), controller: Controller, bindings: { claim: '<' } });