diff --git a/App.vue b/App.vue
index 2f21178..e027018 100644
--- a/App.vue
+++ b/App.vue
@@ -1,3 +1,42 @@
-
\ No newline at end of file
+
+
+
+
+
\ No newline at end of file
diff --git a/common/global.js b/common/global.js
index f3a8c85..e525566 100644
--- a/common/global.js
+++ b/common/global.js
@@ -1,36 +1,54 @@
-export const stateList = [
+//订单状态数组
+export const stateList = [
{
state: '待支付',
img: 'https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FFybMDtHR-dengdaifukuan.png',
- msg: '等待买家付款'
+ msg: '等待买家付款',
+ tips: '请于15分钟内付款,超时订单将自动关闭'
},
{
state: '待发货',
img: 'https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FEOzVqolp-fahuo.png',
- msg: '等待卖家发货'
+ msg: '等待卖家发货',
+ tips: '耐心等待工艺品发货~'
+ },
+ {
+ state: '退款中',
+ img: '',
+ msg: '退款审核中',
+ tips: '请君耐心等待退款结果'
},
{
state: '已退款',
img: 'https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FlPnvgqCp-yituikuan.png',
- msg: '订单已经退款'
+ msg: '订单已经退款',
+ tips: '希望下次能让君满意'
},
{
state: '待收货',
img: 'https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FEOzVqolp-fahuo.png',
- msg: '商品已发货,注意查收'
+ msg: '商品已发货,注意查收',
+ tips: '非遗工艺品马上到手啦,耐心点'
},
{
state: '交易成功',
img: '',
- msg: '订单完成,感谢您的支持'
+ msg: '订单完成,感谢您的支持',
+ tips: '感谢您的支持'
},
{
state: '交易关闭',
img: 'https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FaHDhacaI-dengdaifukuan.png',
- msg: '您的订单已关闭'
+ msg: '您的订单已关闭',
+ tips: '下次看好了之后再买哦'
}
]
export const stateMap = new Map()
stateList.forEach((item)=>{
stateMap.set(item.state,item)
-})
\ No newline at end of file
+})
+//获取选中日期是星期几方法
+export const weekDay = function(time) {
+ let datelist = ['周日','周一','周二','周三','周四','周五','周六',]
+ return datelist[new Date(time).getDay()];
+}
diff --git a/pages.json b/pages.json
index 7e1c5ab..103d48b 100644
--- a/pages.json
+++ b/pages.json
@@ -149,13 +149,6 @@
"navigationBarTitleText" : ""
}
},
- {
- "path" : "pages/service/productDetail/productDetail",
- "style" :
- {
- "navigationBarTitleText" : ""
- }
- },
{
"path" : "pages/workshop/index/index",
"style" :
@@ -202,7 +195,8 @@
"path" : "pages/store-home/main/testMain",
"style" :
{
- "navigationBarTitleText" : ""
+ "navigationBarTitleText" : "",
+ "enablePullDownRefresh":true //开启下拉刷新
}
},
{
@@ -218,6 +212,27 @@
{
"navigationBarTitleText" : ""
}
+ },
+ {
+ "path" : "pages/Shopping-cart/productmain/testproductmain",
+ "style" :
+ {
+ "navigationBarTitleText" : ""
+ }
+ },
+ {
+ "path" : "pages/workshop/component/testTimePopUp",
+ "style" :
+ {
+ "navigationBarTitleText" : ""
+ }
+ },
+ {
+ "path" : "pages/mine/addressList/addressList",
+ "style" :
+ {
+ "navigationBarTitleText" : ""
+ }
}
],
"plugins" : {
@@ -248,12 +263,12 @@
"text":"首页"
},
{
- "pagePath": "pages/store-home/main/main",
+ "pagePath": "pages/store-home/main/testMain",
"iconPath": "./static/store.png",
"text":"商城"
},
{
- "pagePath": "pages/Shopping-cart/productmain/productmain",
+ "pagePath": "pages/Shopping-cart/productmain/testproductmain",
"iconPath": "./static/shopcar.png",
"text":"购物车"
},
diff --git a/pages/Shopping-cart/newaddress_Info/newaddress_Info.vue b/pages/Shopping-cart/newaddress_Info/newaddress_Info.vue
index 74f8342..3f17a83 100644
--- a/pages/Shopping-cart/newaddress_Info/newaddress_Info.vue
+++ b/pages/Shopping-cart/newaddress_Info/newaddress_Info.vue
@@ -14,11 +14,17 @@
所在地区
-
-
+
+
+
@@ -49,7 +55,6 @@
import {ref , onMounted} from 'vue'
import { testUrl , baseUrl , suiUrl } from '../../../api/request';
import { onLoad, onShow } from '@dcloudio/uni-app';
-import addSelected from '../../../pages/order/component/addSelected.vue'
import emitter from '../../../utils/emitter';
const addressParam = ref({
name: "",
@@ -118,16 +123,6 @@ const newAddress = async () =>{
console.log('res2==>',res.data);
sucRes(res.data.code)
}
- // if(res.data.code === 1) {
- // uni.navigateBack({ //返回上一页
- // })
- // } else {
- // uni.showToast({
- // icon: 'error',
- // title: "新增地址失败"
- // })
- // return;
- // }
}
const sucRes =(res)=>{ //请求成功执行的方法
if(res === 1) {
@@ -142,12 +137,22 @@ const sucRes =(res)=>{ //请求成功执行的方法
return;
}
}
-//跳转回订单页面
-// const jump =()=> {
-// uni.navigateTo({
-// url: '../../../pages/Shopping-cart/address/address'
-// })
-// }
+const chooseLocation = () => { //定位获取地址
+ uni.chooseLocation({
+ success: (res) => {
+ // console.log('详细地址:' + res.address);
+ // console.log('位置名称:' + res.name);
+ addressParam.value.region = res.address
+ addressParam.value.detailAddress = res.name
+ }
+ })
+}
+const bindTimeChange = (e) => { //picker省市区选择
+ // console.log('省--->',e.detail.value[0]);
+ // console.log('市--->',e.detail.value[1]);
+ // console.log('区--->',e.detail.value[2]);
+ addressParam.value.region = e.detail.value[0] + e.detail.value[1] + e.detail.value[2]
+}
diff --git a/pages/home/home.vue b/pages/home/home.vue
index 579bed3..0d2aadc 100644
--- a/pages/home/home.vue
+++ b/pages/home/home.vue
@@ -93,7 +93,7 @@ const jump_feiyi =()=>{ //跳转非遗工坊
}
const jump_store =()=>{
uni.switchTab({
- url: '/pages/store-home/main/main'
+ url: '/pages/store-home/main/testMain'
})
}
const getFonts =()=>{
diff --git a/pages/mine/addressList/addressList.vue b/pages/mine/addressList/addressList.vue
new file mode 100644
index 0000000..28ed431
--- /dev/null
+++ b/pages/mine/addressList/addressList.vue
@@ -0,0 +1,191 @@
+
+
+
+
+
+
+ {{ item.name }}
+ {{ item.phone }}
+
+ 默认
+
+
+
+
+
+
+
+
+ {{ item.region }} {{ item.detailAddress }}
+
+
+
+
+
+ 新增地址
+
+
+
+
+
+
+
diff --git a/pages/mine/main/main.vue b/pages/mine/main/main.vue
index 1a850bc..a5c7649 100644
--- a/pages/mine/main/main.vue
+++ b/pages/mine/main/main.vue
@@ -39,7 +39,7 @@
-
+
-
diff --git a/pages/order/component/addressComponent.vue b/pages/order/component/addressComponent.vue
index 5648707..d0652b1 100644
--- a/pages/order/component/addressComponent.vue
+++ b/pages/order/component/addressComponent.vue
@@ -41,7 +41,6 @@
import { onMounted , ref } from 'vue'
import emitter from '../../../utils/emitter'
import { testUrl , baseUrl , suiUrl } from '../../../api/request';
-// import { userStore } from '../../../store/userStore';
import { onShow } from "@dcloudio/uni-app";
const items = ref([null, null])
const addressList = ref([])
diff --git a/pages/order/component/area.json b/pages/order/component/area.json
deleted file mode 100644
index 6d4e5b0..0000000
--- a/pages/order/component/area.json
+++ /dev/null
@@ -1,15009 +0,0 @@
-[{
- "text": "北京市",
- "value": "110000000000",
- "children": [{
- "text": "市辖区",
- "value": "110100000000",
- "children": [{
- "text": "东城区",
- "value": "110101000000"
- },
- {
- "text": "西城区",
- "value": "110102000000"
- },
- {
- "text": "朝阳区",
- "value": "110105000000"
- },
- {
- "text": "丰台区",
- "value": "110106000000"
- },
- {
- "text": "石景山区",
- "value": "110107000000"
- },
- {
- "text": "海淀区",
- "value": "110108000000"
- },
- {
- "text": "门头沟区",
- "value": "110109000000"
- },
- {
- "text": "房山区",
- "value": "110111000000"
- },
- {
- "text": "通州区",
- "value": "110112000000"
- },
- {
- "text": "顺义区",
- "value": "110113000000"
- },
- {
- "text": "昌平区",
- "value": "110114000000"
- },
- {
- "text": "大兴区",
- "value": "110115000000"
- },
- {
- "text": "怀柔区",
- "value": "110116000000"
- },
- {
- "text": "平谷区",
- "value": "110117000000"
- },
- {
- "text": "密云区",
- "value": "110118000000"
- },
- {
- "text": "延庆区",
- "value": "110119000000"
- }
- ]
- }]
- },
- {
- "text": "天津市",
- "value": "120000000000",
- "children": [{
- "text": "市辖区",
- "value": "120100000000",
- "children": [{
- "text": "和平区",
- "value": "120101000000"
- },
- {
- "text": "河东区",
- "value": "120102000000"
- },
- {
- "text": "河西区",
- "value": "120103000000"
- },
- {
- "text": "南开区",
- "value": "120104000000"
- },
- {
- "text": "河北区",
- "value": "120105000000"
- },
- {
- "text": "红桥区",
- "value": "120106000000"
- },
- {
- "text": "东丽区",
- "value": "120110000000"
- },
- {
- "text": "西青区",
- "value": "120111000000"
- },
- {
- "text": "津南区",
- "value": "120112000000"
- },
- {
- "text": "北辰区",
- "value": "120113000000"
- },
- {
- "text": "武清区",
- "value": "120114000000"
- },
- {
- "text": "宝坻区",
- "value": "120115000000"
- },
- {
- "text": "滨海新区",
- "value": "120116000000"
- },
- {
- "text": "宁河区",
- "value": "120117000000"
- },
- {
- "text": "静海区",
- "value": "120118000000"
- },
- {
- "text": "蓟州区",
- "value": "120119000000"
- },
- {
- "text": "和平区",
- "value": "120101000000"
- },
- {
- "text": "河东区",
- "value": "120102000000"
- },
- {
- "text": "河西区",
- "value": "120103000000"
- },
- {
- "text": "南开区",
- "value": "120104000000"
- },
- {
- "text": "河北区",
- "value": "120105000000"
- },
- {
- "text": "红桥区",
- "value": "120106000000"
- },
- {
- "text": "东丽区",
- "value": "120110000000"
- },
- {
- "text": "西青区",
- "value": "120111000000"
- },
- {
- "text": "津南区",
- "value": "120112000000"
- },
- {
- "text": "北辰区",
- "value": "120113000000"
- },
- {
- "text": "武清区",
- "value": "120114000000"
- },
- {
- "text": "宝坻区",
- "value": "120115000000"
- },
- {
- "text": "滨海新区",
- "value": "120116000000"
- },
- {
- "text": "宁河区",
- "value": "120117000000"
- },
- {
- "text": "静海区",
- "value": "120118000000"
- },
- {
- "text": "蓟州区",
- "value": "120119000000"
- }
- ]
- }]
- },
- {
- "text": "河北省",
- "value": "130000000000",
- "children": [{
- "text": "石家庄市",
- "value": "130100000000",
- "children": [{
- "text": "市辖区",
- "value": "130101000000"
- },
- {
- "text": "长安区",
- "value": "130102000000"
- },
- {
- "text": "桥西区",
- "value": "130104000000"
- },
- {
- "text": "新华区",
- "value": "130105000000"
- },
- {
- "text": "井陉矿区",
- "value": "130107000000"
- },
- {
- "text": "裕华区",
- "value": "130108000000"
- },
- {
- "text": "藁城区",
- "value": "130109000000"
- },
- {
- "text": "鹿泉区",
- "value": "130110000000"
- },
- {
- "text": "栾城区",
- "value": "130111000000"
- },
- {
- "text": "井陉县",
- "value": "130121000000"
- },
- {
- "text": "正定县",
- "value": "130123000000"
- },
- {
- "text": "行唐县",
- "value": "130125000000"
- },
- {
- "text": "灵寿县",
- "value": "130126000000"
- },
- {
- "text": "高邑县",
- "value": "130127000000"
- },
- {
- "text": "深泽县",
- "value": "130128000000"
- },
- {
- "text": "赞皇县",
- "value": "130129000000"
- },
- {
- "text": "无极县",
- "value": "130130000000"
- },
- {
- "text": "平山县",
- "value": "130131000000"
- },
- {
- "text": "元氏县",
- "value": "130132000000"
- },
- {
- "text": "赵县",
- "value": "130133000000"
- },
- {
- "text": "石家庄高新技术产业开发区",
- "value": "130171000000"
- },
- {
- "text": "石家庄循环化工园区",
- "value": "130172000000"
- },
- {
- "text": "辛集市",
- "value": "130181000000"
- },
- {
- "text": "晋州市",
- "value": "130183000000"
- },
- {
- "text": "新乐市",
- "value": "130184000000"
- }
- ]
- },
- {
- "text": "唐山市",
- "value": "130200000000",
- "children": [{
- "text": "市辖区",
- "value": "130201000000"
- },
- {
- "text": "路南区",
- "value": "130202000000"
- },
- {
- "text": "路北区",
- "value": "130203000000"
- },
- {
- "text": "古冶区",
- "value": "130204000000"
- },
- {
- "text": "开平区",
- "value": "130205000000"
- },
- {
- "text": "丰南区",
- "value": "130207000000"
- },
- {
- "text": "丰润区",
- "value": "130208000000"
- },
- {
- "text": "曹妃甸区",
- "value": "130209000000"
- },
- {
- "text": "滦南县",
- "value": "130224000000"
- },
- {
- "text": "乐亭县",
- "value": "130225000000"
- },
- {
- "text": "迁西县",
- "value": "130227000000"
- },
- {
- "text": "玉田县",
- "value": "130229000000"
- },
- {
- "text": "河北唐山芦台经济开发区",
- "value": "130271000000"
- },
- {
- "text": "唐山市汉沽管理区",
- "value": "130272000000"
- },
- {
- "text": "唐山高新技术产业开发区",
- "value": "130273000000"
- },
- {
- "text": "河北唐山海港经济开发区",
- "value": "130274000000"
- },
- {
- "text": "遵化市",
- "value": "130281000000"
- },
- {
- "text": "迁安市",
- "value": "130283000000"
- },
- {
- "text": "滦州市",
- "value": "130284000000"
- }
- ]
- },
- {
- "text": "秦皇岛市",
- "value": "130300000000",
- "children": [{
- "text": "市辖区",
- "value": "130301000000"
- },
- {
- "text": "海港区",
- "value": "130302000000"
- },
- {
- "text": "山海关区",
- "value": "130303000000"
- },
- {
- "text": "北戴河区",
- "value": "130304000000"
- },
- {
- "text": "抚宁区",
- "value": "130306000000"
- },
- {
- "text": "青龙满族自治县",
- "value": "130321000000"
- },
- {
- "text": "昌黎县",
- "value": "130322000000"
- },
- {
- "text": "卢龙县",
- "value": "130324000000"
- },
- {
- "text": "秦皇岛市经济技术开发区",
- "value": "130371000000"
- },
- {
- "text": "北戴河新区",
- "value": "130372000000"
- }
- ]
- },
- {
- "text": "邯郸市",
- "value": "130400000000",
- "children": [{
- "text": "市辖区",
- "value": "130401000000"
- },
- {
- "text": "邯山区",
- "value": "130402000000"
- },
- {
- "text": "丛台区",
- "value": "130403000000"
- },
- {
- "text": "复兴区",
- "value": "130404000000"
- },
- {
- "text": "峰峰矿区",
- "value": "130406000000"
- },
- {
- "text": "肥乡区",
- "value": "130407000000"
- },
- {
- "text": "永年区",
- "value": "130408000000"
- },
- {
- "text": "临漳县",
- "value": "130423000000"
- },
- {
- "text": "成安县",
- "value": "130424000000"
- },
- {
- "text": "大名县",
- "value": "130425000000"
- },
- {
- "text": "涉县",
- "value": "130426000000"
- },
- {
- "text": "磁县",
- "value": "130427000000"
- },
- {
- "text": "邱县",
- "value": "130430000000"
- },
- {
- "text": "鸡泽县",
- "value": "130431000000"
- },
- {
- "text": "广平县",
- "value": "130432000000"
- },
- {
- "text": "馆陶县",
- "value": "130433000000"
- },
- {
- "text": "魏县",
- "value": "130434000000"
- },
- {
- "text": "曲周县",
- "value": "130435000000"
- },
- {
- "text": "邯郸经济技术开发区",
- "value": "130471000000"
- },
- {
- "text": "邯郸冀南新区",
- "value": "130473000000"
- },
- {
- "text": "武安市",
- "value": "130481000000"
- }
- ]
- },
- {
- "text": "邢台市",
- "value": "130500000000",
- "children": [{
- "text": "市辖区",
- "value": "130501000000"
- },
- {
- "text": "襄都区",
- "value": "130502000000"
- },
- {
- "text": "信都区",
- "value": "130503000000"
- },
- {
- "text": "任泽区",
- "value": "130505000000"
- },
- {
- "text": "南和区",
- "value": "130506000000"
- },
- {
- "text": "临城县",
- "value": "130522000000"
- },
- {
- "text": "内丘县",
- "value": "130523000000"
- },
- {
- "text": "柏乡县",
- "value": "130524000000"
- },
- {
- "text": "隆尧县",
- "value": "130525000000"
- },
- {
- "text": "宁晋县",
- "value": "130528000000"
- },
- {
- "text": "巨鹿县",
- "value": "130529000000"
- },
- {
- "text": "新河县",
- "value": "130530000000"
- },
- {
- "text": "广宗县",
- "value": "130531000000"
- },
- {
- "text": "平乡县",
- "value": "130532000000"
- },
- {
- "text": "威县",
- "value": "130533000000"
- },
- {
- "text": "清河县",
- "value": "130534000000"
- },
- {
- "text": "临西县",
- "value": "130535000000"
- },
- {
- "text": "河北邢台经济开发区",
- "value": "130571000000"
- },
- {
- "text": "南宫市",
- "value": "130581000000"
- },
- {
- "text": "沙河市",
- "value": "130582000000"
- }
- ]
- },
- {
- "text": "保定市",
- "value": "130600000000",
- "children": [{
- "text": "市辖区",
- "value": "130601000000"
- },
- {
- "text": "竞秀区",
- "value": "130602000000"
- },
- {
- "text": "莲池区",
- "value": "130606000000"
- },
- {
- "text": "满城区",
- "value": "130607000000"
- },
- {
- "text": "清苑区",
- "value": "130608000000"
- },
- {
- "text": "徐水区",
- "value": "130609000000"
- },
- {
- "text": "涞水县",
- "value": "130623000000"
- },
- {
- "text": "阜平县",
- "value": "130624000000"
- },
- {
- "text": "定兴县",
- "value": "130626000000"
- },
- {
- "text": "唐县",
- "value": "130627000000"
- },
- {
- "text": "高阳县",
- "value": "130628000000"
- },
- {
- "text": "容城县",
- "value": "130629000000"
- },
- {
- "text": "涞源县",
- "value": "130630000000"
- },
- {
- "text": "望都县",
- "value": "130631000000"
- },
- {
- "text": "安新县",
- "value": "130632000000"
- },
- {
- "text": "易县",
- "value": "130633000000"
- },
- {
- "text": "曲阳县",
- "value": "130634000000"
- },
- {
- "text": "蠡县",
- "value": "130635000000"
- },
- {
- "text": "顺平县",
- "value": "130636000000"
- },
- {
- "text": "博野县",
- "value": "130637000000"
- },
- {
- "text": "雄县",
- "value": "130638000000"
- },
- {
- "text": "保定高新技术产业开发区",
- "value": "130671000000"
- },
- {
- "text": "保定白沟新城",
- "value": "130672000000"
- },
- {
- "text": "涿州市",
- "value": "130681000000"
- },
- {
- "text": "定州市",
- "value": "130682000000"
- },
- {
- "text": "安国市",
- "value": "130683000000"
- },
- {
- "text": "高碑店市",
- "value": "130684000000"
- }
- ]
- },
- {
- "text": "张家口市",
- "value": "130700000000",
- "children": [{
- "text": "市辖区",
- "value": "130701000000"
- },
- {
- "text": "桥东区",
- "value": "130702000000"
- },
- {
- "text": "桥西区",
- "value": "130703000000"
- },
- {
- "text": "宣化区",
- "value": "130705000000"
- },
- {
- "text": "下花园区",
- "value": "130706000000"
- },
- {
- "text": "万全区",
- "value": "130708000000"
- },
- {
- "text": "崇礼区",
- "value": "130709000000"
- },
- {
- "text": "张北县",
- "value": "130722000000"
- },
- {
- "text": "康保县",
- "value": "130723000000"
- },
- {
- "text": "沽源县",
- "value": "130724000000"
- },
- {
- "text": "尚义县",
- "value": "130725000000"
- },
- {
- "text": "蔚县",
- "value": "130726000000"
- },
- {
- "text": "阳原县",
- "value": "130727000000"
- },
- {
- "text": "怀安县",
- "value": "130728000000"
- },
- {
- "text": "怀来县",
- "value": "130730000000"
- },
- {
- "text": "涿鹿县",
- "value": "130731000000"
- },
- {
- "text": "赤城县",
- "value": "130732000000"
- },
- {
- "text": "张家口经济开发区",
- "value": "130771000000"
- },
- {
- "text": "张家口市察北管理区",
- "value": "130772000000"
- },
- {
- "text": "张家口市塞北管理区",
- "value": "130773000000"
- }
- ]
- },
- {
- "text": "承德市",
- "value": "130800000000",
- "children": [{
- "text": "市辖区",
- "value": "130801000000"
- },
- {
- "text": "双桥区",
- "value": "130802000000"
- },
- {
- "text": "双滦区",
- "value": "130803000000"
- },
- {
- "text": "鹰手营子矿区",
- "value": "130804000000"
- },
- {
- "text": "承德县",
- "value": "130821000000"
- },
- {
- "text": "兴隆县",
- "value": "130822000000"
- },
- {
- "text": "滦平县",
- "value": "130824000000"
- },
- {
- "text": "隆化县",
- "value": "130825000000"
- },
- {
- "text": "丰宁满族自治县",
- "value": "130826000000"
- },
- {
- "text": "宽城满族自治县",
- "value": "130827000000"
- },
- {
- "text": "围场满族蒙古族自治县",
- "value": "130828000000"
- },
- {
- "text": "承德高新技术产业开发区",
- "value": "130871000000"
- },
- {
- "text": "平泉市",
- "value": "130881000000"
- }
- ]
- },
- {
- "text": "沧州市",
- "value": "130900000000",
- "children": [{
- "text": "市辖区",
- "value": "130901000000"
- },
- {
- "text": "新华区",
- "value": "130902000000"
- },
- {
- "text": "运河区",
- "value": "130903000000"
- },
- {
- "text": "沧县",
- "value": "130921000000"
- },
- {
- "text": "青县",
- "value": "130922000000"
- },
- {
- "text": "东光县",
- "value": "130923000000"
- },
- {
- "text": "海兴县",
- "value": "130924000000"
- },
- {
- "text": "盐山县",
- "value": "130925000000"
- },
- {
- "text": "肃宁县",
- "value": "130926000000"
- },
- {
- "text": "南皮县",
- "value": "130927000000"
- },
- {
- "text": "吴桥县",
- "value": "130928000000"
- },
- {
- "text": "献县",
- "value": "130929000000"
- },
- {
- "text": "孟村回族自治县",
- "value": "130930000000"
- },
- {
- "text": "河北沧州经济开发区",
- "value": "130971000000"
- },
- {
- "text": "沧州高新技术产业开发区",
- "value": "130972000000"
- },
- {
- "text": "沧州渤海新区",
- "value": "130973000000"
- },
- {
- "text": "泊头市",
- "value": "130981000000"
- },
- {
- "text": "任丘市",
- "value": "130982000000"
- },
- {
- "text": "黄骅市",
- "value": "130983000000"
- },
- {
- "text": "河间市",
- "value": "130984000000"
- }
- ]
- },
- {
- "text": "廊坊市",
- "value": "131000000000",
- "children": [{
- "text": "市辖区",
- "value": "131001000000"
- },
- {
- "text": "安次区",
- "value": "131002000000"
- },
- {
- "text": "广阳区",
- "value": "131003000000"
- },
- {
- "text": "固安县",
- "value": "131022000000"
- },
- {
- "text": "永清县",
- "value": "131023000000"
- },
- {
- "text": "香河县",
- "value": "131024000000"
- },
- {
- "text": "大城县",
- "value": "131025000000"
- },
- {
- "text": "文安县",
- "value": "131026000000"
- },
- {
- "text": "大厂回族自治县",
- "value": "131028000000"
- },
- {
- "text": "廊坊经济技术开发区",
- "value": "131071000000"
- },
- {
- "text": "霸州市",
- "value": "131081000000"
- },
- {
- "text": "三河市",
- "value": "131082000000"
- }
- ]
- },
- {
- "text": "衡水市",
- "value": "131100000000",
- "children": [{
- "text": "市辖区",
- "value": "131101000000"
- },
- {
- "text": "桃城区",
- "value": "131102000000"
- },
- {
- "text": "冀州区",
- "value": "131103000000"
- },
- {
- "text": "枣强县",
- "value": "131121000000"
- },
- {
- "text": "武邑县",
- "value": "131122000000"
- },
- {
- "text": "武强县",
- "value": "131123000000"
- },
- {
- "text": "饶阳县",
- "value": "131124000000"
- },
- {
- "text": "安平县",
- "value": "131125000000"
- },
- {
- "text": "故城县",
- "value": "131126000000"
- },
- {
- "text": "景县",
- "value": "131127000000"
- },
- {
- "text": "阜城县",
- "value": "131128000000"
- },
- {
- "text": "河北衡水高新技术产业开发区",
- "value": "131171000000"
- },
- {
- "text": "衡水滨湖新区",
- "value": "131172000000"
- },
- {
- "text": "深州市",
- "value": "131182000000"
- }
- ]
- }
- ]
- },
- {
- "text": "山西省",
- "value": "140000000000",
- "children": [{
- "text": "太原市",
- "value": "140100000000",
- "children": [{
- "text": "市辖区",
- "value": "140101000000"
- },
- {
- "text": "小店区",
- "value": "140105000000"
- },
- {
- "text": "迎泽区",
- "value": "140106000000"
- },
- {
- "text": "杏花岭区",
- "value": "140107000000"
- },
- {
- "text": "尖草坪区",
- "value": "140108000000"
- },
- {
- "text": "万柏林区",
- "value": "140109000000"
- },
- {
- "text": "晋源区",
- "value": "140110000000"
- },
- {
- "text": "清徐县",
- "value": "140121000000"
- },
- {
- "text": "阳曲县",
- "value": "140122000000"
- },
- {
- "text": "娄烦县",
- "value": "140123000000"
- },
- {
- "text": "山西转型综合改革示范区",
- "value": "140171000000"
- },
- {
- "text": "古交市",
- "value": "140181000000"
- }
- ]
- },
- {
- "text": "大同市",
- "value": "140200000000",
- "children": [{
- "text": "市辖区",
- "value": "140201000000"
- },
- {
- "text": "新荣区",
- "value": "140212000000"
- },
- {
- "text": "平城区",
- "value": "140213000000"
- },
- {
- "text": "云冈区",
- "value": "140214000000"
- },
- {
- "text": "云州区",
- "value": "140215000000"
- },
- {
- "text": "阳高县",
- "value": "140221000000"
- },
- {
- "text": "天镇县",
- "value": "140222000000"
- },
- {
- "text": "广灵县",
- "value": "140223000000"
- },
- {
- "text": "灵丘县",
- "value": "140224000000"
- },
- {
- "text": "浑源县",
- "value": "140225000000"
- },
- {
- "text": "左云县",
- "value": "140226000000"
- },
- {
- "text": "山西大同经济开发区",
- "value": "140271000000"
- }
- ]
- },
- {
- "text": "阳泉市",
- "value": "140300000000",
- "children": [{
- "text": "市辖区",
- "value": "140301000000"
- },
- {
- "text": "城区",
- "value": "140302000000"
- },
- {
- "text": "矿区",
- "value": "140303000000"
- },
- {
- "text": "郊区",
- "value": "140311000000"
- },
- {
- "text": "平定县",
- "value": "140321000000"
- },
- {
- "text": "盂县",
- "value": "140322000000"
- }
- ]
- },
- {
- "text": "长治市",
- "value": "140400000000",
- "children": [{
- "text": "市辖区",
- "value": "140401000000"
- },
- {
- "text": "潞州区",
- "value": "140403000000"
- },
- {
- "text": "上党区",
- "value": "140404000000"
- },
- {
- "text": "屯留区",
- "value": "140405000000"
- },
- {
- "text": "潞城区",
- "value": "140406000000"
- },
- {
- "text": "襄垣县",
- "value": "140423000000"
- },
- {
- "text": "平顺县",
- "value": "140425000000"
- },
- {
- "text": "黎城县",
- "value": "140426000000"
- },
- {
- "text": "壶关县",
- "value": "140427000000"
- },
- {
- "text": "长子县",
- "value": "140428000000"
- },
- {
- "text": "武乡县",
- "value": "140429000000"
- },
- {
- "text": "沁县",
- "value": "140430000000"
- },
- {
- "text": "沁源县",
- "value": "140431000000"
- },
- {
- "text": "山西长治高新技术产业园区",
- "value": "140471000000"
- }
- ]
- },
- {
- "text": "晋城市",
- "value": "140500000000",
- "children": [{
- "text": "市辖区",
- "value": "140501000000"
- },
- {
- "text": "城区",
- "value": "140502000000"
- },
- {
- "text": "沁水县",
- "value": "140521000000"
- },
- {
- "text": "阳城县",
- "value": "140522000000"
- },
- {
- "text": "陵川县",
- "value": "140524000000"
- },
- {
- "text": "泽州县",
- "value": "140525000000"
- },
- {
- "text": "高平市",
- "value": "140581000000"
- }
- ]
- },
- {
- "text": "朔州市",
- "value": "140600000000",
- "children": [{
- "text": "市辖区",
- "value": "140601000000"
- },
- {
- "text": "朔城区",
- "value": "140602000000"
- },
- {
- "text": "平鲁区",
- "value": "140603000000"
- },
- {
- "text": "山阴县",
- "value": "140621000000"
- },
- {
- "text": "应县",
- "value": "140622000000"
- },
- {
- "text": "右玉县",
- "value": "140623000000"
- },
- {
- "text": "山西朔州经济开发区",
- "value": "140671000000"
- },
- {
- "text": "怀仁市",
- "value": "140681000000"
- }
- ]
- },
- {
- "text": "晋中市",
- "value": "140700000000",
- "children": [{
- "text": "市辖区",
- "value": "140701000000"
- },
- {
- "text": "榆次区",
- "value": "140702000000"
- },
- {
- "text": "太谷区",
- "value": "140703000000"
- },
- {
- "text": "榆社县",
- "value": "140721000000"
- },
- {
- "text": "左权县",
- "value": "140722000000"
- },
- {
- "text": "和顺县",
- "value": "140723000000"
- },
- {
- "text": "昔阳县",
- "value": "140724000000"
- },
- {
- "text": "寿阳县",
- "value": "140725000000"
- },
- {
- "text": "祁县",
- "value": "140727000000"
- },
- {
- "text": "平遥县",
- "value": "140728000000"
- },
- {
- "text": "灵石县",
- "value": "140729000000"
- },
- {
- "text": "介休市",
- "value": "140781000000"
- }
- ]
- },
- {
- "text": "运城市",
- "value": "140800000000",
- "children": [{
- "text": "市辖区",
- "value": "140801000000"
- },
- {
- "text": "盐湖区",
- "value": "140802000000"
- },
- {
- "text": "临猗县",
- "value": "140821000000"
- },
- {
- "text": "万荣县",
- "value": "140822000000"
- },
- {
- "text": "闻喜县",
- "value": "140823000000"
- },
- {
- "text": "稷山县",
- "value": "140824000000"
- },
- {
- "text": "新绛县",
- "value": "140825000000"
- },
- {
- "text": "绛县",
- "value": "140826000000"
- },
- {
- "text": "垣曲县",
- "value": "140827000000"
- },
- {
- "text": "夏县",
- "value": "140828000000"
- },
- {
- "text": "平陆县",
- "value": "140829000000"
- },
- {
- "text": "芮城县",
- "value": "140830000000"
- },
- {
- "text": "永济市",
- "value": "140881000000"
- },
- {
- "text": "河津市",
- "value": "140882000000"
- }
- ]
- },
- {
- "text": "忻州市",
- "value": "140900000000",
- "children": [{
- "text": "市辖区",
- "value": "140901000000"
- },
- {
- "text": "忻府区",
- "value": "140902000000"
- },
- {
- "text": "定襄县",
- "value": "140921000000"
- },
- {
- "text": "五台县",
- "value": "140922000000"
- },
- {
- "text": "代县",
- "value": "140923000000"
- },
- {
- "text": "繁峙县",
- "value": "140924000000"
- },
- {
- "text": "宁武县",
- "value": "140925000000"
- },
- {
- "text": "静乐县",
- "value": "140926000000"
- },
- {
- "text": "神池县",
- "value": "140927000000"
- },
- {
- "text": "五寨县",
- "value": "140928000000"
- },
- {
- "text": "岢岚县",
- "value": "140929000000"
- },
- {
- "text": "河曲县",
- "value": "140930000000"
- },
- {
- "text": "保德县",
- "value": "140931000000"
- },
- {
- "text": "偏关县",
- "value": "140932000000"
- },
- {
- "text": "五台山风景名胜区",
- "value": "140971000000"
- },
- {
- "text": "原平市",
- "value": "140981000000"
- }
- ]
- },
- {
- "text": "临汾市",
- "value": "141000000000",
- "children": [{
- "text": "市辖区",
- "value": "141001000000"
- },
- {
- "text": "尧都区",
- "value": "141002000000"
- },
- {
- "text": "曲沃县",
- "value": "141021000000"
- },
- {
- "text": "翼城县",
- "value": "141022000000"
- },
- {
- "text": "襄汾县",
- "value": "141023000000"
- },
- {
- "text": "洪洞县",
- "value": "141024000000"
- },
- {
- "text": "古县",
- "value": "141025000000"
- },
- {
- "text": "安泽县",
- "value": "141026000000"
- },
- {
- "text": "浮山县",
- "value": "141027000000"
- },
- {
- "text": "吉县",
- "value": "141028000000"
- },
- {
- "text": "乡宁县",
- "value": "141029000000"
- },
- {
- "text": "大宁县",
- "value": "141030000000"
- },
- {
- "text": "隰县",
- "value": "141031000000"
- },
- {
- "text": "永和县",
- "value": "141032000000"
- },
- {
- "text": "蒲县",
- "value": "141033000000"
- },
- {
- "text": "汾西县",
- "value": "141034000000"
- },
- {
- "text": "侯马市",
- "value": "141081000000"
- },
- {
- "text": "霍州市",
- "value": "141082000000"
- }
- ]
- },
- {
- "text": "吕梁市",
- "value": "141100000000",
- "children": [{
- "text": "市辖区",
- "value": "141101000000"
- },
- {
- "text": "离石区",
- "value": "141102000000"
- },
- {
- "text": "文水县",
- "value": "141121000000"
- },
- {
- "text": "交城县",
- "value": "141122000000"
- },
- {
- "text": "兴县",
- "value": "141123000000"
- },
- {
- "text": "临县",
- "value": "141124000000"
- },
- {
- "text": "柳林县",
- "value": "141125000000"
- },
- {
- "text": "石楼县",
- "value": "141126000000"
- },
- {
- "text": "岚县",
- "value": "141127000000"
- },
- {
- "text": "方山县",
- "value": "141128000000"
- },
- {
- "text": "中阳县",
- "value": "141129000000"
- },
- {
- "text": "交口县",
- "value": "141130000000"
- },
- {
- "text": "孝义市",
- "value": "141181000000"
- },
- {
- "text": "汾阳市",
- "value": "141182000000"
- }
- ]
- }
- ]
- },
- {
- "text": "内蒙古自治区",
- "value": "150000000000",
- "children": [{
- "text": "呼和浩特市",
- "value": "150100000000",
- "children": [{
- "text": "市辖区",
- "value": "150101000000"
- },
- {
- "text": "新城区",
- "value": "150102000000"
- },
- {
- "text": "回民区",
- "value": "150103000000"
- },
- {
- "text": "玉泉区",
- "value": "150104000000"
- },
- {
- "text": "赛罕区",
- "value": "150105000000"
- },
- {
- "text": "土默特左旗",
- "value": "150121000000"
- },
- {
- "text": "托克托县",
- "value": "150122000000"
- },
- {
- "text": "和林格尔县",
- "value": "150123000000"
- },
- {
- "text": "清水河县",
- "value": "150124000000"
- },
- {
- "text": "武川县",
- "value": "150125000000"
- },
- {
- "text": "呼和浩特经济技术开发区",
- "value": "150172000000"
- }
- ]
- },
- {
- "text": "包头市",
- "value": "150200000000",
- "children": [{
- "text": "市辖区",
- "value": "150201000000"
- },
- {
- "text": "东河区",
- "value": "150202000000"
- },
- {
- "text": "昆都仑区",
- "value": "150203000000"
- },
- {
- "text": "青山区",
- "value": "150204000000"
- },
- {
- "text": "石拐区",
- "value": "150205000000"
- },
- {
- "text": "白云鄂博矿区",
- "value": "150206000000"
- },
- {
- "text": "九原区",
- "value": "150207000000"
- },
- {
- "text": "土默特右旗",
- "value": "150221000000"
- },
- {
- "text": "固阳县",
- "value": "150222000000"
- },
- {
- "text": "达尔罕茂明安联合旗",
- "value": "150223000000"
- },
- {
- "text": "包头稀土高新技术产业开发区",
- "value": "150271000000"
- }
- ]
- },
- {
- "text": "乌海市",
- "value": "150300000000",
- "children": [{
- "text": "市辖区",
- "value": "150301000000"
- },
- {
- "text": "海勃湾区",
- "value": "150302000000"
- },
- {
- "text": "海南区",
- "value": "150303000000"
- },
- {
- "text": "乌达区",
- "value": "150304000000"
- }
- ]
- },
- {
- "text": "赤峰市",
- "value": "150400000000",
- "children": [{
- "text": "市辖区",
- "value": "150401000000"
- },
- {
- "text": "红山区",
- "value": "150402000000"
- },
- {
- "text": "元宝山区",
- "value": "150403000000"
- },
- {
- "text": "松山区",
- "value": "150404000000"
- },
- {
- "text": "阿鲁科尔沁旗",
- "value": "150421000000"
- },
- {
- "text": "巴林左旗",
- "value": "150422000000"
- },
- {
- "text": "巴林右旗",
- "value": "150423000000"
- },
- {
- "text": "林西县",
- "value": "150424000000"
- },
- {
- "text": "克什克腾旗",
- "value": "150425000000"
- },
- {
- "text": "翁牛特旗",
- "value": "150426000000"
- },
- {
- "text": "喀喇沁旗",
- "value": "150428000000"
- },
- {
- "text": "宁城县",
- "value": "150429000000"
- },
- {
- "text": "敖汉旗",
- "value": "150430000000"
- }
- ]
- },
- {
- "text": "通辽市",
- "value": "150500000000",
- "children": [{
- "text": "市辖区",
- "value": "150501000000"
- },
- {
- "text": "科尔沁区",
- "value": "150502000000"
- },
- {
- "text": "科尔沁左翼中旗",
- "value": "150521000000"
- },
- {
- "text": "科尔沁左翼后旗",
- "value": "150522000000"
- },
- {
- "text": "开鲁县",
- "value": "150523000000"
- },
- {
- "text": "库伦旗",
- "value": "150524000000"
- },
- {
- "text": "奈曼旗",
- "value": "150525000000"
- },
- {
- "text": "扎鲁特旗",
- "value": "150526000000"
- },
- {
- "text": "通辽经济技术开发区",
- "value": "150571000000"
- },
- {
- "text": "霍林郭勒市",
- "value": "150581000000"
- }
- ]
- },
- {
- "text": "鄂尔多斯市",
- "value": "150600000000",
- "children": [{
- "text": "市辖区",
- "value": "150601000000"
- },
- {
- "text": "东胜区",
- "value": "150602000000"
- },
- {
- "text": "康巴什区",
- "value": "150603000000"
- },
- {
- "text": "达拉特旗",
- "value": "150621000000"
- },
- {
- "text": "准格尔旗",
- "value": "150622000000"
- },
- {
- "text": "鄂托克前旗",
- "value": "150623000000"
- },
- {
- "text": "鄂托克旗",
- "value": "150624000000"
- },
- {
- "text": "杭锦旗",
- "value": "150625000000"
- },
- {
- "text": "乌审旗",
- "value": "150626000000"
- },
- {
- "text": "伊金霍洛旗",
- "value": "150627000000"
- }
- ]
- },
- {
- "text": "呼伦贝尔市",
- "value": "150700000000",
- "children": [{
- "text": "市辖区",
- "value": "150701000000"
- },
- {
- "text": "海拉尔区",
- "value": "150702000000"
- },
- {
- "text": "扎赉诺尔区",
- "value": "150703000000"
- },
- {
- "text": "阿荣旗",
- "value": "150721000000"
- },
- {
- "text": "莫力达瓦达斡尔族自治旗",
- "value": "150722000000"
- },
- {
- "text": "鄂伦春自治旗",
- "value": "150723000000"
- },
- {
- "text": "鄂温克族自治旗",
- "value": "150724000000"
- },
- {
- "text": "陈巴尔虎旗",
- "value": "150725000000"
- },
- {
- "text": "新巴尔虎左旗",
- "value": "150726000000"
- },
- {
- "text": "新巴尔虎右旗",
- "value": "150727000000"
- },
- {
- "text": "满洲里市",
- "value": "150781000000"
- },
- {
- "text": "牙克石市",
- "value": "150782000000"
- },
- {
- "text": "扎兰屯市",
- "value": "150783000000"
- },
- {
- "text": "额尔古纳市",
- "value": "150784000000"
- },
- {
- "text": "根河市",
- "value": "150785000000"
- }
- ]
- },
- {
- "text": "巴彦淖尔市",
- "value": "150800000000",
- "children": [{
- "text": "市辖区",
- "value": "150801000000"
- },
- {
- "text": "临河区",
- "value": "150802000000"
- },
- {
- "text": "五原县",
- "value": "150821000000"
- },
- {
- "text": "磴口县",
- "value": "150822000000"
- },
- {
- "text": "乌拉特前旗",
- "value": "150823000000"
- },
- {
- "text": "乌拉特中旗",
- "value": "150824000000"
- },
- {
- "text": "乌拉特后旗",
- "value": "150825000000"
- },
- {
- "text": "杭锦后旗",
- "value": "150826000000"
- }
- ]
- },
- {
- "text": "乌兰察布市",
- "value": "150900000000",
- "children": [{
- "text": "市辖区",
- "value": "150901000000"
- },
- {
- "text": "集宁区",
- "value": "150902000000"
- },
- {
- "text": "卓资县",
- "value": "150921000000"
- },
- {
- "text": "化德县",
- "value": "150922000000"
- },
- {
- "text": "商都县",
- "value": "150923000000"
- },
- {
- "text": "兴和县",
- "value": "150924000000"
- },
- {
- "text": "凉城县",
- "value": "150925000000"
- },
- {
- "text": "察哈尔右翼前旗",
- "value": "150926000000"
- },
- {
- "text": "察哈尔右翼中旗",
- "value": "150927000000"
- },
- {
- "text": "察哈尔右翼后旗",
- "value": "150928000000"
- },
- {
- "text": "四子王旗",
- "value": "150929000000"
- },
- {
- "text": "丰镇市",
- "value": "150981000000"
- }
- ]
- },
- {
- "text": "兴安盟",
- "value": "152200000000",
- "children": [{
- "text": "乌兰浩特市",
- "value": "152201000000"
- },
- {
- "text": "阿尔山市",
- "value": "152202000000"
- },
- {
- "text": "科尔沁右翼前旗",
- "value": "152221000000"
- },
- {
- "text": "科尔沁右翼中旗",
- "value": "152222000000"
- },
- {
- "text": "扎赉特旗",
- "value": "152223000000"
- },
- {
- "text": "突泉县",
- "value": "152224000000"
- }
- ]
- },
- {
- "text": "锡林郭勒盟",
- "value": "152500000000",
- "children": [{
- "text": "二连浩特市",
- "value": "152501000000"
- },
- {
- "text": "锡林浩特市",
- "value": "152502000000"
- },
- {
- "text": "阿巴嘎旗",
- "value": "152522000000"
- },
- {
- "text": "苏尼特左旗",
- "value": "152523000000"
- },
- {
- "text": "苏尼特右旗",
- "value": "152524000000"
- },
- {
- "text": "东乌珠穆沁旗",
- "value": "152525000000"
- },
- {
- "text": "西乌珠穆沁旗",
- "value": "152526000000"
- },
- {
- "text": "太仆寺旗",
- "value": "152527000000"
- },
- {
- "text": "镶黄旗",
- "value": "152528000000"
- },
- {
- "text": "正镶白旗",
- "value": "152529000000"
- },
- {
- "text": "正蓝旗",
- "value": "152530000000"
- },
- {
- "text": "多伦县",
- "value": "152531000000"
- },
- {
- "text": "乌拉盖管委会",
- "value": "152571000000"
- }
- ]
- },
- {
- "text": "阿拉善盟",
- "value": "152900000000",
- "children": [{
- "text": "阿拉善左旗",
- "value": "152921000000"
- },
- {
- "text": "阿拉善右旗",
- "value": "152922000000"
- },
- {
- "text": "额济纳旗",
- "value": "152923000000"
- },
- {
- "text": "内蒙古阿拉善经济开发区",
- "value": "152971000000"
- }
- ]
- }
- ]
- },
- {
- "text": "辽宁省",
- "value": "210000000000",
- "children": [{
- "text": "沈阳市",
- "value": "210100000000",
- "children": [{
- "text": "市辖区",
- "value": "210101000000"
- },
- {
- "text": "和平区",
- "value": "210102000000"
- },
- {
- "text": "沈河区",
- "value": "210103000000"
- },
- {
- "text": "大东区",
- "value": "210104000000"
- },
- {
- "text": "皇姑区",
- "value": "210105000000"
- },
- {
- "text": "铁西区",
- "value": "210106000000"
- },
- {
- "text": "苏家屯区",
- "value": "210111000000"
- },
- {
- "text": "浑南区",
- "value": "210112000000"
- },
- {
- "text": "沈北新区",
- "value": "210113000000"
- },
- {
- "text": "于洪区",
- "value": "210114000000"
- },
- {
- "text": "辽中区",
- "value": "210115000000"
- },
- {
- "text": "康平县",
- "value": "210123000000"
- },
- {
- "text": "法库县",
- "value": "210124000000"
- },
- {
- "text": "新民市",
- "value": "210181000000"
- }
- ]
- },
- {
- "text": "大连市",
- "value": "210200000000",
- "children": [{
- "text": "市辖区",
- "value": "210201000000"
- },
- {
- "text": "中山区",
- "value": "210202000000"
- },
- {
- "text": "西岗区",
- "value": "210203000000"
- },
- {
- "text": "沙河口区",
- "value": "210204000000"
- },
- {
- "text": "甘井子区",
- "value": "210211000000"
- },
- {
- "text": "旅顺口区",
- "value": "210212000000"
- },
- {
- "text": "金州区",
- "value": "210213000000"
- },
- {
- "text": "普兰店区",
- "value": "210214000000"
- },
- {
- "text": "长海县",
- "value": "210224000000"
- },
- {
- "text": "瓦房店市",
- "value": "210281000000"
- },
- {
- "text": "庄河市",
- "value": "210283000000"
- }
- ]
- },
- {
- "text": "鞍山市",
- "value": "210300000000",
- "children": [{
- "text": "市辖区",
- "value": "210301000000"
- },
- {
- "text": "铁东区",
- "value": "210302000000"
- },
- {
- "text": "铁西区",
- "value": "210303000000"
- },
- {
- "text": "立山区",
- "value": "210304000000"
- },
- {
- "text": "千山区",
- "value": "210311000000"
- },
- {
- "text": "台安县",
- "value": "210321000000"
- },
- {
- "text": "岫岩满族自治县",
- "value": "210323000000"
- },
- {
- "text": "海城市",
- "value": "210381000000"
- }
- ]
- },
- {
- "text": "抚顺市",
- "value": "210400000000",
- "children": [{
- "text": "市辖区",
- "value": "210401000000"
- },
- {
- "text": "新抚区",
- "value": "210402000000"
- },
- {
- "text": "东洲区",
- "value": "210403000000"
- },
- {
- "text": "望花区",
- "value": "210404000000"
- },
- {
- "text": "顺城区",
- "value": "210411000000"
- },
- {
- "text": "抚顺县",
- "value": "210421000000"
- },
- {
- "text": "新宾满族自治县",
- "value": "210422000000"
- },
- {
- "text": "清原满族自治县",
- "value": "210423000000"
- }
- ]
- },
- {
- "text": "本溪市",
- "value": "210500000000",
- "children": [{
- "text": "市辖区",
- "value": "210501000000"
- },
- {
- "text": "平山区",
- "value": "210502000000"
- },
- {
- "text": "溪湖区",
- "value": "210503000000"
- },
- {
- "text": "明山区",
- "value": "210504000000"
- },
- {
- "text": "南芬区",
- "value": "210505000000"
- },
- {
- "text": "本溪满族自治县",
- "value": "210521000000"
- },
- {
- "text": "桓仁满族自治县",
- "value": "210522000000"
- }
- ]
- },
- {
- "text": "丹东市",
- "value": "210600000000",
- "children": [{
- "text": "市辖区",
- "value": "210601000000"
- },
- {
- "text": "元宝区",
- "value": "210602000000"
- },
- {
- "text": "振兴区",
- "value": "210603000000"
- },
- {
- "text": "振安区",
- "value": "210604000000"
- },
- {
- "text": "宽甸满族自治县",
- "value": "210624000000"
- },
- {
- "text": "东港市",
- "value": "210681000000"
- },
- {
- "text": "凤城市",
- "value": "210682000000"
- }
- ]
- },
- {
- "text": "锦州市",
- "value": "210700000000",
- "children": [{
- "text": "市辖区",
- "value": "210701000000"
- },
- {
- "text": "古塔区",
- "value": "210702000000"
- },
- {
- "text": "凌河区",
- "value": "210703000000"
- },
- {
- "text": "太和区",
- "value": "210711000000"
- },
- {
- "text": "黑山县",
- "value": "210726000000"
- },
- {
- "text": "义县",
- "value": "210727000000"
- },
- {
- "text": "凌海市",
- "value": "210781000000"
- },
- {
- "text": "北镇市",
- "value": "210782000000"
- }
- ]
- },
- {
- "text": "营口市",
- "value": "210800000000",
- "children": [{
- "text": "市辖区",
- "value": "210801000000"
- },
- {
- "text": "站前区",
- "value": "210802000000"
- },
- {
- "text": "西市区",
- "value": "210803000000"
- },
- {
- "text": "鲅鱼圈区",
- "value": "210804000000"
- },
- {
- "text": "老边区",
- "value": "210811000000"
- },
- {
- "text": "盖州市",
- "value": "210881000000"
- },
- {
- "text": "大石桥市",
- "value": "210882000000"
- }
- ]
- },
- {
- "text": "阜新市",
- "value": "210900000000",
- "children": [{
- "text": "市辖区",
- "value": "210901000000"
- },
- {
- "text": "海州区",
- "value": "210902000000"
- },
- {
- "text": "新邱区",
- "value": "210903000000"
- },
- {
- "text": "太平区",
- "value": "210904000000"
- },
- {
- "text": "清河门区",
- "value": "210905000000"
- },
- {
- "text": "细河区",
- "value": "210911000000"
- },
- {
- "text": "阜新蒙古族自治县",
- "value": "210921000000"
- },
- {
- "text": "彰武县",
- "value": "210922000000"
- }
- ]
- },
- {
- "text": "辽阳市",
- "value": "211000000000",
- "children": [{
- "text": "市辖区",
- "value": "211001000000"
- },
- {
- "text": "白塔区",
- "value": "211002000000"
- },
- {
- "text": "文圣区",
- "value": "211003000000"
- },
- {
- "text": "宏伟区",
- "value": "211004000000"
- },
- {
- "text": "弓长岭区",
- "value": "211005000000"
- },
- {
- "text": "太子河区",
- "value": "211011000000"
- },
- {
- "text": "辽阳县",
- "value": "211021000000"
- },
- {
- "text": "灯塔市",
- "value": "211081000000"
- }
- ]
- },
- {
- "text": "盘锦市",
- "value": "211100000000",
- "children": [{
- "text": "市辖区",
- "value": "211101000000"
- },
- {
- "text": "双台子区",
- "value": "211102000000"
- },
- {
- "text": "兴隆台区",
- "value": "211103000000"
- },
- {
- "text": "大洼区",
- "value": "211104000000"
- },
- {
- "text": "盘山县",
- "value": "211122000000"
- }
- ]
- },
- {
- "text": "铁岭市",
- "value": "211200000000",
- "children": [{
- "text": "市辖区",
- "value": "211201000000"
- },
- {
- "text": "银州区",
- "value": "211202000000"
- },
- {
- "text": "清河区",
- "value": "211204000000"
- },
- {
- "text": "铁岭县",
- "value": "211221000000"
- },
- {
- "text": "西丰县",
- "value": "211223000000"
- },
- {
- "text": "昌图县",
- "value": "211224000000"
- },
- {
- "text": "调兵山市",
- "value": "211281000000"
- },
- {
- "text": "开原市",
- "value": "211282000000"
- }
- ]
- },
- {
- "text": "朝阳市",
- "value": "211300000000",
- "children": [{
- "text": "市辖区",
- "value": "211301000000"
- },
- {
- "text": "双塔区",
- "value": "211302000000"
- },
- {
- "text": "龙城区",
- "value": "211303000000"
- },
- {
- "text": "朝阳县",
- "value": "211321000000"
- },
- {
- "text": "建平县",
- "value": "211322000000"
- },
- {
- "text": "喀喇沁左翼蒙古族自治县",
- "value": "211324000000"
- },
- {
- "text": "北票市",
- "value": "211381000000"
- },
- {
- "text": "凌源市",
- "value": "211382000000"
- }
- ]
- },
- {
- "text": "葫芦岛市",
- "value": "211400000000",
- "children": [{
- "text": "市辖区",
- "value": "211401000000"
- },
- {
- "text": "连山区",
- "value": "211402000000"
- },
- {
- "text": "龙港区",
- "value": "211403000000"
- },
- {
- "text": "南票区",
- "value": "211404000000"
- },
- {
- "text": "绥中县",
- "value": "211421000000"
- },
- {
- "text": "建昌县",
- "value": "211422000000"
- },
- {
- "text": "兴城市",
- "value": "211481000000"
- }
- ]
- }
- ]
- },
- {
- "text": "吉林省",
- "value": "220000000000",
- "children": [{
- "text": "长春市",
- "value": "220100000000",
- "children": [{
- "text": "市辖区",
- "value": "220101000000"
- },
- {
- "text": "南关区",
- "value": "220102000000"
- },
- {
- "text": "宽城区",
- "value": "220103000000"
- },
- {
- "text": "朝阳区",
- "value": "220104000000"
- },
- {
- "text": "二道区",
- "value": "220105000000"
- },
- {
- "text": "绿园区",
- "value": "220106000000"
- },
- {
- "text": "双阳区",
- "value": "220112000000"
- },
- {
- "text": "九台区",
- "value": "220113000000"
- },
- {
- "text": "农安县",
- "value": "220122000000"
- },
- {
- "text": "长春经济技术开发区",
- "value": "220171000000"
- },
- {
- "text": "长春净月高新技术产业开发区",
- "value": "220172000000"
- },
- {
- "text": "长春高新技术产业开发区",
- "value": "220173000000"
- },
- {
- "text": "长春汽车经济技术开发区",
- "value": "220174000000"
- },
- {
- "text": "榆树市",
- "value": "220182000000"
- },
- {
- "text": "德惠市",
- "value": "220183000000"
- },
- {
- "text": "公主岭市",
- "value": "220184000000"
- }
- ]
- },
- {
- "text": "吉林市",
- "value": "220200000000",
- "children": [{
- "text": "市辖区",
- "value": "220201000000"
- },
- {
- "text": "昌邑区",
- "value": "220202000000"
- },
- {
- "text": "龙潭区",
- "value": "220203000000"
- },
- {
- "text": "船营区",
- "value": "220204000000"
- },
- {
- "text": "丰满区",
- "value": "220211000000"
- },
- {
- "text": "永吉县",
- "value": "220221000000"
- },
- {
- "text": "吉林经济开发区",
- "value": "220271000000"
- },
- {
- "text": "吉林高新技术产业开发区",
- "value": "220272000000"
- },
- {
- "text": "吉林中国新加坡食品区",
- "value": "220273000000"
- },
- {
- "text": "蛟河市",
- "value": "220281000000"
- },
- {
- "text": "桦甸市",
- "value": "220282000000"
- },
- {
- "text": "舒兰市",
- "value": "220283000000"
- },
- {
- "text": "磐石市",
- "value": "220284000000"
- }
- ]
- },
- {
- "text": "四平市",
- "value": "220300000000",
- "children": [{
- "text": "市辖区",
- "value": "220301000000"
- },
- {
- "text": "铁西区",
- "value": "220302000000"
- },
- {
- "text": "铁东区",
- "value": "220303000000"
- },
- {
- "text": "梨树县",
- "value": "220322000000"
- },
- {
- "text": "伊通满族自治县",
- "value": "220323000000"
- },
- {
- "text": "双辽市",
- "value": "220382000000"
- }
- ]
- },
- {
- "text": "辽源市",
- "value": "220400000000",
- "children": [{
- "text": "市辖区",
- "value": "220401000000"
- },
- {
- "text": "龙山区",
- "value": "220402000000"
- },
- {
- "text": "西安区",
- "value": "220403000000"
- },
- {
- "text": "东丰县",
- "value": "220421000000"
- },
- {
- "text": "东辽县",
- "value": "220422000000"
- }
- ]
- },
- {
- "text": "通化市",
- "value": "220500000000",
- "children": [{
- "text": "市辖区",
- "value": "220501000000"
- },
- {
- "text": "东昌区",
- "value": "220502000000"
- },
- {
- "text": "二道江区",
- "value": "220503000000"
- },
- {
- "text": "通化县",
- "value": "220521000000"
- },
- {
- "text": "辉南县",
- "value": "220523000000"
- },
- {
- "text": "柳河县",
- "value": "220524000000"
- },
- {
- "text": "梅河口市",
- "value": "220581000000"
- },
- {
- "text": "集安市",
- "value": "220582000000"
- }
- ]
- },
- {
- "text": "白山市",
- "value": "220600000000",
- "children": [{
- "text": "市辖区",
- "value": "220601000000"
- },
- {
- "text": "浑江区",
- "value": "220602000000"
- },
- {
- "text": "江源区",
- "value": "220605000000"
- },
- {
- "text": "抚松县",
- "value": "220621000000"
- },
- {
- "text": "靖宇县",
- "value": "220622000000"
- },
- {
- "text": "长白朝鲜族自治县",
- "value": "220623000000"
- },
- {
- "text": "临江市",
- "value": "220681000000"
- }
- ]
- },
- {
- "text": "松原市",
- "value": "220700000000",
- "children": [{
- "text": "市辖区",
- "value": "220701000000"
- },
- {
- "text": "宁江区",
- "value": "220702000000"
- },
- {
- "text": "前郭尔罗斯蒙古族自治县",
- "value": "220721000000"
- },
- {
- "text": "长岭县",
- "value": "220722000000"
- },
- {
- "text": "乾安县",
- "value": "220723000000"
- },
- {
- "text": "吉林松原经济开发区",
- "value": "220771000000"
- },
- {
- "text": "扶余市",
- "value": "220781000000"
- }
- ]
- },
- {
- "text": "白城市",
- "value": "220800000000",
- "children": [{
- "text": "市辖区",
- "value": "220801000000"
- },
- {
- "text": "洮北区",
- "value": "220802000000"
- },
- {
- "text": "镇赉县",
- "value": "220821000000"
- },
- {
- "text": "通榆县",
- "value": "220822000000"
- },
- {
- "text": "吉林白城经济开发区",
- "value": "220871000000"
- },
- {
- "text": "洮南市",
- "value": "220881000000"
- },
- {
- "text": "大安市",
- "value": "220882000000"
- }
- ]
- },
- {
- "text": "延边朝鲜族自治州",
- "value": "222400000000",
- "children": [{
- "text": "延吉市",
- "value": "222401000000"
- },
- {
- "text": "图们市",
- "value": "222402000000"
- },
- {
- "text": "敦化市",
- "value": "222403000000"
- },
- {
- "text": "珲春市",
- "value": "222404000000"
- },
- {
- "text": "龙井市",
- "value": "222405000000"
- },
- {
- "text": "和龙市",
- "value": "222406000000"
- },
- {
- "text": "汪清县",
- "value": "222424000000"
- },
- {
- "text": "安图县",
- "value": "222426000000"
- }
- ]
- }
- ]
- },
- {
- "text": "黑龙江省",
- "value": "230000000000",
- "children": [{
- "text": "哈尔滨市",
- "value": "230100000000",
- "children": [{
- "text": "市辖区",
- "value": "230101000000"
- },
- {
- "text": "道里区",
- "value": "230102000000"
- },
- {
- "text": "南岗区",
- "value": "230103000000"
- },
- {
- "text": "道外区",
- "value": "230104000000"
- },
- {
- "text": "平房区",
- "value": "230108000000"
- },
- {
- "text": "松北区",
- "value": "230109000000"
- },
- {
- "text": "香坊区",
- "value": "230110000000"
- },
- {
- "text": "呼兰区",
- "value": "230111000000"
- },
- {
- "text": "阿城区",
- "value": "230112000000"
- },
- {
- "text": "双城区",
- "value": "230113000000"
- },
- {
- "text": "依兰县",
- "value": "230123000000"
- },
- {
- "text": "方正县",
- "value": "230124000000"
- },
- {
- "text": "宾县",
- "value": "230125000000"
- },
- {
- "text": "巴彦县",
- "value": "230126000000"
- },
- {
- "text": "木兰县",
- "value": "230127000000"
- },
- {
- "text": "通河县",
- "value": "230128000000"
- },
- {
- "text": "延寿县",
- "value": "230129000000"
- },
- {
- "text": "尚志市",
- "value": "230183000000"
- },
- {
- "text": "五常市",
- "value": "230184000000"
- }
- ]
- },
- {
- "text": "齐齐哈尔市",
- "value": "230200000000",
- "children": [{
- "text": "市辖区",
- "value": "230201000000"
- },
- {
- "text": "龙沙区",
- "value": "230202000000"
- },
- {
- "text": "建华区",
- "value": "230203000000"
- },
- {
- "text": "铁锋区",
- "value": "230204000000"
- },
- {
- "text": "昂昂溪区",
- "value": "230205000000"
- },
- {
- "text": "富拉尔基区",
- "value": "230206000000"
- },
- {
- "text": "碾子山区",
- "value": "230207000000"
- },
- {
- "text": "梅里斯达斡尔族区",
- "value": "230208000000"
- },
- {
- "text": "龙江县",
- "value": "230221000000"
- },
- {
- "text": "依安县",
- "value": "230223000000"
- },
- {
- "text": "泰来县",
- "value": "230224000000"
- },
- {
- "text": "甘南县",
- "value": "230225000000"
- },
- {
- "text": "富裕县",
- "value": "230227000000"
- },
- {
- "text": "克山县",
- "value": "230229000000"
- },
- {
- "text": "克东县",
- "value": "230230000000"
- },
- {
- "text": "拜泉县",
- "value": "230231000000"
- },
- {
- "text": "讷河市",
- "value": "230281000000"
- }
- ]
- },
- {
- "text": "鸡西市",
- "value": "230300000000",
- "children": [{
- "text": "市辖区",
- "value": "230301000000"
- },
- {
- "text": "鸡冠区",
- "value": "230302000000"
- },
- {
- "text": "恒山区",
- "value": "230303000000"
- },
- {
- "text": "滴道区",
- "value": "230304000000"
- },
- {
- "text": "梨树区",
- "value": "230305000000"
- },
- {
- "text": "城子河区",
- "value": "230306000000"
- },
- {
- "text": "麻山区",
- "value": "230307000000"
- },
- {
- "text": "鸡东县",
- "value": "230321000000"
- },
- {
- "text": "虎林市",
- "value": "230381000000"
- },
- {
- "text": "密山市",
- "value": "230382000000"
- }
- ]
- },
- {
- "text": "鹤岗市",
- "value": "230400000000",
- "children": [{
- "text": "市辖区",
- "value": "230401000000"
- },
- {
- "text": "向阳区",
- "value": "230402000000"
- },
- {
- "text": "工农区",
- "value": "230403000000"
- },
- {
- "text": "南山区",
- "value": "230404000000"
- },
- {
- "text": "兴安区",
- "value": "230405000000"
- },
- {
- "text": "东山区",
- "value": "230406000000"
- },
- {
- "text": "兴山区",
- "value": "230407000000"
- },
- {
- "text": "萝北县",
- "value": "230421000000"
- },
- {
- "text": "绥滨县",
- "value": "230422000000"
- }
- ]
- },
- {
- "text": "双鸭山市",
- "value": "230500000000",
- "children": [{
- "text": "市辖区",
- "value": "230501000000"
- },
- {
- "text": "尖山区",
- "value": "230502000000"
- },
- {
- "text": "岭东区",
- "value": "230503000000"
- },
- {
- "text": "四方台区",
- "value": "230505000000"
- },
- {
- "text": "宝山区",
- "value": "230506000000"
- },
- {
- "text": "集贤县",
- "value": "230521000000"
- },
- {
- "text": "友谊县",
- "value": "230522000000"
- },
- {
- "text": "宝清县",
- "value": "230523000000"
- },
- {
- "text": "饶河县",
- "value": "230524000000"
- }
- ]
- },
- {
- "text": "大庆市",
- "value": "230600000000",
- "children": [{
- "text": "市辖区",
- "value": "230601000000"
- },
- {
- "text": "萨尔图区",
- "value": "230602000000"
- },
- {
- "text": "龙凤区",
- "value": "230603000000"
- },
- {
- "text": "让胡路区",
- "value": "230604000000"
- },
- {
- "text": "红岗区",
- "value": "230605000000"
- },
- {
- "text": "大同区",
- "value": "230606000000"
- },
- {
- "text": "肇州县",
- "value": "230621000000"
- },
- {
- "text": "肇源县",
- "value": "230622000000"
- },
- {
- "text": "林甸县",
- "value": "230623000000"
- },
- {
- "text": "杜尔伯特蒙古族自治县",
- "value": "230624000000"
- },
- {
- "text": "大庆高新技术产业开发区",
- "value": "230671000000"
- }
- ]
- },
- {
- "text": "伊春市",
- "value": "230700000000",
- "children": [{
- "text": "市辖区",
- "value": "230701000000"
- },
- {
- "text": "伊美区",
- "value": "230717000000"
- },
- {
- "text": "乌翠区",
- "value": "230718000000"
- },
- {
- "text": "友好区",
- "value": "230719000000"
- },
- {
- "text": "嘉荫县",
- "value": "230722000000"
- },
- {
- "text": "汤旺县",
- "value": "230723000000"
- },
- {
- "text": "丰林县",
- "value": "230724000000"
- },
- {
- "text": "大箐山县",
- "value": "230725000000"
- },
- {
- "text": "南岔县",
- "value": "230726000000"
- },
- {
- "text": "金林区",
- "value": "230751000000"
- },
- {
- "text": "铁力市",
- "value": "230781000000"
- }
- ]
- },
- {
- "text": "佳木斯市",
- "value": "230800000000",
- "children": [{
- "text": "市辖区",
- "value": "230801000000"
- },
- {
- "text": "向阳区",
- "value": "230803000000"
- },
- {
- "text": "前进区",
- "value": "230804000000"
- },
- {
- "text": "东风区",
- "value": "230805000000"
- },
- {
- "text": "郊区",
- "value": "230811000000"
- },
- {
- "text": "桦南县",
- "value": "230822000000"
- },
- {
- "text": "桦川县",
- "value": "230826000000"
- },
- {
- "text": "汤原县",
- "value": "230828000000"
- },
- {
- "text": "同江市",
- "value": "230881000000"
- },
- {
- "text": "富锦市",
- "value": "230882000000"
- },
- {
- "text": "抚远市",
- "value": "230883000000"
- }
- ]
- },
- {
- "text": "七台河市",
- "value": "230900000000",
- "children": [{
- "text": "市辖区",
- "value": "230901000000"
- },
- {
- "text": "新兴区",
- "value": "230902000000"
- },
- {
- "text": "桃山区",
- "value": "230903000000"
- },
- {
- "text": "茄子河区",
- "value": "230904000000"
- },
- {
- "text": "勃利县",
- "value": "230921000000"
- }
- ]
- },
- {
- "text": "牡丹江市",
- "value": "231000000000",
- "children": [{
- "text": "市辖区",
- "value": "231001000000"
- },
- {
- "text": "东安区",
- "value": "231002000000"
- },
- {
- "text": "阳明区",
- "value": "231003000000"
- },
- {
- "text": "爱民区",
- "value": "231004000000"
- },
- {
- "text": "西安区",
- "value": "231005000000"
- },
- {
- "text": "林口县",
- "value": "231025000000"
- },
- {
- "text": "牡丹江经济技术开发区",
- "value": "231071000000"
- },
- {
- "text": "绥芬河市",
- "value": "231081000000"
- },
- {
- "text": "海林市",
- "value": "231083000000"
- },
- {
- "text": "宁安市",
- "value": "231084000000"
- },
- {
- "text": "穆棱市",
- "value": "231085000000"
- },
- {
- "text": "东宁市",
- "value": "231086000000"
- }
- ]
- },
- {
- "text": "黑河市",
- "value": "231100000000",
- "children": [{
- "text": "市辖区",
- "value": "231101000000"
- },
- {
- "text": "爱辉区",
- "value": "231102000000"
- },
- {
- "text": "逊克县",
- "value": "231123000000"
- },
- {
- "text": "孙吴县",
- "value": "231124000000"
- },
- {
- "text": "北安市",
- "value": "231181000000"
- },
- {
- "text": "五大连池市",
- "value": "231182000000"
- },
- {
- "text": "嫩江市",
- "value": "231183000000"
- }
- ]
- },
- {
- "text": "绥化市",
- "value": "231200000000",
- "children": [{
- "text": "市辖区",
- "value": "231201000000"
- },
- {
- "text": "北林区",
- "value": "231202000000"
- },
- {
- "text": "望奎县",
- "value": "231221000000"
- },
- {
- "text": "兰西县",
- "value": "231222000000"
- },
- {
- "text": "青冈县",
- "value": "231223000000"
- },
- {
- "text": "庆安县",
- "value": "231224000000"
- },
- {
- "text": "明水县",
- "value": "231225000000"
- },
- {
- "text": "绥棱县",
- "value": "231226000000"
- },
- {
- "text": "安达市",
- "value": "231281000000"
- },
- {
- "text": "肇东市",
- "value": "231282000000"
- },
- {
- "text": "海伦市",
- "value": "231283000000"
- }
- ]
- },
- {
- "text": "大兴安岭地区",
- "value": "232700000000",
- "children": [{
- "text": "漠河市",
- "value": "232701000000"
- },
- {
- "text": "呼玛县",
- "value": "232721000000"
- },
- {
- "text": "塔河县",
- "value": "232722000000"
- },
- {
- "text": "加格达奇区",
- "value": "232761000000"
- },
- {
- "text": "松岭区",
- "value": "232762000000"
- },
- {
- "text": "新林区",
- "value": "232763000000"
- },
- {
- "text": "呼中区",
- "value": "232764000000"
- }
- ]
- }
- ]
- },
- {
- "text": "上海市",
- "value": "310000000000",
- "children": [{
- "text": "市辖区",
- "value": "310100000000",
- "children": [{
- "text": "黄浦区",
- "value": "310101000000"
- },
- {
- "text": "徐汇区",
- "value": "310104000000"
- },
- {
- "text": "长宁区",
- "value": "310105000000"
- },
- {
- "text": "静安区",
- "value": "310106000000"
- },
- {
- "text": "普陀区",
- "value": "310107000000"
- },
- {
- "text": "虹口区",
- "value": "310109000000"
- },
- {
- "text": "杨浦区",
- "value": "310110000000"
- },
- {
- "text": "闵行区",
- "value": "310112000000"
- },
- {
- "text": "宝山区",
- "value": "310113000000"
- },
- {
- "text": "嘉定区",
- "value": "310114000000"
- },
- {
- "text": "浦东新区",
- "value": "310115000000"
- },
- {
- "text": "金山区",
- "value": "310116000000"
- },
- {
- "text": "松江区",
- "value": "310117000000"
- },
- {
- "text": "青浦区",
- "value": "310118000000"
- },
- {
- "text": "奉贤区",
- "value": "310120000000"
- },
- {
- "text": "崇明区",
- "value": "310151000000"
- }
- ]
- }]
- },
- {
- "text": "江苏省",
- "value": "320000000000",
- "children": [{
- "text": "南京市",
- "value": "320100000000",
- "children": [{
- "text": "市辖区",
- "value": "320101000000"
- },
- {
- "text": "玄武区",
- "value": "320102000000"
- },
- {
- "text": "秦淮区",
- "value": "320104000000"
- },
- {
- "text": "建邺区",
- "value": "320105000000"
- },
- {
- "text": "鼓楼区",
- "value": "320106000000"
- },
- {
- "text": "浦口区",
- "value": "320111000000"
- },
- {
- "text": "栖霞区",
- "value": "320113000000"
- },
- {
- "text": "雨花台区",
- "value": "320114000000"
- },
- {
- "text": "江宁区",
- "value": "320115000000"
- },
- {
- "text": "六合区",
- "value": "320116000000"
- },
- {
- "text": "溧水区",
- "value": "320117000000"
- },
- {
- "text": "高淳区",
- "value": "320118000000"
- }
- ]
- },
- {
- "text": "无锡市",
- "value": "320200000000",
- "children": [{
- "text": "市辖区",
- "value": "320201000000"
- },
- {
- "text": "锡山区",
- "value": "320205000000"
- },
- {
- "text": "惠山区",
- "value": "320206000000"
- },
- {
- "text": "滨湖区",
- "value": "320211000000"
- },
- {
- "text": "梁溪区",
- "value": "320213000000"
- },
- {
- "text": "新吴区",
- "value": "320214000000"
- },
- {
- "text": "江阴市",
- "value": "320281000000"
- },
- {
- "text": "宜兴市",
- "value": "320282000000"
- }
- ]
- },
- {
- "text": "徐州市",
- "value": "320300000000",
- "children": [{
- "text": "市辖区",
- "value": "320301000000"
- },
- {
- "text": "鼓楼区",
- "value": "320302000000"
- },
- {
- "text": "云龙区",
- "value": "320303000000"
- },
- {
- "text": "贾汪区",
- "value": "320305000000"
- },
- {
- "text": "泉山区",
- "value": "320311000000"
- },
- {
- "text": "铜山区",
- "value": "320312000000"
- },
- {
- "text": "丰县",
- "value": "320321000000"
- },
- {
- "text": "沛县",
- "value": "320322000000"
- },
- {
- "text": "睢宁县",
- "value": "320324000000"
- },
- {
- "text": "徐州经济技术开发区",
- "value": "320371000000"
- },
- {
- "text": "新沂市",
- "value": "320381000000"
- },
- {
- "text": "邳州市",
- "value": "320382000000"
- }
- ]
- },
- {
- "text": "常州市",
- "value": "320400000000",
- "children": [{
- "text": "市辖区",
- "value": "320401000000"
- },
- {
- "text": "天宁区",
- "value": "320402000000"
- },
- {
- "text": "钟楼区",
- "value": "320404000000"
- },
- {
- "text": "新北区",
- "value": "320411000000"
- },
- {
- "text": "武进区",
- "value": "320412000000"
- },
- {
- "text": "金坛区",
- "value": "320413000000"
- },
- {
- "text": "溧阳市",
- "value": "320481000000"
- }
- ]
- },
- {
- "text": "苏州市",
- "value": "320500000000",
- "children": [{
- "text": "市辖区",
- "value": "320501000000"
- },
- {
- "text": "虎丘区",
- "value": "320505000000"
- },
- {
- "text": "吴中区",
- "value": "320506000000"
- },
- {
- "text": "相城区",
- "value": "320507000000"
- },
- {
- "text": "姑苏区",
- "value": "320508000000"
- },
- {
- "text": "吴江区",
- "value": "320509000000"
- },
- {
- "text": "苏州工业园区",
- "value": "320571000000"
- },
- {
- "text": "常熟市",
- "value": "320581000000"
- },
- {
- "text": "张家港市",
- "value": "320582000000"
- },
- {
- "text": "昆山市",
- "value": "320583000000"
- },
- {
- "text": "太仓市",
- "value": "320585000000"
- }
- ]
- },
- {
- "text": "南通市",
- "value": "320600000000",
- "children": [{
- "text": "市辖区",
- "value": "320601000000"
- },
- {
- "text": "崇川区",
- "value": "320602000000"
- },
- {
- "text": "港闸区",
- "value": "320611000000"
- },
- {
- "text": "通州区",
- "value": "320612000000"
- },
- {
- "text": "如东县",
- "value": "320623000000"
- },
- {
- "text": "南通经济技术开发区",
- "value": "320671000000"
- },
- {
- "text": "启东市",
- "value": "320681000000"
- },
- {
- "text": "如皋市",
- "value": "320682000000"
- },
- {
- "text": "海门市",
- "value": "320684000000"
- },
- {
- "text": "海安市",
- "value": "320685000000"
- }
- ]
- },
- {
- "text": "连云港市",
- "value": "320700000000",
- "children": [{
- "text": "市辖区",
- "value": "320701000000"
- },
- {
- "text": "连云区",
- "value": "320703000000"
- },
- {
- "text": "海州区",
- "value": "320706000000"
- },
- {
- "text": "赣榆区",
- "value": "320707000000"
- },
- {
- "text": "东海县",
- "value": "320722000000"
- },
- {
- "text": "灌云县",
- "value": "320723000000"
- },
- {
- "text": "灌南县",
- "value": "320724000000"
- },
- {
- "text": "连云港经济技术开发区",
- "value": "320771000000"
- },
- {
- "text": "连云港高新技术产业开发区",
- "value": "320772000000"
- }
- ]
- },
- {
- "text": "淮安市",
- "value": "320800000000",
- "children": [{
- "text": "市辖区",
- "value": "320801000000"
- },
- {
- "text": "淮安区",
- "value": "320803000000"
- },
- {
- "text": "淮阴区",
- "value": "320804000000"
- },
- {
- "text": "清江浦区",
- "value": "320812000000"
- },
- {
- "text": "洪泽区",
- "value": "320813000000"
- },
- {
- "text": "涟水县",
- "value": "320826000000"
- },
- {
- "text": "盱眙县",
- "value": "320830000000"
- },
- {
- "text": "金湖县",
- "value": "320831000000"
- },
- {
- "text": "淮安经济技术开发区",
- "value": "320871000000"
- }
- ]
- },
- {
- "text": "盐城市",
- "value": "320900000000",
- "children": [{
- "text": "市辖区",
- "value": "320901000000"
- },
- {
- "text": "亭湖区",
- "value": "320902000000"
- },
- {
- "text": "盐都区",
- "value": "320903000000"
- },
- {
- "text": "大丰区",
- "value": "320904000000"
- },
- {
- "text": "响水县",
- "value": "320921000000"
- },
- {
- "text": "滨海县",
- "value": "320922000000"
- },
- {
- "text": "阜宁县",
- "value": "320923000000"
- },
- {
- "text": "射阳县",
- "value": "320924000000"
- },
- {
- "text": "建湖县",
- "value": "320925000000"
- },
- {
- "text": "盐城经济技术开发区",
- "value": "320971000000"
- },
- {
- "text": "东台市",
- "value": "320981000000"
- }
- ]
- },
- {
- "text": "扬州市",
- "value": "321000000000",
- "children": [{
- "text": "市辖区",
- "value": "321001000000"
- },
- {
- "text": "广陵区",
- "value": "321002000000"
- },
- {
- "text": "邗江区",
- "value": "321003000000"
- },
- {
- "text": "江都区",
- "value": "321012000000"
- },
- {
- "text": "宝应县",
- "value": "321023000000"
- },
- {
- "text": "扬州经济技术开发区",
- "value": "321071000000"
- },
- {
- "text": "仪征市",
- "value": "321081000000"
- },
- {
- "text": "高邮市",
- "value": "321084000000"
- }
- ]
- },
- {
- "text": "镇江市",
- "value": "321100000000",
- "children": [{
- "text": "市辖区",
- "value": "321101000000"
- },
- {
- "text": "京口区",
- "value": "321102000000"
- },
- {
- "text": "润州区",
- "value": "321111000000"
- },
- {
- "text": "丹徒区",
- "value": "321112000000"
- },
- {
- "text": "镇江新区",
- "value": "321171000000"
- },
- {
- "text": "丹阳市",
- "value": "321181000000"
- },
- {
- "text": "扬中市",
- "value": "321182000000"
- },
- {
- "text": "句容市",
- "value": "321183000000"
- }
- ]
- },
- {
- "text": "泰州市",
- "value": "321200000000",
- "children": [{
- "text": "市辖区",
- "value": "321201000000"
- },
- {
- "text": "海陵区",
- "value": "321202000000"
- },
- {
- "text": "高港区",
- "value": "321203000000"
- },
- {
- "text": "姜堰区",
- "value": "321204000000"
- },
- {
- "text": "泰州医药高新技术产业开发区",
- "value": "321271000000"
- },
- {
- "text": "兴化市",
- "value": "321281000000"
- },
- {
- "text": "靖江市",
- "value": "321282000000"
- },
- {
- "text": "泰兴市",
- "value": "321283000000"
- }
- ]
- },
- {
- "text": "宿迁市",
- "value": "321300000000",
- "children": [{
- "text": "市辖区",
- "value": "321301000000"
- },
- {
- "text": "宿城区",
- "value": "321302000000"
- },
- {
- "text": "宿豫区",
- "value": "321311000000"
- },
- {
- "text": "沭阳县",
- "value": "321322000000"
- },
- {
- "text": "泗阳县",
- "value": "321323000000"
- },
- {
- "text": "泗洪县",
- "value": "321324000000"
- },
- {
- "text": "宿迁经济技术开发区",
- "value": "321371000000"
- }
- ]
- }
- ]
- },
- {
- "text": "浙江省",
- "value": "330000000000",
- "children": [{
- "text": "杭州市",
- "value": "330100000000",
- "children": [{
- "text": "市辖区",
- "value": "330101000000"
- },
- {
- "text": "上城区",
- "value": "330102000000"
- },
- {
- "text": "下城区",
- "value": "330103000000"
- },
- {
- "text": "江干区",
- "value": "330104000000"
- },
- {
- "text": "拱墅区",
- "value": "330105000000"
- },
- {
- "text": "西湖区",
- "value": "330106000000"
- },
- {
- "text": "滨江区",
- "value": "330108000000"
- },
- {
- "text": "萧山区",
- "value": "330109000000"
- },
- {
- "text": "余杭区",
- "value": "330110000000"
- },
- {
- "text": "富阳区",
- "value": "330111000000"
- },
- {
- "text": "临安区",
- "value": "330112000000"
- },
- {
- "text": "桐庐县",
- "value": "330122000000"
- },
- {
- "text": "淳安县",
- "value": "330127000000"
- },
- {
- "text": "建德市",
- "value": "330182000000"
- }
- ]
- },
- {
- "text": "宁波市",
- "value": "330200000000",
- "children": [{
- "text": "市辖区",
- "value": "330201000000"
- },
- {
- "text": "海曙区",
- "value": "330203000000"
- },
- {
- "text": "江北区",
- "value": "330205000000"
- },
- {
- "text": "北仑区",
- "value": "330206000000"
- },
- {
- "text": "镇海区",
- "value": "330211000000"
- },
- {
- "text": "鄞州区",
- "value": "330212000000"
- },
- {
- "text": "奉化区",
- "value": "330213000000"
- },
- {
- "text": "象山县",
- "value": "330225000000"
- },
- {
- "text": "宁海县",
- "value": "330226000000"
- },
- {
- "text": "余姚市",
- "value": "330281000000"
- },
- {
- "text": "慈溪市",
- "value": "330282000000"
- }
- ]
- },
- {
- "text": "温州市",
- "value": "330300000000",
- "children": [{
- "text": "市辖区",
- "value": "330301000000"
- },
- {
- "text": "鹿城区",
- "value": "330302000000"
- },
- {
- "text": "龙湾区",
- "value": "330303000000"
- },
- {
- "text": "瓯海区",
- "value": "330304000000"
- },
- {
- "text": "洞头区",
- "value": "330305000000"
- },
- {
- "text": "永嘉县",
- "value": "330324000000"
- },
- {
- "text": "平阳县",
- "value": "330326000000"
- },
- {
- "text": "苍南县",
- "value": "330327000000"
- },
- {
- "text": "文成县",
- "value": "330328000000"
- },
- {
- "text": "泰顺县",
- "value": "330329000000"
- },
- {
- "text": "温州经济技术开发区",
- "value": "330371000000"
- },
- {
- "text": "瑞安市",
- "value": "330381000000"
- },
- {
- "text": "乐清市",
- "value": "330382000000"
- },
- {
- "text": "龙港市",
- "value": "330383000000"
- }
- ]
- },
- {
- "text": "嘉兴市",
- "value": "330400000000",
- "children": [{
- "text": "市辖区",
- "value": "330401000000"
- },
- {
- "text": "南湖区",
- "value": "330402000000"
- },
- {
- "text": "秀洲区",
- "value": "330411000000"
- },
- {
- "text": "嘉善县",
- "value": "330421000000"
- },
- {
- "text": "海盐县",
- "value": "330424000000"
- },
- {
- "text": "海宁市",
- "value": "330481000000"
- },
- {
- "text": "平湖市",
- "value": "330482000000"
- },
- {
- "text": "桐乡市",
- "value": "330483000000"
- }
- ]
- },
- {
- "text": "湖州市",
- "value": "330500000000",
- "children": [{
- "text": "市辖区",
- "value": "330501000000"
- },
- {
- "text": "吴兴区",
- "value": "330502000000"
- },
- {
- "text": "南浔区",
- "value": "330503000000"
- },
- {
- "text": "德清县",
- "value": "330521000000"
- },
- {
- "text": "长兴县",
- "value": "330522000000"
- },
- {
- "text": "安吉县",
- "value": "330523000000"
- }
- ]
- },
- {
- "text": "绍兴市",
- "value": "330600000000",
- "children": [{
- "text": "市辖区",
- "value": "330601000000"
- },
- {
- "text": "越城区",
- "value": "330602000000"
- },
- {
- "text": "柯桥区",
- "value": "330603000000"
- },
- {
- "text": "上虞区",
- "value": "330604000000"
- },
- {
- "text": "新昌县",
- "value": "330624000000"
- },
- {
- "text": "诸暨市",
- "value": "330681000000"
- },
- {
- "text": "嵊州市",
- "value": "330683000000"
- }
- ]
- },
- {
- "text": "金华市",
- "value": "330700000000",
- "children": [{
- "text": "市辖区",
- "value": "330701000000"
- },
- {
- "text": "婺城区",
- "value": "330702000000"
- },
- {
- "text": "金东区",
- "value": "330703000000"
- },
- {
- "text": "武义县",
- "value": "330723000000"
- },
- {
- "text": "浦江县",
- "value": "330726000000"
- },
- {
- "text": "磐安县",
- "value": "330727000000"
- },
- {
- "text": "兰溪市",
- "value": "330781000000"
- },
- {
- "text": "义乌市",
- "value": "330782000000"
- },
- {
- "text": "东阳市",
- "value": "330783000000"
- },
- {
- "text": "永康市",
- "value": "330784000000"
- }
- ]
- },
- {
- "text": "衢州市",
- "value": "330800000000",
- "children": [{
- "text": "市辖区",
- "value": "330801000000"
- },
- {
- "text": "柯城区",
- "value": "330802000000"
- },
- {
- "text": "衢江区",
- "value": "330803000000"
- },
- {
- "text": "常山县",
- "value": "330822000000"
- },
- {
- "text": "开化县",
- "value": "330824000000"
- },
- {
- "text": "龙游县",
- "value": "330825000000"
- },
- {
- "text": "江山市",
- "value": "330881000000"
- }
- ]
- },
- {
- "text": "舟山市",
- "value": "330900000000",
- "children": [{
- "text": "市辖区",
- "value": "330901000000"
- },
- {
- "text": "定海区",
- "value": "330902000000"
- },
- {
- "text": "普陀区",
- "value": "330903000000"
- },
- {
- "text": "岱山县",
- "value": "330921000000"
- },
- {
- "text": "嵊泗县",
- "value": "330922000000"
- }
- ]
- },
- {
- "text": "台州市",
- "value": "331000000000",
- "children": [{
- "text": "市辖区",
- "value": "331001000000"
- },
- {
- "text": "椒江区",
- "value": "331002000000"
- },
- {
- "text": "黄岩区",
- "value": "331003000000"
- },
- {
- "text": "路桥区",
- "value": "331004000000"
- },
- {
- "text": "三门县",
- "value": "331022000000"
- },
- {
- "text": "天台县",
- "value": "331023000000"
- },
- {
- "text": "仙居县",
- "value": "331024000000"
- },
- {
- "text": "温岭市",
- "value": "331081000000"
- },
- {
- "text": "临海市",
- "value": "331082000000"
- },
- {
- "text": "玉环市",
- "value": "331083000000"
- }
- ]
- },
- {
- "text": "丽水市",
- "value": "331100000000",
- "children": [{
- "text": "市辖区",
- "value": "331101000000"
- },
- {
- "text": "莲都区",
- "value": "331102000000"
- },
- {
- "text": "青田县",
- "value": "331121000000"
- },
- {
- "text": "缙云县",
- "value": "331122000000"
- },
- {
- "text": "遂昌县",
- "value": "331123000000"
- },
- {
- "text": "松阳县",
- "value": "331124000000"
- },
- {
- "text": "云和县",
- "value": "331125000000"
- },
- {
- "text": "庆元县",
- "value": "331126000000"
- },
- {
- "text": "景宁畲族自治县",
- "value": "331127000000"
- },
- {
- "text": "龙泉市",
- "value": "331181000000"
- }
- ]
- }
- ]
- },
- {
- "text": "安徽省",
- "value": "340000000000",
- "children": [{
- "text": "合肥市",
- "value": "340100000000",
- "children": [{
- "text": "市辖区",
- "value": "340101000000"
- },
- {
- "text": "瑶海区",
- "value": "340102000000"
- },
- {
- "text": "庐阳区",
- "value": "340103000000"
- },
- {
- "text": "蜀山区",
- "value": "340104000000"
- },
- {
- "text": "包河区",
- "value": "340111000000"
- },
- {
- "text": "长丰县",
- "value": "340121000000"
- },
- {
- "text": "肥东县",
- "value": "340122000000"
- },
- {
- "text": "肥西县",
- "value": "340123000000"
- },
- {
- "text": "庐江县",
- "value": "340124000000"
- },
- {
- "text": "合肥高新技术产业开发区",
- "value": "340171000000"
- },
- {
- "text": "合肥经济技术开发区",
- "value": "340172000000"
- },
- {
- "text": "合肥新站高新技术产业开发区",
- "value": "340173000000"
- },
- {
- "text": "巢湖市",
- "value": "340181000000"
- }
- ]
- },
- {
- "text": "芜湖市",
- "value": "340200000000",
- "children": [{
- "text": "市辖区",
- "value": "340201000000"
- },
- {
- "text": "镜湖区",
- "value": "340202000000"
- },
- {
- "text": "弋江区",
- "value": "340203000000"
- },
- {
- "text": "鸠江区",
- "value": "340207000000"
- },
- {
- "text": "三山区",
- "value": "340208000000"
- },
- {
- "text": "芜湖县",
- "value": "340221000000"
- },
- {
- "text": "繁昌县",
- "value": "340222000000"
- },
- {
- "text": "南陵县",
- "value": "340223000000"
- },
- {
- "text": "芜湖经济技术开发区",
- "value": "340271000000"
- },
- {
- "text": "安徽芜湖长江大桥经济开发区",
- "value": "340272000000"
- },
- {
- "text": "无为市",
- "value": "340281000000"
- }
- ]
- },
- {
- "text": "蚌埠市",
- "value": "340300000000",
- "children": [{
- "text": "市辖区",
- "value": "340301000000"
- },
- {
- "text": "龙子湖区",
- "value": "340302000000"
- },
- {
- "text": "蚌山区",
- "value": "340303000000"
- },
- {
- "text": "禹会区",
- "value": "340304000000"
- },
- {
- "text": "淮上区",
- "value": "340311000000"
- },
- {
- "text": "怀远县",
- "value": "340321000000"
- },
- {
- "text": "五河县",
- "value": "340322000000"
- },
- {
- "text": "固镇县",
- "value": "340323000000"
- },
- {
- "text": "蚌埠市高新技术开发区",
- "value": "340371000000"
- },
- {
- "text": "蚌埠市经济开发区",
- "value": "340372000000"
- }
- ]
- },
- {
- "text": "淮南市",
- "value": "340400000000",
- "children": [{
- "text": "市辖区",
- "value": "340401000000"
- },
- {
- "text": "大通区",
- "value": "340402000000"
- },
- {
- "text": "田家庵区",
- "value": "340403000000"
- },
- {
- "text": "谢家集区",
- "value": "340404000000"
- },
- {
- "text": "八公山区",
- "value": "340405000000"
- },
- {
- "text": "潘集区",
- "value": "340406000000"
- },
- {
- "text": "凤台县",
- "value": "340421000000"
- },
- {
- "text": "寿县",
- "value": "340422000000"
- }
- ]
- },
- {
- "text": "马鞍山市",
- "value": "340500000000",
- "children": [{
- "text": "市辖区",
- "value": "340501000000"
- },
- {
- "text": "花山区",
- "value": "340503000000"
- },
- {
- "text": "雨山区",
- "value": "340504000000"
- },
- {
- "text": "博望区",
- "value": "340506000000"
- },
- {
- "text": "当涂县",
- "value": "340521000000"
- },
- {
- "text": "含山县",
- "value": "340522000000"
- },
- {
- "text": "和县",
- "value": "340523000000"
- }
- ]
- },
- {
- "text": "淮北市",
- "value": "340600000000",
- "children": [{
- "text": "市辖区",
- "value": "340601000000"
- },
- {
- "text": "杜集区",
- "value": "340602000000"
- },
- {
- "text": "相山区",
- "value": "340603000000"
- },
- {
- "text": "烈山区",
- "value": "340604000000"
- },
- {
- "text": "濉溪县",
- "value": "340621000000"
- }
- ]
- },
- {
- "text": "铜陵市",
- "value": "340700000000",
- "children": [{
- "text": "市辖区",
- "value": "340701000000"
- },
- {
- "text": "铜官区",
- "value": "340705000000"
- },
- {
- "text": "义安区",
- "value": "340706000000"
- },
- {
- "text": "郊区",
- "value": "340711000000"
- },
- {
- "text": "枞阳县",
- "value": "340722000000"
- }
- ]
- },
- {
- "text": "安庆市",
- "value": "340800000000",
- "children": [{
- "text": "市辖区",
- "value": "340801000000"
- },
- {
- "text": "迎江区",
- "value": "340802000000"
- },
- {
- "text": "大观区",
- "value": "340803000000"
- },
- {
- "text": "宜秀区",
- "value": "340811000000"
- },
- {
- "text": "怀宁县",
- "value": "340822000000"
- },
- {
- "text": "太湖县",
- "value": "340825000000"
- },
- {
- "text": "宿松县",
- "value": "340826000000"
- },
- {
- "text": "望江县",
- "value": "340827000000"
- },
- {
- "text": "岳西县",
- "value": "340828000000"
- },
- {
- "text": "安徽安庆经济开发区",
- "value": "340871000000"
- },
- {
- "text": "桐城市",
- "value": "340881000000"
- },
- {
- "text": "潜山市",
- "value": "340882000000"
- }
- ]
- },
- {
- "text": "黄山市",
- "value": "341000000000",
- "children": [{
- "text": "市辖区",
- "value": "341001000000"
- },
- {
- "text": "屯溪区",
- "value": "341002000000"
- },
- {
- "text": "黄山区",
- "value": "341003000000"
- },
- {
- "text": "徽州区",
- "value": "341004000000"
- },
- {
- "text": "歙县",
- "value": "341021000000"
- },
- {
- "text": "休宁县",
- "value": "341022000000"
- },
- {
- "text": "黟县",
- "value": "341023000000"
- },
- {
- "text": "祁门县",
- "value": "341024000000"
- }
- ]
- },
- {
- "text": "滁州市",
- "value": "341100000000",
- "children": [{
- "text": "市辖区",
- "value": "341101000000"
- },
- {
- "text": "琅琊区",
- "value": "341102000000"
- },
- {
- "text": "南谯区",
- "value": "341103000000"
- },
- {
- "text": "来安县",
- "value": "341122000000"
- },
- {
- "text": "全椒县",
- "value": "341124000000"
- },
- {
- "text": "定远县",
- "value": "341125000000"
- },
- {
- "text": "凤阳县",
- "value": "341126000000"
- },
- {
- "text": "苏滁现代产业园",
- "value": "341171000000"
- },
- {
- "text": "滁州经济技术开发区",
- "value": "341172000000"
- },
- {
- "text": "天长市",
- "value": "341181000000"
- },
- {
- "text": "明光市",
- "value": "341182000000"
- }
- ]
- },
- {
- "text": "阜阳市",
- "value": "341200000000",
- "children": [{
- "text": "市辖区",
- "value": "341201000000"
- },
- {
- "text": "颍州区",
- "value": "341202000000"
- },
- {
- "text": "颍东区",
- "value": "341203000000"
- },
- {
- "text": "颍泉区",
- "value": "341204000000"
- },
- {
- "text": "临泉县",
- "value": "341221000000"
- },
- {
- "text": "太和县",
- "value": "341222000000"
- },
- {
- "text": "阜南县",
- "value": "341225000000"
- },
- {
- "text": "颍上县",
- "value": "341226000000"
- },
- {
- "text": "阜阳合肥现代产业园区",
- "value": "341271000000"
- },
- {
- "text": "阜阳经济技术开发区",
- "value": "341272000000"
- },
- {
- "text": "界首市",
- "value": "341282000000"
- }
- ]
- },
- {
- "text": "宿州市",
- "value": "341300000000",
- "children": [{
- "text": "市辖区",
- "value": "341301000000"
- },
- {
- "text": "埇桥区",
- "value": "341302000000"
- },
- {
- "text": "砀山县",
- "value": "341321000000"
- },
- {
- "text": "萧县",
- "value": "341322000000"
- },
- {
- "text": "灵璧县",
- "value": "341323000000"
- },
- {
- "text": "泗县",
- "value": "341324000000"
- },
- {
- "text": "宿州马鞍山现代产业园区",
- "value": "341371000000"
- },
- {
- "text": "宿州经济技术开发区",
- "value": "341372000000"
- }
- ]
- },
- {
- "text": "六安市",
- "value": "341500000000",
- "children": [{
- "text": "市辖区",
- "value": "341501000000"
- },
- {
- "text": "金安区",
- "value": "341502000000"
- },
- {
- "text": "裕安区",
- "value": "341503000000"
- },
- {
- "text": "叶集区",
- "value": "341504000000"
- },
- {
- "text": "霍邱县",
- "value": "341522000000"
- },
- {
- "text": "舒城县",
- "value": "341523000000"
- },
- {
- "text": "金寨县",
- "value": "341524000000"
- },
- {
- "text": "霍山县",
- "value": "341525000000"
- }
- ]
- },
- {
- "text": "亳州市",
- "value": "341600000000",
- "children": [{
- "text": "市辖区",
- "value": "341601000000"
- },
- {
- "text": "谯城区",
- "value": "341602000000"
- },
- {
- "text": "涡阳县",
- "value": "341621000000"
- },
- {
- "text": "蒙城县",
- "value": "341622000000"
- },
- {
- "text": "利辛县",
- "value": "341623000000"
- }
- ]
- },
- {
- "text": "池州市",
- "value": "341700000000",
- "children": [{
- "text": "市辖区",
- "value": "341701000000"
- },
- {
- "text": "贵池区",
- "value": "341702000000"
- },
- {
- "text": "东至县",
- "value": "341721000000"
- },
- {
- "text": "石台县",
- "value": "341722000000"
- },
- {
- "text": "青阳县",
- "value": "341723000000"
- }
- ]
- },
- {
- "text": "宣城市",
- "value": "341800000000",
- "children": [{
- "text": "市辖区",
- "value": "341801000000"
- },
- {
- "text": "宣州区",
- "value": "341802000000"
- },
- {
- "text": "郎溪县",
- "value": "341821000000"
- },
- {
- "text": "泾县",
- "value": "341823000000"
- },
- {
- "text": "绩溪县",
- "value": "341824000000"
- },
- {
- "text": "旌德县",
- "value": "341825000000"
- },
- {
- "text": "宣城市经济开发区",
- "value": "341871000000"
- },
- {
- "text": "宁国市",
- "value": "341881000000"
- },
- {
- "text": "广德市",
- "value": "341882000000"
- }
- ]
- }
- ]
- },
- {
- "text": "福建省",
- "value": "350000000000",
- "children": [{
- "text": "福州市",
- "value": "350100000000",
- "children": [{
- "text": "市辖区",
- "value": "350101000000"
- },
- {
- "text": "鼓楼区",
- "value": "350102000000"
- },
- {
- "text": "台江区",
- "value": "350103000000"
- },
- {
- "text": "仓山区",
- "value": "350104000000"
- },
- {
- "text": "马尾区",
- "value": "350105000000"
- },
- {
- "text": "晋安区",
- "value": "350111000000"
- },
- {
- "text": "长乐区",
- "value": "350112000000"
- },
- {
- "text": "闽侯县",
- "value": "350121000000"
- },
- {
- "text": "连江县",
- "value": "350122000000"
- },
- {
- "text": "罗源县",
- "value": "350123000000"
- },
- {
- "text": "闽清县",
- "value": "350124000000"
- },
- {
- "text": "永泰县",
- "value": "350125000000"
- },
- {
- "text": "平潭县",
- "value": "350128000000"
- },
- {
- "text": "福清市",
- "value": "350181000000"
- }
- ]
- },
- {
- "text": "厦门市",
- "value": "350200000000",
- "children": [{
- "text": "市辖区",
- "value": "350201000000"
- },
- {
- "text": "思明区",
- "value": "350203000000"
- },
- {
- "text": "海沧区",
- "value": "350205000000"
- },
- {
- "text": "湖里区",
- "value": "350206000000"
- },
- {
- "text": "集美区",
- "value": "350211000000"
- },
- {
- "text": "同安区",
- "value": "350212000000"
- },
- {
- "text": "翔安区",
- "value": "350213000000"
- }
- ]
- },
- {
- "text": "莆田市",
- "value": "350300000000",
- "children": [{
- "text": "市辖区",
- "value": "350301000000"
- },
- {
- "text": "城厢区",
- "value": "350302000000"
- },
- {
- "text": "涵江区",
- "value": "350303000000"
- },
- {
- "text": "荔城区",
- "value": "350304000000"
- },
- {
- "text": "秀屿区",
- "value": "350305000000"
- },
- {
- "text": "仙游县",
- "value": "350322000000"
- }
- ]
- },
- {
- "text": "三明市",
- "value": "350400000000",
- "children": [{
- "text": "市辖区",
- "value": "350401000000"
- },
- {
- "text": "梅列区",
- "value": "350402000000"
- },
- {
- "text": "三元区",
- "value": "350403000000"
- },
- {
- "text": "明溪县",
- "value": "350421000000"
- },
- {
- "text": "清流县",
- "value": "350423000000"
- },
- {
- "text": "宁化县",
- "value": "350424000000"
- },
- {
- "text": "大田县",
- "value": "350425000000"
- },
- {
- "text": "尤溪县",
- "value": "350426000000"
- },
- {
- "text": "沙县",
- "value": "350427000000"
- },
- {
- "text": "将乐县",
- "value": "350428000000"
- },
- {
- "text": "泰宁县",
- "value": "350429000000"
- },
- {
- "text": "建宁县",
- "value": "350430000000"
- },
- {
- "text": "永安市",
- "value": "350481000000"
- }
- ]
- },
- {
- "text": "泉州市",
- "value": "350500000000",
- "children": [{
- "text": "市辖区",
- "value": "350501000000"
- },
- {
- "text": "鲤城区",
- "value": "350502000000"
- },
- {
- "text": "丰泽区",
- "value": "350503000000"
- },
- {
- "text": "洛江区",
- "value": "350504000000"
- },
- {
- "text": "泉港区",
- "value": "350505000000"
- },
- {
- "text": "惠安县",
- "value": "350521000000"
- },
- {
- "text": "安溪县",
- "value": "350524000000"
- },
- {
- "text": "永春县",
- "value": "350525000000"
- },
- {
- "text": "德化县",
- "value": "350526000000"
- },
- {
- "text": "金门县",
- "value": "350527000000"
- },
- {
- "text": "石狮市",
- "value": "350581000000"
- },
- {
- "text": "晋江市",
- "value": "350582000000"
- },
- {
- "text": "南安市",
- "value": "350583000000"
- }
- ]
- },
- {
- "text": "漳州市",
- "value": "350600000000",
- "children": [{
- "text": "市辖区",
- "value": "350601000000"
- },
- {
- "text": "芗城区",
- "value": "350602000000"
- },
- {
- "text": "龙文区",
- "value": "350603000000"
- },
- {
- "text": "云霄县",
- "value": "350622000000"
- },
- {
- "text": "漳浦县",
- "value": "350623000000"
- },
- {
- "text": "诏安县",
- "value": "350624000000"
- },
- {
- "text": "长泰县",
- "value": "350625000000"
- },
- {
- "text": "东山县",
- "value": "350626000000"
- },
- {
- "text": "南靖县",
- "value": "350627000000"
- },
- {
- "text": "平和县",
- "value": "350628000000"
- },
- {
- "text": "华安县",
- "value": "350629000000"
- },
- {
- "text": "龙海市",
- "value": "350681000000"
- }
- ]
- },
- {
- "text": "南平市",
- "value": "350700000000",
- "children": [{
- "text": "市辖区",
- "value": "350701000000"
- },
- {
- "text": "延平区",
- "value": "350702000000"
- },
- {
- "text": "建阳区",
- "value": "350703000000"
- },
- {
- "text": "顺昌县",
- "value": "350721000000"
- },
- {
- "text": "浦城县",
- "value": "350722000000"
- },
- {
- "text": "光泽县",
- "value": "350723000000"
- },
- {
- "text": "松溪县",
- "value": "350724000000"
- },
- {
- "text": "政和县",
- "value": "350725000000"
- },
- {
- "text": "邵武市",
- "value": "350781000000"
- },
- {
- "text": "武夷山市",
- "value": "350782000000"
- },
- {
- "text": "建瓯市",
- "value": "350783000000"
- }
- ]
- },
- {
- "text": "龙岩市",
- "value": "350800000000",
- "children": [{
- "text": "市辖区",
- "value": "350801000000"
- },
- {
- "text": "新罗区",
- "value": "350802000000"
- },
- {
- "text": "永定区",
- "value": "350803000000"
- },
- {
- "text": "长汀县",
- "value": "350821000000"
- },
- {
- "text": "上杭县",
- "value": "350823000000"
- },
- {
- "text": "武平县",
- "value": "350824000000"
- },
- {
- "text": "连城县",
- "value": "350825000000"
- },
- {
- "text": "漳平市",
- "value": "350881000000"
- }
- ]
- },
- {
- "text": "宁德市",
- "value": "350900000000",
- "children": [{
- "text": "市辖区",
- "value": "350901000000"
- },
- {
- "text": "蕉城区",
- "value": "350902000000"
- },
- {
- "text": "霞浦县",
- "value": "350921000000"
- },
- {
- "text": "古田县",
- "value": "350922000000"
- },
- {
- "text": "屏南县",
- "value": "350923000000"
- },
- {
- "text": "寿宁县",
- "value": "350924000000"
- },
- {
- "text": "周宁县",
- "value": "350925000000"
- },
- {
- "text": "柘荣县",
- "value": "350926000000"
- },
- {
- "text": "福安市",
- "value": "350981000000"
- },
- {
- "text": "福鼎市",
- "value": "350982000000"
- }
- ]
- }
- ]
- },
- {
- "text": "江西省",
- "value": "360000000000",
- "children": [{
- "text": "南昌市",
- "value": "360100000000",
- "children": [{
- "text": "市辖区",
- "value": "360101000000"
- },
- {
- "text": "东湖区",
- "value": "360102000000"
- },
- {
- "text": "西湖区",
- "value": "360103000000"
- },
- {
- "text": "青云谱区",
- "value": "360104000000"
- },
- {
- "text": "青山湖区",
- "value": "360111000000"
- },
- {
- "text": "新建区",
- "value": "360112000000"
- },
- {
- "text": "红谷滩区",
- "value": "360113000000"
- },
- {
- "text": "南昌县",
- "value": "360121000000"
- },
- {
- "text": "安义县",
- "value": "360123000000"
- },
- {
- "text": "进贤县",
- "value": "360124000000"
- }
- ]
- },
- {
- "text": "景德镇市",
- "value": "360200000000",
- "children": [{
- "text": "市辖区",
- "value": "360201000000"
- },
- {
- "text": "昌江区",
- "value": "360202000000"
- },
- {
- "text": "珠山区",
- "value": "360203000000"
- },
- {
- "text": "浮梁县",
- "value": "360222000000"
- },
- {
- "text": "乐平市",
- "value": "360281000000"
- }
- ]
- },
- {
- "text": "萍乡市",
- "value": "360300000000",
- "children": [{
- "text": "市辖区",
- "value": "360301000000"
- },
- {
- "text": "安源区",
- "value": "360302000000"
- },
- {
- "text": "湘东区",
- "value": "360313000000"
- },
- {
- "text": "莲花县",
- "value": "360321000000"
- },
- {
- "text": "上栗县",
- "value": "360322000000"
- },
- {
- "text": "芦溪县",
- "value": "360323000000"
- }
- ]
- },
- {
- "text": "九江市",
- "value": "360400000000",
- "children": [{
- "text": "市辖区",
- "value": "360401000000"
- },
- {
- "text": "濂溪区",
- "value": "360402000000"
- },
- {
- "text": "浔阳区",
- "value": "360403000000"
- },
- {
- "text": "柴桑区",
- "value": "360404000000"
- },
- {
- "text": "武宁县",
- "value": "360423000000"
- },
- {
- "text": "修水县",
- "value": "360424000000"
- },
- {
- "text": "永修县",
- "value": "360425000000"
- },
- {
- "text": "德安县",
- "value": "360426000000"
- },
- {
- "text": "都昌县",
- "value": "360428000000"
- },
- {
- "text": "湖口县",
- "value": "360429000000"
- },
- {
- "text": "彭泽县",
- "value": "360430000000"
- },
- {
- "text": "瑞昌市",
- "value": "360481000000"
- },
- {
- "text": "共青城市",
- "value": "360482000000"
- },
- {
- "text": "庐山市",
- "value": "360483000000"
- }
- ]
- },
- {
- "text": "新余市",
- "value": "360500000000",
- "children": [{
- "text": "市辖区",
- "value": "360501000000"
- },
- {
- "text": "渝水区",
- "value": "360502000000"
- },
- {
- "text": "分宜县",
- "value": "360521000000"
- }
- ]
- },
- {
- "text": "鹰潭市",
- "value": "360600000000",
- "children": [{
- "text": "市辖区",
- "value": "360601000000"
- },
- {
- "text": "月湖区",
- "value": "360602000000"
- },
- {
- "text": "余江区",
- "value": "360603000000"
- },
- {
- "text": "贵溪市",
- "value": "360681000000"
- }
- ]
- },
- {
- "text": "赣州市",
- "value": "360700000000",
- "children": [{
- "text": "市辖区",
- "value": "360701000000"
- },
- {
- "text": "章贡区",
- "value": "360702000000"
- },
- {
- "text": "南康区",
- "value": "360703000000"
- },
- {
- "text": "赣县区",
- "value": "360704000000"
- },
- {
- "text": "信丰县",
- "value": "360722000000"
- },
- {
- "text": "大余县",
- "value": "360723000000"
- },
- {
- "text": "上犹县",
- "value": "360724000000"
- },
- {
- "text": "崇义县",
- "value": "360725000000"
- },
- {
- "text": "安远县",
- "value": "360726000000"
- },
- {
- "text": "定南县",
- "value": "360728000000"
- },
- {
- "text": "全南县",
- "value": "360729000000"
- },
- {
- "text": "宁都县",
- "value": "360730000000"
- },
- {
- "text": "于都县",
- "value": "360731000000"
- },
- {
- "text": "兴国县",
- "value": "360732000000"
- },
- {
- "text": "会昌县",
- "value": "360733000000"
- },
- {
- "text": "寻乌县",
- "value": "360734000000"
- },
- {
- "text": "石城县",
- "value": "360735000000"
- },
- {
- "text": "瑞金市",
- "value": "360781000000"
- },
- {
- "text": "龙南市",
- "value": "360783000000"
- }
- ]
- },
- {
- "text": "吉安市",
- "value": "360800000000",
- "children": [{
- "text": "市辖区",
- "value": "360801000000"
- },
- {
- "text": "吉州区",
- "value": "360802000000"
- },
- {
- "text": "青原区",
- "value": "360803000000"
- },
- {
- "text": "吉安县",
- "value": "360821000000"
- },
- {
- "text": "吉水县",
- "value": "360822000000"
- },
- {
- "text": "峡江县",
- "value": "360823000000"
- },
- {
- "text": "新干县",
- "value": "360824000000"
- },
- {
- "text": "永丰县",
- "value": "360825000000"
- },
- {
- "text": "泰和县",
- "value": "360826000000"
- },
- {
- "text": "遂川县",
- "value": "360827000000"
- },
- {
- "text": "万安县",
- "value": "360828000000"
- },
- {
- "text": "安福县",
- "value": "360829000000"
- },
- {
- "text": "永新县",
- "value": "360830000000"
- },
- {
- "text": "井冈山市",
- "value": "360881000000"
- }
- ]
- },
- {
- "text": "宜春市",
- "value": "360900000000",
- "children": [{
- "text": "市辖区",
- "value": "360901000000"
- },
- {
- "text": "袁州区",
- "value": "360902000000"
- },
- {
- "text": "奉新县",
- "value": "360921000000"
- },
- {
- "text": "万载县",
- "value": "360922000000"
- },
- {
- "text": "上高县",
- "value": "360923000000"
- },
- {
- "text": "宜丰县",
- "value": "360924000000"
- },
- {
- "text": "靖安县",
- "value": "360925000000"
- },
- {
- "text": "铜鼓县",
- "value": "360926000000"
- },
- {
- "text": "丰城市",
- "value": "360981000000"
- },
- {
- "text": "樟树市",
- "value": "360982000000"
- },
- {
- "text": "高安市",
- "value": "360983000000"
- }
- ]
- },
- {
- "text": "抚州市",
- "value": "361000000000",
- "children": [{
- "text": "市辖区",
- "value": "361001000000"
- },
- {
- "text": "临川区",
- "value": "361002000000"
- },
- {
- "text": "东乡区",
- "value": "361003000000"
- },
- {
- "text": "南城县",
- "value": "361021000000"
- },
- {
- "text": "黎川县",
- "value": "361022000000"
- },
- {
- "text": "南丰县",
- "value": "361023000000"
- },
- {
- "text": "崇仁县",
- "value": "361024000000"
- },
- {
- "text": "乐安县",
- "value": "361025000000"
- },
- {
- "text": "宜黄县",
- "value": "361026000000"
- },
- {
- "text": "金溪县",
- "value": "361027000000"
- },
- {
- "text": "资溪县",
- "value": "361028000000"
- },
- {
- "text": "广昌县",
- "value": "361030000000"
- }
- ]
- },
- {
- "text": "上饶市",
- "value": "361100000000",
- "children": [{
- "text": "市辖区",
- "value": "361101000000"
- },
- {
- "text": "信州区",
- "value": "361102000000"
- },
- {
- "text": "广丰区",
- "value": "361103000000"
- },
- {
- "text": "广信区",
- "value": "361104000000"
- },
- {
- "text": "玉山县",
- "value": "361123000000"
- },
- {
- "text": "铅山县",
- "value": "361124000000"
- },
- {
- "text": "横峰县",
- "value": "361125000000"
- },
- {
- "text": "弋阳县",
- "value": "361126000000"
- },
- {
- "text": "余干县",
- "value": "361127000000"
- },
- {
- "text": "鄱阳县",
- "value": "361128000000"
- },
- {
- "text": "万年县",
- "value": "361129000000"
- },
- {
- "text": "婺源县",
- "value": "361130000000"
- },
- {
- "text": "德兴市",
- "value": "361181000000"
- }
- ]
- }
- ]
- },
- {
- "text": "山东省",
- "value": "370000000000",
- "children": [{
- "text": "济南市",
- "value": "370100000000",
- "children": [{
- "text": "市辖区",
- "value": "370101000000"
- },
- {
- "text": "历下区",
- "value": "370102000000"
- },
- {
- "text": "市中区",
- "value": "370103000000"
- },
- {
- "text": "槐荫区",
- "value": "370104000000"
- },
- {
- "text": "天桥区",
- "value": "370105000000"
- },
- {
- "text": "历城区",
- "value": "370112000000"
- },
- {
- "text": "长清区",
- "value": "370113000000"
- },
- {
- "text": "章丘区",
- "value": "370114000000"
- },
- {
- "text": "济阳区",
- "value": "370115000000"
- },
- {
- "text": "莱芜区",
- "value": "370116000000"
- },
- {
- "text": "钢城区",
- "value": "370117000000"
- },
- {
- "text": "平阴县",
- "value": "370124000000"
- },
- {
- "text": "商河县",
- "value": "370126000000"
- },
- {
- "text": "济南高新技术产业开发区",
- "value": "370171000000"
- }
- ]
- },
- {
- "text": "青岛市",
- "value": "370200000000",
- "children": [{
- "text": "市辖区",
- "value": "370201000000"
- },
- {
- "text": "市南区",
- "value": "370202000000"
- },
- {
- "text": "市北区",
- "value": "370203000000"
- },
- {
- "text": "黄岛区",
- "value": "370211000000"
- },
- {
- "text": "崂山区",
- "value": "370212000000"
- },
- {
- "text": "李沧区",
- "value": "370213000000"
- },
- {
- "text": "城阳区",
- "value": "370214000000"
- },
- {
- "text": "即墨区",
- "value": "370215000000"
- },
- {
- "text": "青岛高新技术产业开发区",
- "value": "370271000000"
- },
- {
- "text": "胶州市",
- "value": "370281000000"
- },
- {
- "text": "平度市",
- "value": "370283000000"
- },
- {
- "text": "莱西市",
- "value": "370285000000"
- }
- ]
- },
- {
- "text": "淄博市",
- "value": "370300000000",
- "children": [{
- "text": "市辖区",
- "value": "370301000000"
- },
- {
- "text": "淄川区",
- "value": "370302000000"
- },
- {
- "text": "张店区",
- "value": "370303000000"
- },
- {
- "text": "博山区",
- "value": "370304000000"
- },
- {
- "text": "临淄区",
- "value": "370305000000"
- },
- {
- "text": "周村区",
- "value": "370306000000"
- },
- {
- "text": "桓台县",
- "value": "370321000000"
- },
- {
- "text": "高青县",
- "value": "370322000000"
- },
- {
- "text": "沂源县",
- "value": "370323000000"
- }
- ]
- },
- {
- "text": "枣庄市",
- "value": "370400000000",
- "children": [{
- "text": "市辖区",
- "value": "370401000000"
- },
- {
- "text": "市中区",
- "value": "370402000000"
- },
- {
- "text": "薛城区",
- "value": "370403000000"
- },
- {
- "text": "峄城区",
- "value": "370404000000"
- },
- {
- "text": "台儿庄区",
- "value": "370405000000"
- },
- {
- "text": "山亭区",
- "value": "370406000000"
- },
- {
- "text": "滕州市",
- "value": "370481000000"
- }
- ]
- },
- {
- "text": "东营市",
- "value": "370500000000",
- "children": [{
- "text": "市辖区",
- "value": "370501000000"
- },
- {
- "text": "东营区",
- "value": "370502000000"
- },
- {
- "text": "河口区",
- "value": "370503000000"
- },
- {
- "text": "垦利区",
- "value": "370505000000"
- },
- {
- "text": "利津县",
- "value": "370522000000"
- },
- {
- "text": "广饶县",
- "value": "370523000000"
- },
- {
- "text": "东营经济技术开发区",
- "value": "370571000000"
- },
- {
- "text": "东营港经济开发区",
- "value": "370572000000"
- }
- ]
- },
- {
- "text": "烟台市",
- "value": "370600000000",
- "children": [{
- "text": "市辖区",
- "value": "370601000000"
- },
- {
- "text": "芝罘区",
- "value": "370602000000"
- },
- {
- "text": "福山区",
- "value": "370611000000"
- },
- {
- "text": "牟平区",
- "value": "370612000000"
- },
- {
- "text": "莱山区",
- "value": "370613000000"
- },
- {
- "text": "蓬莱区",
- "value": "370614000000"
- },
- {
- "text": "烟台高新技术产业开发区",
- "value": "370671000000"
- },
- {
- "text": "烟台经济技术开发区",
- "value": "370672000000"
- },
- {
- "text": "龙口市",
- "value": "370681000000"
- },
- {
- "text": "莱阳市",
- "value": "370682000000"
- },
- {
- "text": "莱州市",
- "value": "370683000000"
- },
- {
- "text": "招远市",
- "value": "370685000000"
- },
- {
- "text": "栖霞市",
- "value": "370686000000"
- },
- {
- "text": "海阳市",
- "value": "370687000000"
- }
- ]
- },
- {
- "text": "潍坊市",
- "value": "370700000000",
- "children": [{
- "text": "市辖区",
- "value": "370701000000"
- },
- {
- "text": "潍城区",
- "value": "370702000000"
- },
- {
- "text": "寒亭区",
- "value": "370703000000"
- },
- {
- "text": "坊子区",
- "value": "370704000000"
- },
- {
- "text": "奎文区",
- "value": "370705000000"
- },
- {
- "text": "临朐县",
- "value": "370724000000"
- },
- {
- "text": "昌乐县",
- "value": "370725000000"
- },
- {
- "text": "潍坊滨海经济技术开发区",
- "value": "370772000000"
- },
- {
- "text": "青州市",
- "value": "370781000000"
- },
- {
- "text": "诸城市",
- "value": "370782000000"
- },
- {
- "text": "寿光市",
- "value": "370783000000"
- },
- {
- "text": "安丘市",
- "value": "370784000000"
- },
- {
- "text": "高密市",
- "value": "370785000000"
- },
- {
- "text": "昌邑市",
- "value": "370786000000"
- }
- ]
- },
- {
- "text": "济宁市",
- "value": "370800000000",
- "children": [{
- "text": "市辖区",
- "value": "370801000000"
- },
- {
- "text": "任城区",
- "value": "370811000000"
- },
- {
- "text": "兖州区",
- "value": "370812000000"
- },
- {
- "text": "微山县",
- "value": "370826000000"
- },
- {
- "text": "鱼台县",
- "value": "370827000000"
- },
- {
- "text": "金乡县",
- "value": "370828000000"
- },
- {
- "text": "嘉祥县",
- "value": "370829000000"
- },
- {
- "text": "汶上县",
- "value": "370830000000"
- },
- {
- "text": "泗水县",
- "value": "370831000000"
- },
- {
- "text": "梁山县",
- "value": "370832000000"
- },
- {
- "text": "济宁高新技术产业开发区",
- "value": "370871000000"
- },
- {
- "text": "曲阜市",
- "value": "370881000000"
- },
- {
- "text": "邹城市",
- "value": "370883000000"
- }
- ]
- },
- {
- "text": "泰安市",
- "value": "370900000000",
- "children": [{
- "text": "市辖区",
- "value": "370901000000"
- },
- {
- "text": "泰山区",
- "value": "370902000000"
- },
- {
- "text": "岱岳区",
- "value": "370911000000"
- },
- {
- "text": "宁阳县",
- "value": "370921000000"
- },
- {
- "text": "东平县",
- "value": "370923000000"
- },
- {
- "text": "新泰市",
- "value": "370982000000"
- },
- {
- "text": "肥城市",
- "value": "370983000000"
- }
- ]
- },
- {
- "text": "威海市",
- "value": "371000000000",
- "children": [{
- "text": "市辖区",
- "value": "371001000000"
- },
- {
- "text": "环翠区",
- "value": "371002000000"
- },
- {
- "text": "文登区",
- "value": "371003000000"
- },
- {
- "text": "威海火炬高技术产业开发区",
- "value": "371071000000"
- },
- {
- "text": "威海经济技术开发区",
- "value": "371072000000"
- },
- {
- "text": "威海临港经济技术开发区",
- "value": "371073000000"
- },
- {
- "text": "荣成市",
- "value": "371082000000"
- },
- {
- "text": "乳山市",
- "value": "371083000000"
- }
- ]
- },
- {
- "text": "日照市",
- "value": "371100000000",
- "children": [{
- "text": "市辖区",
- "value": "371101000000"
- },
- {
- "text": "东港区",
- "value": "371102000000"
- },
- {
- "text": "岚山区",
- "value": "371103000000"
- },
- {
- "text": "五莲县",
- "value": "371121000000"
- },
- {
- "text": "莒县",
- "value": "371122000000"
- },
- {
- "text": "日照经济技术开发区",
- "value": "371171000000"
- }
- ]
- },
- {
- "text": "临沂市",
- "value": "371300000000",
- "children": [{
- "text": "市辖区",
- "value": "371301000000"
- },
- {
- "text": "兰山区",
- "value": "371302000000"
- },
- {
- "text": "罗庄区",
- "value": "371311000000"
- },
- {
- "text": "河东区",
- "value": "371312000000"
- },
- {
- "text": "沂南县",
- "value": "371321000000"
- },
- {
- "text": "郯城县",
- "value": "371322000000"
- },
- {
- "text": "沂水县",
- "value": "371323000000"
- },
- {
- "text": "兰陵县",
- "value": "371324000000"
- },
- {
- "text": "费县",
- "value": "371325000000"
- },
- {
- "text": "平邑县",
- "value": "371326000000"
- },
- {
- "text": "莒南县",
- "value": "371327000000"
- },
- {
- "text": "蒙阴县",
- "value": "371328000000"
- },
- {
- "text": "临沭县",
- "value": "371329000000"
- },
- {
- "text": "临沂高新技术产业开发区",
- "value": "371371000000"
- }
- ]
- },
- {
- "text": "德州市",
- "value": "371400000000",
- "children": [{
- "text": "市辖区",
- "value": "371401000000"
- },
- {
- "text": "德城区",
- "value": "371402000000"
- },
- {
- "text": "陵城区",
- "value": "371403000000"
- },
- {
- "text": "宁津县",
- "value": "371422000000"
- },
- {
- "text": "庆云县",
- "value": "371423000000"
- },
- {
- "text": "临邑县",
- "value": "371424000000"
- },
- {
- "text": "齐河县",
- "value": "371425000000"
- },
- {
- "text": "平原县",
- "value": "371426000000"
- },
- {
- "text": "夏津县",
- "value": "371427000000"
- },
- {
- "text": "武城县",
- "value": "371428000000"
- },
- {
- "text": "德州经济技术开发区",
- "value": "371471000000"
- },
- {
- "text": "德州运河经济开发区",
- "value": "371472000000"
- },
- {
- "text": "乐陵市",
- "value": "371481000000"
- },
- {
- "text": "禹城市",
- "value": "371482000000"
- }
- ]
- },
- {
- "text": "聊城市",
- "value": "371500000000",
- "children": [{
- "text": "市辖区",
- "value": "371501000000"
- },
- {
- "text": "东昌府区",
- "value": "371502000000"
- },
- {
- "text": "茌平区",
- "value": "371503000000"
- },
- {
- "text": "阳谷县",
- "value": "371521000000"
- },
- {
- "text": "莘县",
- "value": "371522000000"
- },
- {
- "text": "东阿县",
- "value": "371524000000"
- },
- {
- "text": "冠县",
- "value": "371525000000"
- },
- {
- "text": "高唐县",
- "value": "371526000000"
- },
- {
- "text": "临清市",
- "value": "371581000000"
- }
- ]
- },
- {
- "text": "滨州市",
- "value": "371600000000",
- "children": [{
- "text": "市辖区",
- "value": "371601000000"
- },
- {
- "text": "滨城区",
- "value": "371602000000"
- },
- {
- "text": "沾化区",
- "value": "371603000000"
- },
- {
- "text": "惠民县",
- "value": "371621000000"
- },
- {
- "text": "阳信县",
- "value": "371622000000"
- },
- {
- "text": "无棣县",
- "value": "371623000000"
- },
- {
- "text": "博兴县",
- "value": "371625000000"
- },
- {
- "text": "邹平市",
- "value": "371681000000"
- }
- ]
- },
- {
- "text": "菏泽市",
- "value": "371700000000",
- "children": [{
- "text": "市辖区",
- "value": "371701000000"
- },
- {
- "text": "牡丹区",
- "value": "371702000000"
- },
- {
- "text": "定陶区",
- "value": "371703000000"
- },
- {
- "text": "曹县",
- "value": "371721000000"
- },
- {
- "text": "单县",
- "value": "371722000000"
- },
- {
- "text": "成武县",
- "value": "371723000000"
- },
- {
- "text": "巨野县",
- "value": "371724000000"
- },
- {
- "text": "郓城县",
- "value": "371725000000"
- },
- {
- "text": "鄄城县",
- "value": "371726000000"
- },
- {
- "text": "东明县",
- "value": "371728000000"
- },
- {
- "text": "菏泽经济技术开发区",
- "value": "371771000000"
- },
- {
- "text": "菏泽高新技术开发区",
- "value": "371772000000"
- }
- ]
- }
- ]
- },
- {
- "text": "河南省",
- "value": "410000000000",
- "children": [{
- "text": "郑州市",
- "value": "410100000000",
- "children": [{
- "text": "市辖区",
- "value": "410101000000"
- },
- {
- "text": "中原区",
- "value": "410102000000"
- },
- {
- "text": "二七区",
- "value": "410103000000"
- },
- {
- "text": "管城回族区",
- "value": "410104000000"
- },
- {
- "text": "金水区",
- "value": "410105000000"
- },
- {
- "text": "上街区",
- "value": "410106000000"
- },
- {
- "text": "惠济区",
- "value": "410108000000"
- },
- {
- "text": "中牟县",
- "value": "410122000000"
- },
- {
- "text": "郑州经济技术开发区",
- "value": "410171000000"
- },
- {
- "text": "郑州高新技术产业开发区",
- "value": "410172000000"
- },
- {
- "text": "郑州航空港经济综合实验区",
- "value": "410173000000"
- },
- {
- "text": "巩义市",
- "value": "410181000000"
- },
- {
- "text": "荥阳市",
- "value": "410182000000"
- },
- {
- "text": "新密市",
- "value": "410183000000"
- },
- {
- "text": "新郑市",
- "value": "410184000000"
- },
- {
- "text": "登封市",
- "value": "410185000000"
- }
- ]
- },
- {
- "text": "开封市",
- "value": "410200000000",
- "children": [{
- "text": "市辖区",
- "value": "410201000000"
- },
- {
- "text": "龙亭区",
- "value": "410202000000"
- },
- {
- "text": "顺河回族区",
- "value": "410203000000"
- },
- {
- "text": "鼓楼区",
- "value": "410204000000"
- },
- {
- "text": "禹王台区",
- "value": "410205000000"
- },
- {
- "text": "祥符区",
- "value": "410212000000"
- },
- {
- "text": "杞县",
- "value": "410221000000"
- },
- {
- "text": "通许县",
- "value": "410222000000"
- },
- {
- "text": "尉氏县",
- "value": "410223000000"
- },
- {
- "text": "兰考县",
- "value": "410225000000"
- }
- ]
- },
- {
- "text": "洛阳市",
- "value": "410300000000",
- "children": [{
- "text": "市辖区",
- "value": "410301000000"
- },
- {
- "text": "老城区",
- "value": "410302000000"
- },
- {
- "text": "西工区",
- "value": "410303000000"
- },
- {
- "text": "瀍河回族区",
- "value": "410304000000"
- },
- {
- "text": "涧西区",
- "value": "410305000000"
- },
- {
- "text": "吉利区",
- "value": "410306000000"
- },
- {
- "text": "洛龙区",
- "value": "410311000000"
- },
- {
- "text": "孟津县",
- "value": "410322000000"
- },
- {
- "text": "新安县",
- "value": "410323000000"
- },
- {
- "text": "栾川县",
- "value": "410324000000"
- },
- {
- "text": "嵩县",
- "value": "410325000000"
- },
- {
- "text": "汝阳县",
- "value": "410326000000"
- },
- {
- "text": "宜阳县",
- "value": "410327000000"
- },
- {
- "text": "洛宁县",
- "value": "410328000000"
- },
- {
- "text": "伊川县",
- "value": "410329000000"
- },
- {
- "text": "洛阳高新技术产业开发区",
- "value": "410371000000"
- },
- {
- "text": "偃师市",
- "value": "410381000000"
- }
- ]
- },
- {
- "text": "平顶山市",
- "value": "410400000000",
- "children": [{
- "text": "市辖区",
- "value": "410401000000"
- },
- {
- "text": "新华区",
- "value": "410402000000"
- },
- {
- "text": "卫东区",
- "value": "410403000000"
- },
- {
- "text": "石龙区",
- "value": "410404000000"
- },
- {
- "text": "湛河区",
- "value": "410411000000"
- },
- {
- "text": "宝丰县",
- "value": "410421000000"
- },
- {
- "text": "叶县",
- "value": "410422000000"
- },
- {
- "text": "鲁山县",
- "value": "410423000000"
- },
- {
- "text": "郏县",
- "value": "410425000000"
- },
- {
- "text": "平顶山高新技术产业开发区",
- "value": "410471000000"
- },
- {
- "text": "平顶山市城乡一体化示范区",
- "value": "410472000000"
- },
- {
- "text": "舞钢市",
- "value": "410481000000"
- },
- {
- "text": "汝州市",
- "value": "410482000000"
- }
- ]
- },
- {
- "text": "安阳市",
- "value": "410500000000",
- "children": [{
- "text": "市辖区",
- "value": "410501000000"
- },
- {
- "text": "文峰区",
- "value": "410502000000"
- },
- {
- "text": "北关区",
- "value": "410503000000"
- },
- {
- "text": "殷都区",
- "value": "410505000000"
- },
- {
- "text": "龙安区",
- "value": "410506000000"
- },
- {
- "text": "安阳县",
- "value": "410522000000"
- },
- {
- "text": "汤阴县",
- "value": "410523000000"
- },
- {
- "text": "滑县",
- "value": "410526000000"
- },
- {
- "text": "内黄县",
- "value": "410527000000"
- },
- {
- "text": "安阳高新技术产业开发区",
- "value": "410571000000"
- },
- {
- "text": "林州市",
- "value": "410581000000"
- }
- ]
- },
- {
- "text": "鹤壁市",
- "value": "410600000000",
- "children": [{
- "text": "市辖区",
- "value": "410601000000"
- },
- {
- "text": "鹤山区",
- "value": "410602000000"
- },
- {
- "text": "山城区",
- "value": "410603000000"
- },
- {
- "text": "淇滨区",
- "value": "410611000000"
- },
- {
- "text": "浚县",
- "value": "410621000000"
- },
- {
- "text": "淇县",
- "value": "410622000000"
- },
- {
- "text": "鹤壁经济技术开发区",
- "value": "410671000000"
- }
- ]
- },
- {
- "text": "新乡市",
- "value": "410700000000",
- "children": [{
- "text": "市辖区",
- "value": "410701000000"
- },
- {
- "text": "红旗区",
- "value": "410702000000"
- },
- {
- "text": "卫滨区",
- "value": "410703000000"
- },
- {
- "text": "凤泉区",
- "value": "410704000000"
- },
- {
- "text": "牧野区",
- "value": "410711000000"
- },
- {
- "text": "新乡县",
- "value": "410721000000"
- },
- {
- "text": "获嘉县",
- "value": "410724000000"
- },
- {
- "text": "原阳县",
- "value": "410725000000"
- },
- {
- "text": "延津县",
- "value": "410726000000"
- },
- {
- "text": "封丘县",
- "value": "410727000000"
- },
- {
- "text": "新乡高新技术产业开发区",
- "value": "410771000000"
- },
- {
- "text": "新乡经济技术开发区",
- "value": "410772000000"
- },
- {
- "text": "新乡市平原城乡一体化示范区",
- "value": "410773000000"
- },
- {
- "text": "卫辉市",
- "value": "410781000000"
- },
- {
- "text": "辉县市",
- "value": "410782000000"
- },
- {
- "text": "长垣市",
- "value": "410783000000"
- }
- ]
- },
- {
- "text": "焦作市",
- "value": "410800000000",
- "children": [{
- "text": "市辖区",
- "value": "410801000000"
- },
- {
- "text": "解放区",
- "value": "410802000000"
- },
- {
- "text": "中站区",
- "value": "410803000000"
- },
- {
- "text": "马村区",
- "value": "410804000000"
- },
- {
- "text": "山阳区",
- "value": "410811000000"
- },
- {
- "text": "修武县",
- "value": "410821000000"
- },
- {
- "text": "博爱县",
- "value": "410822000000"
- },
- {
- "text": "武陟县",
- "value": "410823000000"
- },
- {
- "text": "温县",
- "value": "410825000000"
- },
- {
- "text": "焦作城乡一体化示范区",
- "value": "410871000000"
- },
- {
- "text": "沁阳市",
- "value": "410882000000"
- },
- {
- "text": "孟州市",
- "value": "410883000000"
- }
- ]
- },
- {
- "text": "濮阳市",
- "value": "410900000000",
- "children": [{
- "text": "市辖区",
- "value": "410901000000"
- },
- {
- "text": "华龙区",
- "value": "410902000000"
- },
- {
- "text": "清丰县",
- "value": "410922000000"
- },
- {
- "text": "南乐县",
- "value": "410923000000"
- },
- {
- "text": "范县",
- "value": "410926000000"
- },
- {
- "text": "台前县",
- "value": "410927000000"
- },
- {
- "text": "濮阳县",
- "value": "410928000000"
- },
- {
- "text": "河南濮阳工业园区",
- "value": "410971000000"
- },
- {
- "text": "濮阳经济技术开发区",
- "value": "410972000000"
- }
- ]
- },
- {
- "text": "许昌市",
- "value": "411000000000",
- "children": [{
- "text": "市辖区",
- "value": "411001000000"
- },
- {
- "text": "魏都区",
- "value": "411002000000"
- },
- {
- "text": "建安区",
- "value": "411003000000"
- },
- {
- "text": "鄢陵县",
- "value": "411024000000"
- },
- {
- "text": "襄城县",
- "value": "411025000000"
- },
- {
- "text": "许昌经济技术开发区",
- "value": "411071000000"
- },
- {
- "text": "禹州市",
- "value": "411081000000"
- },
- {
- "text": "长葛市",
- "value": "411082000000"
- }
- ]
- },
- {
- "text": "漯河市",
- "value": "411100000000",
- "children": [{
- "text": "市辖区",
- "value": "411101000000"
- },
- {
- "text": "源汇区",
- "value": "411102000000"
- },
- {
- "text": "郾城区",
- "value": "411103000000"
- },
- {
- "text": "召陵区",
- "value": "411104000000"
- },
- {
- "text": "舞阳县",
- "value": "411121000000"
- },
- {
- "text": "临颍县",
- "value": "411122000000"
- },
- {
- "text": "漯河经济技术开发区",
- "value": "411171000000"
- }
- ]
- },
- {
- "text": "三门峡市",
- "value": "411200000000",
- "children": [{
- "text": "市辖区",
- "value": "411201000000"
- },
- {
- "text": "湖滨区",
- "value": "411202000000"
- },
- {
- "text": "陕州区",
- "value": "411203000000"
- },
- {
- "text": "渑池县",
- "value": "411221000000"
- },
- {
- "text": "卢氏县",
- "value": "411224000000"
- },
- {
- "text": "河南三门峡经济开发区",
- "value": "411271000000"
- },
- {
- "text": "义马市",
- "value": "411281000000"
- },
- {
- "text": "灵宝市",
- "value": "411282000000"
- }
- ]
- },
- {
- "text": "南阳市",
- "value": "411300000000",
- "children": [{
- "text": "市辖区",
- "value": "411301000000"
- },
- {
- "text": "宛城区",
- "value": "411302000000"
- },
- {
- "text": "卧龙区",
- "value": "411303000000"
- },
- {
- "text": "南召县",
- "value": "411321000000"
- },
- {
- "text": "方城县",
- "value": "411322000000"
- },
- {
- "text": "西峡县",
- "value": "411323000000"
- },
- {
- "text": "镇平县",
- "value": "411324000000"
- },
- {
- "text": "内乡县",
- "value": "411325000000"
- },
- {
- "text": "淅川县",
- "value": "411326000000"
- },
- {
- "text": "社旗县",
- "value": "411327000000"
- },
- {
- "text": "唐河县",
- "value": "411328000000"
- },
- {
- "text": "新野县",
- "value": "411329000000"
- },
- {
- "text": "桐柏县",
- "value": "411330000000"
- },
- {
- "text": "南阳高新技术产业开发区",
- "value": "411371000000"
- },
- {
- "text": "南阳市城乡一体化示范区",
- "value": "411372000000"
- },
- {
- "text": "邓州市",
- "value": "411381000000"
- }
- ]
- },
- {
- "text": "商丘市",
- "value": "411400000000",
- "children": [{
- "text": "市辖区",
- "value": "411401000000"
- },
- {
- "text": "梁园区",
- "value": "411402000000"
- },
- {
- "text": "睢阳区",
- "value": "411403000000"
- },
- {
- "text": "民权县",
- "value": "411421000000"
- },
- {
- "text": "睢县",
- "value": "411422000000"
- },
- {
- "text": "宁陵县",
- "value": "411423000000"
- },
- {
- "text": "柘城县",
- "value": "411424000000"
- },
- {
- "text": "虞城县",
- "value": "411425000000"
- },
- {
- "text": "夏邑县",
- "value": "411426000000"
- },
- {
- "text": "豫东综合物流产业聚集区",
- "value": "411471000000"
- },
- {
- "text": "河南商丘经济开发区",
- "value": "411472000000"
- },
- {
- "text": "永城市",
- "value": "411481000000"
- }
- ]
- },
- {
- "text": "信阳市",
- "value": "411500000000",
- "children": [{
- "text": "市辖区",
- "value": "411501000000"
- },
- {
- "text": "浉河区",
- "value": "411502000000"
- },
- {
- "text": "平桥区",
- "value": "411503000000"
- },
- {
- "text": "罗山县",
- "value": "411521000000"
- },
- {
- "text": "光山县",
- "value": "411522000000"
- },
- {
- "text": "新县",
- "value": "411523000000"
- },
- {
- "text": "商城县",
- "value": "411524000000"
- },
- {
- "text": "固始县",
- "value": "411525000000"
- },
- {
- "text": "潢川县",
- "value": "411526000000"
- },
- {
- "text": "淮滨县",
- "value": "411527000000"
- },
- {
- "text": "息县",
- "value": "411528000000"
- },
- {
- "text": "信阳高新技术产业开发区",
- "value": "411571000000"
- }
- ]
- },
- {
- "text": "周口市",
- "value": "411600000000",
- "children": [{
- "text": "市辖区",
- "value": "411601000000"
- },
- {
- "text": "川汇区",
- "value": "411602000000"
- },
- {
- "text": "淮阳区",
- "value": "411603000000"
- },
- {
- "text": "扶沟县",
- "value": "411621000000"
- },
- {
- "text": "西华县",
- "value": "411622000000"
- },
- {
- "text": "商水县",
- "value": "411623000000"
- },
- {
- "text": "沈丘县",
- "value": "411624000000"
- },
- {
- "text": "郸城县",
- "value": "411625000000"
- },
- {
- "text": "太康县",
- "value": "411627000000"
- },
- {
- "text": "鹿邑县",
- "value": "411628000000"
- },
- {
- "text": "河南周口经济开发区",
- "value": "411671000000"
- },
- {
- "text": "项城市",
- "value": "411681000000"
- }
- ]
- },
- {
- "text": "驻马店市",
- "value": "411700000000",
- "children": [{
- "text": "市辖区",
- "value": "411701000000"
- },
- {
- "text": "驿城区",
- "value": "411702000000"
- },
- {
- "text": "西平县",
- "value": "411721000000"
- },
- {
- "text": "上蔡县",
- "value": "411722000000"
- },
- {
- "text": "平舆县",
- "value": "411723000000"
- },
- {
- "text": "正阳县",
- "value": "411724000000"
- },
- {
- "text": "确山县",
- "value": "411725000000"
- },
- {
- "text": "泌阳县",
- "value": "411726000000"
- },
- {
- "text": "汝南县",
- "value": "411727000000"
- },
- {
- "text": "遂平县",
- "value": "411728000000"
- },
- {
- "text": "新蔡县",
- "value": "411729000000"
- },
- {
- "text": "河南驻马店经济开发区",
- "value": "411771000000"
- }
- ]
- },
- {
- "text": "省直辖县级行政区划",
- "value": "419000000000",
- "children": [{
- "text": "济源市",
- "value": "419001000000"
- }]
- }
- ]
- },
- {
- "text": "湖北省",
- "value": "420000000000",
- "children": [{
- "text": "武汉市",
- "value": "420100000000",
- "children": [{
- "text": "市辖区",
- "value": "420101000000"
- },
- {
- "text": "江岸区",
- "value": "420102000000"
- },
- {
- "text": "江汉区",
- "value": "420103000000"
- },
- {
- "text": "硚口区",
- "value": "420104000000"
- },
- {
- "text": "汉阳区",
- "value": "420105000000"
- },
- {
- "text": "武昌区",
- "value": "420106000000"
- },
- {
- "text": "青山区",
- "value": "420107000000"
- },
- {
- "text": "洪山区",
- "value": "420111000000"
- },
- {
- "text": "东西湖区",
- "value": "420112000000"
- },
- {
- "text": "汉南区",
- "value": "420113000000"
- },
- {
- "text": "蔡甸区",
- "value": "420114000000"
- },
- {
- "text": "江夏区",
- "value": "420115000000"
- },
- {
- "text": "黄陂区",
- "value": "420116000000"
- },
- {
- "text": "新洲区",
- "value": "420117000000"
- }
- ]
- },
- {
- "text": "黄石市",
- "value": "420200000000",
- "children": [{
- "text": "市辖区",
- "value": "420201000000"
- },
- {
- "text": "黄石港区",
- "value": "420202000000"
- },
- {
- "text": "西塞山区",
- "value": "420203000000"
- },
- {
- "text": "下陆区",
- "value": "420204000000"
- },
- {
- "text": "铁山区",
- "value": "420205000000"
- },
- {
- "text": "阳新县",
- "value": "420222000000"
- },
- {
- "text": "大冶市",
- "value": "420281000000"
- }
- ]
- },
- {
- "text": "十堰市",
- "value": "420300000000",
- "children": [{
- "text": "市辖区",
- "value": "420301000000"
- },
- {
- "text": "茅箭区",
- "value": "420302000000"
- },
- {
- "text": "张湾区",
- "value": "420303000000"
- },
- {
- "text": "郧阳区",
- "value": "420304000000"
- },
- {
- "text": "郧西县",
- "value": "420322000000"
- },
- {
- "text": "竹山县",
- "value": "420323000000"
- },
- {
- "text": "竹溪县",
- "value": "420324000000"
- },
- {
- "text": "房县",
- "value": "420325000000"
- },
- {
- "text": "丹江口市",
- "value": "420381000000"
- }
- ]
- },
- {
- "text": "宜昌市",
- "value": "420500000000",
- "children": [{
- "text": "市辖区",
- "value": "420501000000"
- },
- {
- "text": "西陵区",
- "value": "420502000000"
- },
- {
- "text": "伍家岗区",
- "value": "420503000000"
- },
- {
- "text": "点军区",
- "value": "420504000000"
- },
- {
- "text": "猇亭区",
- "value": "420505000000"
- },
- {
- "text": "夷陵区",
- "value": "420506000000"
- },
- {
- "text": "远安县",
- "value": "420525000000"
- },
- {
- "text": "兴山县",
- "value": "420526000000"
- },
- {
- "text": "秭归县",
- "value": "420527000000"
- },
- {
- "text": "长阳土家族自治县",
- "value": "420528000000"
- },
- {
- "text": "五峰土家族自治县",
- "value": "420529000000"
- },
- {
- "text": "宜都市",
- "value": "420581000000"
- },
- {
- "text": "当阳市",
- "value": "420582000000"
- },
- {
- "text": "枝江市",
- "value": "420583000000"
- }
- ]
- },
- {
- "text": "襄阳市",
- "value": "420600000000",
- "children": [{
- "text": "市辖区",
- "value": "420601000000"
- },
- {
- "text": "襄城区",
- "value": "420602000000"
- },
- {
- "text": "樊城区",
- "value": "420606000000"
- },
- {
- "text": "襄州区",
- "value": "420607000000"
- },
- {
- "text": "南漳县",
- "value": "420624000000"
- },
- {
- "text": "谷城县",
- "value": "420625000000"
- },
- {
- "text": "保康县",
- "value": "420626000000"
- },
- {
- "text": "老河口市",
- "value": "420682000000"
- },
- {
- "text": "枣阳市",
- "value": "420683000000"
- },
- {
- "text": "宜城市",
- "value": "420684000000"
- }
- ]
- },
- {
- "text": "鄂州市",
- "value": "420700000000",
- "children": [{
- "text": "市辖区",
- "value": "420701000000"
- },
- {
- "text": "梁子湖区",
- "value": "420702000000"
- },
- {
- "text": "华容区",
- "value": "420703000000"
- },
- {
- "text": "鄂城区",
- "value": "420704000000"
- }
- ]
- },
- {
- "text": "荆门市",
- "value": "420800000000",
- "children": [{
- "text": "市辖区",
- "value": "420801000000"
- },
- {
- "text": "东宝区",
- "value": "420802000000"
- },
- {
- "text": "掇刀区",
- "value": "420804000000"
- },
- {
- "text": "沙洋县",
- "value": "420822000000"
- },
- {
- "text": "钟祥市",
- "value": "420881000000"
- },
- {
- "text": "京山市",
- "value": "420882000000"
- }
- ]
- },
- {
- "text": "孝感市",
- "value": "420900000000",
- "children": [{
- "text": "市辖区",
- "value": "420901000000"
- },
- {
- "text": "孝南区",
- "value": "420902000000"
- },
- {
- "text": "孝昌县",
- "value": "420921000000"
- },
- {
- "text": "大悟县",
- "value": "420922000000"
- },
- {
- "text": "云梦县",
- "value": "420923000000"
- },
- {
- "text": "应城市",
- "value": "420981000000"
- },
- {
- "text": "安陆市",
- "value": "420982000000"
- },
- {
- "text": "汉川市",
- "value": "420984000000"
- }
- ]
- },
- {
- "text": "荆州市",
- "value": "421000000000",
- "children": [{
- "text": "市辖区",
- "value": "421001000000"
- },
- {
- "text": "沙市区",
- "value": "421002000000"
- },
- {
- "text": "荆州区",
- "value": "421003000000"
- },
- {
- "text": "公安县",
- "value": "421022000000"
- },
- {
- "text": "监利县",
- "value": "421023000000"
- },
- {
- "text": "江陵县",
- "value": "421024000000"
- },
- {
- "text": "荆州经济技术开发区",
- "value": "421071000000"
- },
- {
- "text": "石首市",
- "value": "421081000000"
- },
- {
- "text": "洪湖市",
- "value": "421083000000"
- },
- {
- "text": "松滋市",
- "value": "421087000000"
- }
- ]
- },
- {
- "text": "黄冈市",
- "value": "421100000000",
- "children": [{
- "text": "市辖区",
- "value": "421101000000"
- },
- {
- "text": "黄州区",
- "value": "421102000000"
- },
- {
- "text": "团风县",
- "value": "421121000000"
- },
- {
- "text": "红安县",
- "value": "421122000000"
- },
- {
- "text": "罗田县",
- "value": "421123000000"
- },
- {
- "text": "英山县",
- "value": "421124000000"
- },
- {
- "text": "浠水县",
- "value": "421125000000"
- },
- {
- "text": "蕲春县",
- "value": "421126000000"
- },
- {
- "text": "黄梅县",
- "value": "421127000000"
- },
- {
- "text": "龙感湖管理区",
- "value": "421171000000"
- },
- {
- "text": "麻城市",
- "value": "421181000000"
- },
- {
- "text": "武穴市",
- "value": "421182000000"
- }
- ]
- },
- {
- "text": "咸宁市",
- "value": "421200000000",
- "children": [{
- "text": "市辖区",
- "value": "421201000000"
- },
- {
- "text": "咸安区",
- "value": "421202000000"
- },
- {
- "text": "嘉鱼县",
- "value": "421221000000"
- },
- {
- "text": "通城县",
- "value": "421222000000"
- },
- {
- "text": "崇阳县",
- "value": "421223000000"
- },
- {
- "text": "通山县",
- "value": "421224000000"
- },
- {
- "text": "赤壁市",
- "value": "421281000000"
- }
- ]
- },
- {
- "text": "随州市",
- "value": "421300000000",
- "children": [{
- "text": "市辖区",
- "value": "421301000000"
- },
- {
- "text": "曾都区",
- "value": "421303000000"
- },
- {
- "text": "随县",
- "value": "421321000000"
- },
- {
- "text": "广水市",
- "value": "421381000000"
- }
- ]
- },
- {
- "text": "恩施土家族苗族自治州",
- "value": "422800000000",
- "children": [{
- "text": "恩施市",
- "value": "422801000000"
- },
- {
- "text": "利川市",
- "value": "422802000000"
- },
- {
- "text": "建始县",
- "value": "422822000000"
- },
- {
- "text": "巴东县",
- "value": "422823000000"
- },
- {
- "text": "宣恩县",
- "value": "422825000000"
- },
- {
- "text": "咸丰县",
- "value": "422826000000"
- },
- {
- "text": "来凤县",
- "value": "422827000000"
- },
- {
- "text": "鹤峰县",
- "value": "422828000000"
- }
- ]
- },
- {
- "text": "省直辖县级行政区划",
- "value": "429000000000",
- "children": [{
- "text": "仙桃市",
- "value": "429004000000"
- },
- {
- "text": "潜江市",
- "value": "429005000000"
- },
- {
- "text": "天门市",
- "value": "429006000000"
- },
- {
- "text": "神农架林区",
- "value": "429021000000"
- }
- ]
- }
- ]
- },
- {
- "text": "湖南省",
- "value": "430000000000",
- "children": [{
- "text": "长沙市",
- "value": "430100000000",
- "children": [{
- "text": "市辖区",
- "value": "430101000000"
- },
- {
- "text": "芙蓉区",
- "value": "430102000000"
- },
- {
- "text": "天心区",
- "value": "430103000000"
- },
- {
- "text": "岳麓区",
- "value": "430104000000"
- },
- {
- "text": "开福区",
- "value": "430105000000"
- },
- {
- "text": "雨花区",
- "value": "430111000000"
- },
- {
- "text": "望城区",
- "value": "430112000000"
- },
- {
- "text": "长沙县",
- "value": "430121000000"
- },
- {
- "text": "浏阳市",
- "value": "430181000000"
- },
- {
- "text": "宁乡市",
- "value": "430182000000"
- }
- ]
- },
- {
- "text": "株洲市",
- "value": "430200000000",
- "children": [{
- "text": "市辖区",
- "value": "430201000000"
- },
- {
- "text": "荷塘区",
- "value": "430202000000"
- },
- {
- "text": "芦淞区",
- "value": "430203000000"
- },
- {
- "text": "石峰区",
- "value": "430204000000"
- },
- {
- "text": "天元区",
- "value": "430211000000"
- },
- {
- "text": "渌口区",
- "value": "430212000000"
- },
- {
- "text": "攸县",
- "value": "430223000000"
- },
- {
- "text": "茶陵县",
- "value": "430224000000"
- },
- {
- "text": "炎陵县",
- "value": "430225000000"
- },
- {
- "text": "云龙示范区",
- "value": "430271000000"
- },
- {
- "text": "醴陵市",
- "value": "430281000000"
- }
- ]
- },
- {
- "text": "湘潭市",
- "value": "430300000000",
- "children": [{
- "text": "市辖区",
- "value": "430301000000"
- },
- {
- "text": "雨湖区",
- "value": "430302000000"
- },
- {
- "text": "岳塘区",
- "value": "430304000000"
- },
- {
- "text": "湘潭县",
- "value": "430321000000"
- },
- {
- "text": "湖南湘潭高新技术产业园区",
- "value": "430371000000"
- },
- {
- "text": "湘潭昭山示范区",
- "value": "430372000000"
- },
- {
- "text": "湘潭九华示范区",
- "value": "430373000000"
- },
- {
- "text": "湘乡市",
- "value": "430381000000"
- },
- {
- "text": "韶山市",
- "value": "430382000000"
- }
- ]
- },
- {
- "text": "衡阳市",
- "value": "430400000000",
- "children": [{
- "text": "市辖区",
- "value": "430401000000"
- },
- {
- "text": "珠晖区",
- "value": "430405000000"
- },
- {
- "text": "雁峰区",
- "value": "430406000000"
- },
- {
- "text": "石鼓区",
- "value": "430407000000"
- },
- {
- "text": "蒸湘区",
- "value": "430408000000"
- },
- {
- "text": "南岳区",
- "value": "430412000000"
- },
- {
- "text": "衡阳县",
- "value": "430421000000"
- },
- {
- "text": "衡南县",
- "value": "430422000000"
- },
- {
- "text": "衡山县",
- "value": "430423000000"
- },
- {
- "text": "衡东县",
- "value": "430424000000"
- },
- {
- "text": "祁东县",
- "value": "430426000000"
- },
- {
- "text": "衡阳综合保税区",
- "value": "430471000000"
- },
- {
- "text": "湖南衡阳高新技术产业园区",
- "value": "430472000000"
- },
- {
- "text": "湖南衡阳松木经济开发区",
- "value": "430473000000"
- },
- {
- "text": "耒阳市",
- "value": "430481000000"
- },
- {
- "text": "常宁市",
- "value": "430482000000"
- }
- ]
- },
- {
- "text": "邵阳市",
- "value": "430500000000",
- "children": [{
- "text": "市辖区",
- "value": "430501000000"
- },
- {
- "text": "双清区",
- "value": "430502000000"
- },
- {
- "text": "大祥区",
- "value": "430503000000"
- },
- {
- "text": "北塔区",
- "value": "430511000000"
- },
- {
- "text": "新邵县",
- "value": "430522000000"
- },
- {
- "text": "邵阳县",
- "value": "430523000000"
- },
- {
- "text": "隆回县",
- "value": "430524000000"
- },
- {
- "text": "洞口县",
- "value": "430525000000"
- },
- {
- "text": "绥宁县",
- "value": "430527000000"
- },
- {
- "text": "新宁县",
- "value": "430528000000"
- },
- {
- "text": "城步苗族自治县",
- "value": "430529000000"
- },
- {
- "text": "武冈市",
- "value": "430581000000"
- },
- {
- "text": "邵东市",
- "value": "430582000000"
- }
- ]
- },
- {
- "text": "岳阳市",
- "value": "430600000000",
- "children": [{
- "text": "市辖区",
- "value": "430601000000"
- },
- {
- "text": "岳阳楼区",
- "value": "430602000000"
- },
- {
- "text": "云溪区",
- "value": "430603000000"
- },
- {
- "text": "君山区",
- "value": "430611000000"
- },
- {
- "text": "岳阳县",
- "value": "430621000000"
- },
- {
- "text": "华容县",
- "value": "430623000000"
- },
- {
- "text": "湘阴县",
- "value": "430624000000"
- },
- {
- "text": "平江县",
- "value": "430626000000"
- },
- {
- "text": "岳阳市屈原管理区",
- "value": "430671000000"
- },
- {
- "text": "汨罗市",
- "value": "430681000000"
- },
- {
- "text": "临湘市",
- "value": "430682000000"
- }
- ]
- },
- {
- "text": "常德市",
- "value": "430700000000",
- "children": [{
- "text": "市辖区",
- "value": "430701000000"
- },
- {
- "text": "武陵区",
- "value": "430702000000"
- },
- {
- "text": "鼎城区",
- "value": "430703000000"
- },
- {
- "text": "安乡县",
- "value": "430721000000"
- },
- {
- "text": "汉寿县",
- "value": "430722000000"
- },
- {
- "text": "澧县",
- "value": "430723000000"
- },
- {
- "text": "临澧县",
- "value": "430724000000"
- },
- {
- "text": "桃源县",
- "value": "430725000000"
- },
- {
- "text": "石门县",
- "value": "430726000000"
- },
- {
- "text": "常德市西洞庭管理区",
- "value": "430771000000"
- },
- {
- "text": "津市市",
- "value": "430781000000"
- }
- ]
- },
- {
- "text": "张家界市",
- "value": "430800000000",
- "children": [{
- "text": "市辖区",
- "value": "430801000000"
- },
- {
- "text": "永定区",
- "value": "430802000000"
- },
- {
- "text": "武陵源区",
- "value": "430811000000"
- },
- {
- "text": "慈利县",
- "value": "430821000000"
- },
- {
- "text": "桑植县",
- "value": "430822000000"
- }
- ]
- },
- {
- "text": "益阳市",
- "value": "430900000000",
- "children": [{
- "text": "市辖区",
- "value": "430901000000"
- },
- {
- "text": "资阳区",
- "value": "430902000000"
- },
- {
- "text": "赫山区",
- "value": "430903000000"
- },
- {
- "text": "南县",
- "value": "430921000000"
- },
- {
- "text": "桃江县",
- "value": "430922000000"
- },
- {
- "text": "安化县",
- "value": "430923000000"
- },
- {
- "text": "益阳市大通湖管理区",
- "value": "430971000000"
- },
- {
- "text": "湖南益阳高新技术产业园区",
- "value": "430972000000"
- },
- {
- "text": "沅江市",
- "value": "430981000000"
- }
- ]
- },
- {
- "text": "郴州市",
- "value": "431000000000",
- "children": [{
- "text": "市辖区",
- "value": "431001000000"
- },
- {
- "text": "北湖区",
- "value": "431002000000"
- },
- {
- "text": "苏仙区",
- "value": "431003000000"
- },
- {
- "text": "桂阳县",
- "value": "431021000000"
- },
- {
- "text": "宜章县",
- "value": "431022000000"
- },
- {
- "text": "永兴县",
- "value": "431023000000"
- },
- {
- "text": "嘉禾县",
- "value": "431024000000"
- },
- {
- "text": "临武县",
- "value": "431025000000"
- },
- {
- "text": "汝城县",
- "value": "431026000000"
- },
- {
- "text": "桂东县",
- "value": "431027000000"
- },
- {
- "text": "安仁县",
- "value": "431028000000"
- },
- {
- "text": "资兴市",
- "value": "431081000000"
- }
- ]
- },
- {
- "text": "永州市",
- "value": "431100000000",
- "children": [{
- "text": "市辖区",
- "value": "431101000000"
- },
- {
- "text": "零陵区",
- "value": "431102000000"
- },
- {
- "text": "冷水滩区",
- "value": "431103000000"
- },
- {
- "text": "祁阳县",
- "value": "431121000000"
- },
- {
- "text": "东安县",
- "value": "431122000000"
- },
- {
- "text": "双牌县",
- "value": "431123000000"
- },
- {
- "text": "道县",
- "value": "431124000000"
- },
- {
- "text": "江永县",
- "value": "431125000000"
- },
- {
- "text": "宁远县",
- "value": "431126000000"
- },
- {
- "text": "蓝山县",
- "value": "431127000000"
- },
- {
- "text": "新田县",
- "value": "431128000000"
- },
- {
- "text": "江华瑶族自治县",
- "value": "431129000000"
- },
- {
- "text": "永州经济技术开发区",
- "value": "431171000000"
- },
- {
- "text": "永州市金洞管理区",
- "value": "431172000000"
- },
- {
- "text": "永州市回龙圩管理区",
- "value": "431173000000"
- }
- ]
- },
- {
- "text": "怀化市",
- "value": "431200000000",
- "children": [{
- "text": "市辖区",
- "value": "431201000000"
- },
- {
- "text": "鹤城区",
- "value": "431202000000"
- },
- {
- "text": "中方县",
- "value": "431221000000"
- },
- {
- "text": "沅陵县",
- "value": "431222000000"
- },
- {
- "text": "辰溪县",
- "value": "431223000000"
- },
- {
- "text": "溆浦县",
- "value": "431224000000"
- },
- {
- "text": "会同县",
- "value": "431225000000"
- },
- {
- "text": "麻阳苗族自治县",
- "value": "431226000000"
- },
- {
- "text": "新晃侗族自治县",
- "value": "431227000000"
- },
- {
- "text": "芷江侗族自治县",
- "value": "431228000000"
- },
- {
- "text": "靖州苗族侗族自治县",
- "value": "431229000000"
- },
- {
- "text": "通道侗族自治县",
- "value": "431230000000"
- },
- {
- "text": "怀化市洪江管理区",
- "value": "431271000000"
- },
- {
- "text": "洪江市",
- "value": "431281000000"
- }
- ]
- },
- {
- "text": "娄底市",
- "value": "431300000000",
- "children": [{
- "text": "市辖区",
- "value": "431301000000"
- },
- {
- "text": "娄星区",
- "value": "431302000000"
- },
- {
- "text": "双峰县",
- "value": "431321000000"
- },
- {
- "text": "新化县",
- "value": "431322000000"
- },
- {
- "text": "冷水江市",
- "value": "431381000000"
- },
- {
- "text": "涟源市",
- "value": "431382000000"
- }
- ]
- },
- {
- "text": "湘西土家族苗族自治州",
- "value": "433100000000",
- "children": [{
- "text": "吉首市",
- "value": "433101000000"
- },
- {
- "text": "泸溪县",
- "value": "433122000000"
- },
- {
- "text": "凤凰县",
- "value": "433123000000"
- },
- {
- "text": "花垣县",
- "value": "433124000000"
- },
- {
- "text": "保靖县",
- "value": "433125000000"
- },
- {
- "text": "古丈县",
- "value": "433126000000"
- },
- {
- "text": "永顺县",
- "value": "433127000000"
- },
- {
- "text": "龙山县",
- "value": "433130000000"
- }
- ]
- }
- ]
- },
- {
- "text": "广东省",
- "value": "440000000000",
- "children": [{
- "text": "广州市",
- "value": "440100000000",
- "children": [{
- "text": "市辖区",
- "value": "440101000000"
- },
- {
- "text": "荔湾区",
- "value": "440103000000"
- },
- {
- "text": "越秀区",
- "value": "440104000000"
- },
- {
- "text": "海珠区",
- "value": "440105000000"
- },
- {
- "text": "天河区",
- "value": "440106000000"
- },
- {
- "text": "白云区",
- "value": "440111000000"
- },
- {
- "text": "黄埔区",
- "value": "440112000000"
- },
- {
- "text": "番禺区",
- "value": "440113000000"
- },
- {
- "text": "花都区",
- "value": "440114000000"
- },
- {
- "text": "南沙区",
- "value": "440115000000"
- },
- {
- "text": "从化区",
- "value": "440117000000"
- },
- {
- "text": "增城区",
- "value": "440118000000"
- }
- ]
- },
- {
- "text": "韶关市",
- "value": "440200000000",
- "children": [{
- "text": "市辖区",
- "value": "440201000000"
- },
- {
- "text": "武江区",
- "value": "440203000000"
- },
- {
- "text": "浈江区",
- "value": "440204000000"
- },
- {
- "text": "曲江区",
- "value": "440205000000"
- },
- {
- "text": "始兴县",
- "value": "440222000000"
- },
- {
- "text": "仁化县",
- "value": "440224000000"
- },
- {
- "text": "翁源县",
- "value": "440229000000"
- },
- {
- "text": "乳源瑶族自治县",
- "value": "440232000000"
- },
- {
- "text": "新丰县",
- "value": "440233000000"
- },
- {
- "text": "乐昌市",
- "value": "440281000000"
- },
- {
- "text": "南雄市",
- "value": "440282000000"
- }
- ]
- },
- {
- "text": "深圳市",
- "value": "440300000000",
- "children": [{
- "text": "市辖区",
- "value": "440301000000"
- },
- {
- "text": "罗湖区",
- "value": "440303000000"
- },
- {
- "text": "福田区",
- "value": "440304000000"
- },
- {
- "text": "南山区",
- "value": "440305000000"
- },
- {
- "text": "宝安区",
- "value": "440306000000"
- },
- {
- "text": "龙岗区",
- "value": "440307000000"
- },
- {
- "text": "盐田区",
- "value": "440308000000"
- },
- {
- "text": "龙华区",
- "value": "440309000000"
- },
- {
- "text": "坪山区",
- "value": "440310000000"
- },
- {
- "text": "光明区",
- "value": "440311000000"
- }
- ]
- },
- {
- "text": "珠海市",
- "value": "440400000000",
- "children": [{
- "text": "市辖区",
- "value": "440401000000"
- },
- {
- "text": "香洲区",
- "value": "440402000000"
- },
- {
- "text": "斗门区",
- "value": "440403000000"
- },
- {
- "text": "金湾区",
- "value": "440404000000"
- }
- ]
- },
- {
- "text": "汕头市",
- "value": "440500000000",
- "children": [{
- "text": "市辖区",
- "value": "440501000000"
- },
- {
- "text": "龙湖区",
- "value": "440507000000"
- },
- {
- "text": "金平区",
- "value": "440511000000"
- },
- {
- "text": "濠江区",
- "value": "440512000000"
- },
- {
- "text": "潮阳区",
- "value": "440513000000"
- },
- {
- "text": "潮南区",
- "value": "440514000000"
- },
- {
- "text": "澄海区",
- "value": "440515000000"
- },
- {
- "text": "南澳县",
- "value": "440523000000"
- }
- ]
- },
- {
- "text": "佛山市",
- "value": "440600000000",
- "children": [{
- "text": "市辖区",
- "value": "440601000000"
- },
- {
- "text": "禅城区",
- "value": "440604000000"
- },
- {
- "text": "南海区",
- "value": "440605000000"
- },
- {
- "text": "顺德区",
- "value": "440606000000"
- },
- {
- "text": "三水区",
- "value": "440607000000"
- },
- {
- "text": "高明区",
- "value": "440608000000"
- }
- ]
- },
- {
- "text": "江门市",
- "value": "440700000000",
- "children": [{
- "text": "市辖区",
- "value": "440701000000"
- },
- {
- "text": "蓬江区",
- "value": "440703000000"
- },
- {
- "text": "江海区",
- "value": "440704000000"
- },
- {
- "text": "新会区",
- "value": "440705000000"
- },
- {
- "text": "台山市",
- "value": "440781000000"
- },
- {
- "text": "开平市",
- "value": "440783000000"
- },
- {
- "text": "鹤山市",
- "value": "440784000000"
- },
- {
- "text": "恩平市",
- "value": "440785000000"
- }
- ]
- },
- {
- "text": "湛江市",
- "value": "440800000000",
- "children": [{
- "text": "市辖区",
- "value": "440801000000"
- },
- {
- "text": "赤坎区",
- "value": "440802000000"
- },
- {
- "text": "霞山区",
- "value": "440803000000"
- },
- {
- "text": "坡头区",
- "value": "440804000000"
- },
- {
- "text": "麻章区",
- "value": "440811000000"
- },
- {
- "text": "遂溪县",
- "value": "440823000000"
- },
- {
- "text": "徐闻县",
- "value": "440825000000"
- },
- {
- "text": "廉江市",
- "value": "440881000000"
- },
- {
- "text": "雷州市",
- "value": "440882000000"
- },
- {
- "text": "吴川市",
- "value": "440883000000"
- }
- ]
- },
- {
- "text": "茂名市",
- "value": "440900000000",
- "children": [{
- "text": "市辖区",
- "value": "440901000000"
- },
- {
- "text": "茂南区",
- "value": "440902000000"
- },
- {
- "text": "电白区",
- "value": "440904000000"
- },
- {
- "text": "高州市",
- "value": "440981000000"
- },
- {
- "text": "化州市",
- "value": "440982000000"
- },
- {
- "text": "信宜市",
- "value": "440983000000"
- }
- ]
- },
- {
- "text": "肇庆市",
- "value": "441200000000",
- "children": [{
- "text": "市辖区",
- "value": "441201000000"
- },
- {
- "text": "端州区",
- "value": "441202000000"
- },
- {
- "text": "鼎湖区",
- "value": "441203000000"
- },
- {
- "text": "高要区",
- "value": "441204000000"
- },
- {
- "text": "广宁县",
- "value": "441223000000"
- },
- {
- "text": "怀集县",
- "value": "441224000000"
- },
- {
- "text": "封开县",
- "value": "441225000000"
- },
- {
- "text": "德庆县",
- "value": "441226000000"
- },
- {
- "text": "四会市",
- "value": "441284000000"
- }
- ]
- },
- {
- "text": "惠州市",
- "value": "441300000000",
- "children": [{
- "text": "市辖区",
- "value": "441301000000"
- },
- {
- "text": "惠城区",
- "value": "441302000000"
- },
- {
- "text": "惠阳区",
- "value": "441303000000"
- },
- {
- "text": "博罗县",
- "value": "441322000000"
- },
- {
- "text": "惠东县",
- "value": "441323000000"
- },
- {
- "text": "龙门县",
- "value": "441324000000"
- }
- ]
- },
- {
- "text": "梅州市",
- "value": "441400000000",
- "children": [{
- "text": "市辖区",
- "value": "441401000000"
- },
- {
- "text": "梅江区",
- "value": "441402000000"
- },
- {
- "text": "梅县区",
- "value": "441403000000"
- },
- {
- "text": "大埔县",
- "value": "441422000000"
- },
- {
- "text": "丰顺县",
- "value": "441423000000"
- },
- {
- "text": "五华县",
- "value": "441424000000"
- },
- {
- "text": "平远县",
- "value": "441426000000"
- },
- {
- "text": "蕉岭县",
- "value": "441427000000"
- },
- {
- "text": "兴宁市",
- "value": "441481000000"
- }
- ]
- },
- {
- "text": "汕尾市",
- "value": "441500000000",
- "children": [{
- "text": "市辖区",
- "value": "441501000000"
- },
- {
- "text": "城区",
- "value": "441502000000"
- },
- {
- "text": "海丰县",
- "value": "441521000000"
- },
- {
- "text": "陆河县",
- "value": "441523000000"
- },
- {
- "text": "陆丰市",
- "value": "441581000000"
- }
- ]
- },
- {
- "text": "河源市",
- "value": "441600000000",
- "children": [{
- "text": "市辖区",
- "value": "441601000000"
- },
- {
- "text": "源城区",
- "value": "441602000000"
- },
- {
- "text": "紫金县",
- "value": "441621000000"
- },
- {
- "text": "龙川县",
- "value": "441622000000"
- },
- {
- "text": "连平县",
- "value": "441623000000"
- },
- {
- "text": "和平县",
- "value": "441624000000"
- },
- {
- "text": "东源县",
- "value": "441625000000"
- }
- ]
- },
- {
- "text": "阳江市",
- "value": "441700000000",
- "children": [{
- "text": "市辖区",
- "value": "441701000000"
- },
- {
- "text": "江城区",
- "value": "441702000000"
- },
- {
- "text": "阳东区",
- "value": "441704000000"
- },
- {
- "text": "阳西县",
- "value": "441721000000"
- },
- {
- "text": "阳春市",
- "value": "441781000000"
- }
- ]
- },
- {
- "text": "清远市",
- "value": "441800000000",
- "children": [{
- "text": "市辖区",
- "value": "441801000000"
- },
- {
- "text": "清城区",
- "value": "441802000000"
- },
- {
- "text": "清新区",
- "value": "441803000000"
- },
- {
- "text": "佛冈县",
- "value": "441821000000"
- },
- {
- "text": "阳山县",
- "value": "441823000000"
- },
- {
- "text": "连山壮族瑶族自治县",
- "value": "441825000000"
- },
- {
- "text": "连南瑶族自治县",
- "value": "441826000000"
- },
- {
- "text": "英德市",
- "value": "441881000000"
- },
- {
- "text": "连州市",
- "value": "441882000000"
- }
- ]
- },
- {
- "text": "东莞市",
- "value": "441900000000",
- "children": []
- },
- {
- "text": "中山市",
- "value": "442000000000",
- "children": []
- },
- {
- "text": "潮州市",
- "value": "445100000000",
- "children": [{
- "text": "市辖区",
- "value": "445101000000"
- },
- {
- "text": "湘桥区",
- "value": "445102000000"
- },
- {
- "text": "潮安区",
- "value": "445103000000"
- },
- {
- "text": "饶平县",
- "value": "445122000000"
- }
- ]
- },
- {
- "text": "揭阳市",
- "value": "445200000000",
- "children": [{
- "text": "市辖区",
- "value": "445201000000"
- },
- {
- "text": "榕城区",
- "value": "445202000000"
- },
- {
- "text": "揭东区",
- "value": "445203000000"
- },
- {
- "text": "揭西县",
- "value": "445222000000"
- },
- {
- "text": "惠来县",
- "value": "445224000000"
- },
- {
- "text": "普宁市",
- "value": "445281000000"
- }
- ]
- },
- {
- "text": "云浮市",
- "value": "445300000000",
- "children": [{
- "text": "市辖区",
- "value": "445301000000"
- },
- {
- "text": "云城区",
- "value": "445302000000"
- },
- {
- "text": "云安区",
- "value": "445303000000"
- },
- {
- "text": "新兴县",
- "value": "445321000000"
- },
- {
- "text": "郁南县",
- "value": "445322000000"
- },
- {
- "text": "罗定市",
- "value": "445381000000"
- }
- ]
- }
- ]
- },
- {
- "text": "广西壮族自治区",
- "value": "450000000000",
- "children": [{
- "text": "南宁市",
- "value": "450100000000",
- "children": [{
- "text": "市辖区",
- "value": "450101000000"
- },
- {
- "text": "兴宁区",
- "value": "450102000000"
- },
- {
- "text": "青秀区",
- "value": "450103000000"
- },
- {
- "text": "江南区",
- "value": "450105000000"
- },
- {
- "text": "西乡塘区",
- "value": "450107000000"
- },
- {
- "text": "良庆区",
- "value": "450108000000"
- },
- {
- "text": "邕宁区",
- "value": "450109000000"
- },
- {
- "text": "武鸣区",
- "value": "450110000000"
- },
- {
- "text": "隆安县",
- "value": "450123000000"
- },
- {
- "text": "马山县",
- "value": "450124000000"
- },
- {
- "text": "上林县",
- "value": "450125000000"
- },
- {
- "text": "宾阳县",
- "value": "450126000000"
- },
- {
- "text": "横县",
- "value": "450127000000"
- }
- ]
- },
- {
- "text": "柳州市",
- "value": "450200000000",
- "children": [{
- "text": "市辖区",
- "value": "450201000000"
- },
- {
- "text": "城中区",
- "value": "450202000000"
- },
- {
- "text": "鱼峰区",
- "value": "450203000000"
- },
- {
- "text": "柳南区",
- "value": "450204000000"
- },
- {
- "text": "柳北区",
- "value": "450205000000"
- },
- {
- "text": "柳江区",
- "value": "450206000000"
- },
- {
- "text": "柳城县",
- "value": "450222000000"
- },
- {
- "text": "鹿寨县",
- "value": "450223000000"
- },
- {
- "text": "融安县",
- "value": "450224000000"
- },
- {
- "text": "融水苗族自治县",
- "value": "450225000000"
- },
- {
- "text": "三江侗族自治县",
- "value": "450226000000"
- }
- ]
- },
- {
- "text": "桂林市",
- "value": "450300000000",
- "children": [{
- "text": "市辖区",
- "value": "450301000000"
- },
- {
- "text": "秀峰区",
- "value": "450302000000"
- },
- {
- "text": "叠彩区",
- "value": "450303000000"
- },
- {
- "text": "象山区",
- "value": "450304000000"
- },
- {
- "text": "七星区",
- "value": "450305000000"
- },
- {
- "text": "雁山区",
- "value": "450311000000"
- },
- {
- "text": "临桂区",
- "value": "450312000000"
- },
- {
- "text": "阳朔县",
- "value": "450321000000"
- },
- {
- "text": "灵川县",
- "value": "450323000000"
- },
- {
- "text": "全州县",
- "value": "450324000000"
- },
- {
- "text": "兴安县",
- "value": "450325000000"
- },
- {
- "text": "永福县",
- "value": "450326000000"
- },
- {
- "text": "灌阳县",
- "value": "450327000000"
- },
- {
- "text": "龙胜各族自治县",
- "value": "450328000000"
- },
- {
- "text": "资源县",
- "value": "450329000000"
- },
- {
- "text": "平乐县",
- "value": "450330000000"
- },
- {
- "text": "恭城瑶族自治县",
- "value": "450332000000"
- },
- {
- "text": "荔浦市",
- "value": "450381000000"
- }
- ]
- },
- {
- "text": "梧州市",
- "value": "450400000000",
- "children": [{
- "text": "市辖区",
- "value": "450401000000"
- },
- {
- "text": "万秀区",
- "value": "450403000000"
- },
- {
- "text": "长洲区",
- "value": "450405000000"
- },
- {
- "text": "龙圩区",
- "value": "450406000000"
- },
- {
- "text": "苍梧县",
- "value": "450421000000"
- },
- {
- "text": "藤县",
- "value": "450422000000"
- },
- {
- "text": "蒙山县",
- "value": "450423000000"
- },
- {
- "text": "岑溪市",
- "value": "450481000000"
- }
- ]
- },
- {
- "text": "北海市",
- "value": "450500000000",
- "children": [{
- "text": "市辖区",
- "value": "450501000000"
- },
- {
- "text": "海城区",
- "value": "450502000000"
- },
- {
- "text": "银海区",
- "value": "450503000000"
- },
- {
- "text": "铁山港区",
- "value": "450512000000"
- },
- {
- "text": "合浦县",
- "value": "450521000000"
- }
- ]
- },
- {
- "text": "防城港市",
- "value": "450600000000",
- "children": [{
- "text": "市辖区",
- "value": "450601000000"
- },
- {
- "text": "港口区",
- "value": "450602000000"
- },
- {
- "text": "防城区",
- "value": "450603000000"
- },
- {
- "text": "上思县",
- "value": "450621000000"
- },
- {
- "text": "东兴市",
- "value": "450681000000"
- }
- ]
- },
- {
- "text": "钦州市",
- "value": "450700000000",
- "children": [{
- "text": "市辖区",
- "value": "450701000000"
- },
- {
- "text": "钦南区",
- "value": "450702000000"
- },
- {
- "text": "钦北区",
- "value": "450703000000"
- },
- {
- "text": "灵山县",
- "value": "450721000000"
- },
- {
- "text": "浦北县",
- "value": "450722000000"
- }
- ]
- },
- {
- "text": "贵港市",
- "value": "450800000000",
- "children": [{
- "text": "市辖区",
- "value": "450801000000"
- },
- {
- "text": "港北区",
- "value": "450802000000"
- },
- {
- "text": "港南区",
- "value": "450803000000"
- },
- {
- "text": "覃塘区",
- "value": "450804000000"
- },
- {
- "text": "平南县",
- "value": "450821000000"
- },
- {
- "text": "桂平市",
- "value": "450881000000"
- }
- ]
- },
- {
- "text": "玉林市",
- "value": "450900000000",
- "children": [{
- "text": "市辖区",
- "value": "450901000000"
- },
- {
- "text": "玉州区",
- "value": "450902000000"
- },
- {
- "text": "福绵区",
- "value": "450903000000"
- },
- {
- "text": "容县",
- "value": "450921000000"
- },
- {
- "text": "陆川县",
- "value": "450922000000"
- },
- {
- "text": "博白县",
- "value": "450923000000"
- },
- {
- "text": "兴业县",
- "value": "450924000000"
- },
- {
- "text": "北流市",
- "value": "450981000000"
- }
- ]
- },
- {
- "text": "百色市",
- "value": "451000000000",
- "children": [{
- "text": "市辖区",
- "value": "451001000000"
- },
- {
- "text": "右江区",
- "value": "451002000000"
- },
- {
- "text": "田阳区",
- "value": "451003000000"
- },
- {
- "text": "田东县",
- "value": "451022000000"
- },
- {
- "text": "德保县",
- "value": "451024000000"
- },
- {
- "text": "那坡县",
- "value": "451026000000"
- },
- {
- "text": "凌云县",
- "value": "451027000000"
- },
- {
- "text": "乐业县",
- "value": "451028000000"
- },
- {
- "text": "田林县",
- "value": "451029000000"
- },
- {
- "text": "西林县",
- "value": "451030000000"
- },
- {
- "text": "隆林各族自治县",
- "value": "451031000000"
- },
- {
- "text": "靖西市",
- "value": "451081000000"
- },
- {
- "text": "平果市",
- "value": "451082000000"
- }
- ]
- },
- {
- "text": "贺州市",
- "value": "451100000000",
- "children": [{
- "text": "市辖区",
- "value": "451101000000"
- },
- {
- "text": "八步区",
- "value": "451102000000"
- },
- {
- "text": "平桂区",
- "value": "451103000000"
- },
- {
- "text": "昭平县",
- "value": "451121000000"
- },
- {
- "text": "钟山县",
- "value": "451122000000"
- },
- {
- "text": "富川瑶族自治县",
- "value": "451123000000"
- }
- ]
- },
- {
- "text": "河池市",
- "value": "451200000000",
- "children": [{
- "text": "市辖区",
- "value": "451201000000"
- },
- {
- "text": "金城江区",
- "value": "451202000000"
- },
- {
- "text": "宜州区",
- "value": "451203000000"
- },
- {
- "text": "南丹县",
- "value": "451221000000"
- },
- {
- "text": "天峨县",
- "value": "451222000000"
- },
- {
- "text": "凤山县",
- "value": "451223000000"
- },
- {
- "text": "东兰县",
- "value": "451224000000"
- },
- {
- "text": "罗城仫佬族自治县",
- "value": "451225000000"
- },
- {
- "text": "环江毛南族自治县",
- "value": "451226000000"
- },
- {
- "text": "巴马瑶族自治县",
- "value": "451227000000"
- },
- {
- "text": "都安瑶族自治县",
- "value": "451228000000"
- },
- {
- "text": "大化瑶族自治县",
- "value": "451229000000"
- }
- ]
- },
- {
- "text": "来宾市",
- "value": "451300000000",
- "children": [{
- "text": "市辖区",
- "value": "451301000000"
- },
- {
- "text": "兴宾区",
- "value": "451302000000"
- },
- {
- "text": "忻城县",
- "value": "451321000000"
- },
- {
- "text": "象州县",
- "value": "451322000000"
- },
- {
- "text": "武宣县",
- "value": "451323000000"
- },
- {
- "text": "金秀瑶族自治县",
- "value": "451324000000"
- },
- {
- "text": "合山市",
- "value": "451381000000"
- }
- ]
- },
- {
- "text": "崇左市",
- "value": "451400000000",
- "children": [{
- "text": "市辖区",
- "value": "451401000000"
- },
- {
- "text": "江州区",
- "value": "451402000000"
- },
- {
- "text": "扶绥县",
- "value": "451421000000"
- },
- {
- "text": "宁明县",
- "value": "451422000000"
- },
- {
- "text": "龙州县",
- "value": "451423000000"
- },
- {
- "text": "大新县",
- "value": "451424000000"
- },
- {
- "text": "天等县",
- "value": "451425000000"
- },
- {
- "text": "凭祥市",
- "value": "451481000000"
- }
- ]
- }
- ]
- },
- {
- "text": "海南省",
- "value": "460000000000",
- "children": [{
- "text": "海口市",
- "value": "460100000000",
- "children": [{
- "text": "市辖区",
- "value": "460101000000"
- },
- {
- "text": "秀英区",
- "value": "460105000000"
- },
- {
- "text": "龙华区",
- "value": "460106000000"
- },
- {
- "text": "琼山区",
- "value": "460107000000"
- },
- {
- "text": "美兰区",
- "value": "460108000000"
- }
- ]
- },
- {
- "text": "三亚市",
- "value": "460200000000",
- "children": [{
- "text": "市辖区",
- "value": "460201000000"
- },
- {
- "text": "海棠区",
- "value": "460202000000"
- },
- {
- "text": "吉阳区",
- "value": "460203000000"
- },
- {
- "text": "天涯区",
- "value": "460204000000"
- },
- {
- "text": "崖州区",
- "value": "460205000000"
- }
- ]
- },
- {
- "text": "三沙市",
- "value": "460300000000",
- "children": [{
- "text": "西沙群岛",
- "value": "460321000000"
- },
- {
- "text": "南沙群岛",
- "value": "460322000000"
- },
- {
- "text": "中沙群岛的岛礁及其海域",
- "value": "460323000000"
- }
- ]
- },
- {
- "text": "儋州市",
- "value": "460400000000",
- "children": []
- },
- {
- "text": "省直辖县级行政区划",
- "value": "469000000000",
- "children": [{
- "text": "五指山市",
- "value": "469001000000"
- },
- {
- "text": "琼海市",
- "value": "469002000000"
- },
- {
- "text": "文昌市",
- "value": "469005000000"
- },
- {
- "text": "万宁市",
- "value": "469006000000"
- },
- {
- "text": "东方市",
- "value": "469007000000"
- },
- {
- "text": "定安县",
- "value": "469021000000"
- },
- {
- "text": "屯昌县",
- "value": "469022000000"
- },
- {
- "text": "澄迈县",
- "value": "469023000000"
- },
- {
- "text": "临高县",
- "value": "469024000000"
- },
- {
- "text": "白沙黎族自治县",
- "value": "469025000000"
- },
- {
- "text": "昌江黎族自治县",
- "value": "469026000000"
- },
- {
- "text": "乐东黎族自治县",
- "value": "469027000000"
- },
- {
- "text": "陵水黎族自治县",
- "value": "469028000000"
- },
- {
- "text": "保亭黎族苗族自治县",
- "value": "469029000000"
- },
- {
- "text": "琼中黎族苗族自治县",
- "value": "469030000000"
- }
- ]
- }
- ]
- },
- {
- "text": "重庆市",
- "value": "500000000000",
- "children": [{
- "text": "市辖区",
- "value": "500100000000",
- "children": [{
- "text": "万州区",
- "value": "500101000000"
- },
- {
- "text": "涪陵区",
- "value": "500102000000"
- },
- {
- "text": "渝中区",
- "value": "500103000000"
- },
- {
- "text": "大渡口区",
- "value": "500104000000"
- },
- {
- "text": "江北区",
- "value": "500105000000"
- },
- {
- "text": "沙坪坝区",
- "value": "500106000000"
- },
- {
- "text": "九龙坡区",
- "value": "500107000000"
- },
- {
- "text": "南岸区",
- "value": "500108000000"
- },
- {
- "text": "北碚区",
- "value": "500109000000"
- },
- {
- "text": "綦江区",
- "value": "500110000000"
- },
- {
- "text": "大足区",
- "value": "500111000000"
- },
- {
- "text": "渝北区",
- "value": "500112000000"
- },
- {
- "text": "巴南区",
- "value": "500113000000"
- },
- {
- "text": "黔江区",
- "value": "500114000000"
- },
- {
- "text": "长寿区",
- "value": "500115000000"
- },
- {
- "text": "江津区",
- "value": "500116000000"
- },
- {
- "text": "合川区",
- "value": "500117000000"
- },
- {
- "text": "永川区",
- "value": "500118000000"
- },
- {
- "text": "南川区",
- "value": "500119000000"
- },
- {
- "text": "璧山区",
- "value": "500120000000"
- },
- {
- "text": "铜梁区",
- "value": "500151000000"
- },
- {
- "text": "潼南区",
- "value": "500152000000"
- },
- {
- "text": "荣昌区",
- "value": "500153000000"
- },
- {
- "text": "开州区",
- "value": "500154000000"
- },
- {
- "text": "梁平区",
- "value": "500155000000"
- },
- {
- "text": "武隆区",
- "value": "500156000000"
- }
- ]
- },
- {
- "text": "县",
- "value": "500200000000",
- "children": [{
- "text": "城口县",
- "value": "500229000000"
- },
- {
- "text": "丰都县",
- "value": "500230000000"
- },
- {
- "text": "垫江县",
- "value": "500231000000"
- },
- {
- "text": "忠县",
- "value": "500233000000"
- },
- {
- "text": "云阳县",
- "value": "500235000000"
- },
- {
- "text": "奉节县",
- "value": "500236000000"
- },
- {
- "text": "巫山县",
- "value": "500237000000"
- },
- {
- "text": "巫溪县",
- "value": "500238000000"
- },
- {
- "text": "石柱土家族自治县",
- "value": "500240000000"
- },
- {
- "text": "秀山土家族苗族自治县",
- "value": "500241000000"
- },
- {
- "text": "酉阳土家族苗族自治县",
- "value": "500242000000"
- },
- {
- "text": "彭水苗族土家族自治县",
- "value": "500243000000"
- }
- ]
- }
- ]
- },
- {
- "text": "四川省",
- "value": "510000000000",
- "children": [{
- "text": "成都市",
- "value": "510100000000",
- "children": [{
- "text": "市辖区",
- "value": "510101000000"
- },
- {
- "text": "锦江区",
- "value": "510104000000"
- },
- {
- "text": "青羊区",
- "value": "510105000000"
- },
- {
- "text": "金牛区",
- "value": "510106000000"
- },
- {
- "text": "武侯区",
- "value": "510107000000"
- },
- {
- "text": "成华区",
- "value": "510108000000"
- },
- {
- "text": "龙泉驿区",
- "value": "510112000000"
- },
- {
- "text": "青白江区",
- "value": "510113000000"
- },
- {
- "text": "新都区",
- "value": "510114000000"
- },
- {
- "text": "温江区",
- "value": "510115000000"
- },
- {
- "text": "双流区",
- "value": "510116000000"
- },
- {
- "text": "郫都区",
- "value": "510117000000"
- },
- {
- "text": "新津区",
- "value": "510118000000"
- },
- {
- "text": "金堂县",
- "value": "510121000000"
- },
- {
- "text": "大邑县",
- "value": "510129000000"
- },
- {
- "text": "蒲江县",
- "value": "510131000000"
- },
- {
- "text": "都江堰市",
- "value": "510181000000"
- },
- {
- "text": "彭州市",
- "value": "510182000000"
- },
- {
- "text": "邛崃市",
- "value": "510183000000"
- },
- {
- "text": "崇州市",
- "value": "510184000000"
- },
- {
- "text": "简阳市",
- "value": "510185000000"
- }
- ]
- },
- {
- "text": "自贡市",
- "value": "510300000000",
- "children": [{
- "text": "市辖区",
- "value": "510301000000"
- },
- {
- "text": "自流井区",
- "value": "510302000000"
- },
- {
- "text": "贡井区",
- "value": "510303000000"
- },
- {
- "text": "大安区",
- "value": "510304000000"
- },
- {
- "text": "沿滩区",
- "value": "510311000000"
- },
- {
- "text": "荣县",
- "value": "510321000000"
- },
- {
- "text": "富顺县",
- "value": "510322000000"
- }
- ]
- },
- {
- "text": "攀枝花市",
- "value": "510400000000",
- "children": [{
- "text": "市辖区",
- "value": "510401000000"
- },
- {
- "text": "东区",
- "value": "510402000000"
- },
- {
- "text": "西区",
- "value": "510403000000"
- },
- {
- "text": "仁和区",
- "value": "510411000000"
- },
- {
- "text": "米易县",
- "value": "510421000000"
- },
- {
- "text": "盐边县",
- "value": "510422000000"
- }
- ]
- },
- {
- "text": "泸州市",
- "value": "510500000000",
- "children": [{
- "text": "市辖区",
- "value": "510501000000"
- },
- {
- "text": "江阳区",
- "value": "510502000000"
- },
- {
- "text": "纳溪区",
- "value": "510503000000"
- },
- {
- "text": "龙马潭区",
- "value": "510504000000"
- },
- {
- "text": "泸县",
- "value": "510521000000"
- },
- {
- "text": "合江县",
- "value": "510522000000"
- },
- {
- "text": "叙永县",
- "value": "510524000000"
- },
- {
- "text": "古蔺县",
- "value": "510525000000"
- }
- ]
- },
- {
- "text": "德阳市",
- "value": "510600000000",
- "children": [{
- "text": "市辖区",
- "value": "510601000000"
- },
- {
- "text": "旌阳区",
- "value": "510603000000"
- },
- {
- "text": "罗江区",
- "value": "510604000000"
- },
- {
- "text": "中江县",
- "value": "510623000000"
- },
- {
- "text": "广汉市",
- "value": "510681000000"
- },
- {
- "text": "什邡市",
- "value": "510682000000"
- },
- {
- "text": "绵竹市",
- "value": "510683000000"
- }
- ]
- },
- {
- "text": "绵阳市",
- "value": "510700000000",
- "children": [{
- "text": "市辖区",
- "value": "510701000000"
- },
- {
- "text": "涪城区",
- "value": "510703000000"
- },
- {
- "text": "游仙区",
- "value": "510704000000"
- },
- {
- "text": "安州区",
- "value": "510705000000"
- },
- {
- "text": "三台县",
- "value": "510722000000"
- },
- {
- "text": "盐亭县",
- "value": "510723000000"
- },
- {
- "text": "梓潼县",
- "value": "510725000000"
- },
- {
- "text": "北川羌族自治县",
- "value": "510726000000"
- },
- {
- "text": "平武县",
- "value": "510727000000"
- },
- {
- "text": "江油市",
- "value": "510781000000"
- }
- ]
- },
- {
- "text": "广元市",
- "value": "510800000000",
- "children": [{
- "text": "市辖区",
- "value": "510801000000"
- },
- {
- "text": "利州区",
- "value": "510802000000"
- },
- {
- "text": "昭化区",
- "value": "510811000000"
- },
- {
- "text": "朝天区",
- "value": "510812000000"
- },
- {
- "text": "旺苍县",
- "value": "510821000000"
- },
- {
- "text": "青川县",
- "value": "510822000000"
- },
- {
- "text": "剑阁县",
- "value": "510823000000"
- },
- {
- "text": "苍溪县",
- "value": "510824000000"
- }
- ]
- },
- {
- "text": "遂宁市",
- "value": "510900000000",
- "children": [{
- "text": "市辖区",
- "value": "510901000000"
- },
- {
- "text": "船山区",
- "value": "510903000000"
- },
- {
- "text": "安居区",
- "value": "510904000000"
- },
- {
- "text": "蓬溪县",
- "value": "510921000000"
- },
- {
- "text": "大英县",
- "value": "510923000000"
- },
- {
- "text": "射洪市",
- "value": "510981000000"
- }
- ]
- },
- {
- "text": "内江市",
- "value": "511000000000",
- "children": [{
- "text": "市辖区",
- "value": "511001000000"
- },
- {
- "text": "市中区",
- "value": "511002000000"
- },
- {
- "text": "东兴区",
- "value": "511011000000"
- },
- {
- "text": "威远县",
- "value": "511024000000"
- },
- {
- "text": "资中县",
- "value": "511025000000"
- },
- {
- "text": "内江经济开发区",
- "value": "511071000000"
- },
- {
- "text": "隆昌市",
- "value": "511083000000"
- }
- ]
- },
- {
- "text": "乐山市",
- "value": "511100000000",
- "children": [{
- "text": "市辖区",
- "value": "511101000000"
- },
- {
- "text": "市中区",
- "value": "511102000000"
- },
- {
- "text": "沙湾区",
- "value": "511111000000"
- },
- {
- "text": "五通桥区",
- "value": "511112000000"
- },
- {
- "text": "金口河区",
- "value": "511113000000"
- },
- {
- "text": "犍为县",
- "value": "511123000000"
- },
- {
- "text": "井研县",
- "value": "511124000000"
- },
- {
- "text": "夹江县",
- "value": "511126000000"
- },
- {
- "text": "沐川县",
- "value": "511129000000"
- },
- {
- "text": "峨边彝族自治县",
- "value": "511132000000"
- },
- {
- "text": "马边彝族自治县",
- "value": "511133000000"
- },
- {
- "text": "峨眉山市",
- "value": "511181000000"
- }
- ]
- },
- {
- "text": "南充市",
- "value": "511300000000",
- "children": [{
- "text": "市辖区",
- "value": "511301000000"
- },
- {
- "text": "顺庆区",
- "value": "511302000000"
- },
- {
- "text": "高坪区",
- "value": "511303000000"
- },
- {
- "text": "嘉陵区",
- "value": "511304000000"
- },
- {
- "text": "南部县",
- "value": "511321000000"
- },
- {
- "text": "营山县",
- "value": "511322000000"
- },
- {
- "text": "蓬安县",
- "value": "511323000000"
- },
- {
- "text": "仪陇县",
- "value": "511324000000"
- },
- {
- "text": "西充县",
- "value": "511325000000"
- },
- {
- "text": "阆中市",
- "value": "511381000000"
- }
- ]
- },
- {
- "text": "眉山市",
- "value": "511400000000",
- "children": [{
- "text": "市辖区",
- "value": "511401000000"
- },
- {
- "text": "东坡区",
- "value": "511402000000"
- },
- {
- "text": "彭山区",
- "value": "511403000000"
- },
- {
- "text": "仁寿县",
- "value": "511421000000"
- },
- {
- "text": "洪雅县",
- "value": "511423000000"
- },
- {
- "text": "丹棱县",
- "value": "511424000000"
- },
- {
- "text": "青神县",
- "value": "511425000000"
- }
- ]
- },
- {
- "text": "宜宾市",
- "value": "511500000000",
- "children": [{
- "text": "市辖区",
- "value": "511501000000"
- },
- {
- "text": "翠屏区",
- "value": "511502000000"
- },
- {
- "text": "南溪区",
- "value": "511503000000"
- },
- {
- "text": "叙州区",
- "value": "511504000000"
- },
- {
- "text": "江安县",
- "value": "511523000000"
- },
- {
- "text": "长宁县",
- "value": "511524000000"
- },
- {
- "text": "高县",
- "value": "511525000000"
- },
- {
- "text": "珙县",
- "value": "511526000000"
- },
- {
- "text": "筠连县",
- "value": "511527000000"
- },
- {
- "text": "兴文县",
- "value": "511528000000"
- },
- {
- "text": "屏山县",
- "value": "511529000000"
- }
- ]
- },
- {
- "text": "广安市",
- "value": "511600000000",
- "children": [{
- "text": "市辖区",
- "value": "511601000000"
- },
- {
- "text": "广安区",
- "value": "511602000000"
- },
- {
- "text": "前锋区",
- "value": "511603000000"
- },
- {
- "text": "岳池县",
- "value": "511621000000"
- },
- {
- "text": "武胜县",
- "value": "511622000000"
- },
- {
- "text": "邻水县",
- "value": "511623000000"
- },
- {
- "text": "华蓥市",
- "value": "511681000000"
- }
- ]
- },
- {
- "text": "达州市",
- "value": "511700000000",
- "children": [{
- "text": "市辖区",
- "value": "511701000000"
- },
- {
- "text": "通川区",
- "value": "511702000000"
- },
- {
- "text": "达川区",
- "value": "511703000000"
- },
- {
- "text": "宣汉县",
- "value": "511722000000"
- },
- {
- "text": "开江县",
- "value": "511723000000"
- },
- {
- "text": "大竹县",
- "value": "511724000000"
- },
- {
- "text": "渠县",
- "value": "511725000000"
- },
- {
- "text": "达州经济开发区",
- "value": "511771000000"
- },
- {
- "text": "万源市",
- "value": "511781000000"
- }
- ]
- },
- {
- "text": "雅安市",
- "value": "511800000000",
- "children": [{
- "text": "市辖区",
- "value": "511801000000"
- },
- {
- "text": "雨城区",
- "value": "511802000000"
- },
- {
- "text": "名山区",
- "value": "511803000000"
- },
- {
- "text": "荥经县",
- "value": "511822000000"
- },
- {
- "text": "汉源县",
- "value": "511823000000"
- },
- {
- "text": "石棉县",
- "value": "511824000000"
- },
- {
- "text": "天全县",
- "value": "511825000000"
- },
- {
- "text": "芦山县",
- "value": "511826000000"
- },
- {
- "text": "宝兴县",
- "value": "511827000000"
- }
- ]
- },
- {
- "text": "巴中市",
- "value": "511900000000",
- "children": [{
- "text": "市辖区",
- "value": "511901000000"
- },
- {
- "text": "巴州区",
- "value": "511902000000"
- },
- {
- "text": "恩阳区",
- "value": "511903000000"
- },
- {
- "text": "通江县",
- "value": "511921000000"
- },
- {
- "text": "南江县",
- "value": "511922000000"
- },
- {
- "text": "平昌县",
- "value": "511923000000"
- },
- {
- "text": "巴中经济开发区",
- "value": "511971000000"
- }
- ]
- },
- {
- "text": "资阳市",
- "value": "512000000000",
- "children": [{
- "text": "市辖区",
- "value": "512001000000"
- },
- {
- "text": "雁江区",
- "value": "512002000000"
- },
- {
- "text": "安岳县",
- "value": "512021000000"
- },
- {
- "text": "乐至县",
- "value": "512022000000"
- }
- ]
- },
- {
- "text": "阿坝藏族羌族自治州",
- "value": "513200000000",
- "children": [{
- "text": "马尔康市",
- "value": "513201000000"
- },
- {
- "text": "汶川县",
- "value": "513221000000"
- },
- {
- "text": "理县",
- "value": "513222000000"
- },
- {
- "text": "茂县",
- "value": "513223000000"
- },
- {
- "text": "松潘县",
- "value": "513224000000"
- },
- {
- "text": "九寨沟县",
- "value": "513225000000"
- },
- {
- "text": "金川县",
- "value": "513226000000"
- },
- {
- "text": "小金县",
- "value": "513227000000"
- },
- {
- "text": "黑水县",
- "value": "513228000000"
- },
- {
- "text": "壤塘县",
- "value": "513230000000"
- },
- {
- "text": "阿坝县",
- "value": "513231000000"
- },
- {
- "text": "若尔盖县",
- "value": "513232000000"
- },
- {
- "text": "红原县",
- "value": "513233000000"
- }
- ]
- },
- {
- "text": "甘孜藏族自治州",
- "value": "513300000000",
- "children": [{
- "text": "康定市",
- "value": "513301000000"
- },
- {
- "text": "泸定县",
- "value": "513322000000"
- },
- {
- "text": "丹巴县",
- "value": "513323000000"
- },
- {
- "text": "九龙县",
- "value": "513324000000"
- },
- {
- "text": "雅江县",
- "value": "513325000000"
- },
- {
- "text": "道孚县",
- "value": "513326000000"
- },
- {
- "text": "炉霍县",
- "value": "513327000000"
- },
- {
- "text": "甘孜县",
- "value": "513328000000"
- },
- {
- "text": "新龙县",
- "value": "513329000000"
- },
- {
- "text": "德格县",
- "value": "513330000000"
- },
- {
- "text": "白玉县",
- "value": "513331000000"
- },
- {
- "text": "石渠县",
- "value": "513332000000"
- },
- {
- "text": "色达县",
- "value": "513333000000"
- },
- {
- "text": "理塘县",
- "value": "513334000000"
- },
- {
- "text": "巴塘县",
- "value": "513335000000"
- },
- {
- "text": "乡城县",
- "value": "513336000000"
- },
- {
- "text": "稻城县",
- "value": "513337000000"
- },
- {
- "text": "得荣县",
- "value": "513338000000"
- }
- ]
- },
- {
- "text": "凉山彝族自治州",
- "value": "513400000000",
- "children": [{
- "text": "西昌市",
- "value": "513401000000"
- },
- {
- "text": "木里藏族自治县",
- "value": "513422000000"
- },
- {
- "text": "盐源县",
- "value": "513423000000"
- },
- {
- "text": "德昌县",
- "value": "513424000000"
- },
- {
- "text": "会理县",
- "value": "513425000000"
- },
- {
- "text": "会东县",
- "value": "513426000000"
- },
- {
- "text": "宁南县",
- "value": "513427000000"
- },
- {
- "text": "普格县",
- "value": "513428000000"
- },
- {
- "text": "布拖县",
- "value": "513429000000"
- },
- {
- "text": "金阳县",
- "value": "513430000000"
- },
- {
- "text": "昭觉县",
- "value": "513431000000"
- },
- {
- "text": "喜德县",
- "value": "513432000000"
- },
- {
- "text": "冕宁县",
- "value": "513433000000"
- },
- {
- "text": "越西县",
- "value": "513434000000"
- },
- {
- "text": "甘洛县",
- "value": "513435000000"
- },
- {
- "text": "美姑县",
- "value": "513436000000"
- },
- {
- "text": "雷波县",
- "value": "513437000000"
- }
- ]
- }
- ]
- },
- {
- "text": "贵州省",
- "value": "520000000000",
- "children": [{
- "text": "贵阳市",
- "value": "520100000000",
- "children": [{
- "text": "市辖区",
- "value": "520101000000"
- },
- {
- "text": "南明区",
- "value": "520102000000"
- },
- {
- "text": "云岩区",
- "value": "520103000000"
- },
- {
- "text": "花溪区",
- "value": "520111000000"
- },
- {
- "text": "乌当区",
- "value": "520112000000"
- },
- {
- "text": "白云区",
- "value": "520113000000"
- },
- {
- "text": "观山湖区",
- "value": "520115000000"
- },
- {
- "text": "开阳县",
- "value": "520121000000"
- },
- {
- "text": "息烽县",
- "value": "520122000000"
- },
- {
- "text": "修文县",
- "value": "520123000000"
- },
- {
- "text": "清镇市",
- "value": "520181000000"
- }
- ]
- },
- {
- "text": "六盘水市",
- "value": "520200000000",
- "children": [{
- "text": "钟山区",
- "value": "520201000000"
- },
- {
- "text": "六枝特区",
- "value": "520203000000"
- },
- {
- "text": "水城县",
- "value": "520221000000"
- },
- {
- "text": "盘州市",
- "value": "520281000000"
- }
- ]
- },
- {
- "text": "遵义市",
- "value": "520300000000",
- "children": [{
- "text": "市辖区",
- "value": "520301000000"
- },
- {
- "text": "红花岗区",
- "value": "520302000000"
- },
- {
- "text": "汇川区",
- "value": "520303000000"
- },
- {
- "text": "播州区",
- "value": "520304000000"
- },
- {
- "text": "桐梓县",
- "value": "520322000000"
- },
- {
- "text": "绥阳县",
- "value": "520323000000"
- },
- {
- "text": "正安县",
- "value": "520324000000"
- },
- {
- "text": "道真仡佬族苗族自治县",
- "value": "520325000000"
- },
- {
- "text": "务川仡佬族苗族自治县",
- "value": "520326000000"
- },
- {
- "text": "凤冈县",
- "value": "520327000000"
- },
- {
- "text": "湄潭县",
- "value": "520328000000"
- },
- {
- "text": "余庆县",
- "value": "520329000000"
- },
- {
- "text": "习水县",
- "value": "520330000000"
- },
- {
- "text": "赤水市",
- "value": "520381000000"
- },
- {
- "text": "仁怀市",
- "value": "520382000000"
- }
- ]
- },
- {
- "text": "安顺市",
- "value": "520400000000",
- "children": [{
- "text": "市辖区",
- "value": "520401000000"
- },
- {
- "text": "西秀区",
- "value": "520402000000"
- },
- {
- "text": "平坝区",
- "value": "520403000000"
- },
- {
- "text": "普定县",
- "value": "520422000000"
- },
- {
- "text": "镇宁布依族苗族自治县",
- "value": "520423000000"
- },
- {
- "text": "关岭布依族苗族自治县",
- "value": "520424000000"
- },
- {
- "text": "紫云苗族布依族自治县",
- "value": "520425000000"
- }
- ]
- },
- {
- "text": "毕节市",
- "value": "520500000000",
- "children": [{
- "text": "市辖区",
- "value": "520501000000"
- },
- {
- "text": "七星关区",
- "value": "520502000000"
- },
- {
- "text": "大方县",
- "value": "520521000000"
- },
- {
- "text": "黔西县",
- "value": "520522000000"
- },
- {
- "text": "金沙县",
- "value": "520523000000"
- },
- {
- "text": "织金县",
- "value": "520524000000"
- },
- {
- "text": "纳雍县",
- "value": "520525000000"
- },
- {
- "text": "威宁彝族回族苗族自治县",
- "value": "520526000000"
- },
- {
- "text": "赫章县",
- "value": "520527000000"
- }
- ]
- },
- {
- "text": "铜仁市",
- "value": "520600000000",
- "children": [{
- "text": "市辖区",
- "value": "520601000000"
- },
- {
- "text": "碧江区",
- "value": "520602000000"
- },
- {
- "text": "万山区",
- "value": "520603000000"
- },
- {
- "text": "江口县",
- "value": "520621000000"
- },
- {
- "text": "玉屏侗族自治县",
- "value": "520622000000"
- },
- {
- "text": "石阡县",
- "value": "520623000000"
- },
- {
- "text": "思南县",
- "value": "520624000000"
- },
- {
- "text": "印江土家族苗族自治县",
- "value": "520625000000"
- },
- {
- "text": "德江县",
- "value": "520626000000"
- },
- {
- "text": "沿河土家族自治县",
- "value": "520627000000"
- },
- {
- "text": "松桃苗族自治县",
- "value": "520628000000"
- }
- ]
- },
- {
- "text": "黔西南布依族苗族自治州",
- "value": "522300000000",
- "children": [{
- "text": "兴义市",
- "value": "522301000000"
- },
- {
- "text": "兴仁市",
- "value": "522302000000"
- },
- {
- "text": "普安县",
- "value": "522323000000"
- },
- {
- "text": "晴隆县",
- "value": "522324000000"
- },
- {
- "text": "贞丰县",
- "value": "522325000000"
- },
- {
- "text": "望谟县",
- "value": "522326000000"
- },
- {
- "text": "册亨县",
- "value": "522327000000"
- },
- {
- "text": "安龙县",
- "value": "522328000000"
- }
- ]
- },
- {
- "text": "黔东南苗族侗族自治州",
- "value": "522600000000",
- "children": [{
- "text": "凯里市",
- "value": "522601000000"
- },
- {
- "text": "黄平县",
- "value": "522622000000"
- },
- {
- "text": "施秉县",
- "value": "522623000000"
- },
- {
- "text": "三穗县",
- "value": "522624000000"
- },
- {
- "text": "镇远县",
- "value": "522625000000"
- },
- {
- "text": "岑巩县",
- "value": "522626000000"
- },
- {
- "text": "天柱县",
- "value": "522627000000"
- },
- {
- "text": "锦屏县",
- "value": "522628000000"
- },
- {
- "text": "剑河县",
- "value": "522629000000"
- },
- {
- "text": "台江县",
- "value": "522630000000"
- },
- {
- "text": "黎平县",
- "value": "522631000000"
- },
- {
- "text": "榕江县",
- "value": "522632000000"
- },
- {
- "text": "从江县",
- "value": "522633000000"
- },
- {
- "text": "雷山县",
- "value": "522634000000"
- },
- {
- "text": "麻江县",
- "value": "522635000000"
- },
- {
- "text": "丹寨县",
- "value": "522636000000"
- }
- ]
- },
- {
- "text": "黔南布依族苗族自治州",
- "value": "522700000000",
- "children": [{
- "text": "都匀市",
- "value": "522701000000"
- },
- {
- "text": "福泉市",
- "value": "522702000000"
- },
- {
- "text": "荔波县",
- "value": "522722000000"
- },
- {
- "text": "贵定县",
- "value": "522723000000"
- },
- {
- "text": "瓮安县",
- "value": "522725000000"
- },
- {
- "text": "独山县",
- "value": "522726000000"
- },
- {
- "text": "平塘县",
- "value": "522727000000"
- },
- {
- "text": "罗甸县",
- "value": "522728000000"
- },
- {
- "text": "长顺县",
- "value": "522729000000"
- },
- {
- "text": "龙里县",
- "value": "522730000000"
- },
- {
- "text": "惠水县",
- "value": "522731000000"
- },
- {
- "text": "三都水族自治县",
- "value": "522732000000"
- }
- ]
- }
- ]
- },
- {
- "text": "云南省",
- "value": "530000000000",
- "children": [{
- "text": "昆明市",
- "value": "530100000000",
- "children": [{
- "text": "市辖区",
- "value": "530101000000"
- },
- {
- "text": "五华区",
- "value": "530102000000"
- },
- {
- "text": "盘龙区",
- "value": "530103000000"
- },
- {
- "text": "官渡区",
- "value": "530111000000"
- },
- {
- "text": "西山区",
- "value": "530112000000"
- },
- {
- "text": "东川区",
- "value": "530113000000"
- },
- {
- "text": "呈贡区",
- "value": "530114000000"
- },
- {
- "text": "晋宁区",
- "value": "530115000000"
- },
- {
- "text": "富民县",
- "value": "530124000000"
- },
- {
- "text": "宜良县",
- "value": "530125000000"
- },
- {
- "text": "石林彝族自治县",
- "value": "530126000000"
- },
- {
- "text": "嵩明县",
- "value": "530127000000"
- },
- {
- "text": "禄劝彝族苗族自治县",
- "value": "530128000000"
- },
- {
- "text": "寻甸回族彝族自治县",
- "value": "530129000000"
- },
- {
- "text": "安宁市",
- "value": "530181000000"
- }
- ]
- },
- {
- "text": "曲靖市",
- "value": "530300000000",
- "children": [{
- "text": "市辖区",
- "value": "530301000000"
- },
- {
- "text": "麒麟区",
- "value": "530302000000"
- },
- {
- "text": "沾益区",
- "value": "530303000000"
- },
- {
- "text": "马龙区",
- "value": "530304000000"
- },
- {
- "text": "陆良县",
- "value": "530322000000"
- },
- {
- "text": "师宗县",
- "value": "530323000000"
- },
- {
- "text": "罗平县",
- "value": "530324000000"
- },
- {
- "text": "富源县",
- "value": "530325000000"
- },
- {
- "text": "会泽县",
- "value": "530326000000"
- },
- {
- "text": "宣威市",
- "value": "530381000000"
- }
- ]
- },
- {
- "text": "玉溪市",
- "value": "530400000000",
- "children": [{
- "text": "市辖区",
- "value": "530401000000"
- },
- {
- "text": "红塔区",
- "value": "530402000000"
- },
- {
- "text": "江川区",
- "value": "530403000000"
- },
- {
- "text": "通海县",
- "value": "530423000000"
- },
- {
- "text": "华宁县",
- "value": "530424000000"
- },
- {
- "text": "易门县",
- "value": "530425000000"
- },
- {
- "text": "峨山彝族自治县",
- "value": "530426000000"
- },
- {
- "text": "新平彝族傣族自治县",
- "value": "530427000000"
- },
- {
- "text": "元江哈尼族彝族傣族自治县",
- "value": "530428000000"
- },
- {
- "text": "澄江市",
- "value": "530481000000"
- }
- ]
- },
- {
- "text": "保山市",
- "value": "530500000000",
- "children": [{
- "text": "市辖区",
- "value": "530501000000"
- },
- {
- "text": "隆阳区",
- "value": "530502000000"
- },
- {
- "text": "施甸县",
- "value": "530521000000"
- },
- {
- "text": "龙陵县",
- "value": "530523000000"
- },
- {
- "text": "昌宁县",
- "value": "530524000000"
- },
- {
- "text": "腾冲市",
- "value": "530581000000"
- }
- ]
- },
- {
- "text": "昭通市",
- "value": "530600000000",
- "children": [{
- "text": "市辖区",
- "value": "530601000000"
- },
- {
- "text": "昭阳区",
- "value": "530602000000"
- },
- {
- "text": "鲁甸县",
- "value": "530621000000"
- },
- {
- "text": "巧家县",
- "value": "530622000000"
- },
- {
- "text": "盐津县",
- "value": "530623000000"
- },
- {
- "text": "大关县",
- "value": "530624000000"
- },
- {
- "text": "永善县",
- "value": "530625000000"
- },
- {
- "text": "绥江县",
- "value": "530626000000"
- },
- {
- "text": "镇雄县",
- "value": "530627000000"
- },
- {
- "text": "彝良县",
- "value": "530628000000"
- },
- {
- "text": "威信县",
- "value": "530629000000"
- },
- {
- "text": "水富市",
- "value": "530681000000"
- }
- ]
- },
- {
- "text": "丽江市",
- "value": "530700000000",
- "children": [{
- "text": "市辖区",
- "value": "530701000000"
- },
- {
- "text": "古城区",
- "value": "530702000000"
- },
- {
- "text": "玉龙纳西族自治县",
- "value": "530721000000"
- },
- {
- "text": "永胜县",
- "value": "530722000000"
- },
- {
- "text": "华坪县",
- "value": "530723000000"
- },
- {
- "text": "宁蒗彝族自治县",
- "value": "530724000000"
- }
- ]
- },
- {
- "text": "普洱市",
- "value": "530800000000",
- "children": [{
- "text": "市辖区",
- "value": "530801000000"
- },
- {
- "text": "思茅区",
- "value": "530802000000"
- },
- {
- "text": "宁洱哈尼族彝族自治县",
- "value": "530821000000"
- },
- {
- "text": "墨江哈尼族自治县",
- "value": "530822000000"
- },
- {
- "text": "景东彝族自治县",
- "value": "530823000000"
- },
- {
- "text": "景谷傣族彝族自治县",
- "value": "530824000000"
- },
- {
- "text": "镇沅彝族哈尼族拉祜族自治县",
- "value": "530825000000"
- },
- {
- "text": "江城哈尼族彝族自治县",
- "value": "530826000000"
- },
- {
- "text": "孟连傣族拉祜族佤族自治县",
- "value": "530827000000"
- },
- {
- "text": "澜沧拉祜族自治县",
- "value": "530828000000"
- },
- {
- "text": "西盟佤族自治县",
- "value": "530829000000"
- }
- ]
- },
- {
- "text": "临沧市",
- "value": "530900000000",
- "children": [{
- "text": "市辖区",
- "value": "530901000000"
- },
- {
- "text": "临翔区",
- "value": "530902000000"
- },
- {
- "text": "凤庆县",
- "value": "530921000000"
- },
- {
- "text": "云县",
- "value": "530922000000"
- },
- {
- "text": "永德县",
- "value": "530923000000"
- },
- {
- "text": "镇康县",
- "value": "530924000000"
- },
- {
- "text": "双江拉祜族佤族布朗族傣族自治县",
- "value": "530925000000"
- },
- {
- "text": "耿马傣族佤族自治县",
- "value": "530926000000"
- },
- {
- "text": "沧源佤族自治县",
- "value": "530927000000"
- }
- ]
- },
- {
- "text": "楚雄彝族自治州",
- "value": "532300000000",
- "children": [{
- "text": "楚雄市",
- "value": "532301000000"
- },
- {
- "text": "双柏县",
- "value": "532322000000"
- },
- {
- "text": "牟定县",
- "value": "532323000000"
- },
- {
- "text": "南华县",
- "value": "532324000000"
- },
- {
- "text": "姚安县",
- "value": "532325000000"
- },
- {
- "text": "大姚县",
- "value": "532326000000"
- },
- {
- "text": "永仁县",
- "value": "532327000000"
- },
- {
- "text": "元谋县",
- "value": "532328000000"
- },
- {
- "text": "武定县",
- "value": "532329000000"
- },
- {
- "text": "禄丰县",
- "value": "532331000000"
- }
- ]
- },
- {
- "text": "红河哈尼族彝族自治州",
- "value": "532500000000",
- "children": [{
- "text": "个旧市",
- "value": "532501000000"
- },
- {
- "text": "开远市",
- "value": "532502000000"
- },
- {
- "text": "蒙自市",
- "value": "532503000000"
- },
- {
- "text": "弥勒市",
- "value": "532504000000"
- },
- {
- "text": "屏边苗族自治县",
- "value": "532523000000"
- },
- {
- "text": "建水县",
- "value": "532524000000"
- },
- {
- "text": "石屏县",
- "value": "532525000000"
- },
- {
- "text": "泸西县",
- "value": "532527000000"
- },
- {
- "text": "元阳县",
- "value": "532528000000"
- },
- {
- "text": "红河县",
- "value": "532529000000"
- },
- {
- "text": "金平苗族瑶族傣族自治县",
- "value": "532530000000"
- },
- {
- "text": "绿春县",
- "value": "532531000000"
- },
- {
- "text": "河口瑶族自治县",
- "value": "532532000000"
- }
- ]
- },
- {
- "text": "文山壮族苗族自治州",
- "value": "532600000000",
- "children": [{
- "text": "文山市",
- "value": "532601000000"
- },
- {
- "text": "砚山县",
- "value": "532622000000"
- },
- {
- "text": "西畴县",
- "value": "532623000000"
- },
- {
- "text": "麻栗坡县",
- "value": "532624000000"
- },
- {
- "text": "马关县",
- "value": "532625000000"
- },
- {
- "text": "丘北县",
- "value": "532626000000"
- },
- {
- "text": "广南县",
- "value": "532627000000"
- },
- {
- "text": "富宁县",
- "value": "532628000000"
- }
- ]
- },
- {
- "text": "西双版纳傣族自治州",
- "value": "532800000000",
- "children": [{
- "text": "景洪市",
- "value": "532801000000"
- },
- {
- "text": "勐海县",
- "value": "532822000000"
- },
- {
- "text": "勐腊县",
- "value": "532823000000"
- }
- ]
- },
- {
- "text": "大理白族自治州",
- "value": "532900000000",
- "children": [{
- "text": "大理市",
- "value": "532901000000"
- },
- {
- "text": "漾濞彝族自治县",
- "value": "532922000000"
- },
- {
- "text": "祥云县",
- "value": "532923000000"
- },
- {
- "text": "宾川县",
- "value": "532924000000"
- },
- {
- "text": "弥渡县",
- "value": "532925000000"
- },
- {
- "text": "南涧彝族自治县",
- "value": "532926000000"
- },
- {
- "text": "巍山彝族回族自治县",
- "value": "532927000000"
- },
- {
- "text": "永平县",
- "value": "532928000000"
- },
- {
- "text": "云龙县",
- "value": "532929000000"
- },
- {
- "text": "洱源县",
- "value": "532930000000"
- },
- {
- "text": "剑川县",
- "value": "532931000000"
- },
- {
- "text": "鹤庆县",
- "value": "532932000000"
- }
- ]
- },
- {
- "text": "德宏傣族景颇族自治州",
- "value": "533100000000",
- "children": [{
- "text": "瑞丽市",
- "value": "533102000000"
- },
- {
- "text": "芒市",
- "value": "533103000000"
- },
- {
- "text": "梁河县",
- "value": "533122000000"
- },
- {
- "text": "盈江县",
- "value": "533123000000"
- },
- {
- "text": "陇川县",
- "value": "533124000000"
- }
- ]
- },
- {
- "text": "怒江傈僳族自治州",
- "value": "533300000000",
- "children": [{
- "text": "泸水市",
- "value": "533301000000"
- },
- {
- "text": "福贡县",
- "value": "533323000000"
- },
- {
- "text": "贡山独龙族怒族自治县",
- "value": "533324000000"
- },
- {
- "text": "兰坪白族普米族自治县",
- "value": "533325000000"
- }
- ]
- },
- {
- "text": "迪庆藏族自治州",
- "value": "533400000000",
- "children": [{
- "text": "香格里拉市",
- "value": "533401000000"
- },
- {
- "text": "德钦县",
- "value": "533422000000"
- },
- {
- "text": "维西傈僳族自治县",
- "value": "533423000000"
- }
- ]
- }
- ]
- },
- {
- "text": "西藏自治区",
- "value": "540000000000",
- "children": [{
- "text": "拉萨市",
- "value": "540100000000",
- "children": [{
- "text": "市辖区",
- "value": "540101000000"
- },
- {
- "text": "城关区",
- "value": "540102000000"
- },
- {
- "text": "堆龙德庆区",
- "value": "540103000000"
- },
- {
- "text": "达孜区",
- "value": "540104000000"
- },
- {
- "text": "林周县",
- "value": "540121000000"
- },
- {
- "text": "当雄县",
- "value": "540122000000"
- },
- {
- "text": "尼木县",
- "value": "540123000000"
- },
- {
- "text": "曲水县",
- "value": "540124000000"
- },
- {
- "text": "墨竹工卡县",
- "value": "540127000000"
- },
- {
- "text": "格尔木藏青工业园区",
- "value": "540171000000"
- },
- {
- "text": "拉萨经济技术开发区",
- "value": "540172000000"
- },
- {
- "text": "西藏文化旅游创意园区",
- "value": "540173000000"
- },
- {
- "text": "达孜工业园区",
- "value": "540174000000"
- }
- ]
- },
- {
- "text": "日喀则市",
- "value": "540200000000",
- "children": [{
- "text": "桑珠孜区",
- "value": "540202000000"
- },
- {
- "text": "南木林县",
- "value": "540221000000"
- },
- {
- "text": "江孜县",
- "value": "540222000000"
- },
- {
- "text": "定日县",
- "value": "540223000000"
- },
- {
- "text": "萨迦县",
- "value": "540224000000"
- },
- {
- "text": "拉孜县",
- "value": "540225000000"
- },
- {
- "text": "昂仁县",
- "value": "540226000000"
- },
- {
- "text": "谢通门县",
- "value": "540227000000"
- },
- {
- "text": "白朗县",
- "value": "540228000000"
- },
- {
- "text": "仁布县",
- "value": "540229000000"
- },
- {
- "text": "康马县",
- "value": "540230000000"
- },
- {
- "text": "定结县",
- "value": "540231000000"
- },
- {
- "text": "仲巴县",
- "value": "540232000000"
- },
- {
- "text": "亚东县",
- "value": "540233000000"
- },
- {
- "text": "吉隆县",
- "value": "540234000000"
- },
- {
- "text": "聂拉木县",
- "value": "540235000000"
- },
- {
- "text": "萨嘎县",
- "value": "540236000000"
- },
- {
- "text": "岗巴县",
- "value": "540237000000"
- }
- ]
- },
- {
- "text": "昌都市",
- "value": "540300000000",
- "children": [{
- "text": "卡若区",
- "value": "540302000000"
- },
- {
- "text": "江达县",
- "value": "540321000000"
- },
- {
- "text": "贡觉县",
- "value": "540322000000"
- },
- {
- "text": "类乌齐县",
- "value": "540323000000"
- },
- {
- "text": "丁青县",
- "value": "540324000000"
- },
- {
- "text": "察雅县",
- "value": "540325000000"
- },
- {
- "text": "八宿县",
- "value": "540326000000"
- },
- {
- "text": "左贡县",
- "value": "540327000000"
- },
- {
- "text": "芒康县",
- "value": "540328000000"
- },
- {
- "text": "洛隆县",
- "value": "540329000000"
- },
- {
- "text": "边坝县",
- "value": "540330000000"
- }
- ]
- },
- {
- "text": "林芝市",
- "value": "540400000000",
- "children": [{
- "text": "巴宜区",
- "value": "540402000000"
- },
- {
- "text": "工布江达县",
- "value": "540421000000"
- },
- {
- "text": "米林县",
- "value": "540422000000"
- },
- {
- "text": "墨脱县",
- "value": "540423000000"
- },
- {
- "text": "波密县",
- "value": "540424000000"
- },
- {
- "text": "察隅县",
- "value": "540425000000"
- },
- {
- "text": "朗县",
- "value": "540426000000"
- }
- ]
- },
- {
- "text": "山南市",
- "value": "540500000000",
- "children": [{
- "text": "市辖区",
- "value": "540501000000"
- },
- {
- "text": "乃东区",
- "value": "540502000000"
- },
- {
- "text": "扎囊县",
- "value": "540521000000"
- },
- {
- "text": "贡嘎县",
- "value": "540522000000"
- },
- {
- "text": "桑日县",
- "value": "540523000000"
- },
- {
- "text": "琼结县",
- "value": "540524000000"
- },
- {
- "text": "曲松县",
- "value": "540525000000"
- },
- {
- "text": "措美县",
- "value": "540526000000"
- },
- {
- "text": "洛扎县",
- "value": "540527000000"
- },
- {
- "text": "加查县",
- "value": "540528000000"
- },
- {
- "text": "隆子县",
- "value": "540529000000"
- },
- {
- "text": "错那县",
- "value": "540530000000"
- },
- {
- "text": "浪卡子县",
- "value": "540531000000"
- }
- ]
- },
- {
- "text": "那曲市",
- "value": "540600000000",
- "children": [{
- "text": "色尼区",
- "value": "540602000000"
- },
- {
- "text": "嘉黎县",
- "value": "540621000000"
- },
- {
- "text": "比如县",
- "value": "540622000000"
- },
- {
- "text": "聂荣县",
- "value": "540623000000"
- },
- {
- "text": "安多县",
- "value": "540624000000"
- },
- {
- "text": "申扎县",
- "value": "540625000000"
- },
- {
- "text": "索县",
- "value": "540626000000"
- },
- {
- "text": "班戈县",
- "value": "540627000000"
- },
- {
- "text": "巴青县",
- "value": "540628000000"
- },
- {
- "text": "尼玛县",
- "value": "540629000000"
- },
- {
- "text": "双湖县",
- "value": "540630000000"
- }
- ]
- },
- {
- "text": "阿里地区",
- "value": "542500000000",
- "children": [{
- "text": "普兰县",
- "value": "542521000000"
- },
- {
- "text": "札达县",
- "value": "542522000000"
- },
- {
- "text": "噶尔县",
- "value": "542523000000"
- },
- {
- "text": "日土县",
- "value": "542524000000"
- },
- {
- "text": "革吉县",
- "value": "542525000000"
- },
- {
- "text": "改则县",
- "value": "542526000000"
- },
- {
- "text": "措勤县",
- "value": "542527000000"
- }
- ]
- }
- ]
- },
- {
- "text": "陕西省",
- "value": "610000000000",
- "children": [{
- "text": "西安市",
- "value": "610100000000",
- "children": [{
- "text": "市辖区",
- "value": "610101000000"
- },
- {
- "text": "新城区",
- "value": "610102000000"
- },
- {
- "text": "碑林区",
- "value": "610103000000"
- },
- {
- "text": "莲湖区",
- "value": "610104000000"
- },
- {
- "text": "灞桥区",
- "value": "610111000000"
- },
- {
- "text": "未央区",
- "value": "610112000000"
- },
- {
- "text": "雁塔区",
- "value": "610113000000"
- },
- {
- "text": "阎良区",
- "value": "610114000000"
- },
- {
- "text": "临潼区",
- "value": "610115000000"
- },
- {
- "text": "长安区",
- "value": "610116000000"
- },
- {
- "text": "高陵区",
- "value": "610117000000"
- },
- {
- "text": "鄠邑区",
- "value": "610118000000"
- },
- {
- "text": "蓝田县",
- "value": "610122000000"
- },
- {
- "text": "周至县",
- "value": "610124000000"
- }
- ]
- },
- {
- "text": "铜川市",
- "value": "610200000000",
- "children": [{
- "text": "市辖区",
- "value": "610201000000"
- },
- {
- "text": "王益区",
- "value": "610202000000"
- },
- {
- "text": "印台区",
- "value": "610203000000"
- },
- {
- "text": "耀州区",
- "value": "610204000000"
- },
- {
- "text": "宜君县",
- "value": "610222000000"
- }
- ]
- },
- {
- "text": "宝鸡市",
- "value": "610300000000",
- "children": [{
- "text": "市辖区",
- "value": "610301000000"
- },
- {
- "text": "渭滨区",
- "value": "610302000000"
- },
- {
- "text": "金台区",
- "value": "610303000000"
- },
- {
- "text": "陈仓区",
- "value": "610304000000"
- },
- {
- "text": "凤翔县",
- "value": "610322000000"
- },
- {
- "text": "岐山县",
- "value": "610323000000"
- },
- {
- "text": "扶风县",
- "value": "610324000000"
- },
- {
- "text": "眉县",
- "value": "610326000000"
- },
- {
- "text": "陇县",
- "value": "610327000000"
- },
- {
- "text": "千阳县",
- "value": "610328000000"
- },
- {
- "text": "麟游县",
- "value": "610329000000"
- },
- {
- "text": "凤县",
- "value": "610330000000"
- },
- {
- "text": "太白县",
- "value": "610331000000"
- }
- ]
- },
- {
- "text": "咸阳市",
- "value": "610400000000",
- "children": [{
- "text": "市辖区",
- "value": "610401000000"
- },
- {
- "text": "秦都区",
- "value": "610402000000"
- },
- {
- "text": "杨陵区",
- "value": "610403000000"
- },
- {
- "text": "渭城区",
- "value": "610404000000"
- },
- {
- "text": "三原县",
- "value": "610422000000"
- },
- {
- "text": "泾阳县",
- "value": "610423000000"
- },
- {
- "text": "乾县",
- "value": "610424000000"
- },
- {
- "text": "礼泉县",
- "value": "610425000000"
- },
- {
- "text": "永寿县",
- "value": "610426000000"
- },
- {
- "text": "长武县",
- "value": "610428000000"
- },
- {
- "text": "旬邑县",
- "value": "610429000000"
- },
- {
- "text": "淳化县",
- "value": "610430000000"
- },
- {
- "text": "武功县",
- "value": "610431000000"
- },
- {
- "text": "兴平市",
- "value": "610481000000"
- },
- {
- "text": "彬州市",
- "value": "610482000000"
- }
- ]
- },
- {
- "text": "渭南市",
- "value": "610500000000",
- "children": [{
- "text": "市辖区",
- "value": "610501000000"
- },
- {
- "text": "临渭区",
- "value": "610502000000"
- },
- {
- "text": "华州区",
- "value": "610503000000"
- },
- {
- "text": "潼关县",
- "value": "610522000000"
- },
- {
- "text": "大荔县",
- "value": "610523000000"
- },
- {
- "text": "合阳县",
- "value": "610524000000"
- },
- {
- "text": "澄城县",
- "value": "610525000000"
- },
- {
- "text": "蒲城县",
- "value": "610526000000"
- },
- {
- "text": "白水县",
- "value": "610527000000"
- },
- {
- "text": "富平县",
- "value": "610528000000"
- },
- {
- "text": "韩城市",
- "value": "610581000000"
- },
- {
- "text": "华阴市",
- "value": "610582000000"
- }
- ]
- },
- {
- "text": "延安市",
- "value": "610600000000",
- "children": [{
- "text": "市辖区",
- "value": "610601000000"
- },
- {
- "text": "宝塔区",
- "value": "610602000000"
- },
- {
- "text": "安塞区",
- "value": "610603000000"
- },
- {
- "text": "延长县",
- "value": "610621000000"
- },
- {
- "text": "延川县",
- "value": "610622000000"
- },
- {
- "text": "志丹县",
- "value": "610625000000"
- },
- {
- "text": "吴起县",
- "value": "610626000000"
- },
- {
- "text": "甘泉县",
- "value": "610627000000"
- },
- {
- "text": "富县",
- "value": "610628000000"
- },
- {
- "text": "洛川县",
- "value": "610629000000"
- },
- {
- "text": "宜川县",
- "value": "610630000000"
- },
- {
- "text": "黄龙县",
- "value": "610631000000"
- },
- {
- "text": "黄陵县",
- "value": "610632000000"
- },
- {
- "text": "子长市",
- "value": "610681000000"
- }
- ]
- },
- {
- "text": "汉中市",
- "value": "610700000000",
- "children": [{
- "text": "市辖区",
- "value": "610701000000"
- },
- {
- "text": "汉台区",
- "value": "610702000000"
- },
- {
- "text": "南郑区",
- "value": "610703000000"
- },
- {
- "text": "城固县",
- "value": "610722000000"
- },
- {
- "text": "洋县",
- "value": "610723000000"
- },
- {
- "text": "西乡县",
- "value": "610724000000"
- },
- {
- "text": "勉县",
- "value": "610725000000"
- },
- {
- "text": "宁强县",
- "value": "610726000000"
- },
- {
- "text": "略阳县",
- "value": "610727000000"
- },
- {
- "text": "镇巴县",
- "value": "610728000000"
- },
- {
- "text": "留坝县",
- "value": "610729000000"
- },
- {
- "text": "佛坪县",
- "value": "610730000000"
- }
- ]
- },
- {
- "text": "榆林市",
- "value": "610800000000",
- "children": [{
- "text": "市辖区",
- "value": "610801000000"
- },
- {
- "text": "榆阳区",
- "value": "610802000000"
- },
- {
- "text": "横山区",
- "value": "610803000000"
- },
- {
- "text": "府谷县",
- "value": "610822000000"
- },
- {
- "text": "靖边县",
- "value": "610824000000"
- },
- {
- "text": "定边县",
- "value": "610825000000"
- },
- {
- "text": "绥德县",
- "value": "610826000000"
- },
- {
- "text": "米脂县",
- "value": "610827000000"
- },
- {
- "text": "佳县",
- "value": "610828000000"
- },
- {
- "text": "吴堡县",
- "value": "610829000000"
- },
- {
- "text": "清涧县",
- "value": "610830000000"
- },
- {
- "text": "子洲县",
- "value": "610831000000"
- },
- {
- "text": "神木市",
- "value": "610881000000"
- }
- ]
- },
- {
- "text": "安康市",
- "value": "610900000000",
- "children": [{
- "text": "市辖区",
- "value": "610901000000"
- },
- {
- "text": "汉滨区",
- "value": "610902000000"
- },
- {
- "text": "汉阴县",
- "value": "610921000000"
- },
- {
- "text": "石泉县",
- "value": "610922000000"
- },
- {
- "text": "宁陕县",
- "value": "610923000000"
- },
- {
- "text": "紫阳县",
- "value": "610924000000"
- },
- {
- "text": "岚皋县",
- "value": "610925000000"
- },
- {
- "text": "平利县",
- "value": "610926000000"
- },
- {
- "text": "镇坪县",
- "value": "610927000000"
- },
- {
- "text": "旬阳县",
- "value": "610928000000"
- },
- {
- "text": "白河县",
- "value": "610929000000"
- }
- ]
- },
- {
- "text": "商洛市",
- "value": "611000000000",
- "children": [{
- "text": "市辖区",
- "value": "611001000000"
- },
- {
- "text": "商州区",
- "value": "611002000000"
- },
- {
- "text": "洛南县",
- "value": "611021000000"
- },
- {
- "text": "丹凤县",
- "value": "611022000000"
- },
- {
- "text": "商南县",
- "value": "611023000000"
- },
- {
- "text": "山阳县",
- "value": "611024000000"
- },
- {
- "text": "镇安县",
- "value": "611025000000"
- },
- {
- "text": "柞水县",
- "value": "611026000000"
- }
- ]
- }
- ]
- },
- {
- "text": "甘肃省",
- "value": "620000000000",
- "children": [{
- "text": "兰州市",
- "value": "620100000000",
- "children": [{
- "text": "市辖区",
- "value": "620101000000"
- },
- {
- "text": "城关区",
- "value": "620102000000"
- },
- {
- "text": "七里河区",
- "value": "620103000000"
- },
- {
- "text": "西固区",
- "value": "620104000000"
- },
- {
- "text": "安宁区",
- "value": "620105000000"
- },
- {
- "text": "红古区",
- "value": "620111000000"
- },
- {
- "text": "永登县",
- "value": "620121000000"
- },
- {
- "text": "皋兰县",
- "value": "620122000000"
- },
- {
- "text": "榆中县",
- "value": "620123000000"
- },
- {
- "text": "兰州新区",
- "value": "620171000000"
- }
- ]
- },
- {
- "text": "嘉峪关市",
- "value": "620200000000",
- "children": [{
- "text": "市辖区",
- "value": "620201000000"
- }]
- },
- {
- "text": "金昌市",
- "value": "620300000000",
- "children": [{
- "text": "市辖区",
- "value": "620301000000"
- },
- {
- "text": "金川区",
- "value": "620302000000"
- },
- {
- "text": "永昌县",
- "value": "620321000000"
- }
- ]
- },
- {
- "text": "白银市",
- "value": "620400000000",
- "children": [{
- "text": "市辖区",
- "value": "620401000000"
- },
- {
- "text": "白银区",
- "value": "620402000000"
- },
- {
- "text": "平川区",
- "value": "620403000000"
- },
- {
- "text": "靖远县",
- "value": "620421000000"
- },
- {
- "text": "会宁县",
- "value": "620422000000"
- },
- {
- "text": "景泰县",
- "value": "620423000000"
- }
- ]
- },
- {
- "text": "天水市",
- "value": "620500000000",
- "children": [{
- "text": "市辖区",
- "value": "620501000000"
- },
- {
- "text": "秦州区",
- "value": "620502000000"
- },
- {
- "text": "麦积区",
- "value": "620503000000"
- },
- {
- "text": "清水县",
- "value": "620521000000"
- },
- {
- "text": "秦安县",
- "value": "620522000000"
- },
- {
- "text": "甘谷县",
- "value": "620523000000"
- },
- {
- "text": "武山县",
- "value": "620524000000"
- },
- {
- "text": "张家川回族自治县",
- "value": "620525000000"
- }
- ]
- },
- {
- "text": "武威市",
- "value": "620600000000",
- "children": [{
- "text": "市辖区",
- "value": "620601000000"
- },
- {
- "text": "凉州区",
- "value": "620602000000"
- },
- {
- "text": "民勤县",
- "value": "620621000000"
- },
- {
- "text": "古浪县",
- "value": "620622000000"
- },
- {
- "text": "天祝藏族自治县",
- "value": "620623000000"
- }
- ]
- },
- {
- "text": "张掖市",
- "value": "620700000000",
- "children": [{
- "text": "市辖区",
- "value": "620701000000"
- },
- {
- "text": "甘州区",
- "value": "620702000000"
- },
- {
- "text": "肃南裕固族自治县",
- "value": "620721000000"
- },
- {
- "text": "民乐县",
- "value": "620722000000"
- },
- {
- "text": "临泽县",
- "value": "620723000000"
- },
- {
- "text": "高台县",
- "value": "620724000000"
- },
- {
- "text": "山丹县",
- "value": "620725000000"
- }
- ]
- },
- {
- "text": "平凉市",
- "value": "620800000000",
- "children": [{
- "text": "市辖区",
- "value": "620801000000"
- },
- {
- "text": "崆峒区",
- "value": "620802000000"
- },
- {
- "text": "泾川县",
- "value": "620821000000"
- },
- {
- "text": "灵台县",
- "value": "620822000000"
- },
- {
- "text": "崇信县",
- "value": "620823000000"
- },
- {
- "text": "庄浪县",
- "value": "620825000000"
- },
- {
- "text": "静宁县",
- "value": "620826000000"
- },
- {
- "text": "华亭市",
- "value": "620881000000"
- }
- ]
- },
- {
- "text": "酒泉市",
- "value": "620900000000",
- "children": [{
- "text": "市辖区",
- "value": "620901000000"
- },
- {
- "text": "肃州区",
- "value": "620902000000"
- },
- {
- "text": "金塔县",
- "value": "620921000000"
- },
- {
- "text": "瓜州县",
- "value": "620922000000"
- },
- {
- "text": "肃北蒙古族自治县",
- "value": "620923000000"
- },
- {
- "text": "阿克塞哈萨克族自治县",
- "value": "620924000000"
- },
- {
- "text": "玉门市",
- "value": "620981000000"
- },
- {
- "text": "敦煌市",
- "value": "620982000000"
- }
- ]
- },
- {
- "text": "庆阳市",
- "value": "621000000000",
- "children": [{
- "text": "市辖区",
- "value": "621001000000"
- },
- {
- "text": "西峰区",
- "value": "621002000000"
- },
- {
- "text": "庆城县",
- "value": "621021000000"
- },
- {
- "text": "环县",
- "value": "621022000000"
- },
- {
- "text": "华池县",
- "value": "621023000000"
- },
- {
- "text": "合水县",
- "value": "621024000000"
- },
- {
- "text": "正宁县",
- "value": "621025000000"
- },
- {
- "text": "宁县",
- "value": "621026000000"
- },
- {
- "text": "镇原县",
- "value": "621027000000"
- }
- ]
- },
- {
- "text": "定西市",
- "value": "621100000000",
- "children": [{
- "text": "市辖区",
- "value": "621101000000"
- },
- {
- "text": "安定区",
- "value": "621102000000"
- },
- {
- "text": "通渭县",
- "value": "621121000000"
- },
- {
- "text": "陇西县",
- "value": "621122000000"
- },
- {
- "text": "渭源县",
- "value": "621123000000"
- },
- {
- "text": "临洮县",
- "value": "621124000000"
- },
- {
- "text": "漳县",
- "value": "621125000000"
- },
- {
- "text": "岷县",
- "value": "621126000000"
- }
- ]
- },
- {
- "text": "陇南市",
- "value": "621200000000",
- "children": [{
- "text": "市辖区",
- "value": "621201000000"
- },
- {
- "text": "武都区",
- "value": "621202000000"
- },
- {
- "text": "成县",
- "value": "621221000000"
- },
- {
- "text": "文县",
- "value": "621222000000"
- },
- {
- "text": "宕昌县",
- "value": "621223000000"
- },
- {
- "text": "康县",
- "value": "621224000000"
- },
- {
- "text": "西和县",
- "value": "621225000000"
- },
- {
- "text": "礼县",
- "value": "621226000000"
- },
- {
- "text": "徽县",
- "value": "621227000000"
- },
- {
- "text": "两当县",
- "value": "621228000000"
- }
- ]
- },
- {
- "text": "临夏回族自治州",
- "value": "622900000000",
- "children": [{
- "text": "临夏市",
- "value": "622901000000"
- },
- {
- "text": "临夏县",
- "value": "622921000000"
- },
- {
- "text": "康乐县",
- "value": "622922000000"
- },
- {
- "text": "永靖县",
- "value": "622923000000"
- },
- {
- "text": "广河县",
- "value": "622924000000"
- },
- {
- "text": "和政县",
- "value": "622925000000"
- },
- {
- "text": "东乡族自治县",
- "value": "622926000000"
- },
- {
- "text": "积石山保安族东乡族撒拉族自治县",
- "value": "622927000000"
- }
- ]
- },
- {
- "text": "甘南藏族自治州",
- "value": "623000000000",
- "children": [{
- "text": "合作市",
- "value": "623001000000"
- },
- {
- "text": "临潭县",
- "value": "623021000000"
- },
- {
- "text": "卓尼县",
- "value": "623022000000"
- },
- {
- "text": "舟曲县",
- "value": "623023000000"
- },
- {
- "text": "迭部县",
- "value": "623024000000"
- },
- {
- "text": "玛曲县",
- "value": "623025000000"
- },
- {
- "text": "碌曲县",
- "value": "623026000000"
- },
- {
- "text": "夏河县",
- "value": "623027000000"
- }
- ]
- }
- ]
- },
- {
- "text": "青海省",
- "value": "630000000000",
- "children": [{
- "text": "西宁市",
- "value": "630100000000",
- "children": [{
- "text": "市辖区",
- "value": "630101000000"
- },
- {
- "text": "城东区",
- "value": "630102000000"
- },
- {
- "text": "城中区",
- "value": "630103000000"
- },
- {
- "text": "城西区",
- "value": "630104000000"
- },
- {
- "text": "城北区",
- "value": "630105000000"
- },
- {
- "text": "湟中区",
- "value": "630106000000"
- },
- {
- "text": "大通回族土族自治县",
- "value": "630121000000"
- },
- {
- "text": "湟源县",
- "value": "630123000000"
- }
- ]
- },
- {
- "text": "海东市",
- "value": "630200000000",
- "children": [{
- "text": "乐都区",
- "value": "630202000000"
- },
- {
- "text": "平安区",
- "value": "630203000000"
- },
- {
- "text": "民和回族土族自治县",
- "value": "630222000000"
- },
- {
- "text": "互助土族自治县",
- "value": "630223000000"
- },
- {
- "text": "化隆回族自治县",
- "value": "630224000000"
- },
- {
- "text": "循化撒拉族自治县",
- "value": "630225000000"
- }
- ]
- },
- {
- "text": "海北藏族自治州",
- "value": "632200000000",
- "children": [{
- "text": "门源回族自治县",
- "value": "632221000000"
- },
- {
- "text": "祁连县",
- "value": "632222000000"
- },
- {
- "text": "海晏县",
- "value": "632223000000"
- },
- {
- "text": "刚察县",
- "value": "632224000000"
- }
- ]
- },
- {
- "text": "黄南藏族自治州",
- "value": "632300000000",
- "children": [{
- "text": "同仁县",
- "value": "632321000000"
- },
- {
- "text": "尖扎县",
- "value": "632322000000"
- },
- {
- "text": "泽库县",
- "value": "632323000000"
- },
- {
- "text": "河南蒙古族自治县",
- "value": "632324000000"
- }
- ]
- },
- {
- "text": "海南藏族自治州",
- "value": "632500000000",
- "children": [{
- "text": "共和县",
- "value": "632521000000"
- },
- {
- "text": "同德县",
- "value": "632522000000"
- },
- {
- "text": "贵德县",
- "value": "632523000000"
- },
- {
- "text": "兴海县",
- "value": "632524000000"
- },
- {
- "text": "贵南县",
- "value": "632525000000"
- }
- ]
- },
- {
- "text": "果洛藏族自治州",
- "value": "632600000000",
- "children": [{
- "text": "玛沁县",
- "value": "632621000000"
- },
- {
- "text": "班玛县",
- "value": "632622000000"
- },
- {
- "text": "甘德县",
- "value": "632623000000"
- },
- {
- "text": "达日县",
- "value": "632624000000"
- },
- {
- "text": "久治县",
- "value": "632625000000"
- },
- {
- "text": "玛多县",
- "value": "632626000000"
- }
- ]
- },
- {
- "text": "玉树藏族自治州",
- "value": "632700000000",
- "children": [{
- "text": "玉树市",
- "value": "632701000000"
- },
- {
- "text": "杂多县",
- "value": "632722000000"
- },
- {
- "text": "称多县",
- "value": "632723000000"
- },
- {
- "text": "治多县",
- "value": "632724000000"
- },
- {
- "text": "囊谦县",
- "value": "632725000000"
- },
- {
- "text": "曲麻莱县",
- "value": "632726000000"
- }
- ]
- },
- {
- "text": "海西蒙古族藏族自治州",
- "value": "632800000000",
- "children": [{
- "text": "格尔木市",
- "value": "632801000000"
- },
- {
- "text": "德令哈市",
- "value": "632802000000"
- },
- {
- "text": "茫崖市",
- "value": "632803000000"
- },
- {
- "text": "乌兰县",
- "value": "632821000000"
- },
- {
- "text": "都兰县",
- "value": "632822000000"
- },
- {
- "text": "天峻县",
- "value": "632823000000"
- },
- {
- "text": "大柴旦行政委员会",
- "value": "632857000000"
- }
- ]
- }
- ]
- },
- {
- "text": "宁夏回族自治区",
- "value": "640000000000",
- "children": [{
- "text": "银川市",
- "value": "640100000000",
- "children": [{
- "text": "市辖区",
- "value": "640101000000"
- },
- {
- "text": "兴庆区",
- "value": "640104000000"
- },
- {
- "text": "西夏区",
- "value": "640105000000"
- },
- {
- "text": "金凤区",
- "value": "640106000000"
- },
- {
- "text": "永宁县",
- "value": "640121000000"
- },
- {
- "text": "贺兰县",
- "value": "640122000000"
- },
- {
- "text": "灵武市",
- "value": "640181000000"
- }
- ]
- },
- {
- "text": "石嘴山市",
- "value": "640200000000",
- "children": [{
- "text": "市辖区",
- "value": "640201000000"
- },
- {
- "text": "大武口区",
- "value": "640202000000"
- },
- {
- "text": "惠农区",
- "value": "640205000000"
- },
- {
- "text": "平罗县",
- "value": "640221000000"
- }
- ]
- },
- {
- "text": "吴忠市",
- "value": "640300000000",
- "children": [{
- "text": "市辖区",
- "value": "640301000000"
- },
- {
- "text": "利通区",
- "value": "640302000000"
- },
- {
- "text": "红寺堡区",
- "value": "640303000000"
- },
- {
- "text": "盐池县",
- "value": "640323000000"
- },
- {
- "text": "同心县",
- "value": "640324000000"
- },
- {
- "text": "青铜峡市",
- "value": "640381000000"
- }
- ]
- },
- {
- "text": "固原市",
- "value": "640400000000",
- "children": [{
- "text": "市辖区",
- "value": "640401000000"
- },
- {
- "text": "原州区",
- "value": "640402000000"
- },
- {
- "text": "西吉县",
- "value": "640422000000"
- },
- {
- "text": "隆德县",
- "value": "640423000000"
- },
- {
- "text": "泾源县",
- "value": "640424000000"
- },
- {
- "text": "彭阳县",
- "value": "640425000000"
- }
- ]
- },
- {
- "text": "中卫市",
- "value": "640500000000",
- "children": [{
- "text": "市辖区",
- "value": "640501000000"
- },
- {
- "text": "沙坡头区",
- "value": "640502000000"
- },
- {
- "text": "中宁县",
- "value": "640521000000"
- },
- {
- "text": "海原县",
- "value": "640522000000"
- }
- ]
- }
- ]
- },
- {
- "text": "新疆维吾尔自治区",
- "value": "650000000000",
- "children": [{
- "text": "乌鲁木齐市",
- "value": "650100000000",
- "children": [{
- "text": "市辖区",
- "value": "650101000000"
- },
- {
- "text": "天山区",
- "value": "650102000000"
- },
- {
- "text": "沙依巴克区",
- "value": "650103000000"
- },
- {
- "text": "新市区",
- "value": "650104000000"
- },
- {
- "text": "水磨沟区",
- "value": "650105000000"
- },
- {
- "text": "头屯河区",
- "value": "650106000000"
- },
- {
- "text": "达坂城区",
- "value": "650107000000"
- },
- {
- "text": "米东区",
- "value": "650109000000"
- },
- {
- "text": "乌鲁木齐县",
- "value": "650121000000"
- }
- ]
- },
- {
- "text": "克拉玛依市",
- "value": "650200000000",
- "children": [{
- "text": "市辖区",
- "value": "650201000000"
- },
- {
- "text": "独山子区",
- "value": "650202000000"
- },
- {
- "text": "克拉玛依区",
- "value": "650203000000"
- },
- {
- "text": "白碱滩区",
- "value": "650204000000"
- },
- {
- "text": "乌尔禾区",
- "value": "650205000000"
- }
- ]
- },
- {
- "text": "吐鲁番市",
- "value": "650400000000",
- "children": [{
- "text": "高昌区",
- "value": "650402000000"
- },
- {
- "text": "鄯善县",
- "value": "650421000000"
- },
- {
- "text": "托克逊县",
- "value": "650422000000"
- }
- ]
- },
- {
- "text": "哈密市",
- "value": "650500000000",
- "children": [{
- "text": "伊州区",
- "value": "650502000000"
- },
- {
- "text": "巴里坤哈萨克自治县",
- "value": "650521000000"
- },
- {
- "text": "伊吾县",
- "value": "650522000000"
- }
- ]
- },
- {
- "text": "昌吉回族自治州",
- "value": "652300000000",
- "children": [{
- "text": "昌吉市",
- "value": "652301000000"
- },
- {
- "text": "阜康市",
- "value": "652302000000"
- },
- {
- "text": "呼图壁县",
- "value": "652323000000"
- },
- {
- "text": "玛纳斯县",
- "value": "652324000000"
- },
- {
- "text": "奇台县",
- "value": "652325000000"
- },
- {
- "text": "吉木萨尔县",
- "value": "652327000000"
- },
- {
- "text": "木垒哈萨克自治县",
- "value": "652328000000"
- }
- ]
- },
- {
- "text": "博尔塔拉蒙古自治州",
- "value": "652700000000",
- "children": [{
- "text": "博乐市",
- "value": "652701000000"
- },
- {
- "text": "阿拉山口市",
- "value": "652702000000"
- },
- {
- "text": "精河县",
- "value": "652722000000"
- },
- {
- "text": "温泉县",
- "value": "652723000000"
- }
- ]
- },
- {
- "text": "巴音郭楞蒙古自治州",
- "value": "652800000000",
- "children": [{
- "text": "库尔勒市",
- "value": "652801000000"
- },
- {
- "text": "轮台县",
- "value": "652822000000"
- },
- {
- "text": "尉犁县",
- "value": "652823000000"
- },
- {
- "text": "若羌县",
- "value": "652824000000"
- },
- {
- "text": "且末县",
- "value": "652825000000"
- },
- {
- "text": "焉耆回族自治县",
- "value": "652826000000"
- },
- {
- "text": "和静县",
- "value": "652827000000"
- },
- {
- "text": "和硕县",
- "value": "652828000000"
- },
- {
- "text": "博湖县",
- "value": "652829000000"
- },
- {
- "text": "库尔勒经济技术开发区",
- "value": "652871000000"
- }
- ]
- },
- {
- "text": "阿克苏地区",
- "value": "652900000000",
- "children": [{
- "text": "阿克苏市",
- "value": "652901000000"
- },
- {
- "text": "库车市",
- "value": "652902000000"
- },
- {
- "text": "温宿县",
- "value": "652922000000"
- },
- {
- "text": "沙雅县",
- "value": "652924000000"
- },
- {
- "text": "新和县",
- "value": "652925000000"
- },
- {
- "text": "拜城县",
- "value": "652926000000"
- },
- {
- "text": "乌什县",
- "value": "652927000000"
- },
- {
- "text": "阿瓦提县",
- "value": "652928000000"
- },
- {
- "text": "柯坪县",
- "value": "652929000000"
- }
- ]
- },
- {
- "text": "克孜勒苏柯尔克孜自治州",
- "value": "653000000000",
- "children": [{
- "text": "阿图什市",
- "value": "653001000000"
- },
- {
- "text": "阿克陶县",
- "value": "653022000000"
- },
- {
- "text": "阿合奇县",
- "value": "653023000000"
- },
- {
- "text": "乌恰县",
- "value": "653024000000"
- }
- ]
- },
- {
- "text": "喀什地区",
- "value": "653100000000",
- "children": [{
- "text": "喀什市",
- "value": "653101000000"
- },
- {
- "text": "疏附县",
- "value": "653121000000"
- },
- {
- "text": "疏勒县",
- "value": "653122000000"
- },
- {
- "text": "英吉沙县",
- "value": "653123000000"
- },
- {
- "text": "泽普县",
- "value": "653124000000"
- },
- {
- "text": "莎车县",
- "value": "653125000000"
- },
- {
- "text": "叶城县",
- "value": "653126000000"
- },
- {
- "text": "麦盖提县",
- "value": "653127000000"
- },
- {
- "text": "岳普湖县",
- "value": "653128000000"
- },
- {
- "text": "伽师县",
- "value": "653129000000"
- },
- {
- "text": "巴楚县",
- "value": "653130000000"
- },
- {
- "text": "塔什库尔干塔吉克自治县",
- "value": "653131000000"
- }
- ]
- },
- {
- "text": "和田地区",
- "value": "653200000000",
- "children": [{
- "text": "和田市",
- "value": "653201000000"
- },
- {
- "text": "和田县",
- "value": "653221000000"
- },
- {
- "text": "墨玉县",
- "value": "653222000000"
- },
- {
- "text": "皮山县",
- "value": "653223000000"
- },
- {
- "text": "洛浦县",
- "value": "653224000000"
- },
- {
- "text": "策勒县",
- "value": "653225000000"
- },
- {
- "text": "于田县",
- "value": "653226000000"
- },
- {
- "text": "民丰县",
- "value": "653227000000"
- }
- ]
- },
- {
- "text": "伊犁哈萨克自治州",
- "value": "654000000000",
- "children": [{
- "text": "伊宁市",
- "value": "654002000000"
- },
- {
- "text": "奎屯市",
- "value": "654003000000"
- },
- {
- "text": "霍尔果斯市",
- "value": "654004000000"
- },
- {
- "text": "伊宁县",
- "value": "654021000000"
- },
- {
- "text": "察布查尔锡伯自治县",
- "value": "654022000000"
- },
- {
- "text": "霍城县",
- "value": "654023000000"
- },
- {
- "text": "巩留县",
- "value": "654024000000"
- },
- {
- "text": "新源县",
- "value": "654025000000"
- },
- {
- "text": "昭苏县",
- "value": "654026000000"
- },
- {
- "text": "特克斯县",
- "value": "654027000000"
- },
- {
- "text": "尼勒克县",
- "value": "654028000000"
- }
- ]
- },
- {
- "text": "塔城地区",
- "value": "654200000000",
- "children": [{
- "text": "塔城市",
- "value": "654201000000"
- },
- {
- "text": "乌苏市",
- "value": "654202000000"
- },
- {
- "text": "额敏县",
- "value": "654221000000"
- },
- {
- "text": "沙湾县",
- "value": "654223000000"
- },
- {
- "text": "托里县",
- "value": "654224000000"
- },
- {
- "text": "裕民县",
- "value": "654225000000"
- },
- {
- "text": "和布克赛尔蒙古自治县",
- "value": "654226000000"
- }
- ]
- },
- {
- "text": "阿勒泰地区",
- "value": "654300000000",
- "children": [{
- "text": "阿勒泰市",
- "value": "654301000000"
- },
- {
- "text": "布尔津县",
- "value": "654321000000"
- },
- {
- "text": "富蕴县",
- "value": "654322000000"
- },
- {
- "text": "福海县",
- "value": "654323000000"
- },
- {
- "text": "哈巴河县",
- "value": "654324000000"
- },
- {
- "text": "青河县",
- "value": "654325000000"
- },
- {
- "text": "吉木乃县",
- "value": "654326000000"
- }
- ]
- },
- {
- "text": "自治区直辖县级行政区划",
- "value": "659000000000",
- "children": [{
- "text": "石河子市",
- "value": "659001000000"
- },
- {
- "text": "阿拉尔市",
- "value": "659002000000"
- },
- {
- "text": "图木舒克市",
- "value": "659003000000"
- },
- {
- "text": "五家渠市",
- "value": "659004000000"
- },
- {
- "text": "北屯市",
- "value": "659005000000"
- },
- {
- "text": "铁门关市",
- "value": "659006000000"
- },
- {
- "text": "双河市",
- "value": "659007000000"
- },
- {
- "text": "可克达拉市",
- "value": "659008000000"
- },
- {
- "text": "昆玉市",
- "value": "659009000000"
- },
- {
- "text": "胡杨河市",
- "value": "659010000000"
- }
- ]
- }
- ]
- }
-]
\ No newline at end of file
diff --git a/pages/order/product-paysuccess/product-paysuccess.vue b/pages/order/product-paysuccess/product-paysuccess.vue
index b553de7..5e54e6b 100644
--- a/pages/order/product-paysuccess/product-paysuccess.vue
+++ b/pages/order/product-paysuccess/product-paysuccess.vue
@@ -7,7 +7,7 @@
/>
{{ stateObject.msg }}
- 请于15分钟内付款,超时订单将自动关闭
+ {{ stateObject.tips }}
@@ -61,7 +61,7 @@
订单编号:
-
+
复制
{{ orderObject.orderNumber }}
@@ -81,9 +81,9 @@
物流单号:
{{ orderObject.trackingNumber }}
-
+
{{ orderObject.totalAmount }}
-
-
- {{ bottomBtn }}
+
+ {{ bottomBtn }}
+
+
+ 确认收货
加入购物车
@@ -91,14 +92,14 @@ const goodObject = ref({}) //商品对象
const idInfo = ref(0) //发送到下一页的商品id
const userInfo = ref({}) //用户信息
const labelList = ref([]) //标签
-const imgArr = ref([])
+const imgArr = ref([]) //商品图片数组
+const coupon = ref(0) //当前商品可用的优惠卷
//转换上一页面传来的商品
onLoad((options) => {
getProduct(JSON.parse(options.gid)) //页面加载的时候获取商品信息
})
onShow(()=>{
userInfo.value = wx.getStorageSync('userInfo') //获取用户信息
- console.log('商品对象--->',goodObject.value)
})
onMounted(()=>{
emitter.on('close',()=>{ //将关闭弹窗方法传入组件
@@ -115,7 +116,7 @@ const getProduct = async (gid) =>{ //根据商品获取商品信息
cookie: wx.getStorageSync('cookie')
}
})
- // console.log('请求请求--->',res.data);
+ console.log('请求请求--->',res.data);
if(res.data.code === 1) {
goodObject.value = res.data.data
imgArr.value = res.data.data.goodImg.split(';') //将后端传来的图片字符串转为图片数组
@@ -154,9 +155,20 @@ const getFonts =()=>{
}
})
}
+//点击查看图片详情方法
+const previewImage = (index) => {
+ console.log(index);
+ uni.previewImage({
+ current: index,
+ urls: imgArr.value
+ })
+}
\ No newline at end of file
diff --git a/pages/store-home/main/main.vue b/pages/store-home/main/main.vue
index e65e438..c4f7f59 100644
--- a/pages/store-home/main/main.vue
+++ b/pages/store-home/main/main.vue
@@ -47,7 +47,7 @@
¥{{ item.price }}
+ src="https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FRcPadqFv-add.png" @click.stop />
@@ -129,8 +129,7 @@ const changeTypes = async (item , index) =>{
const getBoxStyle = (index) => ({
backgroundColor: currentColor.value === index ? 'brown' : '#fffef8'
});
-
-
+//跳转商品详情
const goToProduct = (item) => {
uni.navigateTo({
url: '../../../pages/store-home/ProductDetails/ProductDetails?gid=' + JSON.stringify(item.id)
diff --git a/pages/store-home/main/testMain.vue b/pages/store-home/main/testMain.vue
index deae15f..20577f8 100644
--- a/pages/store-home/main/testMain.vue
+++ b/pages/store-home/main/testMain.vue
@@ -1,72 +1,91 @@
-
+
商品
- “梅花簪子”
+
-
-
-
-
- 发簪
-
+
+
+
+
+
+
+ {{ item.name }}
+
+
+
-
- 发
- 簪
-
-
-
+
+
+
+
-
- 琉璃发体验包
- 非遗材料包,匠心独运
- ¥750
+
+ {{ item.name }}
+ {{ item.intro }}
+ ¥{{ item.price }}
+
+ {{ product_type.type }}
diff --git a/pages/workshop/component/testTimePopUp.vue b/pages/workshop/component/testTimePopUp.vue
new file mode 100644
index 0000000..1471f9f
--- /dev/null
+++ b/pages/workshop/component/testTimePopUp.vue
@@ -0,0 +1,418 @@
+
+
+
+
+
+
+
+
+ ¥
+ {{ productInfo.price }}
+
+ 请选择
+
+ 场次
+
+
+
+
+
+
+
+ 参加日期:2024年11月
+ 当前预约人数:10
+
+
+
+ 选择预约时间
+
+
+
+
+ 今天12-09
+
+
+
+
+
+
+
+
+ 10:00-12:00
+ 可预约
+
+
+
+ 12:00-14:00
+ 可预约
+
+
+ 可预约
+
+ 14:00-16:00
+
+
+
+
+ 16:00-18:00
+ 可预约
+
+
+
+
+ 预约时间
+
+ 2024-12-09
+ 暂未选择
+
+
+
+
+ 购买须知:本次课程活动最少需要到
+ 达5人才能进行授课
+
+
+
+
+
+ 加入购物车
+
+
+
+
+
+
+
+
+
+
+
diff --git a/pages/workshop/component/timePopUp.vue b/pages/workshop/component/timePopUp.vue
index e1fd091..5aa1866 100644
--- a/pages/workshop/component/timePopUp.vue
+++ b/pages/workshop/component/timePopUp.vue
@@ -1,114 +1,147 @@
-
-
-
-
-
-
-
- ¥
- {{ productInfo.price }}
-
- 请选择
-
- 场次
-
-
-
-
-
-
-
- 参加日期:2024年11月
- 当前预约人数:10
-
-
-
- 选择预约时间
-
-
-
-
- 今天12-09
-
-
-
-
-
-
-
-
- 10:00-12:00
- 可预约
-
-
-
- 12:00-14:00
- 可预约
-
-
- 可预约
-
- 14:00-16:00
-
-
-
-
- 16:00-18:00
- 可预约
-
-
-
-
- 预约时间
-
- 2024-12-09
- 暂未选择
-
-
-
-
- 购买须知:本次课程活动最少需要到
- 达5人才能进行授课
-
-
-
-
-
- 加入购物车
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ ¥
+ {{ productInfo.price }}
+
+ 请选择
+ 最大人数:0
+ 场次
+
+
+
+
+
+
+ {{ classNum }}
+
+
+
+
+
+ 参加日期:{{ selected.date }}
+ 当前预约人数:10
+
+
+
+ 选择预约时间
+
+
+
+
+ {{ weekDay(item.specificDate) }}{{ item.specificDate.substring(5,10) }}
+
+
+
+
+
+
+
+
+
+
+ {{ item.timeSlot }}
+ 可预约
+
+
+
+
+
+
+ {{ item.timeSlot }}
+
+ 可预约
+
+
+
+
+
+ 预约时间
+ {{ selected.date }} {{ selected.time }}
+
+
+
+
+ 购买须知:本次课程活动最少需要到达5人才
+ 能进行授课
+
+
+
+ 加入购物车
+
+
+
+
@@ -130,46 +189,53 @@ const getProduct = async ()=>{
.ml-13 {
margin-left: 24.38rpx;
}
-.mt-5 {
- margin-top: 9.38rpx;
+.mt-63 {
+ margin-top: 118.13rpx;
+}
+.mt-9 {
+ margin-top: 16.88rpx;
}
.ml-21 {
margin-left: 39.38rpx;
}
.page {
- padding-bottom: 18.75rpx;
+ padding-top: 28.13rpx;
+ background-color: #ffffff;
+ border-radius: 37.5rpx 37.5rpx 0rpx 0rpx;
width: 100%;
overflow-y: auto;
overflow-x: hidden;
height: 100%;
}
-.section {
- padding: 28.13rpx 0;
- background-color: #ffffff;
- border-radius: 37.5rpx 37.5rpx 0rpx 0rpx;
-}
.group {
+ padding-bottom: 9.38rpx;
+}
+.group_2 {
padding: 0 30rpx;
}
-.image {
+.group_3 {
+ margin-bottom: 5.01rpx;
+}
+.image-wrapper {
border-radius: 5.63rpx;
+ // background-image: url('https://ide.code.fun/api/image?token=677b3b47797f850011f57419&name=f41b64b57071affd8eecfaa15a455af2.png');
+ background-size: 100% 100%;
+ background-repeat: no-repeat;
width: 195rpx;
height: 204.38rpx;
}
-.group_2 {
+.group_5 {
margin-bottom: 5.29rpx;
padding-bottom: 28.86rpx;
width: 157.8rpx;
}
-.group_3 {
+.group_6 {
margin-left: 17.51rpx;
line-height: 29.7rpx;
}
.font {
font-size: 37.5rpx;
font-family: FZSongKeBenXiuKaiS-R-GB;
- line-height: 45rpx;
- color: #323232;
}
.text_2 {
color: #c35c5d;
@@ -200,31 +266,57 @@ const getProduct = async ()=>{
right: 0;
bottom: 28.03rpx;
}
+.group_4 {
+ margin-top: 5.63rpx;
+ width: 176.25rpx;
+}
.image_2 {
margin-right: 20.63rpx;
- margin-top: 5.63rpx;
width: 37.5rpx;
height: 37.5rpx;
}
-.section_2 {
+.image_3 {
+ border-radius: 9.38rpx 0rpx 0rpx 9.38rpx;
+ width: 45.21rpx;
+ height: 48.13rpx;
+}
+.text-wrapper {
+ padding: 14.74rpx 0 14.66rpx;
+ background-color: #ffffff;
+ width: 58.41rpx;
+ height: 48.13rpx;
+}
+.text_4 {
+ color: #323232;
+ font-size: 26.25rpx;
+ font-family: Open Sans;
+ line-height: 18.73rpx;
+}
+.image_4 {
+ border-radius: 0rpx 9.38rpx 9.38rpx 0rpx;
+ width: 45.21rpx;
+ height: 48.13rpx;
+}
+.section {
padding: 30.53rpx 21.86rpx 30.36rpx;
background-color: #ffffff;
border-radius: 28.13rpx;
}
-.text_4 {
+.text_5 {
color: #000000;
line-height: 36.62rpx;
}
-.text_5 {
+.text_6 {
margin-right: 16.14rpx;
line-height: 25.43rpx;
}
-.group_4 {
- padding: 0 20.63rpx 35.63rpx;
+.divider {
+ background-color: #d9d9d9;
+ height: 1.88rpx;
}
-.group_5 {
- padding: 31.76rpx 7.5rpx 0;
- border-top: solid 1.88rpx #d9d9d9;
+.view {
+ margin-left: 20.63rpx;
+ margin-right: 26.27rpx;
}
.font_3 {
font-size: 30rpx;
@@ -232,51 +324,78 @@ const getProduct = async ()=>{
line-height: 27.07rpx;
color: #000000;
}
-.text_6 {
+.text_7 {
+ margin-left: 29.31rpx;
+ margin-top: 29.89rpx;
line-height: 28.01rpx;
}
-.view {
- margin-right: 7.5rpx;
- padding: 35.98rpx 0 35.87rpx 20rpx;
- background-color: #faddde;
- border-radius: 18.75rpx;
+.section_1 {
+ padding: 30rpx 0;
+ background-color: #FBDEDF;
+ border-radius: 10rpx;
+ align-self: stretch;
+ margin: 26.47rpx 28.13rpx 0 28.13rpx;
}
-.group_10 {
- // margin-left: 11.78rpx;
+.group_1 {
+ margin-left: 11.78rpx;
margin-right: 14.83rpx;
}
.font_4 {
- font-size: 30rpx;
+ // font-size: 30rpx;
font-family: FZSongKeBenXiuKaiS-R-GB;
line-height: 27.07rpx;
- color: #c35c5d;
+ color: #000000;
}
-.text_7 {
- // border: 1px solid red;
- margin-right: 20rpx;
+.text_8 {
line-height: 27.3rpx;
+ margin-left: 30rpx;
}
.grid {
- margin-top: 75rpx;
+ margin-top: 60rpx;
width: 605.63rpx;
+}
+.list_2 {
height: 228.75rpx;
+ display: grid;
+ grid-template-rows: repeat(2, minmax(0, 1fr));
+ grid-template-columns: repeat(2, minmax(0, 1fr));
+ row-gap: 54rpx;
+ column-gap: 102rpx;
+ overflow-y: auto;
+ overflow-x: hidden;
}
-.grid-item {
- background-color: #fbdedf;
- border-radius: 18.75rpx;
- background-image: url('https://ide.code.fun/api/image?token=67582be6797f850011f1edb7&name=5f9759dd4fc5b6049913f513ad7248f2.png');
- background-size: 100% 100%;
- background-repeat: no-repeat;
- width: 253.13rpx;
+//处理时间段数组长度小于2的情况
+.list_temp {
+ height: 105.75rpx;
+ display: grid;
+ grid-template-rows: repeat(2, minmax(0, 1fr));
+ grid-template-columns: repeat(2, minmax(0, 1fr));
+ row-gap: 54rpx;
+ column-gap: 102rpx;
+ overflow-y: auto;
+ overflow-x: hidden;
}
-.pos_1 {
- position: absolute;
- left: 3.75rpx;
- top: 0;
+.pos_temp3 {
+ position: absolute;
+ left: 50%;
+ top: 52.99rpx;
+ transform: translateX(-50%);
}
-.section_4 {
- background-image: url('https://ide.code.fun/api/image?token=67582be6797f850011f1edb7&name=5f9759dd4fc5b6049913f513ad7248f2.png');
- background-size: 100% 100%;
+.pos_temp5 {
+ position: absolute;
+ left: 74.53rpx;
+ bottom: -14.94rpx;
+}
+.group_temp7 {
+ margin-top: 97.5rpx;
+ padding: 0 22.5rpx;
+}
+//到这里结束
+.section_3 {
+ background-image: url('https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FkDkwyiFc-border.png');
+ background-color: #ffffff;
+ border-radius: 26rpx;
+ background-size: 100% 100%;
background-repeat: no-repeat;
height: 90rpx;
}
@@ -286,7 +405,7 @@ const getProduct = async ()=>{
line-height: 20.04rpx;
color: #000000;
}
-.text_11 {
+.text_12 {
width: 150rpx;
}
.pos_3 {
@@ -300,116 +419,59 @@ const getProduct = async ()=>{
left: 74.53rpx;
bottom: 12.06rpx;
}
-.grid-item_2 {
- background-color: #ffffff;
- border-radius: 18.75rpx;
- background-image: url('https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FVQSWQJrq-selectbox.png');
- background-size: 100% 100%;
- background-repeat: no-repeat;
- width: 253.13rpx;
+.group_7 {
+ margin-top: 60rpx;
+ padding: 0 22.5rpx;
}
-.pos_14 {
- position: absolute;
- right: 0;
- top: 0;
-}
-.pos_4 {
- position: absolute;
- right: 42.83rpx;
- top: 20.74rpx;
-}
-.pos_6 {
- position: absolute;
- left: 50%;
- bottom: 13.93rpx;
- transform: translateX(-50%);
-}
-.grid-item_3 {
- padding: 54.62rpx 0 8.31rpx;
- background-color: #ffffff;
- border-radius: 18.75rpx;
- width: 253.13rpx;
-}
-.pos_15 {
- position: absolute;
- left: 0;
- top: 138.75rpx;
-}
-.text-wrapper {
- padding: 22.61rpx 0 47.34rpx;
- background-image: url('https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FVQSWQJrq-selectbox.png');
- background-size: 100% 100%;
- background-repeat: no-repeat;
- width: 256.88rpx;
-}
-.pos_7 {
- position: absolute;
- left: 3.75rpx;
- right: -7.5rpx;
- top: 0;
-}
-.pos_11 {
- position: absolute;
- right: 0;
- top: 138.75rpx;
-}
-.pos_8 {
- position: absolute;
- right: 39.67rpx;
- top: 18.86rpx;
-}
-.pos_9 {
- position: absolute;
- left: 50%;
- bottom: 8.31rpx;
- transform: translateX(-50%);
-}
-.group_6 {
- margin-top: 97.5rpx;
- padding-bottom: 9.38rpx;
- border-bottom: solid 1.88rpx #d9d9d9;
-}
-.section_5 {
- margin-left: 22.5rpx;
- margin-right: 11.27rpx;
- padding: 12.66rpx 14.42rpx 27.9rpx;
+.section_4 {
+ margin-left: 20.63rpx;
+ margin-right: 9.38rpx;
+ // padding: 12.66rpx 13.54rpx 76.65rpx 16.29rpx;
background-color: #ffffff;
}
-.text_12 {
+.text_13 {
line-height: 28.01rpx;
}
-.group_7 {
- margin-right: 13.74rpx;
+.text_14 {
+ line-height: 28.84rpx;
}
-.section_6 {
- margin: 43.13rpx 46.88rpx 0 41.25rpx;
- padding: 25.28rpx 6.62rpx 38.19rpx 12.13rpx;
+.section_5 {
+ margin-top: 54.38rpx;
+ padding: 32.23rpx 10.56rpx 91.29rpx 17.57rpx;
background-color: #fff2f2f5;
border-radius: 18.75rpx;
}
-.section_7 {
- position: fixed;
- left: 0;
- right: 0;
- bottom: 0;
- // border: 1px solid red;
- margin-left: 7.5rpx;
- margin-right: 5.63rpx;
+.font_6 {
+ font-size: 30rpx;
+ font-family: FZSongKeBenXiuKaiS-R-GB;
+ line-height: 35.63rpx;
+ color: #323232;
+}
+.text_1 {
+ margin-left: 2.12rpx;
+}
+.section_6 {
+ margin-left: 15rpx;
+ margin-top: 88.13rpx;
padding: 16.88rpx 0;
background-color: #ffffff;
}
-.section_8 {
+.section_7 {
padding: 26.14rpx 0 25.07rpx;
background-color: #fbdedf;
border-radius: 46.88rpx;
width: 618.75rpx;
}
-.text_13 {
- margin-left: 240.94rpx;
+.text_15 {
+ // margin-left: 260.94rpx;
+ margin: 0 auto;
line-height: 27.54rpx;
}
-.text_14 {
+.text_16 {
line-height: 27.54rpx;
}
+.text_8:first-child {
+ margin-left: 0rpx;
+}
@import url(../../../common/css/global.css);
diff --git a/pages/workshop/productmain/productmain.vue b/pages/workshop/productmain/productmain.vue
index 292db9e..4cfccda 100644
--- a/pages/workshop/productmain/productmain.vue
+++ b/pages/workshop/productmain/productmain.vue
@@ -18,8 +18,8 @@
- 最近可预约时间:2024.11.11
- 9:30 - 10:30
+ 最近可预约时间:{{ specificDate }}
+ {{ specificTime }}
@@ -81,6 +81,8 @@ const pid = ref(0) //商品id
const cookie = wx.getStorageSync("cookie") //请求头
const productObject = ref({})
const popup = ref(null) //弹窗对象
+const specificDate = ref('') //渲染最近可预约日期
+const specificTime = ref('') //渲染最近可预约时间段
onMounted(()=>{
emitter.on('close',()=>{
close()
@@ -103,6 +105,9 @@ const getProduct = async() =>{
})
if(res.data.code === 1) {
productObject.value = res.data.data
+ specificDate.value = res.data.data.appointmentDateVOList[0].specificDate //最近可预约日期
+ specificTime.value = res.data.data.appointmentDateVOList[0].timePeriodVOList[0].timeSlot //最近可预约时间
+ console.log('商品对象为--->',productObject.value);
} else {
uni.showToast({
icon: 'error',
diff --git a/unpackage/dist/dev/mp-weixin/app.js b/unpackage/dist/dev/mp-weixin/app.js
index 0c35202..d86dadd 100644
--- a/unpackage/dist/dev/mp-weixin/app.js
+++ b/unpackage/dist/dev/mp-weixin/app.js
@@ -24,7 +24,6 @@ if (!Math) {
"./pages/login/login.js";
"./pages/Shopping-cart/component/addProduct.js";
"./pages/mine/OrderDetails/OrderDetails.js";
- "./pages/service/productDetail/productDetail.js";
"./pages/workshop/index/index.js";
"./pages/booking/CostumeDisplay/CostumeDisplay.js";
"./pages/booking/CostumeDetails/CostumeDetails.js";
@@ -34,12 +33,21 @@ if (!Math) {
"./pages/store-home/main/testMain.js";
"./pages/syy.js";
"./pages/order/singleGoodOrder/singleGoodOrder.js";
+ "./pages/Shopping-cart/productmain/testproductmain.js";
+ "./pages/workshop/component/testTimePopUp.js";
+ "./pages/mine/addressList/addressList.js";
}
-const _sfc_main = {};
-function _sfc_render(_ctx, _cache) {
- return {};
-}
-const App = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__file", "D:/微信小程序/课设整合/匠承非遗小程序端/jiangchengfeiyi-xiaochengxu/App.vue"]]);
+const _sfc_main = {
+ __name: "App",
+ setup(__props) {
+ common_vendor.onLaunch(() => {
+ });
+ return (_ctx, _cache) => {
+ return {};
+ };
+ }
+};
+const App = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__file", "D:/微信小程序/课设整合/匠承非遗小程序端/jiangchengfeiyi-xiaochengxu/App.vue"]]);
function createApp() {
const app = common_vendor.createSSRApp(App);
app.use(store_index.pinia);
diff --git a/unpackage/dist/dev/mp-weixin/app.json b/unpackage/dist/dev/mp-weixin/app.json
index c4563ff..1230286 100644
--- a/unpackage/dist/dev/mp-weixin/app.json
+++ b/unpackage/dist/dev/mp-weixin/app.json
@@ -21,7 +21,6 @@
"pages/login/login",
"pages/Shopping-cart/component/addProduct",
"pages/mine/OrderDetails/OrderDetails",
- "pages/service/productDetail/productDetail",
"pages/workshop/index/index",
"pages/booking/CostumeDisplay/CostumeDisplay",
"pages/booking/CostumeDetails/CostumeDetails",
@@ -30,7 +29,10 @@
"pages/workshop/component/timePopUp",
"pages/store-home/main/testMain",
"pages/syy",
- "pages/order/singleGoodOrder/singleGoodOrder"
+ "pages/order/singleGoodOrder/singleGoodOrder",
+ "pages/Shopping-cart/productmain/testproductmain",
+ "pages/workshop/component/testTimePopUp",
+ "pages/mine/addressList/addressList"
],
"window": {
"navigationBarTextStyle": "black",
@@ -47,12 +49,12 @@
"text": "首页"
},
{
- "pagePath": "pages/store-home/main/main",
+ "pagePath": "pages/store-home/main/testMain",
"iconPath": "./static/store.png",
"text": "商城"
},
{
- "pagePath": "pages/Shopping-cart/productmain/productmain",
+ "pagePath": "pages/Shopping-cart/productmain/testproductmain",
"iconPath": "./static/shopcar.png",
"text": "购物车"
},
diff --git a/unpackage/dist/dev/mp-weixin/app.wxss b/unpackage/dist/dev/mp-weixin/app.wxss
index c1b6251..fce47eb 100644
--- a/unpackage/dist/dev/mp-weixin/app.wxss
+++ b/unpackage/dist/dev/mp-weixin/app.wxss
@@ -1 +1,17 @@
+
+/*每个页面公共css */
+/* //设置圆角 */
+checkbox.round .wx-checkbox-input,
+checkbox.round .uni-checkbox-input {
+ border-radius: 100rpx;
+ border: 1px solid #ec6330;
+}
+/* //设置背景色 */
+checkbox.red[checked] .wx-checkbox-input,
+checkbox.red.checked .uni-checkbox-input {
+ background-color: #E79EA1 !important;
+ border-color: #ebebeb !important;
+ color: #ffffff !important;
+}
+/* //元素使用的时候就是使用 round 和 red */
page{--status-bar-height:25px;--top-window-height:0px;--window-top:0px;--window-bottom:0px;--window-left:0px;--window-right:0px;--window-magin:0px}[data-c-h="true"]{display: none !important;}
\ No newline at end of file
diff --git a/unpackage/dist/dev/mp-weixin/common/global.js b/unpackage/dist/dev/mp-weixin/common/global.js
index 3d25558..9855f85 100644
--- a/unpackage/dist/dev/mp-weixin/common/global.js
+++ b/unpackage/dist/dev/mp-weixin/common/global.js
@@ -3,36 +3,53 @@ const stateList = [
{
state: "待支付",
img: "https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FFybMDtHR-dengdaifukuan.png",
- msg: "等待买家付款"
+ msg: "等待买家付款",
+ tips: "请于15分钟内付款,超时订单将自动关闭"
},
{
state: "待发货",
img: "https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FEOzVqolp-fahuo.png",
- msg: "等待卖家发货"
+ msg: "等待卖家发货",
+ tips: "耐心等待工艺品发货~"
+ },
+ {
+ state: "退款中",
+ img: "",
+ msg: "退款审核中",
+ tips: "请君耐心等待退款结果"
},
{
state: "已退款",
img: "https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FlPnvgqCp-yituikuan.png",
- msg: "订单已经退款"
+ msg: "订单已经退款",
+ tips: "希望下次能让君满意"
},
{
state: "待收货",
img: "https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FEOzVqolp-fahuo.png",
- msg: "商品已发货,注意查收"
+ msg: "商品已发货,注意查收",
+ tips: "非遗工艺品马上到手啦,耐心点"
},
{
state: "交易成功",
img: "",
- msg: "订单完成,感谢您的支持"
+ msg: "订单完成,感谢您的支持",
+ tips: "感谢您的支持"
},
{
state: "交易关闭",
img: "https://carbon2.obs.cn-north-4.myhuaweicloud.com:443/feiyi%2Ftest%2F0%2FaHDhacaI-dengdaifukuan.png",
- msg: "您的订单已关闭"
+ msg: "您的订单已关闭",
+ tips: "下次看好了之后再买哦"
}
];
const stateMap = /* @__PURE__ */ new Map();
stateList.forEach((item) => {
stateMap.set(item.state, item);
});
+const weekDay = function(time) {
+ let datelist = ["周日", "周一", "周二", "周三", "周四", "周五", "周六"];
+ return datelist[new Date(time).getDay()];
+};
exports.stateMap = stateMap;
+exports.weekDay = weekDay;
diff --git a/unpackage/dist/dev/mp-weixin/common/vendor.js b/unpackage/dist/dev/mp-weixin/common/vendor.js
index 06f15f0..fbf3327 100644
--- a/unpackage/dist/dev/mp-weixin/common/vendor.js
+++ b/unpackage/dist/dev/mp-weixin/common/vendor.js
@@ -25,22 +25,22 @@ const isOn = (key) => key.charCodeAt(0) === 111 && key.charCodeAt(1) === 110 &&
const isModelListener = (key) => key.startsWith("onUpdate:");
const extend = Object.assign;
const remove = (arr, el) => {
- const i2 = arr.indexOf(el);
- if (i2 > -1) {
- arr.splice(i2, 1);
+ const i = arr.indexOf(el);
+ if (i > -1) {
+ arr.splice(i, 1);
}
};
-const hasOwnProperty$3 = Object.prototype.hasOwnProperty;
-const hasOwn$1 = (val, key) => hasOwnProperty$3.call(val, key);
+const hasOwnProperty$2 = Object.prototype.hasOwnProperty;
+const hasOwn = (val, key) => hasOwnProperty$2.call(val, key);
const isArray$1 = Array.isArray;
const isMap$1 = (val) => toTypeString(val) === "[object Map]";
const isSet = (val) => toTypeString(val) === "[object Set]";
const isFunction$1 = (val) => typeof val === "function";
const isString$1 = (val) => typeof val === "string";
const isSymbol = (val) => typeof val === "symbol";
-const isObject$2 = (val) => val !== null && typeof val === "object";
+const isObject$1 = (val) => val !== null && typeof val === "object";
const isPromise = (val) => {
- return (isObject$2(val) || isFunction$1(val)) && isFunction$1(val.then) && isFunction$1(val.catch);
+ return (isObject$1(val) || isFunction$1(val)) && isFunction$1(val.then) && isFunction$1(val.catch);
};
const objectToString = Object.prototype.toString;
const toTypeString = (value) => objectToString.call(value);
@@ -65,7 +65,7 @@ const cacheStringFunction = (fn) => {
};
const camelizeRE = /-(\w)/g;
const camelize = cacheStringFunction((str) => {
- return str.replace(camelizeRE, (_2, c2) => c2 ? c2.toUpperCase() : "");
+ return str.replace(camelizeRE, (_, c) => c ? c.toUpperCase() : "");
});
const hyphenateRE = /\B([A-Z])/g;
const hyphenate = cacheStringFunction(
@@ -80,8 +80,8 @@ const toHandlerKey = cacheStringFunction((str) => {
});
const hasChanged = (value, oldValue) => !Object.is(value, oldValue);
const invokeArrayFns$1 = (fns, arg) => {
- for (let i2 = 0; i2 < fns.length; i2++) {
- fns[i2](arg);
+ for (let i = 0; i < fns.length; i++) {
+ fns[i](arg);
}
};
const def = (obj, key, value) => {
@@ -102,8 +102,8 @@ const getGlobalThis = () => {
function normalizeStyle(value) {
if (isArray$1(value)) {
const res = {};
- for (let i2 = 0; i2 < value.length; i2++) {
- const item = value[i2];
+ for (let i = 0; i < value.length; i++) {
+ const item = value[i];
const normalized = isString$1(item) ? parseStringStyle(item) : normalizeStyle(item);
if (normalized) {
for (const key in normalized) {
@@ -112,7 +112,7 @@ function normalizeStyle(value) {
}
}
return res;
- } else if (isString$1(value) || isObject$2(value)) {
+ } else if (isString$1(value) || isObject$1(value)) {
return value;
}
}
@@ -134,13 +134,13 @@ function normalizeClass(value) {
if (isString$1(value)) {
res = value;
} else if (isArray$1(value)) {
- for (let i2 = 0; i2 < value.length; i2++) {
- const normalized = normalizeClass(value[i2]);
+ for (let i = 0; i < value.length; i++) {
+ const normalized = normalizeClass(value[i]);
if (normalized) {
res += normalized + " ";
}
}
- } else if (isObject$2(value)) {
+ } else if (isObject$1(value)) {
for (const name2 in value) {
if (value[name2]) {
res += name2 + " ";
@@ -150,7 +150,7 @@ function normalizeClass(value) {
return res.trim();
}
const toDisplayString = (val) => {
- return isString$1(val) ? val : val == null ? "" : isArray$1(val) || isObject$2(val) && (val.toString === objectToString || !isFunction$1(val.toString)) ? JSON.stringify(val, replacer, 2) : String(val);
+ return isString$1(val) ? val : val == null ? "" : isArray$1(val) || isObject$1(val) && (val.toString === objectToString || !isFunction$1(val.toString)) ? JSON.stringify(val, replacer, 2) : String(val);
};
const replacer = (_key, val) => {
if (val && val.__v_isRef) {
@@ -158,8 +158,8 @@ const replacer = (_key, val) => {
} else if (isMap$1(val)) {
return {
[`Map(${val.size})`]: [...val.entries()].reduce(
- (entries, [key, val2], i2) => {
- entries[stringifySymbol(key, i2) + " =>"] = val2;
+ (entries, [key, val2], i) => {
+ entries[stringifySymbol(key, i) + " =>"] = val2;
return entries;
},
{}
@@ -167,18 +167,18 @@ const replacer = (_key, val) => {
};
} else if (isSet(val)) {
return {
- [`Set(${val.size})`]: [...val.values()].map((v2) => stringifySymbol(v2))
+ [`Set(${val.size})`]: [...val.values()].map((v) => stringifySymbol(v))
};
} else if (isSymbol(val)) {
return stringifySymbol(val);
- } else if (isObject$2(val) && !isArray$1(val) && !isPlainObject$1(val)) {
+ } else if (isObject$1(val) && !isArray$1(val) && !isPlainObject$1(val)) {
return String(val);
}
return val;
};
-const stringifySymbol = (v2, i2 = "") => {
+const stringifySymbol = (v, i = "") => {
var _a;
- return isSymbol(v2) ? `Symbol(${(_a = v2.description) != null ? _a : i2})` : v2;
+ return isSymbol(v) ? `Symbol(${(_a = v.description) != null ? _a : i})` : v;
};
const LINEFEED = "\n";
const SLOT_DEFAULT_NAME = "d";
@@ -221,8 +221,8 @@ function addLeadingSlash(str) {
}
const invokeArrayFns = (fns, arg) => {
let ret;
- for (let i2 = 0; i2 < fns.length; i2++) {
- ret = fns[i2](arg);
+ for (let i = 0; i < fns.length; i++) {
+ ret = fns[i](arg);
}
return ret;
};
@@ -362,9 +362,9 @@ const invokeCreateErrorHandler = once((app, createErrorHandler2) => {
return createErrorHandler2(app);
}
});
-const E$1 = function() {
+const E = function() {
};
-E$1.prototype = {
+E.prototype = {
on: function(name2, callback, ctx) {
var e2 = this.e || (this.e = {});
(e2[name2] || (e2[name2] = [])).push({
@@ -385,10 +385,10 @@ E$1.prototype = {
emit: function(name2) {
var data = [].slice.call(arguments, 1);
var evtArr = ((this.e || (this.e = {}))[name2] || []).slice();
- var i2 = 0;
+ var i = 0;
var len = evtArr.length;
- for (i2; i2 < len; i2++) {
- evtArr[i2].fn.apply(evtArr[i2].ctx, data);
+ for (i; i < len; i++) {
+ evtArr[i].fn.apply(evtArr[i].ctx, data);
}
return this;
},
@@ -397,9 +397,9 @@ E$1.prototype = {
var evts = e2[name2];
var liveEvents = [];
if (evts && callback) {
- for (var i2 = evts.length - 1; i2 >= 0; i2--) {
- if (evts[i2].fn === callback || evts[i2].fn._ === callback) {
- evts.splice(i2, 1);
+ for (var i = evts.length - 1; i >= 0; i--) {
+ if (evts[i].fn === callback || evts[i].fn._ === callback) {
+ evts.splice(i, 1);
break;
}
}
@@ -409,97 +409,12 @@ E$1.prototype = {
return this;
}
};
-var E$1$1 = E$1;
-const isObject$1 = (val) => val !== null && typeof val === "object";
-const defaultDelimiters = ["{", "}"];
-class BaseFormatter {
- constructor() {
- this._caches = /* @__PURE__ */ Object.create(null);
- }
- interpolate(message, values, delimiters = defaultDelimiters) {
- if (!values) {
- return [message];
- }
- let tokens = this._caches[message];
- if (!tokens) {
- tokens = parse$2(message, delimiters);
- this._caches[message] = tokens;
- }
- return compile$1(tokens, values);
- }
-}
-const RE_TOKEN_LIST_VALUE = /^(?:\d)+/;
-const RE_TOKEN_NAMED_VALUE = /^(?:\w)+/;
-function parse$2(format2, [startDelimiter, endDelimiter]) {
- const tokens = [];
- let position = 0;
- let text = "";
- while (position < format2.length) {
- let char = format2[position++];
- if (char === startDelimiter) {
- if (text) {
- tokens.push({ type: "text", value: text });
- }
- text = "";
- let sub2 = "";
- char = format2[position++];
- while (char !== void 0 && char !== endDelimiter) {
- sub2 += char;
- char = format2[position++];
- }
- const isClosed = char === endDelimiter;
- const type = RE_TOKEN_LIST_VALUE.test(sub2) ? "list" : isClosed && RE_TOKEN_NAMED_VALUE.test(sub2) ? "named" : "unknown";
- tokens.push({ value: sub2, type });
- } else {
- text += char;
- }
- }
- text && tokens.push({ type: "text", value: text });
- return tokens;
-}
-function compile$1(tokens, values) {
- const compiled = [];
- let index2 = 0;
- const mode = Array.isArray(values) ? "list" : isObject$1(values) ? "named" : "unknown";
- if (mode === "unknown") {
- return compiled;
- }
- while (index2 < tokens.length) {
- const token = tokens[index2];
- switch (token.type) {
- case "text":
- compiled.push(token.value);
- break;
- case "list":
- compiled.push(values[parseInt(token.value, 10)]);
- break;
- case "named":
- if (mode === "named") {
- compiled.push(values[token.value]);
- } else {
- {
- console.warn(`Type of token '${token.type}' and format of value '${mode}' don't match!`);
- }
- }
- break;
- case "unknown":
- {
- console.warn(`Detect 'unknown' type of token!`);
- }
- break;
- }
- index2++;
- }
- return compiled;
-}
+var E$1 = E;
const LOCALE_ZH_HANS = "zh-Hans";
const LOCALE_ZH_HANT = "zh-Hant";
const LOCALE_EN = "en";
const LOCALE_FR = "fr";
const LOCALE_ES = "es";
-const hasOwnProperty$2 = Object.prototype.hasOwnProperty;
-const hasOwn = (val, key) => hasOwnProperty$2.call(val, key);
-const defaultFormatter = new BaseFormatter();
function include(str, parts) {
return !!parts.find((part) => str.indexOf(part) !== -1);
}
@@ -539,161 +454,6 @@ function normalizeLocale(locale, messages) {
return lang;
}
}
-class I18n {
- constructor({ locale, fallbackLocale, messages, watcher, formater: formater2 }) {
- this.locale = LOCALE_EN;
- this.fallbackLocale = LOCALE_EN;
- this.message = {};
- this.messages = {};
- this.watchers = [];
- if (fallbackLocale) {
- this.fallbackLocale = fallbackLocale;
- }
- this.formater = formater2 || defaultFormatter;
- this.messages = messages || {};
- this.setLocale(locale || LOCALE_EN);
- if (watcher) {
- this.watchLocale(watcher);
- }
- }
- setLocale(locale) {
- const oldLocale = this.locale;
- this.locale = normalizeLocale(locale, this.messages) || this.fallbackLocale;
- if (!this.messages[this.locale]) {
- this.messages[this.locale] = {};
- }
- this.message = this.messages[this.locale];
- if (oldLocale !== this.locale) {
- this.watchers.forEach((watcher) => {
- watcher(this.locale, oldLocale);
- });
- }
- }
- getLocale() {
- return this.locale;
- }
- watchLocale(fn) {
- const index2 = this.watchers.push(fn) - 1;
- return () => {
- this.watchers.splice(index2, 1);
- };
- }
- add(locale, message, override = true) {
- const curMessages = this.messages[locale];
- if (curMessages) {
- if (override) {
- Object.assign(curMessages, message);
- } else {
- Object.keys(message).forEach((key) => {
- if (!hasOwn(curMessages, key)) {
- curMessages[key] = message[key];
- }
- });
- }
- } else {
- this.messages[locale] = message;
- }
- }
- f(message, values, delimiters) {
- return this.formater.interpolate(message, values, delimiters).join("");
- }
- t(key, locale, values) {
- let message = this.message;
- if (typeof locale === "string") {
- locale = normalizeLocale(locale, this.messages);
- locale && (message = this.messages[locale]);
- } else {
- values = locale;
- }
- if (!hasOwn(message, key)) {
- console.warn(`Cannot translate the value of keypath ${key}. Use the value of keypath as default.`);
- return key;
- }
- return this.formater.interpolate(message[key], values).join("");
- }
-}
-function watchAppLocale(appVm, i18n) {
- if (appVm.$watchLocale) {
- appVm.$watchLocale((newLocale) => {
- i18n.setLocale(newLocale);
- });
- } else {
- appVm.$watch(() => appVm.$locale, (newLocale) => {
- i18n.setLocale(newLocale);
- });
- }
-}
-function getDefaultLocale() {
- if (typeof index !== "undefined" && index.getLocale) {
- return index.getLocale();
- }
- if (typeof global !== "undefined" && global.getLocale) {
- return global.getLocale();
- }
- return LOCALE_EN;
-}
-function initVueI18n(locale, messages = {}, fallbackLocale, watcher) {
- if (typeof locale !== "string") {
- [locale, messages] = [
- messages,
- locale
- ];
- }
- if (typeof locale !== "string") {
- locale = getDefaultLocale();
- }
- if (typeof fallbackLocale !== "string") {
- fallbackLocale = typeof __uniConfig !== "undefined" && __uniConfig.fallbackLocale || LOCALE_EN;
- }
- const i18n = new I18n({
- locale,
- fallbackLocale,
- messages,
- watcher
- });
- let t2 = (key, values) => {
- if (typeof getApp !== "function") {
- t2 = function(key2, values2) {
- return i18n.t(key2, values2);
- };
- } else {
- let isWatchedAppLocale = false;
- t2 = function(key2, values2) {
- const appVm = getApp().$vm;
- if (appVm) {
- appVm.$locale;
- if (!isWatchedAppLocale) {
- isWatchedAppLocale = true;
- watchAppLocale(appVm, i18n);
- }
- }
- return i18n.t(key2, values2);
- };
- }
- return t2(key, values);
- };
- return {
- i18n,
- f(message, values, delimiters) {
- return i18n.f(message, values, delimiters);
- },
- t(key, values) {
- return t2(key, values);
- },
- add(locale2, message, override = true) {
- return i18n.add(locale2, message, override);
- },
- watch(fn) {
- return i18n.watchLocale(fn);
- },
- getLocale() {
- return i18n.getLocale();
- },
- setLocale(newLocale) {
- return i18n.setLocale(newLocale);
- }
- };
-}
function getBaseSystemInfo() {
return wx.getSystemInfoSync();
}
@@ -705,7 +465,7 @@ function validateProtocol(name2, data, protocol, onFail) {
onFail = validateProtocolFail;
}
for (const key in protocol) {
- const errMsg = validateProp$1(key, data[key], protocol[key], !hasOwn$1(data, key));
+ const errMsg = validateProp$1(key, data[key], protocol[key], !hasOwn(data, key));
if (isString$1(errMsg)) {
onFail(name2, errMsg);
}
@@ -720,11 +480,11 @@ function validateProtocols(name2, args, protocol, onFail) {
}
const len = protocol.length;
const argsLen = args.length;
- for (let i2 = 0; i2 < len; i2++) {
- const opts = protocol[i2];
+ for (let i = 0; i < len; i++) {
+ const opts = protocol[i];
const data = /* @__PURE__ */ Object.create(null);
- if (argsLen > i2) {
- data[opts.name] = args[i2];
+ if (argsLen > i) {
+ data[opts.name] = args[i];
}
validateProtocol(name2, data, { [opts.name]: opts }, onFail);
}
@@ -744,8 +504,8 @@ function validateProp$1(name2, value, prop, isAbsent) {
let isValid = false;
const types = isArray$1(type) ? type : [type];
const expectedTypes = [];
- for (let i2 = 0; i2 < types.length && !isValid; i2++) {
- const { valid, expectedType } = assertType$1(value, types[i2]);
+ for (let i = 0; i < types.length && !isValid; i++) {
+ const { valid, expectedType } = assertType$1(value, types[i]);
expectedTypes.push(expectedType || "");
isValid = valid;
}
@@ -768,7 +528,7 @@ function assertType$1(value, type) {
valid = value instanceof type;
}
} else if (expectedType === "Object") {
- valid = isObject$2(value);
+ valid = isObject$1(value);
} else if (expectedType === "Array") {
valid = isArray$1(value);
} else {
@@ -902,8 +662,8 @@ function wrapperHook(hook, params) {
}
function queue$2(hooks, data, params) {
let promise = false;
- for (let i2 = 0; i2 < hooks.length; i2++) {
- const hook = hooks[i2];
+ for (let i = 0; i < hooks.length; i++) {
+ const hook = hooks[i];
if (promise) {
promise = Promise.resolve(wrapperHook(hook, params));
} else {
@@ -1015,8 +775,8 @@ function formatApiArgs(args, options) {
}
const formatArgs = options.formatArgs;
const keys = Object.keys(formatArgs);
- for (let i2 = 0; i2 < keys.length; i2++) {
- const name2 = keys[i2];
+ for (let i = 0; i < keys.length; i++) {
+ const name2 = keys[i];
const formatterOrDefaultValue = formatArgs[name2];
if (isFunction$1(formatterOrDefaultValue)) {
const errMsg = formatterOrDefaultValue(args[0][name2], params);
@@ -1024,7 +784,7 @@ function formatApiArgs(args, options) {
return errMsg;
}
} else {
- if (!hasOwn$1(params, name2)) {
+ if (!hasOwn(params, name2)) {
params[name2] = formatterOrDefaultValue;
}
}
@@ -1175,9 +935,9 @@ function mergeHook(parentVal, childVal) {
}
function dedupeHooks(hooks) {
const res = [];
- for (let i2 = 0; i2 < hooks.length; i2++) {
- if (res.indexOf(hooks[i2]) === -1) {
- res.push(hooks[i2]);
+ for (let i = 0; i < hooks.length; i++) {
+ if (res.indexOf(hooks[i]) === -1) {
+ res.push(hooks[i]);
}
}
return res;
@@ -1235,7 +995,7 @@ const EmitProtocol = [
required: true
}
];
-const emitter = new E$1$1();
+const emitter = new E$1();
const $on = defineSyncApi(API_ON, (name2, callback) => {
emitter.on(name2, callback);
return () => emitter.off(name2, callback);
@@ -1278,8 +1038,8 @@ function invokePushCallback(args) {
type: "receive",
data: normalizePushMessage(args.message)
};
- for (let i2 = 0; i2 < onPushMessageCallbacks.length; i2++) {
- const callback = onPushMessageCallbacks[i2];
+ for (let i = 0; i < onPushMessageCallbacks.length; i++) {
+ const callback = onPushMessageCallbacks[i];
callback(message);
if (message.stopped) {
break;
@@ -1302,7 +1062,7 @@ function invokeGetPushCidCallbacks(cid2, errMsg) {
getPushCidCallbacks.length = 0;
}
const API_GET_PUSH_CLIENT_ID = "getPushClientId";
-const getPushClientId = defineAsyncApi(API_GET_PUSH_CLIENT_ID, (_2, { resolve: resolve2, reject }) => {
+const getPushClientId = defineAsyncApi(API_GET_PUSH_CLIENT_ID, (_, { resolve: resolve2, reject }) => {
Promise.resolve().then(() => {
if (typeof enabled === "undefined") {
enabled = false;
@@ -1398,7 +1158,7 @@ function initWrapper(protocols2) {
argsOption = argsOption(fromArgs, toArgs) || {};
}
for (const key in fromArgs) {
- if (hasOwn$1(argsOption, key)) {
+ if (hasOwn(argsOption, key)) {
let keyOption = argsOption[key];
if (isFunction$1(keyOption)) {
keyOption = keyOption(fromArgs[key], fromArgs, toArgs);
@@ -1416,7 +1176,7 @@ function initWrapper(protocols2) {
toArgs[key] = processCallback(methodName, callback, returnValue);
}
} else {
- if (!keepFromArgs && !hasOwn$1(toArgs, key)) {
+ if (!keepFromArgs && !hasOwn(toArgs, key)) {
toArgs[key] = fromArgs[key];
}
}
@@ -1434,7 +1194,7 @@ function initWrapper(protocols2) {
return processArgs(methodName, res, returnValue, {}, keepReturnValue);
}
return function wrapper(methodName, method) {
- if (!hasOwn$1(protocols2, methodName)) {
+ if (!hasOwn(protocols2, methodName)) {
return method;
}
const protocol = protocols2[methodName];
@@ -1493,7 +1253,7 @@ if (typeof global !== "undefined") {
const UUID_KEY = "__DC_STAT_UUID";
let deviceId;
function useDeviceId(global2 = wx) {
- return function addDeviceId(_2, toRes) {
+ return function addDeviceId(_, toRes) {
deviceId = deviceId || global2.getStorageSync(UUID_KEY);
if (!deviceId) {
deviceId = Date.now() + "" + Math.floor(Math.random() * 1e7);
@@ -1728,13 +1488,13 @@ function initUni(api, protocols2, platform = wx) {
const wrapper = initWrapper(protocols2);
const UniProxyHandlers = {
get(target, key) {
- if (hasOwn$1(target, key)) {
+ if (hasOwn(target, key)) {
return target[key];
}
- if (hasOwn$1(api, key)) {
+ if (hasOwn(api, key)) {
return promisify(key, api[key]);
}
- if (hasOwn$1(baseApis, key)) {
+ if (hasOwn(baseApis, key)) {
return promisify(key, baseApis[key]);
}
return promisify(key, wrapper(key, platform[key]));
@@ -1885,9 +1645,9 @@ function warn$1$1(msg, ...args) {
instance,
11,
[
- msg + args.map((a2) => {
+ msg + args.map((a) => {
var _a, _b;
- return (_b = (_a = a2.toString) == null ? void 0 : _a.call(a2)) != null ? _b : JSON.stringify(a2);
+ return (_b = (_a = a.toString) == null ? void 0 : _a.call(a)) != null ? _b : JSON.stringify(a);
}).join(""),
instance && instance.proxy,
trace.map(
@@ -1929,8 +1689,8 @@ function getComponentTrace$1() {
}
function formatTrace$1(trace) {
const logs = [];
- trace.forEach((entry, i2) => {
- logs.push(...i2 === 0 ? [] : [`
+ trace.forEach((entry, i) => {
+ logs.push(...i === 0 ? [] : [`
`], ...formatTraceEntry$1(entry));
});
return logs;
@@ -2020,8 +1780,8 @@ function handleError$1(err, instance, type, throwInDev = true) {
while (cur) {
const errorCapturedHooks = cur.ec;
if (errorCapturedHooks) {
- for (let i2 = 0; i2 < errorCapturedHooks.length; i2++) {
- if (errorCapturedHooks[i2](err, exposedInstance, errorInfo) === false) {
+ for (let i = 0; i < errorCapturedHooks.length; i++) {
+ if (errorCapturedHooks[i](err, exposedInstance, errorInfo) === false) {
return;
}
}
@@ -2117,7 +1877,7 @@ function queuePostFlushCb$1(cb) {
function flushPostFlushCbs$1(seen) {
if (pendingPostFlushCbs$1.length) {
const deduped = [...new Set(pendingPostFlushCbs$1)].sort(
- (a2, b2) => getId$1(a2) - getId$1(b2)
+ (a, b) => getId$1(a) - getId$1(b)
);
pendingPostFlushCbs$1.length = 0;
if (activePostFlushCbs$1) {
@@ -2139,12 +1899,12 @@ function flushPostFlushCbs$1(seen) {
}
}
const getId$1 = (job) => job.id == null ? Infinity : job.id;
-const comparator$1 = (a2, b2) => {
- const diff2 = getId$1(a2) - getId$1(b2);
+const comparator$1 = (a, b) => {
+ const diff2 = getId$1(a) - getId$1(b);
if (diff2 === 0) {
- if (a2.pre && !b2.pre)
+ if (a.pre && !b.pre)
return -1;
- if (b2.pre && !a2.pre)
+ if (b.pre && !a.pre)
return 1;
}
return diff2;
@@ -2298,26 +2058,26 @@ function tryWrap(fn) {
};
}
{
- const g2 = getGlobalThis();
+ const g = getGlobalThis();
const registerGlobalSetter = (key, setter) => {
let setters;
- if (!(setters = g2[key]))
- setters = g2[key] = [];
+ if (!(setters = g[key]))
+ setters = g[key] = [];
setters.push(setter);
- return (v2) => {
+ return (v) => {
if (setters.length > 1)
- setters.forEach((set2) => set2(v2));
+ setters.forEach((set2) => set2(v));
else
- setters[0](v2);
+ setters[0](v);
};
};
registerGlobalSetter(
`__VUE_INSTANCE_SETTERS__`,
- (v2) => v2
+ (v) => v
);
registerGlobalSetter(
`__VUE_SSR_SETTERS__`,
- (v2) => v2
+ (v) => v
);
}
const classifyRE$1 = /(?:^|[-_])(\w)/g;
@@ -2404,16 +2164,16 @@ class EffectScope {
}
stop(fromParent) {
if (this._active) {
- let i2, l2;
- for (i2 = 0, l2 = this.effects.length; i2 < l2; i2++) {
- this.effects[i2].stop();
+ let i, l;
+ for (i = 0, l = this.effects.length; i < l; i++) {
+ this.effects[i].stop();
}
- for (i2 = 0, l2 = this.cleanups.length; i2 < l2; i2++) {
- this.cleanups[i2]();
+ for (i = 0, l = this.cleanups.length; i < l; i++) {
+ this.cleanups[i]();
}
if (this.scopes) {
- for (i2 = 0, l2 = this.scopes.length; i2 < l2; i2++) {
- this.scopes[i2].stop(true);
+ for (i = 0, l = this.scopes.length; i < l; i++) {
+ this.scopes[i].stop(true);
}
}
if (!this.detached && this.parent && !fromParent) {
@@ -2458,8 +2218,8 @@ class ReactiveEffect2 {
if (this._dirtyLevel === 2 || this._dirtyLevel === 3) {
this._dirtyLevel = 1;
pauseTracking();
- for (let i2 = 0; i2 < this._depsLength; i2++) {
- const dep = this.deps[i2];
+ for (let i = 0; i < this._depsLength; i++) {
+ const dep = this.deps[i];
if (dep.computed) {
triggerComputed(dep.computed);
if (this._dirtyLevel >= 4) {
@@ -2474,8 +2234,8 @@ class ReactiveEffect2 {
}
return this._dirtyLevel >= 4;
}
- set dirty(v2) {
- this._dirtyLevel = v2 ? 4 : 0;
+ set dirty(v) {
+ this._dirtyLevel = v ? 4 : 0;
}
run() {
this._dirtyLevel = 0;
@@ -2516,8 +2276,8 @@ function preCleanupEffect(effect2) {
}
function postCleanupEffect(effect2) {
if (effect2.deps.length > effect2._depsLength) {
- for (let i2 = effect2._depsLength; i2 < effect2.deps.length; i2++) {
- cleanupDepEffect(effect2.deps[i2], effect2);
+ for (let i = effect2._depsLength; i < effect2.deps.length; i++) {
+ cleanupDepEffect(effect2.deps[i], effect2);
}
effect2.deps.length = effect2._depsLength;
}
@@ -2698,8 +2458,8 @@ function createArrayInstrumentations() {
["includes", "indexOf", "lastIndexOf"].forEach((key) => {
instrumentations[key] = function(...args) {
const arr = toRaw(this);
- for (let i2 = 0, l2 = this.length; i2 < l2; i2++) {
- track(arr, "get", i2 + "");
+ for (let i = 0, l = this.length; i < l; i++) {
+ track(arr, "get", i + "");
}
const res = arr[key](...args);
if (res === -1 || res === false) {
@@ -2749,7 +2509,7 @@ class BaseReactiveHandler2 {
}
const targetIsArray = isArray$1(target);
if (!isReadonly2) {
- if (targetIsArray && hasOwn$1(arrayInstrumentations, key)) {
+ if (targetIsArray && hasOwn(arrayInstrumentations, key)) {
return Reflect.get(arrayInstrumentations, key, receiver);
}
if (key === "hasOwnProperty") {
@@ -2769,7 +2529,7 @@ class BaseReactiveHandler2 {
if (isRef(res)) {
return targetIsArray && isIntegerKey(key) ? res : res.value;
}
- if (isObject$2(res)) {
+ if (isObject$1(res)) {
return isReadonly2 ? readonly(res) : reactive(res);
}
return res;
@@ -2796,7 +2556,7 @@ class MutableReactiveHandler2 extends BaseReactiveHandler2 {
}
}
}
- const hadKey = isArray$1(target) && isIntegerKey(key) ? Number(key) < target.length : hasOwn$1(target, key);
+ const hadKey = isArray$1(target) && isIntegerKey(key) ? Number(key) < target.length : hasOwn(target, key);
const result = Reflect.set(target, key, value, receiver);
if (target === toRaw(receiver)) {
if (!hadKey) {
@@ -2808,7 +2568,7 @@ class MutableReactiveHandler2 extends BaseReactiveHandler2 {
return result;
}
deleteProperty(target, key) {
- const hadKey = hasOwn$1(target, key);
+ const hadKey = hasOwn(target, key);
const oldValue = target[key];
const result = Reflect.deleteProperty(target, key);
if (result && hadKey) {
@@ -2862,7 +2622,7 @@ const shallowReactiveHandlers = /* @__PURE__ */ new MutableReactiveHandler2(
);
const shallowReadonlyHandlers = /* @__PURE__ */ new ReadonlyReactiveHandler2(true);
const toShallow = (value) => value;
-const getProto = (v2) => Reflect.getPrototypeOf(v2);
+const getProto = (v) => Reflect.getPrototypeOf(v);
function get$1(target, key, isReadonly2 = false, isShallow2 = false) {
target = target["__v_raw"];
const rawTarget = toRaw(target);
@@ -3113,7 +2873,7 @@ function createInstrumentationGetter(isReadonly2, shallow) {
return target;
}
return Reflect.get(
- hasOwn$1(instrumentations, key) && key in target ? instrumentations : target,
+ hasOwn(instrumentations, key) && key in target ? instrumentations : target,
key,
receiver
);
@@ -3201,7 +2961,7 @@ function shallowReadonly(target) {
);
}
function createReactiveObject(target, isReadonly2, baseHandlers, collectionHandlers, proxyMap) {
- if (!isObject$2(target)) {
+ if (!isObject$1(target)) {
{
warn$2(`value cannot be made reactive: ${String(target)}`);
}
@@ -3250,8 +3010,8 @@ function markRaw(value) {
}
return value;
}
-const toReactive = (value) => isObject$2(value) ? reactive(value) : value;
-const toReadonly = (value) => isObject$2(value) ? readonly(value) : value;
+const toReactive = (value) => isObject$1(value) ? reactive(value) : value;
+const toReadonly = (value) => isObject$1(value) ? readonly(value) : value;
const COMPUTED_SIDE_EFFECT_WARN = `Computed is still dirty after getter evaluation, likely because a computed is mutating its own dependency in its getter. State mutations in computed getters should be avoided. Check the docs for more details: https://vuejs.org/guide/essentials/computed.html#getters-should-be-side-effect-free`;
class ComputedRefImpl {
constructor(getter, _setter, isReadonly2, isSSR) {
@@ -3294,8 +3054,8 @@ getter: `, this.getter);
get _dirty() {
return this.effect.dirty;
}
- set _dirty(v2) {
- this.effect.dirty = v2;
+ set _dirty(v) {
+ this.effect.dirty = v;
}
// #endregion
}
@@ -3423,9 +3183,9 @@ function warn$1(msg, ...args) {
instance,
11,
[
- msg + args.map((a2) => {
+ msg + args.map((a) => {
var _a, _b;
- return (_b = (_a = a2.toString) == null ? void 0 : _a.call(a2)) != null ? _b : JSON.stringify(a2);
+ return (_b = (_a = a.toString) == null ? void 0 : _a.call(a)) != null ? _b : JSON.stringify(a);
}).join(""),
instance && instance.proxy,
trace.map(
@@ -3468,8 +3228,8 @@ function getComponentTrace() {
}
function formatTrace(trace) {
const logs = [];
- trace.forEach((entry, i2) => {
- logs.push(...i2 === 0 ? [] : [`
+ trace.forEach((entry, i) => {
+ logs.push(...i === 0 ? [] : [`
`], ...formatTraceEntry(entry));
});
return logs;
@@ -3561,8 +3321,8 @@ function callWithAsyncErrorHandling(fn, instance, type, args) {
return res;
}
const values = [];
- for (let i2 = 0; i2 < fn.length; i2++) {
- values.push(callWithAsyncErrorHandling(fn[i2], instance, type, args));
+ for (let i = 0; i < fn.length; i++) {
+ values.push(callWithAsyncErrorHandling(fn[i], instance, type, args));
}
return values;
}
@@ -3575,8 +3335,8 @@ function handleError(err, instance, type, throwInDev = true) {
while (cur) {
const errorCapturedHooks = cur.ec;
if (errorCapturedHooks) {
- for (let i2 = 0; i2 < errorCapturedHooks.length; i2++) {
- if (errorCapturedHooks[i2](err, exposedInstance, errorInfo) === false) {
+ for (let i = 0; i < errorCapturedHooks.length; i++) {
+ if (errorCapturedHooks[i](err, exposedInstance, errorInfo) === false) {
return;
}
}
@@ -3665,9 +3425,9 @@ function hasQueueJob(job) {
return queue.indexOf(job) > -1;
}
function invalidateJob(job) {
- const i2 = queue.indexOf(job);
- if (i2 > flushIndex) {
- queue.splice(i2, 1);
+ const i = queue.indexOf(job);
+ if (i > flushIndex) {
+ queue.splice(i, 1);
}
}
function queuePostFlushCb(cb) {
@@ -3683,12 +3443,12 @@ function queuePostFlushCb(cb) {
}
queueFlush();
}
-function flushPreFlushCbs(instance, seen, i2 = isFlushing ? flushIndex + 1 : 0) {
+function flushPreFlushCbs(instance, seen, i = isFlushing ? flushIndex + 1 : 0) {
{
seen = seen || /* @__PURE__ */ new Map();
}
- for (; i2 < queue.length; i2++) {
- const cb = queue[i2];
+ for (; i < queue.length; i++) {
+ const cb = queue[i];
if (cb && cb.pre) {
if (instance && cb.id !== instance.uid) {
continue;
@@ -3696,8 +3456,8 @@ function flushPreFlushCbs(instance, seen, i2 = isFlushing ? flushIndex + 1 : 0)
if (checkRecursiveUpdates(seen, cb)) {
continue;
}
- queue.splice(i2, 1);
- i2--;
+ queue.splice(i, 1);
+ i--;
cb();
}
}
@@ -3705,7 +3465,7 @@ function flushPreFlushCbs(instance, seen, i2 = isFlushing ? flushIndex + 1 : 0)
function flushPostFlushCbs(seen) {
if (pendingPostFlushCbs.length) {
const deduped = [...new Set(pendingPostFlushCbs)].sort(
- (a2, b2) => getId(a2) - getId(b2)
+ (a, b) => getId(a) - getId(b)
);
pendingPostFlushCbs.length = 0;
if (activePostFlushCbs) {
@@ -3727,12 +3487,12 @@ function flushPostFlushCbs(seen) {
}
}
const getId = (job) => job.id == null ? Infinity : job.id;
-const comparator = (a2, b2) => {
- const diff2 = getId(a2) - getId(b2);
+const comparator = (a, b) => {
+ const diff2 = getId(a) - getId(b);
if (diff2 === 0) {
- if (a2.pre && !b2.pre)
+ if (a.pre && !b.pre)
return -1;
- if (b2.pre && !a2.pre)
+ if (b.pre && !a.pre)
return 1;
}
return diff2;
@@ -3925,7 +3685,7 @@ function emit(instance, event, ...rawArgs) {
const modifiersKey = `${modelArg === "modelValue" ? "model" : modelArg}Modifiers`;
const { number, trim } = props[modifiersKey] || EMPTY_OBJ;
if (trim) {
- args = rawArgs.map((a2) => isString$1(a2) ? a2.trim() : a2);
+ args = rawArgs.map((a) => isString$1(a) ? a.trim() : a);
}
if (number) {
args = rawArgs.map(looseToNumber);
@@ -4005,7 +3765,7 @@ function normalizeEmitsOptions(comp, appContext, asMixin = false) {
}
}
if (!raw && !hasExtends) {
- if (isObject$2(comp)) {
+ if (isObject$1(comp)) {
cache.set(comp, null);
}
return null;
@@ -4015,7 +3775,7 @@ function normalizeEmitsOptions(comp, appContext, asMixin = false) {
} else {
extend(normalized, raw);
}
- if (isObject$2(comp)) {
+ if (isObject$1(comp)) {
cache.set(comp, normalized);
}
return normalized;
@@ -4025,7 +3785,7 @@ function isEmitListener(options, key) {
return false;
}
key = key.slice(2).replace(/Once$/, "");
- return hasOwn$1(options, key[0].toLowerCase() + key.slice(1)) || hasOwn$1(options, hyphenate(key)) || hasOwn$1(options, key);
+ return hasOwn(options, key[0].toLowerCase() + key.slice(1)) || hasOwn(options, hyphenate(key)) || hasOwn(options, key);
}
let currentRenderingInstance = null;
function setCurrentRenderingInstance(instance) {
@@ -4194,7 +3954,7 @@ function doWatch(source, cb, {
}
if (cb) {
const newValue = effect2.run();
- if (deep || forceTrigger || (isMultiSource ? newValue.some((v2, i2) => hasChanged(v2, oldValue[i2])) : hasChanged(newValue, oldValue)) || false) {
+ if (deep || forceTrigger || (isMultiSource ? newValue.some((v, i) => hasChanged(v, oldValue[i])) : hasChanged(newValue, oldValue)) || false) {
if (cleanup) {
cleanup();
}
@@ -4269,14 +4029,14 @@ function createPathGetter(ctx, path) {
const segments = path.split(".");
return () => {
let cur = ctx;
- for (let i2 = 0; i2 < segments.length && cur; i2++) {
- cur = cur[segments[i2]];
+ for (let i = 0; i < segments.length && cur; i++) {
+ cur = cur[segments[i]];
}
return cur;
};
}
function traverse(value, depth, currentDepth = 0, seen) {
- if (!isObject$2(value) || value["__v_skip"]) {
+ if (!isObject$1(value) || value["__v_skip"]) {
return value;
}
if (depth && depth > 0) {
@@ -4293,12 +4053,12 @@ function traverse(value, depth, currentDepth = 0, seen) {
if (isRef(value)) {
traverse(value.value, depth, currentDepth, seen);
} else if (isArray$1(value)) {
- for (let i2 = 0; i2 < value.length; i2++) {
- traverse(value[i2], depth, currentDepth, seen);
+ for (let i = 0; i < value.length; i++) {
+ traverse(value[i], depth, currentDepth, seen);
}
} else if (isSet(value) || isMap$1(value)) {
- value.forEach((v2) => {
- traverse(v2, depth, currentDepth, seen);
+ value.forEach((v) => {
+ traverse(v, depth, currentDepth, seen);
});
} else if (isPlainObject$1(value)) {
for (const key in value) {
@@ -4339,7 +4099,7 @@ function createAppAPI(render, hydrate) {
if (!isFunction$1(rootComponent)) {
rootComponent = extend({}, rootComponent);
}
- if (rootProps != null && !isObject$2(rootProps)) {
+ if (rootProps != null && !isObject$1(rootProps)) {
warn$1(`root props passed to app.mount() must be an object.`);
rootProps = null;
}
@@ -4356,7 +4116,7 @@ function createAppAPI(render, hydrate) {
get config() {
return context.config;
},
- set config(v2) {
+ set config(v) {
{
warn$1(
`app.config cannot be replaced. Modify individual options instead.`
@@ -4580,40 +4340,40 @@ const onRenderTracked = createHook$1(
function onErrorCaptured(hook, target = currentInstance) {
injectHook("ec", hook, target);
}
-const getPublicInstance = (i2) => {
- if (!i2)
+const getPublicInstance = (i) => {
+ if (!i)
return null;
- if (isStatefulComponent(i2))
- return getExposeProxy(i2) || i2.proxy;
- return getPublicInstance(i2.parent);
+ if (isStatefulComponent(i))
+ return getExposeProxy(i) || i.proxy;
+ return getPublicInstance(i.parent);
};
const publicPropertiesMap = (
// Move PURE marker to new line to workaround compiler discarding it
// due to type annotation
/* @__PURE__ */ extend(/* @__PURE__ */ Object.create(null), {
- $: (i2) => i2,
+ $: (i) => i,
// fixed by xxxxxx vue-i18n 在 dev 模式,访问了 $el,故模拟一个假的
// $el: i => i.vnode.el,
- $el: (i2) => i2.__$el || (i2.__$el = {}),
- $data: (i2) => i2.data,
- $props: (i2) => shallowReadonly(i2.props),
- $attrs: (i2) => shallowReadonly(i2.attrs),
- $slots: (i2) => shallowReadonly(i2.slots),
- $refs: (i2) => shallowReadonly(i2.refs),
- $parent: (i2) => getPublicInstance(i2.parent),
- $root: (i2) => getPublicInstance(i2.root),
- $emit: (i2) => i2.emit,
- $options: (i2) => resolveMergedOptions(i2),
- $forceUpdate: (i2) => i2.f || (i2.f = () => {
- i2.effect.dirty = true;
- queueJob(i2.update);
+ $el: (i) => i.__$el || (i.__$el = {}),
+ $data: (i) => i.data,
+ $props: (i) => shallowReadonly(i.props),
+ $attrs: (i) => shallowReadonly(i.attrs),
+ $slots: (i) => shallowReadonly(i.slots),
+ $refs: (i) => shallowReadonly(i.refs),
+ $parent: (i) => getPublicInstance(i.parent),
+ $root: (i) => getPublicInstance(i.root),
+ $emit: (i) => i.emit,
+ $options: (i) => resolveMergedOptions(i),
+ $forceUpdate: (i) => i.f || (i.f = () => {
+ i.effect.dirty = true;
+ queueJob(i.update);
}),
// $nextTick: i => i.n || (i.n = nextTick.bind(i.proxy!)),// fixed by xxxxxx
- $watch: (i2) => instanceWatch.bind(i2)
+ $watch: (i) => instanceWatch.bind(i)
})
);
const isReservedPrefix = (key) => key === "_" || key === "$";
-const hasSetupBinding = (state, key) => state !== EMPTY_OBJ && !state.__isScriptSetup && hasOwn$1(state, key);
+const hasSetupBinding = (state, key) => state !== EMPTY_OBJ && !state.__isScriptSetup && hasOwn(state, key);
const PublicInstanceProxyHandlers = {
get({ _: instance }, key) {
const { ctx, setupState, data, props, accessCache, type, appContext } = instance;
@@ -4637,17 +4397,17 @@ const PublicInstanceProxyHandlers = {
} else if (hasSetupBinding(setupState, key)) {
accessCache[key] = 1;
return setupState[key];
- } else if (data !== EMPTY_OBJ && hasOwn$1(data, key)) {
+ } else if (data !== EMPTY_OBJ && hasOwn(data, key)) {
accessCache[key] = 2;
return data[key];
} else if (
// only cache other properties when instance has declared (thus stable)
// props
- (normalizedProps = instance.propsOptions[0]) && hasOwn$1(normalizedProps, key)
+ (normalizedProps = instance.propsOptions[0]) && hasOwn(normalizedProps, key)
) {
accessCache[key] = 3;
return props[key];
- } else if (ctx !== EMPTY_OBJ && hasOwn$1(ctx, key)) {
+ } else if (ctx !== EMPTY_OBJ && hasOwn(ctx, key)) {
accessCache[key] = 4;
return ctx[key];
} else if (shouldCacheAccess) {
@@ -4668,12 +4428,12 @@ const PublicInstanceProxyHandlers = {
(cssModule = type.__cssModules) && (cssModule = cssModule[key])
) {
return cssModule;
- } else if (ctx !== EMPTY_OBJ && hasOwn$1(ctx, key)) {
+ } else if (ctx !== EMPTY_OBJ && hasOwn(ctx, key)) {
accessCache[key] = 4;
return ctx[key];
} else if (
// global properties
- globalProperties = appContext.config.globalProperties, hasOwn$1(globalProperties, key)
+ globalProperties = appContext.config.globalProperties, hasOwn(globalProperties, key)
) {
{
return globalProperties[key];
@@ -4681,7 +4441,7 @@ const PublicInstanceProxyHandlers = {
} else if (currentRenderingInstance && (!isString$1(key) || // #1091 avoid internal isRef/isVNode checks on component instance leading
// to infinite warning loop
key.indexOf("__v") !== 0)) {
- if (data !== EMPTY_OBJ && isReservedPrefix(key[0]) && hasOwn$1(data, key)) {
+ if (data !== EMPTY_OBJ && isReservedPrefix(key[0]) && hasOwn(data, key)) {
warn$1(
`Property ${JSON.stringify(
key
@@ -4699,13 +4459,13 @@ const PublicInstanceProxyHandlers = {
if (hasSetupBinding(setupState, key)) {
setupState[key] = value;
return true;
- } else if (setupState.__isScriptSetup && hasOwn$1(setupState, key)) {
+ } else if (setupState.__isScriptSetup && hasOwn(setupState, key)) {
warn$1(`Cannot mutate