feature_0521
zhenghuang 5 years ago
parent 4ab2dc27e7
commit bdeeec7f92

@ -20,6 +20,7 @@
prop="">
<Select v-model="formValidate.organizationId"
filterable
@on-change="selectCompany"
placeholder="全部"
clearable>
<Option v-for="(item, index) in companyList"
@ -105,6 +106,7 @@ export default {
saving: false,
data: [],
companyList: [],
customerId: null,
shopList: [],
showUse: false,
activityInstance: {},
@ -112,7 +114,7 @@ export default {
date: null,
organizationId: null,
storeId: null,
status: 0,
status: 2,
},
activityData: [
{
@ -271,10 +273,15 @@ export default {
});
});
},
selectCompany (value) {
this.customerId = value;
this.getShopInfo();
},
getShopInfo () {
let that = this;
let data = {
userId: JSON.parse(sessionStorage.getItem("loginInfo")).userId,
customerIds: this.customerId
};
ActivityManager.getShop(data, function (data) {
that.shopList = [];

Loading…
Cancel
Save