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

20 lines
448 B
JavaScript
Raw Normal View History

2019-09-25 18:06:42 +00:00
import ngModule from '../module';
2019-11-14 13:37:18 +00:00
import Section from 'salix/components/section';
2019-09-25 18:06:42 +00:00
import './style.scss';
2019-11-14 13:37:18 +00:00
class Controller extends Section {
$onInit() {
this.$.params = {};
2019-09-25 18:06:42 +00:00
}
onSubmit() {
2019-11-14 13:37:18 +00:00
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
}
}
ngModule.component('vnZoneDeliveryDays', {
template: require('./index.html'),
controller: Controller
});