bcc4f9b6 by “miaofang
1 parent e21eb650
...@@ -203,8 +203,8 @@ export default { ...@@ -203,8 +203,8 @@ export default {
203 this.isIndeterminate = 203 this.isIndeterminate =
204 checkedCount > 0 && checkedCount < this.cities.length; 204 checkedCount > 0 && checkedCount < this.cities.length;
205 let lists = []; 205 let lists = [];
206 this.cities.forEach((item, index) => { 206 this.checkedCities.forEach((el) => {
207 this.checkedCities.forEach((el) => { 207 this.cities.forEach((item, index) => {
208 if (item.name == el) { 208 if (item.name == el) {
209 lists.push(this.cities[index]); 209 lists.push(this.cities[index]);
210 } 210 }
......