2019-03-23 15:16:47 +00:00
|
|
|
import ngModule from '../module';
|
|
|
|
|
2019-09-30 06:26:51 +00:00
|
|
|
class Controller {
|
|
|
|
constructor($scope, $state) {
|
|
|
|
this.$scope = $scope;
|
|
|
|
this.$state = $state;
|
|
|
|
}
|
|
|
|
|
|
|
|
onSubmit() {
|
|
|
|
this.$scope.watcher.submit().then(() => {
|
|
|
|
this.card.reload();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2019-03-23 15:16:47 +00:00
|
|
|
ngModule.component('vnRouteBasicData', {
|
|
|
|
template: require('./index.html'),
|
2019-09-30 06:26:51 +00:00
|
|
|
controller: Controller,
|
2019-03-23 15:16:47 +00:00
|
|
|
bindings: {
|
|
|
|
route: '<'
|
2019-09-30 06:26:51 +00:00
|
|
|
},
|
|
|
|
require: {
|
|
|
|
card: '^vnRouteCard'
|
2019-03-23 15:16:47 +00:00
|
|
|
}
|
|
|
|
});
|