@@ -80,7 +80,9 @@ export default {
.then((res) => res.json())
.then((res) => {
console.log('🚀 ~ file: index.vue ~ line 84 ~ .then ~ res', res)
- this.list = res.districts[0].districts
+ var cityList = res.districts[0].districts
+ cityList.splice(23, 3)
+ this.list = cityList
localStorage.setItem('area', this.list)
this.loading = false
})