Commit b7c16ca8 by caoyanzhi

Merge branch 'bugfix/自提点回显bug'

parents 4293ce71 e00e5a47
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
<div v-for="(v, i) in currentCityList" :key="i" class="list-item"> <div v-for="(v, i) in currentCityList" :key="i" class="list-item">
<div> <div>
<el-checkbox :indeterminate="v.indeterminate" v-model="v.isCheck" @change="checkCityChange()"></el-checkbox> <el-checkbox :indeterminate="v.indeterminate" v-model="v.isCheck" @change="checkCityChange()"></el-checkbox>
<span class="list-name"> {{ v.cityName }}</span> <span class="list-name"> {{ v.label }}</span>
</div> </div>
</div> </div>
</div> </div>
...@@ -78,6 +78,7 @@ export default { ...@@ -78,6 +78,7 @@ export default {
} }
}, },
mounted() { mounted() {
this.currentCityList = this.selectData;
this.getAreaList(); this.getAreaList();
}, },
methods: { methods: {
......
...@@ -106,6 +106,7 @@ export default { ...@@ -106,6 +106,7 @@ export default {
}, },
mounted() { mounted() {
this.selectLeftList = this.selectData; this.selectLeftList = this.selectData;
this.getRightList();
this.getList(); this.getList();
}, },
methods: { methods: {
......
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