From ad3cc54a2c55ac8cdfb290be3b1e7487f9293d97 Mon Sep 17 00:00:00 2001
From: liweilong <515897141@qq.com>
Date: 星期一, 30 十一月 2020 10:40:44 +0800
Subject: [PATCH] 优化http.js、添加模板表单、添加keepalive设置

---
 src/utils/area/index.js           |  108 
 src/utils/http.js                 |    5 
 src/utils/form_validate.js        |   21 
 src/utils/area/data.js            | 11623 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 src/layout/components/AppMain.vue |    7 
 src/mixins/keepAlive.js           |   19 
 src/pages/system/admin.vue        |    2 
 src/pages/demo/form.vue           |  255 +
 src/router/demo_router.js         |    6 
 9 files changed, 12,043 insertions(+), 3 deletions(-)

diff --git a/src/layout/components/AppMain.vue b/src/layout/components/AppMain.vue
index f6a3286..8165963 100644
--- a/src/layout/components/AppMain.vue
+++ b/src/layout/components/AppMain.vue
@@ -1,7 +1,12 @@
 <template>
   <section class="app-main">
     <transition name="fade-transform" mode="out-in">
-      <router-view :key="key" />
+      <div>
+        <keep-alive>
+          <router-view v-if="$route.meta.keepAlive" :key="key" />
+        </keep-alive>
+        <router-view v-if="!$route.meta.keepAlive" :key="key" />
+      </div>
     </transition>
   </section>
 </template>
diff --git a/src/mixins/keepAlive.js b/src/mixins/keepAlive.js
new file mode 100644
index 0000000..80a3f58
--- /dev/null
+++ b/src/mixins/keepAlive.js
@@ -0,0 +1,19 @@
+/**
+ * 椤甸潰閫氱敤 keepAlive 澶勭悊
+ *
+ * 閫氳繃椤甸潰閲嶇疆鍔熻兘锛屽疄鐜板埛鏂板姛鑳�
+ */
+
+export default {
+  // keep-alive鐢�
+  activated() {
+    // 鏍规嵁isBack杩涜鍒锋柊
+    if (!this.$route.meta.isBack) {
+      console.log('鍒濆鍖�')
+      this.init && this.init()
+    } else {
+      console.log('杩斿洖')
+      this.regInit && this.regInit()
+    }
+  }
+}
diff --git a/src/pages/demo/form.vue b/src/pages/demo/form.vue
new file mode 100644
index 0000000..31652ba
--- /dev/null
+++ b/src/pages/demo/form.vue
@@ -0,0 +1,255 @@
+<template>
+  <div class="app-container">
+    <el-form ref="couponForm" label-position="left" :model="mData" label-width="150px" :rules="rules">
+      <el-form-item label="鏍囬锛�" prop="title">
+        <el-input v-model="mData.title" placeholder="璇疯緭鍏ユ爣棰�" class="com-edit-input" />
+      </el-form-item>
+      <el-form-item label="闈㈠�硷細" prop="valueMoney">
+        <el-input v-model.number="mData.valueMoney" placeholder="璇疯緭鍏ラ潰鍊�" class="com-edit-input" />
+      </el-form-item>
+      <el-form-item label="鐪佸競鍖�" prop="provinces">
+        <el-cascader
+          v-model="mData.provinces"
+          :options="areaOpts"
+          placeholder="璇烽�夋嫨鐪佸競鍖�"
+          style="width: 100%"
+        />
+      </el-form-item>
+      <el-form-item label="鏈夋晥鏃ユ湡" prop="dateValue">
+        <el-date-picker
+          v-model="mData.dateValue"
+          value-format="yyyy-MM-dd"
+          class="com-edit-input"
+          type="daterange"
+          range-separator="鑷�"
+          start-placeholder="寮�濮嬫棩鏈�"
+          end-placeholder="缁撴潫鏃ユ湡"
+        />
+      </el-form-item>
+      <el-form-item prop="uploadImgs">
+        <span slot="label">
+          鍥剧墖锛�<br><span>(668*164鍍忕礌)</span>
+        </span>
+        <!-- 涓婁紶鍥剧墖缁勪欢(鍗曞浘) -->
+        <el-upload
+          ref="refUploadImg"
+          accept="image/jpeg,image/jpg,image/gif,image/png"
+          :auto-upload="false"
+          list-type="picture-card"
+          :class="{disabled:uploadDisabled}"
+          action="#"
+          :limit="1"
+          :file-list="mData.uploadImgs"
+          :on-change="addUploadImg"
+          :on-remove="delUploadImg"
+          :http-request="uploadImg"
+          :on-preview="uploadPreview"
+          :before-upload="beforeUploadImg"
+        >
+          <i class="el-icon-plus" />
+        </el-upload>
+      </el-form-item>
+      <el-form-item label="鏄惁涓婃灦锛�">
+        <el-switch v-model="mData.isUp" :active-value="1" :inactive-value="0" />
+      </el-form-item>
+      <el-form-item label="璇︽儏锛�" prop="content">
+        <!-- 瀵屾枃鏈� -->
+        <WangEnduit :catchdata="catchData" :content="mData.content" :rangenum="rangenum" />
+      </el-form-item>
+    </el-form>
+
+    <div class="com-edit-bottom-btns flex flex-align-center">
+      <el-button size="mini" @click="jumpBack">鍙栨秷</el-button>
+      <el-button type="primary" size="mini" @click="submit">鎻愪氦</el-button>
+    </div>
+
+    <!-- upload鏀惧ぇ鍥剧墖 -->
+    <el-dialog :visible.sync="uploadPreviewVisible" style="text-align:center">
+      <img style="max-width:100%" :src="uploadPreviewUrl" alt="">
+    </el-dialog>
+
+  </div>
+</template>
+
+<script>
+import WangEnduit from '@/components/WangEnduit' // 瀵屾枃鏈�
+import mixin_upload from '@/mixins/upload.js' // 閫氱敤涓婁紶鍥剧墖棰勮
+import Area from '@/utils/area' // 鍦板尯閫夋嫨
+export default {
+  name: 'DemoForm',
+  components: { WangEnduit },
+  mixins: [
+    mixin_upload
+  ],
+  data() {
+    return {
+      // 瀵屾枃鏈�
+      rangenum: null,
+      // 琛ㄥ崟瀛楁
+      mData: {
+        title: '', // 鏍囬
+        valueMoney: '', // 闈㈠��
+        dateValue: [], // 鏈夋晥鏃ユ湡锛堝紑濮嬫棩鏈熻嚦缁撴潫鏃ユ湡锛�
+        content: '', // 璇︽儏
+        isUp: 1, // 鏄惁涓婃灦
+        uploadImgs: [], // 鍥剧墖
+        provinces: [],
+        imgUrl: ''
+      },
+
+      // 鍒濆鍖栧湴鍖�
+      areaOpts: Area.getAreaOpts(Area.data), // 鐪佸競鍖烘暟鎹�
+
+      // 琛ㄥ崟鏍¢獙
+      rules: {
+        title: [{
+          required: true, message: '璇峰~鍐欎紭鎯犲埜鏍囬', trigger: 'change'
+        }],
+        valueMoney: [{
+          required: true, message: '璇峰~鍐欎紭鎯犲埜闈㈠��', trigger: 'change'
+        }, {
+          type: 'number', message: '闈㈠�煎繀椤讳负鏁板瓧', trigger: 'change'
+        }],
+        dateValue: [{
+          required: true, message: '璇烽�夋嫨鏈夋晥鏃ユ湡', trigger: 'change'
+        }],
+        provinces: [{
+          required: true, message: '璇烽�夋嫨鍦板潃', trigger: 'change'
+        }],
+        content: [{
+          required: true, message: '璇峰~鍐欎紭鎯犲埜璇︽儏'
+        }],
+        uploadImgs: [{
+          required: true, message: '璇烽�夋嫨鍥剧墖'
+        }]
+      }
+    }
+  },
+  computed: {
+    // 绂佺敤涓婁紶鍥剧墖鍔熻兘
+    uploadDisabled() {
+      return this.mData.uploadImgs.length > 0
+    }
+  },
+  mounted() {
+    this.init()
+  },
+  methods: {
+    init() {
+
+    },
+
+    jumpBack() {
+      this.$router.go(-1)
+    },
+
+    // 瀵屾枃鏈浉鍏�
+    // 瀵屾枃鏈紪杈戝櫒鐨勫唴瀹硅祴鍊�
+    catchData(content) {
+      if (content === '<p><br></p>') content = ''
+      try {
+        const currentRange = window.getSelection().getRangeAt(0)
+        this.rangenum = currentRange
+      } catch (e) {
+        //
+      }
+      this.mData.content = content
+      this.$refs.couponForm.validateField('content')
+    },
+    // 瀵屾枃鏈浉鍏�
+
+    // 涓婁紶鍥剧墖 鈫撯啌鈫撯啌鈫撯啌鈫撯啌鈫撯啌鈫撯啌鈫撯啌鈫撯啌鈫撯啌鈫撯啌鈫撯啌鈫撯啌鈫撯啌鈫撯啌鈫撯啌鈫撯啌鈫撯啌鈫撯啌鈫撯啌鈫撯啌鈫撯啌鈫撯啌鈫撯啌鈫撯啌鈫撯啌
+    // 涓婁紶鍓嶇‘璁ゆ牸寮�
+    beforeUploadImg(file) {
+      const isImg = file.type.indexOf('image/') > -1
+      if (!isImg) {
+        this.$message.error('蹇呴』鏄�夋嫨鍥剧墖鏂囦欢')
+      }
+      return isImg
+    },
+    // 澧炲姞鍥剧墖
+    addUploadImg(file, fileList) {
+      this.mData.uploadImgs = fileList
+      this.$refs.couponForm.validateField('uploadImgs')
+    },
+    // 鍒犻櫎鍥剧墖
+    delUploadImg(file, fileList) {
+      this.mData.uploadImgs = fileList
+    },
+    // 涓婁紶鍥剧墖
+    uploadImg(res) {
+      const file = res.file
+      const formData = new FormData()
+      formData.append('file', file)
+      this.postFN({
+        url: 'admin/image/upload',
+        header: { 'Content-Type': 'multipart/form-data' },
+        params: formData,
+        mockData: {
+          code: 100,
+          msg: '',
+          data: {
+            imgUrl: 'xxxx'
+          }
+        }
+      }, (inf) => {
+        console.log('涓婁紶鍥炬垚鍔�')
+        this.$set(this.mData, 'imgUrl', inf.imgUrl)
+        console.log('涓婁紶鍥剧粨鏉�')
+
+        // 涓婁紶瀹屽浘鐗�
+        this.submitReq()
+      })
+    },
+    // 涓婁紶鍥剧墖 鈫戔啈鈫戔啈鈫戔啈鈫戔啈鈫戔啈鈫戔啈鈫戔啈鈫戔啈鈫戔啈鈫戔啈鈫戔啈鈫戔啈鈫戔啈鈫戔啈鈫戔啈鈫戔啈鈫戔啈鈫戔啈鈫戔啈鈫戔啈鈫戔啈鈫戔啈鈫戔啈鈫戔啈鈫戔啈
+
+    submit() {
+      this.$refs['couponForm'].validate(valid => {
+        if (valid) {
+          if (this.checkNeedUpload(this.mData.uploadImgs)) {
+            console.log('寮�濮嬩笂浼犲浘鐗�')
+            // 鍏堜笂浼犲浘鐗囷紝鍐嶆彁浜�
+            this.$refs.refUploadImg.submit()
+          } else {
+            // 鎻愪氦
+            this.submitReq()
+          }
+        }
+      })
+    },
+
+    submitReq() {
+      var { mData } = this
+      console.log(mData)
+      // 瀛楁鏈啓
+      var params = {
+        title: mData.title,
+        priceStr: mData.valueMoney, // 鍏冧负鍗曚綅
+        startTime: mData.dateValue[0],
+        endTime: mData.dateValue[1],
+        imgUrl: mData.imgUrl,
+        content: mData.content,
+        isUp: mData.isUp
+      }
+
+      // 鎻愪氦琛ㄥ崟
+      this.postFN({
+        url: 'admin/coupon/add',
+        params: params,
+        mockData: {
+          code: 100,
+          msg: '',
+          data: {}
+        }
+      }, () => {
+        this.$messageSuc('淇濆瓨鎴愬姛')
+        this.jumpBack()
+      })
+    }
+  }
+}
+</script>
+
+<style lang="scss" scoped>
+
+</style>
diff --git a/src/pages/system/admin.vue b/src/pages/system/admin.vue
index 3bff808..2106553 100644
--- a/src/pages/system/admin.vue
+++ b/src/pages/system/admin.vue
@@ -81,7 +81,7 @@
 
     <!-- 鏂板&缂栬緫 -->
     <el-dialog :title="adminDialogData.type=='add'?'鏂板绠$悊鍛�':'缂栬緫绠$悊鍛�'" width="500px" :visible.sync="isShowadminDialog" append-to-body>
-      <el-form ref="adminDialog" :model="adminDialogData" label-width="80px" :rules="rules">
+      <el-form ref="adminDialog" :model="adminDialogData" label-width="80px" :rules="rules" size="small">
         <el-form-item label="鍚嶇О" prop="name">
           <el-input v-model="adminDialogData.name" placeholder="璇疯緭鍏ュ悕绉�" />
         </el-form-item>
diff --git a/src/router/demo_router.js b/src/router/demo_router.js
index fd0b4ca..8526de2 100644
--- a/src/router/demo_router.js
+++ b/src/router/demo_router.js
@@ -16,6 +16,12 @@
       component: () => import('@/pages/demo/index'), // Parent router-view
       name: 'demoIndex',
       meta: { title: '妯℃澘鍒楄〃' }
+    },
+    {
+      path: 'form',
+      component: () => import('@/pages/demo/form'), // Parent router-view
+      name: 'demoForm',
+      meta: { title: '妯℃澘琛ㄥ崟' }
     }
   ]
 }
diff --git a/src/utils/area/data.js b/src/utils/area/data.js
new file mode 100644
index 0000000..62a5965
--- /dev/null
+++ b/src/utils/area/data.js
@@ -0,0 +1,11623 @@
+/**
+ * 鍦板潃鏁版嵁
+ * 缁撴瀯锛�
+ * @key {number} value 鍦板尯缂栫爜
+ * @key {string} label 鍦板尯鍚嶇О
+ * @key {array} children 瀛愬湴鍖烘暟缁�
+ *
+ * 娉ㄦ剰锛氬浗鍐呴儴鍒嗗煄甯備笉璁惧尯/鍘匡紝鏈暟鎹皢浼氳ˉ鍏呬笅涓�绾ц閬�
+ */
+
+/**
+ * @function check
+ * @description 鏌ユ壘鏁版嵁涓紝涓嶈鍖�/鍘跨殑鍩庡競锛堝瓙鏁扮粍缂栧彿闀垮害澶т簬6锛夛紝骞跺皢鏁版嵁鏀规垚{label: '鍩庡競鍚�', value: 鍩庡競缂栫爜+'001'}
+ * @param data Object[]  鍦板尯鏁扮粍
+ * @returns Object[] 鍦板尯鏁扮粍
+ */
+function check(data) {
+  data.forEach((obj) => {
+    obj.children && obj.children.forEach((obj2) => {
+      var flag = obj2.children && obj2.children.length && (obj2.children[0].value + '').length > 6
+      if (flag) {
+        // console.log(obj2.label, obj2.value)
+        obj2.children = [{ label: obj2.label, value: +(obj2.value + '00') }]
+      }
+    })
+  })
+  return data
+}
+
+export default check([{
+  value: 11,
+  label: '鍖椾含甯�',
+  children: [{
+    value: 1101,
+    label: '鍖椾含甯�', // 鍚屾灏忕▼搴� 鍘燂細甯傝緰鍖�
+    children: [{
+      value: 110101,
+      label: '涓滃煄鍖�'
+    }, {
+      value: 110102,
+      label: '瑗垮煄鍖�'
+    }, {
+      value: 110105,
+      label: '鏈濋槼鍖�'
+    }, {
+      value: 110106,
+      label: '涓板彴鍖�'
+    }, {
+      value: 110107,
+      label: '鐭虫櫙灞卞尯'
+    }, {
+      value: 110108,
+      label: '娴锋穩鍖�'
+    }, {
+      value: 110109,
+      label: '闂ㄥご娌熷尯'
+    }, {
+      value: 110111,
+      label: '鎴垮北鍖�'
+    }, {
+      value: 110112,
+      label: '閫氬窞鍖�'
+    }, {
+      value: 110113,
+      label: '椤轰箟鍖�'
+    }, {
+      value: 110114,
+      label: '鏄屽钩鍖�'
+    }, {
+      value: 110115,
+      label: '澶у叴鍖�'
+    }, {
+      value: 110116,
+      label: '鎬�鏌斿尯'
+    }, {
+      value: 110117,
+      label: '骞宠胺鍖�'
+    }, {
+      value: 110118,
+      label: '瀵嗕簯鍖�'
+    }, {
+      value: 110119,
+      label: '寤跺簡鍖�'
+    }]
+  }]
+}, {
+  value: 12,
+  label: '澶╂触甯�',
+  children: [{
+    value: 1201,
+    label: '澶╂触甯�', // 鍚屾灏忕▼搴� 鍘燂細甯傝緰鍖�
+    children: [{
+      value: 120101,
+      label: '鍜屽钩鍖�'
+    }, {
+      value: 120102,
+      label: '娌充笢鍖�'
+    }, {
+      value: 120103,
+      label: '娌宠タ鍖�'
+    }, {
+      value: 120104,
+      label: '鍗楀紑鍖�'
+    }, {
+      value: 120105,
+      label: '娌冲寳鍖�'
+    }, {
+      value: 120106,
+      label: '绾㈡ˉ鍖�'
+    }, {
+      value: 120110,
+      label: '涓滀附鍖�'
+    }, {
+      value: 120111,
+      label: '瑗块潚鍖�'
+    }, {
+      value: 120112,
+      label: '娲ュ崡鍖�'
+    }, {
+      value: 120113,
+      label: '鍖楄景鍖�'
+    }, {
+      value: 120114,
+      label: '姝︽竻鍖�'
+    }, {
+      value: 120115,
+      label: '瀹濆澔鍖�'
+    }, {
+      value: 120116,
+      label: '婊ㄦ捣鏂板尯'
+    }, {
+      value: 120117,
+      label: '瀹佹渤鍖�'
+    }, {
+      value: 120118,
+      label: '闈欐捣鍖�'
+    }, {
+      value: 120119,
+      label: '钃熷窞鍖�'
+    }]
+  }]
+}, {
+  value: 13,
+  label: '娌冲寳鐪�',
+  children: [{
+    value: 1301,
+    label: '鐭冲搴勫競',
+    children: [{
+      value: 130102,
+      label: '闀垮畨鍖�'
+    }, {
+      value: 130104,
+      label: '妗ヨタ鍖�'
+    }, {
+      value: 130105,
+      label: '鏂板崕鍖�'
+    }, {
+      value: 130107,
+      label: '浜曢檳鐭垮尯'
+    }, {
+      value: 130108,
+      label: '瑁曞崕鍖�'
+    }, {
+      value: 130109,
+      label: '钘佸煄鍖�'
+    }, {
+      value: 130110,
+      label: '楣挎硥鍖�'
+    }, {
+      value: 130111,
+      label: '鏍惧煄鍖�'
+    }, {
+      value: 130121,
+      label: '浜曢檳鍘�'
+    }, {
+      value: 130123,
+      label: '姝e畾鍘�'
+    }, {
+      value: 130125,
+      label: '琛屽攼鍘�'
+    }, {
+      value: 130126,
+      label: '鐏靛鍘�'
+    }, {
+      value: 130127,
+      label: '楂橀倯鍘�'
+    }, {
+      value: 130128,
+      label: '娣辨辰鍘�'
+    }, {
+      value: 130129,
+      label: '璧炵殗鍘�'
+    }, {
+      value: 130130,
+      label: '鏃犳瀬鍘�'
+    }, {
+      value: 130131,
+      label: '骞冲北鍘�'
+    }, {
+      value: 130132,
+      label: '鍏冩皬鍘�'
+    }, {
+      value: 130133,
+      label: '璧靛幙'
+    }, {
+      value: 130183,
+      label: '鏅嬪窞甯�'
+    }, {
+      value: 130184,
+      label: '鏂颁箰甯�'
+    }]
+  }, {
+    value: 1302,
+    label: '鍞愬北甯�',
+    children: [{
+      value: 130202,
+      label: '璺崡鍖�'
+    }, {
+      value: 130203,
+      label: '璺寳鍖�'
+    }, {
+      value: 130204,
+      label: '鍙ゅ喍鍖�'
+    }, {
+      value: 130205,
+      label: '寮�骞冲尯'
+    }, {
+      value: 130207,
+      label: '涓板崡鍖�'
+    }, {
+      value: 130208,
+      label: '涓版鼎鍖�'
+    }, {
+      value: 130209,
+      label: '鏇瑰鐢稿尯'
+    }, {
+      value: 130223,
+      label: '婊﹀幙'
+    }, {
+      value: 130224,
+      label: '婊﹀崡鍘�'
+    }, {
+      value: 130225,
+      label: '涔愪涵鍘�'
+    }, {
+      value: 130227,
+      label: '杩佽タ鍘�'
+    }, {
+      value: 130229,
+      label: '鐜夌敯鍘�'
+    }, {
+      value: 130281,
+      label: '閬靛寲甯�'
+    }, {
+      value: 130283,
+      label: '杩佸畨甯�'
+    }]
+  }, {
+    value: 1303,
+    label: '绉︾殗宀涘競',
+    children: [{
+      value: 130302,
+      label: '娴锋腐鍖�'
+    }, {
+      value: 130303,
+      label: '灞辨捣鍏冲尯'
+    }, {
+      value: 130304,
+      label: '鍖楁埓娌冲尯'
+    }, {
+      value: 130306,
+      label: '鎶氬畞鍖�'
+    }, {
+      value: 130321,
+      label: '闈掗緳婊℃棌鑷不鍘�'
+    }, {
+      value: 130322,
+      label: '鏄岄粠鍘�'
+    }, {
+      value: 130324,
+      label: '鍗㈤緳鍘�'
+    }]
+  }, {
+    value: 1304,
+    label: '閭兏甯�',
+    children: [{
+      value: 130402,
+      label: '閭北鍖�'
+    }, {
+      value: 130403,
+      label: '涓涘彴鍖�'
+    }, {
+      value: 130404,
+      label: '澶嶅叴鍖�'
+    }, {
+      value: 130406,
+      label: '宄板嘲鐭垮尯'
+    }, {
+      value: 130421,
+      label: '閭兏鍘�'
+    }, {
+      value: 130423,
+      label: '涓存汲鍘�'
+    }, {
+      value: 130424,
+      label: '鎴愬畨鍘�'
+    }, {
+      value: 130425,
+      label: '澶у悕鍘�'
+    }, {
+      value: 130426,
+      label: '娑夊幙'
+    }, {
+      value: 130427,
+      label: '纾佸幙'
+    }, {
+      value: 130428,
+      label: '鑲ヤ埂鍘�'
+    }, {
+      value: 130429,
+      label: '姘稿勾鍘�'
+    }, {
+      value: 130430,
+      label: '閭卞幙'
+    }, {
+      value: 130431,
+      label: '楦℃辰鍘�'
+    }, {
+      value: 130432,
+      label: '骞垮钩鍘�'
+    }, {
+      value: 130433,
+      label: '棣嗛櫠鍘�'
+    }, {
+      value: 130434,
+      label: '榄忓幙'
+    }, {
+      value: 130435,
+      label: '鏇插懆鍘�'
+    }, {
+      value: 130481,
+      label: '姝﹀畨甯�'
+    }]
+  }, {
+    value: 1305,
+    label: '閭㈠彴甯�',
+    children: [{
+      value: 130502,
+      label: '妗ヤ笢鍖�'
+    }, {
+      value: 130503,
+      label: '妗ヨタ鍖�'
+    }, {
+      value: 130521,
+      label: '閭㈠彴鍘�'
+    }, {
+      value: 130522,
+      label: '涓村煄鍘�'
+    }, {
+      value: 130523,
+      label: '鍐呬笜鍘�'
+    }, {
+      value: 130524,
+      label: '鏌忎埂鍘�'
+    }, {
+      value: 130525,
+      label: '闅嗗哀鍘�'
+    }, {
+      value: 130526,
+      label: '浠诲幙'
+    }, {
+      value: 130527,
+      label: '鍗楀拰鍘�'
+    }, {
+      value: 130528,
+      label: '瀹佹檵鍘�'
+    }, {
+      value: 130529,
+      label: '宸ㄩ箍鍘�'
+    }, {
+      value: 130530,
+      label: '鏂版渤鍘�'
+    }, {
+      value: 130531,
+      label: '骞垮畻鍘�'
+    }, {
+      value: 130532,
+      label: '骞充埂鍘�'
+    }, {
+      value: 130533,
+      label: '濞佸幙'
+    }, {
+      value: 130534,
+      label: '娓呮渤鍘�'
+    }, {
+      value: 130535,
+      label: '涓磋タ鍘�'
+    }, {
+      value: 130581,
+      label: '鍗楀甯�'
+    }, {
+      value: 130582,
+      label: '娌欐渤甯�'
+    }]
+  }, {
+    value: 1306,
+    label: '淇濆畾甯�',
+    children: [{
+      value: 130602,
+      label: '绔炵鍖�'
+    }, {
+      value: 130606,
+      label: '鑾叉睜鍖�'
+    }, {
+      value: 130607,
+      label: '婊″煄鍖�'
+    }, {
+      value: 130608,
+      label: '娓呰嫅鍖�'
+    }, {
+      value: 130609,
+      label: '寰愭按鍖�'
+    }, {
+      value: 130623,
+      label: '娑炴按鍘�'
+    }, {
+      value: 130624,
+      label: '闃滃钩鍘�'
+    }, {
+      value: 130626,
+      label: '瀹氬叴鍘�'
+    }, {
+      value: 130627,
+      label: '鍞愬幙'
+    }, {
+      value: 130628,
+      label: '楂橀槼鍘�'
+    }, {
+      value: 130629,
+      label: '瀹瑰煄鍘�'
+    }, {
+      value: 130630,
+      label: '娑炴簮鍘�'
+    }, {
+      value: 130631,
+      label: '鏈涢兘鍘�'
+    }, {
+      value: 130632,
+      label: '瀹夋柊鍘�'
+    }, {
+      value: 130633,
+      label: '鏄撳幙'
+    }, {
+      value: 130634,
+      label: '鏇查槼鍘�'
+    }, {
+      value: 130635,
+      label: '锠″幙'
+    }, {
+      value: 130636,
+      label: '椤哄钩鍘�'
+    }, {
+      value: 130637,
+      label: '鍗氶噹鍘�'
+    }, {
+      value: 130638,
+      label: '闆勫幙'
+    }, {
+      value: 130681,
+      label: '娑垮窞甯�'
+    }, {
+      value: 130683,
+      label: '瀹夊浗甯�'
+    }, {
+      value: 130684,
+      label: '楂樼搴楀競'
+    }]
+  }, {
+    value: 1307,
+    label: '寮犲鍙e競',
+    children: [{
+      value: 130702,
+      label: '妗ヤ笢鍖�'
+    }, {
+      value: 130703,
+      label: '妗ヨタ鍖�'
+    }, {
+      value: 130705,
+      label: '瀹e寲鍖�'
+    }, {
+      value: 130706,
+      label: '涓嬭姳鍥尯'
+    }, {
+      value: 130708,
+      label: '涓囧叏鍖�'
+    }, {
+      value: 130709,
+      label: '宕囩ぜ鍖�'
+    }, {
+      value: 130722,
+      label: '寮犲寳鍘�'
+    }, {
+      value: 130723,
+      label: '搴蜂繚鍘�'
+    }, {
+      value: 130724,
+      label: '娌芥簮鍘�'
+    }, {
+      value: 130725,
+      label: '灏氫箟鍘�'
+    }, {
+      value: 130726,
+      label: '钄氬幙'
+    }, {
+      value: 130727,
+      label: '闃冲師鍘�'
+    }, {
+      value: 130728,
+      label: '鎬�瀹夊幙'
+    }, {
+      value: 130730,
+      label: '鎬�鏉ュ幙'
+    }, {
+      value: 130731,
+      label: '娑块箍鍘�'
+    }, {
+      value: 130732,
+      label: '璧ゅ煄鍘�'
+    }]
+  }, {
+    value: 1308,
+    label: '鎵垮痉甯�',
+    children: [{
+      value: 130802,
+      label: '鍙屾ˉ鍖�'
+    }, {
+      value: 130803,
+      label: '鍙屾沪鍖�'
+    }, {
+      value: 130804,
+      label: '楣版墜钀ュ瓙鐭垮尯'
+    }, {
+      value: 130821,
+      label: '鎵垮痉鍘�'
+    }, {
+      value: 130822,
+      label: '鍏撮殕鍘�'
+    }, {
+      value: 130823,
+      label: '骞虫硥鍘�'
+    }, {
+      value: 130824,
+      label: '婊﹀钩鍘�'
+    }, {
+      value: 130825,
+      label: '闅嗗寲鍘�'
+    }, {
+      value: 130826,
+      label: '涓板畞婊℃棌鑷不鍘�'
+    }, {
+      value: 130827,
+      label: '瀹藉煄婊℃棌鑷不鍘�'
+    }, {
+      value: 130828,
+      label: '鍥村満婊℃棌钂欏彜鏃忚嚜娌诲幙'
+    }]
+  }, {
+    value: 1309,
+    label: '娌у窞甯�',
+    children: [{
+      value: 130902,
+      label: '鏂板崕鍖�'
+    }, {
+      value: 130903,
+      label: '杩愭渤鍖�'
+    }, {
+      value: 130921,
+      label: '娌у幙'
+    }, {
+      value: 130922,
+      label: '闈掑幙'
+    }, {
+      value: 130923,
+      label: '涓滃厜鍘�'
+    }, {
+      value: 130924,
+      label: '娴峰叴鍘�'
+    }, {
+      value: 130925,
+      label: '鐩愬北鍘�'
+    }, {
+      value: 130926,
+      label: '鑲冨畞鍘�'
+    }, {
+      value: 130927,
+      label: '鍗楃毊鍘�'
+    }, {
+      value: 130928,
+      label: '鍚存ˉ鍘�'
+    }, {
+      value: 130929,
+      label: '鐚幙'
+    }, {
+      value: 130930,
+      label: '瀛熸潙鍥炴棌鑷不鍘�'
+    }, {
+      value: 130981,
+      label: '娉婂ご甯�'
+    }, {
+      value: 130982,
+      label: '浠讳笜甯�'
+    }, {
+      value: 130983,
+      label: '榛勯獏甯�'
+    }, {
+      value: 130984,
+      label: '娌抽棿甯�'
+    }]
+  }, {
+    value: 1310,
+    label: '寤婂潑甯�',
+    children: [{
+      value: 131002,
+      label: '瀹夋鍖�'
+    }, {
+      value: 131003,
+      label: '骞块槼鍖�'
+    }, {
+      value: 131022,
+      label: '鍥哄畨鍘�'
+    }, {
+      value: 131023,
+      label: '姘告竻鍘�'
+    }, {
+      value: 131024,
+      label: '棣欐渤鍘�'
+    }, {
+      value: 131025,
+      label: '澶у煄鍘�'
+    }, {
+      value: 131026,
+      label: '鏂囧畨鍘�'
+    }, {
+      value: 131028,
+      label: '澶у巶鍥炴棌鑷不鍘�'
+    }, {
+      value: 131081,
+      label: '闇稿窞甯�'
+    }, {
+      value: 131082,
+      label: '涓夋渤甯�'
+    }]
+  }, {
+    value: 1311,
+    label: '琛℃按甯�',
+    children: [{
+      value: 131102,
+      label: '妗冨煄鍖�'
+    }, {
+      value: 131103,
+      label: '鍐�宸炲尯'
+    }, {
+      value: 131121,
+      label: '鏋e己鍘�'
+    }, {
+      value: 131122,
+      label: '姝﹂倯鍘�'
+    }, {
+      value: 131123,
+      label: '姝﹀己鍘�'
+    }, {
+      value: 131124,
+      label: '楗堕槼鍘�'
+    }, {
+      value: 131125,
+      label: '瀹夊钩鍘�'
+    }, {
+      value: 131126,
+      label: '鏁呭煄鍘�'
+    }, {
+      value: 131127,
+      label: '鏅幙'
+    }, {
+      value: 131128,
+      label: '闃滃煄鍘�'
+    }, {
+      value: 131182,
+      label: '娣卞窞甯�'
+    }]
+  }] // 鍚屾灏忕▼搴� 鍒犻櫎 , { value: 1390,label: '鐪佺洿杈栧幙绾ц鏀垮尯鍒�',children: [{value: 139001,label: '瀹氬窞甯�'}, {value: 139002,label: '杈涢泦甯�'}]}
+}, {
+  value: 14,
+  label: '灞辫タ鐪�',
+  children: [{
+    value: 1401,
+    label: '澶師甯�',
+    children: [{
+      value: 140105,
+      label: '灏忓簵鍖�'
+    }, {
+      value: 140106,
+      label: '杩庢辰鍖�'
+    }, {
+      value: 140107,
+      label: '鏉忚姳宀尯'
+    }, {
+      value: 140108,
+      label: '灏栬崏鍧尯'
+    }, {
+      value: 140109,
+      label: '涓囨煆鏋楀尯'
+    }, {
+      value: 140110,
+      label: '鏅嬫簮鍖�'
+    }, {
+      value: 140121,
+      label: '娓呭緪鍘�'
+    }, {
+      value: 140122,
+      label: '闃虫洸鍘�'
+    }, {
+      value: 140123,
+      label: '濞勭儲鍘�'
+    }, {
+      value: 140181,
+      label: '鍙や氦甯�'
+    }]
+  }, {
+    value: 1402,
+    label: '澶у悓甯�',
+    children: [{
+      value: 140202,
+      label: '鍩庡尯'
+    }, {
+      value: 140203,
+      label: '鐭垮尯'
+    }, {
+      value: 140211,
+      label: '鍗楅儕鍖�'
+    }, {
+      value: 140212,
+      label: '鏂拌崳鍖�'
+    }, {
+      value: 140221,
+      label: '闃抽珮鍘�'
+    }, {
+      value: 140222,
+      label: '澶╅晣鍘�'
+    }, {
+      value: 140223,
+      label: '骞跨伒鍘�'
+    }, {
+      value: 140224,
+      label: '鐏典笜鍘�'
+    }, {
+      value: 140225,
+      label: '娴戞簮鍘�'
+    }, {
+      value: 140226,
+      label: '宸︿簯鍘�'
+    }, {
+      value: 140227,
+      label: '澶у悓鍘�'
+    }]
+  }, {
+    value: 1403,
+    label: '闃虫硥甯�',
+    children: [{
+      value: 140302,
+      label: '鍩庡尯'
+    }, {
+      value: 140303,
+      label: '鐭垮尯'
+    }, {
+      value: 140311,
+      label: '閮婂尯'
+    }, {
+      value: 140321,
+      label: '骞冲畾鍘�'
+    }, {
+      value: 140322,
+      label: '鐩傚幙'
+    }]
+  }, {
+    value: 1404,
+    label: '闀挎不甯�',
+    children: [{
+      value: 140402,
+      label: '鍩庡尯'
+    }, {
+      value: 140411,
+      label: '閮婂尯'
+    }, {
+      value: 140421,
+      label: '闀挎不鍘�'
+    }, {
+      value: 140423,
+      label: '瑗勫灒鍘�'
+    }, {
+      value: 140424,
+      label: '灞暀鍘�'
+    }, {
+      value: 140425,
+      label: '骞抽『鍘�'
+    }, {
+      value: 140426,
+      label: '榛庡煄鍘�'
+    }, {
+      value: 140427,
+      label: '澹跺叧鍘�'
+    }, {
+      value: 140428,
+      label: '闀垮瓙鍘�'
+    }, {
+      value: 140429,
+      label: '姝︿埂鍘�'
+    }, {
+      value: 140430,
+      label: '娌佸幙'
+    }, {
+      value: 140431,
+      label: '娌佹簮鍘�'
+    }, {
+      value: 140481,
+      label: '娼炲煄甯�'
+    }]
+  }, {
+    value: 1405,
+    label: '鏅嬪煄甯�',
+    children: [{
+      value: 140502,
+      label: '鍩庡尯'
+    }, {
+      value: 140521,
+      label: '娌佹按鍘�'
+    }, {
+      value: 140522,
+      label: '闃冲煄鍘�'
+    }, {
+      value: 140524,
+      label: '闄靛窛鍘�'
+    }, {
+      value: 140525,
+      label: '娉藉窞鍘�'
+    }, {
+      value: 140581,
+      label: '楂樺钩甯�'
+    }]
+  }, {
+    value: 1406,
+    label: '鏈斿窞甯�',
+    children: [{
+      value: 140602,
+      label: '鏈斿煄鍖�'
+    }, {
+      value: 140603,
+      label: '骞抽瞾鍖�'
+    }, {
+      value: 140621,
+      label: '灞遍槾鍘�'
+    }, {
+      value: 140622,
+      label: '搴斿幙'
+    }, {
+      value: 140623,
+      label: '鍙崇帀鍘�'
+    }, {
+      value: 140624,
+      label: '鎬�浠佸幙'
+    }]
+  }, {
+    value: 1407,
+    label: '鏅嬩腑甯�',
+    children: [{
+      value: 140702,
+      label: '姒嗘鍖�'
+    }, {
+      value: 140721,
+      label: '姒嗙ぞ鍘�'
+    }, {
+      value: 140722,
+      label: '宸︽潈鍘�'
+    }, {
+      value: 140723,
+      label: '鍜岄『鍘�'
+    }, {
+      value: 140724,
+      label: '鏄旈槼鍘�'
+    }, {
+      value: 140725,
+      label: '瀵块槼鍘�'
+    }, {
+      value: 140726,
+      label: '澶胺鍘�'
+    }, {
+      value: 140727,
+      label: '绁佸幙'
+    }, {
+      value: 140728,
+      label: '骞抽仴鍘�'
+    }, {
+      value: 140729,
+      label: '鐏电煶鍘�'
+    }, {
+      value: 140781,
+      label: '浠嬩紤甯�'
+    }]
+  }, {
+    value: 1408,
+    label: '杩愬煄甯�',
+    children: [{
+      value: 140802,
+      label: '鐩愭箹鍖�'
+    }, {
+      value: 140821,
+      label: '涓寸寳鍘�'
+    }, {
+      value: 140822,
+      label: '涓囪崳鍘�'
+    }, {
+      value: 140823,
+      label: '闂诲枩鍘�'
+    }, {
+      value: 140824,
+      label: '绋峰北鍘�'
+    }, {
+      value: 140825,
+      label: '鏂扮粵鍘�'
+    }, {
+      value: 140826,
+      label: '缁涘幙'
+    }, {
+      value: 140827,
+      label: '鍨f洸鍘�'
+    }, {
+      value: 140828,
+      label: '澶忓幙'
+    }, {
+      value: 140829,
+      label: '骞抽檰鍘�'
+    }, {
+      value: 140830,
+      label: '鑺煄鍘�'
+    }, {
+      value: 140881,
+      label: '姘告祹甯�'
+    }, {
+      value: 140882,
+      label: '娌虫触甯�'
+    }]
+  }, {
+    value: 1409,
+    label: '蹇诲窞甯�',
+    children: [{
+      value: 140902,
+      label: '蹇诲簻鍖�'
+    }, {
+      value: 140921,
+      label: '瀹氳鍘�'
+    }, {
+      value: 140922,
+      label: '浜斿彴鍘�'
+    }, {
+      value: 140923,
+      label: '浠e幙'
+    }, {
+      value: 140924,
+      label: '绻佸硻鍘�'
+    }, {
+      value: 140925,
+      label: '瀹佹鍘�'
+    }, {
+      value: 140926,
+      label: '闈欎箰鍘�'
+    }, {
+      value: 140927,
+      label: '绁炴睜鍘�'
+    }, {
+      value: 140928,
+      label: '浜斿鍘�'
+    }, {
+      value: 140929,
+      label: '宀㈠矚鍘�'
+    }, {
+      value: 140930,
+      label: '娌虫洸鍘�'
+    }, {
+      value: 140931,
+      label: '淇濆痉鍘�'
+    }, {
+      value: 140932,
+      label: '鍋忓叧鍘�'
+    }, {
+      value: 140981,
+      label: '鍘熷钩甯�'
+    }]
+  }, {
+    value: 1410,
+    label: '涓存本甯�',
+    children: [{
+      value: 141002,
+      label: '灏ч兘鍖�'
+    }, {
+      value: 141021,
+      label: '鏇叉矁鍘�'
+    }, {
+      value: 141022,
+      label: '缈煎煄鍘�'
+    }, {
+      value: 141023,
+      label: '瑗勬本鍘�'
+    }, {
+      value: 141024,
+      label: '娲礊鍘�'
+    }, {
+      value: 141025,
+      label: '鍙ゅ幙'
+    }, {
+      value: 141026,
+      label: '瀹夋辰鍘�'
+    }, {
+      value: 141027,
+      label: '娴北鍘�'
+    }, {
+      value: 141028,
+      label: '鍚夊幙'
+    }, {
+      value: 141029,
+      label: '涔″畞鍘�'
+    }, {
+      value: 141030,
+      label: '澶у畞鍘�'
+    }, {
+      value: 141031,
+      label: '闅板幙'
+    }, {
+      value: 141032,
+      label: '姘稿拰鍘�'
+    }, {
+      value: 141033,
+      label: '钂插幙'
+    }, {
+      value: 141034,
+      label: '姹捐タ鍘�'
+    }, {
+      value: 141081,
+      label: '渚┈甯�'
+    }, {
+      value: 141082,
+      label: '闇嶅窞甯�'
+    }]
+  }, {
+    value: 1411,
+    label: '鍚曟甯�',
+    children: [{
+      value: 141102,
+      label: '绂荤煶鍖�'
+    }, {
+      value: 141121,
+      label: '鏂囨按鍘�'
+    }, {
+      value: 141122,
+      label: '浜ゅ煄鍘�'
+    }, {
+      value: 141123,
+      label: '鍏村幙'
+    }, {
+      value: 141124,
+      label: '涓村幙'
+    }, {
+      value: 141125,
+      label: '鏌虫灄鍘�'
+    }, {
+      value: 141126,
+      label: '鐭虫ゼ鍘�'
+    }, {
+      value: 141127,
+      label: '宀氬幙'
+    }, {
+      value: 141128,
+      label: '鏂瑰北鍘�'
+    }, {
+      value: 141129,
+      label: '涓槼鍘�'
+    }, {
+      value: 141130,
+      label: '浜ゅ彛鍘�'
+    }, {
+      value: 141181,
+      label: '瀛濅箟甯�'
+    }, {
+      value: 141182,
+      label: '姹鹃槼甯�'
+    }]
+  }]
+}, {
+  value: 15,
+  label: '鍐呰挋鍙よ嚜娌诲尯',
+  children: [{
+    value: 1501,
+    label: '鍛煎拰娴╃壒甯�',
+    children: [{
+      value: 150102,
+      label: '鏂板煄鍖�'
+    }, {
+      value: 150103,
+      label: '鍥炴皯鍖�'
+    }, {
+      value: 150104,
+      label: '鐜夋硥鍖�'
+    }, {
+      value: 150105,
+      label: '璧涚綍鍖�'
+    }, {
+      value: 150121,
+      label: '鍦熼粯鐗瑰乏鏃�'
+    }, {
+      value: 150122,
+      label: '鎵樺厠鎵樺幙'
+    }, {
+      value: 150123,
+      label: '鍜屾灄鏍煎皵鍘�'
+    }, {
+      value: 150124,
+      label: '娓呮按娌冲幙'
+    }, {
+      value: 150125,
+      label: '姝﹀窛鍘�'
+    }]
+  }, {
+    value: 1502,
+    label: '鍖呭ご甯�',
+    children: [{
+      value: 150202,
+      label: '涓滄渤鍖�'
+    }, {
+      value: 150203,
+      label: '鏄嗛兘浠戝尯'
+    }, {
+      value: 150204,
+      label: '闈掑北鍖�'
+    }, {
+      value: 150205,
+      label: '鐭虫嫄鍖�'
+    }, {
+      value: 150206,
+      label: '鐧戒簯閯傚崥鐭垮尯'
+    }, {
+      value: 150207,
+      label: '涔濆師鍖�'
+    }, {
+      value: 150221,
+      label: '鍦熼粯鐗瑰彸鏃�'
+    }, {
+      value: 150222,
+      label: '鍥洪槼鍘�'
+    }, {
+      value: 150223,
+      label: '杈惧皵缃曡寕鏄庡畨鑱斿悎鏃�'
+    }]
+  }, {
+    value: 1503,
+    label: '涔屾捣甯�',
+    children: [{
+      value: 150302,
+      label: '娴峰媰婀惧尯'
+    }, {
+      value: 150303,
+      label: '娴峰崡鍖�'
+    }, {
+      value: 150304,
+      label: '涔岃揪鍖�'
+    }]
+  }, {
+    value: 1504,
+    label: '璧ゅ嘲甯�',
+    children: [{
+      value: 150402,
+      label: '绾㈠北鍖�'
+    }, {
+      value: 150403,
+      label: '鍏冨疂灞卞尯'
+    }, {
+      value: 150404,
+      label: '鏉惧北鍖�'
+    }, {
+      value: 150421,
+      label: '闃块瞾绉戝皵娌佹棗'
+    }, {
+      value: 150422,
+      label: '宸存灄宸︽棗'
+    }, {
+      value: 150423,
+      label: '宸存灄鍙虫棗'
+    }, {
+      value: 150424,
+      label: '鏋楄タ鍘�'
+    }, {
+      value: 150425,
+      label: '鍏嬩粈鍏嬭吘鏃�'
+    }, {
+      value: 150426,
+      label: '缈佺墰鐗规棗'
+    }, {
+      value: 150428,
+      label: '鍠�鍠囨瞾鏃�'
+    }, {
+      value: 150429,
+      label: '瀹佸煄鍘�'
+    }, {
+      value: 150430,
+      label: '鏁栨眽鏃�'
+    }]
+  }, {
+    value: 1505,
+    label: '閫氳窘甯�',
+    children: [{
+      value: 150502,
+      label: '绉戝皵娌佸尯'
+    }, {
+      value: 150521,
+      label: '绉戝皵娌佸乏缈间腑鏃�'
+    }, {
+      value: 150522,
+      label: '绉戝皵娌佸乏缈煎悗鏃�'
+    }, {
+      value: 150523,
+      label: '寮�椴佸幙'
+    }, {
+      value: 150524,
+      label: '搴撲鸡鏃�'
+    }, {
+      value: 150525,
+      label: '濂堟浖鏃�'
+    }, {
+      value: 150526,
+      label: '鎵庨瞾鐗规棗'
+    }, {
+      value: 150581,
+      label: '闇嶆灄閮嫆甯�'
+    }]
+  }, {
+    value: 1506,
+    label: '閯傚皵澶氭柉甯�',
+    children: [{
+      value: 150602,
+      label: '涓滆儨鍖�'
+    }, {
+      value: 150603,
+      label: '搴峰反浠�鍖�'
+    }, {
+      value: 150621,
+      label: '杈炬媺鐗规棗'
+    }, {
+      value: 150622,
+      label: '鍑嗘牸灏旀棗'
+    }, {
+      value: 150623,
+      label: '閯傛墭鍏嬪墠鏃�'
+    }, {
+      value: 150624,
+      label: '閯傛墭鍏嬫棗'
+    }, {
+      value: 150625,
+      label: '鏉敠鏃�'
+    }, {
+      value: 150626,
+      label: '涔屽鏃�'
+    }, {
+      value: 150627,
+      label: '浼婇噾闇嶆礇鏃�'
+    }]
+  }, {
+    value: 1507,
+    label: '鍛间鸡璐濆皵甯�',
+    children: [{
+      value: 150702,
+      label: '娴锋媺灏斿尯'
+    }, {
+      value: 150703,
+      label: '鎵庤祲璇哄皵鍖�'
+    }, {
+      value: 150721,
+      label: '闃胯崳鏃�'
+    }, {
+      value: 150722,
+      label: '鑾姏杈剧摝杈炬枴灏旀棌鑷不鏃�'
+    }, {
+      value: 150723,
+      label: '閯備鸡鏄ヨ嚜娌绘棗'
+    }, {
+      value: 150724,
+      label: '閯傛俯鍏嬫棌鑷不鏃�'
+    }, {
+      value: 150725,
+      label: '闄堝反灏旇檸鏃�'
+    }, {
+      value: 150726,
+      label: '鏂板反灏旇檸宸︽棗'
+    }, {
+      value: 150727,
+      label: '鏂板反灏旇檸鍙虫棗'
+    }, {
+      value: 150781,
+      label: '婊℃床閲屽競'
+    }, {
+      value: 150782,
+      label: '鐗欏厠鐭冲競'
+    }, {
+      value: 150783,
+      label: '鎵庡叞灞競'
+    }, {
+      value: 150784,
+      label: '棰濆皵鍙ょ撼甯�'
+    }, {
+      value: 150785,
+      label: '鏍规渤甯�'
+    }]
+  }, {
+    value: 1508,
+    label: '宸村溅娣栧皵甯�',
+    children: [{
+      value: 150802,
+      label: '涓存渤鍖�'
+    }, {
+      value: 150821,
+      label: '浜斿師鍘�'
+    }, {
+      value: 150822,
+      label: '纾村彛鍘�'
+    }, {
+      value: 150823,
+      label: '涔屾媺鐗瑰墠鏃�'
+    }, {
+      value: 150824,
+      label: '涔屾媺鐗逛腑鏃�'
+    }, {
+      value: 150825,
+      label: '涔屾媺鐗瑰悗鏃�'
+    }, {
+      value: 150826,
+      label: '鏉敠鍚庢棗'
+    }]
+  }, {
+    value: 1509,
+    label: '涔屽叞瀵熷竷甯�',
+    children: [{
+      value: 150902,
+      label: '闆嗗畞鍖�'
+    }, {
+      value: 150921,
+      label: '鍗撹祫鍘�'
+    }, {
+      value: 150922,
+      label: '鍖栧痉鍘�'
+    }, {
+      value: 150923,
+      label: '鍟嗛兘鍘�'
+    }, {
+      value: 150924,
+      label: '鍏村拰鍘�'
+    }, {
+      value: 150925,
+      label: '鍑夊煄鍘�'
+    }, {
+      value: 150926,
+      label: '瀵熷搱灏斿彸缈煎墠鏃�'
+    }, {
+      value: 150927,
+      label: '瀵熷搱灏斿彸缈间腑鏃�'
+    }, {
+      value: 150928,
+      label: '瀵熷搱灏斿彸缈煎悗鏃�'
+    }, {
+      value: 150929,
+      label: '鍥涘瓙鐜嬫棗'
+    }, {
+      value: 150981,
+      label: '涓伴晣甯�'
+    }]
+  }, {
+    value: 1522,
+    label: '鍏村畨鐩�',
+    children: [{
+      value: 152201,
+      label: '涔屽叞娴╃壒甯�'
+    }, {
+      value: 152202,
+      label: '闃垮皵灞卞競'
+    }, {
+      value: 152221,
+      label: '绉戝皵娌佸彸缈煎墠鏃�'
+    }, {
+      value: 152222,
+      label: '绉戝皵娌佸彸缈间腑鏃�'
+    }, {
+      value: 152223,
+      label: '鎵庤祲鐗规棗'
+    }, {
+      value: 152224,
+      label: '绐佹硥鍘�'
+    }]
+  }, {
+    value: 1525,
+    label: '閿℃灄閮嫆鐩�',
+    children: [{
+      value: 152501,
+      label: '浜岃繛娴╃壒甯�'
+    }, {
+      value: 152502,
+      label: '閿℃灄娴╃壒甯�'
+    }, {
+      value: 152522,
+      label: '闃垮反鍢庢棗'
+    }, {
+      value: 152523,
+      label: '鑻忓凹鐗瑰乏鏃�'
+    }, {
+      value: 152524,
+      label: '鑻忓凹鐗瑰彸鏃�'
+    }, {
+      value: 152525,
+      label: '涓滀箤鐝犵﹩娌佹棗'
+    }, {
+      value: 152526,
+      label: '瑗夸箤鐝犵﹩娌佹棗'
+    }, {
+      value: 152527,
+      label: '澶粏瀵烘棗'
+    }, {
+      value: 152528,
+      label: '闀堕粍鏃�'
+    }, {
+      value: 152529,
+      label: '姝i暥鐧芥棗'
+    }, {
+      value: 152530,
+      label: '姝h摑鏃�'
+    }, {
+      value: 152531,
+      label: '澶氫鸡鍘�'
+    }]
+  }, {
+    value: 1529,
+    label: '闃挎媺鍠勭洘',
+    children: [{
+      value: 152921,
+      label: '闃挎媺鍠勫乏鏃�'
+    }, {
+      value: 152922,
+      label: '闃挎媺鍠勫彸鏃�'
+    }, {
+      value: 152923,
+      label: '棰濇祹绾虫棗'
+    }]
+  }]
+}, {
+  value: 21,
+  label: '杈藉畞鐪�',
+  children: [{
+    value: 2101,
+    label: '娌堥槼甯�',
+    children: [{
+      value: 210102,
+      label: '鍜屽钩鍖�'
+    }, {
+      value: 210103,
+      label: '娌堟渤鍖�'
+    }, {
+      value: 210104,
+      label: '澶т笢鍖�'
+    }, {
+      value: 210105,
+      label: '鐨囧鍖�'
+    }, {
+      value: 210106,
+      label: '閾佽タ鍖�'
+    }, {
+      value: 210111,
+      label: '鑻忓灞尯'
+    }, {
+      value: 210112,
+      label: '娴戝崡鍖�'
+    }, {
+      value: 210113,
+      label: '娌堝寳鏂板尯'
+    }, {
+      value: 210114,
+      label: '浜庢椽鍖�'
+    }, {
+      value: 210115,
+      label: '杈戒腑鍖�'
+    }, {
+      value: 210123,
+      label: '搴峰钩鍘�'
+    }, {
+      value: 210124,
+      label: '娉曞簱鍘�'
+    }, {
+      value: 210181,
+      label: '鏂版皯甯�'
+    }]
+  }, {
+    value: 2102,
+    label: '澶ц繛甯�',
+    children: [{
+      value: 210202,
+      label: '涓北鍖�'
+    }, {
+      value: 210203,
+      label: '瑗垮矖鍖�'
+    }, {
+      value: 210204,
+      label: '娌欐渤鍙e尯'
+    }, {
+      value: 210211,
+      label: '鐢樹簳瀛愬尯'
+    }, {
+      value: 210212,
+      label: '鏃呴『鍙e尯'
+    }, {
+      value: 210213,
+      label: '閲戝窞鍖�'
+    }, {
+      value: 210214,
+      label: '鏅叞搴楀尯'
+    }, {
+      value: 210224,
+      label: '闀挎捣鍘�'
+    }, {
+      value: 210281,
+      label: '鐡︽埧搴楀競'
+    }, {
+      value: 210283,
+      label: '搴勬渤甯�'
+    }]
+  }, {
+    value: 2103,
+    label: '闉嶅北甯�',
+    children: [{
+      value: 210302,
+      label: '閾佷笢鍖�'
+    }, {
+      value: 210303,
+      label: '閾佽タ鍖�'
+    }, {
+      value: 210304,
+      label: '绔嬪北鍖�'
+    }, {
+      value: 210311,
+      label: '鍗冨北鍖�'
+    }, {
+      value: 210321,
+      label: '鍙板畨鍘�'
+    }, {
+      value: 210323,
+      label: '宀博婊℃棌鑷不鍘�'
+    }, {
+      value: 210381,
+      label: '娴峰煄甯�'
+    }]
+  }, {
+    value: 2104,
+    label: '鎶氶『甯�',
+    children: [{
+      value: 210402,
+      label: '鏂版姎鍖�'
+    }, {
+      value: 210403,
+      label: '涓滄床鍖�'
+    }, {
+      value: 210404,
+      label: '鏈涜姳鍖�'
+    }, {
+      value: 210411,
+      label: '椤哄煄鍖�'
+    }, {
+      value: 210421,
+      label: '鎶氶『鍘�'
+    }, {
+      value: 210422,
+      label: '鏂板婊℃棌鑷不鍘�'
+    }, {
+      value: 210423,
+      label: '娓呭師婊℃棌鑷不鍘�'
+    }]
+  }, {
+    value: 2105,
+    label: '鏈邯甯�',
+    children: [{
+      value: 210502,
+      label: '骞冲北鍖�'
+    }, {
+      value: 210503,
+      label: '婧箹鍖�'
+    }, {
+      value: 210504,
+      label: '鏄庡北鍖�'
+    }, {
+      value: 210505,
+      label: '鍗楄姮鍖�'
+    }, {
+      value: 210521,
+      label: '鏈邯婊℃棌鑷不鍘�'
+    }, {
+      value: 210522,
+      label: '妗撲粊婊℃棌鑷不鍘�'
+    }]
+  }, {
+    value: 2106,
+    label: '涓逛笢甯�',
+    children: [{
+      value: 210602,
+      label: '鍏冨疂鍖�'
+    }, {
+      value: 210603,
+      label: '鎸叴鍖�'
+    }, {
+      value: 210604,
+      label: '鎸畨鍖�'
+    }, {
+      value: 210624,
+      label: '瀹界敻婊℃棌鑷不鍘�'
+    }, {
+      value: 210681,
+      label: '涓滄腐甯�'
+    }, {
+      value: 210682,
+      label: '鍑ゅ煄甯�'
+    }]
+  }, {
+    value: 2107,
+    label: '閿﹀窞甯�',
+    children: [{
+      value: 210702,
+      label: '鍙ゅ鍖�'
+    }, {
+      value: 210703,
+      label: '鍑屾渤鍖�'
+    }, {
+      value: 210711,
+      label: '澶拰鍖�'
+    }, {
+      value: 210726,
+      label: '榛戝北鍘�'
+    }, {
+      value: 210727,
+      label: '涔夊幙'
+    }, {
+      value: 210781,
+      label: '鍑屾捣甯�'
+    }, {
+      value: 210782,
+      label: '鍖楅晣甯�'
+    }]
+  }, {
+    value: 2108,
+    label: '钀ュ彛甯�',
+    children: [{
+      value: 210802,
+      label: '绔欏墠鍖�'
+    }, {
+      value: 210803,
+      label: '瑗垮競鍖�'
+    }, {
+      value: 210804,
+      label: '椴呴奔鍦堝尯'
+    }, {
+      value: 210811,
+      label: '鑰佽竟鍖�'
+    }, {
+      value: 210881,
+      label: '鐩栧窞甯�'
+    }, {
+      value: 210882,
+      label: '澶х煶妗ュ競'
+    }]
+  }, {
+    value: 2109,
+    label: '闃滄柊甯�',
+    children: [{
+      value: 210902,
+      label: '娴峰窞鍖�'
+    }, {
+      value: 210903,
+      label: '鏂伴偙鍖�'
+    }, {
+      value: 210904,
+      label: '澶钩鍖�'
+    }, {
+      value: 210905,
+      label: '娓呮渤闂ㄥ尯'
+    }, {
+      value: 210911,
+      label: '缁嗘渤鍖�'
+    }, {
+      value: 210921,
+      label: '闃滄柊钂欏彜鏃忚嚜娌诲幙'
+    }, {
+      value: 210922,
+      label: '褰版鍘�'
+    }]
+  }, {
+    value: 2110,
+    label: '杈介槼甯�',
+    children: [{
+      value: 211002,
+      label: '鐧藉鍖�'
+    }, {
+      value: 211003,
+      label: '鏂囧湥鍖�'
+    }, {
+      value: 211004,
+      label: '瀹忎紵鍖�'
+    }, {
+      value: 211005,
+      label: '寮撻暱宀尯'
+    }, {
+      value: 211011,
+      label: '澶瓙娌冲尯'
+    }, {
+      value: 211021,
+      label: '杈介槼鍘�'
+    }, {
+      value: 211081,
+      label: '鐏甯�'
+    }]
+  }, {
+    value: 2111,
+    label: '鐩橀敠甯�',
+    children: [{
+      value: 211102,
+      label: '鍙屽彴瀛愬尯'
+    }, {
+      value: 211103,
+      label: '鍏撮殕鍙板尯'
+    }, {
+      value: 211104,
+      label: '澶ф醇鍖�'
+    }, {
+      value: 211122,
+      label: '鐩樺北鍘�'
+    }]
+  }, {
+    value: 2112,
+    label: '閾佸箔甯�',
+    children: [{
+      value: 211202,
+      label: '閾跺窞鍖�'
+    }, {
+      value: 211204,
+      label: '娓呮渤鍖�'
+    }, {
+      value: 211221,
+      label: '閾佸箔鍘�'
+    }, {
+      value: 211223,
+      label: '瑗夸赴鍘�'
+    }, {
+      value: 211224,
+      label: '鏄屽浘鍘�'
+    }, {
+      value: 211281,
+      label: '璋冨叺灞卞競'
+    }, {
+      value: 211282,
+      label: '寮�鍘熷競'
+    }]
+  }, {
+    value: 2113,
+    label: '鏈濋槼甯�',
+    children: [{
+      value: 211302,
+      label: '鍙屽鍖�'
+    }, {
+      value: 211303,
+      label: '榫欏煄鍖�'
+    }, {
+      value: 211321,
+      label: '鏈濋槼鍘�'
+    }, {
+      value: 211322,
+      label: '寤哄钩鍘�'
+    }, {
+      value: 211324,
+      label: '鍠�鍠囨瞾宸︾考钂欏彜鏃忚嚜娌诲幙'
+    }, {
+      value: 211381,
+      label: '鍖楃エ甯�'
+    }, {
+      value: 211382,
+      label: '鍑屾簮甯�'
+    }]
+  }, {
+    value: 2114,
+    label: '钁姦宀涘競',
+    children: [{
+      value: 211402,
+      label: '杩炲北鍖�'
+    }, {
+      value: 211403,
+      label: '榫欐腐鍖�'
+    }, {
+      value: 211404,
+      label: '鍗楃エ鍖�'
+    }, {
+      value: 211421,
+      label: '缁ヤ腑鍘�'
+    }, {
+      value: 211422,
+      label: '寤烘槍鍘�'
+    }, {
+      value: 211481,
+      label: '鍏村煄甯�'
+    }]
+  }]
+}, {
+  value: 22,
+  label: '鍚夋灄鐪�',
+  children: [{
+    value: 2201,
+    label: '闀挎槬甯�',
+    children: [{
+      value: 220102,
+      label: '鍗楀叧鍖�'
+    }, {
+      value: 220103,
+      label: '瀹藉煄鍖�'
+    }, {
+      value: 220104,
+      label: '鏈濋槼鍖�'
+    }, {
+      value: 220105,
+      label: '浜岄亾鍖�'
+    }, {
+      value: 220106,
+      label: '缁垮洯鍖�'
+    }, {
+      value: 220112,
+      label: '鍙岄槼鍖�'
+    }, {
+      value: 220113,
+      label: '涔濆彴鍖�'
+    }, {
+      value: 220122,
+      label: '鍐滃畨鍘�'
+    }, {
+      value: 220182,
+      label: '姒嗘爲甯�'
+    }, {
+      value: 220183,
+      label: '寰锋儬甯�'
+    }]
+  }, {
+    value: 2202,
+    label: '鍚夋灄甯�',
+    children: [{
+      value: 220202,
+      label: '鏄岄倯鍖�'
+    }, {
+      value: 220203,
+      label: '榫欐江鍖�'
+    }, {
+      value: 220204,
+      label: '鑸硅惀鍖�'
+    }, {
+      value: 220211,
+      label: '涓版弧鍖�'
+    }, {
+      value: 220221,
+      label: '姘稿悏鍘�'
+    }, {
+      value: 220281,
+      label: '铔熸渤甯�'
+    }, {
+      value: 220282,
+      label: '妗︾敻甯�'
+    }, {
+      value: 220283,
+      label: '鑸掑叞甯�'
+    }, {
+      value: 220284,
+      label: '纾愮煶甯�'
+    }]
+  }, {
+    value: 2203,
+    label: '鍥涘钩甯�',
+    children: [{
+      value: 220302,
+      label: '閾佽タ鍖�'
+    }, {
+      value: 220303,
+      label: '閾佷笢鍖�'
+    }, {
+      value: 220322,
+      label: '姊ㄦ爲鍘�'
+    }, {
+      value: 220323,
+      label: '浼婇�氭弧鏃忚嚜娌诲幙'
+    }, {
+      value: 220381,
+      label: '鍏富宀競'
+    }, {
+      value: 220382,
+      label: '鍙岃窘甯�'
+    }]
+  }, {
+    value: 2204,
+    label: '杈芥簮甯�',
+    children: [{
+      value: 220402,
+      label: '榫欏北鍖�'
+    }, {
+      value: 220403,
+      label: '瑗垮畨鍖�'
+    }, {
+      value: 220421,
+      label: '涓滀赴鍘�'
+    }, {
+      value: 220422,
+      label: '涓滆窘鍘�'
+    }]
+  }, {
+    value: 2205,
+    label: '閫氬寲甯�',
+    children: [{
+      value: 220502,
+      label: '涓滄槍鍖�'
+    }, {
+      value: 220503,
+      label: '浜岄亾姹熷尯'
+    }, {
+      value: 220521,
+      label: '閫氬寲鍘�'
+    }, {
+      value: 220523,
+      label: '杈夊崡鍘�'
+    }, {
+      value: 220524,
+      label: '鏌虫渤鍘�'
+    }, {
+      value: 220581,
+      label: '姊呮渤鍙e競'
+    }, {
+      value: 220582,
+      label: '闆嗗畨甯�'
+    }]
+  }, {
+    value: 2206,
+    label: '鐧藉北甯�',
+    children: [{
+      value: 220602,
+      label: '娴戞睙鍖�'
+    }, {
+      value: 220605,
+      label: '姹熸簮鍖�'
+    }, {
+      value: 220621,
+      label: '鎶氭澗鍘�'
+    }, {
+      value: 220622,
+      label: '闈栧畤鍘�'
+    }, {
+      value: 220623,
+      label: '闀跨櫧鏈濋矞鏃忚嚜娌诲幙'
+    }, {
+      value: 220681,
+      label: '涓存睙甯�'
+    }]
+  }, {
+    value: 2207,
+    label: '鏉惧師甯�',
+    children: [{
+      value: 220702,
+      label: '瀹佹睙鍖�'
+    }, {
+      value: 220721,
+      label: '鍓嶉儹灏旂綏鏂挋鍙ゆ棌鑷不鍘�'
+    }, {
+      value: 220722,
+      label: '闀垮箔鍘�'
+    }, {
+      value: 220723,
+      label: '涔惧畨鍘�'
+    }, {
+      value: 220781,
+      label: '鎵朵綑甯�'
+    }]
+  }, {
+    value: 2208,
+    label: '鐧藉煄甯�',
+    children: [{
+      value: 220802,
+      label: '娲寳鍖�'
+    }, {
+      value: 220821,
+      label: '闀囪祲鍘�'
+    }, {
+      value: 220822,
+      label: '閫氭鍘�'
+    }, {
+      value: 220881,
+      label: '娲崡甯�'
+    }, {
+      value: 220882,
+      label: '澶у畨甯�'
+    }]
+  }, {
+    value: 2224,
+    label: '寤惰竟鏈濋矞鏃忚嚜娌诲窞',
+    children: [{
+      value: 222401,
+      label: '寤跺悏甯�'
+    }, {
+      value: 222402,
+      label: '鍥句滑甯�'
+    }, {
+      value: 222403,
+      label: '鏁﹀寲甯�'
+    }, {
+      value: 222404,
+      label: '鐝叉槬甯�'
+    }, {
+      value: 222405,
+      label: '榫欎簳甯�'
+    }, {
+      value: 222406,
+      label: '鍜岄緳甯�'
+    }, {
+      value: 222424,
+      label: '姹竻鍘�'
+    }, {
+      value: 222426,
+      label: '瀹夊浘鍘�'
+    }]
+  }]
+}, {
+  value: 23,
+  label: '榛戦緳姹熺渷',
+  children: [{
+    value: 2301,
+    label: '鍝堝皵婊ㄥ競',
+    children: [{
+      value: 230102,
+      label: '閬撻噷鍖�'
+    }, {
+      value: 230103,
+      label: '鍗楀矖鍖�'
+    }, {
+      value: 230104,
+      label: '閬撳鍖�'
+    }, {
+      value: 230108,
+      label: '骞虫埧鍖�'
+    }, {
+      value: 230109,
+      label: '鏉惧寳鍖�'
+    }, {
+      value: 230110,
+      label: '棣欏潑鍖�'
+    }, {
+      value: 230111,
+      label: '鍛煎叞鍖�'
+    }, {
+      value: 230112,
+      label: '闃垮煄鍖�'
+    }, {
+      value: 230113,
+      label: '鍙屽煄鍖�'
+    }, {
+      value: 230123,
+      label: '渚濆叞鍘�'
+    }, {
+      value: 230124,
+      label: '鏂规鍘�'
+    }, {
+      value: 230125,
+      label: '瀹惧幙'
+    }, {
+      value: 230126,
+      label: '宸村溅鍘�'
+    }, {
+      value: 230127,
+      label: '鏈ㄥ叞鍘�'
+    }, {
+      value: 230128,
+      label: '閫氭渤鍘�'
+    }, {
+      value: 230129,
+      label: '寤跺鍘�'
+    }, {
+      value: 230183,
+      label: '灏氬織甯�'
+    }, {
+      value: 230184,
+      label: '浜斿父甯�'
+    }]
+  }, {
+    value: 2302,
+    label: '榻愰綈鍝堝皵甯�',
+    children: [{
+      value: 230202,
+      label: '榫欐矙鍖�'
+    }, {
+      value: 230203,
+      label: '寤哄崕鍖�'
+    }, {
+      value: 230204,
+      label: '閾侀攱鍖�'
+    }, {
+      value: 230205,
+      label: '鏄傛槀婧尯'
+    }, {
+      value: 230206,
+      label: '瀵屾媺灏斿熀鍖�'
+    }, {
+      value: 230207,
+      label: '纰惧瓙灞卞尯'
+    }, {
+      value: 230208,
+      label: '姊呴噷鏂揪鏂″皵鏃忓尯'
+    }, {
+      value: 230221,
+      label: '榫欐睙鍘�'
+    }, {
+      value: 230223,
+      label: '渚濆畨鍘�'
+    }, {
+      value: 230224,
+      label: '娉版潵鍘�'
+    }, {
+      value: 230225,
+      label: '鐢樺崡鍘�'
+    }, {
+      value: 230227,
+      label: '瀵岃鍘�'
+    }, {
+      value: 230229,
+      label: '鍏嬪北鍘�'
+    }, {
+      value: 230230,
+      label: '鍏嬩笢鍘�'
+    }, {
+      value: 230231,
+      label: '鎷滄硥鍘�'
+    }, {
+      value: 230281,
+      label: '璁锋渤甯�'
+    }]
+  }, {
+    value: 2303,
+    label: '楦¤タ甯�',
+    children: [{
+      value: 230302,
+      label: '楦″啝鍖�'
+    }, {
+      value: 230303,
+      label: '鎭掑北鍖�'
+    }, {
+      value: 230304,
+      label: '婊撮亾鍖�'
+    }, {
+      value: 230305,
+      label: '姊ㄦ爲鍖�'
+    }, {
+      value: 230306,
+      label: '鍩庡瓙娌冲尯'
+    }, {
+      value: 230307,
+      label: '楹诲北鍖�'
+    }, {
+      value: 230321,
+      label: '楦′笢鍘�'
+    }, {
+      value: 230381,
+      label: '铏庢灄甯�'
+    }, {
+      value: 230382,
+      label: '瀵嗗北甯�'
+    }]
+  }, {
+    value: 2304,
+    label: '楣ゅ矖甯�',
+    children: [{
+      value: 230402,
+      label: '鍚戦槼鍖�'
+    }, {
+      value: 230403,
+      label: '宸ュ啘鍖�'
+    }, {
+      value: 230404,
+      label: '鍗楀北鍖�'
+    }, {
+      value: 230405,
+      label: '鍏村畨鍖�'
+    }, {
+      value: 230406,
+      label: '涓滃北鍖�'
+    }, {
+      value: 230407,
+      label: '鍏村北鍖�'
+    }, {
+      value: 230421,
+      label: '钀濆寳鍘�'
+    }, {
+      value: 230422,
+      label: '缁ユ花鍘�'
+    }]
+  }, {
+    value: 2305,
+    label: '鍙岄腑灞卞競',
+    children: [{
+      value: 230502,
+      label: '灏栧北鍖�'
+    }, {
+      value: 230503,
+      label: '宀笢鍖�'
+    }, {
+      value: 230505,
+      label: '鍥涙柟鍙板尯'
+    }, {
+      value: 230506,
+      label: '瀹濆北鍖�'
+    }, {
+      value: 230521,
+      label: '闆嗚搐鍘�'
+    }, {
+      value: 230522,
+      label: '鍙嬭皧鍘�'
+    }, {
+      value: 230523,
+      label: '瀹濇竻鍘�'
+    }, {
+      value: 230524,
+      label: '楗舵渤鍘�'
+    }]
+  }, {
+    value: 2306,
+    label: '澶у簡甯�',
+    children: [{
+      value: 230602,
+      label: '钀ㄥ皵鍥惧尯'
+    }, {
+      value: 230603,
+      label: '榫欏嚖鍖�'
+    }, {
+      value: 230604,
+      label: '璁╄儭璺尯'
+    }, {
+      value: 230605,
+      label: '绾㈠矖鍖�'
+    }, {
+      value: 230606,
+      label: '澶у悓鍖�'
+    }, {
+      value: 230621,
+      label: '鑲囧窞鍘�'
+    }, {
+      value: 230622,
+      label: '鑲囨簮鍘�'
+    }, {
+      value: 230623,
+      label: '鏋楃敻鍘�'
+    }, {
+      value: 230624,
+      label: '鏉滃皵浼壒钂欏彜鏃忚嚜娌诲幙'
+    }]
+  }, {
+    value: 2307,
+    label: '浼婃槬甯�',
+    children: [{
+      value: 230702,
+      label: '浼婃槬鍖�'
+    }, {
+      value: 230703,
+      label: '鍗楀矓鍖�'
+    }, {
+      value: 230704,
+      label: '鍙嬪ソ鍖�'
+    }, {
+      value: 230705,
+      label: '瑗挎灄鍖�'
+    }, {
+      value: 230706,
+      label: '缈犲肠鍖�'
+    }, {
+      value: 230707,
+      label: '鏂伴潚鍖�'
+    }, {
+      value: 230708,
+      label: '缇庢邯鍖�'
+    }, {
+      value: 230709,
+      label: '閲戝北灞尯'
+    }, {
+      value: 230710,
+      label: '浜旇惀鍖�'
+    }, {
+      value: 230711,
+      label: '涔岄┈娌冲尯'
+    }, {
+      value: 230712,
+      label: '姹ゆ椇娌冲尯'
+    }, {
+      value: 230713,
+      label: '甯﹀箔鍖�'
+    }, {
+      value: 230714,
+      label: '涔屼紛宀尯'
+    }, {
+      value: 230715,
+      label: '绾㈡槦鍖�'
+    }, {
+      value: 230716,
+      label: '涓婄敇宀尯'
+    }, {
+      value: 230722,
+      label: '鍢夎崼鍘�'
+    }, {
+      value: 230781,
+      label: '閾佸姏甯�'
+    }]
+  }, {
+    value: 2308,
+    label: '浣虫湪鏂競',
+    children: [{
+      value: 230803,
+      label: '鍚戦槼鍖�'
+    }, {
+      value: 230804,
+      label: '鍓嶈繘鍖�'
+    }, {
+      value: 230805,
+      label: '涓滈鍖�'
+    }, {
+      value: 230811,
+      label: '閮婂尯'
+    }, {
+      value: 230822,
+      label: '妗﹀崡鍘�'
+    }, {
+      value: 230826,
+      label: '妗﹀窛鍘�'
+    }, {
+      value: 230828,
+      label: '姹ゅ師鍘�'
+    }, {
+      value: 230881,
+      label: '鍚屾睙甯�'
+    }, {
+      value: 230882,
+      label: '瀵岄敠甯�'
+    }, {
+      value: 230883,
+      label: '鎶氳繙甯�'
+    }]
+  }, {
+    value: 2309,
+    label: '涓冨彴娌冲競',
+    children: [{
+      value: 230902,
+      label: '鏂板叴鍖�'
+    }, {
+      value: 230903,
+      label: '妗冨北鍖�'
+    }, {
+      value: 230904,
+      label: '鑼勫瓙娌冲尯'
+    }, {
+      value: 230921,
+      label: '鍕冨埄鍘�'
+    }]
+  }, {
+    value: 2310,
+    label: '鐗′腹姹熷競',
+    children: [{
+      value: 231002,
+      label: '涓滃畨鍖�'
+    }, {
+      value: 231003,
+      label: '闃虫槑鍖�'
+    }, {
+      value: 231004,
+      label: '鐖辨皯鍖�'
+    }, {
+      value: 231005,
+      label: '瑗垮畨鍖�'
+    }, {
+      value: 231025,
+      label: '鏋楀彛鍘�'
+    }, {
+      value: 231081,
+      label: '缁ヨ姮娌冲競'
+    }, {
+      value: 231083,
+      label: '娴锋灄甯�'
+    }, {
+      value: 231084,
+      label: '瀹佸畨甯�'
+    }, {
+      value: 231085,
+      label: '绌嗘1甯�'
+    }, {
+      value: 231086,
+      label: '涓滃畞甯�'
+    }]
+  }, {
+    value: 2311,
+    label: '榛戞渤甯�',
+    children: [{
+      value: 231102,
+      label: '鐖辫緣鍖�'
+    }, {
+      value: 231121,
+      label: '瀚╂睙鍘�'
+    }, {
+      value: 231123,
+      label: '閫婂厠鍘�'
+    }, {
+      value: 231124,
+      label: '瀛欏惔鍘�'
+    }, {
+      value: 231181,
+      label: '鍖楀畨甯�'
+    }, {
+      value: 231182,
+      label: '浜斿ぇ杩炴睜甯�'
+    }]
+  }, {
+    value: 2312,
+    label: '缁ュ寲甯�',
+    children: [{
+      value: 231202,
+      label: '鍖楁灄鍖�'
+    }, {
+      value: 231221,
+      label: '鏈涘鍘�'
+    }, {
+      value: 231222,
+      label: '鍏拌タ鍘�'
+    }, {
+      value: 231223,
+      label: '闈掑唸鍘�'
+    }, {
+      value: 231224,
+      label: '搴嗗畨鍘�'
+    }, {
+      value: 231225,
+      label: '鏄庢按鍘�'
+    }, {
+      value: 231226,
+      label: '缁ユ1鍘�'
+    }, {
+      value: 231281,
+      label: '瀹夎揪甯�'
+    }, {
+      value: 231282,
+      label: '鑲囦笢甯�'
+    }, {
+      value: 231283,
+      label: '娴蜂鸡甯�'
+    }]
+  }, {
+    value: 2327,
+    label: '澶у叴瀹夊箔鍦板尯',
+    children: [{
+      value: 232721,
+      label: '鍛肩帥鍘�'
+    }, {
+      value: 232722,
+      label: '濉旀渤鍘�'
+    }, {
+      value: 232723,
+      label: '婕犳渤鍘�'
+    }]
+  }]
+}, {
+  value: 31,
+  label: '涓婃捣甯�',
+  children: [{
+    value: 3101,
+    label: '涓婃捣甯�', // 鍚屾灏忕▼搴� 鍘燂細甯傝緰鍖�
+    children: [{
+      value: 310101,
+      label: '榛勬郸鍖�'
+    }, {
+      value: 310104,
+      label: '寰愭眹鍖�'
+    }, {
+      value: 310105,
+      label: '闀垮畞鍖�'
+    }, {
+      value: 310106,
+      label: '闈欏畨鍖�'
+    }, {
+      value: 310107,
+      label: '鏅檧鍖�'
+    }, {
+      value: 310109,
+      label: '铏瑰彛鍖�'
+    }, {
+      value: 310110,
+      label: '鏉ㄦ郸鍖�'
+    }, {
+      value: 310112,
+      label: '闂佃鍖�'
+    }, {
+      value: 310113,
+      label: '瀹濆北鍖�'
+    }, {
+      value: 310114,
+      label: '鍢夊畾鍖�'
+    }, {
+      value: 310115,
+      label: '娴︿笢鏂板尯'
+    }, {
+      value: 310116,
+      label: '閲戝北鍖�'
+    }, {
+      value: 310117,
+      label: '鏉炬睙鍖�'
+    }, {
+      value: 310118,
+      label: '闈掓郸鍖�'
+    }, {
+      value: 310120,
+      label: '濂夎搐鍖�'
+    }, {
+      value: 310151,
+      label: '宕囨槑鍖�'
+    }]
+  }]
+}, {
+  value: 32,
+  label: '姹熻嫃鐪�',
+  children: [{
+    value: 3201,
+    label: '鍗椾含甯�',
+    children: [{
+      value: 320102,
+      label: '鐜勬鍖�'
+    }, {
+      value: 320104,
+      label: '绉︽樊鍖�'
+    }, {
+      value: 320105,
+      label: '寤洪偤鍖�'
+    }, {
+      value: 320106,
+      label: '榧撴ゼ鍖�'
+    }, {
+      value: 320111,
+      label: '娴﹀彛鍖�'
+    }, {
+      value: 320113,
+      label: '鏍栭湠鍖�'
+    }, {
+      value: 320114,
+      label: '闆ㄨ姳鍙板尯'
+    }, {
+      value: 320115,
+      label: '姹熷畞鍖�'
+    }, {
+      value: 320116,
+      label: '鍏悎鍖�'
+    }, {
+      value: 320117,
+      label: '婧ф按鍖�'
+    }, {
+      value: 320118,
+      label: '楂樻烦鍖�'
+    }]
+  }, {
+    value: 3202,
+    label: '鏃犻敗甯�',
+    children: [{
+      value: 320205,
+      label: '閿″北鍖�'
+    }, {
+      value: 320206,
+      label: '鎯犲北鍖�'
+    }, {
+      value: 320211,
+      label: '婊ㄦ箹鍖�'
+    }, {
+      value: 320213,
+      label: '姊佹邯鍖�'
+    }, {
+      value: 320214,
+      label: '鏂板惔鍖�'
+    }, {
+      value: 320281,
+      label: '姹熼槾甯�'
+    }, {
+      value: 320282,
+      label: '瀹滃叴甯�'
+    }]
+  }, {
+    value: 3203,
+    label: '寰愬窞甯�',
+    children: [{
+      value: 320302,
+      label: '榧撴ゼ鍖�'
+    }, {
+      value: 320303,
+      label: '浜戦緳鍖�'
+    }, {
+      value: 320305,
+      label: '璐炬豹鍖�'
+    }, {
+      value: 320311,
+      label: '娉夊北鍖�'
+    }, {
+      value: 320312,
+      label: '閾滃北鍖�'
+    }, {
+      value: 320321,
+      label: '涓板幙'
+    }, {
+      value: 320322,
+      label: '娌涘幙'
+    }, {
+      value: 320324,
+      label: '鐫㈠畞鍘�'
+    }, {
+      value: 320381,
+      label: '鏂版矀甯�'
+    }, {
+      value: 320382,
+      label: '閭冲窞甯�'
+    }]
+  }, {
+    value: 3204,
+    label: '甯稿窞甯�',
+    children: [{
+      value: 320402,
+      label: '澶╁畞鍖�'
+    }, {
+      value: 320404,
+      label: '閽熸ゼ鍖�'
+    }, {
+      value: 320411,
+      label: '鏂板寳鍖�'
+    }, {
+      value: 320412,
+      label: '姝﹁繘鍖�'
+    }, {
+      value: 320413,
+      label: '閲戝潧鍖�'
+    }, {
+      value: 320481,
+      label: '婧ч槼甯�'
+    }]
+  }, {
+    value: 3205,
+    label: '鑻忓窞甯�',
+    children: [{
+      value: 320505,
+      label: '铏庝笜鍖�'
+    }, {
+      value: 320506,
+      label: '鍚翠腑鍖�'
+    }, {
+      value: 320507,
+      label: '鐩稿煄鍖�'
+    }, {
+      value: 320508,
+      label: '濮戣嫃鍖�'
+    }, {
+      value: 320509,
+      label: '鍚存睙鍖�'
+    }, {
+      value: 320581,
+      label: '甯哥啛甯�'
+    }, {
+      value: 320582,
+      label: '寮犲娓競'
+    }, {
+      value: 320583,
+      label: '鏄嗗北甯�'
+    }, {
+      value: 320585,
+      label: '澶粨甯�'
+    }]
+  }, {
+    value: 3206,
+    label: '鍗楅�氬競',
+    children: [{
+      value: 320602,
+      label: '宕囧窛鍖�'
+    }, {
+      value: 320611,
+      label: '娓椄鍖�'
+    }, {
+      value: 320612,
+      label: '閫氬窞鍖�'
+    }, {
+      value: 320621,
+      label: '娴峰畨鍘�'
+    }, {
+      value: 320623,
+      label: '濡備笢鍘�'
+    }, {
+      value: 320681,
+      label: '鍚笢甯�'
+    }, {
+      value: 320682,
+      label: '濡傜殝甯�'
+    }, {
+      value: 320684,
+      label: '娴烽棬甯�'
+    }]
+  }, {
+    value: 3207,
+    label: '杩炰簯娓競',
+    children: [{
+      value: 320703,
+      label: '杩炰簯鍖�'
+    }, {
+      value: 320706,
+      label: '娴峰窞鍖�'
+    }, {
+      value: 320707,
+      label: '璧f鍖�'
+    }, {
+      value: 320722,
+      label: '涓滄捣鍘�'
+    }, {
+      value: 320723,
+      label: '鐏屼簯鍘�'
+    }, {
+      value: 320724,
+      label: '鐏屽崡鍘�'
+    }]
+  }, {
+    value: 3208,
+    label: '娣畨甯�',
+    children: [{
+      value: 320803,
+      label: '娣畨鍖�'
+    }, {
+      value: 320804,
+      label: '娣槾鍖�'
+    }, {
+      value: 320812,
+      label: '娓呮睙娴﹀尯'
+    }, {
+      value: 320813,
+      label: '娲辰鍖�'
+    }, {
+      value: 320826,
+      label: '娑熸按鍘�'
+    }, {
+      value: 320830,
+      label: '鐩辩湙鍘�'
+    }, {
+      value: 320831,
+      label: '閲戞箹鍘�'
+    }]
+  }, {
+    value: 3209,
+    label: '鐩愬煄甯�',
+    children: [{
+      value: 320902,
+      label: '浜箹鍖�'
+    }, {
+      value: 320903,
+      label: '鐩愰兘鍖�'
+    }, {
+      value: 320904,
+      label: '澶т赴鍖�'
+    }, {
+      value: 320921,
+      label: '鍝嶆按鍘�'
+    }, {
+      value: 320922,
+      label: '婊ㄦ捣鍘�'
+    }, {
+      value: 320923,
+      label: '闃滃畞鍘�'
+    }, {
+      value: 320924,
+      label: '灏勯槼鍘�'
+    }, {
+      value: 320925,
+      label: '寤烘箹鍘�'
+    }, {
+      value: 320981,
+      label: '涓滃彴甯�'
+    }]
+  }, {
+    value: 3210,
+    label: '鎵窞甯�',
+    children: [{
+      value: 321002,
+      label: '骞块櫟鍖�'
+    }, {
+      value: 321003,
+      label: '閭楁睙鍖�'
+    }, {
+      value: 321012,
+      label: '姹熼兘鍖�'
+    }, {
+      value: 321023,
+      label: '瀹濆簲鍘�'
+    }, {
+      value: 321081,
+      label: '浠緛甯�'
+    }, {
+      value: 321084,
+      label: '楂橀偖甯�'
+    }]
+  }, {
+    value: 3211,
+    label: '闀囨睙甯�',
+    children: [{
+      value: 321102,
+      label: '浜彛鍖�'
+    }, {
+      value: 321111,
+      label: '娑﹀窞鍖�'
+    }, {
+      value: 321112,
+      label: '涓瑰緬鍖�'
+    }, {
+      value: 321181,
+      label: '涓归槼甯�'
+    }, {
+      value: 321182,
+      label: '鎵腑甯�'
+    }, {
+      value: 321183,
+      label: '鍙ュ甯�'
+    }]
+  }, {
+    value: 3212,
+    label: '娉板窞甯�',
+    children: [{
+      value: 321202,
+      label: '娴烽櫟鍖�'
+    }, {
+      value: 321203,
+      label: '楂樻腐鍖�'
+    }, {
+      value: 321204,
+      label: '濮滃牥鍖�'
+    }, {
+      value: 321281,
+      label: '鍏村寲甯�'
+    }, {
+      value: 321282,
+      label: '闈栨睙甯�'
+    }, {
+      value: 321283,
+      label: '娉板叴甯�'
+    }]
+  }, {
+    value: 3213,
+    label: '瀹胯縼甯�',
+    children: [{
+      value: 321302,
+      label: '瀹垮煄鍖�'
+    }, {
+      value: 321311,
+      label: '瀹胯鲍鍖�'
+    }, {
+      value: 321322,
+      label: '娌槼鍘�'
+    }, {
+      value: 321323,
+      label: '娉楅槼鍘�'
+    }, {
+      value: 321324,
+      label: '娉楁椽鍘�'
+    }]
+  }]
+}, {
+  value: 33,
+  label: '娴欐睙鐪�',
+  children: [{
+    value: 3301,
+    label: '鏉窞甯�',
+    children: [{
+      value: 330102,
+      label: '涓婂煄鍖�'
+    }, {
+      value: 330103,
+      label: '涓嬪煄鍖�'
+    }, {
+      value: 330104,
+      label: '姹熷共鍖�'
+    }, {
+      value: 330105,
+      label: '鎷卞鍖�'
+    }, {
+      value: 330106,
+      label: '瑗挎箹鍖�'
+    }, {
+      value: 330108,
+      label: '婊ㄦ睙鍖�'
+    }, {
+      value: 330109,
+      label: '钀у北鍖�'
+    }, {
+      value: 330110,
+      label: '浣欐澀鍖�'
+    }, {
+      value: 330111,
+      label: '瀵岄槼鍖�'
+    }, {
+      value: 330122,
+      label: '妗愬簮鍘�'
+    }, {
+      value: 330127,
+      label: '娣冲畨鍘�'
+    }, {
+      value: 330182,
+      label: '寤哄痉甯�'
+    }, {
+      value: 330185,
+      label: '涓村畨甯�'
+    }]
+  }, {
+    value: 3302,
+    label: '瀹佹尝甯�',
+    children: [{
+      value: 330203,
+      label: '娴锋洐鍖�'
+    }, {
+      value: 330204,
+      label: '姹熶笢鍖�'
+    }, {
+      value: 330205,
+      label: '姹熷寳鍖�'
+    }, {
+      value: 330206,
+      label: '鍖椾粦鍖�'
+    }, {
+      value: 330211,
+      label: '闀囨捣鍖�'
+    }, {
+      value: 330212,
+      label: '閯炲窞鍖�'
+    }, {
+      value: 330225,
+      label: '璞″北鍘�'
+    }, {
+      value: 330226,
+      label: '瀹佹捣鍘�'
+    }, {
+      value: 330281,
+      label: '浣欏甯�'
+    }, {
+      value: 330282,
+      label: '鎱堟邯甯�'
+    }, {
+      value: 330283,
+      label: '濂夊寲甯�'
+    }]
+  }, {
+    value: 3303,
+    label: '娓╁窞甯�',
+    children: [{
+      value: 330302,
+      label: '楣垮煄鍖�'
+    }, {
+      value: 330303,
+      label: '榫欐咕鍖�'
+    }, {
+      value: 330304,
+      label: '鐡捣鍖�'
+    }, {
+      value: 330305,
+      label: '娲炲ご鍖�'
+    }, {
+      value: 330324,
+      label: '姘稿槈鍘�'
+    }, {
+      value: 330326,
+      label: '骞抽槼鍘�'
+    }, {
+      value: 330327,
+      label: '鑻嶅崡鍘�'
+    }, {
+      value: 330328,
+      label: '鏂囨垚鍘�'
+    }, {
+      value: 330329,
+      label: '娉伴『鍘�'
+    }, {
+      value: 330381,
+      label: '鐟炲畨甯�'
+    }, {
+      value: 330382,
+      label: '涔愭竻甯�'
+    }]
+  }, {
+    value: 3304,
+    label: '鍢夊叴甯�',
+    children: [{
+      value: 330402,
+      label: '鍗楁箹鍖�'
+    }, {
+      value: 330411,
+      label: '绉�娲插尯'
+    }, {
+      value: 330421,
+      label: '鍢夊杽鍘�'
+    }, {
+      value: 330424,
+      label: '娴风洂鍘�'
+    }, {
+      value: 330481,
+      label: '娴峰畞甯�'
+    }, {
+      value: 330482,
+      label: '骞虫箹甯�'
+    }, {
+      value: 330483,
+      label: '妗愪埂甯�'
+    }]
+  }, {
+    value: 3305,
+    label: '婀栧窞甯�',
+    children: [{
+      value: 330502,
+      label: '鍚村叴鍖�'
+    }, {
+      value: 330503,
+      label: '鍗楁禂鍖�'
+    }, {
+      value: 330521,
+      label: '寰锋竻鍘�'
+    }, {
+      value: 330522,
+      label: '闀垮叴鍘�'
+    }, {
+      value: 330523,
+      label: '瀹夊悏鍘�'
+    }]
+  }, {
+    value: 3306,
+    label: '缁嶅叴甯�',
+    children: [{
+      value: 330602,
+      label: '瓒婂煄鍖�'
+    }, {
+      value: 330603,
+      label: '鏌ˉ鍖�'
+    }, {
+      value: 330604,
+      label: '涓婅櫈鍖�'
+    }, {
+      value: 330624,
+      label: '鏂版槍鍘�'
+    }, {
+      value: 330681,
+      label: '璇告毃甯�'
+    }, {
+      value: 330683,
+      label: '宓婂窞甯�'
+    }]
+  }, {
+    value: 3307,
+    label: '閲戝崕甯�',
+    children: [{
+      value: 330702,
+      label: '濠哄煄鍖�'
+    }, {
+      value: 330703,
+      label: '閲戜笢鍖�'
+    }, {
+      value: 330723,
+      label: '姝︿箟鍘�'
+    }, {
+      value: 330726,
+      label: '娴︽睙鍘�'
+    }, {
+      value: 330727,
+      label: '纾愬畨鍘�'
+    }, {
+      value: 330781,
+      label: '鍏版邯甯�'
+    }, {
+      value: 330782,
+      label: '涔変箤甯�'
+    }, {
+      value: 330783,
+      label: '涓滈槼甯�'
+    }, {
+      value: 330784,
+      label: '姘稿悍甯�'
+    }]
+  }, {
+    value: 3308,
+    label: '琛㈠窞甯�',
+    children: [{
+      value: 330802,
+      label: '鏌煄鍖�'
+    }, {
+      value: 330803,
+      label: '琛㈡睙鍖�'
+    }, {
+      value: 330822,
+      label: '甯稿北鍘�'
+    }, {
+      value: 330824,
+      label: '寮�鍖栧幙'
+    }, {
+      value: 330825,
+      label: '榫欐父鍘�'
+    }, {
+      value: 330881,
+      label: '姹熷北甯�'
+    }]
+  }, {
+    value: 3309,
+    label: '鑸熷北甯�',
+    children: [{
+      value: 330902,
+      label: '瀹氭捣鍖�'
+    }, {
+      value: 330903,
+      label: '鏅檧鍖�'
+    }, {
+      value: 330921,
+      label: '宀卞北鍘�'
+    }, {
+      value: 330922,
+      label: '宓婃硹鍘�'
+    }]
+  }, {
+    value: 3310,
+    label: '鍙板窞甯�',
+    children: [{
+      value: 331002,
+      label: '妞掓睙鍖�'
+    }, {
+      value: 331003,
+      label: '榛勫博鍖�'
+    }, {
+      value: 331004,
+      label: '璺ˉ鍖�'
+    }, {
+      value: 331021,
+      label: '鐜夌幆鍘�'
+    }, {
+      value: 331022,
+      label: '涓夐棬鍘�'
+    }, {
+      value: 331023,
+      label: '澶╁彴鍘�'
+    }, {
+      value: 331024,
+      label: '浠欏眳鍘�'
+    }, {
+      value: 331081,
+      label: '娓╁箔甯�'
+    }, {
+      value: 331082,
+      label: '涓存捣甯�'
+    }]
+  }, {
+    value: 3311,
+    label: '涓芥按甯�',
+    children: [{
+      value: 331102,
+      label: '鑾查兘鍖�'
+    }, {
+      value: 331121,
+      label: '闈掔敯鍘�'
+    }, {
+      value: 331122,
+      label: '缂欎簯鍘�'
+    }, {
+      value: 331123,
+      label: '閬傛槍鍘�'
+    }, {
+      value: 331124,
+      label: '鏉鹃槼鍘�'
+    }, {
+      value: 331125,
+      label: '浜戝拰鍘�'
+    }, {
+      value: 331126,
+      label: '搴嗗厓鍘�'
+    }, {
+      value: 331127,
+      label: '鏅畞鐣叉棌鑷不鍘�'
+    }, {
+      value: 331181,
+      label: '榫欐硥甯�'
+    }]
+  }]
+}, {
+  value: 34,
+  label: '瀹夊窘鐪�',
+  children: [{
+    value: 3401,
+    label: '鍚堣偉甯�',
+    children: [{
+      value: 340102,
+      label: '鐟舵捣鍖�'
+    }, {
+      value: 340103,
+      label: '搴愰槼鍖�'
+    }, {
+      value: 340104,
+      label: '铚�灞卞尯'
+    }, {
+      value: 340111,
+      label: '鍖呮渤鍖�'
+    }, {
+      value: 340121,
+      label: '闀夸赴鍘�'
+    }, {
+      value: 340122,
+      label: '鑲ヤ笢鍘�'
+    }, {
+      value: 340123,
+      label: '鑲ヨタ鍘�'
+    }, {
+      value: 340124,
+      label: '搴愭睙鍘�'
+    }, {
+      value: 340181,
+      label: '宸㈡箹甯�'
+    }]
+  }, {
+    value: 3402,
+    label: '鑺滄箹甯�',
+    children: [{
+      value: 340202,
+      label: '闀滄箹鍖�'
+    }, {
+      value: 340203,
+      label: '寮嬫睙鍖�'
+    }, {
+      value: 340207,
+      label: '楦犳睙鍖�'
+    }, {
+      value: 340208,
+      label: '涓夊北鍖�'
+    }, {
+      value: 340221,
+      label: '鑺滄箹鍘�'
+    }, {
+      value: 340222,
+      label: '绻佹槍鍘�'
+    }, {
+      value: 340223,
+      label: '鍗楅櫟鍘�'
+    }, {
+      value: 340225,
+      label: '鏃犱负鍘�'
+    }]
+  }, {
+    value: 3403,
+    label: '铓屽煚甯�',
+    children: [{
+      value: 340302,
+      label: '榫欏瓙婀栧尯'
+    }, {
+      value: 340303,
+      label: '铓屽北鍖�'
+    }, {
+      value: 340304,
+      label: '绂逛細鍖�'
+    }, {
+      value: 340311,
+      label: '娣笂鍖�'
+    }, {
+      value: 340321,
+      label: '鎬�杩滃幙'
+    }, {
+      value: 340322,
+      label: '浜旀渤鍘�'
+    }, {
+      value: 340323,
+      label: '鍥洪晣鍘�'
+    }]
+  }, {
+    value: 3404,
+    label: '娣崡甯�',
+    children: [{
+      value: 340402,
+      label: '澶ч�氬尯'
+    }, {
+      value: 340403,
+      label: '鐢板搴靛尯'
+    }, {
+      value: 340404,
+      label: '璋㈠闆嗗尯'
+    }, {
+      value: 340405,
+      label: '鍏叕灞卞尯'
+    }, {
+      value: 340406,
+      label: '娼橀泦鍖�'
+    }, {
+      value: 340421,
+      label: '鍑ゅ彴鍘�'
+    }, {
+      value: 340422,
+      label: '瀵垮幙'
+    }]
+  }, {
+    value: 3405,
+    label: '椹瀺灞卞競',
+    children: [{
+      value: 340503,
+      label: '鑺卞北鍖�'
+    }, {
+      value: 340504,
+      label: '闆ㄥ北鍖�'
+    }, {
+      value: 340506,
+      label: '鍗氭湜鍖�'
+    }, {
+      value: 340521,
+      label: '褰撴秱鍘�'
+    }, {
+      value: 340522,
+      label: '鍚北鍘�'
+    }, {
+      value: 340523,
+      label: '鍜屽幙'
+    }]
+  }, {
+    value: 3406,
+    label: '娣寳甯�',
+    children: [{
+      value: 340602,
+      label: '鏉滈泦鍖�'
+    }, {
+      value: 340603,
+      label: '鐩稿北鍖�'
+    }, {
+      value: 340604,
+      label: '鐑堝北鍖�'
+    }, {
+      value: 340621,
+      label: '婵夋邯鍘�'
+    }]
+  }, {
+    value: 3407,
+    label: '閾滈櫟甯�',
+    children: [{
+      value: 340705,
+      label: '閾滃畼鍖�'
+    }, {
+      value: 340706,
+      label: '涔夊畨鍖�'
+    }, {
+      value: 340711,
+      label: '閮婂尯'
+    }, {
+      value: 340722,
+      label: '鏋為槼鍘�'
+    }]
+  }, {
+    value: 3408,
+    label: '瀹夊簡甯�',
+    children: [{
+      value: 340802,
+      label: '杩庢睙鍖�'
+    }, {
+      value: 340803,
+      label: '澶ц鍖�'
+    }, {
+      value: 340811,
+      label: '瀹滅鍖�'
+    }, {
+      value: 340822,
+      label: '鎬�瀹佸幙'
+    }, {
+      value: 340824,
+      label: '娼滃北鍘�'
+    }, {
+      value: 340825,
+      label: '澶箹鍘�'
+    }, {
+      value: 340826,
+      label: '瀹挎澗鍘�'
+    }, {
+      value: 340827,
+      label: '鏈涙睙鍘�'
+    }, {
+      value: 340828,
+      label: '宀宠タ鍘�'
+    }, {
+      value: 340881,
+      label: '妗愬煄甯�'
+    }]
+  }, {
+    value: 3410,
+    label: '榛勫北甯�',
+    children: [{
+      value: 341002,
+      label: '灞邯鍖�'
+    }, {
+      value: 341003,
+      label: '榛勫北鍖�'
+    }, {
+      value: 341004,
+      label: '寰藉窞鍖�'
+    }, {
+      value: 341021,
+      label: '姝欏幙'
+    }, {
+      value: 341022,
+      label: '浼戝畞鍘�'
+    }, {
+      value: 341023,
+      label: '榛熷幙'
+    }, {
+      value: 341024,
+      label: '绁侀棬鍘�'
+    }]
+  }, {
+    value: 3411,
+    label: '婊佸窞甯�',
+    children: [{
+      value: 341102,
+      label: '鐞呯悐鍖�'
+    }, {
+      value: 341103,
+      label: '鍗楄隘鍖�'
+    }, {
+      value: 341122,
+      label: '鏉ュ畨鍘�'
+    }, {
+      value: 341124,
+      label: '鍏ㄦ鍘�'
+    }, {
+      value: 341125,
+      label: '瀹氳繙鍘�'
+    }, {
+      value: 341126,
+      label: '鍑ら槼鍘�'
+    }, {
+      value: 341181,
+      label: '澶╅暱甯�'
+    }, {
+      value: 341182,
+      label: '鏄庡厜甯�'
+    }]
+  }, {
+    value: 3412,
+    label: '闃滈槼甯�',
+    children: [{
+      value: 341202,
+      label: '棰嶅窞鍖�'
+    }, {
+      value: 341203,
+      label: '棰嶄笢鍖�'
+    }, {
+      value: 341204,
+      label: '棰嶆硥鍖�'
+    }, {
+      value: 341221,
+      label: '涓存硥鍘�'
+    }, {
+      value: 341222,
+      label: '澶拰鍘�'
+    }, {
+      value: 341225,
+      label: '闃滃崡鍘�'
+    }, {
+      value: 341226,
+      label: '棰嶄笂鍘�'
+    }, {
+      value: 341282,
+      label: '鐣岄甯�'
+    }]
+  }, {
+    value: 3413,
+    label: '瀹垮窞甯�',
+    children: [{
+      value: 341302,
+      label: '鍩囨ˉ鍖�'
+    }, {
+      value: 341321,
+      label: '鐮�灞卞幙'
+    }, {
+      value: 341322,
+      label: '钀у幙'
+    }, {
+      value: 341323,
+      label: '鐏电挧鍘�'
+    }, {
+      value: 341324,
+      label: '娉楀幙'
+    }]
+  }, {
+    value: 3415,
+    label: '鍏畨甯�',
+    children: [{
+      value: 341502,
+      label: '閲戝畨鍖�'
+    }, {
+      value: 341503,
+      label: '瑁曞畨鍖�'
+    }, {
+      value: 341504,
+      label: '鍙堕泦鍖�'
+    }, {
+      value: 341522,
+      label: '闇嶉偙鍘�'
+    }, {
+      value: 341523,
+      label: '鑸掑煄鍘�'
+    }, {
+      value: 341524,
+      label: '閲戝鍘�'
+    }, {
+      value: 341525,
+      label: '闇嶅北鍘�'
+    }]
+  }, {
+    value: 3416,
+    label: '浜冲窞甯�',
+    children: [{
+      value: 341602,
+      label: '璋煄鍖�'
+    }, {
+      value: 341621,
+      label: '娑¢槼鍘�'
+    }, {
+      value: 341622,
+      label: '钂欏煄鍘�'
+    }, {
+      value: 341623,
+      label: '鍒╄緵鍘�'
+    }]
+  }, {
+    value: 3417,
+    label: '姹犲窞甯�',
+    children: [{
+      value: 341702,
+      label: '璐垫睜鍖�'
+    }, {
+      value: 341721,
+      label: '涓滆嚦鍘�'
+    }, {
+      value: 341722,
+      label: '鐭冲彴鍘�'
+    }, {
+      value: 341723,
+      label: '闈掗槼鍘�'
+    }]
+  }, {
+    value: 3418,
+    label: '瀹e煄甯�',
+    children: [{
+      value: 341802,
+      label: '瀹e窞鍖�'
+    }, {
+      value: 341821,
+      label: '閮庢邯鍘�'
+    }, {
+      value: 341822,
+      label: '骞垮痉鍘�'
+    }, {
+      value: 341823,
+      label: '娉惧幙'
+    }, {
+      value: 341824,
+      label: '缁╂邯鍘�'
+    }, {
+      value: 341825,
+      label: '鏃屽痉鍘�'
+    }, {
+      value: 341881,
+      label: '瀹佸浗甯�'
+    }]
+  }]
+}, {
+  value: 35,
+  label: '绂忓缓鐪�',
+  children: [{
+    value: 3501,
+    label: '绂忓窞甯�',
+    children: [{
+      value: 350102,
+      label: '榧撴ゼ鍖�'
+    }, {
+      value: 350103,
+      label: '鍙版睙鍖�'
+    }, {
+      value: 350104,
+      label: '浠撳北鍖�'
+    }, {
+      value: 350105,
+      label: '椹熬鍖�'
+    }, {
+      value: 350111,
+      label: '鏅嬪畨鍖�'
+    }, {
+      value: 350121,
+      label: '闂戒警鍘�'
+    }, {
+      value: 350122,
+      label: '杩炴睙鍘�'
+    }, {
+      value: 350123,
+      label: '缃楁簮鍘�'
+    }, {
+      value: 350124,
+      label: '闂芥竻鍘�'
+    }, {
+      value: 350125,
+      label: '姘告嘲鍘�'
+    }, {
+      value: 350128,
+      label: '骞虫江鍘�'
+    }, {
+      value: 350181,
+      label: '绂忔竻甯�'
+    }, {
+      value: 350182,
+      label: '闀夸箰甯�'
+    }]
+  }, {
+    value: 3502,
+    label: '鍘﹂棬甯�',
+    children: [{
+      value: 350203,
+      label: '鎬濇槑鍖�'
+    }, {
+      value: 350205,
+      label: '娴锋钵鍖�'
+    }, {
+      value: 350206,
+      label: '婀栭噷鍖�'
+    }, {
+      value: 350211,
+      label: '闆嗙編鍖�'
+    }, {
+      value: 350212,
+      label: '鍚屽畨鍖�'
+    }, {
+      value: 350213,
+      label: '缈斿畨鍖�'
+    }]
+  }, {
+    value: 3503,
+    label: '鑾嗙敯甯�',
+    children: [{
+      value: 350302,
+      label: '鍩庡帰鍖�'
+    }, {
+      value: 350303,
+      label: '娑垫睙鍖�'
+    }, {
+      value: 350304,
+      label: '鑽斿煄鍖�'
+    }, {
+      value: 350305,
+      label: '绉�灞垮尯'
+    }, {
+      value: 350322,
+      label: '浠欐父鍘�'
+    }]
+  }, {
+    value: 3504,
+    label: '涓夋槑甯�',
+    children: [{
+      value: 350402,
+      label: '姊呭垪鍖�'
+    }, {
+      value: 350403,
+      label: '涓夊厓鍖�'
+    }, {
+      value: 350421,
+      label: '鏄庢邯鍘�'
+    }, {
+      value: 350423,
+      label: '娓呮祦鍘�'
+    }, {
+      value: 350424,
+      label: '瀹佸寲鍘�'
+    }, {
+      value: 350425,
+      label: '澶х敯鍘�'
+    }, {
+      value: 350426,
+      label: '灏ゆ邯鍘�'
+    }, {
+      value: 350427,
+      label: '娌欏幙'
+    }, {
+      value: 350428,
+      label: '灏嗕箰鍘�'
+    }, {
+      value: 350429,
+      label: '娉板畞鍘�'
+    }, {
+      value: 350430,
+      label: '寤哄畞鍘�'
+    }, {
+      value: 350481,
+      label: '姘稿畨甯�'
+    }]
+  }, {
+    value: 3505,
+    label: '娉夊窞甯�',
+    children: [{
+      value: 350502,
+      label: '椴ゅ煄鍖�'
+    }, {
+      value: 350503,
+      label: '涓版辰鍖�'
+    }, {
+      value: 350504,
+      label: '娲涙睙鍖�'
+    }, {
+      value: 350505,
+      label: '娉夋腐鍖�'
+    }, {
+      value: 350521,
+      label: '鎯犲畨鍘�'
+    }, {
+      value: 350524,
+      label: '瀹夋邯鍘�'
+    }, {
+      value: 350525,
+      label: '姘告槬鍘�'
+    }, {
+      value: 350526,
+      label: '寰峰寲鍘�'
+    }, {
+      value: 350527,
+      label: '閲戦棬鍘�'
+    }, {
+      value: 350581,
+      label: '鐭崇嫯甯�'
+    }, {
+      value: 350582,
+      label: '鏅嬫睙甯�'
+    }, {
+      value: 350583,
+      label: '鍗楀畨甯�'
+    }]
+  }, {
+    value: 3506,
+    label: '婕冲窞甯�',
+    children: [{
+      value: 350602,
+      label: '鑺楀煄鍖�'
+    }, {
+      value: 350603,
+      label: '榫欐枃鍖�'
+    }, {
+      value: 350622,
+      label: '浜戦渼鍘�'
+    }, {
+      value: 350623,
+      label: '婕虫郸鍘�'
+    }, {
+      value: 350624,
+      label: '璇忓畨鍘�'
+    }, {
+      value: 350625,
+      label: '闀挎嘲鍘�'
+    }, {
+      value: 350626,
+      label: '涓滃北鍘�'
+    }, {
+      value: 350627,
+      label: '鍗楅潠鍘�'
+    }, {
+      value: 350628,
+      label: '骞冲拰鍘�'
+    }, {
+      value: 350629,
+      label: '鍗庡畨鍘�'
+    }, {
+      value: 350681,
+      label: '榫欐捣甯�'
+    }]
+  }, {
+    value: 3507,
+    label: '鍗楀钩甯�',
+    children: [{
+      value: 350702,
+      label: '寤跺钩鍖�'
+    }, {
+      value: 350703,
+      label: '寤洪槼鍖�'
+    }, {
+      value: 350721,
+      label: '椤烘槍鍘�'
+    }, {
+      value: 350722,
+      label: '娴﹀煄鍘�'
+    }, {
+      value: 350723,
+      label: '鍏夋辰鍘�'
+    }, {
+      value: 350724,
+      label: '鏉炬邯鍘�'
+    }, {
+      value: 350725,
+      label: '鏀垮拰鍘�'
+    }, {
+      value: 350781,
+      label: '閭垫甯�'
+    }, {
+      value: 350782,
+      label: '姝﹀し灞卞競'
+    }, {
+      value: 350783,
+      label: '寤虹摨甯�'
+    }]
+  }, {
+    value: 3508,
+    label: '榫欏博甯�',
+    children: [{
+      value: 350802,
+      label: '鏂扮綏鍖�'
+    }, {
+      value: 350803,
+      label: '姘稿畾鍖�'
+    }, {
+      value: 350821,
+      label: '闀挎眬鍘�'
+    }, {
+      value: 350823,
+      label: '涓婃澀鍘�'
+    }, {
+      value: 350824,
+      label: '姝﹀钩鍘�'
+    }, {
+      value: 350825,
+      label: '杩炲煄鍘�'
+    }, {
+      value: 350881,
+      label: '婕冲钩甯�'
+    }]
+  }, {
+    value: 3509,
+    label: '瀹佸痉甯�',
+    children: [{
+      value: 350902,
+      label: '钑夊煄鍖�'
+    }, {
+      value: 350921,
+      label: '闇炴郸鍘�'
+    }, {
+      value: 350922,
+      label: '鍙ょ敯鍘�'
+    }, {
+      value: 350923,
+      label: '灞忓崡鍘�'
+    }, {
+      value: 350924,
+      label: '瀵垮畞鍘�'
+    }, {
+      value: 350925,
+      label: '鍛ㄥ畞鍘�'
+    }, {
+      value: 350926,
+      label: '鏌樿崳鍘�'
+    }, {
+      value: 350981,
+      label: '绂忓畨甯�'
+    }, {
+      value: 350982,
+      label: '绂忛紟甯�'
+    }]
+  }]
+}, {
+  value: 36,
+  label: '姹熻タ鐪�',
+  children: [{
+    value: 3601,
+    label: '鍗楁槍甯�',
+    children: [{
+      value: 360102,
+      label: '涓滄箹鍖�'
+    }, {
+      value: 360103,
+      label: '瑗挎箹鍖�'
+    }, {
+      value: 360104,
+      label: '闈掍簯璋卞尯'
+    }, {
+      value: 360105,
+      label: '婀鹃噷鍖�'
+    }, {
+      value: 360111,
+      label: '闈掑北婀栧尯'
+    }, {
+      value: 360112,
+      label: '鏂板缓鍖�'
+    }, {
+      value: 360121,
+      label: '鍗楁槍鍘�'
+    }, {
+      value: 360123,
+      label: '瀹変箟鍘�'
+    }, {
+      value: 360124,
+      label: '杩涜搐鍘�'
+    }]
+  }, {
+    value: 3602,
+    label: '鏅痉闀囧競',
+    children: [{
+      value: 360202,
+      label: '鏄屾睙鍖�'
+    }, {
+      value: 360203,
+      label: '鐝犲北鍖�'
+    }, {
+      value: 360222,
+      label: '娴鍘�'
+    }, {
+      value: 360281,
+      label: '涔愬钩甯�'
+    }]
+  }, {
+    value: 3603,
+    label: '钀嶄埂甯�',
+    children: [{
+      value: 360302,
+      label: '瀹夋簮鍖�'
+    }, {
+      value: 360313,
+      label: '婀樹笢鍖�'
+    }, {
+      value: 360321,
+      label: '鑾茶姳鍘�'
+    }, {
+      value: 360322,
+      label: '涓婃牀鍘�'
+    }, {
+      value: 360323,
+      label: '鑺︽邯鍘�'
+    }]
+  }, {
+    value: 3604,
+    label: '涔濇睙甯�',
+    children: [{
+      value: 360402,
+      label: '婵傛邯鍖�'
+    }, {
+      value: 360403,
+      label: '娴旈槼鍖�'
+    }, {
+      value: 360421,
+      label: '涔濇睙鍘�'
+    }, {
+      value: 360423,
+      label: '姝﹀畞鍘�'
+    }, {
+      value: 360424,
+      label: '淇按鍘�'
+    }, {
+      value: 360425,
+      label: '姘镐慨鍘�'
+    }, {
+      value: 360426,
+      label: '寰峰畨鍘�'
+    }, {
+      value: 360428,
+      label: '閮芥槍鍘�'
+    }, {
+      value: 360429,
+      label: '婀栧彛鍘�'
+    }, {
+      value: 360430,
+      label: '褰辰鍘�'
+    }, {
+      value: 360481,
+      label: '鐟炴槍甯�'
+    }, {
+      value: 360482,
+      label: '鍏遍潚鍩庡競'
+    }, {
+      value: 360483,
+      label: '搴愬北甯�'
+    }]
+  }, {
+    value: 3605,
+    label: '鏂颁綑甯�',
+    children: [{
+      value: 360502,
+      label: '娓濇按鍖�'
+    }, {
+      value: 360521,
+      label: '鍒嗗疁鍘�'
+    }]
+  }, {
+    value: 3606,
+    label: '楣版江甯�',
+    children: [{
+      value: 360602,
+      label: '鏈堟箹鍖�'
+    }, {
+      value: 360622,
+      label: '浣欐睙鍘�'
+    }, {
+      value: 360681,
+      label: '璐垫邯甯�'
+    }]
+  }, {
+    value: 3607,
+    label: '璧e窞甯�',
+    children: [{
+      value: 360702,
+      label: '绔犺础鍖�'
+    }, {
+      value: 360703,
+      label: '鍗楀悍鍖�'
+    }, {
+      value: 360721,
+      label: '璧e幙'
+    }, {
+      value: 360722,
+      label: '淇′赴鍘�'
+    }, {
+      value: 360723,
+      label: '澶т綑鍘�'
+    }, {
+      value: 360724,
+      label: '涓婄姽鍘�'
+    }, {
+      value: 360725,
+      label: '宕囦箟鍘�'
+    }, {
+      value: 360726,
+      label: '瀹夎繙鍘�'
+    }, {
+      value: 360727,
+      label: '榫欏崡鍘�'
+    }, {
+      value: 360728,
+      label: '瀹氬崡鍘�'
+    }, {
+      value: 360729,
+      label: '鍏ㄥ崡鍘�'
+    }, {
+      value: 360730,
+      label: '瀹侀兘鍘�'
+    }, {
+      value: 360731,
+      label: '浜庨兘鍘�'
+    }, {
+      value: 360732,
+      label: '鍏村浗鍘�'
+    }, {
+      value: 360733,
+      label: '浼氭槍鍘�'
+    }, {
+      value: 360734,
+      label: '瀵讳箤鍘�'
+    }, {
+      value: 360735,
+      label: '鐭冲煄鍘�'
+    }, {
+      value: 360781,
+      label: '鐟為噾甯�'
+    }]
+  }, {
+    value: 3608,
+    label: '鍚夊畨甯�',
+    children: [{
+      value: 360802,
+      label: '鍚夊窞鍖�'
+    }, {
+      value: 360803,
+      label: '闈掑師鍖�'
+    }, {
+      value: 360821,
+      label: '鍚夊畨鍘�'
+    }, {
+      value: 360822,
+      label: '鍚夋按鍘�'
+    }, {
+      value: 360823,
+      label: '宄℃睙鍘�'
+    }, {
+      value: 360824,
+      label: '鏂板共鍘�'
+    }, {
+      value: 360825,
+      label: '姘镐赴鍘�'
+    }, {
+      value: 360826,
+      label: '娉板拰鍘�'
+    }, {
+      value: 360827,
+      label: '閬傚窛鍘�'
+    }, {
+      value: 360828,
+      label: '涓囧畨鍘�'
+    }, {
+      value: 360829,
+      label: '瀹夌鍘�'
+    }, {
+      value: 360830,
+      label: '姘告柊鍘�'
+    }, {
+      value: 360881,
+      label: '浜曞唸灞卞競'
+    }]
+  }, {
+    value: 3609,
+    label: '瀹滄槬甯�',
+    children: [{
+      value: 360902,
+      label: '琚佸窞鍖�'
+    }, {
+      value: 360921,
+      label: '濂夋柊鍘�'
+    }, {
+      value: 360922,
+      label: '涓囪浇鍘�'
+    }, {
+      value: 360923,
+      label: '涓婇珮鍘�'
+    }, {
+      value: 360924,
+      label: '瀹滀赴鍘�'
+    }, {
+      value: 360925,
+      label: '闈栧畨鍘�'
+    }, {
+      value: 360926,
+      label: '閾滈紦鍘�'
+    }, {
+      value: 360981,
+      label: '涓板煄甯�'
+    }, {
+      value: 360982,
+      label: '妯熸爲甯�'
+    }, {
+      value: 360983,
+      label: '楂樺畨甯�'
+    }]
+  }, {
+    value: 3610,
+    label: '鎶氬窞甯�',
+    children: [{
+      value: 361002,
+      label: '涓村窛鍖�'
+    }, {
+      value: 361021,
+      label: '鍗楀煄鍘�'
+    }, {
+      value: 361022,
+      label: '榛庡窛鍘�'
+    }, {
+      value: 361023,
+      label: '鍗椾赴鍘�'
+    }, {
+      value: 361024,
+      label: '宕囦粊鍘�'
+    }, {
+      value: 361025,
+      label: '涔愬畨鍘�'
+    }, {
+      value: 361026,
+      label: '瀹滈粍鍘�'
+    }, {
+      value: 361027,
+      label: '閲戞邯鍘�'
+    }, {
+      value: 361028,
+      label: '璧勬邯鍘�'
+    }, {
+      value: 361029,
+      label: '涓滀埂鍘�'
+    }, {
+      value: 361030,
+      label: '骞挎槍鍘�'
+    }]
+  }, {
+    value: 3611,
+    label: '涓婇ザ甯�',
+    children: [{
+      value: 361102,
+      label: '淇″窞鍖�'
+    }, {
+      value: 361103,
+      label: '骞夸赴鍖�'
+    }, {
+      value: 361121,
+      label: '涓婇ザ鍘�'
+    }, {
+      value: 361123,
+      label: '鐜夊北鍘�'
+    }, {
+      value: 361124,
+      label: '閾呭北鍘�'
+    }, {
+      value: 361125,
+      label: '妯嘲鍘�'
+    }, {
+      value: 361126,
+      label: '寮嬮槼鍘�'
+    }, {
+      value: 361127,
+      label: '浣欏共鍘�'
+    }, {
+      value: 361128,
+      label: '閯遍槼鍘�'
+    }, {
+      value: 361129,
+      label: '涓囧勾鍘�'
+    }, {
+      value: 361130,
+      label: '濠烘簮鍘�'
+    }, {
+      value: 361181,
+      label: '寰峰叴甯�'
+    }]
+  }]
+}, {
+  value: 37,
+  label: '灞变笢鐪�',
+  children: [{
+    value: 3701,
+    label: '娴庡崡甯�',
+    children: [{
+      value: 370102,
+      label: '鍘嗕笅鍖�'
+    }, {
+      value: 370103,
+      label: '甯備腑鍖�'
+    }, {
+      value: 370104,
+      label: '妲愯崼鍖�'
+    }, {
+      value: 370105,
+      label: '澶╂ˉ鍖�'
+    }, {
+      value: 370112,
+      label: '鍘嗗煄鍖�'
+    }, {
+      value: 370113,
+      label: '闀挎竻鍖�'
+    }, {
+      value: 370124,
+      label: '骞抽槾鍘�'
+    }, {
+      value: 370125,
+      label: '娴庨槼鍘�'
+    }, {
+      value: 370126,
+      label: '鍟嗘渤鍘�'
+    }, {
+      value: 370181,
+      label: '绔犱笜甯�'
+    }]
+  }, {
+    value: 3702,
+    label: '闈掑矝甯�',
+    children: [{
+      value: 370202,
+      label: '甯傚崡鍖�'
+    }, {
+      value: 370203,
+      label: '甯傚寳鍖�'
+    }, {
+      value: 370211,
+      label: '榛勫矝鍖�'
+    }, {
+      value: 370212,
+      label: '宕傚北鍖�'
+    }, {
+      value: 370213,
+      label: '鏉庢钵鍖�'
+    }, {
+      value: 370214,
+      label: '鍩庨槼鍖�'
+    }, {
+      value: 370281,
+      label: '鑳跺窞甯�'
+    }, {
+      value: 370282,
+      label: '鍗冲ⅷ甯�'
+    }, {
+      value: 370283,
+      label: '骞冲害甯�'
+    }, {
+      value: 370285,
+      label: '鑾辫タ甯�'
+    }]
+  }, {
+    value: 3703,
+    label: '娣勫崥甯�',
+    children: [{
+      value: 370302,
+      label: '娣勫窛鍖�'
+    }, {
+      value: 370303,
+      label: '寮犲簵鍖�'
+    }, {
+      value: 370304,
+      label: '鍗氬北鍖�'
+    }, {
+      value: 370305,
+      label: '涓存穭鍖�'
+    }, {
+      value: 370306,
+      label: '鍛ㄦ潙鍖�'
+    }, {
+      value: 370321,
+      label: '妗撳彴鍘�'
+    }, {
+      value: 370322,
+      label: '楂橀潚鍘�'
+    }, {
+      value: 370323,
+      label: '娌傛簮鍘�'
+    }]
+  }, {
+    value: 3704,
+    label: '鏋e簞甯�',
+    children: [{
+      value: 370402,
+      label: '甯備腑鍖�'
+    }, {
+      value: 370403,
+      label: '钖涘煄鍖�'
+    }, {
+      value: 370404,
+      label: '宄勫煄鍖�'
+    }, {
+      value: 370405,
+      label: '鍙板効搴勫尯'
+    }, {
+      value: 370406,
+      label: '灞变涵鍖�'
+    }, {
+      value: 370481,
+      label: '婊曞窞甯�'
+    }]
+  }, {
+    value: 3705,
+    label: '涓滆惀甯�',
+    children: [{
+      value: 370502,
+      label: '涓滆惀鍖�'
+    }, {
+      value: 370503,
+      label: '娌冲彛鍖�'
+    }, {
+      value: 370505,
+      label: '鍨﹀埄鍖�'
+    }, {
+      value: 370522,
+      label: '鍒╂触鍘�'
+    }, {
+      value: 370523,
+      label: '骞块ザ鍘�'
+    }]
+  }, {
+    value: 3706,
+    label: '鐑熷彴甯�',
+    children: [{
+      value: 370602,
+      label: '鑺濈綐鍖�'
+    }, {
+      value: 370611,
+      label: '绂忓北鍖�'
+    }, {
+      value: 370612,
+      label: '鐗熷钩鍖�'
+    }, {
+      value: 370613,
+      label: '鑾卞北鍖�'
+    }, {
+      value: 370634,
+      label: '闀垮矝鍘�'
+    }, {
+      value: 370681,
+      label: '榫欏彛甯�'
+    }, {
+      value: 370682,
+      label: '鑾遍槼甯�'
+    }, {
+      value: 370683,
+      label: '鑾卞窞甯�'
+    }, {
+      value: 370684,
+      label: '钃幈甯�'
+    }, {
+      value: 370685,
+      label: '鎷涜繙甯�'
+    }, {
+      value: 370686,
+      label: '鏍栭湠甯�'
+    }, {
+      value: 370687,
+      label: '娴烽槼甯�'
+    }]
+  }, {
+    value: 3707,
+    label: '娼嶅潑甯�',
+    children: [{
+      value: 370702,
+      label: '娼嶅煄鍖�'
+    }, {
+      value: 370703,
+      label: '瀵掍涵鍖�'
+    }, {
+      value: 370704,
+      label: '鍧婂瓙鍖�'
+    }, {
+      value: 370705,
+      label: '濂庢枃鍖�'
+    }, {
+      value: 370724,
+      label: '涓存湊鍘�'
+    }, {
+      value: 370725,
+      label: '鏄屼箰鍘�'
+    }, {
+      value: 370781,
+      label: '闈掑窞甯�'
+    }, {
+      value: 370782,
+      label: '璇稿煄甯�'
+    }, {
+      value: 370783,
+      label: '瀵垮厜甯�'
+    }, {
+      value: 370784,
+      label: '瀹変笜甯�'
+    }, {
+      value: 370785,
+      label: '楂樺瘑甯�'
+    }, {
+      value: 370786,
+      label: '鏄岄倯甯�'
+    }]
+  }, {
+    value: 3708,
+    label: '娴庡畞甯�',
+    children: [{
+      value: 370811,
+      label: '浠诲煄鍖�'
+    }, {
+      value: 370812,
+      label: '鍏栧窞鍖�'
+    }, {
+      value: 370826,
+      label: '寰北鍘�'
+    }, {
+      value: 370827,
+      label: '楸煎彴鍘�'
+    }, {
+      value: 370828,
+      label: '閲戜埂鍘�'
+    }, {
+      value: 370829,
+      label: '鍢夌ゥ鍘�'
+    }, {
+      value: 370830,
+      label: '姹朵笂鍘�'
+    }, {
+      value: 370831,
+      label: '娉楁按鍘�'
+    }, {
+      value: 370832,
+      label: '姊佸北鍘�'
+    }, {
+      value: 370881,
+      label: '鏇查槣甯�'
+    }, {
+      value: 370883,
+      label: '閭瑰煄甯�'
+    }]
+  }, {
+    value: 3709,
+    label: '娉板畨甯�',
+    children: [{
+      value: 370902,
+      label: '娉板北鍖�'
+    }, {
+      value: 370911,
+      label: '宀卞渤鍖�'
+    }, {
+      value: 370921,
+      label: '瀹侀槼鍘�'
+    }, {
+      value: 370923,
+      label: '涓滃钩鍘�'
+    }, {
+      value: 370982,
+      label: '鏂版嘲甯�'
+    }, {
+      value: 370983,
+      label: '鑲ュ煄甯�'
+    }]
+  }, {
+    value: 3710,
+    label: '濞佹捣甯�',
+    children: [{
+      value: 371002,
+      label: '鐜繝鍖�'
+    }, {
+      value: 371003,
+      label: '鏂囩櫥鍖�'
+    }, {
+      value: 371082,
+      label: '鑽f垚甯�'
+    }, {
+      value: 371083,
+      label: '涔冲北甯�'
+    }]
+  }, {
+    value: 3711,
+    label: '鏃ョ収甯�',
+    children: [{
+      value: 371102,
+      label: '涓滄腐鍖�'
+    }, {
+      value: 371103,
+      label: '宀氬北鍖�'
+    }, {
+      value: 371121,
+      label: '浜旇幉鍘�'
+    }, {
+      value: 371122,
+      label: '鑾掑幙'
+    }]
+  }, {
+    value: 3712,
+    label: '鑾辫姕甯�',
+    children: [{
+      value: 371202,
+      label: '鑾卞煄鍖�'
+    }, {
+      value: 371203,
+      label: '閽㈠煄鍖�'
+    }]
+  }, {
+    value: 3713,
+    label: '涓存矀甯�',
+    children: [{
+      value: 371302,
+      label: '鍏板北鍖�'
+    }, {
+      value: 371311,
+      label: '缃楀簞鍖�'
+    }, {
+      value: 371312,
+      label: '娌充笢鍖�'
+    }, {
+      value: 371321,
+      label: '娌傚崡鍘�'
+    }, {
+      value: 371322,
+      label: '閮煄鍘�'
+    }, {
+      value: 371323,
+      label: '娌傛按鍘�'
+    }, {
+      value: 371324,
+      label: '鍏伴櫟鍘�'
+    }, {
+      value: 371325,
+      label: '璐瑰幙'
+    }, {
+      value: 371326,
+      label: '骞抽倯鍘�'
+    }, {
+      value: 371327,
+      label: '鑾掑崡鍘�'
+    }, {
+      value: 371328,
+      label: '钂欓槾鍘�'
+    }, {
+      value: 371329,
+      label: '涓存箔鍘�'
+    }]
+  }, {
+    value: 3714,
+    label: '寰峰窞甯�',
+    children: [{
+      value: 371402,
+      label: '寰峰煄鍖�'
+    }, {
+      value: 371403,
+      label: '闄靛煄鍖�'
+    }, {
+      value: 371422,
+      label: '瀹佹触鍘�'
+    }, {
+      value: 371423,
+      label: '搴嗕簯鍘�'
+    }, {
+      value: 371424,
+      label: '涓撮倯鍘�'
+    }, {
+      value: 371425,
+      label: '榻愭渤鍘�'
+    }, {
+      value: 371426,
+      label: '骞冲師鍘�'
+    }, {
+      value: 371427,
+      label: '澶忔触鍘�'
+    }, {
+      value: 371428,
+      label: '姝﹀煄鍘�'
+    }, {
+      value: 371481,
+      label: '涔愰櫟甯�'
+    }, {
+      value: 371482,
+      label: '绂瑰煄甯�'
+    }]
+  }, {
+    value: 3715,
+    label: '鑱婂煄甯�',
+    children: [{
+      value: 371502,
+      label: '涓滄槍搴滃尯'
+    }, {
+      value: 371521,
+      label: '闃宠胺鍘�'
+    }, {
+      value: 371522,
+      label: '鑾樺幙'
+    }, {
+      value: 371523,
+      label: '鑼屽钩鍘�'
+    }, {
+      value: 371524,
+      label: '涓滈樋鍘�'
+    }, {
+      value: 371525,
+      label: '鍐犲幙'
+    }, {
+      value: 371526,
+      label: '楂樺攼鍘�'
+    }, {
+      value: 371581,
+      label: '涓存竻甯�'
+    }]
+  }, {
+    value: 3716,
+    label: '婊ㄥ窞甯�',
+    children: [{
+      value: 371602,
+      label: '婊ㄥ煄鍖�'
+    }, {
+      value: 371603,
+      label: '娌惧寲鍖�'
+    }, {
+      value: 371621,
+      label: '鎯犳皯鍘�'
+    }, {
+      value: 371622,
+      label: '闃充俊鍘�'
+    }, {
+      value: 371623,
+      label: '鏃犳#鍘�'
+    }, {
+      value: 371625,
+      label: '鍗氬叴鍘�'
+    }, {
+      value: 371626,
+      label: '閭瑰钩鍘�'
+    }]
+  }, {
+    value: 3717,
+    label: '鑿忔辰甯�',
+    children: [{
+      value: 371702,
+      label: '鐗′腹鍖�'
+    }, {
+      value: 371703,
+      label: '瀹氶櫠鍖�'
+    }, {
+      value: 371721,
+      label: '鏇瑰幙'
+    }, {
+      value: 371722,
+      label: '鍗曞幙'
+    }, {
+      value: 371723,
+      label: '鎴愭鍘�'
+    }, {
+      value: 371724,
+      label: '宸ㄩ噹鍘�'
+    }, {
+      value: 371725,
+      label: '閮撳煄鍘�'
+    }, {
+      value: 371726,
+      label: '閯勫煄鍘�'
+    }, {
+      value: 371728,
+      label: '涓滄槑鍘�'
+    }]
+  }]
+}, {
+  value: 41,
+  label: '娌冲崡鐪�',
+  children: [{
+    value: 4101,
+    label: '閮戝窞甯�',
+    children: [{
+      value: 410102,
+      label: '涓師鍖�'
+    }, {
+      value: 410103,
+      label: '浜屼竷鍖�'
+    }, {
+      value: 410104,
+      label: '绠″煄鍥炴棌鍖�'
+    }, {
+      value: 410105,
+      label: '閲戞按鍖�'
+    }, {
+      value: 410106,
+      label: '涓婅鍖�'
+    }, {
+      value: 410108,
+      label: '鎯犳祹鍖�'
+    }, {
+      value: 410122,
+      label: '涓墴鍘�'
+    }, {
+      value: 410181,
+      label: '宸╀箟甯�'
+    }, {
+      value: 410182,
+      label: '鑽ラ槼甯�'
+    }, {
+      value: 410183,
+      label: '鏂板瘑甯�'
+    }, {
+      value: 410184,
+      label: '鏂伴儜甯�'
+    }, {
+      value: 410185,
+      label: '鐧诲皝甯�'
+    }]
+  }, {
+    value: 4102,
+    label: '寮�灏佸競',
+    children: [{
+      value: 410202,
+      label: '榫欎涵鍖�'
+    }, {
+      value: 410203,
+      label: '椤烘渤鍥炴棌鍖�'
+    }, {
+      value: 410204,
+      label: '榧撴ゼ鍖�'
+    }, {
+      value: 410205,
+      label: '绂圭帇鍙板尯'
+    }, {
+      value: 410211,
+      label: '閲戞槑鍖�'
+    }, {
+      value: 410212,
+      label: '绁ョ鍖�'
+    }, {
+      value: 410221,
+      label: '鏉炲幙'
+    }, {
+      value: 410222,
+      label: '閫氳鍘�'
+    }, {
+      value: 410223,
+      label: '灏夋皬鍘�'
+    }, {
+      value: 410225,
+      label: '鍏拌�冨幙'
+    }]
+  }, {
+    value: 4103,
+    label: '娲涢槼甯�',
+    children: [{
+      value: 410302,
+      label: '鑰佸煄鍖�'
+    }, {
+      value: 410303,
+      label: '瑗垮伐鍖�'
+    }, {
+      value: 410304,
+      label: '鐎嶆渤鍥炴棌鍖�'
+    }, {
+      value: 410305,
+      label: '娑цタ鍖�'
+    }, {
+      value: 410306,
+      label: '鍚夊埄鍖�'
+    }, {
+      value: 410311,
+      label: '娲涢緳鍖�'
+    }, {
+      value: 410322,
+      label: '瀛熸触鍘�'
+    }, {
+      value: 410323,
+      label: '鏂板畨鍘�'
+    }, {
+      value: 410324,
+      label: '鏍惧窛鍘�'
+    }, {
+      value: 410325,
+      label: '宓╁幙'
+    }, {
+      value: 410326,
+      label: '姹濋槼鍘�'
+    }, {
+      value: 410327,
+      label: '瀹滈槼鍘�'
+    }, {
+      value: 410328,
+      label: '娲涘畞鍘�'
+    }, {
+      value: 410329,
+      label: '浼婂窛鍘�'
+    }, {
+      value: 410381,
+      label: '鍋冨笀甯�'
+    }]
+  }, {
+    value: 4104,
+    label: '骞抽《灞卞競',
+    children: [{
+      value: 410402,
+      label: '鏂板崕鍖�'
+    }, {
+      value: 410403,
+      label: '鍗笢鍖�'
+    }, {
+      value: 410404,
+      label: '鐭抽緳鍖�'
+    }, {
+      value: 410411,
+      label: '婀涙渤鍖�'
+    }, {
+      value: 410421,
+      label: '瀹濅赴鍘�'
+    }, {
+      value: 410422,
+      label: '鍙跺幙'
+    }, {
+      value: 410423,
+      label: '椴佸北鍘�'
+    }, {
+      value: 410425,
+      label: '閮忓幙'
+    }, {
+      value: 410481,
+      label: '鑸為挗甯�'
+    }, {
+      value: 410482,
+      label: '姹濆窞甯�'
+    }]
+  }, {
+    value: 4105,
+    label: '瀹夐槼甯�',
+    children: [{
+      value: 410502,
+      label: '鏂囧嘲鍖�'
+    }, {
+      value: 410503,
+      label: '鍖楀叧鍖�'
+    }, {
+      value: 410505,
+      label: '娈烽兘鍖�'
+    }, {
+      value: 410506,
+      label: '榫欏畨鍖�'
+    }, {
+      value: 410522,
+      label: '瀹夐槼鍘�'
+    }, {
+      value: 410523,
+      label: '姹ら槾鍘�'
+    }, {
+      value: 410526,
+      label: '婊戝幙'
+    }, {
+      value: 410527,
+      label: '鍐呴粍鍘�'
+    }, {
+      value: 410581,
+      label: '鏋楀窞甯�'
+    }]
+  }, {
+    value: 4106,
+    label: '楣ゅ甯�',
+    children: [{
+      value: 410602,
+      label: '楣ゅ北鍖�'
+    }, {
+      value: 410603,
+      label: '灞卞煄鍖�'
+    }, {
+      value: 410611,
+      label: '娣囨花鍖�'
+    }, {
+      value: 410621,
+      label: '娴氬幙'
+    }, {
+      value: 410622,
+      label: '娣囧幙'
+    }]
+  }, {
+    value: 4107,
+    label: '鏂颁埂甯�',
+    children: [{
+      value: 410702,
+      label: '绾㈡棗鍖�'
+    }, {
+      value: 410703,
+      label: '鍗花鍖�'
+    }, {
+      value: 410704,
+      label: '鍑ゆ硥鍖�'
+    }, {
+      value: 410711,
+      label: '鐗ч噹鍖�'
+    }, {
+      value: 410721,
+      label: '鏂颁埂鍘�'
+    }, {
+      value: 410724,
+      label: '鑾峰槈鍘�'
+    }, {
+      value: 410725,
+      label: '鍘熼槼鍘�'
+    }, {
+      value: 410726,
+      label: '寤舵触鍘�'
+    }, {
+      value: 410727,
+      label: '灏佷笜鍘�'
+    }, {
+      value: 410728,
+      label: '闀垮灒鍘�'
+    }, {
+      value: 410781,
+      label: '鍗緣甯�'
+    }, {
+      value: 410782,
+      label: '杈夊幙甯�'
+    }]
+  }, {
+    value: 4108,
+    label: '鐒︿綔甯�',
+    children: [{
+      value: 410802,
+      label: '瑙f斁鍖�'
+    }, {
+      value: 410803,
+      label: '涓珯鍖�'
+    }, {
+      value: 410804,
+      label: '椹潙鍖�'
+    }, {
+      value: 410811,
+      label: '灞遍槼鍖�'
+    }, {
+      value: 410821,
+      label: '淇鍘�'
+    }, {
+      value: 410822,
+      label: '鍗氱埍鍘�'
+    }, {
+      value: 410823,
+      label: '姝﹂櫉鍘�'
+    }, {
+      value: 410825,
+      label: '娓╁幙'
+    }, {
+      value: 410882,
+      label: '娌侀槼甯�'
+    }, {
+      value: 410883,
+      label: '瀛熷窞甯�'
+    }]
+  }, {
+    value: 4109,
+    label: '婵槼甯�',
+    children: [{
+      value: 410902,
+      label: '鍗庨緳鍖�'
+    }, {
+      value: 410922,
+      label: '娓呬赴鍘�'
+    }, {
+      value: 410923,
+      label: '鍗椾箰鍘�'
+    }, {
+      value: 410926,
+      label: '鑼冨幙'
+    }, {
+      value: 410927,
+      label: '鍙板墠鍘�'
+    }, {
+      value: 410928,
+      label: '婵槼鍘�'
+    }]
+  }, {
+    value: 4110,
+    label: '璁告槍甯�',
+    children: [{
+      value: 411002,
+      label: '榄忛兘鍖�'
+    }, {
+      value: 411023,
+      label: '璁告槍鍘�'
+    }, {
+      value: 411024,
+      label: '閯㈤櫟鍘�'
+    }, {
+      value: 411025,
+      label: '瑗勫煄鍘�'
+    }, {
+      value: 411081,
+      label: '绂瑰窞甯�'
+    }, {
+      value: 411082,
+      label: '闀胯憶甯�'
+    }]
+  }, {
+    value: 4111,
+    label: '婕渤甯�',
+    children: [{
+      value: 411102,
+      label: '婧愭眹鍖�'
+    }, {
+      value: 411103,
+      label: '閮惧煄鍖�'
+    }, {
+      value: 411104,
+      label: '鍙櫟鍖�'
+    }, {
+      value: 411121,
+      label: '鑸為槼鍘�'
+    }, {
+      value: 411122,
+      label: '涓撮鍘�'
+    }]
+  }, {
+    value: 4112,
+    label: '涓夐棬宄″競',
+    children: [{
+      value: 411202,
+      label: '婀栨花鍖�'
+    }, {
+      value: 411203,
+      label: '闄曞窞鍖�'
+    }, {
+      value: 411221,
+      label: '娓戞睜鍘�'
+    }, {
+      value: 411224,
+      label: '鍗㈡皬鍘�'
+    }, {
+      value: 411281,
+      label: '涔夐┈甯�'
+    }, {
+      value: 411282,
+      label: '鐏靛疂甯�'
+    }]
+  }, {
+    value: 4113,
+    label: '鍗楅槼甯�',
+    children: [{
+      value: 411302,
+      label: '瀹涘煄鍖�'
+    }, {
+      value: 411303,
+      label: '鍗ч緳鍖�'
+    }, {
+      value: 411321,
+      label: '鍗楀彫鍘�'
+    }, {
+      value: 411322,
+      label: '鏂瑰煄鍘�'
+    }, {
+      value: 411323,
+      label: '瑗垮场鍘�'
+    }, {
+      value: 411324,
+      label: '闀囧钩鍘�'
+    }, {
+      value: 411325,
+      label: '鍐呬埂鍘�'
+    }, {
+      value: 411326,
+      label: '娣呭窛鍘�'
+    }, {
+      value: 411327,
+      label: '绀炬棗鍘�'
+    }, {
+      value: 411328,
+      label: '鍞愭渤鍘�'
+    }, {
+      value: 411329,
+      label: '鏂伴噹鍘�'
+    }, {
+      value: 411330,
+      label: '妗愭煆鍘�'
+    }, {
+      value: 411381,
+      label: '閭撳窞甯�'
+    }]
+  }, {
+    value: 4114,
+    label: '鍟嗕笜甯�',
+    children: [{
+      value: 411402,
+      label: '姊佸洯鍖�'
+    }, {
+      value: 411403,
+      label: '鐫㈤槼鍖�'
+    }, {
+      value: 411421,
+      label: '姘戞潈鍘�'
+    }, {
+      value: 411422,
+      label: '鐫㈠幙'
+    }, {
+      value: 411423,
+      label: '瀹侀櫟鍘�'
+    }, {
+      value: 411424,
+      label: '鏌樺煄鍘�'
+    }, {
+      value: 411425,
+      label: '铏炲煄鍘�'
+    }, {
+      value: 411426,
+      label: '澶忛倯鍘�'
+    }, {
+      value: 411481,
+      label: '姘稿煄甯�'
+    }]
+  }, {
+    value: 4115,
+    label: '淇¢槼甯�',
+    children: [{
+      value: 411502,
+      label: '娴夋渤鍖�'
+    }, {
+      value: 411503,
+      label: '骞虫ˉ鍖�'
+    }, {
+      value: 411521,
+      label: '缃楀北鍘�'
+    }, {
+      value: 411522,
+      label: '鍏夊北鍘�'
+    }, {
+      value: 411523,
+      label: '鏂板幙'
+    }, {
+      value: 411524,
+      label: '鍟嗗煄鍘�'
+    }, {
+      value: 411525,
+      label: '鍥哄鍘�'
+    }, {
+      value: 411526,
+      label: '娼㈠窛鍘�'
+    }, {
+      value: 411527,
+      label: '娣花鍘�'
+    }, {
+      value: 411528,
+      label: '鎭幙'
+    }]
+  }, {
+    value: 4116,
+    label: '鍛ㄥ彛甯�',
+    children: [{
+      value: 411602,
+      label: '宸濇眹鍖�'
+    }, {
+      value: 411621,
+      label: '鎵舵矡鍘�'
+    }, {
+      value: 411622,
+      label: '瑗垮崕鍘�'
+    }, {
+      value: 411623,
+      label: '鍟嗘按鍘�'
+    }, {
+      value: 411624,
+      label: '娌堜笜鍘�'
+    }, {
+      value: 411625,
+      label: '閮稿煄鍘�'
+    }, {
+      value: 411626,
+      label: '娣槼鍘�'
+    }, {
+      value: 411627,
+      label: '澶悍鍘�'
+    }, {
+      value: 411628,
+      label: '楣块倯鍘�'
+    }, {
+      value: 411681,
+      label: '椤瑰煄甯�'
+    }]
+  }, {
+    value: 4117,
+    label: '椹婚┈搴楀競',
+    children: [{
+      value: 411702,
+      label: '椹垮煄鍖�'
+    }, {
+      value: 411721,
+      label: '瑗垮钩鍘�'
+    }, {
+      value: 411722,
+      label: '涓婅敗鍘�'
+    }, {
+      value: 411723,
+      label: '骞宠垎鍘�'
+    }, {
+      value: 411724,
+      label: '姝i槼鍘�'
+    }, {
+      value: 411725,
+      label: '纭北鍘�'
+    }, {
+      value: 411726,
+      label: '娉岄槼鍘�'
+    }, {
+      value: 411727,
+      label: '姹濆崡鍘�'
+    }, {
+      value: 411728,
+      label: '閬傚钩鍘�'
+    }, {
+      value: 411729,
+      label: '鏂拌敗鍘�'
+    }]
+  }, {
+    value: 4190,
+    label: '鐪佺洿杈栧幙绾ц鏀垮尯鍒�',
+    children: [{
+      value: 419001,
+      label: '娴庢簮甯�'
+    }]
+  }]
+}, {
+  value: 42,
+  label: '婀栧寳鐪�',
+  children: [{
+    value: 4201,
+    label: '姝︽眽甯�',
+    children: [{
+      value: 420102,
+      label: '姹熷哺鍖�'
+    }, {
+      value: 420103,
+      label: '姹熸眽鍖�'
+    }, {
+      value: 420104,
+      label: '纭氬彛鍖�'
+    }, {
+      value: 420105,
+      label: '姹夐槼鍖�'
+    }, {
+      value: 420106,
+      label: '姝︽槍鍖�'
+    }, {
+      value: 420107,
+      label: '闈掑北鍖�'
+    }, {
+      value: 420111,
+      label: '娲北鍖�'
+    }, {
+      value: 420112,
+      label: '涓滆タ婀栧尯'
+    }, {
+      value: 420113,
+      label: '姹夊崡鍖�'
+    }, {
+      value: 420114,
+      label: '钄$敻鍖�'
+    }, {
+      value: 420115,
+      label: '姹熷鍖�'
+    }, {
+      value: 420116,
+      label: '榛勯檪鍖�'
+    }, {
+      value: 420117,
+      label: '鏂版床鍖�'
+    }]
+  }, {
+    value: 4202,
+    label: '榛勭煶甯�',
+    children: [{
+      value: 420202,
+      label: '榛勭煶娓尯'
+    }, {
+      value: 420203,
+      label: '瑗垮灞卞尯'
+    }, {
+      value: 420204,
+      label: '涓嬮檰鍖�'
+    }, {
+      value: 420205,
+      label: '閾佸北鍖�'
+    }, {
+      value: 420222,
+      label: '闃虫柊鍘�'
+    }, {
+      value: 420281,
+      label: '澶у喍甯�'
+    }]
+  }, {
+    value: 4203,
+    label: '鍗佸牥甯�',
+    children: [{
+      value: 420302,
+      label: '鑼呯鍖�'
+    }, {
+      value: 420303,
+      label: '寮犳咕鍖�'
+    }, {
+      value: 420304,
+      label: '閮ч槼鍖�'
+    }, {
+      value: 420322,
+      label: '閮цタ鍘�'
+    }, {
+      value: 420323,
+      label: '绔瑰北鍘�'
+    }, {
+      value: 420324,
+      label: '绔规邯鍘�'
+    }, {
+      value: 420325,
+      label: '鎴垮幙'
+    }, {
+      value: 420381,
+      label: '涓规睙鍙e競'
+    }]
+  }, {
+    value: 4205,
+    label: '瀹滄槍甯�',
+    children: [{
+      value: 420502,
+      label: '瑗块櫟鍖�'
+    }, {
+      value: 420503,
+      label: '浼嶅宀楀尯'
+    }, {
+      value: 420504,
+      label: '鐐瑰啗鍖�'
+    }, {
+      value: 420505,
+      label: '鐚囦涵鍖�'
+    }, {
+      value: 420506,
+      label: '澶烽櫟鍖�'
+    }, {
+      value: 420525,
+      label: '杩滃畨鍘�'
+    }, {
+      value: 420526,
+      label: '鍏村北鍘�'
+    }, {
+      value: 420527,
+      label: '绉綊鍘�'
+    }, {
+      value: 420528,
+      label: '闀块槼鍦熷鏃忚嚜娌诲幙'
+    }, {
+      value: 420529,
+      label: '浜斿嘲鍦熷鏃忚嚜娌诲幙'
+    }, {
+      value: 420581,
+      label: '瀹滈兘甯�'
+    }, {
+      value: 420582,
+      label: '褰撻槼甯�'
+    }, {
+      value: 420583,
+      label: '鏋濇睙甯�'
+    }]
+  }, {
+    value: 4206,
+    label: '瑗勯槼甯�',
+    children: [{
+      value: 420602,
+      label: '瑗勫煄鍖�'
+    }, {
+      value: 420606,
+      label: '妯婂煄鍖�'
+    }, {
+      value: 420607,
+      label: '瑗勫窞鍖�'
+    }, {
+      value: 420624,
+      label: '鍗楁汲鍘�'
+    }, {
+      value: 420625,
+      label: '璋峰煄鍘�'
+    }, {
+      value: 420626,
+      label: '淇濆悍鍘�'
+    }, {
+      value: 420682,
+      label: '鑰佹渤鍙e競'
+    }, {
+      value: 420683,
+      label: '鏋i槼甯�'
+    }, {
+      value: 420684,
+      label: '瀹滃煄甯�'
+    }]
+  }, {
+    value: 4207,
+    label: '閯傚窞甯�',
+    children: [{
+      value: 420702,
+      label: '姊佸瓙婀栧尯'
+    }, {
+      value: 420703,
+      label: '鍗庡鍖�'
+    }, {
+      value: 420704,
+      label: '閯傚煄鍖�'
+    }]
+  }, {
+    value: 4208,
+    label: '鑽嗛棬甯�',
+    children: [{
+      value: 420802,
+      label: '涓滃疂鍖�'
+    }, {
+      value: 420804,
+      label: '鎺囧垁鍖�'
+    }, {
+      value: 420821,
+      label: '浜北鍘�'
+    }, {
+      value: 420822,
+      label: '娌欐磱鍘�'
+    }, {
+      value: 420881,
+      label: '閽熺ゥ甯�'
+    }]
+  }, {
+    value: 4209,
+    label: '瀛濇劅甯�',
+    children: [{
+      value: 420902,
+      label: '瀛濆崡鍖�'
+    }, {
+      value: 420921,
+      label: '瀛濇槍鍘�'
+    }, {
+      value: 420922,
+      label: '澶ф偀鍘�'
+    }, {
+      value: 420923,
+      label: '浜戞ⅵ鍘�'
+    }, {
+      value: 420981,
+      label: '搴斿煄甯�'
+    }, {
+      value: 420982,
+      label: '瀹夐檰甯�'
+    }, {
+      value: 420984,
+      label: '姹夊窛甯�'
+    }]
+  }, {
+    value: 4210,
+    label: '鑽嗗窞甯�',
+    children: [{
+      value: 421002,
+      label: '娌欏競鍖�'
+    }, {
+      value: 421003,
+      label: '鑽嗗窞鍖�'
+    }, {
+      value: 421022,
+      label: '鍏畨鍘�'
+    }, {
+      value: 421023,
+      label: '鐩戝埄鍘�'
+    }, {
+      value: 421024,
+      label: '姹熼櫟鍘�'
+    }, {
+      value: 421081,
+      label: '鐭抽甯�'
+    }, {
+      value: 421083,
+      label: '娲箹甯�'
+    }, {
+      value: 421087,
+      label: '鏉炬粙甯�'
+    }]
+  }, {
+    value: 4211,
+    label: '榛勫唸甯�',
+    children: [{
+      value: 421102,
+      label: '榛勫窞鍖�'
+    }, {
+      value: 421121,
+      label: '鍥㈤鍘�'
+    }, {
+      value: 421122,
+      label: '绾㈠畨鍘�'
+    }, {
+      value: 421123,
+      label: '缃楃敯鍘�'
+    }, {
+      value: 421124,
+      label: '鑻卞北鍘�'
+    }, {
+      value: 421125,
+      label: '娴犳按鍘�'
+    }, {
+      value: 421126,
+      label: '钑叉槬鍘�'
+    }, {
+      value: 421127,
+      label: '榛勬鍘�'
+    }, {
+      value: 421181,
+      label: '楹诲煄甯�'
+    }, {
+      value: 421182,
+      label: '姝︾┐甯�'
+    }]
+  }, {
+    value: 4212,
+    label: '鍜稿畞甯�',
+    children: [{
+      value: 421202,
+      label: '鍜稿畨鍖�'
+    }, {
+      value: 421221,
+      label: '鍢夐奔鍘�'
+    }, {
+      value: 421222,
+      label: '閫氬煄鍘�'
+    }, {
+      value: 421223,
+      label: '宕囬槼鍘�'
+    }, {
+      value: 421224,
+      label: '閫氬北鍘�'
+    }, {
+      value: 421281,
+      label: '璧ゅ甯�'
+    }]
+  }, {
+    value: 4213,
+    label: '闅忓窞甯�',
+    children: [{
+      value: 421303,
+      label: '鏇鹃兘鍖�'
+    }, {
+      value: 421321,
+      label: '闅忓幙'
+    }, {
+      value: 421381,
+      label: '骞挎按甯�'
+    }]
+  }, {
+    value: 4228,
+    label: '鎭╂柦鍦熷鏃忚嫍鏃忚嚜娌诲窞',
+    children: [{
+      value: 422801,
+      label: '鎭╂柦甯�'
+    }, {
+      value: 422802,
+      label: '鍒╁窛甯�'
+    }, {
+      value: 422822,
+      label: '寤哄鍘�'
+    }, {
+      value: 422823,
+      label: '宸翠笢鍘�'
+    }, {
+      value: 422825,
+      label: '瀹f仼鍘�'
+    }, {
+      value: 422826,
+      label: '鍜镐赴鍘�'
+    }, {
+      value: 422827,
+      label: '鏉ュ嚖鍘�'
+    }, {
+      value: 422828,
+      label: '楣ゅ嘲鍘�'
+    }]
+  }, {
+    value: 4290,
+    label: '鐪佺洿杈栧幙绾ц鏀垮尯鍒�',
+    children: [{
+      value: 429004,
+      label: '浠欐甯�'
+    }, {
+      value: 429005,
+      label: '娼滄睙甯�'
+    }, {
+      value: 429006,
+      label: '澶╅棬甯�'
+    }, {
+      value: 429021,
+      label: '绁炲啘鏋舵灄鍖�'
+    }]
+  }]
+}, {
+  value: 43,
+  label: '婀栧崡鐪�',
+  children: [{
+    value: 4301,
+    label: '闀挎矙甯�',
+    children: [{
+      value: 430102,
+      label: '鑺欒搲鍖�'
+    }, {
+      value: 430103,
+      label: '澶╁績鍖�'
+    }, {
+      value: 430104,
+      label: '宀抽簱鍖�'
+    }, {
+      value: 430105,
+      label: '寮�绂忓尯'
+    }, {
+      value: 430111,
+      label: '闆ㄨ姳鍖�'
+    }, {
+      value: 430112,
+      label: '鏈涘煄鍖�'
+    }, {
+      value: 430121,
+      label: '闀挎矙鍘�'
+    }, {
+      value: 430124,
+      label: '瀹佷埂鍘�'
+    }, {
+      value: 430181,
+      label: '娴忛槼甯�'
+    }]
+  }, {
+    value: 4302,
+    label: '鏍床甯�',
+    children: [{
+      value: 430202,
+      label: '鑽峰鍖�'
+    }, {
+      value: 430203,
+      label: '鑺︽窞鍖�'
+    }, {
+      value: 430204,
+      label: '鐭冲嘲鍖�'
+    }, {
+      value: 430211,
+      label: '澶╁厓鍖�'
+    }, {
+      value: 430221,
+      label: '鏍床鍘�'
+    }, {
+      value: 430223,
+      label: '鏀稿幙'
+    }, {
+      value: 430224,
+      label: '鑼堕櫟鍘�'
+    }, {
+      value: 430225,
+      label: '鐐庨櫟鍘�'
+    }, {
+      value: 430281,
+      label: '閱撮櫟甯�'
+    }]
+  }, {
+    value: 4303,
+    label: '婀樻江甯�',
+    children: [{
+      value: 430302,
+      label: '闆ㄦ箹鍖�'
+    }, {
+      value: 430304,
+      label: '宀冲鍖�'
+    }, {
+      value: 430321,
+      label: '婀樻江鍘�'
+    }, {
+      value: 430381,
+      label: '婀樹埂甯�'
+    }, {
+      value: 430382,
+      label: '闊跺北甯�'
+    }]
+  }, {
+    value: 4304,
+    label: '琛¢槼甯�',
+    children: [{
+      value: 430405,
+      label: '鐝犳櫀鍖�'
+    }, {
+      value: 430406,
+      label: '闆佸嘲鍖�'
+    }, {
+      value: 430407,
+      label: '鐭抽紦鍖�'
+    }, {
+      value: 430408,
+      label: '钂告箻鍖�'
+    }, {
+      value: 430412,
+      label: '鍗楀渤鍖�'
+    }, {
+      value: 430421,
+      label: '琛¢槼鍘�'
+    }, {
+      value: 430422,
+      label: '琛″崡鍘�'
+    }, {
+      value: 430423,
+      label: '琛″北鍘�'
+    }, {
+      value: 430424,
+      label: '琛′笢鍘�'
+    }, {
+      value: 430426,
+      label: '绁佷笢鍘�'
+    }, {
+      value: 430481,
+      label: '鑰掗槼甯�'
+    }, {
+      value: 430482,
+      label: '甯稿畞甯�'
+    }]
+  }, {
+    value: 4305,
+    label: '閭甸槼甯�',
+    children: [{
+      value: 430502,
+      label: '鍙屾竻鍖�'
+    }, {
+      value: 430503,
+      label: '澶хゥ鍖�'
+    }, {
+      value: 430511,
+      label: '鍖楀鍖�'
+    }, {
+      value: 430521,
+      label: '閭典笢鍘�'
+    }, {
+      value: 430522,
+      label: '鏂伴偟鍘�'
+    }, {
+      value: 430523,
+      label: '閭甸槼鍘�'
+    }, {
+      value: 430524,
+      label: '闅嗗洖鍘�'
+    }, {
+      value: 430525,
+      label: '娲炲彛鍘�'
+    }, {
+      value: 430527,
+      label: '缁ュ畞鍘�'
+    }, {
+      value: 430528,
+      label: '鏂板畞鍘�'
+    }, {
+      value: 430529,
+      label: '鍩庢鑻楁棌鑷不鍘�'
+    }, {
+      value: 430581,
+      label: '姝﹀唸甯�'
+    }]
+  }, {
+    value: 4306,
+    label: '宀抽槼甯�',
+    children: [{
+      value: 430602,
+      label: '宀抽槼妤煎尯'
+    }, {
+      value: 430603,
+      label: '浜戞邯鍖�'
+    }, {
+      value: 430611,
+      label: '鍚涘北鍖�'
+    }, {
+      value: 430621,
+      label: '宀抽槼鍘�'
+    }, {
+      value: 430623,
+      label: '鍗庡鍘�'
+    }, {
+      value: 430624,
+      label: '婀橀槾鍘�'
+    }, {
+      value: 430626,
+      label: '骞虫睙鍘�'
+    }, {
+      value: 430681,
+      label: '姹ㄧ綏甯�'
+    }, {
+      value: 430682,
+      label: '涓存箻甯�'
+    }]
+  }, {
+    value: 4307,
+    label: '甯稿痉甯�',
+    children: [{
+      value: 430702,
+      label: '姝﹂櫟鍖�'
+    }, {
+      value: 430703,
+      label: '榧庡煄鍖�'
+    }, {
+      value: 430721,
+      label: '瀹変埂鍘�'
+    }, {
+      value: 430722,
+      label: '姹夊鍘�'
+    }, {
+      value: 430723,
+      label: '婢у幙'
+    }, {
+      value: 430724,
+      label: '涓存晶鍘�'
+    }, {
+      value: 430725,
+      label: '妗冩簮鍘�'
+    }, {
+      value: 430726,
+      label: '鐭抽棬鍘�'
+    }, {
+      value: 430781,
+      label: '娲ュ競甯�'
+    }]
+  }, {
+    value: 4308,
+    label: '寮犲鐣屽競',
+    children: [{
+      value: 430802,
+      label: '姘稿畾鍖�'
+    }, {
+      value: 430811,
+      label: '姝﹂櫟婧愬尯'
+    }, {
+      value: 430821,
+      label: '鎱堝埄鍘�'
+    }, {
+      value: 430822,
+      label: '妗戞鍘�'
+    }]
+  }, {
+    value: 4309,
+    label: '鐩婇槼甯�',
+    children: [{
+      value: 430902,
+      label: '璧勯槼鍖�'
+    }, {
+      value: 430903,
+      label: '璧北鍖�'
+    }, {
+      value: 430921,
+      label: '鍗楀幙'
+    }, {
+      value: 430922,
+      label: '妗冩睙鍘�'
+    }, {
+      value: 430923,
+      label: '瀹夊寲鍘�'
+    }, {
+      value: 430981,
+      label: '娌呮睙甯�'
+    }]
+  }, {
+    value: 4310,
+    label: '閮村窞甯�',
+    children: [{
+      value: 431002,
+      label: '鍖楁箹鍖�'
+    }, {
+      value: 431003,
+      label: '鑻忎粰鍖�'
+    }, {
+      value: 431021,
+      label: '妗傞槼鍘�'
+    }, {
+      value: 431022,
+      label: '瀹滅珷鍘�'
+    }, {
+      value: 431023,
+      label: '姘稿叴鍘�'
+    }, {
+      value: 431024,
+      label: '鍢夌鍘�'
+    }, {
+      value: 431025,
+      label: '涓存鍘�'
+    }, {
+      value: 431026,
+      label: '姹濆煄鍘�'
+    }, {
+      value: 431027,
+      label: '妗備笢鍘�'
+    }, {
+      value: 431028,
+      label: '瀹変粊鍘�'
+    }, {
+      value: 431081,
+      label: '璧勫叴甯�'
+    }]
+  }, {
+    value: 4311,
+    label: '姘稿窞甯�',
+    children: [{
+      value: 431102,
+      label: '闆堕櫟鍖�'
+    }, {
+      value: 431103,
+      label: '鍐锋按婊╁尯'
+    }, {
+      value: 431121,
+      label: '绁侀槼鍘�'
+    }, {
+      value: 431122,
+      label: '涓滃畨鍘�'
+    }, {
+      value: 431123,
+      label: '鍙岀墝鍘�'
+    }, {
+      value: 431124,
+      label: '閬撳幙'
+    }, {
+      value: 431125,
+      label: '姹熸案鍘�'
+    }, {
+      value: 431126,
+      label: '瀹佽繙鍘�'
+    }, {
+      value: 431127,
+      label: '钃濆北鍘�'
+    }, {
+      value: 431128,
+      label: '鏂扮敯鍘�'
+    }, {
+      value: 431129,
+      label: '姹熷崕鐟舵棌鑷不鍘�'
+    }]
+  }, {
+    value: 4312,
+    label: '鎬�鍖栧競',
+    children: [{
+      value: 431202,
+      label: '楣ゅ煄鍖�'
+    }, {
+      value: 431221,
+      label: '涓柟鍘�'
+    }, {
+      value: 431222,
+      label: '娌呴櫟鍘�'
+    }, {
+      value: 431223,
+      label: '杈版邯鍘�'
+    }, {
+      value: 431224,
+      label: '婧嗘郸鍘�'
+    }, {
+      value: 431225,
+      label: '浼氬悓鍘�'
+    }, {
+      value: 431226,
+      label: '楹婚槼鑻楁棌鑷不鍘�'
+    }, {
+      value: 431227,
+      label: '鏂版檭渚楁棌鑷不鍘�'
+    }, {
+      value: 431228,
+      label: '鑺锋睙渚楁棌鑷不鍘�'
+    }, {
+      value: 431229,
+      label: '闈栧窞鑻楁棌渚楁棌鑷不鍘�'
+    }, {
+      value: 431230,
+      label: '閫氶亾渚楁棌鑷不鍘�'
+    }, {
+      value: 431281,
+      label: '娲睙甯�'
+    }]
+  }, {
+    value: 4313,
+    label: '濞勫簳甯�',
+    children: [{
+      value: 431302,
+      label: '濞勬槦鍖�'
+    }, {
+      value: 431321,
+      label: '鍙屽嘲鍘�'
+    }, {
+      value: 431322,
+      label: '鏂板寲鍘�'
+    }, {
+      value: 431381,
+      label: '鍐锋按姹熷競'
+    }, {
+      value: 431382,
+      label: '娑熸簮甯�'
+    }]
+  }, {
+    value: 4331,
+    label: '婀樿タ鍦熷鏃忚嫍鏃忚嚜娌诲窞',
+    children: [{
+      value: 433101,
+      label: '鍚夐甯�'
+    }, {
+      value: 433122,
+      label: '娉告邯鍘�'
+    }, {
+      value: 433123,
+      label: '鍑ゅ嚢鍘�'
+    }, {
+      value: 433124,
+      label: '鑺卞灒鍘�'
+    }, {
+      value: 433125,
+      label: '淇濋潠鍘�'
+    }, {
+      value: 433126,
+      label: '鍙や笀鍘�'
+    }, {
+      value: 433127,
+      label: '姘搁『鍘�'
+    }, {
+      value: 433130,
+      label: '榫欏北鍘�'
+    }]
+  }]
+}, {
+  value: 44,
+  label: '骞夸笢鐪�',
+  children: [{
+    value: 4401,
+    label: '骞垮窞甯�',
+    children: [{
+      value: 440103,
+      label: '鑽旀咕鍖�'
+    }, {
+      value: 440104,
+      label: '瓒婄鍖�'
+    }, {
+      value: 440105,
+      label: '娴风彔鍖�'
+    }, {
+      value: 440106,
+      label: '澶╂渤鍖�'
+    }, {
+      value: 440111,
+      label: '鐧戒簯鍖�'
+    }, {
+      value: 440112,
+      label: '榛勫煍鍖�'
+    }, {
+      value: 440113,
+      label: '鐣鍖�'
+    }, {
+      value: 440114,
+      label: '鑺遍兘鍖�'
+    }, {
+      value: 440115,
+      label: '鍗楁矙鍖�'
+    }, {
+      value: 440117,
+      label: '浠庡寲鍖�'
+    }, {
+      value: 440118,
+      label: '澧炲煄鍖�'
+    }]
+  }, {
+    value: 4402,
+    label: '闊跺叧甯�',
+    children: [{
+      value: 440203,
+      label: '姝︽睙鍖�'
+    }, {
+      value: 440204,
+      label: '娴堟睙鍖�'
+    }, {
+      value: 440205,
+      label: '鏇叉睙鍖�'
+    }, {
+      value: 440222,
+      label: '濮嬪叴鍘�'
+    }, {
+      value: 440224,
+      label: '浠佸寲鍘�'
+    }, {
+      value: 440229,
+      label: '缈佹簮鍘�'
+    }, {
+      value: 440232,
+      label: '涔虫簮鐟舵棌鑷不鍘�'
+    }, {
+      value: 440233,
+      label: '鏂颁赴鍘�'
+    }, {
+      value: 440281,
+      label: '涔愭槍甯�'
+    }, {
+      value: 440282,
+      label: '鍗楅泟甯�'
+    }]
+  }, {
+    value: 4403,
+    label: '娣卞湷甯�',
+    children: [{
+      value: 440303,
+      label: '缃楁箹鍖�'
+    }, {
+      value: 440304,
+      label: '绂忕敯鍖�'
+    }, {
+      value: 440305,
+      label: '鍗楀北鍖�'
+    }, {
+      value: 440306,
+      label: '瀹濆畨鍖�'
+    }, {
+      value: 440307,
+      label: '榫欏矖鍖�'
+    }, {
+      value: 440308,
+      label: '鐩愮敯鍖�'
+    }]
+  }, {
+    value: 4404,
+    label: '鐝犳捣甯�',
+    children: [{
+      value: 440402,
+      label: '棣欐床鍖�'
+    }, {
+      value: 440403,
+      label: '鏂楅棬鍖�'
+    }, {
+      value: 440404,
+      label: '閲戞咕鍖�'
+    }]
+  }, {
+    value: 4405,
+    label: '姹曞ご甯�',
+    children: [{
+      value: 440507,
+      label: '榫欐箹鍖�'
+    }, {
+      value: 440511,
+      label: '閲戝钩鍖�'
+    }, {
+      value: 440512,
+      label: '婵犳睙鍖�'
+    }, {
+      value: 440513,
+      label: '娼槼鍖�'
+    }, {
+      value: 440514,
+      label: '娼崡鍖�'
+    }, {
+      value: 440515,
+      label: '婢勬捣鍖�'
+    }, {
+      value: 440523,
+      label: '鍗楁境鍘�'
+    }]
+  }, {
+    value: 4406,
+    label: '浣涘北甯�',
+    children: [{
+      value: 440604,
+      label: '绂呭煄鍖�'
+    }, {
+      value: 440605,
+      label: '鍗楁捣鍖�'
+    }, {
+      value: 440606,
+      label: '椤哄痉鍖�'
+    }, {
+      value: 440607,
+      label: '涓夋按鍖�'
+    }, {
+      value: 440608,
+      label: '楂樻槑鍖�'
+    }]
+  }, {
+    value: 4407,
+    label: '姹熼棬甯�',
+    children: [{
+      value: 440703,
+      label: '钃睙鍖�'
+    }, {
+      value: 440704,
+      label: '姹熸捣鍖�'
+    }, {
+      value: 440705,
+      label: '鏂颁細鍖�'
+    }, {
+      value: 440781,
+      label: '鍙板北甯�'
+    }, {
+      value: 440783,
+      label: '寮�骞冲競'
+    }, {
+      value: 440784,
+      label: '楣ゅ北甯�'
+    }, {
+      value: 440785,
+      label: '鎭╁钩甯�'
+    }]
+  }, {
+    value: 4408,
+    label: '婀涙睙甯�',
+    children: [{
+      value: 440802,
+      label: '璧ゅ潕鍖�'
+    }, {
+      value: 440803,
+      label: '闇炲北鍖�'
+    }, {
+      value: 440804,
+      label: '鍧″ご鍖�'
+    }, {
+      value: 440811,
+      label: '楹荤珷鍖�'
+    }, {
+      value: 440823,
+      label: '閬傛邯鍘�'
+    }, {
+      value: 440825,
+      label: '寰愰椈鍘�'
+    }, {
+      value: 440881,
+      label: '寤夋睙甯�'
+    }, {
+      value: 440882,
+      label: '闆峰窞甯�'
+    }, {
+      value: 440883,
+      label: '鍚村窛甯�'
+    }]
+  }, {
+    value: 4409,
+    label: '鑼傚悕甯�',
+    children: [{
+      value: 440902,
+      label: '鑼傚崡鍖�'
+    }, {
+      value: 440904,
+      label: '鐢电櫧鍖�'
+    }, {
+      value: 440981,
+      label: '楂樺窞甯�'
+    }, {
+      value: 440982,
+      label: '鍖栧窞甯�'
+    }, {
+      value: 440983,
+      label: '淇″疁甯�'
+    }]
+  }, {
+    value: 4412,
+    label: '鑲囧簡甯�',
+    children: [{
+      value: 441202,
+      label: '绔窞鍖�'
+    }, {
+      value: 441203,
+      label: '榧庢箹鍖�'
+    }, {
+      value: 441204,
+      label: '楂樿鍖�'
+    }, {
+      value: 441223,
+      label: '骞垮畞鍘�'
+    }, {
+      value: 441224,
+      label: '鎬�闆嗗幙'
+    }, {
+      value: 441225,
+      label: '灏佸紑鍘�'
+    }, {
+      value: 441226,
+      label: '寰峰簡鍘�'
+    }, {
+      value: 441284,
+      label: '鍥涗細甯�'
+    }]
+  }, {
+    value: 4413,
+    label: '鎯犲窞甯�',
+    children: [{
+      value: 441302,
+      label: '鎯犲煄鍖�'
+    }, {
+      value: 441303,
+      label: '鎯犻槼鍖�'
+    }, {
+      value: 441322,
+      label: '鍗氱綏鍘�'
+    }, {
+      value: 441323,
+      label: '鎯犱笢鍘�'
+    }, {
+      value: 441324,
+      label: '榫欓棬鍘�'
+    }]
+  }, {
+    value: 4414,
+    label: '姊呭窞甯�',
+    children: [{
+      value: 441402,
+      label: '姊呮睙鍖�'
+    }, {
+      value: 441403,
+      label: '姊呭幙鍖�'
+    }, {
+      value: 441422,
+      label: '澶у煍鍘�'
+    }, {
+      value: 441423,
+      label: '涓伴『鍘�'
+    }, {
+      value: 441424,
+      label: '浜斿崕鍘�'
+    }, {
+      value: 441426,
+      label: '骞宠繙鍘�'
+    }, {
+      value: 441427,
+      label: '钑夊箔鍘�'
+    }, {
+      value: 441481,
+      label: '鍏村畞甯�'
+    }]
+  }, {
+    value: 4415,
+    label: '姹曞熬甯�',
+    children: [{
+      value: 441502,
+      label: '鍩庡尯'
+    }, {
+      value: 441521,
+      label: '娴蜂赴鍘�'
+    }, {
+      value: 441523,
+      label: '闄嗘渤鍘�'
+    }, {
+      value: 441581,
+      label: '闄嗕赴甯�'
+    }]
+  }, {
+    value: 4416,
+    label: '娌虫簮甯�',
+    children: [{
+      value: 441602,
+      label: '婧愬煄鍖�'
+    }, {
+      value: 441621,
+      label: '绱噾鍘�'
+    }, {
+      value: 441622,
+      label: '榫欏窛鍘�'
+    }, {
+      value: 441623,
+      label: '杩炲钩鍘�'
+    }, {
+      value: 441624,
+      label: '鍜屽钩鍘�'
+    }, {
+      value: 441625,
+      label: '涓滄簮鍘�'
+    }]
+  }, {
+    value: 4417,
+    label: '闃虫睙甯�',
+    children: [{
+      value: 441702,
+      label: '姹熷煄鍖�'
+    }, {
+      value: 441704,
+      label: '闃充笢鍖�'
+    }, {
+      value: 441721,
+      label: '闃宠タ鍘�'
+    }, {
+      value: 441781,
+      label: '闃虫槬甯�'
+    }]
+  }, {
+    value: 4418,
+    label: '娓呰繙甯�',
+    children: [{
+      value: 441802,
+      label: '娓呭煄鍖�'
+    }, {
+      value: 441803,
+      label: '娓呮柊鍖�'
+    }, {
+      value: 441821,
+      label: '浣涘唸鍘�'
+    }, {
+      value: 441823,
+      label: '闃冲北鍘�'
+    }, {
+      value: 441825,
+      label: '杩炲北澹棌鐟舵棌鑷不鍘�'
+    }, {
+      value: 441826,
+      label: '杩炲崡鐟舵棌鑷不鍘�'
+    }, {
+      value: 441881,
+      label: '鑻卞痉甯�'
+    }, {
+      value: 441882,
+      label: '杩炲窞甯�'
+    }]
+  }, {
+    value: 4419,
+    label: '涓滆帪甯�',
+    children: [{
+      value: 441900003,
+      label: '涓滃煄琛楅亾'
+    }, {
+      value: 441900004,
+      label: '鍗楀煄琛楅亾'
+    }, {
+      value: 441900005,
+      label: '涓囨睙琛楅亾'
+    }, {
+      value: 441900006,
+      label: '鑾炲煄琛楅亾'
+    }, {
+      value: 441900101,
+      label: '鐭崇ⅲ闀�'
+    }, {
+      value: 441900102,
+      label: '鐭抽緳闀�'
+    }, {
+      value: 441900103,
+      label: '鑼跺北闀�'
+    }, {
+      value: 441900104,
+      label: '鐭虫帓闀�'
+    }, {
+      value: 441900105,
+      label: '浼佺煶闀�'
+    }, {
+      value: 441900106,
+      label: '妯播闀�'
+    }, {
+      value: 441900107,
+      label: '妗ュご闀�'
+    }, {
+      value: 441900108,
+      label: '璋㈠矖闀�'
+    }, {
+      value: 441900109,
+      label: '涓滃潙闀�'
+    }, {
+      value: 441900110,
+      label: '甯稿钩闀�'
+    }, {
+      value: 441900111,
+      label: '瀵闀�'
+    }, {
+      value: 441900112,
+      label: '妯熸湪澶撮晣'
+    }, {
+      value: 441900113,
+      label: '澶ф湕闀�'
+    }, {
+      value: 441900114,
+      label: '榛勬睙闀�'
+    }, {
+      value: 441900115,
+      label: '娓呮邯闀�'
+    }, {
+      value: 441900116,
+      label: '濉樺帵闀�'
+    }, {
+      value: 441900117,
+      label: '鍑ゅ矖闀�'
+    }, {
+      value: 441900118,
+      label: '澶у箔灞遍晣'
+    }, {
+      value: 441900119,
+      label: '闀垮畨闀�'
+    }, {
+      value: 441900121,
+      label: '铏庨棬闀�'
+    }, {
+      value: 441900122,
+      label: '鍘氳闀�'
+    }, {
+      value: 441900123,
+      label: '娌欑敯闀�'
+    }, {
+      value: 441900124,
+      label: '閬撴粯闀�'
+    }, {
+      value: 441900125,
+      label: '娲闀�'
+    }, {
+      value: 441900126,
+      label: '楹绘秾闀�'
+    }, {
+      value: 441900127,
+      label: '鏈涚墰澧╅晣'
+    }, {
+      value: 441900128,
+      label: '涓爞闀�'
+    }, {
+      value: 441900129,
+      label: '楂樺煑闀�'
+    }, {
+      value: 441900401,
+      label: '鏉惧北婀栫濮斾細'
+    }, {
+      value: 441900402,
+      label: '铏庨棬娓濮斾細'
+    }, {
+      value: 441900403,
+      label: '涓滆帪鐢熸�佸洯'
+    }]
+  }, {
+    value: 4420,
+    label: '涓北甯�',
+    children: [{
+      value: 442000001,
+      label: '鐭冲矏鍖鸿閬�'
+    }, {
+      value: 442000002,
+      label: '涓滃尯琛楅亾'
+    }, {
+      value: 442000003,
+      label: '鐏偓寮�鍙戝尯琛楅亾'
+    }, {
+      value: 442000004,
+      label: '瑗垮尯琛楅亾'
+    }, {
+      value: 442000005,
+      label: '鍗楀尯琛楅亾'
+    }, {
+      value: 442000006,
+      label: '浜旀灞辫閬�'
+    }, {
+      value: 442000100,
+      label: '灏忔闀�'
+    }, {
+      value: 442000101,
+      label: '榛勫渻闀�'
+    }, {
+      value: 442000102,
+      label: '姘戜紬闀�'
+    }, {
+      value: 442000103,
+      label: '涓滃嚖闀�'
+    }, {
+      value: 442000104,
+      label: '涓滃崌闀�'
+    }, {
+      value: 442000105,
+      label: '鍙ら晣闀�'
+    }, {
+      value: 442000106,
+      label: '娌欐邯闀�'
+    }, {
+      value: 442000107,
+      label: '鍧︽床闀�'
+    }, {
+      value: 442000108,
+      label: '娓彛闀�'
+    }, {
+      value: 442000109,
+      label: '涓夎闀�'
+    }, {
+      value: 442000110,
+      label: '妯爮闀�'
+    }, {
+      value: 442000111,
+      label: '鍗楀ご闀�'
+    }, {
+      value: 442000112,
+      label: '闃滄矙闀�'
+    }, {
+      value: 442000113,
+      label: '鍗楁湕闀�'
+    }, {
+      value: 442000114,
+      label: '涓変埂闀�'
+    }, {
+      value: 442000115,
+      label: '鏉胯姍闀�'
+    }, {
+      value: 442000116,
+      label: '澶ф秾闀�'
+    }, {
+      value: 442000117,
+      label: '绁炴咕闀�'
+    }]
+  }, {
+    value: 4451,
+    label: '娼窞甯�',
+    children: [{
+      value: 445102,
+      label: '婀樻ˉ鍖�'
+    }, {
+      value: 445103,
+      label: '娼畨鍖�'
+    }, {
+      value: 445122,
+      label: '楗跺钩鍘�'
+    }]
+  }, {
+    value: 4452,
+    label: '鎻槼甯�',
+    children: [{
+      value: 445202,
+      label: '姒曞煄鍖�'
+    }, {
+      value: 445203,
+      label: '鎻笢鍖�'
+    }, {
+      value: 445222,
+      label: '鎻タ鍘�'
+    }, {
+      value: 445224,
+      label: '鎯犳潵鍘�'
+    }, {
+      value: 445281,
+      label: '鏅畞甯�'
+    }]
+  }, {
+    value: 4453,
+    label: '浜戞诞甯�',
+    children: [{
+      value: 445302,
+      label: '浜戝煄鍖�'
+    }, {
+      value: 445303,
+      label: '浜戝畨鍖�'
+    }, {
+      value: 445321,
+      label: '鏂板叴鍘�'
+    }, {
+      value: 445322,
+      label: '閮佸崡鍘�'
+    }, {
+      value: 445381,
+      label: '缃楀畾甯�'
+    }]
+  }]
+}, {
+  value: 45,
+  label: '骞胯タ澹棌鑷不鍖�',
+  children: [{
+    value: 4501,
+    label: '鍗楀畞甯�',
+    children: [{
+      value: 450102,
+      label: '鍏村畞鍖�'
+    }, {
+      value: 450103,
+      label: '闈掔鍖�'
+    }, {
+      value: 450105,
+      label: '姹熷崡鍖�'
+    }, {
+      value: 450107,
+      label: '瑗夸埂濉樺尯'
+    }, {
+      value: 450108,
+      label: '鑹簡鍖�'
+    }, {
+      value: 450109,
+      label: '閭曞畞鍖�'
+    }, {
+      value: 450110,
+      label: '姝﹂福鍖�'
+    }, {
+      value: 450123,
+      label: '闅嗗畨鍘�'
+    }, {
+      value: 450124,
+      label: '椹北鍘�'
+    }, {
+      value: 450125,
+      label: '涓婃灄鍘�'
+    }, {
+      value: 450126,
+      label: '瀹鹃槼鍘�'
+    }, {
+      value: 450127,
+      label: '妯幙'
+    }]
+  }, {
+    value: 4502,
+    label: '鏌冲窞甯�',
+    children: [{
+      value: 450202,
+      label: '鍩庝腑鍖�'
+    }, {
+      value: 450203,
+      label: '楸煎嘲鍖�'
+    }, {
+      value: 450204,
+      label: '鏌冲崡鍖�'
+    }, {
+      value: 450205,
+      label: '鏌冲寳鍖�'
+    }, {
+      value: 450206,
+      label: '鏌虫睙鍖�'
+    }, {
+      value: 450222,
+      label: '鏌冲煄鍘�'
+    }, {
+      value: 450223,
+      label: '楣垮鍘�'
+    }, {
+      value: 450224,
+      label: '铻嶅畨鍘�'
+    }, {
+      value: 450225,
+      label: '铻嶆按鑻楁棌鑷不鍘�'
+    }, {
+      value: 450226,
+      label: '涓夋睙渚楁棌鑷不鍘�'
+    }]
+  }, {
+    value: 4503,
+    label: '妗傛灄甯�',
+    children: [{
+      value: 450302,
+      label: '绉�宄板尯'
+    }, {
+      value: 450303,
+      label: '鍙犲僵鍖�'
+    }, {
+      value: 450304,
+      label: '璞″北鍖�'
+    }, {
+      value: 450305,
+      label: '涓冩槦鍖�'
+    }, {
+      value: 450311,
+      label: '闆佸北鍖�'
+    }, {
+      value: 450312,
+      label: '涓存鍖�'
+    }, {
+      value: 450321,
+      label: '闃虫湐鍘�'
+    }, {
+      value: 450323,
+      label: '鐏靛窛鍘�'
+    }, {
+      value: 450324,
+      label: '鍏ㄥ窞鍘�'
+    }, {
+      value: 450325,
+      label: '鍏村畨鍘�'
+    }, {
+      value: 450326,
+      label: '姘哥鍘�'
+    }, {
+      value: 450327,
+      label: '鐏岄槼鍘�'
+    }, {
+      value: 450328,
+      label: '榫欒儨鍚勬棌鑷不鍘�'
+    }, {
+      value: 450329,
+      label: '璧勬簮鍘�'
+    }, {
+      value: 450330,
+      label: '骞充箰鍘�'
+    }, {
+      value: 450331,
+      label: '鑽旀郸鍘�'
+    }, {
+      value: 450332,
+      label: '鎭煄鐟舵棌鑷不鍘�'
+    }]
+  }, {
+    value: 4504,
+    label: '姊у窞甯�',
+    children: [{
+      value: 450403,
+      label: '涓囩鍖�'
+    }, {
+      value: 450405,
+      label: '闀挎床鍖�'
+    }, {
+      value: 450406,
+      label: '榫欏湬鍖�'
+    }, {
+      value: 450421,
+      label: '鑻嶆ⅶ鍘�'
+    }, {
+      value: 450422,
+      label: '钘ゅ幙'
+    }, {
+      value: 450423,
+      label: '钂欏北鍘�'
+    }, {
+      value: 450481,
+      label: '宀戞邯甯�'
+    }]
+  }, {
+    value: 4505,
+    label: '鍖楁捣甯�',
+    children: [{
+      value: 450502,
+      label: '娴峰煄鍖�'
+    }, {
+      value: 450503,
+      label: '閾舵捣鍖�'
+    }, {
+      value: 450512,
+      label: '閾佸北娓尯'
+    }, {
+      value: 450521,
+      label: '鍚堟郸鍘�'
+    }]
+  }, {
+    value: 4506,
+    label: '闃插煄娓競',
+    children: [{
+      value: 450602,
+      label: '娓彛鍖�'
+    }, {
+      value: 450603,
+      label: '闃插煄鍖�'
+    }, {
+      value: 450621,
+      label: '涓婃�濆幙'
+    }, {
+      value: 450681,
+      label: '涓滃叴甯�'
+    }]
+  }, {
+    value: 4507,
+    label: '閽﹀窞甯�',
+    children: [{
+      value: 450702,
+      label: '閽﹀崡鍖�'
+    }, {
+      value: 450703,
+      label: '閽﹀寳鍖�'
+    }, {
+      value: 450721,
+      label: '鐏靛北鍘�'
+    }, {
+      value: 450722,
+      label: '娴﹀寳鍘�'
+    }]
+  }, {
+    value: 4508,
+    label: '璐垫腐甯�',
+    children: [{
+      value: 450802,
+      label: '娓寳鍖�'
+    }, {
+      value: 450803,
+      label: '娓崡鍖�'
+    }, {
+      value: 450804,
+      label: '瑕冨鍖�'
+    }, {
+      value: 450821,
+      label: '骞冲崡鍘�'
+    }, {
+      value: 450881,
+      label: '妗傚钩甯�'
+    }]
+  }, {
+    value: 4509,
+    label: '鐜夋灄甯�',
+    children: [{
+      value: 450902,
+      label: '鐜夊窞鍖�'
+    }, {
+      value: 450903,
+      label: '绂忕坏鍖�'
+    }, {
+      value: 450921,
+      label: '瀹瑰幙'
+    }, {
+      value: 450922,
+      label: '闄嗗窛鍘�'
+    }, {
+      value: 450923,
+      label: '鍗氱櫧鍘�'
+    }, {
+      value: 450924,
+      label: '鍏翠笟鍘�'
+    }, {
+      value: 450981,
+      label: '鍖楁祦甯�'
+    }]
+  }, {
+    value: 4510,
+    label: '鐧捐壊甯�',
+    children: [{
+      value: 451002,
+      label: '鍙虫睙鍖�'
+    }, {
+      value: 451021,
+      label: '鐢伴槼鍘�'
+    }, {
+      value: 451022,
+      label: '鐢颁笢鍘�'
+    }, {
+      value: 451023,
+      label: '骞虫灉鍘�'
+    }, {
+      value: 451024,
+      label: '寰蜂繚鍘�'
+    }, {
+      value: 451026,
+      label: '閭e潯鍘�'
+    }, {
+      value: 451027,
+      label: '鍑屼簯鍘�'
+    }, {
+      value: 451028,
+      label: '涔愪笟鍘�'
+    }, {
+      value: 451029,
+      label: '鐢版灄鍘�'
+    }, {
+      value: 451030,
+      label: '瑗挎灄鍘�'
+    }, {
+      value: 451031,
+      label: '闅嗘灄鍚勬棌鑷不鍘�'
+    }, {
+      value: 451081,
+      label: '闈栬タ甯�'
+    }]
+  }, {
+    value: 4511,
+    label: '璐哄窞甯�',
+    children: [{
+      value: 451102,
+      label: '鍏鍖�'
+    }, {
+      value: 451103,
+      label: '骞虫鍖�'
+    }, {
+      value: 451121,
+      label: '鏄钩鍘�'
+    }, {
+      value: 451122,
+      label: '閽熷北鍘�'
+    }, {
+      value: 451123,
+      label: '瀵屽窛鐟舵棌鑷不鍘�'
+    }]
+  }, {
+    value: 4512,
+    label: '娌虫睜甯�',
+    children: [{
+      value: 451202,
+      label: '閲戝煄姹熷尯'
+    }, {
+      value: 451221,
+      label: '鍗椾腹鍘�'
+    }, {
+      value: 451222,
+      label: '澶╁敞鍘�'
+    }, {
+      value: 451223,
+      label: '鍑ゅ北鍘�'
+    }, {
+      value: 451224,
+      label: '涓滃叞鍘�'
+    }, {
+      value: 451225,
+      label: '缃楀煄浠浆鏃忚嚜娌诲幙'
+    }, {
+      value: 451226,
+      label: '鐜睙姣涘崡鏃忚嚜娌诲幙'
+    }, {
+      value: 451227,
+      label: '宸撮┈鐟舵棌鑷不鍘�'
+    }, {
+      value: 451228,
+      label: '閮藉畨鐟舵棌鑷不鍘�'
+    }, {
+      value: 451229,
+      label: '澶у寲鐟舵棌鑷不鍘�'
+    }, {
+      value: 451281,
+      label: '瀹滃窞甯�'
+    }]
+  }, {
+    value: 4513,
+    label: '鏉ュ甯�',
+    children: [{
+      value: 451302,
+      label: '鍏村鍖�'
+    }, {
+      value: 451321,
+      label: '蹇诲煄鍘�'
+    }, {
+      value: 451322,
+      label: '璞″窞鍘�'
+    }, {
+      value: 451323,
+      label: '姝﹀鍘�'
+    }, {
+      value: 451324,
+      label: '閲戠鐟舵棌鑷不鍘�'
+    }, {
+      value: 451381,
+      label: '鍚堝北甯�'
+    }]
+  }, {
+    value: 4514,
+    label: '宕囧乏甯�',
+    children: [{
+      value: 451402,
+      label: '姹熷窞鍖�'
+    }, {
+      value: 451421,
+      label: '鎵剁互鍘�'
+    }, {
+      value: 451422,
+      label: '瀹佹槑鍘�'
+    }, {
+      value: 451423,
+      label: '榫欏窞鍘�'
+    }, {
+      value: 451424,
+      label: '澶ф柊鍘�'
+    }, {
+      value: 451425,
+      label: '澶╃瓑鍘�'
+    }, {
+      value: 451481,
+      label: '鍑ゥ甯�'
+    }]
+  }]
+}, {
+  value: 46,
+  label: '娴峰崡鐪�',
+  children: [{
+    value: 4601,
+    label: '娴峰彛甯�',
+    children: [{
+      value: 460105,
+      label: '绉�鑻卞尯'
+    }, {
+      value: 460106,
+      label: '榫欏崕鍖�'
+    }, {
+      value: 460107,
+      label: '鐞煎北鍖�'
+    }, {
+      value: 460108,
+      label: '缇庡叞鍖�'
+    }]
+  }, {
+    value: 4602,
+    label: '涓変簹甯�',
+    children: [{ // 鍚屾灏忕▼搴� 鍒犻櫎 鍘燂細甯傝緰鍖�
+      value: 460202,
+      label: '娴锋鍖�'
+    }, {
+      value: 460203,
+      label: '鍚夐槼鍖�'
+    }, {
+      value: 460204,
+      label: '澶╂动鍖�'
+    }, {
+      value: 460205,
+      label: '宕栧窞鍖�'
+    }]
+  }, {
+    value: 4603,
+    label: '涓夋矙甯�',
+    children: [{
+      value: 460321,
+      label: '瑗挎矙缇ゅ矝'
+    }, {
+      value: 460322,
+      label: '鍗楁矙缇ゅ矝'
+    }, {
+      value: 460323,
+      label: '涓矙缇ゅ矝鐨勫矝绀佸強鍏舵捣鍩�'
+    }]
+  }, {
+    value: 4604,
+    label: '鍎嬪窞甯�',
+    children: [{
+      value: 460400100,
+      label: '閭eぇ闀�'
+    }, {
+      value: 460400101,
+      label: '鍜屽簡闀�'
+    }, {
+      value: 460400102,
+      label: '鍗椾赴闀�'
+    }, {
+      value: 460400103,
+      label: '澶ф垚闀�'
+    }, {
+      value: 460400104,
+      label: '闆呮槦闀�'
+    }, {
+      value: 460400105,
+      label: '鍏版磱闀�'
+    }, {
+      value: 460400106,
+      label: '鍏夋潙闀�'
+    }, {
+      value: 460400107,
+      label: '鏈ㄦ闀�'
+    }, {
+      value: 460400108,
+      label: '娴峰ご闀�'
+    }, {
+      value: 460400109,
+      label: '宄ㄨ敁闀�'
+    }, {
+      value: 460400110,
+      label: '涓夐兘闀�'
+    }, {
+      value: 460400111,
+      label: '鐜嬩簲闀�'
+    }, {
+      value: 460400112,
+      label: '鐧介┈浜曢晣'
+    }, {
+      value: 460400113,
+      label: '涓拰闀�'
+    }, {
+      value: 460400114,
+      label: '鎺掓郸闀�'
+    }, {
+      value: 460400115,
+      label: '涓滄垚闀�'
+    }, {
+      value: 460400116,
+      label: '鏂板窞闀�'
+    }, {
+      value: 460400400,
+      label: '鍥借惀瑗垮煿鍐滃満'
+    }, {
+      value: 460400404,
+      label: '鍥借惀瑗胯仈鍐滃満'
+    }, {
+      value: 460400405,
+      label: '鍥借惀钃濇磱鍐滃満'
+    }, {
+      value: 460400407,
+      label: '鍥借惀鍏竴鍐滃満'
+    }, {
+      value: 460400499,
+      label: '娲嬫郸缁忔祹寮�鍙戝尯'
+    }, {
+      value: 460400500,
+      label: '鍗庡崡鐑綔瀛﹂櫌'
+    }]
+  }, {
+    value: 4690,
+    label: '鐪佺洿杈栧幙绾ц鏀垮尯鍒�',
+    children: [{
+      value: 469001,
+      label: '浜旀寚灞卞競'
+    }, {
+      value: 469002,
+      label: '鐞兼捣甯�'
+    }, {
+      value: 469005,
+      label: '鏂囨槍甯�'
+    }, {
+      value: 469006,
+      label: '涓囧畞甯�'
+    }, {
+      value: 469007,
+      label: '涓滄柟甯�'
+    }, {
+      value: 469021,
+      label: '瀹氬畨鍘�'
+    }, {
+      value: 469022,
+      label: '灞槍鍘�'
+    }, {
+      value: 469023,
+      label: '婢勮繄鍘�'
+    }, {
+      value: 469024,
+      label: '涓撮珮鍘�'
+    }, {
+      value: 469025,
+      label: '鐧芥矙榛庢棌鑷不鍘�'
+    }, {
+      value: 469026,
+      label: '鏄屾睙榛庢棌鑷不鍘�'
+    }, {
+      value: 469027,
+      label: '涔愪笢榛庢棌鑷不鍘�'
+    }, {
+      value: 469028,
+      label: '闄垫按榛庢棌鑷不鍘�'
+    }, {
+      value: 469029,
+      label: '淇濅涵榛庢棌鑻楁棌鑷不鍘�'
+    }, {
+      value: 469030,
+      label: '鐞间腑榛庢棌鑻楁棌鑷不鍘�'
+    }]
+  }]
+}, {
+  value: 50,
+  label: '閲嶅簡甯�',
+  children: [{
+    value: 5001,
+    label: '閲嶅簡甯�', // 鍚屾灏忕▼搴� 鍘燂細甯傝緰鍖�
+    children: [{
+      value: 500101,
+      label: '涓囧窞鍖�'
+    }, {
+      value: 500102,
+      label: '娑櫟鍖�'
+    }, {
+      value: 500103,
+      label: '娓濅腑鍖�'
+    }, {
+      value: 500104,
+      label: '澶ф浮鍙e尯'
+    }, {
+      value: 500105,
+      label: '姹熷寳鍖�'
+    }, {
+      value: 500106,
+      label: '娌欏潽鍧濆尯'
+    }, {
+      value: 500107,
+      label: '涔濋緳鍧″尯'
+    }, {
+      value: 500108,
+      label: '鍗楀哺鍖�'
+    }, {
+      value: 500109,
+      label: '鍖楃鍖�'
+    }, {
+      value: 500110,
+      label: '缍︽睙鍖�'
+    }, {
+      value: 500111,
+      label: '澶ц冻鍖�'
+    }, {
+      value: 500112,
+      label: '娓濆寳鍖�'
+    }, {
+      value: 500113,
+      label: '宸村崡鍖�'
+    }, {
+      value: 500114,
+      label: '榛旀睙鍖�'
+    }, {
+      value: 500115,
+      label: '闀垮鍖�'
+    }, {
+      value: 500116,
+      label: '姹熸触鍖�'
+    }, {
+      value: 500117,
+      label: '鍚堝窛鍖�'
+    }, {
+      value: 500118,
+      label: '姘稿窛鍖�'
+    }, {
+      value: 500119,
+      label: '鍗楀窛鍖�'
+    }, {
+      value: 500120,
+      label: '鐠у北鍖�'
+    }, {
+      value: 500151,
+      label: '閾滄鍖�'
+    }, {
+      value: 500152,
+      label: '娼煎崡鍖�'
+    }, {
+      value: 500153,
+      label: '鑽f槍鍖�'
+    }, {
+      value: 500154,
+      label: '寮�宸炲尯'
+    }]
+  }, {
+    value: 5002,
+    label: '鍘�',
+    children: [{
+      value: 500228,
+      label: '姊佸钩鍘�'
+    }, {
+      value: 500229,
+      label: '鍩庡彛鍘�'
+    }, {
+      value: 500230,
+      label: '涓伴兘鍘�'
+    }, {
+      value: 500231,
+      label: '鍨睙鍘�'
+    }, {
+      value: 500232,
+      label: '姝﹂殕鍘�'
+    }, {
+      value: 500233,
+      label: '蹇犲幙'
+    }, {
+      value: 500235,
+      label: '浜戦槼鍘�'
+    }, {
+      value: 500236,
+      label: '濂夎妭鍘�'
+    }, {
+      value: 500237,
+      label: '宸北鍘�'
+    }, {
+      value: 500238,
+      label: '宸邯鍘�'
+    }, {
+      value: 500240,
+      label: '鐭虫煴鍦熷鏃忚嚜娌诲幙'
+    }, {
+      value: 500241,
+      label: '绉�灞卞湡瀹舵棌鑻楁棌鑷不鍘�'
+    }, {
+      value: 500242,
+      label: '閰夐槼鍦熷鏃忚嫍鏃忚嚜娌诲幙'
+    }, {
+      value: 500243,
+      label: '褰按鑻楁棌鍦熷鏃忚嚜娌诲幙'
+    }]
+  }]
+}, {
+  value: 51,
+  label: '鍥涘窛鐪�',
+  children: [{
+    value: 5101,
+    label: '鎴愰兘甯�',
+    children: [{
+      value: 510104,
+      label: '閿︽睙鍖�'
+    }, {
+      value: 510105,
+      label: '闈掔緤鍖�'
+    }, {
+      value: 510106,
+      label: '閲戠墰鍖�'
+    }, {
+      value: 510107,
+      label: '姝︿警鍖�'
+    }, {
+      value: 510108,
+      label: '鎴愬崕鍖�'
+    }, {
+      value: 510112,
+      label: '榫欐硥椹垮尯'
+    }, {
+      value: 510113,
+      label: '闈掔櫧姹熷尯'
+    }, {
+      value: 510114,
+      label: '鏂伴兘鍖�'
+    }, {
+      value: 510115,
+      label: '娓╂睙鍖�'
+    }, {
+      value: 510116,
+      label: '鍙屾祦鍖�'
+    }, {
+      value: 510121,
+      label: '閲戝爞鍘�'
+    }, {
+      value: 510124,
+      label: '閮幙'
+    }, {
+      value: 510129,
+      label: '澶ч倯鍘�'
+    }, {
+      value: 510131,
+      label: '钂叉睙鍘�'
+    }, {
+      value: 510132,
+      label: '鏂版触鍘�'
+    }, {
+      value: 510181,
+      label: '閮芥睙鍫板競'
+    }, {
+      value: 510182,
+      label: '褰窞甯�'
+    }, {
+      value: 510183,
+      label: '閭涘磧甯�'
+    }, {
+      value: 510184,
+      label: '宕囧窞甯�'
+    }, {
+      value: 510185,
+      label: '绠�闃冲競'
+    }]
+  }, {
+    value: 5103,
+    label: '鑷础甯�',
+    children: [{
+      value: 510302,
+      label: '鑷祦浜曞尯'
+    }, {
+      value: 510303,
+      label: '璐′簳鍖�'
+    }, {
+      value: 510304,
+      label: '澶у畨鍖�'
+    }, {
+      value: 510311,
+      label: '娌挎哗鍖�'
+    }, {
+      value: 510321,
+      label: '鑽e幙'
+    }, {
+      value: 510322,
+      label: '瀵岄『鍘�'
+    }]
+  }, {
+    value: 5104,
+    label: '鏀�鏋濊姳甯�',
+    children: [{
+      value: 510402,
+      label: '涓滃尯'
+    }, {
+      value: 510403,
+      label: '瑗垮尯'
+    }, {
+      value: 510411,
+      label: '浠佸拰鍖�'
+    }, {
+      value: 510421,
+      label: '绫虫槗鍘�'
+    }, {
+      value: 510422,
+      label: '鐩愯竟鍘�'
+    }]
+  }, {
+    value: 5105,
+    label: '娉稿窞甯�',
+    children: [{
+      value: 510502,
+      label: '姹熼槼鍖�'
+    }, {
+      value: 510503,
+      label: '绾虫邯鍖�'
+    }, {
+      value: 510504,
+      label: '榫欓┈娼尯'
+    }, {
+      value: 510521,
+      label: '娉稿幙'
+    }, {
+      value: 510522,
+      label: '鍚堟睙鍘�'
+    }, {
+      value: 510524,
+      label: '鍙欐案鍘�'
+    }, {
+      value: 510525,
+      label: '鍙よ敽鍘�'
+    }]
+  }, {
+    value: 5106,
+    label: '寰烽槼甯�',
+    children: [{
+      value: 510603,
+      label: '鏃岄槼鍖�'
+    }, {
+      value: 510623,
+      label: '涓睙鍘�'
+    }, {
+      value: 510626,
+      label: '缃楁睙鍘�'
+    }, {
+      value: 510681,
+      label: '骞挎眽甯�'
+    }, {
+      value: 510682,
+      label: '浠�閭″競'
+    }, {
+      value: 510683,
+      label: '缁电甯�'
+    }]
+  }, {
+    value: 5107,
+    label: '缁甸槼甯�',
+    children: [{
+      value: 510703,
+      label: '娑煄鍖�'
+    }, {
+      value: 510704,
+      label: '娓镐粰鍖�'
+    }, {
+      value: 510705,
+      label: '瀹夊窞鍖�'
+    }, {
+      value: 510722,
+      label: '涓夊彴鍘�'
+    }, {
+      value: 510723,
+      label: '鐩愪涵鍘�'
+    }, {
+      value: 510725,
+      label: '姊撴郊鍘�'
+    }, {
+      value: 510726,
+      label: '鍖楀窛缇屾棌鑷不鍘�'
+    }, {
+      value: 510727,
+      label: '骞虫鍘�'
+    }, {
+      value: 510781,
+      label: '姹熸补甯�'
+    }]
+  }, {
+    value: 5108,
+    label: '骞垮厓甯�',
+    children: [{
+      value: 510802,
+      label: '鍒╁窞鍖�'
+    }, {
+      value: 510811,
+      label: '鏄寲鍖�'
+    }, {
+      value: 510812,
+      label: '鏈濆ぉ鍖�'
+    }, {
+      value: 510821,
+      label: '鏃鸿媿鍘�'
+    }, {
+      value: 510822,
+      label: '闈掑窛鍘�'
+    }, {
+      value: 510823,
+      label: '鍓戦榿鍘�'
+    }, {
+      value: 510824,
+      label: '鑻嶆邯鍘�'
+    }]
+  }, {
+    value: 5109,
+    label: '閬傚畞甯�',
+    children: [{
+      value: 510903,
+      label: '鑸瑰北鍖�'
+    }, {
+      value: 510904,
+      label: '瀹夊眳鍖�'
+    }, {
+      value: 510921,
+      label: '钃邯鍘�'
+    }, {
+      value: 510922,
+      label: '灏勬椽鍘�'
+    }, {
+      value: 510923,
+      label: '澶ц嫳鍘�'
+    }]
+  }, {
+    value: 5110,
+    label: '鍐呮睙甯�',
+    children: [{
+      value: 511002,
+      label: '甯備腑鍖�'
+    }, {
+      value: 511011,
+      label: '涓滃叴鍖�'
+    }, {
+      value: 511024,
+      label: '濞佽繙鍘�'
+    }, {
+      value: 511025,
+      label: '璧勪腑鍘�'
+    }, {
+      value: 511028,
+      label: '闅嗘槍鍘�'
+    }]
+  }, {
+    value: 5111,
+    label: '涔愬北甯�',
+    children: [{
+      value: 511102,
+      label: '甯備腑鍖�'
+    }, {
+      value: 511111,
+      label: '娌欐咕鍖�'
+    }, {
+      value: 511112,
+      label: '浜旈�氭ˉ鍖�'
+    }, {
+      value: 511113,
+      label: '閲戝彛娌冲尯'
+    }, {
+      value: 511123,
+      label: '鐘嶄负鍘�'
+    }, {
+      value: 511124,
+      label: '浜曠爺鍘�'
+    }, {
+      value: 511126,
+      label: '澶规睙鍘�'
+    }, {
+      value: 511129,
+      label: '娌愬窛鍘�'
+    }, {
+      value: 511132,
+      label: '宄ㄨ竟褰濇棌鑷不鍘�'
+    }, {
+      value: 511133,
+      label: '椹竟褰濇棌鑷不鍘�'
+    }, {
+      value: 511181,
+      label: '宄ㄧ湁灞卞競'
+    }]
+  }, {
+    value: 5113,
+    label: '鍗楀厖甯�',
+    children: [{
+      value: 511302,
+      label: '椤哄簡鍖�'
+    }, {
+      value: 511303,
+      label: '楂樺潽鍖�'
+    }, {
+      value: 511304,
+      label: '鍢夐櫟鍖�'
+    }, {
+      value: 511321,
+      label: '鍗楅儴鍘�'
+    }, {
+      value: 511322,
+      label: '钀ュ北鍘�'
+    }, {
+      value: 511323,
+      label: '钃畨鍘�'
+    }, {
+      value: 511324,
+      label: '浠檱鍘�'
+    }, {
+      value: 511325,
+      label: '瑗垮厖鍘�'
+    }, {
+      value: 511381,
+      label: '闃嗕腑甯�'
+    }]
+  }, {
+    value: 5114,
+    label: '鐪夊北甯�',
+    children: [{
+      value: 511402,
+      label: '涓滃潯鍖�'
+    }, {
+      value: 511403,
+      label: '褰北鍖�'
+    }, {
+      value: 511421,
+      label: '浠佸鍘�'
+    }, {
+      value: 511423,
+      label: '娲泤鍘�'
+    }, {
+      value: 511424,
+      label: '涓规1鍘�'
+    }, {
+      value: 511425,
+      label: '闈掔鍘�'
+    }]
+  }, {
+    value: 5115,
+    label: '瀹滃甯�',
+    children: [{
+      value: 511502,
+      label: '缈犲睆鍖�'
+    }, {
+      value: 511503,
+      label: '鍗楁邯鍖�'
+    }, {
+      value: 511521,
+      label: '瀹滃鍘�'
+    }, {
+      value: 511523,
+      label: '姹熷畨鍘�'
+    }, {
+      value: 511524,
+      label: '闀垮畞鍘�'
+    }, {
+      value: 511525,
+      label: '楂樺幙'
+    }, {
+      value: 511526,
+      label: '鐝欏幙'
+    }, {
+      value: 511527,
+      label: '绛犺繛鍘�'
+    }, {
+      value: 511528,
+      label: '鍏存枃鍘�'
+    }, {
+      value: 511529,
+      label: '灞忓北鍘�'
+    }]
+  }, {
+    value: 5116,
+    label: '骞垮畨甯�',
+    children: [{
+      value: 511602,
+      label: '骞垮畨鍖�'
+    }, {
+      value: 511603,
+      label: '鍓嶉攱鍖�'
+    }, {
+      value: 511621,
+      label: '宀虫睜鍘�'
+    }, {
+      value: 511622,
+      label: '姝﹁儨鍘�'
+    }, {
+      value: 511623,
+      label: '閭绘按鍘�'
+    }, {
+      value: 511681,
+      label: '鍗庤摜甯�'
+    }]
+  }, {
+    value: 5117,
+    label: '杈惧窞甯�',
+    children: [{
+      value: 511702,
+      label: '閫氬窛鍖�'
+    }, {
+      value: 511703,
+      label: '杈惧窛鍖�'
+    }, {
+      value: 511722,
+      label: '瀹f眽鍘�'
+    }, {
+      value: 511723,
+      label: '寮�姹熷幙'
+    }, {
+      value: 511724,
+      label: '澶х鍘�'
+    }, {
+      value: 511725,
+      label: '娓犲幙'
+    }, {
+      value: 511781,
+      label: '涓囨簮甯�'
+    }]
+  }, {
+    value: 5118,
+    label: '闆呭畨甯�',
+    children: [{
+      value: 511802,
+      label: '闆ㄥ煄鍖�'
+    }, {
+      value: 511803,
+      label: '鍚嶅北鍖�'
+    }, {
+      value: 511822,
+      label: '鑽ョ粡鍘�'
+    }, {
+      value: 511823,
+      label: '姹夋簮鍘�'
+    }, {
+      value: 511824,
+      label: '鐭虫鍘�'
+    }, {
+      value: 511825,
+      label: '澶╁叏鍘�'
+    }, {
+      value: 511826,
+      label: '鑺﹀北鍘�'
+    }, {
+      value: 511827,
+      label: '瀹濆叴鍘�'
+    }]
+  }, {
+    value: 5119,
+    label: '宸翠腑甯�',
+    children: [{
+      value: 511902,
+      label: '宸村窞鍖�'
+    }, {
+      value: 511903,
+      label: '鎭╅槼鍖�'
+    }, {
+      value: 511921,
+      label: '閫氭睙鍘�'
+    }, {
+      value: 511922,
+      label: '鍗楁睙鍘�'
+    }, {
+      value: 511923,
+      label: '骞虫槍鍘�'
+    }]
+  }, {
+    value: 5120,
+    label: '璧勯槼甯�',
+    children: [{
+      value: 512002,
+      label: '闆佹睙鍖�'
+    }, {
+      value: 512021,
+      label: '瀹夊渤鍘�'
+    }, {
+      value: 512022,
+      label: '涔愯嚦鍘�'
+    }]
+  }, {
+    value: 5132,
+    label: '闃垮潩钘忔棌缇屾棌鑷不宸�',
+    children: [{
+      value: 513201,
+      label: '椹皵搴峰競'
+    }, {
+      value: 513221,
+      label: '姹跺窛鍘�'
+    }, {
+      value: 513222,
+      label: '鐞嗗幙'
+    }, {
+      value: 513223,
+      label: '鑼傚幙'
+    }, {
+      value: 513224,
+      label: '鏉炬綐鍘�'
+    }, {
+      value: 513225,
+      label: '涔濆娌熷幙'
+    }, {
+      value: 513226,
+      label: '閲戝窛鍘�'
+    }, {
+      value: 513227,
+      label: '灏忛噾鍘�'
+    }, {
+      value: 513228,
+      label: '榛戞按鍘�'
+    }, {
+      value: 513230,
+      label: '澹ゅ鍘�'
+    }, {
+      value: 513231,
+      label: '闃垮潩鍘�'
+    }, {
+      value: 513232,
+      label: '鑻ュ皵鐩栧幙'
+    }, {
+      value: 513233,
+      label: '绾㈠師鍘�'
+    }]
+  }, {
+    value: 5133,
+    label: '鐢樺瓬钘忔棌鑷不宸�',
+    children: [{
+      value: 513301,
+      label: '搴峰畾甯�'
+    }, {
+      value: 513322,
+      label: '娉稿畾鍘�'
+    }, {
+      value: 513323,
+      label: '涓瑰反鍘�'
+    }, {
+      value: 513324,
+      label: '涔濋緳鍘�'
+    }, {
+      value: 513325,
+      label: '闆呮睙鍘�'
+    }, {
+      value: 513326,
+      label: '閬撳瓪鍘�'
+    }, {
+      value: 513327,
+      label: '鐐夐湇鍘�'
+    }, {
+      value: 513328,
+      label: '鐢樺瓬鍘�'
+    }, {
+      value: 513329,
+      label: '鏂伴緳鍘�'
+    }, {
+      value: 513330,
+      label: '寰锋牸鍘�'
+    }, {
+      value: 513331,
+      label: '鐧界帀鍘�'
+    }, {
+      value: 513332,
+      label: '鐭虫笭鍘�'
+    }, {
+      value: 513333,
+      label: '鑹茶揪鍘�'
+    }, {
+      value: 513334,
+      label: '鐞嗗鍘�'
+    }, {
+      value: 513335,
+      label: '宸村鍘�'
+    }, {
+      value: 513336,
+      label: '涔″煄鍘�'
+    }, {
+      value: 513337,
+      label: '绋诲煄鍘�'
+    }, {
+      value: 513338,
+      label: '寰楄崳鍘�'
+    }]
+  }, {
+    value: 5134,
+    label: '鍑夊北褰濇棌鑷不宸�',
+    children: [{
+      value: 513401,
+      label: '瑗挎槍甯�'
+    }, {
+      value: 513422,
+      label: '鏈ㄩ噷钘忔棌鑷不鍘�'
+    }, {
+      value: 513423,
+      label: '鐩愭簮鍘�'
+    }, {
+      value: 513424,
+      label: '寰锋槍鍘�'
+    }, {
+      value: 513425,
+      label: '浼氱悊鍘�'
+    }, {
+      value: 513426,
+      label: '浼氫笢鍘�'
+    }, {
+      value: 513427,
+      label: '瀹佸崡鍘�'
+    }, {
+      value: 513428,
+      label: '鏅牸鍘�'
+    }, {
+      value: 513429,
+      label: '甯冩嫋鍘�'
+    }, {
+      value: 513430,
+      label: '閲戦槼鍘�'
+    }, {
+      value: 513431,
+      label: '鏄鍘�'
+    }, {
+      value: 513432,
+      label: '鍠滃痉鍘�'
+    }, {
+      value: 513433,
+      label: '鍐曞畞鍘�'
+    }, {
+      value: 513434,
+      label: '瓒婅タ鍘�'
+    }, {
+      value: 513435,
+      label: '鐢樻礇鍘�'
+    }, {
+      value: 513436,
+      label: '缇庡鍘�'
+    }, {
+      value: 513437,
+      label: '闆锋尝鍘�'
+    }]
+  }]
+}, {
+  value: 52,
+  label: '璐靛窞鐪�',
+  children: [{
+    value: 5201,
+    label: '璐甸槼甯�',
+    children: [{
+      value: 520102,
+      label: '鍗楁槑鍖�'
+    }, {
+      value: 520103,
+      label: '浜戝博鍖�'
+    }, {
+      value: 520111,
+      label: '鑺辨邯鍖�'
+    }, {
+      value: 520112,
+      label: '涔屽綋鍖�'
+    }, {
+      value: 520113,
+      label: '鐧戒簯鍖�'
+    }, {
+      value: 520115,
+      label: '瑙傚北婀栧尯'
+    }, {
+      value: 520121,
+      label: '寮�闃冲幙'
+    }, {
+      value: 520122,
+      label: '鎭兘鍘�'
+    }, {
+      value: 520123,
+      label: '淇枃鍘�'
+    }, {
+      value: 520181,
+      label: '娓呴晣甯�'
+    }]
+  }, {
+    value: 5202,
+    label: '鍏洏姘村競',
+    children: [{
+      value: 520201,
+      label: '閽熷北鍖�'
+    }, {
+      value: 520203,
+      label: '鍏灊鐗瑰尯'
+    }, {
+      value: 520221,
+      label: '姘村煄鍘�'
+    }, {
+      value: 520222,
+      label: '鐩樺幙'
+    }]
+  }, {
+    value: 5203,
+    label: '閬典箟甯�',
+    children: [{
+      value: 520302,
+      label: '绾㈣姳宀楀尯'
+    }, {
+      value: 520303,
+      label: '姹囧窛鍖�'
+    }, {
+      value: 520304,
+      label: '鎾窞鍖�'
+    }, {
+      value: 520322,
+      label: '妗愭鍘�'
+    }, {
+      value: 520323,
+      label: '缁ラ槼鍘�'
+    }, {
+      value: 520324,
+      label: '姝e畨鍘�'
+    }, {
+      value: 520325,
+      label: '閬撶湡浠′浆鏃忚嫍鏃忚嚜娌诲幙'
+    }, {
+      value: 520326,
+      label: '鍔″窛浠′浆鏃忚嫍鏃忚嚜娌诲幙'
+    }, {
+      value: 520327,
+      label: '鍑ゅ唸鍘�'
+    }, {
+      value: 520328,
+      label: '婀勬江鍘�'
+    }, {
+      value: 520329,
+      label: '浣欏簡鍘�'
+    }, {
+      value: 520330,
+      label: '涔犳按鍘�'
+    }, {
+      value: 520381,
+      label: '璧ゆ按甯�'
+    }, {
+      value: 520382,
+      label: '浠佹��甯�'
+    }]
+  }, {
+    value: 5204,
+    label: '瀹夐『甯�',
+    children: [{
+      value: 520402,
+      label: '瑗跨鍖�'
+    }, {
+      value: 520403,
+      label: '骞冲潩鍖�'
+    }, {
+      value: 520422,
+      label: '鏅畾鍘�'
+    }, {
+      value: 520423,
+      label: '闀囧畞甯冧緷鏃忚嫍鏃忚嚜娌诲幙'
+    }, {
+      value: 520424,
+      label: '鍏冲箔甯冧緷鏃忚嫍鏃忚嚜娌诲幙'
+    }, {
+      value: 520425,
+      label: '绱簯鑻楁棌甯冧緷鏃忚嚜娌诲幙'
+    }]
+  }, {
+    value: 5205,
+    label: '姣曡妭甯�',
+    children: [{
+      value: 520502,
+      label: '涓冩槦鍏冲尯'
+    }, {
+      value: 520521,
+      label: '澶ф柟鍘�'
+    }, {
+      value: 520522,
+      label: '榛旇タ鍘�'
+    }, {
+      value: 520523,
+      label: '閲戞矙鍘�'
+    }, {
+      value: 520524,
+      label: '缁囬噾鍘�'
+    }, {
+      value: 520525,
+      label: '绾抽泹鍘�'
+    }, {
+      value: 520526,
+      label: '濞佸畞褰濇棌鍥炴棌鑻楁棌鑷不鍘�'
+    }, {
+      value: 520527,
+      label: '璧珷鍘�'
+    }]
+  }, {
+    value: 5206,
+    label: '閾滀粊甯�',
+    children: [{
+      value: 520602,
+      label: '纰ф睙鍖�'
+    }, {
+      value: 520603,
+      label: '涓囧北鍖�'
+    }, {
+      value: 520621,
+      label: '姹熷彛鍘�'
+    }, {
+      value: 520622,
+      label: '鐜夊睆渚楁棌鑷不鍘�'
+    }, {
+      value: 520623,
+      label: '鐭抽槨鍘�'
+    }, {
+      value: 520624,
+      label: '鎬濆崡鍘�'
+    }, {
+      value: 520625,
+      label: '鍗版睙鍦熷鏃忚嫍鏃忚嚜娌诲幙'
+    }, {
+      value: 520626,
+      label: '寰锋睙鍘�'
+    }, {
+      value: 520627,
+      label: '娌挎渤鍦熷鏃忚嚜娌诲幙'
+    }, {
+      value: 520628,
+      label: '鏉炬鑻楁棌鑷不鍘�'
+    }]
+  }, {
+    value: 5223,
+    label: '榛旇タ鍗楀竷渚濇棌鑻楁棌鑷不宸�',
+    children: [{
+      value: 522301,
+      label: '鍏翠箟甯�'
+    }, {
+      value: 522322,
+      label: '鍏翠粊鍘�'
+    }, {
+      value: 522323,
+      label: '鏅畨鍘�'
+    }, {
+      value: 522324,
+      label: '鏅撮殕鍘�'
+    }, {
+      value: 522325,
+      label: '璐炰赴鍘�'
+    }, {
+      value: 522326,
+      label: '鏈涜盁鍘�'
+    }, {
+      value: 522327,
+      label: '鍐屼酣鍘�'
+    }, {
+      value: 522328,
+      label: '瀹夐緳鍘�'
+    }]
+  }, {
+    value: 5226,
+    label: '榛斾笢鍗楄嫍鏃忎緱鏃忚嚜娌诲窞',
+    children: [{
+      value: 522601,
+      label: '鍑噷甯�'
+    }, {
+      value: 522622,
+      label: '榛勫钩鍘�'
+    }, {
+      value: 522623,
+      label: '鏂界鍘�'
+    }, {
+      value: 522624,
+      label: '涓夌鍘�'
+    }, {
+      value: 522625,
+      label: '闀囪繙鍘�'
+    }, {
+      value: 522626,
+      label: '宀戝珐鍘�'
+    }, {
+      value: 522627,
+      label: '澶╂煴鍘�'
+    }, {
+      value: 522628,
+      label: '閿﹀睆鍘�'
+    }, {
+      value: 522629,
+      label: '鍓戞渤鍘�'
+    }, {
+      value: 522630,
+      label: '鍙版睙鍘�'
+    }, {
+      value: 522631,
+      label: '榛庡钩鍘�'
+    }, {
+      value: 522632,
+      label: '姒曟睙鍘�'
+    }, {
+      value: 522633,
+      label: '浠庢睙鍘�'
+    }, {
+      value: 522634,
+      label: '闆峰北鍘�'
+    }, {
+      value: 522635,
+      label: '楹绘睙鍘�'
+    }, {
+      value: 522636,
+      label: '涓瑰鍘�'
+    }]
+  }, {
+    value: 5227,
+    label: '榛斿崡甯冧緷鏃忚嫍鏃忚嚜娌诲窞',
+    children: [{
+      value: 522701,
+      label: '閮藉寑甯�'
+    }, {
+      value: 522702,
+      label: '绂忔硥甯�'
+    }, {
+      value: 522722,
+      label: '鑽旀尝鍘�'
+    }, {
+      value: 522723,
+      label: '璐靛畾鍘�'
+    }, {
+      value: 522725,
+      label: '鐡畨鍘�'
+    }, {
+      value: 522726,
+      label: '鐙北鍘�'
+    }, {
+      value: 522727,
+      label: '骞冲鍘�'
+    }, {
+      value: 522728,
+      label: '缃楃敻鍘�'
+    }, {
+      value: 522729,
+      label: '闀块『鍘�'
+    }, {
+      value: 522730,
+      label: '榫欓噷鍘�'
+    }, {
+      value: 522731,
+      label: '鎯犳按鍘�'
+    }, {
+      value: 522732,
+      label: '涓夐兘姘存棌鑷不鍘�'
+    }]
+  }]
+}, {
+  value: 53,
+  label: '浜戝崡鐪�',
+  children: [{
+    value: 5301,
+    label: '鏄嗘槑甯�',
+    children: [{
+      value: 530102,
+      label: '浜斿崕鍖�'
+    }, {
+      value: 530103,
+      label: '鐩橀緳鍖�'
+    }, {
+      value: 530111,
+      label: '瀹樻浮鍖�'
+    }, {
+      value: 530112,
+      label: '瑗垮北鍖�'
+    }, {
+      value: 530113,
+      label: '涓滃窛鍖�'
+    }, {
+      value: 530114,
+      label: '鍛堣础鍖�'
+    }, {
+      value: 530122,
+      label: '鏅嬪畞鍘�'
+    }, {
+      value: 530124,
+      label: '瀵屾皯鍘�'
+    }, {
+      value: 530125,
+      label: '瀹滆壇鍘�'
+    }, {
+      value: 530126,
+      label: '鐭虫灄褰濇棌鑷不鍘�'
+    }, {
+      value: 530127,
+      label: '宓╂槑鍘�'
+    }, {
+      value: 530128,
+      label: '绂勫姖褰濇棌鑻楁棌鑷不鍘�'
+    }, {
+      value: 530129,
+      label: '瀵荤敻鍥炴棌褰濇棌鑷不鍘�'
+    }, {
+      value: 530181,
+      label: '瀹夊畞甯�'
+    }]
+  }, {
+    value: 5303,
+    label: '鏇查潠甯�',
+    children: [{
+      value: 530302,
+      label: '楹掗簾鍖�'
+    }, {
+      value: 530303,
+      label: '娌剧泭鍖�'
+    }, {
+      value: 530321,
+      label: '椹緳鍘�'
+    }, {
+      value: 530322,
+      label: '闄嗚壇鍘�'
+    }, {
+      value: 530323,
+      label: '甯堝畻鍘�'
+    }, {
+      value: 530324,
+      label: '缃楀钩鍘�'
+    }, {
+      value: 530325,
+      label: '瀵屾簮鍘�'
+    }, {
+      value: 530326,
+      label: '浼氭辰鍘�'
+    }, {
+      value: 530381,
+      label: '瀹e▉甯�'
+    }]
+  }, {
+    value: 5304,
+    label: '鐜夋邯甯�',
+    children: [{
+      value: 530402,
+      label: '绾㈠鍖�'
+    }, {
+      value: 530403,
+      label: '姹熷窛鍖�'
+    }, {
+      value: 530422,
+      label: '婢勬睙鍘�'
+    }, {
+      value: 530423,
+      label: '閫氭捣鍘�'
+    }, {
+      value: 530424,
+      label: '鍗庡畞鍘�'
+    }, {
+      value: 530425,
+      label: '鏄撻棬鍘�'
+    }, {
+      value: 530426,
+      label: '宄ㄥ北褰濇棌鑷不鍘�'
+    }, {
+      value: 530427,
+      label: '鏂板钩褰濇棌鍌f棌鑷不鍘�'
+    }, {
+      value: 530428,
+      label: '鍏冩睙鍝堝凹鏃忓綕鏃忓偅鏃忚嚜娌诲幙'
+    }]
+  }, {
+    value: 5305,
+    label: '淇濆北甯�',
+    children: [{
+      value: 530502,
+      label: '闅嗛槼鍖�'
+    }, {
+      value: 530521,
+      label: '鏂界敻鍘�'
+    }, {
+      value: 530523,
+      label: '榫欓櫟鍘�'
+    }, {
+      value: 530524,
+      label: '鏄屽畞鍘�'
+    }, {
+      value: 530581,
+      label: '鑵惧啿甯�'
+    }]
+  }, {
+    value: 5306,
+    label: '鏄�氬競',
+    children: [{
+      value: 530602,
+      label: '鏄槼鍖�'
+    }, {
+      value: 530621,
+      label: '椴佺敻鍘�'
+    }, {
+      value: 530622,
+      label: '宸у鍘�'
+    }, {
+      value: 530623,
+      label: '鐩愭触鍘�'
+    }, {
+      value: 530624,
+      label: '澶у叧鍘�'
+    }, {
+      value: 530625,
+      label: '姘稿杽鍘�'
+    }, {
+      value: 530626,
+      label: '缁ユ睙鍘�'
+    }, {
+      value: 530627,
+      label: '闀囬泟鍘�'
+    }, {
+      value: 530628,
+      label: '褰濊壇鍘�'
+    }, {
+      value: 530629,
+      label: '濞佷俊鍘�'
+    }, {
+      value: 530630,
+      label: '姘村瘜鍘�'
+    }]
+  }, {
+    value: 5307,
+    label: '涓芥睙甯�',
+    children: [{
+      value: 530702,
+      label: '鍙ゅ煄鍖�'
+    }, {
+      value: 530721,
+      label: '鐜夐緳绾宠タ鏃忚嚜娌诲幙'
+    }, {
+      value: 530722,
+      label: '姘歌儨鍘�'
+    }, {
+      value: 530723,
+      label: '鍗庡潽鍘�'
+    }, {
+      value: 530724,
+      label: '瀹佽挆褰濇棌鑷不鍘�'
+    }]
+  }, {
+    value: 5308,
+    label: '鏅幢甯�',
+    children: [{
+      value: 530802,
+      label: '鎬濊寘鍖�'
+    }, {
+      value: 530821,
+      label: '瀹佹幢鍝堝凹鏃忓綕鏃忚嚜娌诲幙'
+    }, {
+      value: 530822,
+      label: '澧ㄦ睙鍝堝凹鏃忚嚜娌诲幙'
+    }, {
+      value: 530823,
+      label: '鏅笢褰濇棌鑷不鍘�'
+    }, {
+      value: 530824,
+      label: '鏅胺鍌f棌褰濇棌鑷不鍘�'
+    }, {
+      value: 530825,
+      label: '闀囨矃褰濇棌鍝堝凹鏃忔媺绁滄棌鑷不鍘�'
+    }, {
+      value: 530826,
+      label: '姹熷煄鍝堝凹鏃忓綕鏃忚嚜娌诲幙'
+    }, {
+      value: 530827,
+      label: '瀛熻繛鍌f棌鎷夌鏃忎饯鏃忚嚜娌诲幙'
+    }, {
+      value: 530828,
+      label: '婢滄钵鎷夌鏃忚嚜娌诲幙'
+    }, {
+      value: 530829,
+      label: '瑗跨洘浣ゆ棌鑷不鍘�'
+    }]
+  }, {
+    value: 5309,
+    label: '涓存钵甯�',
+    children: [{
+      value: 530902,
+      label: '涓寸繑鍖�'
+    }, {
+      value: 530921,
+      label: '鍑ゅ簡鍘�'
+    }, {
+      value: 530922,
+      label: '浜戝幙'
+    }, {
+      value: 530923,
+      label: '姘稿痉鍘�'
+    }, {
+      value: 530924,
+      label: '闀囧悍鍘�'
+    }, {
+      value: 530925,
+      label: '鍙屾睙鎷夌鏃忎饯鏃忓竷鏈楁棌鍌f棌鑷不鍘�'
+    }, {
+      value: 530926,
+      label: '鑰块┈鍌f棌浣ゆ棌鑷不鍘�'
+    }, {
+      value: 530927,
+      label: '娌ф簮浣ゆ棌鑷不鍘�'
+    }]
+  }, {
+    value: 5323,
+    label: '妤氶泟褰濇棌鑷不宸�',
+    children: [{
+      value: 532301,
+      label: '妤氶泟甯�'
+    }, {
+      value: 532322,
+      label: '鍙屾煆鍘�'
+    }, {
+      value: 532323,
+      label: '鐗熷畾鍘�'
+    }, {
+      value: 532324,
+      label: '鍗楀崕鍘�'
+    }, {
+      value: 532325,
+      label: '濮氬畨鍘�'
+    }, {
+      value: 532326,
+      label: '澶у鍘�'
+    }, {
+      value: 532327,
+      label: '姘镐粊鍘�'
+    }, {
+      value: 532328,
+      label: '鍏冭皨鍘�'
+    }, {
+      value: 532329,
+      label: '姝﹀畾鍘�'
+    }, {
+      value: 532331,
+      label: '绂勪赴鍘�'
+    }]
+  }, {
+    value: 5325,
+    label: '绾㈡渤鍝堝凹鏃忓綕鏃忚嚜娌诲窞',
+    children: [{
+      value: 532501,
+      label: '涓棫甯�'
+    }, {
+      value: 532502,
+      label: '寮�杩滃競'
+    }, {
+      value: 532503,
+      label: '钂欒嚜甯�'
+    }, {
+      value: 532504,
+      label: '寮ュ嫆甯�'
+    }, {
+      value: 532523,
+      label: '灞忚竟鑻楁棌鑷不鍘�'
+    }, {
+      value: 532524,
+      label: '寤烘按鍘�'
+    }, {
+      value: 532525,
+      label: '鐭冲睆鍘�'
+    }, {
+      value: 532527,
+      label: '娉歌タ鍘�'
+    }, {
+      value: 532528,
+      label: '鍏冮槼鍘�'
+    }, {
+      value: 532529,
+      label: '绾㈡渤鍘�'
+    }, {
+      value: 532530,
+      label: '閲戝钩鑻楁棌鐟舵棌鍌f棌鑷不鍘�'
+    }, {
+      value: 532531,
+      label: '缁挎槬鍘�'
+    }, {
+      value: 532532,
+      label: '娌冲彛鐟舵棌鑷不鍘�'
+    }]
+  }, {
+    value: 5326,
+    label: '鏂囧北澹棌鑻楁棌鑷不宸�',
+    children: [{
+      value: 532601,
+      label: '鏂囧北甯�'
+    }, {
+      value: 532622,
+      label: '鐮氬北鍘�'
+    }, {
+      value: 532623,
+      label: '瑗跨暣鍘�'
+    }, {
+      value: 532624,
+      label: '楹绘牀鍧″幙'
+    }, {
+      value: 532625,
+      label: '椹叧鍘�'
+    }, {
+      value: 532626,
+      label: '涓樺寳鍘�'
+    }, {
+      value: 532627,
+      label: '骞垮崡鍘�'
+    }, {
+      value: 532628,
+      label: '瀵屽畞鍘�'
+    }]
+  }, {
+    value: 5328,
+    label: '瑗垮弻鐗堢撼鍌f棌鑷不宸�',
+    children: [{
+      value: 532801,
+      label: '鏅椽甯�'
+    }, {
+      value: 532822,
+      label: '鍕愭捣鍘�'
+    }, {
+      value: 532823,
+      label: '鍕愯厞鍘�'
+    }]
+  }, {
+    value: 5329,
+    label: '澶х悊鐧芥棌鑷不宸�',
+    children: [{
+      value: 532901,
+      label: '澶х悊甯�'
+    }, {
+      value: 532922,
+      label: '婕炬繛褰濇棌鑷不鍘�'
+    }, {
+      value: 532923,
+      label: '绁ヤ簯鍘�'
+    }, {
+      value: 532924,
+      label: '瀹惧窛鍘�'
+    }, {
+      value: 532925,
+      label: '寮ユ浮鍘�'
+    }, {
+      value: 532926,
+      label: '鍗楁锭褰濇棌鑷不鍘�'
+    }, {
+      value: 532927,
+      label: '宸嶅北褰濇棌鍥炴棌鑷不鍘�'
+    }, {
+      value: 532928,
+      label: '姘稿钩鍘�'
+    }, {
+      value: 532929,
+      label: '浜戦緳鍘�'
+    }, {
+      value: 532930,
+      label: '娲辨簮鍘�'
+    }, {
+      value: 532931,
+      label: '鍓戝窛鍘�'
+    }, {
+      value: 532932,
+      label: '楣ゅ簡鍘�'
+    }]
+  }, {
+    value: 5331,
+    label: '寰峰畯鍌f棌鏅鏃忚嚜娌诲窞',
+    children: [{
+      value: 533102,
+      label: '鐟炰附甯�'
+    }, {
+      value: 533103,
+      label: '鑺掑競'
+    }, {
+      value: 533122,
+      label: '姊佹渤鍘�'
+    }, {
+      value: 533123,
+      label: '鐩堟睙鍘�'
+    }, {
+      value: 533124,
+      label: '闄囧窛鍘�'
+    }]
+  }, {
+    value: 5333,
+    label: '鎬掓睙鍌堝兂鏃忚嚜娌诲窞',
+    children: [{
+      value: 533301,
+      label: '娉告按甯�'
+    }, {
+      value: 533323,
+      label: '绂忚础鍘�'
+    }, {
+      value: 533324,
+      label: '璐″北鐙緳鏃忔�掓棌鑷不鍘�'
+    }, {
+      value: 533325,
+      label: '鍏板潽鐧芥棌鏅背鏃忚嚜娌诲幙'
+    }]
+  }, {
+    value: 5334,
+    label: '杩簡钘忔棌鑷不宸�',
+    children: [{
+      value: 533401,
+      label: '棣欐牸閲屾媺甯�'
+    }, {
+      value: 533422,
+      label: '寰烽挦鍘�'
+    }, {
+      value: 533423,
+      label: '缁磋タ鍌堝兂鏃忚嚜娌诲幙'
+    }]
+  }]
+}, {
+  value: 54,
+  label: '瑗胯棌鑷不鍖�',
+  children: [{
+    value: 5401,
+    label: '鎷夎惃甯�',
+    children: [{
+      value: 540102,
+      label: '鍩庡叧鍖�'
+    }, {
+      value: 540103,
+      label: '鍫嗛緳寰峰簡鍖�'
+    }, {
+      value: 540121,
+      label: '鏋楀懆鍘�'
+    }, {
+      value: 540122,
+      label: '褰撻泟鍘�'
+    }, {
+      value: 540123,
+      label: '灏兼湪鍘�'
+    }, {
+      value: 540124,
+      label: '鏇叉按鍘�'
+    }, {
+      value: 540126,
+      label: '杈惧瓬鍘�'
+    }, {
+      value: 540127,
+      label: '澧ㄧ宸ュ崱鍘�'
+    }]
+  }, {
+    value: 5402,
+    label: '鏃ュ杸鍒欏競',
+    children: [{
+      value: 540202,
+      label: '妗戠彔瀛滃尯'
+    }, {
+      value: 540221,
+      label: '鍗楁湪鏋楀幙'
+    }, {
+      value: 540222,
+      label: '姹熷瓬鍘�'
+    }, {
+      value: 540223,
+      label: '瀹氭棩鍘�'
+    }, {
+      value: 540224,
+      label: '钀ㄨ喀鍘�'
+    }, {
+      value: 540225,
+      label: '鎷夊瓬鍘�'
+    }, {
+      value: 540226,
+      label: '鏄備粊鍘�'
+    }, {
+      value: 540227,
+      label: '璋㈤�氶棬鍘�'
+    }, {
+      value: 540228,
+      label: '鐧芥湕鍘�'
+    }, {
+      value: 540229,
+      label: '浠佸竷鍘�'
+    }, {
+      value: 540230,
+      label: '搴烽┈鍘�'
+    }, {
+      value: 540231,
+      label: '瀹氱粨鍘�'
+    }, {
+      value: 540232,
+      label: '浠插反鍘�'
+    }, {
+      value: 540233,
+      label: '浜氫笢鍘�'
+    }, {
+      value: 540234,
+      label: '鍚夐殕鍘�'
+    }, {
+      value: 540235,
+      label: '鑱傛媺鏈ㄥ幙'
+    }, {
+      value: 540236,
+      label: '钀ㄥ槑鍘�'
+    }, {
+      value: 540237,
+      label: '宀楀反鍘�'
+    }]
+  }, {
+    value: 5403,
+    label: '鏄岄兘甯�',
+    children: [{
+      value: 540302,
+      label: '鍗¤嫢鍖�'
+    }, {
+      value: 540321,
+      label: '姹熻揪鍘�'
+    }, {
+      value: 540322,
+      label: '璐¤鍘�'
+    }, {
+      value: 540323,
+      label: '绫讳箤榻愬幙'
+    }, {
+      value: 540324,
+      label: '涓侀潚鍘�'
+    }, {
+      value: 540325,
+      label: '瀵熼泤鍘�'
+    }, {
+      value: 540326,
+      label: '鍏鍘�'
+    }, {
+      value: 540327,
+      label: '宸﹁础鍘�'
+    }, {
+      value: 540328,
+      label: '鑺掑悍鍘�'
+    }, {
+      value: 540329,
+      label: '娲涢殕鍘�'
+    }, {
+      value: 540330,
+      label: '杈瑰潩鍘�'
+    }]
+  }, {
+    value: 5404,
+    label: '鏋楄姖甯�',
+    children: [{
+      value: 540402,
+      label: '宸村疁鍖�'
+    }, {
+      value: 540421,
+      label: '宸ュ竷姹熻揪鍘�'
+    }, {
+      value: 540422,
+      label: '绫虫灄鍘�'
+    }, {
+      value: 540423,
+      label: '澧ㄨ劚鍘�'
+    }, {
+      value: 540424,
+      label: '娉㈠瘑鍘�'
+    }, {
+      value: 540425,
+      label: '瀵熼殔鍘�'
+    }, {
+      value: 540426,
+      label: '鏈楀幙'
+    }]
+  }, {
+    value: 5405,
+    label: '灞卞崡甯�',
+    children: [{
+      value: 540502,
+      label: '涔冧笢鍖�'
+    }, {
+      value: 540521,
+      label: '鎵庡泭鍘�'
+    }, {
+      value: 540522,
+      label: '璐″槑鍘�'
+    }, {
+      value: 540523,
+      label: '妗戞棩鍘�'
+    }, {
+      value: 540524,
+      label: '鐞肩粨鍘�'
+    }, {
+      value: 540525,
+      label: '鏇叉澗鍘�'
+    }, {
+      value: 540526,
+      label: '鎺編鍘�'
+    }, {
+      value: 540527,
+      label: '娲涙墡鍘�'
+    }, {
+      value: 540528,
+      label: '鍔犳煡鍘�'
+    }, {
+      value: 540529,
+      label: '闅嗗瓙鍘�'
+    }, {
+      value: 540530,
+      label: '閿欓偅鍘�'
+    }, {
+      value: 540531,
+      label: '娴崱瀛愬幙'
+    }]
+  }, {
+    value: 5424,
+    label: '閭f洸鍦板尯',
+    children: [{
+      value: 542421,
+      label: '閭f洸鍘�'
+    }, {
+      value: 542422,
+      label: '鍢夐粠鍘�'
+    }, {
+      value: 542423,
+      label: '姣斿鍘�'
+    }, {
+      value: 542424,
+      label: '鑱傝崳鍘�'
+    }, {
+      value: 542425,
+      label: '瀹夊鍘�'
+    }, {
+      value: 542426,
+      label: '鐢虫墡鍘�'
+    }, {
+      value: 542427,
+      label: '绱㈠幙'
+    }, {
+      value: 542428,
+      label: '鐝垐鍘�'
+    }, {
+      value: 542429,
+      label: '宸撮潚鍘�'
+    }, {
+      value: 542430,
+      label: '灏肩帥鍘�'
+    }, {
+      value: 542431,
+      label: '鍙屾箹鍘�'
+    }]
+  }, {
+    value: 5425,
+    label: '闃块噷鍦板尯',
+    children: [{
+      value: 542521,
+      label: '鏅叞鍘�'
+    }, {
+      value: 542522,
+      label: '鏈揪鍘�'
+    }, {
+      value: 542523,
+      label: '鍣跺皵鍘�'
+    }, {
+      value: 542524,
+      label: '鏃ュ湡鍘�'
+    }, {
+      value: 542525,
+      label: '闈╁悏鍘�'
+    }, {
+      value: 542526,
+      label: '鏀瑰垯鍘�'
+    }, {
+      value: 542527,
+      label: '鎺嫟鍘�'
+    }]
+  }]
+}, {
+  value: 61,
+  label: '闄曡タ鐪�',
+  children: [{
+    value: 6101,
+    label: '瑗垮畨甯�',
+    children: [{
+      value: 610102,
+      label: '鏂板煄鍖�'
+    }, {
+      value: 610103,
+      label: '纰戞灄鍖�'
+    }, {
+      value: 610104,
+      label: '鑾叉箹鍖�'
+    }, {
+      value: 610111,
+      label: '鐏炴ˉ鍖�'
+    }, {
+      value: 610112,
+      label: '鏈ぎ鍖�'
+    }, {
+      value: 610113,
+      label: '闆佸鍖�'
+    }, {
+      value: 610114,
+      label: '闃庤壇鍖�'
+    }, {
+      value: 610115,
+      label: '涓存郊鍖�'
+    }, {
+      value: 610116,
+      label: '闀垮畨鍖�'
+    }, {
+      value: 610117,
+      label: '楂橀櫟鍖�'
+    }, {
+      value: 610122,
+      label: '钃濈敯鍘�'
+    }, {
+      value: 610124,
+      label: '鍛ㄨ嚦鍘�'
+    }, {
+      value: 610125,
+      label: '鎴峰幙'
+    }]
+  }, {
+    value: 6102,
+    label: '閾滃窛甯�',
+    children: [{
+      value: 610202,
+      label: '鐜嬬泭鍖�'
+    }, {
+      value: 610203,
+      label: '鍗板彴鍖�'
+    }, {
+      value: 610204,
+      label: '鑰�宸炲尯'
+    }, {
+      value: 610222,
+      label: '瀹滃悰鍘�'
+    }]
+  }, {
+    value: 6103,
+    label: '瀹濋浮甯�',
+    children: [{
+      value: 610302,
+      label: '娓花鍖�'
+    }, {
+      value: 610303,
+      label: '閲戝彴鍖�'
+    }, {
+      value: 610304,
+      label: '闄堜粨鍖�'
+    }, {
+      value: 610322,
+      label: '鍑ょ繑鍘�'
+    }, {
+      value: 610323,
+      label: '宀愬北鍘�'
+    }, {
+      value: 610324,
+      label: '鎵堕鍘�'
+    }, {
+      value: 610326,
+      label: '鐪夊幙'
+    }, {
+      value: 610327,
+      label: '闄囧幙'
+    }, {
+      value: 610328,
+      label: '鍗冮槼鍘�'
+    }, {
+      value: 610329,
+      label: '楹熸父鍘�'
+    }, {
+      value: 610330,
+      label: '鍑ゅ幙'
+    }, {
+      value: 610331,
+      label: '澶櫧鍘�'
+    }]
+  }, {
+    value: 6104,
+    label: '鍜搁槼甯�',
+    children: [{
+      value: 610402,
+      label: '绉﹂兘鍖�'
+    }, {
+      value: 610403,
+      label: '鏉ㄩ櫟鍖�'
+    }, {
+      value: 610404,
+      label: '娓煄鍖�'
+    }, {
+      value: 610422,
+      label: '涓夊師鍘�'
+    }, {
+      value: 610423,
+      label: '娉鹃槼鍘�'
+    }, {
+      value: 610424,
+      label: '涔惧幙'
+    }, {
+      value: 610425,
+      label: '绀兼硥鍘�'
+    }, {
+      value: 610426,
+      label: '姘稿鍘�'
+    }, {
+      value: 610427,
+      label: '褰幙'
+    }, {
+      value: 610428,
+      label: '闀挎鍘�'
+    }, {
+      value: 610429,
+      label: '鏃倯鍘�'
+    }, {
+      value: 610430,
+      label: '娣冲寲鍘�'
+    }, {
+      value: 610431,
+      label: '姝﹀姛鍘�'
+    }, {
+      value: 610481,
+      label: '鍏村钩甯�'
+    }]
+  }, {
+    value: 6105,
+    label: '娓崡甯�',
+    children: [{
+      value: 610502,
+      label: '涓存腑鍖�'
+    }, {
+      value: 610503,
+      label: '鍗庡窞鍖�'
+    }, {
+      value: 610522,
+      label: '娼煎叧鍘�'
+    }, {
+      value: 610523,
+      label: '澶ц崝鍘�'
+    }, {
+      value: 610524,
+      label: '鍚堥槼鍘�'
+    }, {
+      value: 610525,
+      label: '婢勫煄鍘�'
+    }, {
+      value: 610526,
+      label: '钂插煄鍘�'
+    }, {
+      value: 610527,
+      label: '鐧芥按鍘�'
+    }, {
+      value: 610528,
+      label: '瀵屽钩鍘�'
+    }, {
+      value: 610581,
+      label: '闊╁煄甯�'
+    }, {
+      value: 610582,
+      label: '鍗庨槾甯�'
+    }]
+  }, {
+    value: 6106,
+    label: '寤跺畨甯�',
+    children: [{
+      value: 610602,
+      label: '瀹濆鍖�'
+    }, {
+      value: 610603,
+      label: '瀹夊鍖�'
+    }, {
+      value: 610621,
+      label: '寤堕暱鍘�'
+    }, {
+      value: 610622,
+      label: '寤跺窛鍘�'
+    }, {
+      value: 610623,
+      label: '瀛愰暱鍘�'
+    }, {
+      value: 610625,
+      label: '蹇椾腹鍘�'
+    }, {
+      value: 610626,
+      label: '鍚磋捣鍘�'
+    }, {
+      value: 610627,
+      label: '鐢樻硥鍘�'
+    }, {
+      value: 610628,
+      label: '瀵屽幙'
+    }, {
+      value: 610629,
+      label: '娲涘窛鍘�'
+    }, {
+      value: 610630,
+      label: '瀹滃窛鍘�'
+    }, {
+      value: 610631,
+      label: '榛勯緳鍘�'
+    }, {
+      value: 610632,
+      label: '榛勯櫟鍘�'
+    }]
+  }, {
+    value: 6107,
+    label: '姹変腑甯�',
+    children: [{
+      value: 610702,
+      label: '姹夊彴鍖�'
+    }, {
+      value: 610721,
+      label: '鍗楅儜鍘�'
+    }, {
+      value: 610722,
+      label: '鍩庡浐鍘�'
+    }, {
+      value: 610723,
+      label: '娲嬪幙'
+    }, {
+      value: 610724,
+      label: '瑗夸埂鍘�'
+    }, {
+      value: 610725,
+      label: '鍕夊幙'
+    }, {
+      value: 610726,
+      label: '瀹佸己鍘�'
+    }, {
+      value: 610727,
+      label: '鐣ラ槼鍘�'
+    }, {
+      value: 610728,
+      label: '闀囧反鍘�'
+    }, {
+      value: 610729,
+      label: '鐣欏潩鍘�'
+    }, {
+      value: 610730,
+      label: '浣涘潽鍘�'
+    }]
+  }, {
+    value: 6108,
+    label: '姒嗘灄甯�',
+    children: [{
+      value: 610802,
+      label: '姒嗛槼鍖�'
+    }, {
+      value: 610803,
+      label: '妯北鍖�'
+    }, {
+      value: 610821,
+      label: '绁炴湪鍘�'
+    }, {
+      value: 610822,
+      label: '搴滆胺鍘�'
+    }, {
+      value: 610824,
+      label: '闈栬竟鍘�'
+    }, {
+      value: 610825,
+      label: '瀹氳竟鍘�'
+    }, {
+      value: 610826,
+      label: '缁ュ痉鍘�'
+    }, {
+      value: 610827,
+      label: '绫宠剛鍘�'
+    }, {
+      value: 610828,
+      label: '浣冲幙'
+    }, {
+      value: 610829,
+      label: '鍚村牎鍘�'
+    }, {
+      value: 610830,
+      label: '娓呮锭鍘�'
+    }, {
+      value: 610831,
+      label: '瀛愭床鍘�'
+    }]
+  }, {
+    value: 6109,
+    label: '瀹夊悍甯�',
+    children: [{
+      value: 610902,
+      label: '姹夋花鍖�'
+    }, {
+      value: 610921,
+      label: '姹夐槾鍘�'
+    }, {
+      value: 610922,
+      label: '鐭虫硥鍘�'
+    }, {
+      value: 610923,
+      label: '瀹侀檿鍘�'
+    }, {
+      value: 610924,
+      label: '绱槼鍘�'
+    }, {
+      value: 610925,
+      label: '宀氱殝鍘�'
+    }, {
+      value: 610926,
+      label: '骞冲埄鍘�'
+    }, {
+      value: 610927,
+      label: '闀囧潽鍘�'
+    }, {
+      value: 610928,
+      label: '鏃槼鍘�'
+    }, {
+      value: 610929,
+      label: '鐧芥渤鍘�'
+    }]
+  }, {
+    value: 6110,
+    label: '鍟嗘礇甯�',
+    children: [{
+      value: 611002,
+      label: '鍟嗗窞鍖�'
+    }, {
+      value: 611021,
+      label: '娲涘崡鍘�'
+    }, {
+      value: 611022,
+      label: '涓瑰嚖鍘�'
+    }, {
+      value: 611023,
+      label: '鍟嗗崡鍘�'
+    }, {
+      value: 611024,
+      label: '灞遍槼鍘�'
+    }, {
+      value: 611025,
+      label: '闀囧畨鍘�'
+    }, {
+      value: 611026,
+      label: '鏌炴按鍘�'
+    }]
+  }]
+}, {
+  value: 62,
+  label: '鐢樿們鐪�',
+  children: [{
+    value: 6201,
+    label: '鍏板窞甯�',
+    children: [{
+      value: 620102,
+      label: '鍩庡叧鍖�'
+    }, {
+      value: 620103,
+      label: '涓冮噷娌冲尯'
+    }, {
+      value: 620104,
+      label: '瑗垮浐鍖�'
+    }, {
+      value: 620105,
+      label: '瀹夊畞鍖�'
+    }, {
+      value: 620111,
+      label: '绾㈠彜鍖�'
+    }, {
+      value: 620121,
+      label: '姘哥櫥鍘�'
+    }, {
+      value: 620122,
+      label: '鐨嬪叞鍘�'
+    }, {
+      value: 620123,
+      label: '姒嗕腑鍘�'
+    }]
+  }, {
+    value: 6202,
+    label: '鍢夊唱鍏冲競',
+    children: [{
+      value: 620201100,
+      label: '鏂板煄闀�'
+    }, {
+      value: 620201101,
+      label: '宄硥闀�'
+    }, {
+      value: 620201102,
+      label: '鏂囨畩闀�'
+    }, {
+      value: 620201401,
+      label: '闆勫叧鍖�'
+    }, {
+      value: 620201402,
+      label: '闀滈搧鍖�'
+    }, {
+      value: 620201403,
+      label: '闀垮煄鍖�'
+    }]
+  }, {
+    value: 6203,
+    label: '閲戞槍甯�',
+    children: [{
+      value: 620302,
+      label: '閲戝窛鍖�'
+    }, {
+      value: 620321,
+      label: '姘告槍鍘�'
+    }]
+  }, {
+    value: 6204,
+    label: '鐧介摱甯�',
+    children: [{
+      value: 620402,
+      label: '鐧介摱鍖�'
+    }, {
+      value: 620403,
+      label: '骞冲窛鍖�'
+    }, {
+      value: 620421,
+      label: '闈栬繙鍘�'
+    }, {
+      value: 620422,
+      label: '浼氬畞鍘�'
+    }, {
+      value: 620423,
+      label: '鏅嘲鍘�'
+    }]
+  }, {
+    value: 6205,
+    label: '澶╂按甯�',
+    children: [{
+      value: 620502,
+      label: '绉﹀窞鍖�'
+    }, {
+      value: 620503,
+      label: '楹︾Н鍖�'
+    }, {
+      value: 620521,
+      label: '娓呮按鍘�'
+    }, {
+      value: 620522,
+      label: '绉﹀畨鍘�'
+    }, {
+      value: 620523,
+      label: '鐢樿胺鍘�'
+    }, {
+      value: 620524,
+      label: '姝﹀北鍘�'
+    }, {
+      value: 620525,
+      label: '寮犲宸濆洖鏃忚嚜娌诲幙'
+    }]
+  }, {
+    value: 6206,
+    label: '姝﹀▉甯�',
+    children: [{
+      value: 620602,
+      label: '鍑夊窞鍖�'
+    }, {
+      value: 620621,
+      label: '姘戝嫟鍘�'
+    }, {
+      value: 620622,
+      label: '鍙ゆ氮鍘�'
+    }, {
+      value: 620623,
+      label: '澶╃钘忔棌鑷不鍘�'
+    }]
+  }, {
+    value: 6207,
+    label: '寮犳帠甯�',
+    children: [{
+      value: 620702,
+      label: '鐢樺窞鍖�'
+    }, {
+      value: 620721,
+      label: '鑲冨崡瑁曞浐鏃忚嚜娌诲幙'
+    }, {
+      value: 620722,
+      label: '姘戜箰鍘�'
+    }, {
+      value: 620723,
+      label: '涓存辰鍘�'
+    }, {
+      value: 620724,
+      label: '楂樺彴鍘�'
+    }, {
+      value: 620725,
+      label: '灞变腹鍘�'
+    }]
+  }, {
+    value: 6208,
+    label: '骞冲噳甯�',
+    children: [{
+      value: 620802,
+      label: '宕嗗硳鍖�'
+    }, {
+      value: 620821,
+      label: '娉惧窛鍘�'
+    }, {
+      value: 620822,
+      label: '鐏靛彴鍘�'
+    }, {
+      value: 620823,
+      label: '宕囦俊鍘�'
+    }, {
+      value: 620824,
+      label: '鍗庝涵鍘�'
+    }, {
+      value: 620825,
+      label: '搴勬氮鍘�'
+    }, {
+      value: 620826,
+      label: '闈欏畞鍘�'
+    }]
+  }, {
+    value: 6209,
+    label: '閰掓硥甯�',
+    children: [{
+      value: 620902,
+      label: '鑲冨窞鍖�'
+    }, {
+      value: 620921,
+      label: '閲戝鍘�'
+    }, {
+      value: 620922,
+      label: '鐡滃窞鍘�'
+    }, {
+      value: 620923,
+      label: '鑲冨寳钂欏彜鏃忚嚜娌诲幙'
+    }, {
+      value: 620924,
+      label: '闃垮厠濉炲搱钀ㄥ厠鏃忚嚜娌诲幙'
+    }, {
+      value: 620981,
+      label: '鐜夐棬甯�'
+    }, {
+      value: 620982,
+      label: '鏁︾厡甯�'
+    }]
+  }, {
+    value: 6210,
+    label: '搴嗛槼甯�',
+    children: [{
+      value: 621002,
+      label: '瑗垮嘲鍖�'
+    }, {
+      value: 621021,
+      label: '搴嗗煄鍘�'
+    }, {
+      value: 621022,
+      label: '鐜幙'
+    }, {
+      value: 621023,
+      label: '鍗庢睜鍘�'
+    }, {
+      value: 621024,
+      label: '鍚堟按鍘�'
+    }, {
+      value: 621025,
+      label: '姝e畞鍘�'
+    }, {
+      value: 621026,
+      label: '瀹佸幙'
+    }, {
+      value: 621027,
+      label: '闀囧師鍘�'
+    }]
+  }, {
+    value: 6211,
+    label: '瀹氳タ甯�',
+    children: [{
+      value: 621102,
+      label: '瀹夊畾鍖�'
+    }, {
+      value: 621121,
+      label: '閫氭腑鍘�'
+    }, {
+      value: 621122,
+      label: '闄囪タ鍘�'
+    }, {
+      value: 621123,
+      label: '娓簮鍘�'
+    }, {
+      value: 621124,
+      label: '涓存串鍘�'
+    }, {
+      value: 621125,
+      label: '婕冲幙'
+    }, {
+      value: 621126,
+      label: '宀峰幙'
+    }]
+  }, {
+    value: 6212,
+    label: '闄囧崡甯�',
+    children: [{
+      value: 621202,
+      label: '姝﹂兘鍖�'
+    }, {
+      value: 621221,
+      label: '鎴愬幙'
+    }, {
+      value: 621222,
+      label: '鏂囧幙'
+    }, {
+      value: 621223,
+      label: '瀹曟槍鍘�'
+    }, {
+      value: 621224,
+      label: '搴峰幙'
+    }, {
+      value: 621225,
+      label: '瑗垮拰鍘�'
+    }, {
+      value: 621226,
+      label: '绀煎幙'
+    }, {
+      value: 621227,
+      label: '寰藉幙'
+    }, {
+      value: 621228,
+      label: '涓ゅ綋鍘�'
+    }]
+  }, {
+    value: 6229,
+    label: '涓村鍥炴棌鑷不宸�',
+    children: [{
+      value: 622901,
+      label: '涓村甯�'
+    }, {
+      value: 622921,
+      label: '涓村鍘�'
+    }, {
+      value: 622922,
+      label: '搴蜂箰鍘�'
+    }, {
+      value: 622923,
+      label: '姘搁潠鍘�'
+    }, {
+      value: 622924,
+      label: '骞挎渤鍘�'
+    }, {
+      value: 622925,
+      label: '鍜屾斂鍘�'
+    }, {
+      value: 622926,
+      label: '涓滀埂鏃忚嚜娌诲幙'
+    }, {
+      value: 622927,
+      label: '绉煶灞变繚瀹夋棌涓滀埂鏃忔拻鎷夋棌鑷不鍘�'
+    }]
+  }, {
+    value: 6230,
+    label: '鐢樺崡钘忔棌鑷不宸�',
+    children: [{
+      value: 623001,
+      label: '鍚堜綔甯�'
+    }, {
+      value: 623021,
+      label: '涓存江鍘�'
+    }, {
+      value: 623022,
+      label: '鍗撳凹鍘�'
+    }, {
+      value: 623023,
+      label: '鑸熸洸鍘�'
+    }, {
+      value: 623024,
+      label: '杩儴鍘�'
+    }, {
+      value: 623025,
+      label: '鐜涙洸鍘�'
+    }, {
+      value: 623026,
+      label: '纰屾洸鍘�'
+    }, {
+      value: 623027,
+      label: '澶忔渤鍘�'
+    }]
+  }]
+}, {
+  value: 63,
+  label: '闈掓捣鐪�',
+  children: [{
+    value: 6301,
+    label: '瑗垮畞甯�',
+    children: [{
+      value: 630102,
+      label: '鍩庝笢鍖�'
+    }, {
+      value: 630103,
+      label: '鍩庝腑鍖�'
+    }, {
+      value: 630104,
+      label: '鍩庤タ鍖�'
+    }, {
+      value: 630105,
+      label: '鍩庡寳鍖�'
+    }, {
+      value: 630121,
+      label: '澶ч�氬洖鏃忓湡鏃忚嚜娌诲幙'
+    }, {
+      value: 630122,
+      label: '婀熶腑鍘�'
+    }, {
+      value: 630123,
+      label: '婀熸簮鍘�'
+    }]
+  }, {
+    value: 6302,
+    label: '娴蜂笢甯�',
+    children: [{
+      value: 630202,
+      label: '涔愰兘鍖�'
+    }, {
+      value: 630203,
+      label: '骞冲畨鍖�'
+    }, {
+      value: 630222,
+      label: '姘戝拰鍥炴棌鍦熸棌鑷不鍘�'
+    }, {
+      value: 630223,
+      label: '浜掑姪鍦熸棌鑷不鍘�'
+    }, {
+      value: 630224,
+      label: '鍖栭殕鍥炴棌鑷不鍘�'
+    }, {
+      value: 630225,
+      label: '寰寲鎾掓媺鏃忚嚜娌诲幙'
+    }]
+  }, {
+    value: 6322,
+    label: '娴峰寳钘忔棌鑷不宸�',
+    children: [{
+      value: 632221,
+      label: '闂ㄦ簮鍥炴棌鑷不鍘�'
+    }, {
+      value: 632222,
+      label: '绁佽繛鍘�'
+    }, {
+      value: 632223,
+      label: '娴锋檹鍘�'
+    }, {
+      value: 632224,
+      label: '鍒氬療鍘�'
+    }]
+  }, {
+    value: 6323,
+    label: '榛勫崡钘忔棌鑷不宸�',
+    children: [{
+      value: 632321,
+      label: '鍚屼粊鍘�'
+    }, {
+      value: 632322,
+      label: '灏栨墡鍘�'
+    }, {
+      value: 632323,
+      label: '娉藉簱鍘�'
+    }, {
+      value: 632324,
+      label: '娌冲崡钂欏彜鏃忚嚜娌诲幙'
+    }]
+  }, {
+    value: 6325,
+    label: '娴峰崡钘忔棌鑷不宸�',
+    children: [{
+      value: 632521,
+      label: '鍏卞拰鍘�'
+    }, {
+      value: 632522,
+      label: '鍚屽痉鍘�'
+    }, {
+      value: 632523,
+      label: '璐靛痉鍘�'
+    }, {
+      value: 632524,
+      label: '鍏存捣鍘�'
+    }, {
+      value: 632525,
+      label: '璐靛崡鍘�'
+    }]
+  }, {
+    value: 6326,
+    label: '鏋滄礇钘忔棌鑷不宸�',
+    children: [{
+      value: 632621,
+      label: '鐜涙瞾鍘�'
+    }, {
+      value: 632622,
+      label: '鐝帥鍘�'
+    }, {
+      value: 632623,
+      label: '鐢樺痉鍘�'
+    }, {
+      value: 632624,
+      label: '杈炬棩鍘�'
+    }, {
+      value: 632625,
+      label: '涔呮不鍘�'
+    }, {
+      value: 632626,
+      label: '鐜涘鍘�'
+    }]
+  }, {
+    value: 6327,
+    label: '鐜夋爲钘忔棌鑷不宸�',
+    children: [{
+      value: 632701,
+      label: '鐜夋爲甯�'
+    }, {
+      value: 632722,
+      label: '鏉傚鍘�'
+    }, {
+      value: 632723,
+      label: '绉板鍘�'
+    }, {
+      value: 632724,
+      label: '娌诲鍘�'
+    }, {
+      value: 632725,
+      label: '鍥婅唉鍘�'
+    }, {
+      value: 632726,
+      label: '鏇查夯鑾卞幙'
+    }]
+  }, {
+    value: 6328,
+    label: '娴疯タ钂欏彜鏃忚棌鏃忚嚜娌诲窞',
+    children: [{
+      value: 632801,
+      label: '鏍煎皵鏈ㄥ競'
+    }, {
+      value: 632802,
+      label: '寰蜂护鍝堝競'
+    }, {
+      value: 632821,
+      label: '涔屽叞鍘�'
+    }, {
+      value: 632822,
+      label: '閮藉叞鍘�'
+    }, {
+      value: 632823,
+      label: '澶╁郴鍘�'
+    }]
+  }]
+}, {
+  value: 64,
+  label: '瀹佸鍥炴棌鑷不鍖�',
+  children: [{
+    value: 6401,
+    label: '閾跺窛甯�',
+    children: [{
+      value: 640104,
+      label: '鍏村簡鍖�'
+    }, {
+      value: 640105,
+      label: '瑗垮鍖�'
+    }, {
+      value: 640106,
+      label: '閲戝嚖鍖�'
+    }, {
+      value: 640121,
+      label: '姘稿畞鍘�'
+    }, {
+      value: 640122,
+      label: '璐哄叞鍘�'
+    }, {
+      value: 640181,
+      label: '鐏垫甯�'
+    }]
+  }, {
+    value: 6402,
+    label: '鐭冲槾灞卞競',
+    children: [{
+      value: 640202,
+      label: '澶ф鍙e尯'
+    }, {
+      value: 640205,
+      label: '鎯犲啘鍖�'
+    }, {
+      value: 640221,
+      label: '骞崇綏鍘�'
+    }]
+  }, {
+    value: 6403,
+    label: '鍚村繝甯�',
+    children: [{
+      value: 640302,
+      label: '鍒╅�氬尯'
+    }, {
+      value: 640303,
+      label: '绾㈠鍫″尯'
+    }, {
+      value: 640323,
+      label: '鐩愭睜鍘�'
+    }, {
+      value: 640324,
+      label: '鍚屽績鍘�'
+    }, {
+      value: 640381,
+      label: '闈掗摐宄″競'
+    }]
+  }, {
+    value: 6404,
+    label: '鍥哄師甯�',
+    children: [{
+      value: 640402,
+      label: '鍘熷窞鍖�'
+    }, {
+      value: 640422,
+      label: '瑗垮悏鍘�'
+    }, {
+      value: 640423,
+      label: '闅嗗痉鍘�'
+    }, {
+      value: 640424,
+      label: '娉炬簮鍘�'
+    }, {
+      value: 640425,
+      label: '褰槼鍘�'
+    }]
+  }, {
+    value: 6405,
+    label: '涓崼甯�',
+    children: [{
+      value: 640502,
+      label: '娌欏潯澶村尯'
+    }, {
+      value: 640521,
+      label: '涓畞鍘�'
+    }, {
+      value: 640522,
+      label: '娴峰師鍘�'
+    }]
+  }]
+}, {
+  value: 65,
+  label: '鏂扮枂缁村惥灏旇嚜娌诲尯',
+  children: [{
+    value: 6501,
+    label: '涔岄瞾鏈ㄩ綈甯�',
+    children: [{
+      value: 650102,
+      label: '澶╁北鍖�'
+    }, {
+      value: 650103,
+      label: '娌欎緷宸村厠鍖�'
+    }, {
+      value: 650104,
+      label: '鏂板競鍖�'
+    }, {
+      value: 650105,
+      label: '姘寸(娌熷尯'
+    }, {
+      value: 650106,
+      label: '澶村悲娌冲尯'
+    }, {
+      value: 650107,
+      label: '杈惧潅鍩庡尯'
+    }, {
+      value: 650109,
+      label: '绫充笢鍖�'
+    }, {
+      value: 650121,
+      label: '涔岄瞾鏈ㄩ綈鍘�'
+    }]
+  }, {
+    value: 6502,
+    label: '鍏嬫媺鐜涗緷甯�',
+    children: [{
+      value: 650202,
+      label: '鐙北瀛愬尯'
+    }, {
+      value: 650203,
+      label: '鍏嬫媺鐜涗緷鍖�'
+    }, {
+      value: 650204,
+      label: '鐧界⒈婊╁尯'
+    }, {
+      value: 650205,
+      label: '涔屽皵绂惧尯'
+    }]
+  }, {
+    value: 6504,
+    label: '鍚愰瞾鐣競',
+    children: [{
+      value: 650402,
+      label: '楂樻槍鍖�'
+    }, {
+      value: 650421,
+      label: '閯杽鍘�'
+    }, {
+      value: 650422,
+      label: '鎵樺厠閫婂幙'
+    }]
+  }, {
+    value: 6505,
+    label: '鍝堝瘑甯�',
+    children: [{
+      value: 650502,
+      label: '浼婂窞鍖�'
+    }, {
+      value: 650521,
+      label: '宸撮噷鍧ゅ搱钀ㄥ厠鑷不鍘�'
+    }, {
+      value: 650522,
+      label: '浼婂惥鍘�'
+    }]
+  }, {
+    value: 6523,
+    label: '鏄屽悏鍥炴棌鑷不宸�',
+    children: [{
+      value: 652301,
+      label: '鏄屽悏甯�'
+    }, {
+      value: 652302,
+      label: '闃滃悍甯�'
+    }, {
+      value: 652323,
+      label: '鍛煎浘澹佸幙'
+    }, {
+      value: 652324,
+      label: '鐜涚撼鏂幙'
+    }, {
+      value: 652325,
+      label: '濂囧彴鍘�'
+    }, {
+      value: 652327,
+      label: '鍚夋湪钀ㄥ皵鍘�'
+    }, {
+      value: 652328,
+      label: '鏈ㄥ瀿鍝堣惃鍏嬭嚜娌诲幙'
+    }]
+  }, {
+    value: 6527,
+    label: '鍗氬皵濉旀媺钂欏彜鑷不宸�',
+    children: [{
+      value: 652701,
+      label: '鍗氫箰甯�'
+    }, {
+      value: 652702,
+      label: '闃挎媺灞卞彛甯�'
+    }, {
+      value: 652722,
+      label: '绮炬渤鍘�'
+    }, {
+      value: 652723,
+      label: '娓╂硥鍘�'
+    }]
+  }, {
+    value: 6528,
+    label: '宸撮煶閮钂欏彜鑷不宸�',
+    children: [{
+      value: 652801,
+      label: '搴撳皵鍕掑競'
+    }, {
+      value: 652822,
+      label: '杞彴鍘�'
+    }, {
+      value: 652823,
+      label: '灏夌妬鍘�'
+    }, {
+      value: 652824,
+      label: '鑻ョ緦鍘�'
+    }, {
+      value: 652825,
+      label: '涓旀湯鍘�'
+    }, {
+      value: 652826,
+      label: '鐒夎�嗗洖鏃忚嚜娌诲幙'
+    }, {
+      value: 652827,
+      label: '鍜岄潤鍘�'
+    }, {
+      value: 652828,
+      label: '鍜岀鍘�'
+    }, {
+      value: 652829,
+      label: '鍗氭箹鍘�'
+    }]
+  }, {
+    value: 6529,
+    label: '闃垮厠鑻忓湴鍖�',
+    children: [{
+      value: 652901,
+      label: '闃垮厠鑻忓競'
+    }, {
+      value: 652922,
+      label: '娓╁鍘�'
+    }, {
+      value: 652923,
+      label: '搴撹溅鍘�'
+    }, {
+      value: 652924,
+      label: '娌欓泤鍘�'
+    }, {
+      value: 652925,
+      label: '鏂板拰鍘�'
+    }, {
+      value: 652926,
+      label: '鎷滃煄鍘�'
+    }, {
+      value: 652927,
+      label: '涔屼粈鍘�'
+    }, {
+      value: 652928,
+      label: '闃跨摝鎻愬幙'
+    }, {
+      value: 652929,
+      label: '鏌潽鍘�'
+    }]
+  }, {
+    value: 6530,
+    label: '鍏嬪瓬鍕掕嫃鏌皵鍏嬪瓬鑷不宸�',
+    children: [{
+      value: 653001,
+      label: '闃垮浘浠�甯�'
+    }, {
+      value: 653022,
+      label: '闃垮厠闄跺幙'
+    }, {
+      value: 653023,
+      label: '闃垮悎濂囧幙'
+    }, {
+      value: 653024,
+      label: '涔屾伆鍘�'
+    }]
+  }, {
+    value: 6531,
+    label: '鍠�浠�鍦板尯',
+    children: [{
+      value: 653101,
+      label: '鍠�浠�甯�'
+    }, {
+      value: 653121,
+      label: '鐤忛檮鍘�'
+    }, {
+      value: 653122,
+      label: '鐤忓嫆鍘�'
+    }, {
+      value: 653123,
+      label: '鑻卞悏娌欏幙'
+    }, {
+      value: 653124,
+      label: '娉芥櫘鍘�'
+    }, {
+      value: 653125,
+      label: '鑾庤溅鍘�'
+    }, {
+      value: 653126,
+      label: '鍙跺煄鍘�'
+    }, {
+      value: 653127,
+      label: '楹︾洊鎻愬幙'
+    }, {
+      value: 653128,
+      label: '宀虫櫘婀栧幙'
+    }, {
+      value: 653129,
+      label: '浼藉笀鍘�'
+    }, {
+      value: 653130,
+      label: '宸存鍘�'
+    }, {
+      value: 653131,
+      label: '濉斾粈搴撳皵骞插鍚夊厠鑷不鍘�'
+    }]
+  }, {
+    value: 6532,
+    label: '鍜岀敯鍦板尯',
+    children: [{
+      value: 653201,
+      label: '鍜岀敯甯�'
+    }, {
+      value: 653221,
+      label: '鍜岀敯鍘�'
+    }, {
+      value: 653222,
+      label: '澧ㄧ帀鍘�'
+    }, {
+      value: 653223,
+      label: '鐨北鍘�'
+    }, {
+      value: 653224,
+      label: '娲涙郸鍘�'
+    }, {
+      value: 653225,
+      label: '绛栧嫆鍘�'
+    }, {
+      value: 653226,
+      label: '浜庣敯鍘�'
+    }, {
+      value: 653227,
+      label: '姘戜赴鍘�'
+    }]
+  }, {
+    value: 6540,
+    label: '浼婄妬鍝堣惃鍏嬭嚜娌诲窞',
+    children: [{
+      value: 654002,
+      label: '浼婂畞甯�'
+    }, {
+      value: 654003,
+      label: '濂庡悲甯�'
+    }, {
+      value: 654004,
+      label: '闇嶅皵鏋滄柉甯�'
+    }, {
+      value: 654021,
+      label: '浼婂畞鍘�'
+    }, {
+      value: 654022,
+      label: '瀵熷竷鏌ュ皵閿′集鑷不鍘�'
+    }, {
+      value: 654023,
+      label: '闇嶅煄鍘�'
+    }, {
+      value: 654024,
+      label: '宸╃暀鍘�'
+    }, {
+      value: 654025,
+      label: '鏂版簮鍘�'
+    }, {
+      value: 654026,
+      label: '鏄嫃鍘�'
+    }, {
+      value: 654027,
+      label: '鐗瑰厠鏂幙'
+    }, {
+      value: 654028,
+      label: '灏煎嫆鍏嬪幙'
+    }]
+  }, {
+    value: 6542,
+    label: '濉斿煄鍦板尯',
+    children: [{
+      value: 654201,
+      label: '濉斿煄甯�'
+    }, {
+      value: 654202,
+      label: '涔岃嫃甯�'
+    }, {
+      value: 654221,
+      label: '棰濇晱鍘�'
+    }, {
+      value: 654223,
+      label: '娌欐咕鍘�'
+    }, {
+      value: 654224,
+      label: '鎵橀噷鍘�'
+    }, {
+      value: 654225,
+      label: '瑁曟皯鍘�'
+    }, {
+      value: 654226,
+      label: '鍜屽竷鍏嬭禌灏旇挋鍙よ嚜娌诲幙'
+    }]
+  }, {
+    value: 6543,
+    label: '闃垮嫆娉板湴鍖�',
+    children: [{
+      value: 654301,
+      label: '闃垮嫆娉板競'
+    }, {
+      value: 654321,
+      label: '甯冨皵娲ュ幙'
+    }, {
+      value: 654322,
+      label: '瀵岃暣鍘�'
+    }, {
+      value: 654323,
+      label: '绂忔捣鍘�'
+    }, {
+      value: 654324,
+      label: '鍝堝反娌冲幙'
+    }, {
+      value: 654325,
+      label: '闈掓渤鍘�'
+    }, {
+      value: 654326,
+      label: '鍚夋湪涔冨幙'
+    }]
+  }, {
+    value: 6590,
+    label: '鑷不鍖虹洿杈栧幙绾ц鏀垮尯鍒�',
+    children: [{
+      value: 659001,
+      label: '鐭虫渤瀛愬競'
+    }, {
+      value: 659002,
+      label: '闃挎媺灏斿競'
+    }, {
+      value: 659003,
+      label: '鍥炬湪鑸掑厠甯�'
+    }, {
+      value: 659004,
+      label: '浜斿娓犲競'
+    }, {
+      value: 659006,
+      label: '閾侀棬鍏冲競'
+    }]
+  }]
+},
+// 鍚屾灏忕▼搴� 娣诲姞 棣欐腐 鍙版咕 婢抽棬
+{
+  value: 66,
+  label: '鍙版咕鐪�',
+  children: [{
+    value: 6601,
+    label: '鍙板寳甯�',
+    children: [{
+      value: 660101,
+      label: '涓鍖�'
+    }, {
+      value: 660102,
+      label: '澶у悓鍖�'
+    }, {
+      value: 660103,
+      label: '涓北鍖�'
+    }, {
+      value: 660104,
+      label: '鏉惧北鍖�'
+    }, {
+      value: 660105,
+      label: '澶у畨鍖�'
+    }, {
+      value: 660106,
+      label: '涓囧崕鍖�'
+    }, {
+      value: 660107,
+      label: '淇′箟鍖�'
+    }, {
+      value: 660108,
+      label: '澹灄鍖�'
+    }, {
+      value: 660109,
+      label: '鍖楁姇鍖�'
+    }, {
+      value: 660110,
+      label: '鍐呮箹鍖�'
+    }, {
+      value: 660111,
+      label: '鍗楁腐鍖�'
+    }, {
+      value: 660112,
+      label: '鏂囧北鍖�'
+    }]
+  }, {
+    value: 6602,
+    label: '楂橀泟甯�',
+    children: [{
+      value: 660201,
+      label: '鏂板叴鍖�'
+    }, {
+      value: 660202,
+      label: '鍓嶉噾鍖�'
+    }, {
+      value: 660203,
+      label: '鑻撻泤鍖�'
+    }, {
+      value: 660204,
+      label: '鐩愬煏鍖�'
+    }, {
+      value: 660205,
+      label: '榧撳北鍖�'
+    }, {
+      value: 660206,
+      label: '鏃楁触鍖�'
+    }, {
+      value: 660207,
+      label: '鍓嶉晣鍖�'
+    }, {
+      value: 660208,
+      label: '涓夋皯鍖�'
+    }, {
+      value: 660209,
+      label: '宸﹁惀鍖�'
+    }, {
+      value: 660210,
+      label: '妤犳鍖�'
+    }, {
+      value: 660211,
+      label: '灏忔腐鍖�'
+    }, {
+      value: 660212,
+      label: '浠佹鍖�'
+    }, {
+      value: 660213,
+      label: '澶хぞ鍖�'
+    }, {
+      value: 660214,
+      label: '鍐堝北鍖�'
+    }, {
+      value: 660215,
+      label: '璺鍖�'
+    }, {
+      value: 660216,
+      label: '闃胯幉鍖�'
+    }, {
+      value: 660217,
+      label: '鐢板鍖�'
+    }, {
+      value: 660218,
+      label: '鐕曞发鍖�'
+    }, {
+      value: 660219,
+      label: '妗ュご鍖�'
+    }, {
+      value: 660220,
+      label: '姊撳畼鍖�'
+    }, {
+      value: 660221,
+      label: '寮ラ檧鍖�'
+    }, {
+      value: 660222,
+      label: '姘稿畨鍖�'
+    }, {
+      value: 660223,
+      label: '婀栧唴鍖�'
+    }, {
+      value: 660224,
+      label: '鍑ゅ北鍖�'
+    }, {
+      value: 660225,
+      label: '澶у鍖�'
+    }, {
+      value: 660226,
+      label: '鏋楀洯鍖�'
+    }, {
+      value: 660227,
+      label: '楦熸澗鍖�'
+    }, {
+      value: 660228,
+      label: '澶ф爲鍖�'
+    }, {
+      value: 660229,
+      label: '鏃楀北鍖�'
+    }, {
+      value: 660230,
+      label: '缇庢祿鍖�'
+    }, {
+      value: 660231,
+      label: '鍏緹鍖�'
+    }, {
+      value: 660232,
+      label: '鍐呴棬鍖�'
+    }, {
+      value: 660233,
+      label: '鏉夋灄鍖�'
+    }, {
+      value: 660234,
+      label: '鐢蹭粰鍖�'
+    }, {
+      value: 660235,
+      label: '妗冩簮鍖�'
+    }, {
+      value: 660236,
+      label: '閭g帥澶忓尯'
+    }, {
+      value: 660237,
+      label: '鑼傛灄鍖�'
+    }, {
+      value: 660238,
+      label: '鑼勮悾鍖�'
+    }]
+  }, {
+    value: 6603,
+    label: '鍙板崡甯�',
+    children: [{
+      value: 660301,
+      label: '涓タ鍖�'
+    }, {
+      value: 660302,
+      label: '涓滃尯'
+    }, {
+      value: 660303,
+      label: '鍗楀尯'
+    }, {
+      value: 660304,
+      label: '鍖楀尯'
+    }, {
+      value: 660305,
+      label: '瀹夊钩鍖�'
+    }, {
+      value: 660306,
+      label: '瀹夊崡鍖�'
+    }, {
+      value: 660307,
+      label: '姘稿悍鍖�'
+    }, {
+      value: 660308,
+      label: '褰掍粊鍖�'
+    }, {
+      value: 660309,
+      label: '鏂板寲鍖�'
+    }, {
+      value: 660310,
+      label: '宸﹂晣鍖�'
+    }, {
+      value: 660311,
+      label: '鐜変簳鍖�'
+    }, {
+      value: 660312,
+      label: '妤犺タ鍖�'
+    }, {
+      value: 660313,
+      label: '鍗楀寲鍖�'
+    }, {
+      value: 660314,
+      label: '浠佸痉鍖�'
+    }, {
+      value: 660315,
+      label: '鍏冲簷鍖�'
+    }, {
+      value: 660316,
+      label: '榫欏磶鍖�'
+    }, {
+      value: 660317,
+      label: '瀹樼敯鍖�'
+    }, {
+      value: 660318,
+      label: '楹昏眴鍖�'
+    }, {
+      value: 660319,
+      label: '浣抽噷鍖�'
+    }, {
+      value: 660320,
+      label: '瑗挎腐鍖�'
+    }, {
+      value: 660321,
+      label: '涓冭偂鍖�'
+    }, {
+      value: 660322,
+      label: '灏嗗啗鍖�'
+    }, {
+      value: 660323,
+      label: '瀛︾敳鍖�'
+    }, {
+      value: 660324,
+      label: '鍖楅棬鍖�'
+    }, {
+      value: 660325,
+      label: '鏂拌惀鍖�'
+    }, {
+      value: 660326,
+      label: '鍚庡鍖�'
+    }, {
+      value: 660327,
+      label: '鐧芥渤鍖�'
+    }, {
+      value: 660328,
+      label: '涓滃北鍖�'
+    }, {
+      value: 660329,
+      label: '鍏敳鍖�'
+    }, {
+      value: 660330,
+      label: '涓嬭惀鍖�'
+    }, {
+      value: 660331,
+      label: '鏌宠惀鍖�'
+    }, {
+      value: 660332,
+      label: '鐩愭按鍖�'
+    }, {
+      value: 660333,
+      label: '鍠勫寲鍖�'
+    }, {
+      value: 660334,
+      label: '澶у唴鍖�'
+    }, {
+      value: 660335,
+      label: '灞变笂鍖�'
+    }, {
+      value: 660336,
+      label: '鏂板競鍖�'
+    }, {
+      value: 660337,
+      label: '瀹夊畾鍖�'
+    }]
+  }, {
+    value: 6604,
+    label: '鍙颁腑甯�',
+    children: [{
+      value: 660401,
+      label: '涓尯'
+    }, {
+      value: 660402,
+      label: '涓滃尯'
+    }, {
+      value: 660403,
+      label: '鍗楀尯'
+    }, {
+      value: 660404,
+      label: '瑗垮尯'
+    }, {
+      value: 660405,
+      label: '鍖楀尯'
+    }, {
+      value: 660406,
+      label: '鍖楀悲鍖�'
+    }, {
+      value: 660407,
+      label: '瑗垮悲鍖�'
+    }, {
+      value: 660408,
+      label: '鍗楀悲鍖�'
+    }, {
+      value: 660409,
+      label: '澶钩鍖�'
+    }, {
+      value: 660410,
+      label: '澶ч噷鍖�'
+    }, {
+      value: 660411,
+      label: '闆惧嘲鍖�'
+    }, {
+      value: 660412,
+      label: '涔屾棩鍖�'
+    }, {
+      value: 660413,
+      label: '涓板師鍖�'
+    }, {
+      value: 660414,
+      label: '鍚庨噷鍖�'
+    }, {
+      value: 660415,
+      label: '鐭冲唸鍖�'
+    }, {
+      value: 660416,
+      label: '涓滃娍鍖�'
+    }, {
+      value: 660417,
+      label: '鍜屽钩鍖�'
+    }, {
+      value: 660418,
+      label: '鏂扮ぞ鍖�'
+    }, {
+      value: 660419,
+      label: '娼瓙鍖�'
+    }, {
+      value: 660420,
+      label: '澶ч泤鍖�'
+    }, {
+      value: 660421,
+      label: '绁炲唸鍖�'
+    }, {
+      value: 660422,
+      label: '澶ц倸鍖�'
+    }, {
+      value: 660423,
+      label: '娌欓箍鍖�'
+    }, {
+      value: 660424,
+      label: '榫欎簳鍖�'
+    }, {
+      value: 660425,
+      label: '姊ф爾鍖�'
+    }, {
+      value: 660426,
+      label: '娓呮按鍖�'
+    }, {
+      value: 660427,
+      label: '澶х敳鍖�'
+    }, {
+      value: 660428,
+      label: '澶栧煍鍖�'
+    }, {
+      value: 660429,
+      label: '澶у畨鍖�'
+    }]
+  }, {
+    value: 6605,
+    label: '鍗楁姇鍘�',
+    children: [{
+      value: 660501,
+      label: '鍗楁姇甯�'
+    }, {
+      value: 660502,
+      label: '涓涔�'
+    }, {
+      value: 660503,
+      label: '鑽夊悲闀�'
+    }, {
+      value: 660504,
+      label: '鍥藉涔�'
+    }, {
+      value: 660505,
+      label: '鍩旈噷闀�'
+    }, {
+      value: 660506,
+      label: '浠佺埍涔�'
+    }, {
+      value: 660507,
+      label: '鍚嶉棿涔�'
+    }, {
+      value: 660508,
+      label: '闆嗛泦闀�'
+    }, {
+      value: 660509,
+      label: '姘撮噷涔�'
+    }, {
+      value: 660510,
+      label: '楸兼睜涔�'
+    }, {
+      value: 660511,
+      label: '淇′箟涔�'
+    }, {
+      value: 660512,
+      label: '绔瑰北闀�'
+    }, {
+      value: 660513,
+      label: '楣胯胺涔�'
+    }]
+  }, {
+    value: 6606,
+    label: '鍩洪殕甯�',
+    children: [{
+      value: 660601,
+      label: '浠佺埍鍖�'
+    }, {
+      value: 660602,
+      label: '淇′箟鍖�'
+    }, {
+      value: 660603,
+      label: '涓鍖�'
+    }, {
+      value: 660604,
+      label: '涓北鍖�'
+    }, {
+      value: 660605,
+      label: '瀹変箰鍖�'
+    }, {
+      value: 660606,
+      label: '鏆栨殩鍖�'
+    }, {
+      value: 660607,
+      label: '涓冨牭鍖�'
+    }]
+  }, {
+    value: 6607,
+    label: '鏂扮甯�',
+    children: [{
+      value: 660701,
+      label: '涓滃尯'
+    }, {
+      value: 660702,
+      label: '鍖楀尯'
+    }, {
+      value: 660703,
+      label: '棣欏北鍖�'
+    }]
+  }, {
+    value: 6608,
+    label: '鍢変箟甯�',
+    children: [{
+      value: 660801,
+      label: '涓滃尯'
+    }, {
+      value: 660802,
+      label: '瑗垮尯'
+    }]
+  }, {
+    value: 6609,
+    label: '鏂板寳甯�',
+    children: [{
+      value: 660901,
+      label: '涓囬噷鍖�'
+    }, {
+      value: 660902,
+      label: '閲戝北鍖�'
+    }, {
+      value: 660903,
+      label: '鏉挎ˉ鍖�'
+    }, {
+      value: 660904,
+      label: '姹愭鍖�'
+    }, {
+      value: 660905,
+      label: '娣卞潙鍖�'
+    }, {
+      value: 660906,
+      label: '鐭崇鍖�'
+    }, {
+      value: 660907,
+      label: '鐟炶姵鍖�'
+    }, {
+      value: 660908,
+      label: '骞虫邯鍖�'
+    }, {
+      value: 660909,
+      label: '鍙屾邯鍖�'
+    }, {
+      value: 660910,
+      label: '璐″鍖�'
+    }, {
+      value: 660911,
+      label: '鏂板簵鍖�'
+    }, {
+      value: 660912,
+      label: '鍧灄鍖�'
+    }, {
+      value: 660913,
+      label: '涔屾潵鍖�'
+    }, {
+      value: 660914,
+      label: '姘稿拰鍖�'
+    }, {
+      value: 660915,
+      label: '涓拰鍖�'
+    }, {
+      value: 660916,
+      label: '鍦熷煄鍖�'
+    }, {
+      value: 660917,
+      label: '涓夊场鍖�'
+    }, {
+      value: 660918,
+      label: '鏍戞灄鍖�'
+    }, {
+      value: 660919,
+      label: '鑾烘瓕鍖�'
+    }, {
+      value: 660920,
+      label: '涓夐噸鍖�'
+    }, {
+      value: 660921,
+      label: '鏂板簞鍖�'
+    }, {
+      value: 660922,
+      label: '娉板北鍖�'
+    }, {
+      value: 660923,
+      label: '鏋楀彛鍖�'
+    }, {
+      value: 660924,
+      label: '鑺︽床鍖�'
+    }, {
+      value: 660925,
+      label: '浜旇偂鍖�'
+    }, {
+      value: 660926,
+      label: '鍏噷鍖�'
+    }, {
+      value: 660927,
+      label: '娣℃按鍖�'
+    }, {
+      value: 660928,
+      label: '涓夎姖鍖�'
+    }, {
+      value: 660929,
+      label: '鐭抽棬鍖�'
+    }]
+  }, {
+    value: 6610,
+    label: '瀹滃叞鍘�',
+    children: [{
+      value: 661001,
+      label: '瀹滃叞甯�'
+    },
+    {
+      value: 661002,
+      label: '澶村煄闀�'
+    },
+    {
+      value: 661003,
+      label: '绀佹邯涔�'
+    },
+    {
+      value: 661004,
+      label: '澹洿涔�'
+    },
+    {
+      value: 661005,
+      label: '鍛樺北涔�'
+    },
+    {
+      value: 661006,
+      label: '缃椾笢闀�'
+    },
+    {
+      value: 661007,
+      label: '涓夋槦涔�'
+    },
+    {
+      value: 661008,
+      label: '澶у悓涔�'
+    },
+    {
+      value: 661009,
+      label: '浜旂粨涔�'
+    },
+    {
+      value: 661010,
+      label: '鍐北涔�'
+    },
+    {
+      value: 661011,
+      label: '鑻忔境闀�'
+    },
+    {
+      value: 661012,
+      label: '鍗楁境涔�'
+    }
+    ]
+  }, {
+    value: 6611,
+    label: '鏂扮鍘�',
+    children: [{
+      value: 661102,
+      label: '绔瑰寳甯�'
+    },
+    {
+      value: 661103,
+      label: '婀栧彛涔�'
+    },
+    {
+      value: 661104,
+      label: '鏂颁赴涔�'
+    },
+    {
+      value: 661105,
+      label: '鏂板煍闀�'
+    },
+    {
+      value: 661106,
+      label: '鍏宠タ闀�'
+    },
+    {
+      value: 661107,
+      label: '鑺庢灄涔�'
+    },
+    {
+      value: 661108,
+      label: '瀹濆北涔�'
+    },
+    {
+      value: 661109,
+      label: '绔逛笢闀�'
+    },
+    {
+      value: 661110,
+      label: '浜斿嘲涔�'
+    },
+    {
+      value: 661111,
+      label: '妯北涔�'
+    },
+    {
+      value: 661112,
+      label: '灏栫煶涔�'
+    },
+    {
+      value: 661113,
+      label: '鍖楀煍涔�'
+    },
+    {
+      value: 661114,
+      label: '宄ㄧ湁涔�'
+    }
+    ]
+  }, {
+    value: 6612,
+    label: '妗冨洯甯�',
+    children: [{
+      value: 661201,
+      label: '涓潨鍖�'
+    },
+    {
+      value: 661202,
+      label: '骞抽晣鍖�'
+    },
+    {
+      value: 661203,
+      label: '榫欐江鍖�'
+    },
+    {
+      value: 661204,
+      label: '鏉ㄦ鍖�'
+    },
+    {
+      value: 661205,
+      label: '鏂板眿鍖�'
+    },
+    {
+      value: 661206,
+      label: '瑙傞煶鍖�'
+    },
+    {
+      value: 661207,
+      label: '妗冨洯鍖�'
+    },
+    {
+      value: 661208,
+      label: '榫熷北鍖�'
+    },
+    {
+      value: 661209,
+      label: '鍏痉鍖�'
+    },
+    {
+      value: 661210,
+      label: '澶ф邯鍖�'
+    },
+    {
+      value: 661211,
+      label: '澶嶅叴鍖�'
+    },
+    {
+      value: 661212,
+      label: '澶у洯鍖�'
+    },
+    {
+      value: 661213,
+      label: '鑺︾鍖�'
+    }
+    ]
+  }, {
+    value: 6613,
+    label: '鑻楃矡鍘�',
+    children: [{
+      value: 661301,
+      label: '绔瑰崡闀�'
+    },
+    {
+      value: 661302,
+      label: '澶翠唤甯�'
+    },
+    {
+      value: 661303,
+      label: '涓夋咕涔�'
+    },
+    {
+      value: 661304,
+      label: '鍗楀簞涔�'
+    },
+    {
+      value: 661305,
+      label: '鐙江涔�'
+    },
+    {
+      value: 661306,
+      label: '鍚庨緳闀�'
+    },
+    {
+      value: 661307,
+      label: '閫氶渼闀�'
+    },
+    {
+      value: 661308,
+      label: '鑻戦噷闀�'
+    },
+    {
+      value: 661309,
+      label: '鑻楁牀甯�'
+    },
+    {
+      value: 661310,
+      label: '閫犳ˉ涔�'
+    },
+    {
+      value: 661311,
+      label: '澶村眿涔�'
+    },
+    {
+      value: 661312,
+      label: '鍏涔�'
+    },
+    {
+      value: 661313,
+      label: '澶ф箹涔�'
+    },
+    {
+      value: 661314,
+      label: '娉板畨涔�'
+    },
+    {
+      value: 661315,
+      label: '閾滈敚涔�'
+    },
+    {
+      value: 661316,
+      label: '涓変箟涔�'
+    },
+    {
+      value: 661317,
+      label: '瑗挎箹涔�'
+    },
+    {
+      value: 661318,
+      label: '鍗撳叞闀�'
+    }
+    ]
+  }, {
+    value: 6614,
+    label: '褰板寲鍘�',
+    children: [{
+      value: 661401,
+      label: '褰板寲甯�'
+    },
+    {
+      value: 661402,
+      label: '鑺洯涔�'
+    },
+    {
+      value: 661403,
+      label: '鑺卞潧涔�'
+    },
+    {
+      value: 661404,
+      label: '绉�姘翠埂'
+    },
+    {
+      value: 661405,
+      label: '楣挎腐闀�'
+    },
+    {
+      value: 661406,
+      label: '绂忓叴涔�'
+    },
+    {
+      value: 661407,
+      label: '绾胯タ涔�'
+    },
+    {
+      value: 661408,
+      label: '鍜岀編闀�'
+    },
+    {
+      value: 661409,
+      label: '浼告腐涔�'
+    },
+    {
+      value: 661410,
+      label: '鍛樻灄甯�'
+    },
+    {
+      value: 661411,
+      label: '绀惧ご涔�'
+    },
+    {
+      value: 661412,
+      label: '姘搁潠涔�'
+    },
+    {
+      value: 661413,
+      label: '鍩斿績涔�'
+    },
+    {
+      value: 661414,
+      label: '婧箹闀�'
+    },
+    {
+      value: 661415,
+      label: '澶ф潙涔�'
+    },
+    {
+      value: 661416,
+      label: '鍩旂洂涔�'
+    },
+    {
+      value: 661417,
+      label: '鐢颁腑闀�'
+    },
+    {
+      value: 661418,
+      label: '鍖楁枟闀�'
+    },
+    {
+      value: 661419,
+      label: '鐢板熬涔�'
+    },
+    {
+      value: 661420,
+      label: '鍩ゅご涔�'
+    },
+    {
+      value: 661421,
+      label: '婧窞涔�'
+    },
+    {
+      value: 661422,
+      label: '绔瑰涔�'
+    },
+    {
+      value: 661423,
+      label: '浜屾灄闀�'
+    },
+    {
+      value: 661424,
+      label: '澶у煄涔�'
+    },
+    {
+      value: 661425,
+      label: '鑺宠嫅涔�'
+    },
+    {
+      value: 661426,
+      label: '浜屾按涔�'
+    }
+    ]
+  }, {
+    value: 6615,
+    label: '鍢変箟鍘�',
+    children: [{
+      value: 661501,
+      label: '鐣矾涔�'
+    }, {
+      value: 661502,
+      label: '姊呭北涔�'
+    }, {
+      value: 661503,
+      label: '绔瑰磶涔�'
+    }, {
+      value: 661504,
+      label: '闃块噷灞变埂'
+    }, {
+      value: 661505,
+      label: '涓煍涔�'
+    }, {
+      value: 661506,
+      label: '澶у煍涔�'
+    }, {
+      value: 661507,
+      label: '姘翠笂涔�'
+    }, {
+      value: 661508,
+      label: '楣胯崏涔�'
+    }, {
+      value: 661509,
+      label: '澶繚甯�'
+    }, {
+      value: 661510,
+      label: '鏈村瓙甯�'
+    }, {
+      value: 661511,
+      label: '涓滅煶涔�'
+    }, {
+      value: 661512,
+      label: '鍏剼涔�'
+    }, {
+      value: 661513,
+      label: '鏂版腐涔�'
+    }, {
+      value: 661514,
+      label: '姘戦泟涔�'
+    }, {
+      value: 661515,
+      label: '澶ф灄闀�'
+    }, {
+      value: 661516,
+      label: '婧彛涔�'
+    }, {
+      value: 661517,
+      label: '涔夌涔�'
+    }, {
+      value: 661518,
+      label: '甯冭闀�'
+    }]
+  }, {
+    value: 6616,
+    label: '浜戞灄鍘�',
+    children: [{
+      value: 661601,
+      label: '鏂楀崡闀�'
+    }, {
+      value: 661602,
+      label: '澶у煠涔�'
+    }, {
+      value: 661603,
+      label: '铏庡熬闀�'
+    }, {
+      value: 661604,
+      label: '鍦熷簱闀�'
+    }, {
+      value: 661605,
+      label: '瑜掑繝涔�'
+    }, {
+      value: 661606,
+      label: '涓滃娍涔�'
+    }, {
+      value: 661607,
+      label: '鍙拌タ涔�'
+    }, {
+      value: 661608,
+      label: '浠戣儗涔�'
+    }, {
+      value: 661609,
+      label: '楹﹀涔�'
+    }, {
+      value: 661610,
+      label: '鏂楀叚甯�'
+    }, {
+      value: 661611,
+      label: '鏋楀唴涔�'
+    }, {
+      value: 661612,
+      label: '鍙ゅ潙涔�'
+    }, {
+      value: 661613,
+      label: '鑾挎涔�'
+    }, {
+      value: 661614,
+      label: '瑗胯灪闀�'
+    }, {
+      value: 661615,
+      label: '浜屼粦涔�'
+    }, {
+      value: 661616,
+      label: '鍖楁腐闀�'
+    }, {
+      value: 661617,
+      label: '姘存灄涔�'
+    }, {
+      value: 661618,
+      label: '鍙f箹涔�'
+    }, {
+      value: 661619,
+      label: '鍥涙箹涔�'
+    }, {
+      value: 661620,
+      label: '鍏冮暱涔�'
+    }]
+  }, {
+    value: 6617,
+    label: '灞忎笢鍘�',
+    children: [{
+      value: 661701,
+      label: '灞忎笢甯�'
+    }, {
+      value: 661702,
+      label: '涓夊湴闂ㄤ埂'
+    }, {
+      value: 661703,
+      label: '闆惧彴涔�'
+    }, {
+      value: 661704,
+      label: '鐜涘涔�'
+    }, {
+      value: 661705,
+      label: '涔濆涔�'
+    }, {
+      value: 661706,
+      label: '閲屾腐涔�'
+    }, {
+      value: 661707,
+      label: '楂樻爲涔�'
+    }, {
+      value: 661708,
+      label: '鐩愬煍涔�'
+    }, {
+      value: 661709,
+      label: '闀挎不涔�'
+    }, {
+      value: 661710,
+      label: '楹熸礇涔�'
+    }, {
+      value: 661711,
+      label: '绔圭敯涔�'
+    }, {
+      value: 661712,
+      label: '鍐呭煍涔�'
+    }, {
+      value: 661713,
+      label: '涓囦腹涔�'
+    }, {
+      value: 661714,
+      label: '娼窞闀�'
+    }, {
+      value: 661715,
+      label: '娉版涔�'
+    }, {
+      value: 661716,
+      label: '鏉ヤ箟涔�'
+    }, {
+      value: 661717,
+      label: '涓囧肠涔�'
+    }, {
+      value: 661718,
+      label: '宕侀《涔�'
+    }, {
+      value: 661719,
+      label: '鏂板煠涔�'
+    }, {
+      value: 661720,
+      label: '鍗楀窞涔�'
+    }, {
+      value: 661721,
+      label: '鏋楄竟涔�'
+    }, {
+      value: 661722,
+      label: '涓滄腐闀�'
+    }, {
+      value: 661723,
+      label: '鐞夌悆涔�'
+    }, {
+      value: 661724,
+      label: '浣冲啲涔�'
+    }, {
+      value: 661725,
+      label: '鏂板洯涔�'
+    }, {
+      value: 661726,
+      label: '鏋嬪涔�'
+    }, {
+      value: 661727,
+      label: '鏋嬪北涔�'
+    }, {
+      value: 661728,
+      label: '鏄ユ棩涔�'
+    }, {
+      value: 661729,
+      label: '鐙瓙涔�'
+    }, {
+      value: 661730,
+      label: '杞﹀煄涔�'
+    }, {
+      value: 661731,
+      label: '鐗′腹涔�'
+    }, {
+      value: 661732,
+      label: '鎭掓槬闀�'
+    }, {
+      value: 661733,
+      label: '婊″窞涔�'
+    }]
+  }, {
+    value: 6618,
+    label: '鍙颁笢鍘�',
+    children: [{
+      value: 661801,
+      label: '鍙颁笢甯�'
+    }, {
+      value: 661802,
+      label: '缁垮矝涔�'
+    }, {
+      value: 661803,
+      label: '鍏板笨涔�'
+    }, {
+      value: 661804,
+      label: '寤跺钩涔�'
+    }, {
+      value: 661805,
+      label: '鍗戝崡涔�'
+    }, {
+      value: 661806,
+      label: '楣块噹涔�'
+    }, {
+      value: 661807,
+      label: '鍏冲北闀�'
+    }, {
+      value: 661808,
+      label: '娴风涔�'
+    }, {
+      value: 661809,
+      label: '姹犱笂涔�'
+    }, {
+      value: 661810,
+      label: '涓滄渤涔�'
+    }, {
+      value: 661811,
+      label: '鎴愬姛闀�'
+    }, {
+      value: 661812,
+      label: '闀挎花涔�'
+    }, {
+      value: 661813,
+      label: '閲戝嘲涔�'
+    }, {
+      value: 661814,
+      label: '澶ф涔�'
+    }, {
+      value: 661815,
+      label: '杈句粊涔�'
+    }, {
+      value: 661816,
+      label: '澶夯閲屼埂'
+    }]
+  }, {
+    value: 6619,
+    label: '鑺辫幉鍘�',
+    children: [{
+      value: 661901,
+      label: '鑺辫幉甯�'
+    }, {
+      value: 661902,
+      label: '鏂板煄涔�'
+    }, {
+      value: 661903,
+      label: '绉�鏋椾埂'
+    }, {
+      value: 661904,
+      label: '鍚夊畨涔�'
+    }, {
+      value: 661905,
+      label: '瀵夸赴涔�'
+    }, {
+      value: 661906,
+      label: '鍑ゆ灄闀�'
+    }, {
+      value: 661907,
+      label: '鍏夊涔�'
+    }, {
+      value: 661908,
+      label: '涓版花涔�'
+    }, {
+      value: 661909,
+      label: '鐟炵涔�'
+    }, {
+      value: 661910,
+      label: '涓囪崳涔�'
+    }, {
+      value: 661911,
+      label: '鐜夐噷闀�'
+    }, {
+      value: 661912,
+      label: '鍗撴邯涔�'
+    }, {
+      value: 661913,
+      label: '瀵岄噷涔�'
+    }]
+  }, {
+    value: 6620,
+    label: '婢庢箹鍘�',
+    children: [{
+      value: 662001,
+      label: '椹叕甯�'
+    }, {
+      value: 662002,
+      label: '瑗垮笨涔�'
+    }, {
+      value: 662003,
+      label: '鏈涘畨涔�'
+    }, {
+      value: 662004,
+      label: '涓冪編涔�'
+    }, {
+      value: 662005,
+      label: '鐧芥矙涔�'
+    }, {
+      value: 662006,
+      label: '婀栬タ涔�'
+    }]
+  }]
+},
+{
+  value: 67,
+  label: '棣欐腐鐗瑰埆琛屾斂鍖�',
+  children: [{
+    value: 6701,
+    label: '棣欐腐鐗瑰埆琛屾斂鍖�',
+    children: [
+      { value: 670101, label: '涓タ鍖�' },
+      { value: 670102, label: '涓滃尯' },
+      { value: 670103, label: '涔濋緳鍩庡尯' },
+      { value: 670104, label: '瑙傚鍖�' },
+      { value: 670105, label: '鍗楀尯' },
+      { value: 670106, label: '娣辨按鍩楀尯' },
+      { value: 670107, label: '婀句粩鍖�' },
+      { value: 670108, label: '榛勫ぇ浠欏尯' },
+      { value: 670109, label: '娌瑰皷鏃哄尯' },
+      { value: 670110, label: '绂诲矝鍖�' },
+      { value: 670111, label: '钁甸潚鍖�' },
+      { value: 670112, label: '鍖楀尯' },
+      { value: 670113, label: '瑗胯础鍖�' },
+      { value: 670114, label: '娌欑敯鍖�' },
+      { value: 670115, label: '灞棬鍖�' },
+      { value: 670116, label: '澶у煍鍖�' },
+      { value: 670117, label: '鑽冩咕鍖�' },
+      { value: 670118, label: '鍏冩湕鍖�' }
+    ]
+  }]
+},
+{
+  value: 68,
+  label: '婢抽棬鐗瑰埆琛屾斂鍖�',
+  children: [{
+    value: 6801,
+    label: '婢抽棬鐗瑰埆琛屾斂鍖�',
+    children: [
+      { value: 680101, label: '婢抽棬鍗婂矝' },
+      { value: 680102, label: '鍑间粩' },
+      { value: 680103, label: '璺嚰鍩�' },
+      { value: 680104, label: '璺幆' }
+    ]
+  }]
+}
+]
+)
diff --git a/src/utils/area/index.js b/src/utils/area/index.js
new file mode 100644
index 0000000..9f5b4fa
--- /dev/null
+++ b/src/utils/area/index.js
@@ -0,0 +1,108 @@
+/**
+ * 鍦板潃鏁版嵁&鏂规硶
+ */
+
+import area from './data.js' // 寮曞叆鍦板尯鏁扮粍
+// import Req from '../http_install.js' // 寮曞叆璇锋眰鏂规硶
+const axios = require('axios')
+
+/**
+ * 鏍规嵁鐪佸悕绉拌幏鍙栧煄甯傛暟缁�
+ * @param {string} province 鐪佸悕
+ * @return {object[]} 鍩庡競鏁扮粍
+ */
+function getCitiesByLabel(province) {
+  province = area.find(obj => province === obj.label)
+  return province ? province.children : []
+}
+
+/**
+ * 鏍规嵁鐪佸競鍚嶇О鑾峰彇鍖烘暟缁�
+ * @param {string} province 鐪佸悕
+ * @param {string} city 鍩庡競鍚�
+ * @return {object[]} 鍖烘暟缁�
+ */
+function getDistrictsByLabel(province, city) {
+  var cities = getCitiesByLabel(province)
+  city = cities.find(obj => city === obj.label)
+  return city ? city.children : []
+}
+
+/**
+ * 鏍规嵁鐪佸競鍖鸿幏鍙栧尯鏁版嵁
+ * @param {string} province 鐪佸悕
+ * @param {string} city 鍩庡競鍚�
+ * @param {string} district 鍖哄悕
+ * @return {object} 鍖哄璞℃暟鎹�
+ */
+function getDistrictsObjByLabel(province, city, district) {
+  return getDistrictsByLabel(province, city).find(obj => obj.label === district)
+}
+
+/**
+ * 鍒濆鍖� elementUI Cascader 鐨� option
+ * @param {object[]} areaArr 鍦板尯鏁版嵁
+ * @return {object[]} elementUI 绾ц仈閫夋嫨缁勪欢鐢ㄧ殑 option 鍙傛暟
+ */
+function getAreaOpts(areaArr) {
+  if (!areaArr || !areaArr.length) {
+    return
+  }
+  return areaArr.map((obj) => {
+    return {
+      value: obj.label,
+      label: obj.label,
+      code: obj.value,
+      children: getAreaOpts(obj.children)
+    }
+  })
+}
+
+/**
+ * 璇锋眰鑾峰彇琛楅亾json鏁版嵁 - 鏍规嵁浼犲叆鐨勫尯缂栧彿锛岃姹傚搴旂殑json鏂囦欢
+ * Promise
+ * @param {string} districtCode 鍖虹紪鍙�
+ * @param {VueObject} _this vue椤甸潰瀹炰緥
+ * @resolve {'琛楅亾鍙�': '琛楅亾鍚�', ...}
+ */
+function getStreetByDistrictCode(districtCode) {
+  return new Promise((resolve, reject) => {
+    if (!districtCode) {
+      reject('缂哄け districtCode')
+    }
+    // TODO 鏀逛负axios
+    axios({
+      method: 'GET',
+      url: './static/town/' + districtCode + '.json',
+      header: {
+        'content-type': 'application/json' // 榛樿鍊�
+      }
+    }).then((res) => {
+      const result = []
+      const data = res.data
+      // 鏋勫缓琛楅亾鏁扮粍
+      // 娉細姝ゅlabel涓巚alue涓�鑷达紝棰勭暀涓�涓猚ode瀛楁淇濈暀琛楅亾缂栧彿
+      if (data) {
+        for (var i in data) {
+          result.push({
+            label: data[i],
+            value: data[i],
+            code: i
+          })
+        }
+      }
+      resolve(result)
+    }).catch(() => {
+      reject()
+    })
+  })
+}
+
+export default {
+  data: area, getAreaOpts,
+
+  getCitiesByLabel,
+  getDistrictsByLabel,
+  getDistrictsObjByLabel,
+  getStreetByDistrictCode
+}
diff --git a/src/utils/form_validate.js b/src/utils/form_validate.js
new file mode 100644
index 0000000..bf72f9b
--- /dev/null
+++ b/src/utils/form_validate.js
@@ -0,0 +1,21 @@
+/**
+ * 閫氱敤琛ㄥ崟楠岃瘉
+ */
+export default {
+  /**
+   * 楠岃瘉鐢靛瓙閭
+   * @param {string} value 鐢靛瓙閭瀛楃涓�
+   */
+  validateEmail(value) {
+    return /^(\w-*\.*)+@(\w-?)+(\.\w{2,})+$/.test(value)
+  },
+
+  /**
+   * 楠岃瘉鎵嬫満鍙风爜
+   * @param {string} value 鎵嬫満鍙风爜
+   */
+  validateMobilePhoneNumber(value) {
+    return /^1[0-9][0-9]\d{8}$/.test(value)
+  }
+}
+
diff --git a/src/utils/http.js b/src/utils/http.js
index 0ee0f9d..70f0a45 100644
--- a/src/utils/http.js
+++ b/src/utils/http.js
@@ -177,7 +177,10 @@
         // ...urlEncodes,
       }
       // // 灏嗚姹傚弬鏁版斁鍒伴摼鎺ュ悗闈�
-      var paramsUrl = urlEncode(urlEncodes).replace('&', '?')
+      var paramsUrl = urlEncode(urlEncodes)
+      if(!/\?/.test(ajaxUrl)) {
+          paramsUrl = paramsUrl.replace('&', '?')
+      }
       ajaxUrl = ajaxUrl + paramsUrl
 
       // console.log(ajaxUrl)

--
Gitblit v1.8.0