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

26 lines
464 B
JavaScript
Raw Normal View History

2019-03-23 15:16:47 +00:00
import ngModule from '../module';
class Controller {
2019-10-25 11:29:05 +00:00
constructor($scope) {
this.$ = $scope;
}
onSubmit() {
2019-10-25 11:29:05 +00:00
this.$.watcher.submit().then(() => {
this.card.reload();
});
}
}
2019-10-25 11:29:05 +00:00
Controller.$inject = ['$scope'];
2019-03-23 15:16:47 +00:00
ngModule.component('vnRouteBasicData', {
template: require('./index.html'),
controller: Controller,
2019-03-23 15:16:47 +00:00
bindings: {
route: '<'
},
require: {
card: '^vnRouteCard'
2019-03-23 15:16:47 +00:00
}
});