Merge branch 'master' of http://yun.pashanhoo.com:9090/bdc/bdcdj-web
Showing
1 changed file
with
2 additions
and
2 deletions
... | @@ -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 | } | ... | ... |
-
Please register or sign in to post a comment