1
xuxy
2024-08-10 969d09e9e7bd44248d63cf929a70a49794fc604d
sub_pages/partner/partner-info/partner-info.vue
@@ -241,10 +241,17 @@
            }
         },
         async init_area() {
            const res = await this.$http.request('get', '/api/pub/china/area/json')
            // console.log('area', JSON.parse(res.data))
            this.regionDataPlus = res.data && JSON.parse(res.data.replaceAll('code', 'value').replaceAll('name',
               'text')) || []
            var a = this.$storage.getItem('cache_area')
            if (a) {
               this.regionDataPlus = JSON.parse(a) || []
            } else {
               const res = await this.$http.request('get', '/api/pub/china/area/json')
               // console.log('area', JSON.parse(res.data))
               this.regionDataPlus = res.data && JSON.parse(res.data.replaceAll('code', 'value').replaceAll(
                  'name',
                  'text')) || []
               this.$storage.setItem('cache_area', JSON.stringify(this.regionDataPlus))
            }