Vue结合element-ui实现省市区三级区域联动选择

说明: 代码自带地区JSON数据,由于篇幅限制,只放了部分地区数据,完整地区数据或者vue组件模式代码github地址
效果:
在这里插入图片描述
在这里插入图片描述
代码:

<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8" />
    <meta name="author" content="LF" />
    <meta name="description" content="" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <meta http-equiv="X-UA-Compatible" content="ie=edge" />
    <link
      rel="stylesheet"
      href="https://unpkg.com/element-ui/lib/theme-chalk/index.css"
    />
    <title>地址选择</title>
    <style>
      #app[v-cloak] {
        display: none;
      }
      .width300 {
        width: 300px;
      }
      .address-info span {
        display: inline-block;
        width: 20%;
        text-align: center;
        margin-bottom: 20px;
        cursor: pointer;
      }
      .address-info span.active {
        font-weight: bold;
        color: #970022;
      }
      .address-info span:hover {
        font-weight: bold;
        color: #970022;
      }
    </style>
  </head>
  <body>
    <div id="app" v-cloak>
      <div class="width300">
        <el-popover
          placement="bottom-start"
          width="450"
          trigger="click"
          v-model="showAddressPop"
        >
          <div class="address-box">
            <el-tabs v-model="activeName" type="card" @tab-click="handleClick">
              <el-tab-pane label="全国" name="all"></el-tab-pane>
              <el-tab-pane
                v-if="selectDataObj.selectProvince"
                :label="selectDataObj.selectProvince"
                name="city"
              ></el-tab-pane>
              <el-tab-pane
                v-if="selectDataObj.selectCity"
                :label="selectDataObj.selectCity"
                name="area"
              ></el-tab-pane>
            </el-tabs>
            <div class="address-info">
              <span
                v-for="item in cityData"
                :key="item.value"
                :id="item.value"
                :class="{ active: item.value == selectDataObj.areaCode }"
                @click="selectAddrItem(item.value, item.text, item.children)"
                >{{ item.text }}</span
              >
            </div>
          </div>
          <el-input
            v-model="addrInfo"
            placeholder="请选择地址"
            slot="reference"
          ></el-input>
        </el-popover>
      </div>
    </div>
    <script src="https://cdn.jsdelivr.net/npm/vue@2.6.12"></script>
    <script src="https://unpkg.com/element-ui/lib/index.js"></script>

    <script>
      const vm = new Vue({
        el: "#app",
        data: {
          activeName: "all",
          addrInfo: "",
          showAddressPop: false,
          selectDataObj: {
            areaCode: "",
            selectProvince: "",
            selectCity: "",
            selectArea: "",
          },
          //地区选择数据源
          pads: [
            {
              value: "110000",
              text: "北京",
              children: [
                {
                  value: "110100",
                  text: "北京",
                  children: [
                    { value: "110105", text: "朝阳区", children: [] },
                    { value: "110108", text: "海淀区", children: [] },
                    { value: "110102", text: "西城区", children: [] },
                    { value: "110101", text: "东城区", children: [] },
                    { value: "110106", text: "丰台区", children: [] },
                    { value: "110114", text: "昌平区", children: [] },
                    { value: "110115", text: "大兴区", children: [] },
                    { value: "110112", text: "通州区", children: [] },
                    { value: "110113", text: "顺义区", children: [] },
                    { value: "110107", text: "石景山区", children: [] },
                    { value: "110111", text: "房山区", children: [] },
                    { value: "110109", text: "门头沟区", children: [] },
                    { value: "110116", text: "怀柔区", children: [] },
                    { value: "110118", text: "密云区", children: [] },
                    { value: "110117", text: "平谷区", children: [] },
                    { value: "110119", text: "延庆区", children: [] },
                    { value: "110199", text: "其它", children: [] },
                  ],
                },
              ],
            },
            {
              value: "310000",
              text: "上海",
              children: [
                {
                  value: "310100",
                  text: "上海",
                  children: [
                    { value: "310115", text: "浦东新区", children: [] },
                    { value: "310112", text: "闵行区", children: [] },
                    { value: "310104", text: "徐汇区", children: [] },
                    { value: "310106", text: "静安区", children: [] },
                    { value: "310105", text: "长宁区", children: [] },
                    { value: "310101", text: "黄浦区", children: [] },
                    { value: "310107", text: "普陀区", children: [] },
                    { value: "310110", text: "杨浦区", children: [] },
                    { value: "310113", text: "宝山区", children: [] },
                    { value: "310117", text: "松江区", children: [] },
                    { value: "310109", text: "虹口区", children: [] },
                    { value: "310114", text: "嘉定区", children: [] },
                    { value: "310118", text: "青浦区", children: [] },
                    { value: "310120", text: "奉贤区", children: [] },
                    { value: "310116", text: "金山区", children: [] },
                    { value: "310151", text: "崇明区", children: [] },
                    { value: "310199", text: "其它", children: [] },
                  ],
                },
              ],
            },
            {
              value: "440000",
              text: "广东",
              children: [
                {
                  value: "440300",
                  text: "深圳市",
                  children: [
                    { value: "440304", text: "福田区", children: [] },
                    { value: "440305", text: "南山区", children: [] },
                    { value: "440306", text: "宝安区", children: [] },
                    { value: "440307", text: "龙岗区", children: [] },
                    { value: "440303", text: "罗湖区", children: [] },
                    { value: "440310", text: "龙华区", children: [] },
                    { value: "440309", text: "坪山区", children: [] },
                    { value: "440311", text: "光明区", children: [] },
                    { value: "440308", text: "盐田区", children: [] },
                    { value: "440301", text: "其它", children: [] },
                  ],
                },
                {
                  value: "440100",
                  text: "广州市",
                  children: [
                    { value: "440106", text: "天河区", children: [] },
                    { value: "440113", text: "番禺区", children: [] },
                    { value: "440104", text: "越秀区", children: [] },
                    { value: "440111", text: "白云区", children: [] },
                    { value: "440105", text: "海珠区", children: [] },
                    { value: "440112", text: "黄埔区", children: [] },
                    { value: "440103", text: "荔湾区", children: [] },
                    { value: "440114", text: "花都区", children: [] },
                    { value: "440115", text: "南沙区", children: [] },
                    { value: "440117", text: "从化区", children: [] },
                    { value: "440118", text: "增城区", children: [] },
                    { value: "440101", text: "其它", children: [] },
                  ],
                },
                {
                  value: "441900",
                  text: "东莞市",
                  children: [{ value: "441901", text: "其它", children: [] }],
                },
                {
                  value: "440600",
                  text: "佛山市",
                  children: [
                    { value: "440605", text: "南海区", children: [] },
                    { value: "440606", text: "顺德区", children: [] },
                    { value: "440604", text: "禅城区", children: [] },
                    { value: "440607", text: "三水区", children: [] },
                    { value: "440608", text: "高明区", children: [] },
                    { value: "440601", text: "其它", children: [] },
                  ],
                },
                {
                  value: "440400",
                  text: "珠海市",
                  children: [
                    { value: "440402", text: "香洲区", children: [] },
                    { value: "440404", text: "金湾区", children: [] },
                    { value: "440403", text: "斗门区", children: [] },
                    { value: "440401", text: "其它", children: [] },
                  ],
                },
                {
                  value: "441300",
                  text: "惠州市",
                  children: [
                    { value: "441302", text: "惠城区", children: [] },
                    { value: "441303", text: "惠阳区", children: [] },
                    { value: "441322", text: "博罗县", children: [] },
                    { value: "441323", text: "惠东县", children: [] },
                    { value: "441324", text: "龙门县", children: [] },
                    { value: "441301", text: "其它", children: [] },
                  ],
                },
                {
                  value: "442000",
                  text: "中山市",
                  children: [{ value: "442001", text: "其它", children: [] }],
                },
                {
                  value: "440700",
                  text: "江门市",
                  children: [
                    { value: "440703", text: "蓬江区", children: [] },
                    { value: "440704", text: "江海区", children: [] },
                    { value: "440705", text: "新会区", children: [] },
                    { value: "440781", text: "台山市", children: [] },
                    { value: "440783", text: "开平市", children: [] },
                    { value: "440784", text: "鹤山市", children: [] },
                    { value: "440785", text: "恩平市", children: [] },
                    { value: "440701", text: "其它", children: [] },
                  ],
                },
                {
                  value: "440500",
                  text: "汕头市",
                  children: [
                    { value: "440507", text: "龙湖区", children: [] },
                    { value: "440511", text: "金平区", children: [] },
                    { value: "440515", text: "澄海区", children: [] },
                    { value: "440513", text: "潮阳区", children: [] },
                    { value: "440514", text: "潮南区", children: [] },
                    { value: "440512", text: "濠江区", children: [] },
                    { value: "440523", text: "南澳县", children: [] },
                    { value: "440501", text: "其它", children: [] },
                  ],
                },
                {
                  value: "440800",
                  text: "湛江市",
                  children: [
                    { value: "440803", text: "霞山区", children: [] },
                    { value: "440802", text: "赤坎区", children: [] },
                    { value: "440811", text: "麻章区", children: [] },
                    { value: "440804", text: "坡头区", children: [] },
                    { value: "440881", text: "廉江市", children: [] },
                    { value: "440882", text: "雷州市", children: [] },
                    { value: "440883", text: "吴川市", children: [] },
                    { value: "440823", text: "遂溪县", children: [] },
                    { value: "440825", text: "徐闻县", children: [] },
                    { value: "440801", text: "其它", children: [] },
                  ],
                },
                {
                  value: "441800",
                  text: "清远市",
                  children: [
                    { value: "441802", text: "清城区", children: [] },
                    { value: "441803", text: "清新区", children: [] },
                    { value: "441881", text: "英德市", children: [] },
                    { value: "441882", text: "连州市", children: [] },
                    { value: "441821", text: "佛冈县", children: [] },
                    { value: "441823", text: "阳山县", children: [] },
                    { value: "441825", text: "连山县", children: [] },
                    { value: "441826", text: "连南县", children: [] },
                    { value: "441801", text: "其它", children: [] },
                  ],
                },
                {
                  value: "441200",
                  text: "肇庆市",
                  children: [
                    { value: "441202", text: "端州区", children: [] },
                    { value: "441203", text: "鼎湖区", children: [] },
                    { value: "441204", text: "高要区", children: [] },
                    { value: "441284", text: "四会市", children: [] },
                    { value: "441223", text: "广宁县", children: [] },
                    { value: "441224", text: "怀集县", children: [] },
                    { value: "441225", text: "封开县", children: [] },
                    { value: "441226", text: "德庆县", children: [] },
                    { value: "441201", text: "其它", children: [] },
                  ],
                },
                {
                  value: "440900",
                  text: "茂名市",
                  children: [
                    { value: "440902", text: "茂南区", children: [] },
                    { value: "440904", text: "电白区", children: [] },
                    { value: "440981", text: "高州市", children: [] },
                    { value: "440982", text: "化州市", children: [] },
                    { value: "440983", text: "信宜市", children: [] },
                    { value: "440901", text: "其它", children: [] },
                  ],
                },
                {
                  value: "445200",
                  text: "揭阳市",
                  children: [
                    { value: "445281", text: "普宁市", children: [] },
                    { value: "445202", text: "榕城区", children: [] },
                    { value: "445203", text: "揭东区", children: [] },
                    { value: "445222", text: "揭西县", children: [] },
                    { value: "445224", text: "惠来县", children: [] },
                    { value: "445201", text: "其它", children: [] },
                  ],
                },
                {
                  value: "440200",
                  text: "韶关市",
                  children: [
                    { value: "440203", text: "武江区", children: [] },
                    { value: "440204", text: "浈江区", children: [] },
                    { value: "440205", text: "曲江区", children: [] },
                    { value: "440282", text: "南雄市", children: [] },
                    { value: "440281", text: "乐昌市", children: [] },
                    { value: "440224", text: "仁化县", children: [] },
                    { value: "440229", text: "翁源县", children: [] },
                    { value: "440233", text: "新丰县", children: [] },
                    { value: "440232", text: "乳源县", children: [] },
                    { value: "440222", text: "始兴县", children: [] },
                    { value: "440201", text: "其它", children: [] },
                  ],
                },
                {
                  value: "441400",
                  text: "梅州市",
                  children: [
                    { value: "441402", text: "梅江区", children: [] },
                    { value: "441403", text: "梅县区", children: [] },
                    { value: "441481", text: "兴宁市", children: [] },
                    { value: "441424", text: "五华县", children: [] },
                    { value: "441423", text: "丰顺县", children: [] },
                    { value: "441422", text: "大埔县", children: [] },
                    { value: "441427", text: "蕉岭县", children: [] },
                    { value: "441426", text: "平远县", children: [] },
                    { value: "441401", text: "其它", children: [] },
                  ],
                },
                {
                  value: "441600",
                  text: "河源市",
                  children: [
                    { value: "441602", text: "源城区", children: [] },
                    { value: "441622", text: "龙川县", children: [] },
                    { value: "441621", text: "紫金县", children: [] },
                    { value: "441625", text: "东源县", children: [] },
                    { value: "441624", text: "和平县", children: [] },
                    { value: "441623", text: "连平县", children: [] },
                    { value: "441601", text: "其它", children: [] },
                  ],
                },
                {
                  value: "441500",
                  text: "汕尾市",
                  children: [
                    { value: "441521", text: "海丰县", children: [] },
                    { value: "441502", text: "城区", children: [] },
                    { value: "441581", text: "陆丰市", children: [] },
                    { value: "441523", text: "陆河县", children: [] },
                    { value: "441501", text: "其它", children: [] },
                  ],
                },
                {
                  value: "441700",
                  text: "阳江市",
                  children: [
                    { value: "441702", text: "江城区", children: [] },
                    { value: "441704", text: "阳东区", children: [] },
                    { value: "441781", text: "阳春市", children: [] },
                    { value: "441721", text: "阳西县", children: [] },
                    { value: "441701", text: "其它", children: [] },
                  ],
                },
                {
                  value: "445100",
                  text: "潮州市",
                  children: [
                    { value: "445102", text: "湘桥区", children: [] },
                    { value: "445103", text: "潮安区", children: [] },
                    { value: "445122", text: "饶平县", children: [] },
                    { value: "445101", text: "其它", children: [] },
                  ],
                },
                {
                  value: "445300",
                  text: "云浮市",
                  children: [
                    { value: "445302", text: "云城区", children: [] },
                    { value: "445303", text: "云安区", children: [] },
                    { value: "445381", text: "罗定市", children: [] },
                    { value: "445321", text: "新兴县", children: [] },
                    { value: "445322", text: "郁南县", children: [] },
                    { value: "445301", text: "其它", children: [] },
                  ],
                },
              ],
            },
            {
              value: "320000",
              text: "江苏",
              children: [
                {
                  value: "320100",
                  text: "南京市",
                  children: [
                    { value: "320106", text: "鼓楼区", children: [] },
                    { value: "320115", text: "江宁区", children: [] },
                    { value: "320104", text: "秦淮区", children: [] },
                    { value: "320105", text: "建邺区", children: [] },
                    { value: "320102", text: "玄武区", children: [] },
                    { value: "320113", text: "栖霞区", children: [] },
                    { value: "320111", text: "浦口区", children: [] },
                    { value: "320114", text: "雨花台区", children: [] },
                    { value: "320116", text: "六合区", children: [] },
                    { value: "320117", text: "溧水区", children: [] },
                    { value: "320118", text: "高淳区", children: [] },
                    { value: "320101", text: "其它", children: [] },
                  ],
                },
                {
                  value: "320500",
                  text: "苏州市",
                  children: [
                    { value: "320506", text: "吴中区", children: [] },
                    { value: "320507", text: "相城区", children: [] },
                    { value: "320508", text: "姑苏区", children: [] },
                    { value: "320505", text: "虎丘区", children: [] },
                    { value: "320509", text: "吴江区", children: [] },
                    { value: "320583", text: "昆山市", children: [] },
                    { value: "320581", text: "常熟市", children: [] },
                    { value: "320582", text: "张家港市", children: [] },
                    { value: "320585", text: "太仓市", children: [] },
                    { value: "320501", text: "其它", children: [] },
                  ],
                },
                {
                  value: "320200",
                  text: "无锡市",
                  children: [
                    { value: "320211", text: "滨湖区", children: [] },
                    { value: "320213", text: "梁溪区", children: [] },
                    { value: "320281", text: "江阴市", children: [] },
                    { value: "320214", text: "新吴区", children: [] },
                    { value: "320205", text: "锡山区", children: [] },
                    { value: "320206", text: "惠山区", children: [] },
                    { value: "320282", text: "宜兴市", children: [] },
                    { value: "320201", text: "其它", children: [] },
                  ],
                },
                {
                  value: "320400",
                  text: "常州市",
                  children: [
                    { value: "320412", text: "武进区", children: [] },
                    { value: "320411", text: "新北区", children: [] },
                    { value: "320402", text: "天宁区", children: [] },
                    { value: "320404", text: "钟楼区", children: [] },
                    { value: "320481", text: "溧阳市", children: [] },
                    { value: "320413", text: "金坛区", children: [] },
                    { value: "320401", text: "其它", children: [] },
                  ],
                },
                {
                  value: "320600",
                  text: "南通市",
                  children: [
                    { value: "320602", text: "崇川区", children: [] },
                    { value: "320612", text: "通州区", children: [] },
                    { value: "320684", text: "海门市", children: [] },
                    { value: "320681", text: "启东市", children: [] },
                    { value: "320682", text: "如皋市", children: [] },
                    { value: "320611", text: "港闸区", children: [] },
                    { value: "320623", text: "如东县", children: [] },
                    { value: "320685", text: "海安市", children: [] },
                    { value: "320601", text: "其它", children: [] },
                  ],
                },
                {
                  value: "320300",
                  text: "徐州市",
                  children: [
                    { value: "320311", text: "泉山区", children: [] },
                    { value: "320303", text: "云龙区", children: [] },
                    { value: "320302", text: "鼓楼区", children: [] },
                    { value: "320312", text: "铜山区", children: [] },
                    { value: "320381", text: "新沂市", children: [] },
                    { value: "320324", text: "睢宁县", children: [] },
                    { value: "320382", text: "邳州市", children: [] },
                    { value: "320322", text: "沛县", children: [] },
                    { value: "320305", text: "贾汪区", children: [] },
                    { value: "320321", text: "丰县", children: [] },
                    { value: "320301", text: "其它", children: [] },
                  ],
                },
                {
                  value: "321000",
                  text: "扬州市",
                  children: [
                    { value: "321003", text: "邗江区", children: [] },
                    { value: "321002", text: "广陵区", children: [] },
                    { value: "321012", text: "江都区", children: [] },
                    { value: "321081", text: "仪征市", children: [] },
                    { value: "321084", text: "高邮市", children: [] },
                    { value: "321023", text: "宝应县", children: [] },
                    { value: "321001", text: "其它", children: [] },
                  ],
                },
                {
                  value: "320900",
                  text: "盐城市",
                  children: [
                    { value: "320902", text: "亭湖区", children: [] },
                    { value: "320903", text: "盐都区", children: [] },
                    { value: "320981", text: "东台市", children: [] },
                    { value: "320923", text: "阜宁县", children: [] },
                    { value: "320904", text: "大丰区", children: [] },
                    { value: "320924", text: "射阳县", children: [] },
                    { value: "320925", text: "建湖县", children: [] },
                    { value: "320922", text: "滨海县", children: [] },
                    { value: "320921", text: "响水县", children: [] },
                    { value: "320901", text: "其它", children: [] },
                  ],
                },
                {
                  value: "321100",
                  text: "镇江市",
                  children: [
                    { value: "321102", text: "京口区", children: [] },
                    { value: "321181", text: "丹阳市", children: [] },
                    { value: "321111", text: "润州区", children: [] },
                    { value: "321183", text: "句容市", children: [] },
                    { value: "321112", text: "丹徒区", children: [] },
                    { value: "321182", text: "扬中市", children: [] },
                    { value: "321101", text: "其它", children: [] },
                  ],
                },
                {
                  value: "321200",
                  text: "泰州市",
                  children: [
                    { value: "321202", text: "海陵区", children: [] },
                    { value: "321282", text: "靖江市", children: [] },
                    { value: "321283", text: "泰兴市", children: [] },
                    { value: "321204", text: "姜堰区", children: [] },
                    { value: "321281", text: "兴化市", children: [] },
                    { value: "321203", text: "高港区", children: [] },
                    { value: "321201", text: "其它", children: [] },
                  ],
                },
                {
                  value: "320800",
                  text: "淮安市",
                  children: [
                    { value: "320812", text: "清江浦区", children: [] },
                    { value: "320804", text: "淮阴区", children: [] },
                    { value: "320803", text: "淮安区", children: [] },
                    { value: "320826", text: "涟水县", children: [] },
                    { value: "320830", text: "盱眙县", children: [] },
                    { value: "320831", text: "金湖县", children: [] },
                    { value: "320813", text: "洪泽区", children: [] },
                    { value: "320801", text: "其它", children: [] },
                  ],
                },
                {
                  value: "320700",
                  text: "连云港市",
                  children: [
                    { value: "320706", text: "海州区", children: [] },
                    { value: "320722", text: "东海县", children: [] },
                    { value: "320707", text: "赣榆区", children: [] },
                    { value: "320703", text: "连云区", children: [] },
                    { value: "320723", text: "灌云县", children: [] },
                    { value: "320724", text: "灌南县", children: [] },
                    { value: "320701", text: "其它", children: [] },
                  ],
                },
                {
                  value: "321300",
                  text: "宿迁市",
                  children: [
                    { value: "321302", text: "宿城区", children: [] },
                    { value: "321311", text: "宿豫区", children: [] },
                    { value: "321322", text: "沭阳县", children: [] },
                    { value: "321323", text: "泗阳县", children: [] },
                    { value: "321324", text: "泗洪县", children: [] },
                    { value: "321301", text: "其它", children: [] },
                  ],
                },
              ],
            },
            {
              value: "330000",
              text: "浙江",
              children: [
                {
                  value: "330100",
                  text: "杭州市",
                  children: [
                    { value: "330106", text: "西湖区", children: [] },
                    { value: "330104", text: "江干区", children: [] },
                    { value: "330110", text: "余杭区", children: [] },
                    { value: "330108", text: "滨江区", children: [] },
                    { value: "330109", text: "萧山区", children: [] },
                    { value: "330105", text: "拱墅区", children: [] },
                    { value: "330103", text: "下城区", children: [] },
                    { value: "330102", text: "上城区", children: [] },
                    { value: "330111", text: "富阳区", children: [] },
                    { value: "330112", text: "临安区", children: [] },
                    { value: "330122", text: "桐庐县", children: [] },
                    { value: "330182", text: "建德市", children: [] },
                    { value: "330127", text: "淳安县", children: [] },
                    { value: "330101", text: "其它", children: [] },
                  ],
                },
                {
                  value: "330200",
                  text: "宁波市",
                  children: [
                    { value: "330212", text: "鄞州区", children: [] },
                    { value: "330203", text: "海曙区", children: [] },
                    { value: "330205", text: "江北区", children: [] },
                    { value: "330211", text: "镇海区", children: [] },
                    { value: "330206", text: "北仑区", children: [] },
                    { value: "330213", text: "奉化区", children: [] },
                    { value: "330281", text: "余姚市", children: [] },
                    { value: "330282", text: "慈溪市", children: [] },
                    { value: "330226", text: "宁海县", children: [] },
                    { value: "330225", text: "象山县", children: [] },
                    { value: "330201", text: "其它", children: [] },
                  ],
                },
                {
                  value: "330300",
                  text: "温州市",
                  children: [
                    { value: "330302", text: "鹿城区", children: [] },
                    { value: "330304", text: "瓯海区", children: [] },
                    { value: "330382", text: "乐清市", children: [] },
                    { value: "330381", text: "瑞安市", children: [] },
                    { value: "330303", text: "龙湾区", children: [] },
                    { value: "330324", text: "永嘉县", children: [] },
                    { value: "330327", text: "苍南县", children: [] },
                    { value: "330326", text: "平阳县", children: [] },
                    { value: "330305", text: "洞头区", children: [] },
                    { value: "330328", text: "文成县", children: [] },
                    { value: "330329", text: "泰顺县", children: [] },
                    { value: "330383", text: "龙港市", children: [] },
                    { value: "330301", text: "其它", children: [] },
                  ],
                },
                {
                  value: "330700",
                  text: "金华市",
                  children: [
                    { value: "330782", text: "义乌市", children: [] },
                    { value: "330702", text: "婺城区", children: [] },
                    { value: "330783", text: "东阳市", children: [] },
                    { value: "330784", text: "永康市", children: [] },
                    { value: "330703", text: "金东区", children: [] },
                    { value: "330781", text: "兰溪市", children: [] },
                    { value: "330723", text: "武义县", children: [] },
                    { value: "330726", text: "浦江县", children: [] },
                    { value: "330727", text: "磐安县", children: [] },
                    { value: "330701", text: "其它", children: [] },
                  ],
                },
                {
                  value: "330400",
                  text: "嘉兴市",
                  children: [
                    { value: "330402", text: "南湖区", children: [] },
                    { value: "330483", text: "桐乡市", children: [] },
                    { value: "330411", text: "秀洲区", children: [] },
                    { value: "330481", text: "海宁市", children: [] },
                    { value: "330421", text: "嘉善县", children: [] },
                    { value: "330482", text: "平湖市", children: [] },
                    { value: "330424", text: "海盐县", children: [] },
                    { value: "330401", text: "其它", children: [] },
                  ],
                },
                {
                  value: "330600",
                  text: "绍兴市",
                  children: [
                    { value: "330602", text: "越城区", children: [] },
                    { value: "330603", text: "柯桥区", children: [] },
                    { value: "330681", text: "诸暨市", children: [] },
                    { value: "330604", text: "上虞区", children: [] },
                    { value: "330683", text: "嵊州市", children: [] },
                    { value: "330624", text: "新昌县", children: [] },
                    { value: "330601", text: "其它", children: [] },
                  ],
                },
                {
                  value: "331000",
                  text: "台州市",
                  children: [
                    { value: "331081", text: "温岭市", children: [] },
                    { value: "331002", text: "椒江区", children: [] },
                    { value: "331082", text: "临海市", children: [] },
                    { value: "331004", text: "路桥区", children: [] },
                    { value: "331003", text: "黄岩区", children: [] },
                    { value: "331023", text: "天台县", children: [] },
                    { value: "331024", text: "仙居县", children: [] },
                    { value: "331022", text: "三门县", children: [] },
                    { value: "331083", text: "玉环市", children: [] },
                    { value: "331001", text: "其它", children: [] },
                  ],
                },
                {
                  value: "330500",
                  text: "湖州市",
                  children: [
                    { value: "330502", text: "吴兴区", children: [] },
                    { value: "330521", text: "德清县", children: [] },
                    { value: "330523", text: "安吉县", children: [] },
                    { value: "330522", text: "长兴县", children: [] },
                    { value: "330503", text: "南浔区", children: [] },
                    { value: "330501", text: "其它", children: [] },
                  ],
                },
                {
                  value: "331100",
                  text: "丽水市",
                  children: [
                    { value: "331102", text: "莲都区", children: [] },
                    { value: "331121", text: "青田县", children: [] },
                    { value: "331122", text: "缙云县", children: [] },
                    { value: "331123", text: "遂昌县", children: [] },
                    { value: "331124", text: "松阳县", children: [] },
                    { value: "331181", text: "龙泉市", children: [] },
                    { value: "331125", text: "云和县", children: [] },
                    { value: "331126", text: "庆元县", children: [] },
                    { value: "331127", text: "景宁县", children: [] },
                    { value: "331101", text: "其它", children: [] },
                  ],
                },
                {
                  value: "330800",
                  text: "衢州市",
                  children: [
                    { value: "330802", text: "柯城区", children: [] },
                    { value: "330825", text: "龙游县", children: [] },
                    { value: "330881", text: "江山市", children: [] },
                    { value: "330822", text: "常山县", children: [] },
                    { value: "330824", text: "开化县", children: [] },
                    { value: "330803", text: "衢江区", children: [] },
                    { value: "330801", text: "其它", children: [] },
                  ],
                },
                {
                  value: "330900",
                  text: "舟山市",
                  children: [
                    { value: "330902", text: "定海区", children: [] },
                    { value: "330903", text: "普陀区", children: [] },
                    { value: "330921", text: "岱山县", children: [] },
                    { value: "330922", text: "嵊泗县", children: [] },
                    { value: "330901", text: "其它", children: [] },
                  ],
                },
              ],
            },
            {
              value: "510000",
              text: "四川",
              children: [
                {
                  value: "510100",
                  text: "成都市",
                  children: [
                    { value: "510107", text: "武侯区", children: [] },
                    { value: "510104", text: "锦江区", children: [] },
                    { value: "510105", text: "青羊区", children: [] },
                    { value: "510106", text: "金牛区", children: [] },
                    { value: "510116", text: "双流区", children: [] },
                    { value: "510108", text: "成华区", children: [] },
                    { value: "510112", text: "龙泉驿区", children: [] },
                    { value: "510115", text: "温江区", children: [] },
                    { value: "510114", text: "新都区", children: [] },
                    { value: "510181", text: "都江堰市", children: [] },
                    { value: "510117", text: "郫都区", children: [] },
                    { value: "510184", text: "崇州市", children: [] },
                    { value: "510113", text: "青白江区", children: [] },
                    { value: "510121", text: "金堂县", children: [] },
                    { value: "510182", text: "彭州市", children: [] },
                    { value: "510185", text: "简阳市", children: [] },
                    { value: "510183", text: "邛崃市", children: [] },
                    { value: "510132", text: "新津县", children: [] },
                    { value: "510129", text: "大邑县", children: [] },
                    { value: "510131", text: "蒲江县", children: [] },
                    { value: "510101", text: "其它", children: [] },
                  ],
                },
                {
                  value: "510700",
                  text: "绵阳市",
                  children: [
                    { value: "510703", text: "涪城区", children: [] },
                    { value: "510704", text: "游仙区", children: [] },
                    { value: "510781", text: "江油市", children: [] },
                    { value: "510722", text: "三台县", children: [] },
                    { value: "510726", text: "北川县", children: [] },
                    { value: "510705", text: "安州区", children: [] },
                    { value: "510725", text: "梓潼县", children: [] },
                    { value: "510723", text: "盐亭县", children: [] },
                    { value: "510727", text: "平武县", children: [] },
                    { value: "510701", text: "其它", children: [] },
                  ],
                },
                {
                  value: "511300",
                  text: "南充市",
                  children: [
                    { value: "511302", text: "顺庆区", children: [] },
                    { value: "511381", text: "阆中市", children: [] },
                    { value: "511303", text: "高坪区", children: [] },
                    { value: "511304", text: "嘉陵区", children: [] },
                    { value: "511321", text: "南部县", children: [] },
                    { value: "511324", text: "仪陇县", children: [] },
                    { value: "511322", text: "营山县", children: [] },
                    { value: "511325", text: "西充县", children: [] },
                    { value: "511323", text: "蓬安县", children: [] },
                    { value: "511301", text: "其它", children: [] },
                  ],
                },
                {
                  value: "510500",
                  text: "泸州市",
                  children: [
                    { value: "510502", text: "江阳区", children: [] },
                    { value: "510504", text: "龙马潭区", children: [] },
                    { value: "510522", text: "合江县", children: [] },
                    { value: "510503", text: "纳溪区", children: [] },
                    { value: "510524", text: "叙永县", children: [] },
                    { value: "510521", text: "泸县", children: [] },
                    { value: "510525", text: "古蔺县", children: [] },
                    { value: "510501", text: "其它", children: [] },
                  ],
                },
                {
                  value: "510600",
                  text: "德阳市",
                  children: [
                    { value: "510603", text: "旌阳区", children: [] },
                    { value: "510681", text: "广汉市", children: [] },
                    { value: "510623", text: "中江县", children: [] },
                    { value: "510682", text: "什邡市", children: [] },
                    { value: "510683", text: "绵竹市", children: [] },
                    { value: "510604", text: "罗江区", children: [] },
                    { value: "510601", text: "其它", children: [] },
                  ],
                },
                {
                  value: "511700",
                  text: "达州市",
                  children: [
                    { value: "511702", text: "通川区", children: [] },
                    { value: "511703", text: "达川区", children: [] },
                    { value: "511722", text: "宣汉县", children: [] },
                    { value: "511724", text: "大竹县", children: [] },
                    { value: "511725", text: "渠县", children: [] },
                    { value: "511723", text: "开江县", children: [] },
                    { value: "511781", text: "万源市", children: [] },
                    { value: "511701", text: "其它", children: [] },
                  ],
                },
                {
                  value: "511500",
                  text: "宜宾市",
                  children: [
                    { value: "511502", text: "翠屏区", children: [] },
                    { value: "511523", text: "江安县", children: [] },
                    { value: "511503", text: "南溪区", children: [] },
                    { value: "511524", text: "长宁县", children: [] },
                    { value: "511526", text: "珙县", children: [] },
                    { value: "511525", text: "高县", children: [] },
                    { value: "511528", text: "兴文县", children: [] },
                    { value: "511527", text: "筠连县", children: [] },
                    { value: "511529", text: "屏山县", children: [] },
                    { value: "511504", text: "叙州区", children: [] },
                    { value: "511501", text: "其它", children: [] },
                  ],
                },
                {
                  value: "511100",
                  text: "乐山市",
                  children: [
                    { value: "511102", text: "市中区", children: [] },
                    { value: "511181", text: "峨眉山市", children: [] },
                    { value: "511126", text: "夹江县", children: [] },
                    { value: "511123", text: "犍为县", children: [] },
                    { value: "511124", text: "井研县", children: [] },
                    { value: "511112", text: "五通桥区", children: [] },
                    { value: "511111", text: "沙湾区", children: [] },
                    { value: "511133", text: "马边县", children: [] },
                    { value: "511129", text: "沐川县", children: [] },
                    { value: "511132", text: "峨边县", children: [] },
                    { value: "511113", text: "金口河区", children: [] },
                    { value: "511101", text: "其它", children: [] },
                  ],
                },
                {
                  value: "511400",
                  text: "眉山市",
                  children: [
                    { value: "511402", text: "东坡区", children: [] },
                    { value: "511421", text: "仁寿县", children: [] },
                    { value: "511403", text: "彭山区", children: [] },
                    { value: "511423", text: "洪雅县", children: [] },
                    { value: "511424", text: "丹棱县", children: [] },
                    { value: "511425", text: "青神县", children: [] },
                    { value: "511401", text: "其它", children: [] },
                  ],
                },
                {
                  value: "511000",
                  text: "内江市",
                  children: [
                    { value: "511011", text: "东兴区", children: [] },
                    { value: "511002", text: "市中区", children: [] },
                    { value: "511025", text: "资中县", children: [] },
                    { value: "511024", text: "威远县", children: [] },
                    { value: "511083", text: "隆昌市", children: [] },
                    { value: "511001", text: "其它", children: [] },
                  ],
                },
                {
                  value: "510300",
                  text: "自贡市",
                  children: [
                    { value: "510302", text: "自流井区", children: [] },
                    { value: "510322", text: "富顺县", children: [] },
                    { value: "510304", text: "大安区", children: [] },
                    { value: "510321", text: "荣县", children: [] },
                    { value: "510311", text: "沿滩区", children: [] },
                    { value: "510303", text: "贡井区", children: [] },
                    { value: "510301", text: "其它", children: [] },
                  ],
                },
                {
                  value: "510900",
                  text: "遂宁市",
                  children: [
                    { value: "510903", text: "船山区", children: [] },
                    { value: "510904", text: "安居区", children: [] },
                    { value: "510923", text: "大英县", children: [] },
                    { value: "510921", text: "蓬溪县", children: [] },
                    { value: "510981", text: "射洪市", children: [] },
                    { value: "510901", text: "其它", children: [] },
                  ],
                },
                {
                  value: "511600",
                  text: "广安市",
                  children: [
                    { value: "511602", text: "广安区", children: [] },
                    { value: "511621", text: "岳池县", children: [] },
                    { value: "511623", text: "邻水县", children: [] },
                    { value: "511622", text: "武胜县", children: [] },
                    { value: "511681", text: "华蓥市", children: [] },
                    { value: "511603", text: "前锋区", children: [] },
                    { value: "511601", text: "其它", children: [] },
                  ],
                },
                {
                  value: "510800",
                  text: "广元市",
                  children: [
                    { value: "510802", text: "利州区", children: [] },
                    { value: "510824", text: "苍溪县", children: [] },
                    { value: "510821", text: "旺苍县", children: [] },
                    { value: "510823", text: "剑阁县", children: [] },
                    { value: "510822", text: "青川县", children: [] },
                    { value: "510812", text: "朝天区", children: [] },
                    { value: "510811", text: "昭化区", children: [] },
                    { value: "510801", text: "其它", children: [] },
                  ],
                },
                {
                  value: "511900",
                  text: "巴中市",
                  children: [
                    { value: "511902", text: "巴州区", children: [] },
                    { value: "511923", text: "平昌县", children: [] },
                    { value: "511921", text: "通江县", children: [] },
                    { value: "511922", text: "南江县", children: [] },
                    { value: "511903", text: "恩阳区", children: [] },
                    { value: "511901", text: "其它", children: [] },
                  ],
                },
                {
                  value: "512000",
                  text: "资阳市",
                  children: [
                    { value: "512002", text: "雁江区", children: [] },
                    { value: "512021", text: "安岳县", children: [] },
                    { value: "512022", text: "乐至县", children: [] },
                    { value: "512001", text: "其它", children: [] },
                  ],
                },
                {
                  value: "510400",
                  text: "攀枝花市",
                  children: [
                    { value: "510402", text: "东区", children: [] },
                    { value: "510411", text: "仁和区", children: [] },
                    { value: "510421", text: "米易县", children: [] },
                    { value: "510403", text: "西区", children: [] },
                    { value: "510422", text: "盐边县", children: [] },
                    { value: "510401", text: "其它", children: [] },
                  ],
                },
                {
                  value: "513400",
                  text: "凉山州",
                  children: [
                    { value: "513401", text: "西昌市", children: [] },
                    { value: "513425", text: "会理县", children: [] },
                    { value: "513424", text: "德昌县", children: [] },
                    { value: "513433", text: "冕宁县", children: [] },
                    { value: "513434", text: "越西县", children: [] },
                    { value: "513426", text: "会东县", children: [] },
                    { value: "513437", text: "雷波县", children: [] },
                    { value: "513427", text: "宁南县", children: [] },
                    { value: "513435", text: "甘洛县", children: [] },
                    { value: "513423", text: "盐源县", children: [] },
                    { value: "513430", text: "金阳县", children: [] },
                    { value: "513436", text: "美姑县", children: [] },
                    { value: "513432", text: "喜德县", children: [] },
                    { value: "513431", text: "昭觉县", children: [] },
                    { value: "513429", text: "布拖县", children: [] },
                    { value: "513428", text: "普格县", children: [] },
                    { value: "513422", text: "木里县", children: [] },
                  ],
                },
                {
                  value: "511800",
                  text: "雅安市",
                  children: [
                    { value: "511802", text: "雨城区", children: [] },
                    { value: "511803", text: "名山区", children: [] },
                    { value: "511823", text: "汉源县", children: [] },
                    { value: "511824", text: "石棉县", children: [] },
                    { value: "511826", text: "芦山县", children: [] },
                    { value: "511822", text: "荥经县", children: [] },
                    { value: "511825", text: "天全县", children: [] },
                    { value: "511827", text: "宝兴县", children: [] },
                    { value: "511801", text: "其它", children: [] },
                  ],
                },
                {
                  value: "513200",
                  text: "阿坝州",
                  children: [
                    { value: "513221", text: "汶川县", children: [] },
                    { value: "513223", text: "茂县", children: [] },
                    { value: "513201", text: "马尔康市", children: [] },
                    { value: "513222", text: "理县", children: [] },
                    { value: "513225", text: "九寨沟县", children: [] },
                    { value: "513233", text: "红原县", children: [] },
                    { value: "513227", text: "小金县", children: [] },
                    { value: "513226", text: "金川县", children: [] },
                    { value: "513232", text: "若尔盖县", children: [] },
                    { value: "513231", text: "阿坝县", children: [] },
                    { value: "513230", text: "壤塘县", children: [] },
                    { value: "513228", text: "黑水县", children: [] },
                    { value: "513224", text: "松潘县", children: [] },
                  ],
                },
                {
                  value: "513300",
                  text: "甘孜州",
                  children: [
                    { value: "513301", text: "康定市", children: [] },
                    { value: "513333", text: "色达县", children: [] },
                    { value: "513322", text: "泸定县", children: [] },
                    { value: "513323", text: "丹巴县", children: [] },
                    { value: "513326", text: "道孚县", children: [] },
                    { value: "513337", text: "稻城县", children: [] },
                    { value: "513338", text: "得荣县", children: [] },
                    { value: "513336", text: "乡城县", children: [] },
                    { value: "513335", text: "巴塘县", children: [] },
                    { value: "513334", text: "理塘县", children: [] },
                    { value: "513332", text: "石渠县", children: [] },
                    { value: "513331", text: "白玉县", children: [] },
                    { value: "513330", text: "德格县", children: [] },
                    { value: "513329", text: "新龙县", children: [] },
                    { value: "513328", text: "甘孜县", children: [] },
                    { value: "513327", text: "炉霍县", children: [] },
                    { value: "513325", text: "雅江县", children: [] },
                    { value: "513324", text: "九龙县", children: [] },
                  ],
                },
              ],
            },
            {
              value: "370000",
              text: "山东",
              children: [
                {
                  value: "370200",
                  text: "青岛市",
                  children: [
                    { value: "370202", text: "市南区", children: [] },
                    { value: "370203", text: "市北区", children: [] },
                    { value: "370212", text: "崂山区", children: [] },
                    { value: "370211", text: "黄岛区", children: [] },
                    { value: "370214", text: "城阳区", children: [] },
                    { value: "370213", text: "李沧区", children: [] },
                    { value: "370281", text: "胶州市", children: [] },
                    { value: "370283", text: "平度市", children: [] },
                    { value: "370285", text: "莱西市", children: [] },
                    { value: "370215", text: "即墨区", children: [] },
                    { value: "370201", text: "其它", children: [] },
                  ],
                },
                {
                  value: "370100",
                  text: "济南市",
                  children: [
                    { value: "370102", text: "历下区", children: [] },
                    { value: "370103", text: "市中区", children: [] },
                    { value: "370112", text: "历城区", children: [] },
                    { value: "370105", text: "天桥区", children: [] },
                    { value: "370104", text: "槐荫区", children: [] },
                    { value: "370113", text: "长清区", children: [] },
                    { value: "370126", text: "商河县", children: [] },
                    { value: "370124", text: "平阴县", children: [] },
                    { value: "370114", text: "章丘区", children: [] },
                    { value: "370116", text: "莱芜区", children: [] },
                    { value: "370117", text: "钢城区", children: [] },
                    { value: "370115", text: "济阳区", children: [] },
                    { value: "370101", text: "其它", children: [] },
                  ],
                },
                {
                  value: "370600",
                  text: "烟台市",
                  children: [
                    { value: "370602", text: "芝罘区", children: [] },
                    { value: "370613", text: "莱山区", children: [] },
                    { value: "370611", text: "福山区", children: [] },
                    { value: "370681", text: "龙口市", children: [] },
                    { value: "370683", text: "莱州市", children: [] },
                    { value: "370612", text: "牟平区", children: [] },
                    { value: "370682", text: "莱阳市", children: [] },
                    { value: "370684", text: "蓬莱市", children: [] },
                    { value: "370687", text: "海阳市", children: [] },
                    { value: "370685", text: "招远市", children: [] },
                    { value: "370686", text: "栖霞市", children: [] },
                    { value: "370634", text: "长岛县", children: [] },
                    { value: "370601", text: "其它", children: [] },
                  ],
                },
                {
                  value: "370700",
                  text: "潍坊市",
                  children: [
                    { value: "370705", text: "奎文区", children: [] },
                    { value: "370702", text: "潍城区", children: [] },
                    { value: "370783", text: "寿光市", children: [] },
                    { value: "370784", text: "安丘市", children: [] },
                    { value: "370781", text: "青州市", children: [] },
                    { value: "370785", text: "高密市", children: [] },
                    { value: "370782", text: "诸城市", children: [] },
                    { value: "370704", text: "坊子区", children: [] },
                    { value: "370703", text: "寒亭区", children: [] },
                    { value: "370724", text: "临朐县", children: [] },
                    { value: "370725", text: "昌乐县", children: [] },
                    { value: "370786", text: "昌邑市", children: [] },
                    { value: "370701", text: "其它", children: [] },
                  ],
                },
                {
                  value: "371300",
                  text: "临沂市",
                  children: [
                    { value: "371302", text: "兰山区", children: [] },
                    { value: "371312", text: "河东区", children: [] },
                    { value: "371311", text: "罗庄区", children: [] },
                    { value: "371323", text: "沂水县", children: [] },
                    { value: "371321", text: "沂南县", children: [] },
                    { value: "371326", text: "平邑县", children: [] },
                    { value: "371327", text: "莒南县", children: [] },
                    { value: "371322", text: "郯城县", children: [] },
                    { value: "371324", text: "兰陵县", children: [] },
                    { value: "371325", text: "费县", children: [] },
                    { value: "371329", text: "临沭县", children: [] },
                    { value: "371328", text: "蒙阴县", children: [] },
                    { value: "371301", text: "其它", children: [] },
                  ],
                },
                {
                  value: "371000",
                  text: "威海市",
                  children: [
                    { value: "371002", text: "环翠区", children: [] },
                    { value: "371083", text: "乳山市", children: [] },
                    { value: "371003", text: "文登区", children: [] },
                    { value: "371082", text: "荣成市", children: [] },
                    { value: "371001", text: "其它", children: [] },
                  ],
                },
                {
                  value: "370300",
                  text: "淄博市",
                  children: [
                    { value: "370303", text: "张店区", children: [] },
                    { value: "370305", text: "临淄区", children: [] },
                    { value: "370306", text: "周村区", children: [] },
                    { value: "370302", text: "淄川区", children: [] },
                    { value: "370304", text: "博山区", children: [] },
                    { value: "370321", text: "桓台县", children: [] },
                    { value: "370323", text: "沂源县", children: [] },
                    { value: "370322", text: "高青县", children: [] },
                    { value: "370301", text: "其它", children: [] },
                  ],
                },
                {
                  value: "370800",
                  text: "济宁市",
                  children: [
                    { value: "370811", text: "任城区", children: [] },
                    { value: "370881", text: "曲阜市", children: [] },
                    { value: "370883", text: "邹城市", children: [] },
                    { value: "370812", text: "兖州区", children: [] },
                    { value: "370829", text: "嘉祥县", children: [] },
                    { value: "370830", text: "汶上县", children: [] },
                    { value: "370832", text: "梁山县", children: [] },
                    { value: "370831", text: "泗水县", children: [] },
                    { value: "370828", text: "金乡县", children: [] },
                    { value: "370827", text: "鱼台县", children: [] },
                    { value: "370826", text: "微山县", children: [] },
                    { value: "370801", text: "其它", children: [] },
                  ],
                },
                {
                  value: "371700",
                  text: "菏泽市",
                  children: [
                    { value: "371702", text: "牡丹区", children: [] },
                    { value: "371721", text: "曹县", children: [] },
                    { value: "371722", text: "单县", children: [] },
                    { value: "371724", text: "巨野县", children: [] },
                    { value: "371725", text: "郓城县", children: [] },
                    { value: "371703", text: "定陶区", children: [] },
                    { value: "371726", text: "鄄城县", children: [] },
                    { value: "371723", text: "成武县", children: [] },
                    { value: "371728", text: "东明县", children: [] },
                    { value: "371701", text: "其它", children: [] },
                  ],
                },
                {
                  value: "371400",
                  text: "德州市",
                  children: [
                    { value: "371402", text: "德城区", children: [] },
                    { value: "371481", text: "乐陵市", children: [] },
                    { value: "371424", text: "临邑县", children: [] },
                    { value: "371425", text: "齐河县", children: [] },
                    { value: "371403", text: "陵城区", children: [] },
                    { value: "371422", text: "宁津县", children: [] },
                    { value: "371426", text: "平原县", children: [] },
                    { value: "371482", text: "禹城市", children: [] },
                    { value: "371427", text: "夏津县", children: [] },
                    { value: "371423", text: "庆云县", children: [] },
                    { value: "371428", text: "武城县", children: [] },
                    { value: "371401", text: "其它", children: [] },
                  ],
                },
                {
                  value: "370500",
                  text: "东营市",
                  children: [
                    { value: "370502", text: "东营区", children: [] },
                    { value: "370523", text: "广饶县", children: [] },
                    { value: "370505", text: "垦利区", children: [] },
                    { value: "370503", text: "河口区", children: [] },
                    { value: "370522", text: "利津县", children: [] },
                    { value: "370501", text: "其它", children: [] },
                  ],
                },
                {
                  value: "371500",
                  text: "聊城市",
                  children: [
                    { value: "371502", text: "东昌府区", children: [] },
                    { value: "371524", text: "东阿县", children: [] },
                    { value: "371581", text: "临清市", children: [] },
                    { value: "371521", text: "阳谷县", children: [] },
                    { value: "371525", text: "冠县", children: [] },
                    { value: "371522", text: "莘县", children: [] },
                    { value: "371526", text: "高唐县", children: [] },
                    { value: "371503", text: "茌平区", children: [] },
                    { value: "371501", text: "其它", children: [] },
                  ],
                },
                {
                  value: "370900",
                  text: "泰安市",
                  children: [
                    { value: "370902", text: "泰山区", children: [] },
                    { value: "370911", text: "岱岳区", children: [] },
                    { value: "370983", text: "肥城市", children: [] },
                    { value: "370982", text: "新泰市", children: [] },
                    { value: "370921", text: "宁阳县", children: [] },
                    { value: "370923", text: "东平县", children: [] },
                    { value: "370901", text: "其它", children: [] },
                  ],
                },
                {
                  value: "371100",
                  text: "日照市",
                  children: [
                    { value: "371102", text: "东港区", children: [] },
                    { value: "371122", text: "莒县", children: [] },
                    { value: "371121", text: "五莲县", children: [] },
                    { value: "371103", text: "岚山区", children: [] },
                    { value: "371101", text: "其它", children: [] },
                  ],
                },
                {
                  value: "371600",
                  text: "滨州市",
                  children: [
                    { value: "371602", text: "滨城区", children: [] },
                    { value: "371625", text: "博兴县", children: [] },
                    { value: "371621", text: "惠民县", children: [] },
                    { value: "371623", text: "无棣县", children: [] },
                    { value: "371622", text: "阳信县", children: [] },
                    { value: "371603", text: "沾化区", children: [] },
                    { value: "371681", text: "邹平市", children: [] },
                    { value: "371601", text: "其它", children: [] },
                  ],
                },
                {
                  value: "370400",
                  text: "枣庄市",
                  children: [
                    { value: "370481", text: "滕州市", children: [] },
                    { value: "370402", text: "市中区", children: [] },
                    { value: "370403", text: "薛城区", children: [] },
                    { value: "370404", text: "峄城区", children: [] },
                    { value: "370405", text: "台儿庄区", children: [] },
                    { value: "370406", text: "山亭区", children: [] },
                    { value: "370401", text: "其它", children: [] },
                  ],
                },
                {
                  value: "371200",
                  text: "莱芜市",
                  children: [{ value: "371201", text: "其它", children: [] }],
                },
              ],
            },
            {
              value: "420000",
              text: "湖北",
              children: [
                {
                  value: "420100",
                  text: "武汉市",
                  children: [
                    { value: "420111", text: "洪山区", children: [] },
                    { value: "420106", text: "武昌区", children: [] },
                    { value: "420102", text: "江岸区", children: [] },
                    { value: "420103", text: "江汉区", children: [] },
                    { value: "420105", text: "汉阳区", children: [] },
                    { value: "420115", text: "江夏区", children: [] },
                    { value: "420104", text: "硚口区", children: [] },
                    { value: "420112", text: "东西湖区", children: [] },
                    { value: "420116", text: "黄陂区", children: [] },
                    { value: "420114", text: "蔡甸区", children: [] },
                    { value: "420107", text: "青山区", children: [] },
                    { value: "420117", text: "新洲区", children: [] },
                    { value: "420113", text: "汉南区", children: [] },
                    { value: "420101", text: "其它", children: [] },
                  ],
                },
                {
                  value: "420500",
                  text: "宜昌市",
                  children: [
                    { value: "420502", text: "西陵区", children: [] },
                    { value: "420503", text: "伍家岗区", children: [] },
                    { value: "420506", text: "夷陵区", children: [] },
                    { value: "420581", text: "宜都市", children: [] },
                    { value: "420582", text: "当阳市", children: [] },
                    { value: "420583", text: "枝江市", children: [] },
                    { value: "420528", text: "长阳县", children: [] },
                    { value: "420527", text: "秭归县", children: [] },
                    { value: "420525", text: "远安县", children: [] },
                    { value: "420505", text: "猇亭区", children: [] },
                    { value: "420504", text: "点军区", children: [] },
                    { value: "420529", text: "五峰县", children: [] },
                    { value: "420526", text: "兴山县", children: [] },
                    { value: "420501", text: "其它", children: [] },
                  ],
                },
                {
                  value: "420600",
                  text: "襄阳市",
                  children: [
                    { value: "420606", text: "樊城区", children: [] },
                    { value: "420602", text: "襄城区", children: [] },
                    { value: "420607", text: "襄州区", children: [] },
                    { value: "420683", text: "枣阳市", children: [] },
                    { value: "420625", text: "谷城县", children: [] },
                    { value: "420624", text: "南漳县", children: [] },
                    { value: "420684", text: "宜城市", children: [] },
                    { value: "420682", text: "老河口市", children: [] },
                    { value: "420626", text: "保康县", children: [] },
                    { value: "420601", text: "其它", children: [] },
                  ],
                },
                {
                  value: "421000",
                  text: "荆州市",
                  children: [
                    { value: "421002", text: "沙市区", children: [] },
                    { value: "421003", text: "荆州区", children: [] },
                    { value: "421022", text: "公安县", children: [] },
                    { value: "421023", text: "监利县", children: [] },
                    { value: "421087", text: "松滋市", children: [] },
                    { value: "421083", text: "洪湖市", children: [] },
                    { value: "421081", text: "石首市", children: [] },
                    { value: "421024", text: "江陵县", children: [] },
                    { value: "421001", text: "其它", children: [] },
                  ],
                },
                {
                  value: "421100",
                  text: "黄冈市",
                  children: [
                    { value: "421102", text: "黄州区", children: [] },
                    { value: "421126", text: "蕲春县", children: [] },
                    { value: "421181", text: "麻城市", children: [] },
                    { value: "421125", text: "浠水县", children: [] },
                    { value: "421127", text: "黄梅县", children: [] },
                    { value: "421122", text: "红安县", children: [] },
                    { value: "421182", text: "武穴市", children: [] },
                    { value: "421123", text: "罗田县", children: [] },
                    { value: "421124", text: "英山县", children: [] },
                    { value: "421121", text: "团风县", children: [] },
                    { value: "421101", text: "其它", children: [] },
                  ],
                },
                {
                  value: "420300",
                  text: "十堰市",
                  children: [
                    { value: "420302", text: "茅箭区", children: [] },
                    { value: "420303", text: "张湾区", children: [] },
                    { value: "420381", text: "丹江口市", children: [] },
                    { value: "420323", text: "竹山县", children: [] },
                    { value: "420324", text: "竹溪县", children: [] },
                    { value: "420322", text: "郧西县", children: [] },
                    { value: "420325", text: "房县", children: [] },
                    { value: "420304", text: "郧阳区", children: [] },
                    { value: "420301", text: "其它", children: [] },
                  ],
                },
                {
                  value: "420900",
                  text: "孝感市",
                  children: [
                    { value: "420902", text: "孝南区", children: [] },
                    { value: "420984", text: "汉川市", children: [] },
                    { value: "420981", text: "应城市", children: [] },
                    { value: "420982", text: "安陆市", children: [] },
                    { value: "420922", text: "大悟县", children: [] },
                    { value: "420923", text: "云梦县", children: [] },
                    { value: "420921", text: "孝昌县", children: [] },
                    { value: "420901", text: "其它", children: [] },
                  ],
                },
                {
                  value: "422800",
                  text: "恩施州",
                  children: [
                    { value: "422801", text: "恩施市", children: [] },
                    { value: "422802", text: "利川市", children: [] },
                    { value: "422822", text: "建始县", children: [] },
                    { value: "422826", text: "咸丰县", children: [] },
                    { value: "422823", text: "巴东县", children: [] },
                    { value: "422828", text: "鹤峰县", children: [] },
                    { value: "422827", text: "来凤县", children: [] },
                    { value: "422825", text: "宣恩县", children: [] },
                  ],
                },
                {
                  value: "420200",
                  text: "黄石市",
                  children: [
                    { value: "420202", text: "黄石港区", children: [] },
                    { value: "420281", text: "大冶市", children: [] },
                    { value: "420222", text: "阳新县", children: [] },
                    { value: "420204", text: "下陆区", children: [] },
                    { value: "420203", text: "西塞山区", children: [] },
                    { value: "420205", text: "铁山区", children: [] },
                    { value: "420201", text: "其它", children: [] },
                  ],
                },
                {
                  value: "429000",
                  text: "直辖县",
                  children: [
                    { value: "429004", text: "仙桃市", children: [] },
                    { value: "429006", text: "天门市", children: [] },
                    { value: "429005", text: "潜江市", children: [] },
                    { value: "429021", text: "神农架林区", children: [] },
                  ],
                },
                {
                  value: "421200",
                  text: "咸宁市",
                  children: [
                    { value: "421202", text: "咸安区", children: [] },
                    { value: "421281", text: "赤壁市", children: [] },
                    { value: "421223", text: "崇阳县", children: [] },
                    { value: "421222", text: "通城县", children: [] },
                    { value: "421224", text: "通山县", children: [] },
                    { value: "421221", text: "嘉鱼县", children: [] },
                    { value: "421201", text: "其它", children: [] },
                  ],
                },
                {
                  value: "420800",
                  text: "荆门市",
                  children: [
                    { value: "420804", text: "掇刀区", children: [] },
                    { value: "420802", text: "东宝区", children: [] },
                    { value: "420881", text: "钟祥市", children: [] },
                    { value: "420822", text: "沙洋县", children: [] },
                    { value: "420882", text: "京山市", children: [] },
                    { value: "420801", text: "其它", children: [] },
                  ],
                },
                {
                  value: "421300",
                  text: "随州市",
                  children: [
                    { value: "421303", text: "曾都区", children: [] },
                    { value: "421381", text: "广水市", children: [] },
                    { value: "421321", text: "随县", children: [] },
                    { value: "421301", text: "其它", children: [] },
                  ],
                },
                {
                  value: "420700",
                  text: "鄂州市",
                  children: [
                    { value: "420704", text: "鄂城区", children: [] },
                    { value: "420703", text: "华容区", children: [] },
                    { value: "420702", text: "梁子湖区", children: [] },
                    { value: "420701", text: "其它", children: [] },
                  ],
                },
              ],
            },
            {
              value: "430000",
              text: "湖南",
              children: [
                {
                  value: "430100",
                  text: "长沙市",
                  children: [
                    { value: "430104", text: "岳麓区", children: [] },
                    { value: "430111", text: "雨花区", children: [] },
                    { value: "430103", text: "天心区", children: [] },
                    { value: "430105", text: "开福区", children: [] },
                    { value: "430102", text: "芙蓉区", children: [] },
                    { value: "430121", text: "长沙县", children: [] },
                    { value: "430112", text: "望城区", children: [] },
                    { value: "430181", text: "浏阳市", children: [] },
                    { value: "430182", text: "宁乡市", children: [] },
                    { value: "430101", text: "其它", children: [] },
                  ],
                },
                {
                  value: "430400",
                  text: "衡阳市",
                  children: [
                    { value: "430408", text: "蒸湘区", children: [] },
                    { value: "430405", text: "珠晖区", children: [] },
                    { value: "430481", text: "耒阳市", children: [] },
                    { value: "430406", text: "雁峰区", children: [] },
                    { value: "430407", text: "石鼓区", children: [] },
                    { value: "430426", text: "祁东县", children: [] },
                    { value: "430421", text: "衡阳县", children: [] },
                    { value: "430424", text: "衡东县", children: [] },
                    { value: "430482", text: "常宁市", children: [] },
                    { value: "430422", text: "衡南县", children: [] },
                    { value: "430423", text: "衡山县", children: [] },
                    { value: "430412", text: "南岳区", children: [] },
                    { value: "430401", text: "其它", children: [] },
                  ],
                },
                {
                  value: "430200",
                  text: "株洲市",
                  children: [
                    { value: "430211", text: "天元区", children: [] },
                    { value: "430203", text: "芦淞区", children: [] },
                    { value: "430202", text: "荷塘区", children: [] },
                    { value: "430204", text: "石峰区", children: [] },
                    { value: "430281", text: "醴陵市", children: [] },
                    { value: "430224", text: "茶陵县", children: [] },
                    { value: "430223", text: "攸县", children: [] },
                    { value: "430225", text: "炎陵县", children: [] },
                    { value: "430212", text: "渌口区", children: [] },
                    { value: "430201", text: "其它", children: [] },
                  ],
                },
                {
                  value: "430700",
                  text: "常德市",
                  children: [
                    { value: "430702", text: "武陵区", children: [] },
                    { value: "430723", text: "澧县", children: [] },
                    { value: "430703", text: "鼎城区", children: [] },
                    { value: "430726", text: "石门县", children: [] },
                    { value: "430722", text: "汉寿县", children: [] },
                    { value: "430725", text: "桃源县", children: [] },
                    { value: "430724", text: "临澧县", children: [] },
                    { value: "430721", text: "安乡县", children: [] },
                    { value: "430781", text: "津市市", children: [] },
                    { value: "430701", text: "其它", children: [] },
                  ],
                },
                {
                  value: "430600",
                  text: "岳阳市",
                  children: [
                    { value: "430602", text: "岳阳楼区", children: [] },
                    { value: "430681", text: "汨罗市", children: [] },
                    { value: "430623", text: "华容县", children: [] },
                    { value: "430624", text: "湘阴县", children: [] },
                    { value: "430621", text: "岳阳县", children: [] },
                    { value: "430626", text: "平江县", children: [] },
                    { value: "430682", text: "临湘市", children: [] },
                    { value: "430603", text: "云溪区", children: [] },
                    { value: "430611", text: "君山区", children: [] },
                    { value: "430601", text: "其它", children: [] },
                  ],
                },
                {
                  value: "430500",
                  text: "邵阳市",
                  children: [
                    { value: "430503", text: "大祥区", children: [] },
                    { value: "430502", text: "双清区", children: [] },
                    { value: "430524", text: "隆回县", children: [] },
                    { value: "430581", text: "武冈市", children: [] },
                    { value: "430522", text: "新邵县", children: [] },
                    { value: "430525", text: "洞口县", children: [] },
                    { value: "430528", text: "新宁县", children: [] },
                    { value: "430523", text: "邵阳县", children: [] },
                    { value: "430511", text: "北塔区", children: [] },
                    { value: "430527", text: "绥宁县", children: [] },
                    { value: "430529", text: "城步县", children: [] },
                    { value: "430582", text: "邵东市", children: [] },
                    { value: "430501", text: "其它", children: [] },
                  ],
                },
                {
                  value: "430300",
                  text: "湘潭市",
                  children: [
                    { value: "430304", text: "岳塘区", children: [] },
                    { value: "430302", text: "雨湖区", children: [] },
                    { value: "430321", text: "湘潭县", children: [] },
                    { value: "430381", text: "湘乡市", children: [] },
                    { value: "430382", text: "韶山市", children: [] },
                    { value: "430301", text: "其它", children: [] },
                  ],
                },
                {
                  value: "431000",
                  text: "郴州市",
                  children: [
                    { value: "431002", text: "北湖区", children: [] },
                    { value: "431003", text: "苏仙区", children: [] },
                    { value: "431021", text: "桂阳县", children: [] },
                    { value: "431022", text: "宜章县", children: [] },
                    { value: "431023", text: "永兴县", children: [] },
                    { value: "431081", text: "资兴市", children: [] },
                    { value: "431028", text: "安仁县", children: [] },
                    { value: "431024", text: "嘉禾县", children: [] },
                    { value: "431026", text: "汝城县", children: [] },
                    { value: "431025", text: "临武县", children: [] },
                    { value: "431027", text: "桂东县", children: [] },
                    { value: "431001", text: "其它", children: [] },
                  ],
                },
                {
                  value: "431100",
                  text: "永州市",
                  children: [
                    { value: "431103", text: "冷水滩区", children: [] },
                    { value: "431102", text: "零陵区", children: [] },
                    { value: "431121", text: "祁阳县", children: [] },
                    { value: "431126", text: "宁远县", children: [] },
                    { value: "431122", text: "东安县", children: [] },
                    { value: "431129", text: "江华县", children: [] },
                    { value: "431124", text: "道县", children: [] },
                    { value: "431127", text: "蓝山县", children: [] },
                    { value: "431123", text: "双牌县", children: [] },
                    { value: "431128", text: "新田县", children: [] },
                    { value: "431125", text: "江永县", children: [] },
                    { value: "431101", text: "其它", children: [] },
                  ],
                },
                {
                  value: "430900",
                  text: "益阳市",
                  children: [
                    { value: "430903", text: "赫山区", children: [] },
                    { value: "430981", text: "沅江市", children: [] },
                    { value: "430921", text: "南县", children: [] },
                    { value: "430922", text: "桃江县", children: [] },
                    { value: "430902", text: "资阳区", children: [] },
                    { value: "430923", text: "安化县", children: [] },
                    { value: "430901", text: "其它", children: [] },
                  ],
                },
                {
                  value: "431300",
                  text: "娄底市",
                  children: [
                    { value: "431302", text: "娄星区", children: [] },
                    { value: "431322", text: "新化县", children: [] },
                    { value: "431321", text: "双峰县", children: [] },
                    { value: "431381", text: "冷水江市", children: [] },
                    { value: "431382", text: "涟源市", children: [] },
                    { value: "431301", text: "其它", children: [] },
                  ],
                },
                {
                  value: "431200",
                  text: "怀化市",
                  children: [
                    { value: "431202", text: "鹤城区", children: [] },
                    { value: "431224", text: "溆浦县", children: [] },
                    { value: "431223", text: "辰溪县", children: [] },
                    { value: "431228", text: "芷江县", children: [] },
                    { value: "431222", text: "沅陵县", children: [] },
                    { value: "431227", text: "新晃县", children: [] },
                    { value: "431281", text: "洪江市", children: [] },
                    { value: "431229", text: "靖州县", children: [] },
                    { value: "431226", text: "麻阳县", children: [] },
                    { value: "431225", text: "会同县", children: [] },
                    { value: "431221", text: "中方县", children: [] },
                    { value: "431230", text: "通道县", children: [] },
                    { value: "431201", text: "其它", children: [] },
                  ],
                },
                {
                  value: "430800",
                  text: "张家界市",
                  children: [
                    { value: "430802", text: "永定区", children: [] },
                    { value: "430821", text: "慈利县", children: [] },
                    { value: "430822", text: "桑植县", children: [] },
                    { value: "430811", text: "武陵源区", children: [] },
                    { value: "430801", text: "其它", children: [] },
                  ],
                },
                {
                  value: "433100",
                  text: "湘西州",
                  children: [
                    { value: "433101", text: "吉首市", children: [] },
                    { value: "433130", text: "龙山县", children: [] },
                    { value: "433127", text: "永顺县", children: [] },
                    { value: "433123", text: "凤凰县", children: [] },
                    { value: "433124", text: "花垣县", children: [] },
                    { value: "433125", text: "保靖县", children: [] },
                    { value: "433122", text: "泸溪县", children: [] },
                    { value: "433126", text: "古丈县", children: [] },
                  ],
                },
              ],
            },
            {
              value: "350000",
              text: "福建",
              children: [
                {
                  value: "350200",
                  text: "厦门市",
                  children: [
                    { value: "350203", text: "思明区", children: [] },
                    { value: "350206", text: "湖里区", children: [] },
                    { value: "350211", text: "集美区", children: [] },
                    { value: "350205", text: "海沧区", children: [] },
                    { value: "350212", text: "同安区", children: [] },
                    { value: "350213", text: "翔安区", children: [] },
                    { value: "350201", text: "其它", children: [] },
                  ],
                },
                {
                  value: "350100",
                  text: "福州市",
                  children: [
                    { value: "350102", text: "鼓楼区", children: [] },
                    { value: "350104", text: "仓山区", children: [] },
                    { value: "350111", text: "晋安区", children: [] },
                    { value: "350103", text: "台江区", children: [] },
                    { value: "350121", text: "闽侯县", children: [] },
                    { value: "350181", text: "福清市", children: [] },
                    { value: "350105", text: "马尾区", children: [] },
                    { value: "350122", text: "连江县", children: [] },
                    { value: "350128", text: "平潭县", children: [] },
                    { value: "350123", text: "罗源县", children: [] },
                    { value: "350112", text: "长乐区", children: [] },
                    { value: "350124", text: "闽清县", children: [] },
                    { value: "350125", text: "永泰县", children: [] },
                    { value: "350101", text: "其它", children: [] },
                  ],
                },
                {
                  value: "350500",
                  text: "泉州市",
                  children: [
                    { value: "350582", text: "晋江市", children: [] },
                    { value: "350503", text: "丰泽区", children: [] },
                    { value: "350583", text: "南安市", children: [] },
                    { value: "350581", text: "石狮市", children: [] },
                    { value: "350502", text: "鲤城区", children: [] },
                    { value: "350524", text: "安溪县", children: [] },
                    { value: "350521", text: "惠安县", children: [] },
                    { value: "350504", text: "洛江区", children: [] },
                    { value: "350505", text: "泉港区", children: [] },
                    { value: "350525", text: "永春县", children: [] },
                    { value: "350526", text: "德化县", children: [] },
                    { value: "350527", text: "金门县", children: [] },
                    { value: "350501", text: "其它", children: [] },
                  ],
                },
                {
                  value: "350600",
                  text: "漳州市",
                  children: [
                    { value: "350602", text: "芗城区", children: [] },
                    { value: "350681", text: "龙海市", children: [] },
                    { value: "350603", text: "龙文区", children: [] },
                    { value: "350623", text: "漳浦县", children: [] },
                    { value: "350625", text: "长泰县", children: [] },
                    { value: "350622", text: "云霄县", children: [] },
                    { value: "350624", text: "诏安县", children: [] },
                    { value: "350627", text: "南靖县", children: [] },
                    { value: "350626", text: "东山县", children: [] },
                    { value: "350628", text: "平和县", children: [] },
                    { value: "350629", text: "华安县", children: [] },
                    { value: "350601", text: "其它", children: [] },
                  ],
                },
                {
                  value: "350300",
                  text: "莆田市",
                  children: [
                    { value: "350304", text: "荔城区", children: [] },
                    { value: "350302", text: "城厢区", children: [] },
                    { value: "350322", text: "仙游县", children: [] },
                    { value: "350303", text: "涵江区", children: [] },
                    { value: "350305", text: "秀屿区", children: [] },
                    { value: "350301", text: "其它", children: [] },
                  ],
                },
                {
                  value: "350900",
                  text: "宁德市",
                  children: [
                    { value: "350902", text: "蕉城区", children: [] },
                    { value: "350981", text: "福安市", children: [] },
                    { value: "350921", text: "霞浦县", children: [] },
                    { value: "350982", text: "福鼎市", children: [] },
                    { value: "350922", text: "古田县", children: [] },
                    { value: "350924", text: "寿宁县", children: [] },
                    { value: "350925", text: "周宁县", children: [] },
                    { value: "350923", text: "屏南县", children: [] },
                    { value: "350926", text: "柘荣县", children: [] },
                    { value: "350901", text: "其它", children: [] },
                  ],
                },
                {
                  value: "350800",
                  text: "龙岩市",
                  children: [
                    { value: "350802", text: "新罗区", children: [] },
                    { value: "350821", text: "长汀县", children: [] },
                    { value: "350823", text: "上杭县", children: [] },
                    { value: "350881", text: "漳平市", children: [] },
                    { value: "350824", text: "武平县", children: [] },
                    { value: "350825", text: "连城县", children: [] },
                    { value: "350803", text: "永定区", children: [] },
                    { value: "350801", text: "其它", children: [] },
                  ],
                },
                {
                  value: "350700",
                  text: "南平市",
                  children: [
                    { value: "350702", text: "延平区", children: [] },
                    { value: "350782", text: "武夷山市", children: [] },
                    { value: "350703", text: "建阳区", children: [] },
                    { value: "350783", text: "建瓯市", children: [] },
                    { value: "350722", text: "浦城县", children: [] },
                    { value: "350781", text: "邵武市", children: [] },
                    { value: "350723", text: "光泽县", children: [] },
                    { value: "350721", text: "顺昌县", children: [] },
                    { value: "350724", text: "松溪县", children: [] },
                    { value: "350725", text: "政和县", children: [] },
                    { value: "350701", text: "其它", children: [] },
                  ],
                },
                {
                  value: "350400",
                  text: "三明市",
                  children: [
                    { value: "350402", text: "梅列区", children: [] },
                    { value: "350481", text: "永安市", children: [] },
                    { value: "350403", text: "三元区", children: [] },
                    { value: "350427", text: "沙县", children: [] },
                    { value: "350426", text: "尤溪县", children: [] },
                    { value: "350424", text: "宁化县", children: [] },
                    { value: "350425", text: "大田县", children: [] },
                    { value: "350421", text: "明溪县", children: [] },
                    { value: "350429", text: "泰宁县", children: [] },
                    { value: "350430", text: "建宁县", children: [] },
                    { value: "350428", text: "将乐县", children: [] },
                    { value: "350423", text: "清流县", children: [] },
                    { value: "350401", text: "其它", children: [] },
                  ],
                },
              ],
            },
            {
              value: "610000",
              text: "陕西",
              children: [
                {
                  value: "610100",
                  text: "西安市",
                  children: [
                    { value: "610113", text: "雁塔区", children: [] },
                    { value: "610112", text: "未央区", children: [] },
                    { value: "610103", text: "碑林区", children: [] },
                    { value: "610104", text: "莲湖区", children: [] },
                    { value: "610116", text: "长安区", children: [] },
                    { value: "610102", text: "新城区", children: [] },
                    { value: "610111", text: "灞桥区", children: [] },
                    { value: "610117", text: "高陵区", children: [] },
                    { value: "610115", text: "临潼区", children: [] },
                    { value: "610114", text: "阎良区", children: [] },
                    { value: "610124", text: "周至县", children: [] },
                    { value: "610122", text: "蓝田县", children: [] },
                    { value: "610118", text: "鄠邑区", children: [] },
                    { value: "610101", text: "其它", children: [] },
                  ],
                },
                {
                  value: "610400",
                  text: "咸阳市",
                  children: [
                    { value: "610402", text: "秦都区", children: [] },
                    { value: "610404", text: "渭城区", children: [] },
                    { value: "610403", text: "杨陵区", children: [] },
                    { value: "610481", text: "兴平市", children: [] },
                    { value: "610425", text: "礼泉县", children: [] },
                    { value: "610423", text: "泾阳县", children: [] },
                    { value: "610431", text: "武功县", children: [] },
                    { value: "610422", text: "三原县", children: [] },
                    { value: "610424", text: "乾县", children: [] },
                    { value: "610428", text: "长武县", children: [] },
                    { value: "610429", text: "旬邑县", children: [] },
                    { value: "610426", text: "永寿县", children: [] },
                    { value: "610430", text: "淳化县", children: [] },
                    { value: "610482", text: "彬州市", children: [] },
                    { value: "610401", text: "其它", children: [] },
                  ],
                },
                {
                  value: "610300",
                  text: "宝鸡市",
                  children: [
                    { value: "610302", text: "渭滨区", children: [] },
                    { value: "610303", text: "金台区", children: [] },
                    { value: "610304", text: "陈仓区", children: [] },
                    { value: "610326", text: "眉县", children: [] },
                    { value: "610323", text: "岐山县", children: [] },
                    { value: "610322", text: "凤翔县", children: [] },
                    { value: "610324", text: "扶风县", children: [] },
                    { value: "610327", text: "陇县", children: [] },
                    { value: "610328", text: "千阳县", children: [] },
                    { value: "610331", text: "太白县", children: [] },
                    { value: "610329", text: "麟游县", children: [] },
                    { value: "610330", text: "凤县", children: [] },
                    { value: "610301", text: "其它", children: [] },
                  ],
                },
                {
                  value: "610500",
                  text: "渭南市",
                  children: [
                    { value: "610502", text: "临渭区", children: [] },
                    { value: "610526", text: "蒲城县", children: [] },
                    { value: "610528", text: "富平县", children: [] },
                    { value: "610581", text: "韩城市", children: [] },
                    { value: "610523", text: "大荔县", children: [] },
                    { value: "610524", text: "合阳县", children: [] },
                    { value: "610525", text: "澄城县", children: [] },
                    { value: "610527", text: "白水县", children: [] },
                    { value: "610503", text: "华州区", children: [] },
                    { value: "610582", text: "华阴市", children: [] },
                    { value: "610522", text: "潼关县", children: [] },
                    { value: "610501", text: "其它", children: [] },
                  ],
                },
                {
                  value: "610700",
                  text: "汉中市",
                  children: [
                    { value: "610702", text: "汉台区", children: [] },
                    { value: "610722", text: "城固县", children: [] },
                    { value: "610725", text: "勉县", children: [] },
                    { value: "610723", text: "洋县", children: [] },
                    { value: "610724", text: "西乡县", children: [] },
                    { value: "610726", text: "宁强县", children: [] },
                    { value: "610727", text: "略阳县", children: [] },
                    { value: "610728", text: "镇巴县", children: [] },
                    { value: "610730", text: "佛坪县", children: [] },
                    { value: "610703", text: "南郑区", children: [] },
                    { value: "610729", text: "留坝县", children: [] },
                    { value: "610701", text: "其它", children: [] },
                  ],
                },
                {
                  value: "610800",
                  text: "榆林市",
                  children: [
                    { value: "610802", text: "榆阳区", children: [] },
                    { value: "610824", text: "靖边县", children: [] },
                    { value: "610826", text: "绥德县", children: [] },
                    { value: "610825", text: "定边县", children: [] },
                    { value: "610822", text: "府谷县", children: [] },
                    { value: "610803", text: "横山区", children: [] },
                    { value: "610827", text: "米脂县", children: [] },
                    { value: "610830", text: "清涧县", children: [] },
                    { value: "610831", text: "子洲县", children: [] },
                    { value: "610881", text: "神木市", children: [] },
                    { value: "610828", text: "佳县", children: [] },
                    { value: "610829", text: "吴堡县", children: [] },
                    { value: "610801", text: "其它", children: [] },
                  ],
                },
                {
                  value: "610900",
                  text: "安康市",
                  children: [
                    { value: "610902", text: "汉滨区", children: [] },
                    { value: "610928", text: "旬阳县", children: [] },
                    { value: "610921", text: "汉阴县", children: [] },
                    { value: "610926", text: "平利县", children: [] },
                    { value: "610922", text: "石泉县", children: [] },
                    { value: "610929", text: "白河县", children: [] },
                    { value: "610924", text: "紫阳县", children: [] },
                    { value: "610925", text: "岚皋县", children: [] },
                    { value: "610923", text: "宁陕县", children: [] },
                    { value: "610927", text: "镇坪县", children: [] },
                    { value: "610901", text: "其它", children: [] },
                  ],
                },
                {
                  value: "610600",
                  text: "延安市",
                  children: [
                    { value: "610602", text: "宝塔区", children: [] },
                    { value: "610629", text: "洛川县", children: [] },
                    { value: "610625", text: "志丹县", children: [] },
                    { value: "610622", text: "延川县", children: [] },
                    { value: "610628", text: "富县", children: [] },
                    { value: "610603", text: "安塞区", children: [] },
                    { value: "610630", text: "宜川县", children: [] },
                    { value: "610627", text: "甘泉县", children: [] },
                    { value: "610626", text: "吴起县", children: [] },
                    { value: "610621", text: "延长县", children: [] },
                    { value: "610632", text: "黄陵县", children: [] },
                    { value: "610681", text: "子长市", children: [] },
                    { value: "610631", text: "黄龙县", children: [] },
                    { value: "610601", text: "其它", children: [] },
                  ],
                },
                {
                  value: "611000",
                  text: "商洛市",
                  children: [
                    { value: "611002", text: "商州区", children: [] },
                    { value: "611021", text: "洛南县", children: [] },
                    { value: "611024", text: "山阳县", children: [] },
                    { value: "611023", text: "商南县", children: [] },
                    { value: "611022", text: "丹凤县", children: [] },
                    { value: "611026", text: "柞水县", children: [] },
                    { value: "611025", text: "镇安县", children: [] },
                    { value: "611001", text: "其它", children: [] },
                  ],
                },
                {
                  value: "610200",
                  text: "铜川市",
                  children: [
                    { value: "610204", text: "耀州区", children: [] },
                    { value: "610202", text: "王益区", children: [] },
                    { value: "610203", text: "印台区", children: [] },
                    { value: "610222", text: "宜君县", children: [] },
                    { value: "610201", text: "其它", children: [] },
                  ],
                },
              ],
            },
            {
              value: "410000",
              text: "河南",
              children: [
                {
                  value: "410100",
                  text: "郑州市",
                  children: [
                    { value: "410105", text: "金水区", children: [] },
                    { value: "410102", text: "中原区", children: [] },
                    { value: "410103", text: "二七区", children: [] },
                    { value: "410104", text: "管城区", children: [] },
                    { value: "410184", text: "新郑市", children: [] },
                    { value: "410108", text: "惠济区", children: [] },
                    { value: "410122", text: "中牟县", children: [] },
                    { value: "410182", text: "荥阳市", children: [] },
                    { value: "410181", text: "巩义市", children: [] },
                    { value: "410183", text: "新密市", children: [] },
                    { value: "410185", text: "登封市", children: [] },
                    { value: "410106", text: "上街区", children: [] },
                    { value: "410101", text: "其它", children: [] },
                  ],
                },
                {
                  value: "410300",
                  text: "洛阳市",
                  children: [
                    { value: "410311", text: "洛龙区", children: [] },
                    { value: "410305", text: "涧西区", children: [] },
                    { value: "410303", text: "西工区", children: [] },
                    { value: "410304", text: "瀍河区", children: [] },
                    { value: "410302", text: "老城区", children: [] },
                    { value: "410381", text: "偃师市", children: [] },
                    { value: "410329", text: "伊川县", children: [] },
                    { value: "410327", text: "宜阳县", children: [] },
                    { value: "410323", text: "新安县", children: [] },
                    { value: "410322", text: "孟津县", children: [] },
                    { value: "410324", text: "栾川县", children: [] },
                    { value: "410328", text: "洛宁县", children: [] },
                    { value: "410326", text: "汝阳县", children: [] },
                    { value: "410325", text: "嵩县", children: [] },
                    { value: "410306", text: "吉利区", children: [] },
                    { value: "410301", text: "其它", children: [] },
                  ],
                },
                {
                  value: "411500",
                  text: "信阳市",
                  children: [
                    { value: "411502", text: "浉河区", children: [] },
                    { value: "411503", text: "平桥区", children: [] },
                    { value: "411525", text: "固始县", children: [] },
                    { value: "411526", text: "潢川县", children: [] },
                    { value: "411522", text: "光山县", children: [] },
                    { value: "411524", text: "商城县", children: [] },
                    { value: "411528", text: "息县", children: [] },
                    { value: "411521", text: "罗山县", children: [] },
                    { value: "411527", text: "淮滨县", children: [] },
                    { value: "411523", text: "新县", children: [] },
                    { value: "411501", text: "其它", children: [] },
                  ],
                },
                {
                  value: "411300",
                  text: "南阳市",
                  children: [
                    { value: "411303", text: "卧龙区", children: [] },
                    { value: "411302", text: "宛城区", children: [] },
                    { value: "411381", text: "邓州市", children: [] },
                    { value: "411328", text: "唐河县", children: [] },
                    { value: "411325", text: "内乡县", children: [] },
                    { value: "411322", text: "方城县", children: [] },
                    { value: "411324", text: "镇平县", children: [] },
                    { value: "411327", text: "社旗县", children: [] },
                    { value: "411323", text: "西峡县", children: [] },
                    { value: "411329", text: "新野县", children: [] },
                    { value: "411326", text: "淅川县", children: [] },
                    { value: "411330", text: "桐柏县", children: [] },
                    { value: "411321", text: "南召县", children: [] },
                    { value: "411301", text: "其它", children: [] },
                  ],
                },
                {
                  value: "410700",
                  text: "新乡市",
                  children: [
                    { value: "410702", text: "红旗区", children: [] },
                    { value: "410711", text: "牧野区", children: [] },
                    { value: "410703", text: "卫滨区", children: [] },
                    { value: "410725", text: "原阳县", children: [] },
                    { value: "410781", text: "卫辉市", children: [] },
                    { value: "410782", text: "辉县市", children: [] },
                    { value: "410724", text: "获嘉县", children: [] },
                    { value: "410721", text: "新乡县", children: [] },
                    { value: "410726", text: "延津县", children: [] },
                    { value: "410727", text: "封丘县", children: [] },
                    { value: "410704", text: "凤泉区", children: [] },
                    { value: "410783", text: "长垣市", children: [] },
                    { value: "410701", text: "其它", children: [] },
                  ],
                },
                {
                  value: "411400",
                  text: "商丘市",
                  children: [
                    { value: "411403", text: "睢阳区", children: [] },
                    { value: "411402", text: "梁园区", children: [] },
                    { value: "411481", text: "永城市", children: [] },
                    { value: "411424", text: "柘城县", children: [] },
                    { value: "411421", text: "民权县", children: [] },
                    { value: "411426", text: "夏邑县", children: [] },
                    { value: "411425", text: "虞城县", children: [] },
                    { value: "411422", text: "睢县", children: [] },
                    { value: "411423", text: "宁陵县", children: [] },
                    { value: "411401", text: "其它", children: [] },
                  ],
                },
                {
                  value: "411600",
                  text: "周口市",
                  children: [
                    { value: "411602", text: "川汇区", children: [] },
                    { value: "411625", text: "郸城县", children: [] },
                    { value: "411681", text: "项城市", children: [] },
                    { value: "411624", text: "沈丘县", children: [] },
                    { value: "411628", text: "鹿邑县", children: [] },
                    { value: "411627", text: "太康县", children: [] },
                    { value: "411623", text: "商水县", children: [] },
                    { value: "411622", text: "西华县", children: [] },
                    { value: "411621", text: "扶沟县", children: [] },
                    { value: "411603", text: "淮阳区", children: [] },
                    { value: "411601", text: "其它", children: [] },
                  ],
                },
                {
                  value: "411700",
                  text: "驻马店市",
                  children: [
                    { value: "411702", text: "驿城区", children: [] },
                    { value: "411726", text: "泌阳县", children: [] },
                    { value: "411723", text: "平舆县", children: [] },
                    { value: "411727", text: "汝南县", children: [] },
                    { value: "411729", text: "新蔡县", children: [] },
                    { value: "411722", text: "上蔡县", children: [] },
                    { value: "411725", text: "确山县", children: [] },
                    { value: "411728", text: "遂平县", children: [] },
                    { value: "411721", text: "西平县", children: [] },
                    { value: "411724", text: "正阳县", children: [] },
                    { value: "411701", text: "其它", children: [] },
                  ],
                },
                {
                  value: "410200",
                  text: "开封市",
                  children: [
                    { value: "410202", text: "龙亭区", children: [] },
                    { value: "410225", text: "兰考县", children: [] },
                    { value: "410204", text: "鼓楼区", children: [] },
                    { value: "410203", text: "顺河区", children: [] },
                    { value: "410223", text: "尉氏县", children: [] },
                    { value: "410222", text: "通许县", children: [] },
                    { value: "410212", text: "祥符区", children: [] },
                    { value: "410205", text: "禹王台区", children: [] },
                    { value: "410221", text: "杞县", children: [] },
                    { value: "410201", text: "其它", children: [] },
                  ],
                },
                {
                  value: "410500",
                  text: "安阳市",
                  children: [
                    { value: "410502", text: "文峰区", children: [] },
                    { value: "410581", text: "林州市", children: [] },
                    { value: "410503", text: "北关区", children: [] },
                    { value: "410526", text: "滑县", children: [] },
                    { value: "410506", text: "龙安区", children: [] },
                    { value: "410505", text: "殷都区", children: [] },
                    { value: "410523", text: "汤阴县", children: [] },
                    { value: "410527", text: "内黄县", children: [] },
                    { value: "410522", text: "安阳县", children: [] },
                    { value: "410501", text: "其它", children: [] },
                  ],
                },
                {
                  value: "411000",
                  text: "许昌市",
                  children: [
                    { value: "411002", text: "魏都区", children: [] },
                    { value: "411081", text: "禹州市", children: [] },
                    { value: "411082", text: "长葛市", children: [] },
                    { value: "411025", text: "襄城县", children: [] },
                    { value: "411024", text: "鄢陵县", children: [] },
                    { value: "411003", text: "建安区", children: [] },
                    { value: "411001", text: "其它", children: [] },
                  ],
                },
                {
                  value: "410400",
                  text: "平顶山市",
                  children: [
                    { value: "410402", text: "新华区", children: [] },
                    { value: "410403", text: "卫东区", children: [] },
                    { value: "410411", text: "湛河区", children: [] },
                    { value: "410482", text: "汝州市", children: [] },
                    { value: "410423", text: "鲁山县", children: [] },
                    { value: "410422", text: "叶县", children: [] },
                    { value: "410421", text: "宝丰县", children: [] },
                    { value: "410425", text: "郏县", children: [] },
                    { value: "410481", text: "舞钢市", children: [] },
                    { value: "410404", text: "石龙区", children: [] },
                    { value: "410401", text: "其它", children: [] },
                  ],
                },
                {
                  value: "410800",
                  text: "焦作市",
                  children: [
                    { value: "410811", text: "山阳区", children: [] },
                    { value: "410802", text: "解放区", children: [] },
                    { value: "410823", text: "武陟县", children: [] },
                    { value: "410825", text: "温县", children: [] },
                    { value: "410882", text: "沁阳市", children: [] },
                    { value: "410821", text: "修武县", children: [] },
                    { value: "410883", text: "孟州市", children: [] },
                    { value: "410822", text: "博爱县", children: [] },
                    { value: "410803", text: "中站区", children: [] },
                    { value: "410804", text: "马村区", children: [] },
                    { value: "410801", text: "其它", children: [] },
                  ],
                },
                {
                  value: "410900",
                  text: "濮阳市",
                  children: [
                    { value: "410902", text: "华龙区", children: [] },
                    { value: "410928", text: "濮阳县", children: [] },
                    { value: "410923", text: "南乐县", children: [] },
                    { value: "410927", text: "台前县", children: [] },
                    { value: "410922", text: "清丰县", children: [] },
                    { value: "410926", text: "范县", children: [] },
                    { value: "410901", text: "其它", children: [] },
                  ],
                },
                {
                  value: "411100",
                  text: "漯河市",
                  children: [
                    { value: "411103", text: "郾城区", children: [] },
                    { value: "411102", text: "源汇区", children: [] },
                    { value: "411104", text: "召陵区", children: [] },
                    { value: "411122", text: "临颍县", children: [] },
                    { value: "411121", text: "舞阳县", children: [] },
                    { value: "411101", text: "其它", children: [] },
                  ],
                },
                {
                  value: "411200",
                  text: "三门峡市",
                  children: [
                    { value: "411202", text: "湖滨区", children: [] },
                    { value: "411282", text: "灵宝市", children: [] },
                    { value: "411221", text: "渑池县", children: [] },
                    { value: "411203", text: "陕州区", children: [] },
                    { value: "411281", text: "义马市", children: [] },
                    { value: "411224", text: "卢氏县", children: [] },
                    { value: "411201", text: "其它", children: [] },
                  ],
                },
                {
                  value: "410600",
                  text: "鹤壁市",
                  children: [
                    { value: "410611", text: "淇滨区", children: [] },
                    { value: "410621", text: "浚县", children: [] },
                    { value: "410603", text: "山城区", children: [] },
                    { value: "410622", text: "淇县", children: [] },
                    { value: "410602", text: "鹤山区", children: [] },
                    { value: "410601", text: "其它", children: [] },
                  ],
                },
                {
                  value: "419000",
                  text: "直辖县",
                  children: [{ value: "419001", text: "济源市", children: [] }],
                },
              ],
            },
            {
              value: "130000",
              text: "河北",
              children: [
                {
                  value: "130100",
                  text: "石家庄市",
                  children: [
                    { value: "130104", text: "桥西区", children: [] },
                    { value: "130108", text: "裕华区", children: [] },
                    { value: "130102", text: "长安区", children: [] },
                    { value: "130105", text: "新华区", children: [] },
                    { value: "130110", text: "鹿泉区", children: [] },
                    { value: "130123", text: "正定县", children: [] },
                    { value: "130109", text: "藁城区", children: [] },
                    { value: "130184", text: "新乐市", children: [] },
                    { value: "130111", text: "栾城区", children: [] },
                    { value: "130131", text: "平山县", children: [] },
                    { value: "130125", text: "行唐县", children: [] },
                    { value: "130183", text: "晋州市", children: [] },
                    { value: "130130", text: "无极县", children: [] },
                    { value: "130132", text: "元氏县", children: [] },
                    { value: "130121", text: "井陉县", children: [] },
                    { value: "130133", text: "赵县", children: [] },
                    { value: "130127", text: "高邑县", children: [] },
                    { value: "130107", text: "井陉矿区", children: [] },
                    { value: "130126", text: "灵寿县", children: [] },
                    { value: "130128", text: "深泽县", children: [] },
                    { value: "130129", text: "赞皇县", children: [] },
                    { value: "130181", text: "辛集市", children: [] },
                    { value: "130101", text: "其它", children: [] },
                  ],
                },
                {
                  value: "131000",
                  text: "廊坊市",
                  children: [
                    { value: "131082", text: "三河市", children: [] },
                    { value: "131003", text: "广阳区", children: [] },
                    { value: "131022", text: "固安县", children: [] },
                    { value: "131024", text: "香河县", children: [] },
                    { value: "131002", text: "安次区", children: [] },
                    { value: "131028", text: "大厂县", children: [] },
                    { value: "131081", text: "霸州市", children: [] },
                    { value: "131023", text: "永清县", children: [] },
                    { value: "131026", text: "文安县", children: [] },
                    { value: "131025", text: "大城县", children: [] },
                    { value: "131001", text: "其它", children: [] },
                  ],
                },
                {
                  value: "130600",
                  text: "保定市",
                  children: [
                    { value: "130606", text: "莲池区", children: [] },
                    { value: "130602", text: "竞秀区", children: [] },
                    { value: "130681", text: "涿州市", children: [] },
                    { value: "130684", text: "高碑店市", children: [] },
                    { value: "130623", text: "涞水县", children: [] },
                    { value: "130626", text: "定兴县", children: [] },
                    { value: "130609", text: "徐水区", children: [] },
                    { value: "130633", text: "易县", children: [] },
                    { value: "130629", text: "容城县", children: [] },
                    { value: "130628", text: "高阳县", children: [] },
                    { value: "130638", text: "雄县", children: [] },
                    { value: "130634", text: "曲阳县", children: [] },
                    { value: "130608", text: "清苑区", children: [] },
                    { value: "130632", text: "安新县", children: [] },
                    { value: "130683", text: "安国市", children: [] },
                    { value: "130607", text: "满城区", children: [] },
                    { value: "130635", text: "蠡县", children: [] },
                    { value: "130627", text: "唐县", children: [] },
                    { value: "130630", text: "涞源县", children: [] },
                    { value: "130631", text: "望都县", children: [] },
                    { value: "130636", text: "顺平县", children: [] },
                    { value: "130624", text: "阜平县", children: [] },
                    { value: "130637", text: "博野县", children: [] },
                    { value: "130682", text: "定州市", children: [] },
                    { value: "130601", text: "其它", children: [] },
                  ],
                },
                {
                  value: "130200",
                  text: "唐山市",
                  children: [
                    { value: "130203", text: "路北区", children: [] },
                    { value: "130208", text: "丰润区", children: [] },
                    { value: "130202", text: "路南区", children: [] },
                    { value: "130281", text: "遵化市", children: [] },
                    { value: "130283", text: "迁安市", children: [] },
                    { value: "130207", text: "丰南区", children: [] },
                    { value: "130209", text: "曹妃甸区", children: [] },
                    { value: "130229", text: "玉田县", children: [] },
                    { value: "130224", text: "滦南县", children: [] },
                    { value: "130227", text: "迁西县", children: [] },
                    { value: "130225", text: "乐亭县", children: [] },
                    { value: "130204", text: "古冶区", children: [] },
                    { value: "130205", text: "开平区", children: [] },
                    { value: "130284", text: "滦州市", children: [] },
                    { value: "130201", text: "其它", children: [] },
                  ],
                },
                {
                  value: "130700",
                  text: "张家口市",
                  children: [
                    { value: "130702", text: "桥东区", children: [] },
                    { value: "130703", text: "桥西区", children: [] },
                    { value: "130705", text: "宣化区", children: [] },
                    { value: "130730", text: "怀来县", children: [] },
                    { value: "130722", text: "张北县", children: [] },
                    { value: "130726", text: "蔚县", children: [] },
                    { value: "130731", text: "涿鹿县", children: [] },
                    { value: "130708", text: "万全区", children: [] },
                    { value: "130709", text: "崇礼区", children: [] },
                    { value: "130732", text: "赤城县", children: [] },
                    { value: "130724", text: "沽源县", children: [] },
                    { value: "130728", text: "怀安县", children: [] },
                    { value: "130706", text: "下花园区", children: [] },
                    { value: "130727", text: "阳原县", children: [] },
                    { value: "130723", text: "康保县", children: [] },
                    { value: "130725", text: "尚义县", children: [] },
                    { value: "130701", text: "其它", children: [] },
                  ],
                },
                {
                  value: "130400",
                  text: "邯郸市",
                  children: [
                    { value: "130403", text: "丛台区", children: [] },
                    { value: "130402", text: "邯山区", children: [] },
                    { value: "130404", text: "复兴区", children: [] },
                    { value: "130481", text: "武安市", children: [] },
                    { value: "130406", text: "峰峰矿区", children: [] },
                    { value: "130423", text: "临漳县", children: [] },
                    { value: "130434", text: "魏县", children: [] },
                    { value: "130425", text: "大名县", children: [] },
                    { value: "130426", text: "涉县", children: [] },
                    { value: "130435", text: "曲周县", children: [] },
                    { value: "130427", text: "磁县", children: [] },
                    { value: "130424", text: "成安县", children: [] },
                    { value: "130431", text: "鸡泽县", children: [] },
                    { value: "130432", text: "广平县", children: [] },
                    { value: "130433", text: "馆陶县", children: [] },
                    { value: "130430", text: "邱县", children: [] },
                    { value: "130408", text: "永年区", children: [] },
                    { value: "130407", text: "肥乡区", children: [] },
                    { value: "130401", text: "其它", children: [] },
                  ],
                },
                {
                  value: "130900",
                  text: "沧州市",
                  children: [
                    { value: "130903", text: "运河区", children: [] },
                    { value: "130982", text: "任丘市", children: [] },
                    { value: "130902", text: "新华区", children: [] },
                    { value: "130983", text: "黄骅市", children: [] },
                    { value: "130981", text: "泊头市", children: [] },
                    { value: "130926", text: "肃宁县", children: [] },
                    { value: "130929", text: "献县", children: [] },
                    { value: "130984", text: "河间市", children: [] },
                    { value: "130922", text: "青县", children: [] },
                    { value: "130921", text: "沧县", children: [] },
                    { value: "130923", text: "东光县", children: [] },
                    { value: "130925", text: "盐山县", children: [] },
                    { value: "130928", text: "吴桥县", children: [] },
                    { value: "130924", text: "海兴县", children: [] },
                    { value: "130927", text: "南皮县", children: [] },
                    { value: "130930", text: "孟村县", children: [] },
                    { value: "130901", text: "其它", children: [] },
                  ],
                },
                {
                  value: "130300",
                  text: "秦皇岛市",
                  children: [
                    { value: "130302", text: "海港区", children: [] },
                    { value: "130322", text: "昌黎县", children: [] },
                    { value: "130304", text: "北戴河区", children: [] },
                    { value: "130303", text: "山海关区", children: [] },
                    { value: "130306", text: "抚宁区", children: [] },
                    { value: "130324", text: "卢龙县", children: [] },
                    { value: "130321", text: "青龙县", children: [] },
                    { value: "130301", text: "其它", children: [] },
                  ],
                },
                {
                  value: "130500",
                  text: "邢台市",
                  children: [
                    { value: "130503", text: "桥西区", children: [] },
                    { value: "130502", text: "桥东区", children: [] },
                    { value: "130528", text: "宁晋县", children: [] },
                    { value: "130582", text: "沙河市", children: [] },
                    { value: "130527", text: "南和县", children: [] },
                    { value: "130529", text: "巨鹿县", children: [] },
                    { value: "130523", text: "内丘县", children: [] },
                    { value: "130533", text: "威县", children: [] },
                    { value: "130581", text: "南宫市", children: [] },
                    { value: "130534", text: "清河县", children: [] },
                    { value: "130526", text: "任县", children: [] },
                    { value: "130521", text: "邢台县", children: [] },
                    { value: "130532", text: "平乡县", children: [] },
                    { value: "130525", text: "隆尧县", children: [] },
                    { value: "130535", text: "临西县", children: [] },
                    { value: "130531", text: "广宗县", children: [] },
                    { value: "130530", text: "新河县", children: [] },
                    { value: "130522", text: "临城县", children: [] },
                    { value: "130524", text: "柏乡县", children: [] },
                    { value: "130501", text: "其它", children: [] },
                  ],
                },
                {
                  value: "130800",
                  text: "承德市",
                  children: [
                    { value: "130802", text: "双桥区", children: [] },
                    { value: "130826", text: "丰宁县", children: [] },
                    { value: "130821", text: "承德县", children: [] },
                    { value: "130824", text: "滦平县", children: [] },
                    { value: "130827", text: "宽城县", children: [] },
                    { value: "130828", text: "围场县", children: [] },
                    { value: "130803", text: "双滦区", children: [] },
                    { value: "130822", text: "兴隆县", children: [] },
                    { value: "130825", text: "隆化县", children: [] },
                    { value: "130804", text: "鹰手营子矿区", children: [] },
                    { value: "130881", text: "平泉市", children: [] },
                    { value: "130801", text: "其它", children: [] },
                  ],
                },
                {
                  value: "131100",
                  text: "衡水市",
                  children: [
                    { value: "131102", text: "桃城区", children: [] },
                    { value: "131103", text: "冀州区", children: [] },
                    { value: "131125", text: "安平县", children: [] },
                    { value: "131121", text: "枣强县", children: [] },
                    { value: "131126", text: "故城县", children: [] },
                    { value: "131127", text: "景县", children: [] },
                    { value: "131123", text: "武强县", children: [] },
                    { value: "131182", text: "深州市", children: [] },
                    { value: "131122", text: "武邑县", children: [] },
                    { value: "131128", text: "阜城县", children: [] },
                    { value: "131124", text: "饶阳县", children: [] },
                    { value: "131101", text: "其它", children: [] },
                  ],
                },
              ],
            },
            {
              value: "810000",
              text: "香港",
              children: [
                {
                  value: "810000",
                  text: "香港",
                  children: [{ value: "810000", text: "香港", children: [] }],
                },
              ],
            },
            {
              value: "710000",
              text: "台湾",
              children: [
                {
                  value: "710000",
                  text: "台湾",
                  children: [{ value: "710000", text: "台湾", children: [] }],
                },
              ],
            },
            {
              value: "820000",
              text: "澳门",
              children: [
                {
                  value: "820000",
                  text: "澳门",
                  children: [{ value: "820000", text: "澳门", children: [] }],
                },
              ],
            },
          ],
          cityData: [], //当前选择的数据
          cityDataCopy: [], //之前选择省级、市级数据备件,在用户点击顶部地区tab时,切换对应的选择数据
        },
        created() {
          //  this.initCityData(this.areaCode); //封装成组件的话,可以父组件动态传值初始化地址选择数据
          this.initCityData("");
        },
        methods: {
          //初始化城市数据
          initCityData(areaCode = "") {
            let sData = this.pads;
            // 未请求到数据
            if (sData.length < 1) {
              return false;
            }
            let cityDataCopy = this.cityDataCopy;
            cityDataCopy[0] = sData;

            if (!/^\d{6}$/.test(areaCode)) {
              this.cityData = sData;
            } else {
              let cityDataBox = this.cityData; //当前用于选择的城市数据
              let selectDataObj = {
                areaCode: areaCode,
                selectProvince: "",
                selectCity: "",
                selectArea: "",
              };
              //已选中城市初始化
              let stateCode = areaCode.slice(0, 2);
              let cityCode = areaCode.slice(0, 4);
              for (let i = 0; i < sData.length; i++) {
                if (sData[i].value.slice(0, 2) == stateCode) {
                  //匹配到省级
                  selectDataObj.selectProvince = sData[i].text;
                  this.activeName = "city";
                  let cData = sData[i].children;
                  cityDataCopy[1] = cData;
                  for (let j = 0; j < cData.length; j++) {
                    if (cData[j].value.slice(0, 4) == cityCode) {
                      //匹配到市级
                      selectDataObj.selectCity = cData[j].text;
                      this.activeName = "area";
                      let aData = cData[j].children;
                      cityDataBox = aData;
                      for (let a = 0; a < aData.length; a++) {
                        if (aData[a].value == areaCode) {
                          // 匹配到区级
                          selectDataObj.selectArea = aData[a].text;
                          break;
                        }
                      }
                      break;
                    }
                  }
                  break;
                }
              }
              this.cityData = cityDataBox;
              this.selectDataObj = selectDataObj;
            }
            this.cityDataCopy = cityDataCopy;
          },
          // 是直辖市或者港澳台
          isZhiXiaShiOrGangAoTai(stateCode) {
            const cityArr = ["11", "31", "12", "50", "81", "82", "71"];
            return cityArr.indexOf(stateCode) > -1;
          },
          //选择
          selectAddrItem(areaCode, cityName, children) {
            let selectDataObj = this.selectDataObj;
            let cityData = this.cityData;
            let cityDataCopy = this.cityDataCopy;
            //省级名称
            if (areaCode.slice(2, 6) == "0000") {
              selectDataObj.selectProvince = cityName;
              this.activeName = "city";
            } else if (
              //市级名称
              areaCode.slice(2, 4) != "00" &&
              areaCode.slice(4, 6) == "00"
            ) {
              selectDataObj.selectCity = cityName;
              this.activeName = "area";
            } else {
              //区级名称
              selectDataObj.selectArea = cityName;
            }
            //有下级区域则切换到下一级数据
            if (children.length > 0) {
              let isZhiXiaShiOrGangAoTai = this.isZhiXiaShiOrGangAoTai(
                areaCode.slice(0, 2)
              );
              //改变备份数据
              if (cityDataCopy.length < 2) {
                if (isZhiXiaShiOrGangAoTai) {
                  cityDataCopy.push(children[0].children);
                } else {
                  cityDataCopy.push(children);
                }
              } else {
                cityDataCopy.splice(1, 1, cityData);
              }
              //改变展示数据
              if (isZhiXiaShiOrGangAoTai) {
                cityData = children[0].children;
              } else {
                cityData = children;
              }
            } else {
              //到达地区最后一级
              selectDataObj.areaCode = areaCode;
              // 保存所有城市信息
              this.submit(selectDataObj);
            }
            this.selectDataObj = selectDataObj;
            this.cityData = cityData;
            this.cityDataCopy = cityDataCopy;
          },
          handleClick(tab, event) {
            const tabName = tab.name;
            if (tabName === "all") {
              this.backProvinceSelect();
            }
            if (tabName === "city") {
              this.backCitySelect();
            }
          },
          // 点击省份选择目录
          backProvinceSelect() {
            this.cityDataCopy = [this.pads];
            this.selectDataObj["selectProvince"] = "";
            this.selectDataObj["selectCity"] = "";
            this.selectDataObj["selectArea"] = "";
            this.cityData = this.pads;
          },
          // 点击城市选择目录
          backCitySelect() {
            this.selectDataObj["selectCity"] = "";
            this.selectDataObj["selectArea"] = "";
            this.cityData = this.cityDataCopy[1];
          },
          submit(data) {
            this.addrInfo =
              data.selectProvince + data.selectCity + data.selectArea;
            this.showAddressPop = false;
            console.log("当前选择数据如下===");
            console.log(this.addrInfo);
          },
        },
      });
    </script>
  </body>
</html>

  • 0
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值