salix/modules/agency/front/delivery-days/index.js

23 lines
483 B
JavaScript
Raw Normal View History

2019-09-25 18:06:42 +00:00
import ngModule from '../module';
import './style.scss';
class Controller {
constructor($, $http) {
Object.assign(this, {
$,
$http
});
}
onSubmit() {
this.$http.get(`Zones/getEvents`, {params: this.params})
2019-10-23 15:38:35 +00:00
.then(res => this.$.data = res.data);
2019-09-25 18:06:42 +00:00
}
}
Controller.$inject = ['$scope', '$http'];
ngModule.component('vnZoneDeliveryDays', {
template: require('./index.html'),
controller: Controller
});