Commit 765f6ea3 authored by liuzeheng's avatar liuzeheng

目的城市筛选

parent 1ef08bfc
...@@ -739,12 +739,31 @@ export default { ...@@ -739,12 +739,31 @@ export default {
this.objectiveId = ""; this.objectiveId = "";
this.destWarehouseId = ""; this.destWarehouseId = "";
this.findByprovinceCode(); this.findByprovinceCode();
//重新加载目的城市
getRegionList(4, 4).then(({data}) => {
this.AddressCity = data;
})
.catch(error => {
console.log(error);
});
} }
}, },
objectiveId: { objectiveId: {
deep:true, //深度监听 deep:true, //深度监听
handler () { handler () {
this.findBycityCode(); this.findBycityCode();
getRegionList(5, 5).then(({data}) => {
this.AddressTown = data;
})
.catch(error => {
console.log(error);
});
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment