From 0620759090646bf58a7e786c55cfe07ce1984e45 Mon Sep 17 00:00:00 2001
From: Administrator <hbal>
Date: 星期五, 31 三月 2023 10:11:23 +0800
Subject: [PATCH] 分单随行人员
---
WebContent/basic/js/vehicleBindMaterials.js | 13
JavaSource/com/mandi/fendan/util/Contants.java | 2
JavaSource/com/mandi/fendan/controller/BusinessVehiclePersonController.java | 99
WebContent/basic/js/carPersons.js | 294 +
WebContent/basic/js/formSplit.js | 43
JavaSource/com/mandi/fendan/service/impl/ErpService.java | 1
WebContent/basic/carPersons.xhtml | 181
WebContent/css/address-picker.css | 1
WebContent/basic/js/city.data-3.js | 11548 +++++++++++++++++++++++++++++++++++++++++++++++++++
JavaSource/com/mandi/fendan/service/impl/Fd_BsheetService.java | 5
WebContent/basic/js/address-picker.js | 546 ++
WebContent/basic/vehicleBindMaterials.xhtml | 9
WebContent/template/nit/tmp_brief.xhtml | 1
WebContent/basic/formSplit.xhtml | 3
WebContent/css/address-picker.js | 546 ++
JavaSource/com/mandi/fendan/mapper/BusinessVehiclePersonMapper.java | 64
JavaSource/com/mandi/fendan/persist/BusinessVehiclePerson.java | 120
17 files changed, 13,468 insertions(+), 8 deletions(-)
diff --git a/JavaSource/com/mandi/fendan/controller/BusinessVehiclePersonController.java b/JavaSource/com/mandi/fendan/controller/BusinessVehiclePersonController.java
new file mode 100644
index 0000000..026c224
--- /dev/null
+++ b/JavaSource/com/mandi/fendan/controller/BusinessVehiclePersonController.java
@@ -0,0 +1,99 @@
+package com.mandi.fendan.controller;
+
+import com.mandi.common.Jacksonmethod;
+import com.mandi.common.SessionMethod;
+import com.mandi.dao.common.ObjectResult;
+import com.mandi.dao.common.PageRequest;
+import com.mandi.dao.common.PageResult;
+import com.mandi.fendan.mapper.BusinessVehiclePersonMapper;
+import com.mandi.fendan.persist.BusinessVehiclePerson;
+import com.sun.org.apache.xpath.internal.operations.Bool;
+import org.apache.commons.lang3.time.DateFormatUtils;
+import org.springframework.stereotype.Controller;
+import org.springframework.stereotype.Service;
+import org.springframework.web.bind.annotation.RequestMapping;
+
+import javax.annotation.Resource;
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+import java.util.Date;
+import java.util.HashMap;
+import java.util.List;
+import java.util.Map;
+
+@Controller
+@RequestMapping("/businessVehiclePerson")
+public class BusinessVehiclePersonController {
+ @Resource
+ BusinessVehiclePersonMapper businessVehiclePersonMapper;
+ @RequestMapping("/listAll.htm")
+ void listAll(int page, int pageSize, HttpServletResponse re){
+ Map map = new HashMap();
+ map.put("pageSize",50);
+ List<BusinessVehiclePerson> list = businessVehiclePersonMapper.selectPage(map);
+ PageResult<BusinessVehiclePerson> prr= new PageResult<>();
+ prr.setList(list);
+ String str= Jacksonmethod.tojson(prr, false);
+ SessionMethod.writeresp(re, str);
+ }
+
+ @RequestMapping("/list.htm")
+ void list(String businessNo, String vehicleId, HttpServletRequest r, HttpServletResponse re){
+ List<BusinessVehiclePerson> list = businessVehiclePersonMapper.selectList(businessNo,vehicleId);
+ PageResult<BusinessVehiclePerson> prr= new PageResult<>();
+ prr.setList(list);
+ String str= Jacksonmethod.tojson(prr, false);
+ SessionMethod.writeresp(re, str);
+ }
+ @RequestMapping("/get.htm")
+ void getById(Long id, HttpServletResponse re){
+ BusinessVehiclePerson businessVehiclePerson = businessVehiclePersonMapper.selectById(id);
+ ObjectResult<BusinessVehiclePerson> prr= new ObjectResult<>();
+ prr.setItem(businessVehiclePerson);
+ String str= Jacksonmethod.tojson(prr, false);
+ SessionMethod.writeresp(re, str);
+ }
+ @RequestMapping("/update.htm")
+ void update(BusinessVehiclePerson businessVehiclePerson,HttpServletResponse re){
+ ObjectResult<Boolean> objectResult = new ObjectResult<>();
+ try {
+ BusinessVehiclePerson old = businessVehiclePersonMapper.selectById(businessVehiclePerson.getId());
+ businessVehiclePerson.setCreateTime(old.getCreateTime());
+ businessVehiclePerson.setUpdateTime(DateFormatUtils.format(new Date(),"yyyy-MM-dd HH:mm:ss"));
+ businessVehiclePersonMapper.update(businessVehiclePerson);
+ objectResult.setCode(0);
+ } catch (Exception e) {
+ objectResult.setCode(1);
+ objectResult.setErrmsg("绯荤粺绻佸繖锛岃绋嶅悗鍐嶈瘯锛�");
+ }
+ String str= Jacksonmethod.tojson(objectResult, false);
+ SessionMethod.writeresp(re, str);
+ }
+ @RequestMapping("/add.htm")
+ void add(BusinessVehiclePerson businessVehiclePerson,HttpServletResponse re){
+ ObjectResult<Boolean> objectResult = new ObjectResult<>();
+ try {
+ businessVehiclePerson.setCreateTime(DateFormatUtils.format(new Date(),"yyyy-MM-dd HH:mm:ss"));
+ businessVehiclePersonMapper.insert(businessVehiclePerson);
+ objectResult.setCode(0);
+ } catch (Exception e) {
+ objectResult.setCode(1);
+ objectResult.setErrmsg("绯荤粺绻佸繖锛岃绋嶅悗鍐嶈瘯锛�");
+ }
+ String str= Jacksonmethod.tojson(objectResult, false);
+ SessionMethod.writeresp(re, str);
+ }
+ @RequestMapping("/del.htm")
+ void del(Long id,HttpServletResponse re){
+ ObjectResult<Boolean> objectResult = new ObjectResult<>();
+ try {
+ businessVehiclePersonMapper.delete(id);
+ objectResult.setCode(0);
+ } catch (Exception e) {
+ objectResult.setCode(1);
+ objectResult.setErrmsg("绯荤粺绻佸繖锛岃绋嶅悗鍐嶈瘯锛�");
+ }
+ String str= Jacksonmethod.tojson(objectResult, false);
+ SessionMethod.writeresp(re, str);
+ }
+}
diff --git a/JavaSource/com/mandi/fendan/mapper/BusinessVehiclePersonMapper.java b/JavaSource/com/mandi/fendan/mapper/BusinessVehiclePersonMapper.java
new file mode 100644
index 0000000..7914f57
--- /dev/null
+++ b/JavaSource/com/mandi/fendan/mapper/BusinessVehiclePersonMapper.java
@@ -0,0 +1,64 @@
+package com.mandi.fendan.mapper;
+
+import com.mandi.fendan.persist.BusinessVehiclePerson;
+import org.apache.ibatis.annotations.*;
+
+import java.util.List;
+import java.util.Map;
+
+public interface BusinessVehiclePersonMapper {
+ @Select("select * from BusinessVehiclePerson where businessNo=#{businessNo} and vehicleId=#{vehicleId}")
+ List<BusinessVehiclePerson> selectList(@Param("businessNo")String businessNo, @Param("vehicleId")String vehicleId);
+
+ @Select({ "<choose>" ,
+ "<when test=\"pagesize > 0 \">" ,
+ "select top ${pagesize} *" ,
+ "</when>" ,
+ "<otherwise>" ,
+ "select *" ,
+ "</otherwise>" ,
+ "</choose> from ( select row_number()" ,
+ "<choose>" ,
+ "<when test=\"sort!=null and sort!='' \">" ,
+ "over (order by ${sort} )" ,
+ "</when>" ,
+ "<otherwise>" ,
+ "over (order by a.id desc )" ,
+ "</otherwise>" ,
+ "</choose>" ,
+ "as rownumber,a.*",
+ " select * from BusinessVehiclePerson ",
+ ") as a where rownumber > #{pagesize}*#{page} order by a.rownumber asc "
+ })
+ List<BusinessVehiclePerson> selectPage(Map<String,Object> map);
+
+ @Select("select * from BusinessVehiclePerson where id=#{id}")
+ BusinessVehiclePerson selectById(long id);
+ @Insert({
+ "insert into BusinessVehiclePerson(vehicleId,businessNo,userName,idCard,phone,province,city,area,street,createTime,updateTime)",
+ "values(#{vehicleId},#{businessNo},#{userName},#{idCard},#{phone},#{province},#{city},#{area},#{street},#{createTime},#{updateTime})"
+ })
+ @Options(useGeneratedKeys = true,keyProperty = "id",keyColumn = "Id")
+ int insert(BusinessVehiclePerson businessVehiclePerson);
+
+ @Update({"<script>",
+ "update BusinessVehiclePerson <set>",
+ "<if test=\"vehicleId!=null and vehicleId!=''\"> vehicleId=#{vehicleId},</if>",
+ "<if test=\"businessNo!=null and businessNo!=''\"> businessNo=#{businessNo},</if>",
+ "<if test=\"userName!=null and userName!=''\"> userName=#{userName},</if>",
+ "<if test=\"idCard!=null and idCard!=''\"> idCard=#{idCard},</if>",
+ "<if test=\"phone!=null and phone!=''\"> phone=#{phone},</if>",
+ "<if test=\"province!=null and province!=''\"> province=#{province},</if>",
+ "<if test=\"city!=null and city!=''\"> city=#{city},</if>",
+ "<if test=\"area!=null and area!=''\"> area=#{area},</if>",
+ "<if test=\"street!=null and street!=''\"> street=#{street},</if>",
+ "<if test=\"createTime!=null and createTime!=''\"> createTime=#{createTime},</if>",
+ "<if test=\"updateTime!=null and updateTime!=''\"> updateTime=#{updateTime},</if>",
+ "</set> where id=#{id}",
+ "</script>"
+ })
+ int update(BusinessVehiclePerson businessVehiclePerson);
+
+ @Delete("delete from BusinessVehiclePerson where id=#{id}")
+ int delete(Long id);
+}
diff --git a/JavaSource/com/mandi/fendan/persist/BusinessVehiclePerson.java b/JavaSource/com/mandi/fendan/persist/BusinessVehiclePerson.java
new file mode 100644
index 0000000..eb59fa9
--- /dev/null
+++ b/JavaSource/com/mandi/fendan/persist/BusinessVehiclePerson.java
@@ -0,0 +1,120 @@
+package com.mandi.fendan.persist;
+
+import org.springframework.data.annotation.Id;
+
+import javax.persistence.Entity;
+import javax.persistence.Table;
+
+@Entity
+@Table(name="BusinessVehiclePerson")
+public class BusinessVehiclePerson {
+ @Id
+ Long id;
+ String vehicleId;
+ String businessNo;
+ String userName;
+ String idCard;
+ String phone;
+ String province;
+ String city;
+ String area;
+ String street;
+ String createTime;
+ String updateTime;
+
+ public String getCreateTime() {
+ return createTime;
+ }
+
+ public void setCreateTime(String createTime) {
+ this.createTime = createTime;
+ }
+
+ public String getUpdateTime() {
+ return updateTime;
+ }
+
+ public void setUpdateTime(String updateTime) {
+ this.updateTime = updateTime;
+ }
+
+ public Long getId() {
+ return id;
+ }
+
+ public void setId(Long id) {
+ this.id = id;
+ }
+
+ public String getVehicleId() {
+ return vehicleId;
+ }
+
+ public void setVehicleId(String vehicleId) {
+ this.vehicleId = vehicleId;
+ }
+
+ public String getBusinessNo() {
+ return businessNo;
+ }
+
+ public void setBusinessNo(String businessNo) {
+ this.businessNo = businessNo;
+ }
+
+ public String getUserName() {
+ return userName;
+ }
+
+ public void setUserName(String userName) {
+ this.userName = userName;
+ }
+
+ public String getIdCard() {
+ return idCard;
+ }
+
+ public void setIdCard(String idCard) {
+ this.idCard = idCard;
+ }
+
+ public String getPhone() {
+ return phone;
+ }
+
+ public void setPhone(String phone) {
+ this.phone = phone;
+ }
+
+ public String getProvince() {
+ return province;
+ }
+
+ public void setProvince(String province) {
+ this.province = province;
+ }
+
+ public String getCity() {
+ return city;
+ }
+
+ public void setCity(String city) {
+ this.city = city;
+ }
+
+ public String getArea() {
+ return area;
+ }
+
+ public void setArea(String area) {
+ this.area = area;
+ }
+
+ public String getStreet() {
+ return street;
+ }
+
+ public void setStreet(String street) {
+ this.street = street;
+ }
+}
diff --git a/JavaSource/com/mandi/fendan/service/impl/ErpService.java b/JavaSource/com/mandi/fendan/service/impl/ErpService.java
index 754846a..dd3c880 100644
--- a/JavaSource/com/mandi/fendan/service/impl/ErpService.java
+++ b/JavaSource/com/mandi/fendan/service/impl/ErpService.java
@@ -89,6 +89,7 @@
@Resource
private SqlSessionFactory sqlSessionFactory;
+ @Resource
private FdVehicleRemarkMapper fdVehicleRemarkMapper;
@Override
diff --git a/JavaSource/com/mandi/fendan/service/impl/Fd_BsheetService.java b/JavaSource/com/mandi/fendan/service/impl/Fd_BsheetService.java
index 0d6610a..a7eb5c0 100644
--- a/JavaSource/com/mandi/fendan/service/impl/Fd_BsheetService.java
+++ b/JavaSource/com/mandi/fendan/service/impl/Fd_BsheetService.java
@@ -450,7 +450,10 @@
}
orr.setCode(0);
- orr.setItem(null);
+ Map map = new HashMap<>();
+ // 杩斿洖涓氬姟鍗曞彿锛岀粰鍓嶇浣跨敤
+ map.put("businessNo",bbsNo);
+ orr.setItem(map);
return orr;
}
diff --git a/JavaSource/com/mandi/fendan/util/Contants.java b/JavaSource/com/mandi/fendan/util/Contants.java
index e74064e..4c4b92d 100644
--- a/JavaSource/com/mandi/fendan/util/Contants.java
+++ b/JavaSource/com/mandi/fendan/util/Contants.java
@@ -39,7 +39,7 @@
//鍒嗗崟绯荤粺鎺ㄩ�佷竴鍗¢�氭祴璇曞湴鍧�
- public static String yktLocalAdd="http://10.1.1.9:8088";//涓�鍗¢�氬缃戞祴璇曞湴鍧�
+ public static String yktLocalAdd= "http://10.1.1.9:8088";//涓�鍗¢�氬缃戞祴璇曞湴鍧�
// public static String yktLocalAdd="http://125.46.81.106:8088";//涓�鍗¢�氬缃戞祴璇曞湴鍧�
//鍒嗗崟鍥炲啓nc绯荤粺娴嬭瘯鍦板潃NCfdhx_url
public static String NCfdhx_url = "http://10.0.13.20:9088/api/Domain/mtcesb/servlet/PubAPIServlet";
diff --git a/WebContent/basic/carPersons.xhtml b/WebContent/basic/carPersons.xhtml
new file mode 100644
index 0000000..696d8cb
--- /dev/null
+++ b/WebContent/basic/carPersons.xhtml
@@ -0,0 +1,181 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml"
+xmlns:c="http://java.sun.com/jsp/jstl/core"
+xmlns:h="http://java.sun.com/jsf/html"
+xmlns:f="http://java.sun.com/jsf/core"
+xmlns:ui="http://java.sun.com/jsf/facelets">
+<ui:composition template="/template/nit/tmp_brief.xhtml">
+ <ui:define name="link">
+ <link href="#{request.contextPath}/css/address-picker.css?v=3" rel="stylesheet" type="text/css"/>
+ </ui:define>
+ <ui:define name="acss">
+ <style>
+ #searchBtn {
+ height: 34px;
+ }
+ p.error {
+ color: #D9534F
+ }
+ input.error {
+ border: 1px solid #D9534F;
+ }
+ #simple-table th,#simple-table td, #vehicle-table th,#vehicle-table td{
+ text-align: center;
+ padding: 1px 8px;
+ }
+ #form .control-label {
+ margin-right: -14px
+ }
+ .t-error{
+ color: red;
+ position: relative;
+ right: 2px;
+ top: 3px;
+ }
+ .pagination {
+ margin: 10px 0;
+ }
+ #simple-table th, #vehicle-table th {
+ padding: 0
+ }
+ .th {
+ position: relative;
+ width: 100%;
+ display: block;
+ background: #F2F2F2;
+ border: 1px solid #DDDDDD;
+ z-index: 1;
+ border-left: none;
+ }
+ i.fa.danger {
+ color: #D15B47
+ }
+ i.fa.success {
+ color: #87B87F
+ }
+ #selectNoBtn {
+ display: none;
+ }
+ .split {
+ width: 12px;
+ height: 517px;
+ position: absolute;
+ display: block;
+ background: #f1f1f1;
+ margin-top: 41px;
+ z-index: 999;
+ }
+ #vehicleMessage {
+ display: none;
+ }
+ </style>
+ </ui:define>
+ <ui:define name="acontent">
+ <input type="hidden" value="#{param.vehicleId}" id="vehicleId" />
+ <input type="hidden" value="#{param.businessNo}" id="businessNo" />
+ <div class="row">
+ <div class="col-xs-12" style="width: 100%;">
+ <div class="col-xs-9" >
+ <div class="page-header">
+ <h1>杞︾墝鍙凤細${param.vehicleId} 涓氬姟鍗曞彿锛�${param.businessNo}
+ </h1>
+ </div>
+ </div>
+ <div class="col-xs-3" >
+ <button class="btn btn-primary" data-bind="click: toAddPersons"> <i class="ace-icon fa fa-plus center bigger-110"></i>娣诲姞闅忚浜哄憳 </button>
+ <button type="button" class="btn btn-primary" id="sxBtn" title="鍒锋柊">
+ <i class="ace-icon fa fa-refresh bigger-110" ></i>
+ </button>
+ </div>
+ <table class="table table-bordered table-hover table-striped">
+ <thead>
+ <tr>
+ <th>濮撳悕</th>
+ <th>韬唤璇佸彿</th>
+ <th>鎵嬫満鍙�</th>
+ <th>鍦板潃</th>
+ <th></th>
+ </tr>
+ </thead>
+ <tbody data-bind="foreach: list">
+ <tr>
+ <td data-bind="text:$data.userName" ></td>
+ <td data-bind="text:$data.idCard"></td>
+ <td data-bind="text:$data.phone"></td>
+ <td data-bind="text:$data.provinceCityArea"></td>
+ <td>
+ <button class="btn btn-sm" data-bind="click:$root.showPerson">缂栬緫</button>
+ <button class="btn btn-sm btn-danger" data-bind="click:$root.delPerson" >鍒犻櫎</button>
+ </td>
+ </tr>
+ </tbody>
+ </table>
+ </div>
+ </div>
+ <div class="modal fade" id="personModal">
+ <div class="modal-dialog">
+ <div class="modal-content">
+ <div class="modal-header">
+ <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
+ <h4 class="modal-title">娣诲姞<span data-bind="text: o().vehicleId"></span>闅忚溅浜哄憳</h4>
+ </div>
+ <div class="modal-body">
+ <form class="form-horizontal" id="form">
+ <div class="form-body">
+ <div class="form-group">
+ <label class="col-md-3 control-label"><span class="t-error">*</span>濮撳悕</label>
+ <div class="col-md-4"> <input type="text" name="userName" class="mui-input-clear" data-bind="value:o().userName" placeholder="璇疯緭鍏ュ鍚�"/>
+ </div>
+ <div class="col-md-5">
+ <p class="form-control-static text-error"></p>
+ </div>
+ </div>
+ <div class="form-group">
+ <label class="col-md-3 control-label"><span class="t-error">*</span>韬唤璇佸彿</label>
+ <div class="col-md-4"><input type="text" name="idCard" data-bind="value:o().idCard" class="mui-input-clear" placeholder="璇疯緭鍏ヨ韩浠借瘉鍙�"/></div>
+ <div class="col-md-5 text-error"></div>
+ </div>
+ <div class="form-group">
+ <label class="col-md-3 control-label"><span class="t-error">*</span>鎵嬫満鍙�</label>
+ <div class="col-md-4"><input type="text" name="dataPhone" data-bind="value:o().phone" class="mui-input-clear" placeholder="璇疯緭鍏ユ墜鏈哄彿鐮�"/></div>
+ <div class="col-md-5">
+ <p class="form-control-static text-error"></p>
+ </div>
+ </div>
+ <div class="form-group">
+ <label class="col-md-3 control-label"><span class="t-error">*</span>鏉ユ簮鍦�</label>
+ <div class="col-md-4"><input type="text" data-bind="click: $root.cityClick" placeholder="鐐瑰嚮閫夋嫨鐪併�佸競銆佸幙(鍖�)" name="city" id="city" readonly="" />
+ <input type="text" class="mui-input-clear" name="street" data-bind="value:o().street" placeholder="濉啓琛楅亾鍙婁綇鍧�"/></div>
+ <div class="col-md-5">
+ <p class="form-control-static text-error"></p>
+ </div>
+
+ <!-- <button type="button" class="btn btn-xs btn-info"><i class="ace-icon fa fa-plus center bigger-110"></i></button>
+ <button type="button" class="btn btn-xs btn-info"><i class="ace-icon fa fa-pencil bigger-110"></i></button>
+ <button type="button" class="btn btn-xs btn-info"><i class="ace-icon fa fa-check bigger-110"></i></button>
+ <button type="button" class="btn btn-xs btn-info"><i class="ace-icon fa fa-reply bigger-110"></i></button>
+ <button type="button" class="btn btn-xs btn-info"><i class="ace-icon fa fa-trash-o bigger-110"></i></button>-->
+ </div>
+ <div class="col-md-3">
+ <p class="form-control-static text-error"></p>
+ </div>
+ </div>
+ </form>
+ </div>
+ <div class="modal-footer">
+ <button type="button" class="btn btn-sm btn-default" data-dismiss="modal">鍙栨秷</button>
+ <button type="button" class="btn btn-sm btn-primary" id="tempVehicleSaveBtn">淇濆瓨</button>
+ </div>
+ </div>
+ </div>
+ </div>
+
+ </ui:define>
+ <ui:define name="myscript">
+ <script src="js/city.data-3.js"></script>
+ <script src="js/address-picker.js?v=11112"></script>
+ <script src="js/carPersons.js?v=12311333"></script>
+ </ui:define>
+</ui:composition>
+</html>
diff --git a/WebContent/basic/formSplit.xhtml b/WebContent/basic/formSplit.xhtml
index 6e759f9..d28fb02 100644
--- a/WebContent/basic/formSplit.xhtml
+++ b/WebContent/basic/formSplit.xhtml
@@ -147,6 +147,7 @@
</div>
<div class="col-xs-3" style="text-align: left;width: 15%;">
<button type="button" class="btn btn-primary btn-sm" id="addTempVehicle" style="font-size: 10px;">娣诲姞涓存椂杞﹁締</button>
+ <!--<button type="button" class="btn btn-primary btn-sm" id="addPerson" style="font-size: 10px;">娣诲姞闅忚溅浜哄憳</button>-->
<!-- <button type="button" class="btn btn-primary btn-sm" id="refreshVehicleBtn" style="font-size: 10px;">
<i class="ace-icon fa fa-refresh bigger-110"></i>
鏇存柊杞﹁締鐘舵��
@@ -389,7 +390,7 @@
</div>
</ui:define>
<ui:define name="myscript">
- <script src="js/formSplit.js?v=#{sessionScope.login_page_vesion}"></script>
+ <script src="js/formSplit.js?v=12"></script>
</ui:define>
</ui:composition>
</html>
diff --git a/WebContent/basic/js/address-picker.js b/WebContent/basic/js/address-picker.js
new file mode 100644
index 0000000..117ba29
--- /dev/null
+++ b/WebContent/basic/js/address-picker.js
@@ -0,0 +1,546 @@
+(function () {
+ Number.prototype.toPercent = function () {
+ return (Math.round(this * 10000) / 100).toFixed(2) + "%"
+ };
+ var a = function (q) {
+ if (!(this instanceof a)) {
+ return new a(q)
+ }
+ var n = this;
+ var h = {};
+ var r = [];
+ var g = {};
+ var o;
+ var e = [];
+ var k = new Date().getTime();
+ var j = {
+ id: "",
+ level: 3,
+ levelDesc: ["鐪佷唤", "鍩庡競", "鍖哄幙"],
+ index: "99999999999999999999",
+ separator: " / ",
+ isInitClick: true,
+ isWithMouse: false,
+ offsetX: 0,
+ offsetY: 0,
+ emptyText: "鏆傛棤鏁版嵁",
+ color: "#56b4f8",
+ fontSize: "14px",
+ isAsync: false,
+ asyncUrl: "",
+ isShowBtn: true,
+ btnConfig: [],
+ data: ""
+ };
+ var t = j;
+ var l;
+ var c = 20;
+ var m = true;
+ n._init = function () {
+ if (!i()) {
+ return
+ }
+ d();
+ var x = '<div id="adp-wraper-' + k + '" class="adp-wraper" style="z-index: ' + t.index + '"><p>';
+ var v = '<div class="ul-div" style="display: block"><ul></ul></div>';
+ x += '<span class="adp-head-active">' + t.levelDesc[0] + "</span><span>" + t.levelDesc[0] + "</span>";
+ for (var w = 1; w < t.level; w++) {
+ x += "<span>" + t.levelDesc[w] + "</span>";
+ v += '<div class="ul-div"><ul><span class="adp-empty-text">' + t.emptyText + "</span></ul></div>"
+ }
+ x += "</p>";
+ var y = b();
+ // $("body").append(x + v + y + '</div><div class="adp-wraper-backshadow" style="z-index: ' + (t.index - 1) + '"></div>');
+ $("body").append(x + v + y + '</div>');
+ if (t.isAsync) {
+ o = f(null);
+ n._initFirstLevelData()
+ } else {
+ if (typeof t.data == "string" && !p(t.data)) {
+ $.ajax({
+ url: t.data, async: false, success: function (z) {
+ o = z;
+ n._getEachLevelData(0, t.level, o);
+ n._initFirstLevelData()
+ }
+ })
+ } else {
+ o = t.data;
+ if (typeof t.data == "string") {
+ o = JSON.parse(o)
+ }
+ n._getEachLevelData(0, t.level, o);
+ n._initFirstLevelData()
+ }
+ }
+ n._bindEvent()
+ };
+ n._getEachLevelData = function (w, B, y) {
+ var A = [];
+ var z = [];
+ if (w >= B) {
+ return
+ }
+ for (var x = 0; x < y.length; x++) {
+ A.push(y[x]);
+ if (w == B - 1) {
+ continue
+ }
+ if (y[x].children == undefined) {
+ continue
+ }
+ for (var v = 0; v < y[x].children.length; v++) {
+ z.push(y[x].children[v])
+ }
+ }
+ if (z.length == 0) {
+ return
+ }
+ h["data_level_" + w] = A;
+ n._getEachLevelData(w + 1, B, z)
+ };
+ n._initFirstLevelData = function () {
+ for (var w = 0; w < t.level; w++) {
+ $("#adp-wraper-" + k).children("div").eq(w).children("ul").empty();
+ $("#adp-wraper-" + k).children("div").eq(w).children("ul").append('<span class="adp-empty-text">' + t.emptyText + "</span>")
+ }
+ if (o.length > 0) {
+ $("#adp-wraper-" + k).children("div").eq(0).children("ul").empty()
+ }
+ for (var w = 0; w < o.length; w++) {
+ var v = '<li data-code="' + o[w].value + '" title="' + o[w].text + '">' + o[w].text + "</li>";
+ $("#adp-wraper-" + k).children("div").eq(0).children("ul").append(v)
+ }
+ var y = $("#adp-wraper-" + k).children("p").children("span").eq(1).text();
+ var x = $("#adp-wraper-" + k).children("p").children("span.adp-head-active");
+ x.css("left", "-1px");
+ x.text(y);
+ $("#adp-wraper-" + k).children("div.ul-div").eq(0).show().siblings("div.ul-div").hide();
+ if (t.isShowBtn) {
+ s(0)
+ }
+ };
+ n._bindEvent = function () {
+ $("#adp-wraper-" + k + " div ul").delegate("li", "click", function () {
+ var z = $(this).parent().parent().index();
+ g.value = $(this).data("code");
+ g.text = $(this).text();
+ g.level = z;
+ r[z - 1] = $(this).data("code");
+ e[z - 1] = $(this).text();
+ r.splice(z, r.length - z);
+ e.splice(z, e.length - z);
+ var G = $("#adp-wraper-" + k).children("div").length;
+ G = G -1
+ // console.log(z,G,z>G)
+ if (z < G) {
+ for (var F = z; F < t.level; F++) {
+ $("#adp-wraper-" + k).children("div.ul-div").eq(F).children("ul").empty().append('<span class="adp-empty-text">' + t.emptyText + "</span>")
+ }
+ $("#adp-wraper-" + k).children("div.ul-div").eq(z).children("ul").empty();
+ var x = t.isAsync ? f(g, z) : o;
+ if (z > 1 && !t.isAsync) {
+ x = h["data_level_" + (z - 1)]
+ }
+ if (x != undefined) {
+ for (var C = 0; C < x.length; C++) {
+ var y = x[C];
+ if (t.isAsync) {
+ var E = '<li data-code="' + y.value + '" title="' + y.text + '">' + y.text + "</li>";
+ $("#adp-wraper-" + k).children("div").eq(z).children("ul").append(E)
+ } else {
+ if (y.text == $(this).text() && y.value == $(this).data("code")) {
+ if (y.children != null && y.children.length > 0) {
+ for (var B = 0; B < y.children.length; B++) {
+ var A = y.children[B];
+ var E = '<li data-code="' + A.value + '" title="' + A.text + '">' + A.text + "</li>";
+ $("#adp-wraper-" + k).children("div.ul-div").eq(z).children("ul").append(E)
+ }
+ } else {
+ $("#adp-wraper-" + k).children("div.ul-div").eq(z).children("ul").append('<span class="adp-empty-text">' + t.emptyText + "</span>")
+ }
+ break
+ }
+ }
+ }
+ if (t.isShowBtn) {
+ s(z)
+ }
+ } else {
+ $("#adp-wraper-" + k).children("div.ul-div").eq(z).children("ul").append('<span class="adp-empty-text">' + t.emptyText + "</span>")
+ }
+ $(this).addClass("adp-active").siblings().removeClass("adp-active");
+ var D = $("#adp-wraper-" + k).children("p").children("span").eq(z + 1).text();
+ var H = $("#adp-wraper-" + k).children("p").children("span.adp-head-active");
+ H.css("left", (0.2 * (z)).toPercent());
+ $(this).parent().parent().next().show().siblings("div.ul-div").hide();
+ setTimeout(function () {
+ H.text(D)
+ }, 200)
+ } else {
+ $(this).addClass("adp-active").siblings().removeClass("adp-active");
+ $("#adp-wraper-" + k).fadeOut();
+ $("div.adp-wraper-backshadow").hide()
+ }
+ });
+ $("#adp-wraper-" + k + " p span").click(function () {
+ if ($(this).hasClass("adp-head-active")) {
+ return
+ }
+ var x = $(this).index() - 1;
+ var z = $(this).text();
+ var y = $("#adp-wraper-" + k).children("p").children("span.adp-head-active");
+ y.css("left", x == 0 ? -1 : (0.2 * x).toPercent());
+ setTimeout(function () {
+ y.text(z)
+ }, 200);
+ $("#adp-wraper-" + k).children("div").eq(x).show().siblings("div.ul-div").hide()
+ });
+ $("div.adp-wraper-backshadow").on("click", function () {
+ $("div.adp-wraper-backshadow").hide();
+ $("#adp-wraper-" + k).fadeOut()
+ });
+ $("#adp-wraper-" + k).click(function(event) {
+ $(document).one("click",
+ function() { //瀵筪ocument缁戝畾涓�涓奖钘廌iv鏂规硶
+ $("#adp-wraper-" + k).hide();
+ });
+ event.stopPropagation(); //闃绘浜嬩欢鍚戜笂鍐掓场
+ });
+
+ if (t.isInitClick) {
+ $("#" + t.id).on("click", function () {
+ var y = u(event);
+ var x = $("#adp-wraper-" + k + " div.ul-div").eq(0);
+ $("#adp-wraper-" + k).css("left", y.x);
+ $("#adp-wraper-" + k).css("top", y.y);
+ $("#adp-wraper-" + k).fadeIn();
+ if ((g.level == undefined || m) && t.isShowBtn) {
+ if (x.children("ul").children("li").height() != 0) {
+ c = x.children("ul").children("li").height()
+ }
+ s(0);
+ m = false
+ }
+ $(".adp-wraper-backshadow").show()
+ })
+ }
+ if (t.isShowBtn) {
+ var w = t.btnConfig;
+ for (var v = 0; v < w.length; v++) {
+ if (typeof (w[v].click) == "function") {
+ $("#adp_btn_" + v).on("click", w[v].click)
+ }
+ }
+ }
+ };
+ n._clearSelectedData = function () {
+ r = [];
+ e = [];
+ g = {};
+ var x = $("#adp-wraper-" + k).children("p").children("span.adp-head-active");
+ x.css("left", "-1px");
+ setTimeout(function () {
+ x.text(t.levelDesc[0])
+ }, 200);
+ for (var w = 1; w < t.level; w++) {
+ $("#adp-wraper-" + k).children("div.ul-div").eq(w).children("ul").empty().append('<span class="adp-empty-text">' + t.emptyText + "</span>");
+ if (t.isShowBtn) {
+ s(w)
+ }
+ }
+ var v;
+ if ((v = $("#adp-wraper-" + k).children("div.ul-div").eq(0).children("ul").children("li.adp-active")).length > 0) {
+ v.removeClass("adp-active")
+ }
+ $("#adp-wraper-" + k).children("div").eq(0).show().siblings("div.ul-div").hide()
+ };
+ n._setSelectedData = function (E) {
+ if (typeof (E) != "object" || E == null) {
+ return
+ }
+ if (E.length > t.level || E.length == 0) {
+ return
+ }
+ var v = t.isAsync ? f(null) : o;
+ if (typeof (v) != "object" || v == null) {
+ return
+ }
+ var x, G, H, K, I, J = "", D = false, C;
+ H = $("#adp-wraper-" + k).children("div.ul-div").eq(0).children("ul");
+ for (var z = 0; z < (K = H.children("li")).length; z++) {
+ x = v[z];
+ if (x.value == E[0]) {
+ g.value = x.value;
+ g.text = x.text;
+ g.level = 1;
+ r[0] = x.value;
+ e[0] = x.text;
+ r.splice(1, r.length - 1);
+ e.splice(1, e.length - 1);
+ G = x;
+ C = 0;
+ D = true;
+ H.children("li").removeClass("adp-active");
+ $(K[z]).addClass("adp-active");
+ continue
+ }
+ }
+ if (!D) {
+ return
+ }
+ for (var B = 1; B < E.length; B++) {
+ if (E[B] == null || E[B] == "") {
+ break
+ }
+ var w = t.isAsync ? f(G, g.level) : G.children;
+ if (typeof (w) != "object" || w == null) {
+ break
+ }
+ J = "";
+ D = false;
+ G = {};
+ for (var A = 0; A < w.length; A++) {
+ if (w[A].value == E[B]) {
+ J += '<li data-code="' + w[A].value + '" title="' + w[A].text + '" class="adp-active">' + w[A].text + "</li>";
+ g.value = w[A].value;
+ g.text = w[A].text;
+ g.level = (B + 1);
+ r[B] = w[A].value;
+ e[B] = w[A].text;
+ r.splice(B + 1, r.length - B - 1);
+ e.splice(B + 1, e.length - B - 1);
+ G = w[A];
+ D = true;
+ C = B;
+ continue
+ }
+ J += '<li data-code="' + w[A].value + '" title="' + w[A].text + '">' + w[A].text + "</li>"
+ }
+ if (!D) {
+ break
+ }
+ $("#adp-wraper-" + k).children("div.ul-div").eq(B).children("ul").empty().append(J);
+ if (t.isShowBtn) {
+ s(B)
+ }
+ }
+ if (typeof (C) == "number") {
+ $("#adp-wraper-" + k).children("div.ul-div").eq(C).show().siblings("div.ul-div").hide();
+ var F = $("#adp-wraper-" + k).children("p").children("span").eq(C + 1).text();
+ var L = $("#adp-wraper-" + k).children("p").children("span.adp-head-active");
+ L.css("left", (0.2 * (C)).toPercent());
+ setTimeout(function () {
+ L.text(F)
+ }, 200);
+ for (var y = C + 1; y < t.level; y++) {
+ $("#adp-wraper-" + k).children("div.ul-div").eq(y).children("ul").empty().append('<span class="adp-empty-text">' + t.emptyText + "</span>");
+ if (t.isShowBtn) {
+ s(y)
+ }
+ }
+ }
+ };
+ n._refreshData = function (v) {
+ if (typeof v == "string" && p(v)) {
+ v = JSON.parse(v)
+ }
+ o = v;
+ if (o.length > 0) {
+ n._getEachLevelData(0, t.level, o)
+ }
+ n._initFirstLevelData()
+ };
+ n._getTotalValueAsArray = function () {
+ return {value: r, text: e}
+ };
+ n._getTotalValueAsText = function () {
+ var w = "";
+ for (var v = 0; v < g.level; v++) {
+ w += (v < g.level - 1 ? e[v] + t.separator : e[v])
+ }
+ return w
+ };
+ n._getCurrentObject = function () {
+ return g
+ };
+ n._show = function () {
+ var v = u(event);
+ $("#adp-wraper-" + k).css("left", v.x);
+ $("#adp-wraper-" + k).css("top", v.y);
+ $("#adp-wraper-" + k).fadeIn();
+ $(".adp-wraper-backshadow").show()
+ };
+ n._hide = function () {
+ $("#adp-wraper-" + k).fadeOut();
+ $("div.adp-wraper-backshadow").hide()
+ };
+ n._on = function (v, w) {
+ $("#adp-wraper-" + k + " div ul").delegate("li", v, w)
+ };
+
+ function p(x) {
+ if (typeof x == "string") {
+ try {
+ var w = JSON.parse(x);
+ if (typeof w == "object" && w) {
+ return true
+ } else {
+ return false
+ }
+ } catch (v) {
+ return false
+ }
+ }
+ }
+
+ function u(w) {
+ var v = $("#" + t.id).offset().left - 10;
+ var C = $("#" + t.id).offset().top + $("#" + t.id).height() + 5;
+ if (t.isWithMouse) {
+ var A = w || window.event;
+ var B = document.documentElement.scrollLeft || document.body.scrollLeft;
+ var z = document.documentElement.scrollTop || document.body.scrollTop;
+ v = A.pageX || A.clientX + B;
+ C = A.pageY || A.clientY + z
+ }
+ v += t.offsetX;
+ C += t.offsetY;
+ return {x: v, y: C}
+ }
+
+ function d() {
+ var w = "";
+ var y = $("head script");
+ if (y.length > 0) {
+ for (var A = 0; A < y.length; A++) {
+ if (y[A].src.indexOf("/js/address-picker.js") != -1) {
+ w = y[A].src.substring(0, y[A].src.indexOf("/js/address-picker.js"));
+ break
+ }
+ }
+ }
+ if (w != "") {
+ var v = document.querySelector(":root");
+ v.style.setProperty("--theme-color", t.color);
+ v.style.setProperty("--font-size", t.fontSize);
+ var z = document.getElementsByTagName("head")[0];
+ var x = document.createElement("script");
+ var B = document.createElement("link");
+ B.href = w + "/css/address-picker.css";
+ B.rel = "stylesheet";
+ B.type = "text/css";
+ z.appendChild(B);
+ if (t.data == "") {
+ if (t.level == 1 || t.level == 2) {
+ t.data = w + "/data/pc-code.json"
+ } else {
+ if (t.level == 4 || t.level == 5) {
+ t.data = w + "/data/pcas-code.json"
+ } else {
+ t.data = w + "/data/pca-code.json"
+ }
+ }
+ }
+ }
+ }
+
+ function i() {
+ var v = true;
+ if (q instanceof Object) {
+ t = $.extend({}, j, q)
+ } else {
+ if (typeof (q) == "string") {
+ t.id = q
+ } else {
+ v = false
+ }
+ }
+ if (t.level > t.levelDesc.length) {
+ t.levelDesc = j.levelDesc
+ }
+ if (t.color == "") {
+ t.color = j.color
+ }
+ if (t.fontSize == "") {
+ t.fontSize = j.fontSize
+ }
+ if (t.id == "" || t.id == undefined) {
+ v = false
+ } else {
+ if ($("#" + t.id).length == 0) {
+ v = false
+ }
+ }
+ if (t.isAsync && (typeof (t.asyncUrl) != "string" || t.asyncUrl == "")) {
+ t.isAsync = j.isAsync
+ }
+ if (typeof (t.btnConfig) != "object" || t.btnConfig == null) {
+ t.isShowBtn = false;
+ t.btnConfig = j.btnConfig
+ }
+ return v
+ }
+
+ function s(y) {
+ var w = $("#adp-wraper-" + k).children("div.ul-div").eq(y);
+ var x = w.find("ul li");
+ var v = Math.ceil(x.length / 5) * (c + 16) + 10;
+ w.css("height", v > 65 ? v : 65 + "px")
+ }
+
+ function b() {
+ var x, v = "";
+ if (t.isShowBtn && (x = t.btnConfig).length > 0) {
+ v = '<div class="adp-btn-area">';
+ for (var w = 0; w < x.length; w++) {
+ v += '<div id="adp_btn_' + w + '" class="adp-btn">' + x[w].text + "</div>"
+ }
+ v += "</div>"
+ }
+ return v
+ }
+
+ function f(z, y) {
+ var v = [];
+ if (t.isAsync) {
+ var x = "", w = "", A = 1;
+ if (z == null) {
+ if ((typeof (l) != "undefined" && l != null)) {
+ return l
+ }
+ } else {
+ x = z.value;
+ w = z.text ? z.text : z.text;
+ A = y
+ }
+ $.ajax({
+ data: {value: x, text: w, level: A}, url: t.asyncUrl, async: false, success: function (B) {
+ if (typeof (B) == "string" && p(B)) {
+ B = JSON.parse(B)
+ }
+ v = B;
+ if (z == null && typeof (l) == "undefined") {
+ l = B
+ }
+ }
+ })
+ }
+ return v
+ }
+
+ n._init();
+ return {
+ on: n._on,
+ show: n._show,
+ hide: n._hide,
+ refreshData: n._refreshData,
+ getCurrentObject: n._getCurrentObject,
+ getTotalValueAsArray: n._getTotalValueAsArray,
+ getTotalValueAsText: n._getTotalValueAsText,
+ clearSelectedData: n._clearSelectedData,
+ setSelectedData: n._setSelectedData
+ }
+ };
+ window.addressPicker = a
+}());
\ No newline at end of file
diff --git a/WebContent/basic/js/carPersons.js b/WebContent/basic/js/carPersons.js
new file mode 100644
index 0000000..98cd973
--- /dev/null
+++ b/WebContent/basic/js/carPersons.js
@@ -0,0 +1,294 @@
+
+window.I = {
+ personModal:$("#personModal"),
+ addPerson: $("#addPerson"),
+ sxBtn: $("#sxBtn"),
+ tempVehicleSaveBtn:$("#tempVehicleSaveBtn"),
+ businessNo: $("#businessNo").val(),
+ vehicleId: $("#vehicleId").val(),
+}
+
+var Obj = {
+ id: null,
+ businessNo: I.businessNo,
+ vehicleId: I.vehicleId,
+ userName: null,
+ idCard: '',
+ phone: '',
+ province: '',
+ city: '',
+ area: '',
+ street: '',
+ provinceCityArea: '',
+}
+
+// 鏄熸湡涓�寰呭仛 1锛� 鍩庡競閫夋嫨鍣� 2銆侀獙璇佹暟鎹� 3銆侀厤杞﹀悗鎻愮ず浜哄憳娣诲姞-杞﹁締浠诲姟浜哄憳娣诲姞 4銆佸彂鍗¢〉闈㈡坊鍔犱汉鍛� 5銆佸仛涓�涓粺涓�鏌ヨ椤甸潰 6銆佷笟鍔″崟椤甸潰寮瑰嚭灞曠ず
+var ViewModel = function() {
+ var self = this;
+ self.list = ko.observableArray();
+ self.o = ko.observable(ko.mapping.fromJS(Obj));
+ self.toAddPersons = function () {
+ var o = ko.mapping.fromJS(Obj)
+ vm.o(o)
+ I.personModal.modal("show");
+ }
+ self.showPerson = function (item) {
+ getById(item);
+ }
+ self.delPerson = function (item) {
+ delPerson(item);
+ }
+}
+
+$(function () {
+ window.vm = new ViewModel();
+ ko.applyBindings(vm);
+ autoHeight();
+ getVehiclePersonList();
+ pageInit();
+});
+function isIdCardNo(value) {
+ return /^[1-9]\d{5}(18|19|20|(3\d))\d{2}((0[1-9])|(1[0-2]))(([0-2][1-9])|10|20|30|31)\d{3}[0-9Xx]$/.test(value);
+}
+function pageInit() {
+ jQuery.validator.addMethod("isIdCardNo", function (value, element){
+ return this.optional(element) || isIdCardNo(value);
+ },"璇锋纭緭鍏ユ偍鐨勮韩浠借瘉鍙风爜");
+ I.tempVehicleSaveBtn.on("click",function (e){
+ e.preventDefault();
+ if (valid()) {
+ var o = ko.mapping.toJS(vm.o());
+ if (o.id) update(o);
+ else add(o);
+ }
+ })
+ I.sxBtn.on("click",function(e){
+ getVehiclePersonList();
+ let $this = $(this)
+ $this.attr("disabled","");
+ setTimeout(function (){ $this.removeAttr("disabled")},5000);
+ })
+ window.address_picker = new addressPicker({
+ id: "city", level: 3, data: cityData3,
+ btnConfig: [{
+ text: '娓呴櫎鏁版嵁', click: function () {
+ address_picker.clearSelectedData();
+ $("#city").val('');
+ }
+ }]
+ });
+ address_picker.on("click",function () {
+ var obj = address_picker.getCurrentObject();
+ if(obj.level === 3) {
+ var val = address_picker.getTotalValueAsText();
+ $("#city").val(val);
+ setProvinceCityArea(val);
+ }
+ })
+ I.personModal.on('hidden.bs.modal', function (e) {
+ $("#city").val('');
+ clearError();
+ });
+ $("#city").on("click",function(event){
+ var display = $(".adp-wraper").css("display");
+ setTimeout(function () {
+ $(document).one("click",
+ function () {
+ // $(".adp-wraper").hide();
+ address_picker.hide();
+ });
+ },300);
+ event.stopPropagation(); //闃绘浜嬩欢鍚戜笂鍐掓场
+ })
+
+}
+function setProvinceCityArea(val){
+ if(!val || val.trim()=='') {
+ vm.o().province('');
+ vm.o().city('');
+ vm.o().area('');
+ return;
+ }
+ var arr = val.split("/")
+ for(var i=0,len=arr.length;i<len;i++) {
+ if(i==0) vm.o().province(arr[i].trim());
+ if(i==1) vm.o().city(arr[i].trim());
+ if(i==2) vm.o().area(arr[i].trim());
+ }
+}
+function getVehiclePersonList () {
+ $.post("/businessVehiclePerson/list.htm", {vehicleId: I.vehicleId, businessNo: I.businessNo},
+ function (data, textStatus, jqXHR) {
+ if (data.code >= 1) {
+ swal({title: '', text: data.errmsg, type: 'error', confirmButtonText: '纭畾'});
+ return;
+ }
+ if (data.code == 0) {
+ vm.list.removeAll()
+ data.list.forEach(l=>{
+ l.provinceCityArea = l.province + l.city + l.area + " " + l.street
+ });
+ if(isList(data.list)) vm.list.push(...data.list);
+ }
+ })
+}
+
+function getById(item){
+ $.post("/businessVehiclePerson/get.htm", {id: item.id},
+ function (data, textStatus, jqXHR) {
+ if (data.code >= 1) {
+ swal({title: '', text: data.errmsg, type: 'error', confirmButtonText: '纭畾'});
+ return;
+ }
+ if (data.code == 0) {
+ I.personModal.modal("show");
+ var item = data.item;
+ $("#city").val(item.province + " / " + item.city + " / " + item.area)
+ var arr = getProvinceCityArea(item.province,item.city,item.area);
+ address_picker.setSelectedData(arr);
+ console.log(arr)
+ var newItem = ko.mapping.fromJS(item)
+ vm.o(newItem);
+ getVehiclePersonList();
+ }
+ })
+}
+
+function delPerson(item) {
+ swal({
+ title: "鏄惁纭鍒犻櫎锛�", text: "", type: "warning",
+ showCancelButton: true,
+ confirmButtonColor: "#1c84c6",
+ confirmButtonText: "纭畾",
+ cancelButtonText: "鍙栨秷",
+ closeOnConfirm: true,
+ closeOnCancel: true,
+ }, function (isConfirm) {
+ if (isConfirm) {
+ $.post("/businessVehiclePerson/del.htm", {id: item.id},
+ function (data, textStatus, jqXHR) {
+ if (data.code >= 1) {
+ swal({title: '', text: data.errmsg, type: 'error', confirmButtonText: '纭畾'});
+ return;
+ }
+ if (data.code == 0) {
+ parent.showErrmsg("鍒犻櫎鎴愬姛锛�");
+ getVehiclePersonList();
+ }
+ })
+ }
+ });
+}
+function update() {
+ var o = ko.mapping.toJS(vm.o());
+ $.post("/businessVehiclePerson/update.htm", o,
+ function (data, textStatus, jqXHR) {
+ if (data.code >= 1) {
+ swal({title: '', text: data.errmsg, type: 'error', confirmButtonText: '纭畾'});
+ return;
+ }
+ if (data.code == 0) {
+ parent.showErrmsg("鏇存柊鎴愬姛锛�");
+ I.personModal.modal("hide");
+ getVehiclePersonList();
+ }
+ })
+}
+
+function getProvinceCityArea(province,city,area){
+ let array = []
+ cityData3.forEach(({text,value,children}) =>{
+ if(text === province) { array[0] = value;
+ children.forEach(({text,value,children}) => {
+ if(text === city) { array[1] = value;
+ children.forEach(({text,value}) => {
+ if(text === area) { array[2] = value;}
+ });
+ }
+ });
+ }
+ })
+ return array;
+}
+
+function add(item) {
+ $.post("/businessVehiclePerson/add.htm", item,
+ function (data, textStatus, jqXHR) {
+ if (data.code >= 1) {
+ swal({title: '', text: data.errmsg, type: 'error', confirmButtonText: '纭畾'});
+ return;
+ }
+ if (data.code == 0) {
+ parent.showErrmsg("鏂板鎴愬姛锛�");
+ I.personModal.modal("hide");
+ getVehiclePersonList();
+ }
+ })
+}
+
+
+function valid(){
+ var isValid = false;
+ var iF = $('#form');
+ iF.validate({
+ rules: {
+ 'userName': {
+ required: true,
+ // isPlateNumber: true
+ },
+ 'idCard': {
+ required: true,
+ isIdCardNo: true,
+ },
+ 'dataPhone': {
+ required: true,
+ isPhone: true
+ },
+ 'street': {
+ required: true,
+ },
+ 'city': {
+ required: true,
+ }
+ },
+ messages: {
+ 'userName': {
+ required: '涓嶈兘涓虹┖锛�',
+ },
+ 'idCard': {
+ required: '涓嶈兘涓虹┖锛�',
+ isIdCardNo: '韬唤璇佸彿鐮佷笉姝g‘'
+ },
+ 'dataPhone': {
+ required: '涓嶈兘涓虹┖锛�',
+ isPhone: '鎵嬫満鍙蜂笉姝g‘锛�'
+ },
+ 'street': {
+ required: '涓嶈兘涓虹┖锛�',
+ },
+ 'city': {
+ required: '涓嶈兘涓虹┖锛�',
+ }
+ },
+ errorPlacement: function (err, element) {
+ var p = element.parents('.form-group').eq(0);
+ var d = p.find('.text-error').eq(0);
+ d.css('color', '#D9534F');
+ err.appendTo(d);
+ }
+ })
+ isValid = iF.valid();
+ return isValid;
+}
+
+
+function clearError() {
+ $('#form input').removeClass('error');
+ $('#form .text-error').html('');
+}
+
+function autoHeight() {
+ $('.page-content').css('min-height', $(parent.window).height() - 117);
+ $('.table-responsive').css('height', $(parent.window).height() - 275);
+ $('.split').css('left', $('.table-vehicleId').width() + 12);
+}
diff --git a/WebContent/basic/js/city.data-3.js b/WebContent/basic/js/city.data-3.js
new file mode 100644
index 0000000..425faaf
--- /dev/null
+++ b/WebContent/basic/js/city.data-3.js
@@ -0,0 +1,11548 @@
+var cityData3 = [{
+ value: '110000',
+ text: '鍖椾含甯�',
+ children: [{
+ value: "110100",
+ text: "鍖椾含甯�",
+ children: [{
+ value: "110101",
+ text: "涓滃煄鍖�"
+ }, {
+ value: "110102",
+ text: "瑗垮煄鍖�"
+ }, {
+ value: "110103",
+ text: "宕囨枃鍖�"
+ }, {
+ value: "110104",
+ text: "瀹f鍖�"
+ }, {
+ value: "110105",
+ text: "鏈濋槼鍖�"
+ }, {
+ value: "110106",
+ text: "涓板彴鍖�"
+ }, {
+ value: "110107",
+ text: "鐭虫櫙灞卞尯"
+ }, {
+ value: "110108",
+ text: "娴锋穩鍖�"
+ }, {
+ value: "110109",
+ text: "闂ㄥご娌熷尯"
+ }, {
+ value: "110111",
+ text: "鎴垮北鍖�"
+ }, {
+ value: "110112",
+ text: "閫氬窞鍖�"
+ }, {
+ value: "110113",
+ text: "椤轰箟鍖�"
+ }, {
+ value: "110114",
+ text: "鏄屽钩鍖�"
+ }, {
+ value: "110115",
+ text: "澶у叴鍖�"
+ }, {
+ value: "110116",
+ text: "鎬�鏌斿尯"
+ }, {
+ value: "110117",
+ text: "骞宠胺鍖�"
+ }, {
+ value: "110228",
+ text: "瀵嗕簯鍘�"
+ }, {
+ value: "110229",
+ text: "寤跺簡鍘�"
+ }, {
+ value: "110230",
+ text: "鍏跺畠鍖�"
+ }]
+ }]
+}, {
+ value: '120000',
+ text: '澶╂触甯�',
+ children: [{
+ value: "120100",
+ text: "澶╂触甯�",
+ children: [{
+ value: "120101",
+ text: "鍜屽钩鍖�"
+ }, {
+ value: "120102",
+ text: "娌充笢鍖�"
+ }, {
+ value: "120103",
+ text: "娌宠タ鍖�"
+ }, {
+ value: "120104",
+ text: "鍗楀紑鍖�"
+ }, {
+ value: "120105",
+ text: "娌冲寳鍖�"
+ }, {
+ value: "120106",
+ text: "绾㈡ˉ鍖�"
+ }, {
+ value: "120107",
+ text: "濉樻步鍖�"
+ }, {
+ value: "120108",
+ text: "姹夋步鍖�"
+ }, {
+ value: "120109",
+ text: "澶ф腐鍖�"
+ }, {
+ value: "120110",
+ text: "涓滀附鍖�"
+ }, {
+ value: "120111",
+ text: "瑗块潚鍖�"
+ }, {
+ value: "120112",
+ text: "娲ュ崡鍖�"
+ }, {
+ value: "120113",
+ text: "鍖楄景鍖�"
+ }, {
+ value: "120114",
+ text: "姝︽竻鍖�"
+ }, {
+ value: "120115",
+ text: "瀹濆澔鍖�"
+ }, {
+ value: "120116",
+ text: "婊ㄦ捣鏂板尯"
+ }, {
+ value: "120221",
+ text: "瀹佹渤鍘�"
+ }, {
+ value: "120223",
+ text: "闈欐捣鍘�"
+ }, {
+ value: "120225",
+ text: "钃熷幙"
+ }, {
+ value: "120226",
+ text: "鍏跺畠鍖�"
+ }]
+ }]
+}, {
+ value: '130000',
+ text: '娌冲寳鐪�',
+ children: [{
+ value: "130100",
+ text: "鐭冲搴勫競",
+ children: [{
+ value: "130102",
+ text: "闀垮畨鍖�"
+ }, {
+ value: "130103",
+ text: "妗ヤ笢鍖�"
+ }, {
+ value: "130104",
+ text: "妗ヨタ鍖�"
+ }, {
+ value: "130105",
+ text: "鏂板崕鍖�"
+ }, {
+ value: "130107",
+ text: "浜曢檳鐭垮尯"
+ }, {
+ value: "130108",
+ text: "瑁曞崕鍖�"
+ }, {
+ value: "130121",
+ text: "浜曢檳鍘�"
+ }, {
+ value: "130123",
+ text: "姝e畾鍘�"
+ }, {
+ value: "130124",
+ text: "鏍惧煄鍘�"
+ }, {
+ value: "130125",
+ text: "琛屽攼鍘�"
+ }, {
+ value: "130126",
+ text: "鐏靛鍘�"
+ }, {
+ value: "130127",
+ text: "楂橀倯鍘�"
+ }, {
+ value: "130128",
+ text: "娣辨辰鍘�"
+ }, {
+ value: "130129",
+ text: "璧炵殗鍘�"
+ }, {
+ value: "130130",
+ text: "鏃犳瀬鍘�"
+ }, {
+ value: "130131",
+ text: "骞冲北鍘�"
+ }, {
+ value: "130132",
+ text: "鍏冩皬鍘�"
+ }, {
+ value: "130133",
+ text: "璧靛幙"
+ }, {
+ value: "130181",
+ text: "杈涢泦甯�"
+ }, {
+ value: "130182",
+ text: "钘佸煄甯�"
+ }, {
+ value: "130183",
+ text: "鏅嬪窞甯�"
+ }, {
+ value: "130184",
+ text: "鏂颁箰甯�"
+ }, {
+ value: "130185",
+ text: "楣挎硥甯�"
+ }, {
+ value: "130186",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "130200",
+ text: "鍞愬北甯�",
+ children: [{
+ value: "130202",
+ text: "璺崡鍖�"
+ }, {
+ value: "130203",
+ text: "璺寳鍖�"
+ }, {
+ value: "130204",
+ text: "鍙ゅ喍鍖�"
+ }, {
+ value: "130205",
+ text: "寮�骞冲尯"
+ }, {
+ value: "130207",
+ text: "涓板崡鍖�"
+ }, {
+ value: "130208",
+ text: "涓版鼎鍖�"
+ }, {
+ value: "130223",
+ text: "婊﹀幙"
+ }, {
+ value: "130224",
+ text: "婊﹀崡鍘�"
+ }, {
+ value: "130225",
+ text: "涔愪涵鍘�"
+ }, {
+ value: "130227",
+ text: "杩佽タ鍘�"
+ }, {
+ value: "130229",
+ text: "鐜夌敯鍘�"
+ }, {
+ value: "130230",
+ text: "鍞愭捣鍘�"
+ }, {
+ value: "130281",
+ text: "閬靛寲甯�"
+ }, {
+ value: "130283",
+ text: "杩佸畨甯�"
+ }, {
+ value: "130284",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "130300",
+ text: "绉︾殗宀涘競",
+ children: [{
+ value: "130302",
+ text: "娴锋腐鍖�"
+ }, {
+ value: "130303",
+ text: "灞辨捣鍏冲尯"
+ }, {
+ value: "130304",
+ text: "鍖楁埓娌冲尯"
+ }, {
+ value: "130321",
+ text: "闈掗緳婊℃棌鑷不鍘�"
+ }, {
+ value: "130322",
+ text: "鏄岄粠鍘�"
+ }, {
+ value: "130323",
+ text: "鎶氬畞鍘�"
+ }, {
+ value: "130324",
+ text: "鍗㈤緳鍘�"
+ }, {
+ value: "130398",
+ text: "鍏跺畠鍖�"
+ }, {
+ value: "130399",
+ text: "缁忔祹鎶�鏈紑鍙戝尯"
+ }]
+ }, {
+ value: "130400",
+ text: "閭兏甯�",
+ children: [{
+ value: "130402",
+ text: "閭北鍖�"
+ }, {
+ value: "130403",
+ text: "涓涘彴鍖�"
+ }, {
+ value: "130404",
+ text: "澶嶅叴鍖�"
+ }, {
+ value: "130406",
+ text: "宄板嘲鐭垮尯"
+ }, {
+ value: "130421",
+ text: "閭兏鍘�"
+ }, {
+ value: "130423",
+ text: "涓存汲鍘�"
+ }, {
+ value: "130424",
+ text: "鎴愬畨鍘�"
+ }, {
+ value: "130425",
+ text: "澶у悕鍘�"
+ }, {
+ value: "130426",
+ text: "娑夊幙"
+ }, {
+ value: "130427",
+ text: "纾佸幙"
+ }, {
+ value: "130428",
+ text: "鑲ヤ埂鍘�"
+ }, {
+ value: "130429",
+ text: "姘稿勾鍘�"
+ }, {
+ value: "130430",
+ text: "閭卞幙"
+ }, {
+ value: "130431",
+ text: "楦℃辰鍘�"
+ }, {
+ value: "130432",
+ text: "骞垮钩鍘�"
+ }, {
+ value: "130433",
+ text: "棣嗛櫠鍘�"
+ }, {
+ value: "130434",
+ text: "榄忓幙"
+ }, {
+ value: "130435",
+ text: "鏇插懆鍘�"
+ }, {
+ value: "130481",
+ text: "姝﹀畨甯�"
+ }, {
+ value: "130482",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "130500",
+ text: "閭㈠彴甯�",
+ children: [{
+ value: "130502",
+ text: "妗ヤ笢鍖�"
+ }, {
+ value: "130503",
+ text: "妗ヨタ鍖�"
+ }, {
+ value: "130521",
+ text: "閭㈠彴鍘�"
+ }, {
+ value: "130522",
+ text: "涓村煄鍘�"
+ }, {
+ value: "130523",
+ text: "鍐呬笜鍘�"
+ }, {
+ value: "130524",
+ text: "鏌忎埂鍘�"
+ }, {
+ value: "130525",
+ text: "闅嗗哀鍘�"
+ }, {
+ value: "130526",
+ text: "浠诲幙"
+ }, {
+ value: "130527",
+ text: "鍗楀拰鍘�"
+ }, {
+ value: "130528",
+ text: "瀹佹檵鍘�"
+ }, {
+ value: "130529",
+ text: "宸ㄩ箍鍘�"
+ }, {
+ value: "130530",
+ text: "鏂版渤鍘�"
+ }, {
+ value: "130531",
+ text: "骞垮畻鍘�"
+ }, {
+ value: "130532",
+ text: "骞充埂鍘�"
+ }, {
+ value: "130533",
+ text: "濞佸幙"
+ }, {
+ value: "130534",
+ text: "娓呮渤鍘�"
+ }, {
+ value: "130535",
+ text: "涓磋タ鍘�"
+ }, {
+ value: "130581",
+ text: "鍗楀甯�"
+ }, {
+ value: "130582",
+ text: "娌欐渤甯�"
+ }, {
+ value: "130583",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "130600",
+ text: "淇濆畾甯�",
+ children: [{
+ value: "130602",
+ text: "鏂板競鍖�"
+ }, {
+ value: "130603",
+ text: "鍖楀競鍖�"
+ }, {
+ value: "130604",
+ text: "鍗楀競鍖�"
+ }, {
+ value: "130621",
+ text: "婊″煄鍘�"
+ }, {
+ value: "130622",
+ text: "娓呰嫅鍘�"
+ }, {
+ value: "130623",
+ text: "娑炴按鍘�"
+ }, {
+ value: "130624",
+ text: "闃滃钩鍘�"
+ }, {
+ value: "130625",
+ text: "寰愭按鍘�"
+ }, {
+ value: "130626",
+ text: "瀹氬叴鍘�"
+ }, {
+ value: "130627",
+ text: "鍞愬幙"
+ }, {
+ value: "130628",
+ text: "楂橀槼鍘�"
+ }, {
+ value: "130629",
+ text: "瀹瑰煄鍘�"
+ }, {
+ value: "130630",
+ text: "娑炴簮鍘�"
+ }, {
+ value: "130631",
+ text: "鏈涢兘鍘�"
+ }, {
+ value: "130632",
+ text: "瀹夋柊鍘�"
+ }, {
+ value: "130633",
+ text: "鏄撳幙"
+ }, {
+ value: "130634",
+ text: "鏇查槼鍘�"
+ }, {
+ value: "130635",
+ text: "锠″幙"
+ }, {
+ value: "130636",
+ text: "椤哄钩鍘�"
+ }, {
+ value: "130637",
+ text: "鍗氶噹鍘�"
+ }, {
+ value: "130638",
+ text: "闆勫幙"
+ }, {
+ value: "130681",
+ text: "娑垮窞甯�"
+ }, {
+ value: "130682",
+ text: "瀹氬窞甯�"
+ }, {
+ value: "130683",
+ text: "瀹夊浗甯�"
+ }, {
+ value: "130684",
+ text: "楂樼搴楀競"
+ }, {
+ value: "130698",
+ text: "楂樺紑鍖�"
+ }, {
+ value: "130699",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "130700",
+ text: "寮犲鍙e競",
+ children: [{
+ value: "130702",
+ text: "妗ヤ笢鍖�"
+ }, {
+ value: "130703",
+ text: "妗ヨタ鍖�"
+ }, {
+ value: "130705",
+ text: "瀹e寲鍖�"
+ }, {
+ value: "130706",
+ text: "涓嬭姳鍥尯"
+ }, {
+ value: "130721",
+ text: "瀹e寲鍘�"
+ }, {
+ value: "130722",
+ text: "寮犲寳鍘�"
+ }, {
+ value: "130723",
+ text: "搴蜂繚鍘�"
+ }, {
+ value: "130724",
+ text: "娌芥簮鍘�"
+ }, {
+ value: "130725",
+ text: "灏氫箟鍘�"
+ }, {
+ value: "130726",
+ text: "钄氬幙"
+ }, {
+ value: "130727",
+ text: "闃冲師鍘�"
+ }, {
+ value: "130728",
+ text: "鎬�瀹夊幙"
+ }, {
+ value: "130729",
+ text: "涓囧叏鍘�"
+ }, {
+ value: "130730",
+ text: "鎬�鏉ュ幙"
+ }, {
+ value: "130731",
+ text: "娑块箍鍘�"
+ }, {
+ value: "130732",
+ text: "璧ゅ煄鍘�"
+ }, {
+ value: "130733",
+ text: "宕囩ぜ鍘�"
+ }, {
+ value: "130734",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "130800",
+ text: "鎵垮痉甯�",
+ children: [{
+ value: "130802",
+ text: "鍙屾ˉ鍖�"
+ }, {
+ value: "130803",
+ text: "鍙屾沪鍖�"
+ }, {
+ value: "130804",
+ text: "楣版墜钀ュ瓙鐭垮尯"
+ }, {
+ value: "130821",
+ text: "鎵垮痉鍘�"
+ }, {
+ value: "130822",
+ text: "鍏撮殕鍘�"
+ }, {
+ value: "130823",
+ text: "骞虫硥鍘�"
+ }, {
+ value: "130824",
+ text: "婊﹀钩鍘�"
+ }, {
+ value: "130825",
+ text: "闅嗗寲鍘�"
+ }, {
+ value: "130826",
+ text: "涓板畞婊℃棌鑷不鍘�"
+ }, {
+ value: "130827",
+ text: "瀹藉煄婊℃棌鑷不鍘�"
+ }, {
+ value: "130828",
+ text: "鍥村満婊℃棌钂欏彜鏃忚嚜娌诲幙"
+ }, {
+ value: "130829",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "130900",
+ text: "娌у窞甯�",
+ children: [{
+ value: "130902",
+ text: "鏂板崕鍖�"
+ }, {
+ value: "130903",
+ text: "杩愭渤鍖�"
+ }, {
+ value: "130921",
+ text: "娌у幙"
+ }, {
+ value: "130922",
+ text: "闈掑幙"
+ }, {
+ value: "130923",
+ text: "涓滃厜鍘�"
+ }, {
+ value: "130924",
+ text: "娴峰叴鍘�"
+ }, {
+ value: "130925",
+ text: "鐩愬北鍘�"
+ }, {
+ value: "130926",
+ text: "鑲冨畞鍘�"
+ }, {
+ value: "130927",
+ text: "鍗楃毊鍘�"
+ }, {
+ value: "130928",
+ text: "鍚存ˉ鍘�"
+ }, {
+ value: "130929",
+ text: "鐚幙"
+ }, {
+ value: "130930",
+ text: "瀛熸潙鍥炴棌鑷不鍘�"
+ }, {
+ value: "130981",
+ text: "娉婂ご甯�"
+ }, {
+ value: "130982",
+ text: "浠讳笜甯�"
+ }, {
+ value: "130983",
+ text: "榛勯獏甯�"
+ }, {
+ value: "130984",
+ text: "娌抽棿甯�"
+ }, {
+ value: "130985",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "131000",
+ text: "寤婂潑甯�",
+ children: [{
+ value: "131002",
+ text: "瀹夋鍖�"
+ }, {
+ value: "131003",
+ text: "骞块槼鍖�"
+ }, {
+ value: "131022",
+ text: "鍥哄畨鍘�"
+ }, {
+ value: "131023",
+ text: "姘告竻鍘�"
+ }, {
+ value: "131024",
+ text: "棣欐渤鍘�"
+ }, {
+ value: "131025",
+ text: "澶у煄鍘�"
+ }, {
+ value: "131026",
+ text: "鏂囧畨鍘�"
+ }, {
+ value: "131028",
+ text: "澶у巶鍥炴棌鑷不鍘�"
+ }, {
+ value: "131051",
+ text: "寮�鍙戝尯"
+ }, {
+ value: "131052",
+ text: "鐕曢儕缁忔祹鎶�鏈紑鍙戝尯"
+ }, {
+ value: "131081",
+ text: "闇稿窞甯�"
+ }, {
+ value: "131082",
+ text: "涓夋渤甯�"
+ }, {
+ value: "131083",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "131100",
+ text: "琛℃按甯�",
+ children: [{
+ value: "131102",
+ text: "妗冨煄鍖�"
+ }, {
+ value: "131121",
+ text: "鏋e己鍘�"
+ }, {
+ value: "131122",
+ text: "姝﹂倯鍘�"
+ }, {
+ value: "131123",
+ text: "姝﹀己鍘�"
+ }, {
+ value: "131124",
+ text: "楗堕槼鍘�"
+ }, {
+ value: "131125",
+ text: "瀹夊钩鍘�"
+ }, {
+ value: "131126",
+ text: "鏁呭煄鍘�"
+ }, {
+ value: "131127",
+ text: "鏅幙"
+ }, {
+ value: "131128",
+ text: "闃滃煄鍘�"
+ }, {
+ value: "131181",
+ text: "鍐�宸炲競"
+ }, {
+ value: "131182",
+ text: "娣卞窞甯�"
+ }, {
+ value: "131183",
+ text: "鍏跺畠鍖�"
+ }]
+ }]
+}, {
+ value: '140000',
+ text: '灞辫タ鐪�',
+ children: [{
+ value: "140100",
+ text: "澶師甯�",
+ children: [{
+ value: "140105",
+ text: "灏忓簵鍖�"
+ }, {
+ value: "140106",
+ text: "杩庢辰鍖�"
+ }, {
+ value: "140107",
+ text: "鏉忚姳宀尯"
+ }, {
+ value: "140108",
+ text: "灏栬崏鍧尯"
+ }, {
+ value: "140109",
+ text: "涓囨煆鏋楀尯"
+ }, {
+ value: "140110",
+ text: "鏅嬫簮鍖�"
+ }, {
+ value: "140121",
+ text: "娓呭緪鍘�"
+ }, {
+ value: "140122",
+ text: "闃虫洸鍘�"
+ }, {
+ value: "140123",
+ text: "濞勭儲鍘�"
+ }, {
+ value: "140181",
+ text: "鍙や氦甯�"
+ }, {
+ value: "140182",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "140200",
+ text: "澶у悓甯�",
+ children: [{
+ value: "140202",
+ text: "鍩庡尯"
+ }, {
+ value: "140203",
+ text: "鐭垮尯"
+ }, {
+ value: "140211",
+ text: "鍗楅儕鍖�"
+ }, {
+ value: "140212",
+ text: "鏂拌崳鍖�"
+ }, {
+ value: "140221",
+ text: "闃抽珮鍘�"
+ }, {
+ value: "140222",
+ text: "澶╅晣鍘�"
+ }, {
+ value: "140223",
+ text: "骞跨伒鍘�"
+ }, {
+ value: "140224",
+ text: "鐏典笜鍘�"
+ }, {
+ value: "140225",
+ text: "娴戞簮鍘�"
+ }, {
+ value: "140226",
+ text: "宸︿簯鍘�"
+ }, {
+ value: "140227",
+ text: "澶у悓鍘�"
+ }, {
+ value: "140228",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "140300",
+ text: "闃虫硥甯�",
+ children: [{
+ value: "140302",
+ text: "鍩庡尯"
+ }, {
+ value: "140303",
+ text: "鐭垮尯"
+ }, {
+ value: "140311",
+ text: "閮婂尯"
+ }, {
+ value: "140321",
+ text: "骞冲畾鍘�"
+ }, {
+ value: "140322",
+ text: "鐩傚幙"
+ }, {
+ value: "140323",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "140400",
+ text: "闀挎不甯�",
+ children: [{
+ value: "140421",
+ text: "闀挎不鍘�"
+ }, {
+ value: "140423",
+ text: "瑗勫灒鍘�"
+ }, {
+ value: "140424",
+ text: "灞暀鍘�"
+ }, {
+ value: "140425",
+ text: "骞抽『鍘�"
+ }, {
+ value: "140426",
+ text: "榛庡煄鍘�"
+ }, {
+ value: "140427",
+ text: "澹跺叧鍘�"
+ }, {
+ value: "140428",
+ text: "闀垮瓙鍘�"
+ }, {
+ value: "140429",
+ text: "姝︿埂鍘�"
+ }, {
+ value: "140430",
+ text: "娌佸幙"
+ }, {
+ value: "140431",
+ text: "娌佹簮鍘�"
+ }, {
+ value: "140481",
+ text: "娼炲煄甯�"
+ }, {
+ value: "140482",
+ text: "鍩庡尯"
+ }, {
+ value: "140483",
+ text: "閮婂尯"
+ }, {
+ value: "140484",
+ text: "楂樻柊鍖�"
+ }, {
+ value: "140485",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "140500",
+ text: "鏅嬪煄甯�",
+ children: [{
+ value: "140502",
+ text: "鍩庡尯"
+ }, {
+ value: "140521",
+ text: "娌佹按鍘�"
+ }, {
+ value: "140522",
+ text: "闃冲煄鍘�"
+ }, {
+ value: "140524",
+ text: "闄靛窛鍘�"
+ }, {
+ value: "140525",
+ text: "娉藉窞鍘�"
+ }, {
+ value: "140581",
+ text: "楂樺钩甯�"
+ }, {
+ value: "140582",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "140600",
+ text: "鏈斿窞甯�",
+ children: [{
+ value: "140602",
+ text: "鏈斿煄鍖�"
+ }, {
+ value: "140603",
+ text: "骞抽瞾鍖�"
+ }, {
+ value: "140621",
+ text: "灞遍槾鍘�"
+ }, {
+ value: "140622",
+ text: "搴斿幙"
+ }, {
+ value: "140623",
+ text: "鍙崇帀鍘�"
+ }, {
+ value: "140624",
+ text: "鎬�浠佸幙"
+ }, {
+ value: "140625",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "140700",
+ text: "鏅嬩腑甯�",
+ children: [{
+ value: "140702",
+ text: "姒嗘鍖�"
+ }, {
+ value: "140721",
+ text: "姒嗙ぞ鍘�"
+ }, {
+ value: "140722",
+ text: "宸︽潈鍘�"
+ }, {
+ value: "140723",
+ text: "鍜岄『鍘�"
+ }, {
+ value: "140724",
+ text: "鏄旈槼鍘�"
+ }, {
+ value: "140725",
+ text: "瀵块槼鍘�"
+ }, {
+ value: "140726",
+ text: "澶胺鍘�"
+ }, {
+ value: "140727",
+ text: "绁佸幙"
+ }, {
+ value: "140728",
+ text: "骞抽仴鍘�"
+ }, {
+ value: "140729",
+ text: "鐏电煶鍘�"
+ }, {
+ value: "140781",
+ text: "浠嬩紤甯�"
+ }, {
+ value: "140782",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "140800",
+ text: "杩愬煄甯�",
+ children: [{
+ value: "140802",
+ text: "鐩愭箹鍖�"
+ }, {
+ value: "140821",
+ text: "涓寸寳鍘�"
+ }, {
+ value: "140822",
+ text: "涓囪崳鍘�"
+ }, {
+ value: "140823",
+ text: "闂诲枩鍘�"
+ }, {
+ value: "140824",
+ text: "绋峰北鍘�"
+ }, {
+ value: "140825",
+ text: "鏂扮粵鍘�"
+ }, {
+ value: "140826",
+ text: "缁涘幙"
+ }, {
+ value: "140827",
+ text: "鍨f洸鍘�"
+ }, {
+ value: "140828",
+ text: "澶忓幙"
+ }, {
+ value: "140829",
+ text: "骞抽檰鍘�"
+ }, {
+ value: "140830",
+ text: "鑺煄鍘�"
+ }, {
+ value: "140881",
+ text: "姘告祹甯�"
+ }, {
+ value: "140882",
+ text: "娌虫触甯�"
+ }, {
+ value: "140883",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "140900",
+ text: "蹇诲窞甯�",
+ children: [{
+ value: "140902",
+ text: "蹇诲簻鍖�"
+ }, {
+ value: "140921",
+ text: "瀹氳鍘�"
+ }, {
+ value: "140922",
+ text: "浜斿彴鍘�"
+ }, {
+ value: "140923",
+ text: "浠e幙"
+ }, {
+ value: "140924",
+ text: "绻佸硻鍘�"
+ }, {
+ value: "140925",
+ text: "瀹佹鍘�"
+ }, {
+ value: "140926",
+ text: "闈欎箰鍘�"
+ }, {
+ value: "140927",
+ text: "绁炴睜鍘�"
+ }, {
+ value: "140928",
+ text: "浜斿鍘�"
+ }, {
+ value: "140929",
+ text: "宀㈠矚鍘�"
+ }, {
+ value: "140930",
+ text: "娌虫洸鍘�"
+ }, {
+ value: "140931",
+ text: "淇濆痉鍘�"
+ }, {
+ value: "140932",
+ text: "鍋忓叧鍘�"
+ }, {
+ value: "140981",
+ text: "鍘熷钩甯�"
+ }, {
+ value: "140982",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "141000",
+ text: "涓存本甯�",
+ children: [{
+ value: "141002",
+ text: "灏ч兘鍖�"
+ }, {
+ value: "141021",
+ text: "鏇叉矁鍘�"
+ }, {
+ value: "141022",
+ text: "缈煎煄鍘�"
+ }, {
+ value: "141023",
+ text: "瑗勬本鍘�"
+ }, {
+ value: "141024",
+ text: "娲礊鍘�"
+ }, {
+ value: "141025",
+ text: "鍙ゅ幙"
+ }, {
+ value: "141026",
+ text: "瀹夋辰鍘�"
+ }, {
+ value: "141027",
+ text: "娴北鍘�"
+ }, {
+ value: "141028",
+ text: "鍚夊幙"
+ }, {
+ value: "141029",
+ text: "涔″畞鍘�"
+ }, {
+ value: "141030",
+ text: "澶у畞鍘�"
+ }, {
+ value: "141031",
+ text: "闅板幙"
+ }, {
+ value: "141032",
+ text: "姘稿拰鍘�"
+ }, {
+ value: "141033",
+ text: "钂插幙"
+ }, {
+ value: "141034",
+ text: "姹捐タ鍘�"
+ }, {
+ value: "141081",
+ text: "渚┈甯�"
+ }, {
+ value: "141082",
+ text: "闇嶅窞甯�"
+ }, {
+ value: "141083",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "141100",
+ text: "鍚曟甯�",
+ children: [{
+ value: "141102",
+ text: "绂荤煶鍖�"
+ }, {
+ value: "141121",
+ text: "鏂囨按鍘�"
+ }, {
+ value: "141122",
+ text: "浜ゅ煄鍘�"
+ }, {
+ value: "141123",
+ text: "鍏村幙"
+ }, {
+ value: "141124",
+ text: "涓村幙"
+ }, {
+ value: "141125",
+ text: "鏌虫灄鍘�"
+ }, {
+ value: "141126",
+ text: "鐭虫ゼ鍘�"
+ }, {
+ value: "141127",
+ text: "宀氬幙"
+ }, {
+ value: "141128",
+ text: "鏂瑰北鍘�"
+ }, {
+ value: "141129",
+ text: "涓槼鍘�"
+ }, {
+ value: "141130",
+ text: "浜ゅ彛鍘�"
+ }, {
+ value: "141181",
+ text: "瀛濅箟甯�"
+ }, {
+ value: "141182",
+ text: "姹鹃槼甯�"
+ }, {
+ value: "141183",
+ text: "鍏跺畠鍖�"
+ }]
+ }]
+}, {
+ value: '150000',
+ text: '鍐呰挋鍙�',
+ children: [{
+ value: "150100",
+ text: "鍛煎拰娴╃壒甯�",
+ children: [{
+ value: "150102",
+ text: "鏂板煄鍖�"
+ }, {
+ value: "150103",
+ text: "鍥炴皯鍖�"
+ }, {
+ value: "150104",
+ text: "鐜夋硥鍖�"
+ }, {
+ value: "150105",
+ text: "璧涚綍鍖�"
+ }, {
+ value: "150121",
+ text: "鍦熼粯鐗瑰乏鏃�"
+ }, {
+ value: "150122",
+ text: "鎵樺厠鎵樺幙"
+ }, {
+ value: "150123",
+ text: "鍜屾灄鏍煎皵鍘�"
+ }, {
+ value: "150124",
+ text: "娓呮按娌冲幙"
+ }, {
+ value: "150125",
+ text: "姝﹀窛鍘�"
+ }, {
+ value: "150126",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "150200",
+ text: "鍖呭ご甯�",
+ children: [{
+ value: "150202",
+ text: "涓滄渤鍖�"
+ }, {
+ value: "150203",
+ text: "鏄嗛兘浠戝尯"
+ }, {
+ value: "150204",
+ text: "闈掑北鍖�"
+ }, {
+ value: "150205",
+ text: "鐭虫嫄鍖�"
+ }, {
+ value: "150206",
+ text: "鐧戒簯鐭垮尯"
+ }, {
+ value: "150207",
+ text: "涔濆師鍖�"
+ }, {
+ value: "150221",
+ text: "鍦熼粯鐗瑰彸鏃�"
+ }, {
+ value: "150222",
+ text: "鍥洪槼鍘�"
+ }, {
+ value: "150223",
+ text: "杈惧皵缃曡寕鏄庡畨鑱斿悎鏃�"
+ }, {
+ value: "150224",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "150300",
+ text: "涔屾捣甯�",
+ children: [{
+ value: "150302",
+ text: "娴峰媰婀惧尯"
+ }, {
+ value: "150303",
+ text: "娴峰崡鍖�"
+ }, {
+ value: "150304",
+ text: "涔岃揪鍖�"
+ }, {
+ value: "150305",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "150400",
+ text: "璧ゅ嘲甯�",
+ children: [{
+ value: "150402",
+ text: "绾㈠北鍖�"
+ }, {
+ value: "150403",
+ text: "鍏冨疂灞卞尯"
+ }, {
+ value: "150404",
+ text: "鏉惧北鍖�"
+ }, {
+ value: "150421",
+ text: "闃块瞾绉戝皵娌佹棗"
+ }, {
+ value: "150422",
+ text: "宸存灄宸︽棗"
+ }, {
+ value: "150423",
+ text: "宸存灄鍙虫棗"
+ }, {
+ value: "150424",
+ text: "鏋楄タ鍘�"
+ }, {
+ value: "150425",
+ text: "鍏嬩粈鍏嬭吘鏃�"
+ }, {
+ value: "150426",
+ text: "缈佺墰鐗规棗"
+ }, {
+ value: "150428",
+ text: "鍠�鍠囨瞾鏃�"
+ }, {
+ value: "150429",
+ text: "瀹佸煄鍘�"
+ }, {
+ value: "150430",
+ text: "鏁栨眽鏃�"
+ }, {
+ value: "150431",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "150500",
+ text: "閫氳窘甯�",
+ children: [{
+ value: "150502",
+ text: "绉戝皵娌佸尯"
+ }, {
+ value: "150521",
+ text: "绉戝皵娌佸乏缈间腑鏃�"
+ }, {
+ value: "150522",
+ text: "绉戝皵娌佸乏缈煎悗鏃�"
+ }, {
+ value: "150523",
+ text: "寮�椴佸幙"
+ }, {
+ value: "150524",
+ text: "搴撲鸡鏃�"
+ }, {
+ value: "150525",
+ text: "濂堟浖鏃�"
+ }, {
+ value: "150526",
+ text: "鎵庨瞾鐗规棗"
+ }, {
+ value: "150581",
+ text: "闇嶆灄閮嫆甯�"
+ }, {
+ value: "150582",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "150600",
+ text: "閯傚皵澶氭柉甯�",
+ children: [{
+ value: "150602",
+ text: "涓滆儨鍖�"
+ }, {
+ value: "150621",
+ text: "杈炬媺鐗规棗"
+ }, {
+ value: "150622",
+ text: "鍑嗘牸灏旀棗"
+ }, {
+ value: "150623",
+ text: "閯傛墭鍏嬪墠鏃�"
+ }, {
+ value: "150624",
+ text: "閯傛墭鍏嬫棗"
+ }, {
+ value: "150625",
+ text: "鏉敠鏃�"
+ }, {
+ value: "150626",
+ text: "涔屽鏃�"
+ }, {
+ value: "150627",
+ text: "浼婇噾闇嶆礇鏃�"
+ }, {
+ value: "150628",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "150700",
+ text: "鍛间鸡璐濆皵甯�",
+ children: [{
+ value: "150702",
+ text: "娴锋媺灏斿尯"
+ }, {
+ value: "150721",
+ text: "闃胯崳鏃�"
+ }, {
+ value: "150722",
+ text: "鑾姏杈剧摝杈炬枴灏旀棌鑷不鏃�"
+ }, {
+ value: "150723",
+ text: "閯備鸡鏄ヨ嚜娌绘棗"
+ }, {
+ value: "150724",
+ text: "閯傛俯鍏嬫棌鑷不鏃�"
+ }, {
+ value: "150725",
+ text: "闄堝反灏旇檸鏃�"
+ }, {
+ value: "150726",
+ text: "鏂板反灏旇檸宸︽棗"
+ }, {
+ value: "150727",
+ text: "鏂板反灏旇檸鍙虫棗"
+ }, {
+ value: "150781",
+ text: "婊℃床閲屽競"
+ }, {
+ value: "150782",
+ text: "鐗欏厠鐭冲競"
+ }, {
+ value: "150783",
+ text: "鎵庡叞灞競"
+ }, {
+ value: "150784",
+ text: "棰濆皵鍙ょ撼甯�"
+ }, {
+ value: "150785",
+ text: "鏍规渤甯�"
+ }, {
+ value: "150786",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "150800",
+ text: "宸村溅娣栧皵甯�",
+ children: [{
+ value: "150802",
+ text: "涓存渤鍖�"
+ }, {
+ value: "150821",
+ text: "浜斿師鍘�"
+ }, {
+ value: "150822",
+ text: "纾村彛鍘�"
+ }, {
+ value: "150823",
+ text: "涔屾媺鐗瑰墠鏃�"
+ }, {
+ value: "150824",
+ text: "涔屾媺鐗逛腑鏃�"
+ }, {
+ value: "150825",
+ text: "涔屾媺鐗瑰悗鏃�"
+ }, {
+ value: "150826",
+ text: "鏉敠鍚庢棗"
+ }, {
+ value: "150827",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "150900",
+ text: "涔屽叞瀵熷竷甯�",
+ children: [{
+ value: "150902",
+ text: "闆嗗畞鍖�"
+ }, {
+ value: "150921",
+ text: "鍗撹祫鍘�"
+ }, {
+ value: "150922",
+ text: "鍖栧痉鍘�"
+ }, {
+ value: "150923",
+ text: "鍟嗛兘鍘�"
+ }, {
+ value: "150924",
+ text: "鍏村拰鍘�"
+ }, {
+ value: "150925",
+ text: "鍑夊煄鍘�"
+ }, {
+ value: "150926",
+ text: "瀵熷搱灏斿彸缈煎墠鏃�"
+ }, {
+ value: "150927",
+ text: "瀵熷搱灏斿彸缈间腑鏃�"
+ }, {
+ value: "150928",
+ text: "瀵熷搱灏斿彸缈煎悗鏃�"
+ }, {
+ value: "150929",
+ text: "鍥涘瓙鐜嬫棗"
+ }, {
+ value: "150981",
+ text: "涓伴晣甯�"
+ }, {
+ value: "150982",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "152200",
+ text: "鍏村畨鐩�",
+ children: [{
+ value: "152201",
+ text: "涔屽叞娴╃壒甯�"
+ }, {
+ value: "152202",
+ text: "闃垮皵灞卞競"
+ }, {
+ value: "152221",
+ text: "绉戝皵娌佸彸缈煎墠鏃�"
+ }, {
+ value: "152222",
+ text: "绉戝皵娌佸彸缈间腑鏃�"
+ }, {
+ value: "152223",
+ text: "鎵庤祲鐗规棗"
+ }, {
+ value: "152224",
+ text: "绐佹硥鍘�"
+ }, {
+ value: "152225",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "152500",
+ text: "閿℃灄閮嫆鐩�",
+ children: [{
+ value: "152501",
+ text: "浜岃繛娴╃壒甯�"
+ }, {
+ value: "152502",
+ text: "閿℃灄娴╃壒甯�"
+ }, {
+ value: "152522",
+ text: "闃垮反鍢庢棗"
+ }, {
+ value: "152523",
+ text: "鑻忓凹鐗瑰乏鏃�"
+ }, {
+ value: "152524",
+ text: "鑻忓凹鐗瑰彸鏃�"
+ }, {
+ value: "152525",
+ text: "涓滀箤鐝犵﹩娌佹棗"
+ }, {
+ value: "152526",
+ text: "瑗夸箤鐝犵﹩娌佹棗"
+ }, {
+ value: "152527",
+ text: "澶粏瀵烘棗"
+ }, {
+ value: "152528",
+ text: "闀堕粍鏃�"
+ }, {
+ value: "152529",
+ text: "姝i暥鐧芥棗"
+ }, {
+ value: "152530",
+ text: "姝h摑鏃�"
+ }, {
+ value: "152531",
+ text: "澶氫鸡鍘�"
+ }, {
+ value: "152532",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "152900",
+ text: "闃挎媺鍠勭洘",
+ children: [{
+ value: "152921",
+ text: "闃挎媺鍠勫乏鏃�"
+ }, {
+ value: "152922",
+ text: "闃挎媺鍠勫彸鏃�"
+ }, {
+ value: "152923",
+ text: "棰濇祹绾虫棗"
+ }, {
+ value: "152924",
+ text: "鍏跺畠鍖�"
+ }]
+ }]
+}, {
+ value: '210000',
+ text: '杈藉畞鐪�',
+ children: [{
+ value: "210100",
+ text: "娌堥槼甯�",
+ children: [{
+ value: "210102",
+ text: "鍜屽钩鍖�"
+ }, {
+ value: "210103",
+ text: "娌堟渤鍖�"
+ }, {
+ value: "210104",
+ text: "澶т笢鍖�"
+ }, {
+ value: "210105",
+ text: "鐨囧鍖�"
+ }, {
+ value: "210106",
+ text: "閾佽タ鍖�"
+ }, {
+ value: "210111",
+ text: "鑻忓灞尯"
+ }, {
+ value: "210112",
+ text: "涓滈櫟鍖�"
+ }, {
+ value: "210113",
+ text: "鏂板煄瀛愬尯"
+ }, {
+ value: "210114",
+ text: "浜庢椽鍖�"
+ }, {
+ value: "210122",
+ text: "杈戒腑鍘�"
+ }, {
+ value: "210123",
+ text: "搴峰钩鍘�"
+ }, {
+ value: "210124",
+ text: "娉曞簱鍘�"
+ }, {
+ value: "210181",
+ text: "鏂版皯甯�"
+ }, {
+ value: "210182",
+ text: "娴戝崡鏂板尯"
+ }, {
+ value: "210183",
+ text: "寮犲+寮�鍙戝尯"
+ }, {
+ value: "210184",
+ text: "娌堝寳鏂板尯"
+ }, {
+ value: "210185",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "210200",
+ text: "澶ц繛甯�",
+ children: [{
+ value: "210202",
+ text: "涓北鍖�"
+ }, {
+ value: "210203",
+ text: "瑗垮矖鍖�"
+ }, {
+ value: "210204",
+ text: "娌欐渤鍙e尯"
+ }, {
+ value: "210211",
+ text: "鐢樹簳瀛愬尯"
+ }, {
+ value: "210212",
+ text: "鏃呴『鍙e尯"
+ }, {
+ value: "210213",
+ text: "閲戝窞鍖�"
+ }, {
+ value: "210224",
+ text: "闀挎捣鍘�"
+ }, {
+ value: "210251",
+ text: "寮�鍙戝尯"
+ }, {
+ value: "210281",
+ text: "鐡︽埧搴楀競"
+ }, {
+ value: "210282",
+ text: "鏅叞搴楀競"
+ }, {
+ value: "210283",
+ text: "搴勬渤甯�"
+ }, {
+ value: "210297",
+ text: "宀墠鍖�"
+ }, {
+ value: "210298",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "210300",
+ text: "闉嶅北甯�",
+ children: [{
+ value: "210302",
+ text: "閾佷笢鍖�"
+ }, {
+ value: "210303",
+ text: "閾佽タ鍖�"
+ }, {
+ value: "210304",
+ text: "绔嬪北鍖�"
+ }, {
+ value: "210311",
+ text: "鍗冨北鍖�"
+ }, {
+ value: "210321",
+ text: "鍙板畨鍘�"
+ }, {
+ value: "210323",
+ text: "宀博婊℃棌鑷不鍘�"
+ }, {
+ value: "210351",
+ text: "楂樻柊鍖�"
+ }, {
+ value: "210381",
+ text: "娴峰煄甯�"
+ }, {
+ value: "210382",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "210400",
+ text: "鎶氶『甯�",
+ children: [{
+ value: "210402",
+ text: "鏂版姎鍖�"
+ }, {
+ value: "210403",
+ text: "涓滄床鍖�"
+ }, {
+ value: "210404",
+ text: "鏈涜姳鍖�"
+ }, {
+ value: "210411",
+ text: "椤哄煄鍖�"
+ }, {
+ value: "210421",
+ text: "鎶氶『鍘�"
+ }, {
+ value: "210422",
+ text: "鏂板婊℃棌鑷不鍘�"
+ }, {
+ value: "210423",
+ text: "娓呭師婊℃棌鑷不鍘�"
+ }, {
+ value: "210424",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "210500",
+ text: "鏈邯甯�",
+ children: [{
+ value: "210502",
+ text: "骞冲北鍖�"
+ }, {
+ value: "210503",
+ text: "婧箹鍖�"
+ }, {
+ value: "210504",
+ text: "鏄庡北鍖�"
+ }, {
+ value: "210505",
+ text: "鍗楄姮鍖�"
+ }, {
+ value: "210521",
+ text: "鏈邯婊℃棌鑷不鍘�"
+ }, {
+ value: "210522",
+ text: "妗撲粊婊℃棌鑷不鍘�"
+ }, {
+ value: "210523",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "210600",
+ text: "涓逛笢甯�",
+ children: [{
+ value: "210602",
+ text: "鍏冨疂鍖�"
+ }, {
+ value: "210603",
+ text: "鎸叴鍖�"
+ }, {
+ value: "210604",
+ text: "鎸畨鍖�"
+ }, {
+ value: "210624",
+ text: "瀹界敻婊℃棌鑷不鍘�"
+ }, {
+ value: "210681",
+ text: "涓滄腐甯�"
+ }, {
+ value: "210682",
+ text: "鍑ゅ煄甯�"
+ }, {
+ value: "210683",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "210700",
+ text: "閿﹀窞甯�",
+ children: [{
+ value: "210702",
+ text: "鍙ゅ鍖�"
+ }, {
+ value: "210703",
+ text: "鍑屾渤鍖�"
+ }, {
+ value: "210711",
+ text: "澶拰鍖�"
+ }, {
+ value: "210726",
+ text: "榛戝北鍘�"
+ }, {
+ value: "210727",
+ text: "涔夊幙"
+ }, {
+ value: "210781",
+ text: "鍑屾捣甯�"
+ }, {
+ value: "210782",
+ text: "鍖楅晣甯�"
+ }, {
+ value: "210783",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "210800",
+ text: "钀ュ彛甯�",
+ children: [{
+ value: "210802",
+ text: "绔欏墠鍖�"
+ }, {
+ value: "210803",
+ text: "瑗垮競鍖�"
+ }, {
+ value: "210804",
+ text: "椴呴奔鍦堝尯"
+ }, {
+ value: "210811",
+ text: "鑰佽竟鍖�"
+ }, {
+ value: "210881",
+ text: "鐩栧窞甯�"
+ }, {
+ value: "210882",
+ text: "澶х煶妗ュ競"
+ }, {
+ value: "210883",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "210900",
+ text: "闃滄柊甯�",
+ children: [{
+ value: "210902",
+ text: "娴峰窞鍖�"
+ }, {
+ value: "210903",
+ text: "鏂伴偙鍖�"
+ }, {
+ value: "210904",
+ text: "澶钩鍖�"
+ }, {
+ value: "210905",
+ text: "娓呮渤闂ㄥ尯"
+ }, {
+ value: "210911",
+ text: "缁嗘渤鍖�"
+ }, {
+ value: "210921",
+ text: "闃滄柊钂欏彜鏃忚嚜娌诲幙"
+ }, {
+ value: "210922",
+ text: "褰版鍘�"
+ }, {
+ value: "210923",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "211000",
+ text: "杈介槼甯�",
+ children: [{
+ value: "211002",
+ text: "鐧藉鍖�"
+ }, {
+ value: "211003",
+ text: "鏂囧湥鍖�"
+ }, {
+ value: "211004",
+ text: "瀹忎紵鍖�"
+ }, {
+ value: "211005",
+ text: "寮撻暱宀尯"
+ }, {
+ value: "211011",
+ text: "澶瓙娌冲尯"
+ }, {
+ value: "211021",
+ text: "杈介槼鍘�"
+ }, {
+ value: "211081",
+ text: "鐏甯�"
+ }, {
+ value: "211082",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "211100",
+ text: "鐩橀敠甯�",
+ children: [{
+ value: "211102",
+ text: "鍙屽彴瀛愬尯"
+ }, {
+ value: "211103",
+ text: "鍏撮殕鍙板尯"
+ }, {
+ value: "211121",
+ text: "澶ф醇鍘�"
+ }, {
+ value: "211122",
+ text: "鐩樺北鍘�"
+ }, {
+ value: "211123",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "211200",
+ text: "閾佸箔甯�",
+ children: [{
+ value: "211202",
+ text: "閾跺窞鍖�"
+ }, {
+ value: "211204",
+ text: "娓呮渤鍖�"
+ }, {
+ value: "211221",
+ text: "閾佸箔鍘�"
+ }, {
+ value: "211223",
+ text: "瑗夸赴鍘�"
+ }, {
+ value: "211224",
+ text: "鏄屽浘鍘�"
+ }, {
+ value: "211281",
+ text: "璋冨叺灞卞競"
+ }, {
+ value: "211282",
+ text: "寮�鍘熷競"
+ }, {
+ value: "211283",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "211300",
+ text: "鏈濋槼甯�",
+ children: [{
+ value: "211302",
+ text: "鍙屽鍖�"
+ }, {
+ value: "211303",
+ text: "榫欏煄鍖�"
+ }, {
+ value: "211321",
+ text: "鏈濋槼鍘�"
+ }, {
+ value: "211322",
+ text: "寤哄钩鍘�"
+ }, {
+ value: "211324",
+ text: "鍠�鍠囨瞾宸︾考钂欏彜鏃忚嚜娌诲幙"
+ }, {
+ value: "211381",
+ text: "鍖楃エ甯�"
+ }, {
+ value: "211382",
+ text: "鍑屾簮甯�"
+ }, {
+ value: "211383",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "211400",
+ text: "钁姦宀涘競",
+ children: [{
+ value: "211402",
+ text: "杩炲北鍖�"
+ }, {
+ value: "211403",
+ text: "榫欐腐鍖�"
+ }, {
+ value: "211404",
+ text: "鍗楃エ鍖�"
+ }, {
+ value: "211421",
+ text: "缁ヤ腑鍘�"
+ }, {
+ value: "211422",
+ text: "寤烘槍鍘�"
+ }, {
+ value: "211481",
+ text: "鍏村煄甯�"
+ }, {
+ value: "211482",
+ text: "鍏跺畠鍖�"
+ }]
+ }]
+}, {
+ value: '220000',
+ text: '鍚夋灄鐪�',
+ children: [{
+ value: "220100",
+ text: "闀挎槬甯�",
+ children: [{
+ value: "220102",
+ text: "鍗楀叧鍖�"
+ }, {
+ value: "220103",
+ text: "瀹藉煄鍖�"
+ }, {
+ value: "220104",
+ text: "鏈濋槼鍖�"
+ }, {
+ value: "220105",
+ text: "浜岄亾鍖�"
+ }, {
+ value: "220106",
+ text: "缁垮洯鍖�"
+ }, {
+ value: "220112",
+ text: "鍙岄槼鍖�"
+ }, {
+ value: "220122",
+ text: "鍐滃畨鍘�"
+ }, {
+ value: "220181",
+ text: "涔濆彴甯�"
+ }, {
+ value: "220182",
+ text: "姒嗘爲甯�"
+ }, {
+ value: "220183",
+ text: "寰锋儬甯�"
+ }, {
+ value: "220184",
+ text: "楂樻柊鎶�鏈骇涓氬紑鍙戝尯"
+ }, {
+ value: "220185",
+ text: "姹借溅浜т笟寮�鍙戝尯"
+ }, {
+ value: "220186",
+ text: "缁忔祹鎶�鏈紑鍙戝尯"
+ }, {
+ value: "220187",
+ text: "鍑�鏈堟梾娓稿紑鍙戝尯"
+ }, {
+ value: "220188",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "220200",
+ text: "鍚夋灄甯�",
+ children: [{
+ value: "220202",
+ text: "鏄岄倯鍖�"
+ }, {
+ value: "220203",
+ text: "榫欐江鍖�"
+ }, {
+ value: "220204",
+ text: "鑸硅惀鍖�"
+ }, {
+ value: "220211",
+ text: "涓版弧鍖�"
+ }, {
+ value: "220221",
+ text: "姘稿悏鍘�"
+ }, {
+ value: "220281",
+ text: "铔熸渤甯�"
+ }, {
+ value: "220282",
+ text: "妗︾敻甯�"
+ }, {
+ value: "220283",
+ text: "鑸掑叞甯�"
+ }, {
+ value: "220284",
+ text: "纾愮煶甯�"
+ }, {
+ value: "220285",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "220300",
+ text: "鍥涘钩甯�",
+ children: [{
+ value: "220302",
+ text: "閾佽タ鍖�"
+ }, {
+ value: "220303",
+ text: "閾佷笢鍖�"
+ }, {
+ value: "220322",
+ text: "姊ㄦ爲鍘�"
+ }, {
+ value: "220323",
+ text: "浼婇�氭弧鏃忚嚜娌诲幙"
+ }, {
+ value: "220381",
+ text: "鍏富宀競"
+ }, {
+ value: "220382",
+ text: "鍙岃窘甯�"
+ }, {
+ value: "220383",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "220400",
+ text: "杈芥簮甯�",
+ children: [{
+ value: "220402",
+ text: "榫欏北鍖�"
+ }, {
+ value: "220403",
+ text: "瑗垮畨鍖�"
+ }, {
+ value: "220421",
+ text: "涓滀赴鍘�"
+ }, {
+ value: "220422",
+ text: "涓滆窘鍘�"
+ }, {
+ value: "220423",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "220500",
+ text: "閫氬寲甯�",
+ children: [{
+ value: "220502",
+ text: "涓滄槍鍖�"
+ }, {
+ value: "220503",
+ text: "浜岄亾姹熷尯"
+ }, {
+ value: "220521",
+ text: "閫氬寲鍘�"
+ }, {
+ value: "220523",
+ text: "杈夊崡鍘�"
+ }, {
+ value: "220524",
+ text: "鏌虫渤鍘�"
+ }, {
+ value: "220581",
+ text: "姊呮渤鍙e競"
+ }, {
+ value: "220582",
+ text: "闆嗗畨甯�"
+ }, {
+ value: "220583",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "220600",
+ text: "鐧藉北甯�",
+ children: [{
+ value: "220602",
+ text: "鍏亾姹熷尯"
+ }, {
+ value: "220621",
+ text: "鎶氭澗鍘�"
+ }, {
+ value: "220622",
+ text: "闈栧畤鍘�"
+ }, {
+ value: "220623",
+ text: "闀跨櫧鏈濋矞鏃忚嚜娌诲幙"
+ }, {
+ value: "220625",
+ text: "姹熸簮甯�"
+ }, {
+ value: "220681",
+ text: "涓存睙甯�"
+ }, {
+ value: "220682",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "220700",
+ text: "鏉惧師甯�",
+ children: [{
+ value: "220702",
+ text: "瀹佹睙鍖�"
+ }, {
+ value: "220721",
+ text: "鍓嶉儹灏旂綏鏂挋鍙ゆ棌鑷不鍘�"
+ }, {
+ value: "220722",
+ text: "闀垮箔鍘�"
+ }, {
+ value: "220723",
+ text: "涔惧畨鍘�"
+ }, {
+ value: "220724",
+ text: "鎵朵綑鍘�"
+ }, {
+ value: "220725",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "220800",
+ text: "鐧藉煄甯�",
+ children: [{
+ value: "220802",
+ text: "娲寳鍖�"
+ }, {
+ value: "220821",
+ text: "闀囪祲鍘�"
+ }, {
+ value: "220822",
+ text: "閫氭鍘�"
+ }, {
+ value: "220881",
+ text: "娲崡甯�"
+ }, {
+ value: "220882",
+ text: "澶у畨甯�"
+ }, {
+ value: "220883",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "222400",
+ text: "寤惰竟鏈濋矞鏃忚嚜娌诲窞",
+ children: [{
+ value: "222401",
+ text: "寤跺悏甯�"
+ }, {
+ value: "222402",
+ text: "鍥句滑甯�"
+ }, {
+ value: "222403",
+ text: "鏁﹀寲甯�"
+ }, {
+ value: "222404",
+ text: "鐝叉槬甯�"
+ }, {
+ value: "222405",
+ text: "榫欎簳甯�"
+ }, {
+ value: "222406",
+ text: "鍜岄緳甯�"
+ }, {
+ value: "222424",
+ text: "姹竻鍘�"
+ }, {
+ value: "222426",
+ text: "瀹夊浘鍘�"
+ }, {
+ value: "222427",
+ text: "鍏跺畠鍖�"
+ }]
+ }]
+}, {
+ value: '230000',
+ text: '榛戦緳姹熺渷',
+ children: [{
+ value: "230100",
+ text: "鍝堝皵婊ㄥ競",
+ children: [{
+ value: "230102",
+ text: "閬撻噷鍖�"
+ }, {
+ value: "230103",
+ text: "鍗楀矖鍖�"
+ }, {
+ value: "230104",
+ text: "閬撳鍖�"
+ }, {
+ value: "230106",
+ text: "棣欏潑鍖�"
+ }, {
+ value: "230107",
+ text: "鍔ㄥ姏鍖�"
+ }, {
+ value: "230108",
+ text: "骞虫埧鍖�"
+ }, {
+ value: "230109",
+ text: "鏉惧寳鍖�"
+ }, {
+ value: "230111",
+ text: "鍛煎叞鍖�"
+ }, {
+ value: "230123",
+ text: "渚濆叞鍘�"
+ }, {
+ value: "230124",
+ text: "鏂规鍘�"
+ }, {
+ value: "230125",
+ text: "瀹惧幙"
+ }, {
+ value: "230126",
+ text: "宸村溅鍘�"
+ }, {
+ value: "230127",
+ text: "鏈ㄥ叞鍘�"
+ }, {
+ value: "230128",
+ text: "閫氭渤鍘�"
+ }, {
+ value: "230129",
+ text: "寤跺鍘�"
+ }, {
+ value: "230181",
+ text: "闃垮煄甯�"
+ }, {
+ value: "230182",
+ text: "鍙屽煄甯�"
+ }, {
+ value: "230183",
+ text: "灏氬織甯�"
+ }, {
+ value: "230184",
+ text: "浜斿父甯�"
+ }, {
+ value: "230185",
+ text: "闃垮煄甯�"
+ }, {
+ value: "230186",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "230200",
+ text: "榻愰綈鍝堝皵甯�",
+ children: [{
+ value: "230202",
+ text: "榫欐矙鍖�"
+ }, {
+ value: "230203",
+ text: "寤哄崕鍖�"
+ }, {
+ value: "230204",
+ text: "閾侀攱鍖�"
+ }, {
+ value: "230205",
+ text: "鏄傛槀婧尯"
+ }, {
+ value: "230206",
+ text: "瀵屾媺灏斿熀鍖�"
+ }, {
+ value: "230207",
+ text: "纰惧瓙灞卞尯"
+ }, {
+ value: "230208",
+ text: "姊呴噷鏂揪鏂″皵鏃忓尯"
+ }, {
+ value: "230221",
+ text: "榫欐睙鍘�"
+ }, {
+ value: "230223",
+ text: "渚濆畨鍘�"
+ }, {
+ value: "230224",
+ text: "娉版潵鍘�"
+ }, {
+ value: "230225",
+ text: "鐢樺崡鍘�"
+ }, {
+ value: "230227",
+ text: "瀵岃鍘�"
+ }, {
+ value: "230229",
+ text: "鍏嬪北鍘�"
+ }, {
+ value: "230230",
+ text: "鍏嬩笢鍘�"
+ }, {
+ value: "230231",
+ text: "鎷滄硥鍘�"
+ }, {
+ value: "230281",
+ text: "璁锋渤甯�"
+ }, {
+ value: "230282",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "230300",
+ text: "楦¤タ甯�",
+ children: [{
+ value: "230302",
+ text: "楦″啝鍖�"
+ }, {
+ value: "230303",
+ text: "鎭掑北鍖�"
+ }, {
+ value: "230304",
+ text: "婊撮亾鍖�"
+ }, {
+ value: "230305",
+ text: "姊ㄦ爲鍖�"
+ }, {
+ value: "230306",
+ text: "鍩庡瓙娌冲尯"
+ }, {
+ value: "230307",
+ text: "楹诲北鍖�"
+ }, {
+ value: "230321",
+ text: "楦′笢鍘�"
+ }, {
+ value: "230381",
+ text: "铏庢灄甯�"
+ }, {
+ value: "230382",
+ text: "瀵嗗北甯�"
+ }, {
+ value: "230383",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "230400",
+ text: "楣ゅ矖甯�",
+ children: [{
+ value: "230402",
+ text: "鍚戦槼鍖�"
+ }, {
+ value: "230403",
+ text: "宸ュ啘鍖�"
+ }, {
+ value: "230404",
+ text: "鍗楀北鍖�"
+ }, {
+ value: "230405",
+ text: "鍏村畨鍖�"
+ }, {
+ value: "230406",
+ text: "涓滃北鍖�"
+ }, {
+ value: "230407",
+ text: "鍏村北鍖�"
+ }, {
+ value: "230421",
+ text: "钀濆寳鍘�"
+ }, {
+ value: "230422",
+ text: "缁ユ花鍘�"
+ }, {
+ value: "230423",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "230500",
+ text: "鍙岄腑灞卞競",
+ children: [{
+ value: "230502",
+ text: "灏栧北鍖�"
+ }, {
+ value: "230503",
+ text: "宀笢鍖�"
+ }, {
+ value: "230505",
+ text: "鍥涙柟鍙板尯"
+ }, {
+ value: "230506",
+ text: "瀹濆北鍖�"
+ }, {
+ value: "230521",
+ text: "闆嗚搐鍘�"
+ }, {
+ value: "230522",
+ text: "鍙嬭皧鍘�"
+ }, {
+ value: "230523",
+ text: "瀹濇竻鍘�"
+ }, {
+ value: "230524",
+ text: "楗舵渤鍘�"
+ }, {
+ value: "230525",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "230600",
+ text: "澶у簡甯�",
+ children: [{
+ value: "230602",
+ text: "钀ㄥ皵鍥惧尯"
+ }, {
+ value: "230603",
+ text: "榫欏嚖鍖�"
+ }, {
+ value: "230604",
+ text: "璁╄儭璺尯"
+ }, {
+ value: "230605",
+ text: "绾㈠矖鍖�"
+ }, {
+ value: "230606",
+ text: "澶у悓鍖�"
+ }, {
+ value: "230621",
+ text: "鑲囧窞鍘�"
+ }, {
+ value: "230622",
+ text: "鑲囨簮鍘�"
+ }, {
+ value: "230623",
+ text: "鏋楃敻鍘�"
+ }, {
+ value: "230624",
+ text: "鏉滃皵浼壒钂欏彜鏃忚嚜娌诲幙"
+ }, {
+ value: "230625",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "230700",
+ text: "浼婃槬甯�",
+ children: [{
+ value: "230702",
+ text: "浼婃槬鍖�"
+ }, {
+ value: "230703",
+ text: "鍗楀矓鍖�"
+ }, {
+ value: "230704",
+ text: "鍙嬪ソ鍖�"
+ }, {
+ value: "230705",
+ text: "瑗挎灄鍖�"
+ }, {
+ value: "230706",
+ text: "缈犲肠鍖�"
+ }, {
+ value: "230707",
+ text: "鏂伴潚鍖�"
+ }, {
+ value: "230708",
+ text: "缇庢邯鍖�"
+ }, {
+ value: "230709",
+ text: "閲戝北灞尯"
+ }, {
+ value: "230710",
+ text: "浜旇惀鍖�"
+ }, {
+ value: "230711",
+ text: "涔岄┈娌冲尯"
+ }, {
+ value: "230712",
+ text: "姹ゆ椇娌冲尯"
+ }, {
+ value: "230713",
+ text: "甯﹀箔鍖�"
+ }, {
+ value: "230714",
+ text: "涔屼紛宀尯"
+ }, {
+ value: "230715",
+ text: "绾㈡槦鍖�"
+ }, {
+ value: "230716",
+ text: "涓婄敇宀尯"
+ }, {
+ value: "230722",
+ text: "鍢夎崼鍘�"
+ }, {
+ value: "230781",
+ text: "閾佸姏甯�"
+ }, {
+ value: "230782",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "230800",
+ text: "浣虫湪鏂競",
+ children: [{
+ value: "230802",
+ text: "姘哥孩鍖�"
+ }, {
+ value: "230803",
+ text: "鍚戦槼鍖�"
+ }, {
+ value: "230804",
+ text: "鍓嶈繘鍖�"
+ }, {
+ value: "230805",
+ text: "涓滈鍖�"
+ }, {
+ value: "230811",
+ text: "閮婂尯"
+ }, {
+ value: "230822",
+ text: "妗﹀崡鍘�"
+ }, {
+ value: "230826",
+ text: "妗﹀窛鍘�"
+ }, {
+ value: "230828",
+ text: "姹ゅ師鍘�"
+ }, {
+ value: "230833",
+ text: "鎶氳繙鍘�"
+ }, {
+ value: "230881",
+ text: "鍚屾睙甯�"
+ }, {
+ value: "230882",
+ text: "瀵岄敠甯�"
+ }, {
+ value: "230883",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "230900",
+ text: "涓冨彴娌冲競",
+ children: [{
+ value: "230902",
+ text: "鏂板叴鍖�"
+ }, {
+ value: "230903",
+ text: "妗冨北鍖�"
+ }, {
+ value: "230904",
+ text: "鑼勫瓙娌冲尯"
+ }, {
+ value: "230921",
+ text: "鍕冨埄鍘�"
+ }, {
+ value: "230922",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "231000",
+ text: "鐗′腹姹熷競",
+ children: [{
+ value: "231002",
+ text: "涓滃畨鍖�"
+ }, {
+ value: "231003",
+ text: "闃虫槑鍖�"
+ }, {
+ value: "231004",
+ text: "鐖辨皯鍖�"
+ }, {
+ value: "231005",
+ text: "瑗垮畨鍖�"
+ }, {
+ value: "231024",
+ text: "涓滃畞鍘�"
+ }, {
+ value: "231025",
+ text: "鏋楀彛鍘�"
+ }, {
+ value: "231081",
+ text: "缁ヨ姮娌冲競"
+ }, {
+ value: "231083",
+ text: "娴锋灄甯�"
+ }, {
+ value: "231084",
+ text: "瀹佸畨甯�"
+ }, {
+ value: "231085",
+ text: "绌嗘1甯�"
+ }, {
+ value: "231086",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "231100",
+ text: "榛戞渤甯�",
+ children: [{
+ value: "231102",
+ text: "鐖辫緣鍖�"
+ }, {
+ value: "231121",
+ text: "瀚╂睙鍘�"
+ }, {
+ value: "231123",
+ text: "閫婂厠鍘�"
+ }, {
+ value: "231124",
+ text: "瀛欏惔鍘�"
+ }, {
+ value: "231181",
+ text: "鍖楀畨甯�"
+ }, {
+ value: "231182",
+ text: "浜斿ぇ杩炴睜甯�"
+ }, {
+ value: "231183",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "231200",
+ text: "缁ュ寲甯�",
+ children: [{
+ value: "231202",
+ text: "鍖楁灄鍖�"
+ }, {
+ value: "231221",
+ text: "鏈涘鍘�"
+ }, {
+ value: "231222",
+ text: "鍏拌タ鍘�"
+ }, {
+ value: "231223",
+ text: "闈掑唸鍘�"
+ }, {
+ value: "231224",
+ text: "搴嗗畨鍘�"
+ }, {
+ value: "231225",
+ text: "鏄庢按鍘�"
+ }, {
+ value: "231226",
+ text: "缁ユ1鍘�"
+ }, {
+ value: "231281",
+ text: "瀹夎揪甯�"
+ }, {
+ value: "231282",
+ text: "鑲囦笢甯�"
+ }, {
+ value: "231283",
+ text: "娴蜂鸡甯�"
+ }, {
+ value: "231284",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "232700",
+ text: "澶у叴瀹夊箔鍦板尯",
+ children: [{
+ value: "232721",
+ text: "鍛肩帥鍘�"
+ }, {
+ value: "232722",
+ text: "濉旀渤鍘�"
+ }, {
+ value: "232723",
+ text: "婕犳渤鍘�"
+ }, {
+ value: "232724",
+ text: "鍔犳牸杈惧鍖�"
+ }, {
+ value: "232725",
+ text: "鍏跺畠鍖�"
+ }]
+ }]
+}, {
+ value: '310000',
+ text: '涓婃捣甯�',
+ children: [{
+ value: '310100',
+ text: '涓婃捣甯�',
+ children: [{
+ value: "310101",
+ text: "榛勬郸鍖�"
+ }, {
+ value: "310103",
+ text: "鍗㈡咕鍖�"
+ }, {
+ value: "310104",
+ text: "寰愭眹鍖�"
+ }, {
+ value: "310105",
+ text: "闀垮畞鍖�"
+ }, {
+ value: "310106",
+ text: "闈欏畨鍖�"
+ }, {
+ value: "310107",
+ text: "鏅檧鍖�"
+ }, {
+ value: "310108",
+ text: "闂稿寳鍖�"
+ }, {
+ value: "310109",
+ text: "铏瑰彛鍖�"
+ }, {
+ value: "310110",
+ text: "鏉ㄦ郸鍖�"
+ }, {
+ value: "310112",
+ text: "闂佃鍖�"
+ }, {
+ value: "310113",
+ text: "瀹濆北鍖�"
+ }, {
+ value: "310114",
+ text: "鍢夊畾鍖�"
+ }, {
+ value: "310115",
+ text: "娴︿笢鏂板尯"
+ }, {
+ value: "310116",
+ text: "閲戝北鍖�"
+ }, {
+ value: "310117",
+ text: "鏉炬睙鍖�"
+ }, {
+ value: "310118",
+ text: "闈掓郸鍖�"
+ }, {
+ value: "310119",
+ text: "鍗楁眹鍖�"
+ }, {
+ value: "310120",
+ text: "濂夎搐鍖�"
+ }, {
+ value: "310152",
+ text: "宸濇矙鍖�"
+ }, {
+ value: "310230",
+ text: "宕囨槑鍘�"
+ }, {
+ value: "310231",
+ text: "鍏跺畠鍖�"
+ }]
+ }]
+}, {
+ value: '320000',
+ text: '姹熻嫃鐪�',
+ children: [{
+ value: "320100",
+ text: "鍗椾含甯�",
+ children: [{
+ value: "320102",
+ text: "鐜勬鍖�"
+ }, {
+ value: "320103",
+ text: "鐧戒笅鍖�"
+ }, {
+ value: "320104",
+ text: "绉︽樊鍖�"
+ }, {
+ value: "320105",
+ text: "寤洪偤鍖�"
+ }, {
+ value: "320106",
+ text: "榧撴ゼ鍖�"
+ }, {
+ value: "320107",
+ text: "涓嬪叧鍖�"
+ }, {
+ value: "320111",
+ text: "娴﹀彛鍖�"
+ }, {
+ value: "320113",
+ text: "鏍栭湠鍖�"
+ }, {
+ value: "320114",
+ text: "闆ㄨ姳鍙板尯"
+ }, {
+ value: "320115",
+ text: "姹熷畞鍖�"
+ }, {
+ value: "320116",
+ text: "鍏悎鍖�"
+ }, {
+ value: "320124",
+ text: "婧ф按鍘�"
+ }, {
+ value: "320125",
+ text: "楂樻烦鍘�"
+ }, {
+ value: "320126",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "320200",
+ text: "鏃犻敗甯�",
+ children: [{
+ value: "320202",
+ text: "宕囧畨鍖�"
+ }, {
+ value: "320203",
+ text: "鍗楅暱鍖�"
+ }, {
+ value: "320204",
+ text: "鍖楀鍖�"
+ }, {
+ value: "320205",
+ text: "閿″北鍖�"
+ }, {
+ value: "320206",
+ text: "鎯犲北鍖�"
+ }, {
+ value: "320211",
+ text: "婊ㄦ箹鍖�"
+ }, {
+ value: "320281",
+ text: "姹熼槾甯�"
+ }, {
+ value: "320282",
+ text: "瀹滃叴甯�"
+ }, {
+ value: "320296",
+ text: "鏂板尯"
+ }, {
+ value: "320297",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "320300",
+ text: "寰愬窞甯�",
+ children: [{
+ value: "320302",
+ text: "榧撴ゼ鍖�"
+ }, {
+ value: "320303",
+ text: "浜戦緳鍖�"
+ }, {
+ value: "320304",
+ text: "涔濋噷鍖�"
+ }, {
+ value: "320305",
+ text: "璐炬豹鍖�"
+ }, {
+ value: "320311",
+ text: "娉夊北鍖�"
+ }, {
+ value: "320321",
+ text: "涓板幙"
+ }, {
+ value: "320322",
+ text: "娌涘幙"
+ }, {
+ value: "320323",
+ text: "閾滃北鍘�"
+ }, {
+ value: "320324",
+ text: "鐫㈠畞鍘�"
+ }, {
+ value: "320381",
+ text: "鏂版矀甯�"
+ }, {
+ value: "320382",
+ text: "閭冲窞甯�"
+ }, {
+ value: "320383",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "320400",
+ text: "甯稿窞甯�",
+ children: [{
+ value: "320402",
+ text: "澶╁畞鍖�"
+ }, {
+ value: "320404",
+ text: "閽熸ゼ鍖�"
+ }, {
+ value: "320405",
+ text: "鎴氬鍫板尯"
+ }, {
+ value: "320411",
+ text: "鏂板寳鍖�"
+ }, {
+ value: "320412",
+ text: "姝﹁繘鍖�"
+ }, {
+ value: "320481",
+ text: "婧ч槼甯�"
+ }, {
+ value: "320482",
+ text: "閲戝潧甯�"
+ }, {
+ value: "320483",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "320500",
+ text: "鑻忓窞甯�",
+ children: [{
+ value: "320502",
+ text: "娌ф氮鍖�"
+ }, {
+ value: "320503",
+ text: "骞虫睙鍖�"
+ }, {
+ value: "320504",
+ text: "閲戦槉鍖�"
+ }, {
+ value: "320505",
+ text: "铏庝笜鍖�"
+ }, {
+ value: "320506",
+ text: "鍚翠腑鍖�"
+ }, {
+ value: "320507",
+ text: "鐩稿煄鍖�"
+ }, {
+ value: "320581",
+ text: "甯哥啛甯�"
+ }, {
+ value: "320582",
+ text: "寮犲娓競"
+ }, {
+ value: "320583",
+ text: "鏄嗗北甯�"
+ }, {
+ value: "320584",
+ text: "鍚存睙甯�"
+ }, {
+ value: "320585",
+ text: "澶粨甯�"
+ }, {
+ value: "320594",
+ text: "鏂板尯"
+ }, {
+ value: "320595",
+ text: "鍥尯"
+ }, {
+ value: "320596",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "320600",
+ text: "鍗楅�氬競",
+ children: [{
+ value: "320602",
+ text: "宕囧窛鍖�"
+ }, {
+ value: "320611",
+ text: "娓椄鍖�"
+ }, {
+ value: "320612",
+ text: "閫氬窞鍖�"
+ }, {
+ value: "320621",
+ text: "娴峰畨鍘�"
+ }, {
+ value: "320623",
+ text: "濡備笢鍘�"
+ }, {
+ value: "320681",
+ text: "鍚笢甯�"
+ }, {
+ value: "320682",
+ text: "濡傜殝甯�"
+ }, {
+ value: "320683",
+ text: "閫氬窞甯�"
+ }, {
+ value: "320684",
+ text: "娴烽棬甯�"
+ }, {
+ value: "320693",
+ text: "寮�鍙戝尯"
+ }, {
+ value: "320694",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "320700",
+ text: "杩炰簯娓競",
+ children: [{
+ value: "320703",
+ text: "杩炰簯鍖�"
+ }, {
+ value: "320705",
+ text: "鏂版郸鍖�"
+ }, {
+ value: "320706",
+ text: "娴峰窞鍖�"
+ }, {
+ value: "320721",
+ text: "璧f鍘�"
+ }, {
+ value: "320722",
+ text: "涓滄捣鍘�"
+ }, {
+ value: "320723",
+ text: "鐏屼簯鍘�"
+ }, {
+ value: "320724",
+ text: "鐏屽崡鍘�"
+ }, {
+ value: "320725",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "320800",
+ text: "娣畨甯�",
+ children: [{
+ value: "320802",
+ text: "娓呮渤鍖�"
+ }, {
+ value: "320803",
+ text: "妤氬窞鍖�"
+ }, {
+ value: "320804",
+ text: "娣槾鍖�"
+ }, {
+ value: "320811",
+ text: "娓呮郸鍖�"
+ }, {
+ value: "320826",
+ text: "娑熸按鍘�"
+ }, {
+ value: "320829",
+ text: "娲辰鍘�"
+ }, {
+ value: "320830",
+ text: "鐩辩湙鍘�"
+ }, {
+ value: "320831",
+ text: "閲戞箹鍘�"
+ }, {
+ value: "320832",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "320900",
+ text: "鐩愬煄甯�",
+ children: [{
+ value: "320902",
+ text: "浜箹鍖�"
+ }, {
+ value: "320903",
+ text: "鐩愰兘鍖�"
+ }, {
+ value: "320921",
+ text: "鍝嶆按鍘�"
+ }, {
+ value: "320922",
+ text: "婊ㄦ捣鍘�"
+ }, {
+ value: "320923",
+ text: "闃滃畞鍘�"
+ }, {
+ value: "320924",
+ text: "灏勯槼鍘�"
+ }, {
+ value: "320925",
+ text: "寤烘箹鍘�"
+ }, {
+ value: "320981",
+ text: "涓滃彴甯�"
+ }, {
+ value: "320982",
+ text: "澶т赴甯�"
+ }, {
+ value: "320983",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "321000",
+ text: "鎵窞甯�",
+ children: [{
+ value: "321002",
+ text: "骞块櫟鍖�"
+ }, {
+ value: "321003",
+ text: "閭楁睙鍖�"
+ }, {
+ value: "321011",
+ text: "缁存壃鍖�"
+ }, {
+ value: "321023",
+ text: "瀹濆簲鍘�"
+ }, {
+ value: "321081",
+ text: "浠緛甯�"
+ }, {
+ value: "321084",
+ text: "楂橀偖甯�"
+ }, {
+ value: "321088",
+ text: "姹熼兘甯�"
+ }, {
+ value: "321092",
+ text: "缁忔祹寮�鍙戝尯"
+ }, {
+ value: "321093",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "321100",
+ text: "闀囨睙甯�",
+ children: [{
+ value: "321102",
+ text: "浜彛鍖�"
+ }, {
+ value: "321111",
+ text: "娑﹀窞鍖�"
+ }, {
+ value: "321112",
+ text: "涓瑰緬鍖�"
+ }, {
+ value: "321181",
+ text: "涓归槼甯�"
+ }, {
+ value: "321182",
+ text: "鎵腑甯�"
+ }, {
+ value: "321183",
+ text: "鍙ュ甯�"
+ }, {
+ value: "321184",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "321200",
+ text: "娉板窞甯�",
+ children: [{
+ value: "321202",
+ text: "娴烽櫟鍖�"
+ }, {
+ value: "321203",
+ text: "楂樻腐鍖�"
+ }, {
+ value: "321281",
+ text: "鍏村寲甯�"
+ }, {
+ value: "321282",
+ text: "闈栨睙甯�"
+ }, {
+ value: "321283",
+ text: "娉板叴甯�"
+ }, {
+ value: "321284",
+ text: "濮滃牥甯�"
+ }, {
+ value: "321285",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "321300",
+ text: "瀹胯縼甯�",
+ children: [{
+ value: "321302",
+ text: "瀹垮煄鍖�"
+ }, {
+ value: "321311",
+ text: "瀹胯鲍鍖�"
+ }, {
+ value: "321322",
+ text: "娌槼鍘�"
+ }, {
+ value: "321323",
+ text: "娉楅槼鍘�"
+ }, {
+ value: "321324",
+ text: "娉楁椽鍘�"
+ }, {
+ value: "321325",
+ text: "鍏跺畠鍖�"
+ }]
+ }]
+}, {
+ value: '330000',
+ text: '娴欐睙鐪�',
+ children: [{
+ value: "330100",
+ text: "鏉窞甯�",
+ children: [{
+ value: "330102",
+ text: "涓婂煄鍖�"
+ }, {
+ value: "330103",
+ text: "涓嬪煄鍖�"
+ }, {
+ value: "330104",
+ text: "姹熷共鍖�"
+ }, {
+ value: "330105",
+ text: "鎷卞鍖�"
+ }, {
+ value: "330106",
+ text: "瑗挎箹鍖�"
+ }, {
+ value: "330108",
+ text: "婊ㄦ睙鍖�"
+ }, {
+ value: "330109",
+ text: "钀у北鍖�"
+ }, {
+ value: "330110",
+ text: "浣欐澀鍖�"
+ }, {
+ value: "330122",
+ text: "妗愬簮鍘�"
+ }, {
+ value: "330127",
+ text: "娣冲畨鍘�"
+ }, {
+ value: "330182",
+ text: "寤哄痉甯�"
+ }, {
+ value: "330183",
+ text: "瀵岄槼甯�"
+ }, {
+ value: "330185",
+ text: "涓村畨甯�"
+ }, {
+ value: "330186",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "330200",
+ text: "瀹佹尝甯�",
+ children: [{
+ value: "330203",
+ text: "娴锋洐鍖�"
+ }, {
+ value: "330204",
+ text: "姹熶笢鍖�"
+ }, {
+ value: "330205",
+ text: "姹熷寳鍖�"
+ }, {
+ value: "330206",
+ text: "鍖椾粦鍖�"
+ }, {
+ value: "330211",
+ text: "闀囨捣鍖�"
+ }, {
+ value: "330212",
+ text: "閯炲窞鍖�"
+ }, {
+ value: "330225",
+ text: "璞″北鍘�"
+ }, {
+ value: "330226",
+ text: "瀹佹捣鍘�"
+ }, {
+ value: "330281",
+ text: "浣欏甯�"
+ }, {
+ value: "330282",
+ text: "鎱堟邯甯�"
+ }, {
+ value: "330283",
+ text: "濂夊寲甯�"
+ }, {
+ value: "330284",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "330300",
+ text: "娓╁窞甯�",
+ children: [{
+ value: "330302",
+ text: "楣垮煄鍖�"
+ }, {
+ value: "330303",
+ text: "榫欐咕鍖�"
+ }, {
+ value: "330304",
+ text: "鐡捣鍖�"
+ }, {
+ value: "330322",
+ text: "娲炲ご鍘�"
+ }, {
+ value: "330324",
+ text: "姘稿槈鍘�"
+ }, {
+ value: "330326",
+ text: "骞抽槼鍘�"
+ }, {
+ value: "330327",
+ text: "鑻嶅崡鍘�"
+ }, {
+ value: "330328",
+ text: "鏂囨垚鍘�"
+ }, {
+ value: "330329",
+ text: "娉伴『鍘�"
+ }, {
+ value: "330381",
+ text: "鐟炲畨甯�"
+ }, {
+ value: "330382",
+ text: "涔愭竻甯�"
+ }, {
+ value: "330383",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "330400",
+ text: "鍢夊叴甯�",
+ children: [{
+ value: "330402",
+ text: "鍗楁箹鍖�"
+ }, {
+ value: "330411",
+ text: "绉�娲插尯"
+ }, {
+ value: "330421",
+ text: "鍢夊杽鍘�"
+ }, {
+ value: "330424",
+ text: "娴风洂鍘�"
+ }, {
+ value: "330481",
+ text: "娴峰畞甯�"
+ }, {
+ value: "330482",
+ text: "骞虫箹甯�"
+ }, {
+ value: "330483",
+ text: "妗愪埂甯�"
+ }, {
+ value: "330484",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "330500",
+ text: "婀栧窞甯�",
+ children: [{
+ value: "330502",
+ text: "鍚村叴鍖�"
+ }, {
+ value: "330503",
+ text: "鍗楁禂鍖�"
+ }, {
+ value: "330521",
+ text: "寰锋竻鍘�"
+ }, {
+ value: "330522",
+ text: "闀垮叴鍘�"
+ }, {
+ value: "330523",
+ text: "瀹夊悏鍘�"
+ }, {
+ value: "330524",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "330600",
+ text: "缁嶅叴甯�",
+ children: [{
+ value: "330602",
+ text: "瓒婂煄鍖�"
+ }, {
+ value: "330621",
+ text: "鏌ˉ鍖�"
+ }, {
+ value: "330624",
+ text: "鏂版槍鍘�"
+ }, {
+ value: "330681",
+ text: "璇告毃甯�"
+ }, {
+ value: "330682",
+ text: "涓婅櫈鍖�"
+ }, {
+ value: "330683",
+ text: "宓婂窞甯�"
+ }, {
+ value: "330684",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "330700",
+ text: "閲戝崕甯�",
+ children: [{
+ value: "330702",
+ text: "濠哄煄鍖�"
+ }, {
+ value: "330703",
+ text: "閲戜笢鍖�"
+ }, {
+ value: "330723",
+ text: "姝︿箟鍘�"
+ }, {
+ value: "330726",
+ text: "娴︽睙鍘�"
+ }, {
+ value: "330727",
+ text: "纾愬畨鍘�"
+ }, {
+ value: "330781",
+ text: "鍏版邯甯�"
+ }, {
+ value: "330782",
+ text: "涔変箤甯�"
+ }, {
+ value: "330783",
+ text: "涓滈槼甯�"
+ }, {
+ value: "330784",
+ text: "姘稿悍甯�"
+ }, {
+ value: "330785",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "330800",
+ text: "琛㈠窞甯�",
+ children: [{
+ value: "330802",
+ text: "鏌煄鍖�"
+ }, {
+ value: "330803",
+ text: "琛㈡睙鍖�"
+ }, {
+ value: "330822",
+ text: "甯稿北鍘�"
+ }, {
+ value: "330824",
+ text: "寮�鍖栧幙"
+ }, {
+ value: "330825",
+ text: "榫欐父鍘�"
+ }, {
+ value: "330881",
+ text: "姹熷北甯�"
+ }, {
+ value: "330882",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "330900",
+ text: "鑸熷北甯�",
+ children: [{
+ value: "330902",
+ text: "瀹氭捣鍖�"
+ }, {
+ value: "330903",
+ text: "鏅檧鍖�"
+ }, {
+ value: "330921",
+ text: "宀卞北鍘�"
+ }, {
+ value: "330922",
+ text: "宓婃硹鍘�"
+ }, {
+ value: "330923",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "331000",
+ text: "鍙板窞甯�",
+ children: [{
+ value: "331002",
+ text: "妞掓睙鍖�"
+ }, {
+ value: "331003",
+ text: "榛勫博鍖�"
+ }, {
+ value: "331004",
+ text: "璺ˉ鍖�"
+ }, {
+ value: "331021",
+ text: "鐜夌幆鍘�"
+ }, {
+ value: "331022",
+ text: "涓夐棬鍘�"
+ }, {
+ value: "331023",
+ text: "澶╁彴鍘�"
+ }, {
+ value: "331024",
+ text: "浠欏眳鍘�"
+ }, {
+ value: "331081",
+ text: "娓╁箔甯�"
+ }, {
+ value: "331082",
+ text: "涓存捣甯�"
+ }, {
+ value: "331083",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "331100",
+ text: "涓芥按甯�",
+ children: [{
+ value: "331102",
+ text: "鑾查兘鍖�"
+ }, {
+ value: "331121",
+ text: "闈掔敯鍘�"
+ }, {
+ value: "331122",
+ text: "缂欎簯鍘�"
+ }, {
+ value: "331123",
+ text: "閬傛槍鍘�"
+ }, {
+ value: "331124",
+ text: "鏉鹃槼鍘�"
+ }, {
+ value: "331125",
+ text: "浜戝拰鍘�"
+ }, {
+ value: "331126",
+ text: "搴嗗厓鍘�"
+ }, {
+ value: "331127",
+ text: "鏅畞鐣叉棌鑷不鍘�"
+ }, {
+ value: "331181",
+ text: "榫欐硥甯�"
+ }, {
+ value: "331182",
+ text: "鍏跺畠鍖�"
+ }]
+ }]
+}, {
+ value: '340000',
+ text: '瀹夊窘鐪�',
+ children: [{
+ value: "340100",
+ text: "鍚堣偉甯�",
+ children: [{
+ value: "340102",
+ text: "鐟舵捣鍖�"
+ }, {
+ value: "340103",
+ text: "搴愰槼鍖�"
+ }, {
+ value: "340104",
+ text: "铚�灞卞尯"
+ }, {
+ value: "340111",
+ text: "鍖呮渤鍖�"
+ }, {
+ value: "340121",
+ text: "闀夸赴鍘�"
+ }, {
+ value: "340122",
+ text: "鑲ヤ笢鍘�"
+ }, {
+ value: "340123",
+ text: "鑲ヨタ鍘�"
+ }, {
+ value: "340151",
+ text: "楂樻柊鍖�"
+ }, {
+ value: "340191",
+ text: "涓尯"
+ }, {
+ value: "340192",
+ text: "鍏跺畠鍖�"
+ }, {
+ value: "341400",
+ text: "宸㈡箹甯�"
+ }, {
+ value: "341402",
+ text: "灞呭发鍖�"
+ }, {
+ value: "341421",
+ text: "搴愭睙鍘�"
+ }]
+ }, {
+ value: "340200",
+ text: "鑺滄箹甯�",
+ children: [{
+ value: "340202",
+ text: "闀滄箹鍖�"
+ }, {
+ value: "340203",
+ text: "寮嬫睙鍖�"
+ }, {
+ value: "340207",
+ text: "楦犳睙鍖�"
+ }, {
+ value: "340208",
+ text: "涓夊北鍖�"
+ }, {
+ value: "340221",
+ text: "鑺滄箹鍘�"
+ }, {
+ value: "340222",
+ text: "绻佹槍鍘�"
+ }, {
+ value: "340223",
+ text: "鍗楅櫟鍘�"
+ }, {
+ value: "340224",
+ text: "鍏跺畠鍖�"
+ }, {
+ value: "341422",
+ text: "鏃犱负鍘�"
+ }]
+ }, {
+ value: "340300",
+ text: "铓屽煚甯�",
+ children: [{
+ value: "340302",
+ text: "榫欏瓙婀栧尯"
+ }, {
+ value: "340303",
+ text: "铓屽北鍖�"
+ }, {
+ value: "340304",
+ text: "绂逛細鍖�"
+ }, {
+ value: "340311",
+ text: "娣笂鍖�"
+ }, {
+ value: "340321",
+ text: "鎬�杩滃幙"
+ }, {
+ value: "340322",
+ text: "浜旀渤鍘�"
+ }, {
+ value: "340323",
+ text: "鍥洪晣鍘�"
+ }, {
+ value: "340324",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "340400",
+ text: "娣崡甯�",
+ children: [{
+ value: "340402",
+ text: "澶ч�氬尯"
+ }, {
+ value: "340403",
+ text: "鐢板搴靛尯"
+ }, {
+ value: "340404",
+ text: "璋㈠闆嗗尯"
+ }, {
+ value: "340405",
+ text: "鍏叕灞卞尯"
+ }, {
+ value: "340406",
+ text: "娼橀泦鍖�"
+ }, {
+ value: "340421",
+ text: "鍑ゅ彴鍘�"
+ }, {
+ value: "340422",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "340500",
+ text: "椹瀺灞卞競",
+ children: [{
+ value: "340502",
+ text: "閲戝搴勫尯"
+ }, {
+ value: "340503",
+ text: "鑺卞北鍖�"
+ }, {
+ value: "340504",
+ text: "闆ㄥ北鍖�"
+ }, {
+ value: "340521",
+ text: "褰撴秱鍘�"
+ }, {
+ value: "340522",
+ text: "鍏跺畠鍖�"
+ }, {
+ value: "341423",
+ text: "鍚北鍘�"
+ }, {
+ value: "341424",
+ text: "鍜屽幙"
+ }]
+ }, {
+ value: "340600",
+ text: "娣寳甯�",
+ children: [{
+ value: "340602",
+ text: "鏉滈泦鍖�"
+ }, {
+ value: "340603",
+ text: "鐩稿北鍖�"
+ }, {
+ value: "340604",
+ text: "鐑堝北鍖�"
+ }, {
+ value: "340621",
+ text: "婵夋邯鍘�"
+ }, {
+ value: "340622",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "340700",
+ text: "閾滈櫟甯�",
+ children: [{
+ value: "340702",
+ text: "閾滃畼灞卞尯"
+ }, {
+ value: "340703",
+ text: "鐙瓙灞卞尯"
+ }, {
+ value: "340711",
+ text: "閮婂尯"
+ }, {
+ value: "340721",
+ text: "閾滈櫟鍘�"
+ }, {
+ value: "340722",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "340800",
+ text: "瀹夊簡甯�",
+ children: [{
+ value: "340802",
+ text: "杩庢睙鍖�"
+ }, {
+ value: "340803",
+ text: "澶ц鍖�"
+ }, {
+ value: "340811",
+ text: "瀹滅鍖�"
+ }, {
+ value: "340822",
+ text: "鎬�瀹佸幙"
+ }, {
+ value: "340823",
+ text: "鏋為槼鍘�"
+ }, {
+ value: "340824",
+ text: "娼滃北鍘�"
+ }, {
+ value: "340825",
+ text: "澶箹鍘�"
+ }, {
+ value: "340826",
+ text: "瀹挎澗鍘�"
+ }, {
+ value: "340827",
+ text: "鏈涙睙鍘�"
+ }, {
+ value: "340828",
+ text: "宀宠タ鍘�"
+ }, {
+ value: "340881",
+ text: "妗愬煄甯�"
+ }, {
+ value: "340882",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "341000",
+ text: "榛勫北甯�",
+ children: [{
+ value: "341002",
+ text: "灞邯鍖�"
+ }, {
+ value: "341003",
+ text: "榛勫北鍖�"
+ }, {
+ value: "341004",
+ text: "寰藉窞鍖�"
+ }, {
+ value: "341021",
+ text: "姝欏幙"
+ }, {
+ value: "341022",
+ text: "浼戝畞鍘�"
+ }, {
+ value: "341023",
+ text: "榛熷幙"
+ }, {
+ value: "341024",
+ text: "绁侀棬鍘�"
+ }, {
+ value: "341025",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "341100",
+ text: "婊佸窞甯�",
+ children: [{
+ value: "341102",
+ text: "鐞呯悐鍖�"
+ }, {
+ value: "341103",
+ text: "鍗楄隘鍖�"
+ }, {
+ value: "341122",
+ text: "鏉ュ畨鍘�"
+ }, {
+ value: "341124",
+ text: "鍏ㄦ鍘�"
+ }, {
+ value: "341125",
+ text: "瀹氳繙鍘�"
+ }, {
+ value: "341126",
+ text: "鍑ら槼鍘�"
+ }, {
+ value: "341181",
+ text: "澶╅暱甯�"
+ }, {
+ value: "341182",
+ text: "鏄庡厜甯�"
+ }, {
+ value: "341183",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "341200",
+ text: "闃滈槼甯�",
+ children: [{
+ value: "341202",
+ text: "棰嶅窞鍖�"
+ }, {
+ value: "341203",
+ text: "棰嶄笢鍖�"
+ }, {
+ value: "341204",
+ text: "棰嶆硥鍖�"
+ }, {
+ value: "341221",
+ text: "涓存硥鍘�"
+ }, {
+ value: "341222",
+ text: "澶拰鍘�"
+ }, {
+ value: "341225",
+ text: "闃滃崡鍘�"
+ }, {
+ value: "341226",
+ text: "棰嶄笂鍘�"
+ }, {
+ value: "341282",
+ text: "鐣岄甯�"
+ }, {
+ value: "341283",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "341300",
+ text: "瀹垮窞甯�",
+ children: [{
+ value: "341302",
+ text: "鍩囨ˉ鍖�"
+ }, {
+ value: "341321",
+ text: "鐮�灞卞幙"
+ }, {
+ value: "341322",
+ text: "钀у幙"
+ }, {
+ value: "341323",
+ text: "鐏电挧鍘�"
+ }, {
+ value: "341324",
+ text: "娉楀幙"
+ }, {
+ value: "341325",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "341500",
+ text: "鍏畨甯�",
+ children: [{
+ value: "341502",
+ text: "閲戝畨鍖�"
+ }, {
+ value: "341503",
+ text: "瑁曞畨鍖�"
+ }, {
+ value: "341521",
+ text: "瀵垮幙"
+ }, {
+ value: "341522",
+ text: "闇嶉偙鍘�"
+ }, {
+ value: "341523",
+ text: "鑸掑煄鍘�"
+ }, {
+ value: "341524",
+ text: "閲戝鍘�"
+ }, {
+ value: "341525",
+ text: "闇嶅北鍘�"
+ }, {
+ value: "341526",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "341600",
+ text: "浜冲窞甯�",
+ children: [{
+ value: "341602",
+ text: "璋煄鍖�"
+ }, {
+ value: "341621",
+ text: "娑¢槼鍘�"
+ }, {
+ value: "341622",
+ text: "钂欏煄鍘�"
+ }, {
+ value: "341623",
+ text: "鍒╄緵鍘�"
+ }, {
+ value: "341624",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "341700",
+ text: "姹犲窞甯�",
+ children: [{
+ value: "341702",
+ text: "璐垫睜鍖�"
+ }, {
+ value: "341721",
+ text: "涓滆嚦鍘�"
+ }, {
+ value: "341722",
+ text: "鐭冲彴鍘�"
+ }, {
+ value: "341723",
+ text: "闈掗槼鍘�"
+ }, {
+ value: "341724",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "341800",
+ text: "瀹e煄甯�",
+ children: [{
+ value: "341802",
+ text: "瀹e窞鍖�"
+ }, {
+ value: "341821",
+ text: "閮庢邯鍘�"
+ }, {
+ value: "341822",
+ text: "骞垮痉鍘�"
+ }, {
+ value: "341823",
+ text: "娉惧幙"
+ }, {
+ value: "341824",
+ text: "缁╂邯鍘�"
+ }, {
+ value: "341825",
+ text: "鏃屽痉鍘�"
+ }, {
+ value: "341881",
+ text: "瀹佸浗甯�"
+ }, {
+ value: "341882",
+ text: "鍏跺畠鍖�"
+ }]
+ }]
+}, {
+ value: '350000',
+ text: '绂忓缓鐪�',
+ children: [{
+ value: "350100",
+ text: "绂忓窞甯�",
+ children: [{
+ value: "350102",
+ text: "榧撴ゼ鍖�"
+ }, {
+ value: "350103",
+ text: "鍙版睙鍖�"
+ }, {
+ value: "350104",
+ text: "浠撳北鍖�"
+ }, {
+ value: "350105",
+ text: "椹熬鍖�"
+ }, {
+ value: "350111",
+ text: "鏅嬪畨鍖�"
+ }, {
+ value: "350121",
+ text: "闂戒警鍘�"
+ }, {
+ value: "350122",
+ text: "杩炴睙鍘�"
+ }, {
+ value: "350123",
+ text: "缃楁簮鍘�"
+ }, {
+ value: "350124",
+ text: "闂芥竻鍘�"
+ }, {
+ value: "350125",
+ text: "姘告嘲鍘�"
+ }, {
+ value: "350128",
+ text: "骞虫江鍘�"
+ }, {
+ value: "350181",
+ text: "绂忔竻甯�"
+ }, {
+ value: "350182",
+ text: "闀夸箰甯�"
+ }, {
+ value: "350183",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "350200",
+ text: "鍘﹂棬甯�",
+ children: [{
+ value: "350203",
+ text: "鎬濇槑鍖�"
+ }, {
+ value: "350205",
+ text: "娴锋钵鍖�"
+ }, {
+ value: "350206",
+ text: "婀栭噷鍖�"
+ }, {
+ value: "350211",
+ text: "闆嗙編鍖�"
+ }, {
+ value: "350212",
+ text: "鍚屽畨鍖�"
+ }, {
+ value: "350213",
+ text: "缈斿畨鍖�"
+ }, {
+ value: "350214",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "350300",
+ text: "鑾嗙敯甯�",
+ children: [{
+ value: "350302",
+ text: "鍩庡帰鍖�"
+ }, {
+ value: "350303",
+ text: "娑垫睙鍖�"
+ }, {
+ value: "350304",
+ text: "鑽斿煄鍖�"
+ }, {
+ value: "350305",
+ text: "绉�灞垮尯"
+ }, {
+ value: "350322",
+ text: "浠欐父鍘�"
+ }, {
+ value: "350323",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "350400",
+ text: "涓夋槑甯�",
+ children: [{
+ value: "350402",
+ text: "姊呭垪鍖�"
+ }, {
+ value: "350403",
+ text: "涓夊厓鍖�"
+ }, {
+ value: "350421",
+ text: "鏄庢邯鍘�"
+ }, {
+ value: "350423",
+ text: "娓呮祦鍘�"
+ }, {
+ value: "350424",
+ text: "瀹佸寲鍘�"
+ }, {
+ value: "350425",
+ text: "澶х敯鍘�"
+ }, {
+ value: "350426",
+ text: "灏ゆ邯鍘�"
+ }, {
+ value: "350427",
+ text: "娌欏幙"
+ }, {
+ value: "350428",
+ text: "灏嗕箰鍘�"
+ }, {
+ value: "350429",
+ text: "娉板畞鍘�"
+ }, {
+ value: "350430",
+ text: "寤哄畞鍘�"
+ }, {
+ value: "350481",
+ text: "姘稿畨甯�"
+ }, {
+ value: "350482",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "350500",
+ text: "娉夊窞甯�",
+ children: [{
+ value: "350502",
+ text: "椴ゅ煄鍖�"
+ }, {
+ value: "350503",
+ text: "涓版辰鍖�"
+ }, {
+ value: "350504",
+ text: "娲涙睙鍖�"
+ }, {
+ value: "350505",
+ text: "娉夋腐鍖�"
+ }, {
+ value: "350521",
+ text: "鎯犲畨鍘�"
+ }, {
+ value: "350524",
+ text: "瀹夋邯鍘�"
+ }, {
+ value: "350525",
+ text: "姘告槬鍘�"
+ }, {
+ value: "350526",
+ text: "寰峰寲鍘�"
+ }, {
+ value: "350527",
+ text: "閲戦棬鍘�"
+ }, {
+ value: "350581",
+ text: "鐭崇嫯甯�"
+ }, {
+ value: "350582",
+ text: "鏅嬫睙甯�"
+ }, {
+ value: "350583",
+ text: "鍗楀畨甯�"
+ }, {
+ value: "350584",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "350600",
+ text: "婕冲窞甯�",
+ children: [{
+ value: "350602",
+ text: "鑺楀煄鍖�"
+ }, {
+ value: "350603",
+ text: "榫欐枃鍖�"
+ }, {
+ value: "350622",
+ text: "浜戦渼鍘�"
+ }, {
+ value: "350623",
+ text: "婕虫郸鍘�"
+ }, {
+ value: "350624",
+ text: "璇忓畨鍘�"
+ }, {
+ value: "350625",
+ text: "闀挎嘲鍘�"
+ }, {
+ value: "350626",
+ text: "涓滃北鍘�"
+ }, {
+ value: "350627",
+ text: "鍗楅潠鍘�"
+ }, {
+ value: "350628",
+ text: "骞冲拰鍘�"
+ }, {
+ value: "350629",
+ text: "鍗庡畨鍘�"
+ }, {
+ value: "350681",
+ text: "榫欐捣甯�"
+ }, {
+ value: "350682",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "350700",
+ text: "鍗楀钩甯�",
+ children: [{
+ value: "350702",
+ text: "寤跺钩鍖�"
+ }, {
+ value: "350721",
+ text: "椤烘槍鍘�"
+ }, {
+ value: "350722",
+ text: "娴﹀煄鍘�"
+ }, {
+ value: "350723",
+ text: "鍏夋辰鍘�"
+ }, {
+ value: "350724",
+ text: "鏉炬邯鍘�"
+ }, {
+ value: "350725",
+ text: "鏀垮拰鍘�"
+ }, {
+ value: "350781",
+ text: "閭垫甯�"
+ }, {
+ value: "350782",
+ text: "姝﹀し灞卞競"
+ }, {
+ value: "350783",
+ text: "寤虹摨甯�"
+ }, {
+ value: "350784",
+ text: "寤洪槼甯�"
+ }, {
+ value: "350785",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "350800",
+ text: "榫欏博甯�",
+ children: [{
+ value: "350802",
+ text: "鏂扮綏鍖�"
+ }, {
+ value: "350821",
+ text: "闀挎眬鍘�"
+ }, {
+ value: "350822",
+ text: "姘稿畾鍘�"
+ }, {
+ value: "350823",
+ text: "涓婃澀鍘�"
+ }, {
+ value: "350824",
+ text: "姝﹀钩鍘�"
+ }, {
+ value: "350825",
+ text: "杩炲煄鍘�"
+ }, {
+ value: "350881",
+ text: "婕冲钩甯�"
+ }, {
+ value: "350882",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "350900",
+ text: "瀹佸痉甯�",
+ children: [{
+ value: "350902",
+ text: "钑夊煄鍖�"
+ }, {
+ value: "350921",
+ text: "闇炴郸鍘�"
+ }, {
+ value: "350922",
+ text: "鍙ょ敯鍘�"
+ }, {
+ value: "350923",
+ text: "灞忓崡鍘�"
+ }, {
+ value: "350924",
+ text: "瀵垮畞鍘�"
+ }, {
+ value: "350925",
+ text: "鍛ㄥ畞鍘�"
+ }, {
+ value: "350926",
+ text: "鏌樿崳鍘�"
+ }, {
+ value: "350981",
+ text: "绂忓畨甯�"
+ }, {
+ value: "350982",
+ text: "绂忛紟甯�"
+ }, {
+ value: "350983",
+ text: "鍏跺畠鍖�"
+ }]
+ }]
+}, {
+ value: '360000',
+ text: '姹熻タ鐪�',
+ children: [{
+ value: "360100",
+ text: "鍗楁槍甯�",
+ children: [{
+ value: "360102",
+ text: "涓滄箹鍖�"
+ }, {
+ value: "360103",
+ text: "瑗挎箹鍖�"
+ }, {
+ value: "360104",
+ text: "闈掍簯璋卞尯"
+ }, {
+ value: "360105",
+ text: "婀鹃噷鍖�"
+ }, {
+ value: "360111",
+ text: "闈掑北婀栧尯"
+ }, {
+ value: "360121",
+ text: "鍗楁槍鍘�"
+ }, {
+ value: "360122",
+ text: "鏂板缓鍘�"
+ }, {
+ value: "360123",
+ text: "瀹変箟鍘�"
+ }, {
+ value: "360124",
+ text: "杩涜搐鍘�"
+ }, {
+ value: "360125",
+ text: "绾㈣胺婊╂柊鍖�"
+ }, {
+ value: "360126",
+ text: "缁忔祹鎶�鏈紑鍙戝尯"
+ }, {
+ value: "360127",
+ text: "鏄屽寳鍖�"
+ }, {
+ value: "360128",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "360200",
+ text: "鏅痉闀囧競",
+ children: [{
+ value: "360202",
+ text: "鏄屾睙鍖�"
+ }, {
+ value: "360203",
+ text: "鐝犲北鍖�"
+ }, {
+ value: "360222",
+ text: "娴鍘�"
+ }, {
+ value: "360281",
+ text: "涔愬钩甯�"
+ }, {
+ value: "360282",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "360300",
+ text: "钀嶄埂甯�",
+ children: [{
+ value: "360302",
+ text: "瀹夋簮鍖�"
+ }, {
+ value: "360313",
+ text: "婀樹笢鍖�"
+ }, {
+ value: "360321",
+ text: "鑾茶姳鍘�"
+ }, {
+ value: "360322",
+ text: "涓婃牀鍘�"
+ }, {
+ value: "360323",
+ text: "鑺︽邯鍘�"
+ }, {
+ value: "360324",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "360400",
+ text: "涔濇睙甯�",
+ children: [{
+ value: "360402",
+ text: "搴愬北鍖�"
+ }, {
+ value: "360403",
+ text: "娴旈槼鍖�"
+ }, {
+ value: "360421",
+ text: "涔濇睙鍘�"
+ }, {
+ value: "360423",
+ text: "姝﹀畞鍘�"
+ }, {
+ value: "360424",
+ text: "淇按鍘�"
+ }, {
+ value: "360425",
+ text: "姘镐慨鍘�"
+ }, {
+ value: "360426",
+ text: "寰峰畨鍘�"
+ }, {
+ value: "360427",
+ text: "鏄熷瓙鍘�"
+ }, {
+ value: "360428",
+ text: "閮芥槍鍘�"
+ }, {
+ value: "360429",
+ text: "婀栧彛鍘�"
+ }, {
+ value: "360430",
+ text: "褰辰鍘�"
+ }, {
+ value: "360481",
+ text: "鐟炴槍甯�"
+ }, {
+ value: "360482",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "360500",
+ text: "鏂颁綑甯�",
+ children: [{
+ value: "360502",
+ text: "娓濇按鍖�"
+ }, {
+ value: "360521",
+ text: "鍒嗗疁鍘�"
+ }, {
+ value: "360522",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "360600",
+ text: "楣版江甯�",
+ children: [{
+ value: "360602",
+ text: "鏈堟箹鍖�"
+ }, {
+ value: "360622",
+ text: "浣欐睙鍘�"
+ }, {
+ value: "360681",
+ text: "璐垫邯甯�"
+ }, {
+ value: "360682",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "360700",
+ text: "璧e窞甯�",
+ children: [{
+ value: "360702",
+ text: "绔犺础鍖�"
+ }, {
+ value: "360721",
+ text: "璧e幙"
+ }, {
+ value: "360722",
+ text: "淇′赴鍘�"
+ }, {
+ value: "360723",
+ text: "澶т綑鍘�"
+ }, {
+ value: "360724",
+ text: "涓婄姽鍘�"
+ }, {
+ value: "360725",
+ text: "宕囦箟鍘�"
+ }, {
+ value: "360726",
+ text: "瀹夎繙鍘�"
+ }, {
+ value: "360727",
+ text: "榫欏崡鍘�"
+ }, {
+ value: "360728",
+ text: "瀹氬崡鍘�"
+ }, {
+ value: "360729",
+ text: "鍏ㄥ崡鍘�"
+ }, {
+ value: "360730",
+ text: "瀹侀兘鍘�"
+ }, {
+ value: "360731",
+ text: "浜庨兘鍘�"
+ }, {
+ value: "360732",
+ text: "鍏村浗鍘�"
+ }, {
+ value: "360733",
+ text: "浼氭槍鍘�"
+ }, {
+ value: "360734",
+ text: "瀵讳箤鍘�"
+ }, {
+ value: "360735",
+ text: "鐭冲煄鍘�"
+ }, {
+ value: "360751",
+ text: "榛勯噾鍖�"
+ }, {
+ value: "360781",
+ text: "鐟為噾甯�"
+ }, {
+ value: "360782",
+ text: "鍗楀悍甯�"
+ }, {
+ value: "360783",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "360800",
+ text: "鍚夊畨甯�",
+ children: [{
+ value: "360802",
+ text: "鍚夊窞鍖�"
+ }, {
+ value: "360803",
+ text: "闈掑師鍖�"
+ }, {
+ value: "360821",
+ text: "鍚夊畨鍘�"
+ }, {
+ value: "360822",
+ text: "鍚夋按鍘�"
+ }, {
+ value: "360823",
+ text: "宄℃睙鍘�"
+ }, {
+ value: "360824",
+ text: "鏂板共鍘�"
+ }, {
+ value: "360825",
+ text: "姘镐赴鍘�"
+ }, {
+ value: "360826",
+ text: "娉板拰鍘�"
+ }, {
+ value: "360827",
+ text: "閬傚窛鍘�"
+ }, {
+ value: "360828",
+ text: "涓囧畨鍘�"
+ }, {
+ value: "360829",
+ text: "瀹夌鍘�"
+ }, {
+ value: "360830",
+ text: "姘告柊鍘�"
+ }, {
+ value: "360881",
+ text: "浜曞唸灞卞競"
+ }, {
+ value: "360882",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "360900",
+ text: "瀹滄槬甯�",
+ children: [{
+ value: "360902",
+ text: "琚佸窞鍖�"
+ }, {
+ value: "360921",
+ text: "濂夋柊鍘�"
+ }, {
+ value: "360922",
+ text: "涓囪浇鍘�"
+ }, {
+ value: "360923",
+ text: "涓婇珮鍘�"
+ }, {
+ value: "360924",
+ text: "瀹滀赴鍘�"
+ }, {
+ value: "360925",
+ text: "闈栧畨鍘�"
+ }, {
+ value: "360926",
+ text: "閾滈紦鍘�"
+ }, {
+ value: "360981",
+ text: "涓板煄甯�"
+ }, {
+ value: "360982",
+ text: "妯熸爲甯�"
+ }, {
+ value: "360983",
+ text: "楂樺畨甯�"
+ }, {
+ value: "360984",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "361000",
+ text: "鎶氬窞甯�",
+ children: [{
+ value: "361002",
+ text: "涓村窛鍖�"
+ }, {
+ value: "361021",
+ text: "鍗楀煄鍘�"
+ }, {
+ value: "361022",
+ text: "榛庡窛鍘�"
+ }, {
+ value: "361023",
+ text: "鍗椾赴鍘�"
+ }, {
+ value: "361024",
+ text: "宕囦粊鍘�"
+ }, {
+ value: "361025",
+ text: "涔愬畨鍘�"
+ }, {
+ value: "361026",
+ text: "瀹滈粍鍘�"
+ }, {
+ value: "361027",
+ text: "閲戞邯鍘�"
+ }, {
+ value: "361028",
+ text: "璧勬邯鍘�"
+ }, {
+ value: "361029",
+ text: "涓滀埂鍘�"
+ }, {
+ value: "361030",
+ text: "骞挎槍鍘�"
+ }, {
+ value: "361031",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "361100",
+ text: "涓婇ザ甯�",
+ children: [{
+ value: "361102",
+ text: "淇″窞鍖�"
+ }, {
+ value: "361121",
+ text: "涓婇ザ鍘�"
+ }, {
+ value: "361122",
+ text: "骞夸赴鍘�"
+ }, {
+ value: "361123",
+ text: "鐜夊北鍘�"
+ }, {
+ value: "361124",
+ text: "閾呭北鍘�"
+ }, {
+ value: "361125",
+ text: "妯嘲鍘�"
+ }, {
+ value: "361126",
+ text: "寮嬮槼鍘�"
+ }, {
+ value: "361127",
+ text: "浣欏共鍘�"
+ }, {
+ value: "361128",
+ text: "閯遍槼鍘�"
+ }, {
+ value: "361129",
+ text: "涓囧勾鍘�"
+ }, {
+ value: "361130",
+ text: "濠烘簮鍘�"
+ }, {
+ value: "361181",
+ text: "寰峰叴甯�"
+ }, {
+ value: "361182",
+ text: "鍏跺畠鍖�"
+ }]
+ }]
+}, {
+ value: '370000',
+ text: '灞变笢鐪�',
+ children: [{
+ value: "370100",
+ text: "娴庡崡甯�",
+ children: [{
+ value: "370102",
+ text: "鍘嗕笅鍖�"
+ }, {
+ value: "370103",
+ text: "甯備腑鍖�"
+ }, {
+ value: "370104",
+ text: "妲愯崼鍖�"
+ }, {
+ value: "370105",
+ text: "澶╂ˉ鍖�"
+ }, {
+ value: "370112",
+ text: "鍘嗗煄鍖�"
+ }, {
+ value: "370113",
+ text: "闀挎竻鍖�"
+ }, {
+ value: "370124",
+ text: "骞抽槾鍘�"
+ }, {
+ value: "370125",
+ text: "娴庨槼鍘�"
+ }, {
+ value: "370126",
+ text: "鍟嗘渤鍘�"
+ }, {
+ value: "370181",
+ text: "绔犱笜甯�"
+ }, {
+ value: "370182",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "370200",
+ text: "闈掑矝甯�",
+ children: [{
+ value: "370202",
+ text: "甯傚崡鍖�"
+ }, {
+ value: "370203",
+ text: "甯傚寳鍖�"
+ }, {
+ value: "370205",
+ text: "鍥涙柟鍖�"
+ }, {
+ value: "370211",
+ text: "榛勫矝鍖�"
+ }, {
+ value: "370212",
+ text: "宕傚北鍖�"
+ }, {
+ value: "370213",
+ text: "鏉庢钵鍖�"
+ }, {
+ value: "370214",
+ text: "鍩庨槼鍖�"
+ }, {
+ value: "370251",
+ text: "寮�鍙戝尯"
+ }, {
+ value: "370281",
+ text: "鑳跺窞甯�"
+ }, {
+ value: "370282",
+ text: "鍗冲ⅷ甯�"
+ }, {
+ value: "370283",
+ text: "骞冲害甯�"
+ }, {
+ value: "370284",
+ text: "鑳跺崡甯�"
+ }, {
+ value: "370285",
+ text: "鑾辫タ甯�"
+ }, {
+ value: "370286",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "370300",
+ text: "娣勫崥甯�",
+ children: [{
+ value: "370302",
+ text: "娣勫窛鍖�"
+ }, {
+ value: "370303",
+ text: "寮犲簵鍖�"
+ }, {
+ value: "370304",
+ text: "鍗氬北鍖�"
+ }, {
+ value: "370305",
+ text: "涓存穭鍖�"
+ }, {
+ value: "370306",
+ text: "鍛ㄦ潙鍖�"
+ }, {
+ value: "370321",
+ text: "妗撳彴鍘�"
+ }, {
+ value: "370322",
+ text: "楂橀潚鍘�"
+ }, {
+ value: "370323",
+ text: "娌傛簮鍘�"
+ }, {
+ value: "370324",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "370400",
+ text: "鏋e簞甯�",
+ children: [{
+ value: "370402",
+ text: "甯備腑鍖�"
+ }, {
+ value: "370403",
+ text: "钖涘煄鍖�"
+ }, {
+ value: "370404",
+ text: "宄勫煄鍖�"
+ }, {
+ value: "370405",
+ text: "鍙板効搴勫尯"
+ }, {
+ value: "370406",
+ text: "灞变涵鍖�"
+ }, {
+ value: "370481",
+ text: "婊曞窞甯�"
+ }, {
+ value: "370482",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "370500",
+ text: "涓滆惀甯�",
+ children: [{
+ value: "370502",
+ text: "涓滆惀鍖�"
+ }, {
+ value: "370503",
+ text: "娌冲彛鍖�"
+ }, {
+ value: "370521",
+ text: "鍨﹀埄鍘�"
+ }, {
+ value: "370522",
+ text: "鍒╂触鍘�"
+ }, {
+ value: "370523",
+ text: "骞块ザ鍘�"
+ }, {
+ value: "370589",
+ text: "瑗垮煄鍖�"
+ }, {
+ value: "370590",
+ text: "涓滃煄鍖�"
+ }, {
+ value: "370591",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "370600",
+ text: "鐑熷彴甯�",
+ children: [{
+ value: "370602",
+ text: "鑺濈綐鍖�"
+ }, {
+ value: "370611",
+ text: "绂忓北鍖�"
+ }, {
+ value: "370612",
+ text: "鐗熷钩鍖�"
+ }, {
+ value: "370613",
+ text: "鑾卞北鍖�"
+ }, {
+ value: "370634",
+ text: "闀垮矝鍘�"
+ }, {
+ value: "370681",
+ text: "榫欏彛甯�"
+ }, {
+ value: "370682",
+ text: "鑾遍槼甯�"
+ }, {
+ value: "370683",
+ text: "鑾卞窞甯�"
+ }, {
+ value: "370684",
+ text: "钃幈甯�"
+ }, {
+ value: "370685",
+ text: "鎷涜繙甯�"
+ }, {
+ value: "370686",
+ text: "鏍栭湠甯�"
+ }, {
+ value: "370687",
+ text: "娴烽槼甯�"
+ }, {
+ value: "370688",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "370700",
+ text: "娼嶅潑甯�",
+ children: [{
+ value: "370702",
+ text: "娼嶅煄鍖�"
+ }, {
+ value: "370703",
+ text: "瀵掍涵鍖�"
+ }, {
+ value: "370704",
+ text: "鍧婂瓙鍖�"
+ }, {
+ value: "370705",
+ text: "濂庢枃鍖�"
+ }, {
+ value: "370724",
+ text: "涓存湊鍘�"
+ }, {
+ value: "370725",
+ text: "鏄屼箰鍘�"
+ }, {
+ value: "370751",
+ text: "寮�鍙戝尯"
+ }, {
+ value: "370781",
+ text: "闈掑窞甯�"
+ }, {
+ value: "370782",
+ text: "璇稿煄甯�"
+ }, {
+ value: "370783",
+ text: "瀵垮厜甯�"
+ }, {
+ value: "370784",
+ text: "瀹変笜甯�"
+ }, {
+ value: "370785",
+ text: "楂樺瘑甯�"
+ }, {
+ value: "370786",
+ text: "鏄岄倯甯�"
+ }, {
+ value: "370787",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "370800",
+ text: "娴庡畞甯�",
+ children: [{
+ value: "370802",
+ text: "甯備腑鍖�"
+ }, {
+ value: "370811",
+ text: "浠诲煄鍖�"
+ }, {
+ value: "370826",
+ text: "寰北鍘�"
+ }, {
+ value: "370827",
+ text: "楸煎彴鍘�"
+ }, {
+ value: "370828",
+ text: "閲戜埂鍘�"
+ }, {
+ value: "370829",
+ text: "鍢夌ゥ鍘�"
+ }, {
+ value: "370830",
+ text: "姹朵笂鍘�"
+ }, {
+ value: "370831",
+ text: "娉楁按鍘�"
+ }, {
+ value: "370832",
+ text: "姊佸北鍘�"
+ }, {
+ value: "370881",
+ text: "鏇查槣甯�"
+ }, {
+ value: "370882",
+ text: "鍏栧窞甯�"
+ }, {
+ value: "370883",
+ text: "閭瑰煄甯�"
+ }, {
+ value: "370884",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "370900",
+ text: "娉板畨甯�",
+ children: [{
+ value: "370902",
+ text: "娉板北鍖�"
+ }, {
+ value: "370903",
+ text: "宀卞渤鍖�"
+ }, {
+ value: "370921",
+ text: "瀹侀槼鍘�"
+ }, {
+ value: "370923",
+ text: "涓滃钩鍘�"
+ }, {
+ value: "370982",
+ text: "鏂版嘲甯�"
+ }, {
+ value: "370983",
+ text: "鑲ュ煄甯�"
+ }, {
+ value: "370984",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "371000",
+ text: "濞佹捣甯�",
+ children: [{
+ value: "371002",
+ text: "鐜繝鍖�"
+ }, {
+ value: "371081",
+ text: "鏂囩櫥甯�"
+ }, {
+ value: "371082",
+ text: "鑽f垚甯�"
+ }, {
+ value: "371083",
+ text: "涔冲北甯�"
+ }, {
+ value: "371084",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "371100",
+ text: "鏃ョ収甯�",
+ children: [{
+ value: "371102",
+ text: "涓滄腐鍖�"
+ }, {
+ value: "371103",
+ text: "宀氬北鍖�"
+ }, {
+ value: "371121",
+ text: "浜旇幉鍘�"
+ }, {
+ value: "371122",
+ text: "鑾掑幙"
+ }, {
+ value: "371123",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "371200",
+ text: "鑾辫姕甯�",
+ children: [{
+ value: "371202",
+ text: "鑾卞煄鍖�"
+ }, {
+ value: "371203",
+ text: "閽㈠煄鍖�"
+ }, {
+ value: "371204",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "371300",
+ text: "涓存矀甯�",
+ children: [{
+ value: "371302",
+ text: "鍏板北鍖�"
+ }, {
+ value: "371311",
+ text: "缃楀簞鍖�"
+ }, {
+ value: "371312",
+ text: "娌充笢鍖�"
+ }, {
+ value: "371321",
+ text: "娌傚崡鍘�"
+ }, {
+ value: "371322",
+ text: "閮煄鍘�"
+ }, {
+ value: "371323",
+ text: "娌傛按鍘�"
+ }, {
+ value: "371324",
+ text: "鑻嶅北鍘�"
+ }, {
+ value: "371325",
+ text: "璐瑰幙"
+ }, {
+ value: "371326",
+ text: "骞抽倯鍘�"
+ }, {
+ value: "371327",
+ text: "鑾掑崡鍘�"
+ }, {
+ value: "371328",
+ text: "钂欓槾鍘�"
+ }, {
+ value: "371329",
+ text: "涓存箔鍘�"
+ }, {
+ value: "371330",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "371400",
+ text: "寰峰窞甯�",
+ children: [{
+ value: "371402",
+ text: "寰峰煄鍖�"
+ }, {
+ value: "371421",
+ text: "闄靛幙"
+ }, {
+ value: "371422",
+ text: "瀹佹触鍘�"
+ }, {
+ value: "371423",
+ text: "搴嗕簯鍘�"
+ }, {
+ value: "371424",
+ text: "涓撮倯鍘�"
+ }, {
+ value: "371425",
+ text: "榻愭渤鍘�"
+ }, {
+ value: "371426",
+ text: "骞冲師鍘�"
+ }, {
+ value: "371427",
+ text: "澶忔触鍘�"
+ }, {
+ value: "371428",
+ text: "姝﹀煄鍘�"
+ }, {
+ value: "371451",
+ text: "寮�鍙戝尯"
+ }, {
+ value: "371481",
+ text: "涔愰櫟甯�"
+ }, {
+ value: "371482",
+ text: "绂瑰煄甯�"
+ }, {
+ value: "371483",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "371500",
+ text: "鑱婂煄甯�",
+ children: [{
+ value: "371502",
+ text: "涓滄槍搴滃尯"
+ }, {
+ value: "371521",
+ text: "闃宠胺鍘�"
+ }, {
+ value: "371522",
+ text: "鑾樺幙"
+ }, {
+ value: "371523",
+ text: "鑼屽钩鍘�"
+ }, {
+ value: "371524",
+ text: "涓滈樋鍘�"
+ }, {
+ value: "371525",
+ text: "鍐犲幙"
+ }, {
+ value: "371526",
+ text: "楂樺攼鍘�"
+ }, {
+ value: "371581",
+ text: "涓存竻甯�"
+ }, {
+ value: "371582",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "371600",
+ text: "婊ㄥ窞甯�",
+ children: [{
+ value: "371602",
+ text: "婊ㄥ煄鍖�"
+ }, {
+ value: "371621",
+ text: "鎯犳皯鍘�"
+ }, {
+ value: "371622",
+ text: "闃充俊鍘�"
+ }, {
+ value: "371623",
+ text: "鏃犳#鍘�"
+ }, {
+ value: "371624",
+ text: "娌惧寲鍘�"
+ }, {
+ value: "371625",
+ text: "鍗氬叴鍘�"
+ }, {
+ value: "371626",
+ text: "閭瑰钩鍘�"
+ }, {
+ value: "371627",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "371700",
+ text: "鑿忔辰甯�",
+ children: [{
+ value: "371702",
+ text: "鐗′腹鍖�"
+ }, {
+ value: "371721",
+ text: "鏇瑰幙"
+ }, {
+ value: "371722",
+ text: "鍗曞幙"
+ }, {
+ value: "371723",
+ text: "鎴愭鍘�"
+ }, {
+ value: "371724",
+ text: "宸ㄩ噹鍘�"
+ }, {
+ value: "371725",
+ text: "閮撳煄鍘�"
+ }, {
+ value: "371726",
+ text: "閯勫煄鍘�"
+ }, {
+ value: "371727",
+ text: "瀹氶櫠鍘�"
+ }, {
+ value: "371728",
+ text: "涓滄槑鍘�"
+ }, {
+ value: "371729",
+ text: "鍏跺畠鍖�"
+ }]
+ }]
+}, {
+ value: '410000',
+ text: '娌冲崡鐪�',
+ children: [{
+ value: "410100",
+ text: "閮戝窞甯�",
+ children: [{
+ value: "410102",
+ text: "涓師鍖�"
+ }, {
+ value: "410103",
+ text: "浜屼竷鍖�"
+ }, {
+ value: "410104",
+ text: "绠″煄鍥炴棌鍖�"
+ }, {
+ value: "410105",
+ text: "閲戞按鍖�"
+ }, {
+ value: "410106",
+ text: "涓婅鍖�"
+ }, {
+ value: "410108",
+ text: "鎯犳祹鍖�"
+ }, {
+ value: "410122",
+ text: "涓墴鍘�"
+ }, {
+ value: "410181",
+ text: "宸╀箟甯�"
+ }, {
+ value: "410182",
+ text: "鑽ラ槼甯�"
+ }, {
+ value: "410183",
+ text: "鏂板瘑甯�"
+ }, {
+ value: "410184",
+ text: "鏂伴儜甯�"
+ }, {
+ value: "410185",
+ text: "鐧诲皝甯�"
+ }, {
+ value: "410186",
+ text: "閮戜笢鏂板尯"
+ }, {
+ value: "410187",
+ text: "楂樻柊鍖�"
+ }, {
+ value: "410188",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "410200",
+ text: "寮�灏佸競",
+ children: [{
+ value: "410202",
+ text: "榫欎涵鍖�"
+ }, {
+ value: "410203",
+ text: "椤烘渤鍥炴棌鍖�"
+ }, {
+ value: "410204",
+ text: "榧撴ゼ鍖�"
+ }, {
+ value: "410205",
+ text: "绂圭帇鍙板尯"
+ }, {
+ value: "410211",
+ text: "閲戞槑鍖�"
+ }, {
+ value: "410221",
+ text: "鏉炲幙"
+ }, {
+ value: "410222",
+ text: "閫氳鍘�"
+ }, {
+ value: "410223",
+ text: "灏夋皬鍘�"
+ }, {
+ value: "410224",
+ text: "寮�灏佸幙"
+ }, {
+ value: "410225",
+ text: "鍏拌�冨幙"
+ }, {
+ value: "410226",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "410300",
+ text: "娲涢槼甯�",
+ children: [{
+ value: "410302",
+ text: "鑰佸煄鍖�"
+ }, {
+ value: "410303",
+ text: "瑗垮伐鍖�"
+ }, {
+ value: "410304",
+ text: "寤涙渤鍥炴棌鍖�"
+ }, {
+ value: "410305",
+ text: "娑цタ鍖�"
+ }, {
+ value: "410306",
+ text: "鍚夊埄鍖�"
+ }, {
+ value: "410307",
+ text: "娲涢緳鍖�"
+ }, {
+ value: "410322",
+ text: "瀛熸触鍘�"
+ }, {
+ value: "410323",
+ text: "鏂板畨鍘�"
+ }, {
+ value: "410324",
+ text: "鏍惧窛鍘�"
+ }, {
+ value: "410325",
+ text: "宓╁幙"
+ }, {
+ value: "410326",
+ text: "姹濋槼鍘�"
+ }, {
+ value: "410327",
+ text: "瀹滈槼鍘�"
+ }, {
+ value: "410328",
+ text: "娲涘畞鍘�"
+ }, {
+ value: "410329",
+ text: "浼婂窛鍘�"
+ }, {
+ value: "410381",
+ text: "鍋冨笀甯�"
+ }, {
+ value: "471004",
+ text: "楂樻柊鍖�"
+ }, {
+ value: "471005",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "410400",
+ text: "骞抽《灞卞競",
+ children: [{
+ value: "410402",
+ text: "鏂板崕鍖�"
+ }, {
+ value: "410403",
+ text: "鍗笢鍖�"
+ }, {
+ value: "410404",
+ text: "鐭抽緳鍖�"
+ }, {
+ value: "410411",
+ text: "婀涙渤鍖�"
+ }, {
+ value: "410421",
+ text: "瀹濅赴鍘�"
+ }, {
+ value: "410422",
+ text: "鍙跺幙"
+ }, {
+ value: "410423",
+ text: "椴佸北鍘�"
+ }, {
+ value: "410425",
+ text: "閮忓幙"
+ }, {
+ value: "410481",
+ text: "鑸為挗甯�"
+ }, {
+ value: "410482",
+ text: "姹濆窞甯�"
+ }, {
+ value: "410483",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "410500",
+ text: "瀹夐槼甯�",
+ children: [{
+ value: "410502",
+ text: "鏂囧嘲鍖�"
+ }, {
+ value: "410503",
+ text: "鍖楀叧鍖�"
+ }, {
+ value: "410505",
+ text: "娈烽兘鍖�"
+ }, {
+ value: "410506",
+ text: "榫欏畨鍖�"
+ }, {
+ value: "410522",
+ text: "瀹夐槼鍘�"
+ }, {
+ value: "410523",
+ text: "姹ら槾鍘�"
+ }, {
+ value: "410526",
+ text: "婊戝幙"
+ }, {
+ value: "410527",
+ text: "鍐呴粍鍘�"
+ }, {
+ value: "410581",
+ text: "鏋楀窞甯�"
+ }, {
+ value: "410582",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "410600",
+ text: "楣ゅ甯�",
+ children: [{
+ value: "410602",
+ text: "楣ゅ北鍖�"
+ }, {
+ value: "410603",
+ text: "灞卞煄鍖�"
+ }, {
+ value: "410611",
+ text: "娣囨花鍖�"
+ }, {
+ value: "410621",
+ text: "娴氬幙"
+ }, {
+ value: "410622",
+ text: "娣囧幙"
+ }, {
+ value: "410623",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "410700",
+ text: "鏂颁埂甯�",
+ children: [{
+ value: "410702",
+ text: "绾㈡棗鍖�"
+ }, {
+ value: "410703",
+ text: "鍗花鍖�"
+ }, {
+ value: "410704",
+ text: "鍑ゆ硥鍖�"
+ }, {
+ value: "410711",
+ text: "鐗ч噹鍖�"
+ }, {
+ value: "410721",
+ text: "鏂颁埂鍘�"
+ }, {
+ value: "410724",
+ text: "鑾峰槈鍘�"
+ }, {
+ value: "410725",
+ text: "鍘熼槼鍘�"
+ }, {
+ value: "410726",
+ text: "寤舵触鍘�"
+ }, {
+ value: "410727",
+ text: "灏佷笜鍘�"
+ }, {
+ value: "410728",
+ text: "闀垮灒鍘�"
+ }, {
+ value: "410781",
+ text: "鍗緣甯�"
+ }, {
+ value: "410782",
+ text: "杈夊幙甯�"
+ }, {
+ value: "410783",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "410800",
+ text: "鐒︿綔甯�",
+ children: [{
+ value: "410802",
+ text: "瑙f斁鍖�"
+ }, {
+ value: "410803",
+ text: "涓珯鍖�"
+ }, {
+ value: "410804",
+ text: "椹潙鍖�"
+ }, {
+ value: "410811",
+ text: "灞遍槼鍖�"
+ }, {
+ value: "410821",
+ text: "淇鍘�"
+ }, {
+ value: "410822",
+ text: "鍗氱埍鍘�"
+ }, {
+ value: "410823",
+ text: "姝﹂櫉鍘�"
+ }, {
+ value: "410825",
+ text: "娓╁幙"
+ }, {
+ value: "410882",
+ text: "娌侀槼甯�"
+ }, {
+ value: "410883",
+ text: "瀛熷窞甯�"
+ }, {
+ value: "410884",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "410900",
+ text: "婵槼甯�",
+ children: [{
+ value: "410902",
+ text: "鍗庨緳鍖�"
+ }, {
+ value: "410922",
+ text: "娓呬赴鍘�"
+ }, {
+ value: "410923",
+ text: "鍗椾箰鍘�"
+ }, {
+ value: "410926",
+ text: "鑼冨幙"
+ }, {
+ value: "410927",
+ text: "鍙板墠鍘�"
+ }, {
+ value: "410928",
+ text: "婵槼鍘�"
+ }, {
+ value: "410929",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "411000",
+ text: "璁告槍甯�",
+ children: [{
+ value: "411002",
+ text: "榄忛兘鍖�"
+ }, {
+ value: "411023",
+ text: "璁告槍鍘�"
+ }, {
+ value: "411024",
+ text: "閯㈤櫟鍘�"
+ }, {
+ value: "411025",
+ text: "瑗勫煄鍘�"
+ }, {
+ value: "411081",
+ text: "绂瑰窞甯�"
+ }, {
+ value: "411082",
+ text: "闀胯憶甯�"
+ }, {
+ value: "411083",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "411100",
+ text: "婕渤甯�",
+ children: [{
+ value: "411102",
+ text: "婧愭眹鍖�"
+ }, {
+ value: "411103",
+ text: "閮惧煄鍖�"
+ }, {
+ value: "411104",
+ text: "鍙櫟鍖�"
+ }, {
+ value: "411121",
+ text: "鑸為槼鍘�"
+ }, {
+ value: "411122",
+ text: "涓撮鍘�"
+ }, {
+ value: "411123",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "411200",
+ text: "涓夐棬宄″競",
+ children: [{
+ value: "411202",
+ text: "婀栨花鍖�"
+ }, {
+ value: "411221",
+ text: "娓戞睜鍘�"
+ }, {
+ value: "411222",
+ text: "闄曞幙"
+ }, {
+ value: "411224",
+ text: "鍗㈡皬鍘�"
+ }, {
+ value: "411281",
+ text: "涔夐┈甯�"
+ }, {
+ value: "411282",
+ text: "鐏靛疂甯�"
+ }, {
+ value: "411283",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "411300",
+ text: "鍗楅槼甯�",
+ children: [{
+ value: "411302",
+ text: "瀹涘煄鍖�"
+ }, {
+ value: "411303",
+ text: "鍗ч緳鍖�"
+ }, {
+ value: "411321",
+ text: "鍗楀彫鍘�"
+ }, {
+ value: "411322",
+ text: "鏂瑰煄鍘�"
+ }, {
+ value: "411323",
+ text: "瑗垮场鍘�"
+ }, {
+ value: "411324",
+ text: "闀囧钩鍘�"
+ }, {
+ value: "411325",
+ text: "鍐呬埂鍘�"
+ }, {
+ value: "411326",
+ text: "娣呭窛鍘�"
+ }, {
+ value: "411327",
+ text: "绀炬棗鍘�"
+ }, {
+ value: "411328",
+ text: "鍞愭渤鍘�"
+ }, {
+ value: "411329",
+ text: "鏂伴噹鍘�"
+ }, {
+ value: "411330",
+ text: "妗愭煆鍘�"
+ }, {
+ value: "411381",
+ text: "閭撳窞甯�"
+ }, {
+ value: "411382",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "411400",
+ text: "鍟嗕笜甯�",
+ children: [{
+ value: "411402",
+ text: "姊佸洯鍖�"
+ }, {
+ value: "411403",
+ text: "鐫㈤槼鍖�"
+ }, {
+ value: "411421",
+ text: "姘戞潈鍘�"
+ }, {
+ value: "411422",
+ text: "鐫㈠幙"
+ }, {
+ value: "411423",
+ text: "瀹侀櫟鍘�"
+ }, {
+ value: "411424",
+ text: "鏌樺煄鍘�"
+ }, {
+ value: "411425",
+ text: "铏炲煄鍘�"
+ }, {
+ value: "411426",
+ text: "澶忛倯鍘�"
+ }, {
+ value: "411481",
+ text: "姘稿煄甯�"
+ }, {
+ value: "411482",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "411500",
+ text: "淇¢槼甯�",
+ children: [{
+ value: "411502",
+ text: "娴夋渤鍖�"
+ }, {
+ value: "411503",
+ text: "骞虫ˉ鍖�"
+ }, {
+ value: "411521",
+ text: "缃楀北鍘�"
+ }, {
+ value: "411522",
+ text: "鍏夊北鍘�"
+ }, {
+ value: "411523",
+ text: "鏂板幙"
+ }, {
+ value: "411524",
+ text: "鍟嗗煄鍘�"
+ }, {
+ value: "411525",
+ text: "鍥哄鍘�"
+ }, {
+ value: "411526",
+ text: "娼㈠窛鍘�"
+ }, {
+ value: "411527",
+ text: "娣花鍘�"
+ }, {
+ value: "411528",
+ text: "鎭幙"
+ }, {
+ value: "411529",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "411600",
+ text: "鍛ㄥ彛甯�",
+ children: [{
+ value: "411602",
+ text: "宸濇眹鍖�"
+ }, {
+ value: "411621",
+ text: "鎵舵矡鍘�"
+ }, {
+ value: "411622",
+ text: "瑗垮崕鍘�"
+ }, {
+ value: "411623",
+ text: "鍟嗘按鍘�"
+ }, {
+ value: "411624",
+ text: "娌堜笜鍘�"
+ }, {
+ value: "411625",
+ text: "閮稿煄鍘�"
+ }, {
+ value: "411626",
+ text: "娣槼鍘�"
+ }, {
+ value: "411627",
+ text: "澶悍鍘�"
+ }, {
+ value: "411628",
+ text: "楣块倯鍘�"
+ }, {
+ value: "411681",
+ text: "椤瑰煄甯�"
+ }, {
+ value: "411682",
+ text: "鍏跺畠鍖�"
+ }]
+ },{
+ value: "411700",
+ text: "椹婚┈搴楀競",
+ children: [{
+ value: "411702",
+ text: "椹垮煄鍖�"
+ }, {
+ value: "411721",
+ text: "瑗垮钩鍘�"
+ }, {
+ value: "411722",
+ text: "涓婅敗鍘�"
+ }, {
+ value: "411723",
+ text: "骞宠垎鍘�"
+ }, {
+ value: "411724",
+ text: "姝i槼鍘�"
+ }, {
+ value: "411725",
+ text: "纭北鍘�"
+ }, {
+ value: "411726",
+ text: "娉岄槼鍘�"
+ }, {
+ value: "411727",
+ text: "姹濆崡鍘�"
+ }, {
+ value: "411628",
+ text: "閬傚钩鍘�"
+ }, {
+ value: "411729",
+ text: "鏂拌敗鍘�"
+ }]
+ }]
+}, {
+ value: '420000',
+ text: '婀栧寳鐪�',
+ children: [{
+ value: "420100",
+ text: "姝︽眽甯�",
+ children: [{
+ value: "420102",
+ text: "姹熷哺鍖�"
+ }, {
+ value: "420103",
+ text: "姹熸眽鍖�"
+ }, {
+ value: "420104",
+ text: "纭氬彛鍖�"
+ }, {
+ value: "420105",
+ text: "姹夐槼鍖�"
+ }, {
+ value: "420106",
+ text: "姝︽槍鍖�"
+ }, {
+ value: "420107",
+ text: "闈掑北鍖�"
+ }, {
+ value: "420111",
+ text: "娲北鍖�"
+ }, {
+ value: "420112",
+ text: "涓滆タ婀栧尯"
+ }, {
+ value: "420113",
+ text: "姹夊崡鍖�"
+ }, {
+ value: "420114",
+ text: "钄$敻鍖�"
+ }, {
+ value: "420115",
+ text: "姹熷鍖�"
+ }, {
+ value: "420116",
+ text: "榛勯檪鍖�"
+ }, {
+ value: "420117",
+ text: "鏂版床鍖�"
+ }, {
+ value: "420118",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "420200",
+ text: "榛勭煶甯�",
+ children: [{
+ value: "420202",
+ text: "榛勭煶娓尯"
+ }, {
+ value: "420203",
+ text: "瑗垮灞卞尯"
+ }, {
+ value: "420204",
+ text: "涓嬮檰鍖�"
+ }, {
+ value: "420205",
+ text: "閾佸北鍖�"
+ }, {
+ value: "420222",
+ text: "闃虫柊鍘�"
+ }, {
+ value: "420281",
+ text: "澶у喍甯�"
+ }, {
+ value: "420282",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "420300",
+ text: "鍗佸牥甯�",
+ children: [{
+ value: "420302",
+ text: "鑼呯鍖�"
+ }, {
+ value: "420303",
+ text: "寮犳咕鍖�"
+ }, {
+ value: "420321",
+ text: "閮у幙"
+ }, {
+ value: "420322",
+ text: "閮цタ鍘�"
+ }, {
+ value: "420323",
+ text: "绔瑰北鍘�"
+ }, {
+ value: "420324",
+ text: "绔规邯鍘�"
+ }, {
+ value: "420325",
+ text: "鎴垮幙"
+ }, {
+ value: "420381",
+ text: "涓规睙鍙e競"
+ }, {
+ value: "420382",
+ text: "鍩庡尯"
+ }, {
+ value: "420383",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "420500",
+ text: "瀹滄槍甯�",
+ children: [{
+ value: "420502",
+ text: "瑗块櫟鍖�"
+ }, {
+ value: "420503",
+ text: "浼嶅宀楀尯"
+ }, {
+ value: "420504",
+ text: "鐐瑰啗鍖�"
+ }, {
+ value: "420505",
+ text: "鐚囦涵鍖�"
+ }, {
+ value: "420506",
+ text: "澶烽櫟鍖�"
+ }, {
+ value: "420525",
+ text: "杩滃畨鍘�"
+ }, {
+ value: "420526",
+ text: "鍏村北鍘�"
+ }, {
+ value: "420527",
+ text: "绉綊鍘�"
+ }, {
+ value: "420528",
+ text: "闀块槼鍦熷鏃忚嚜娌诲幙"
+ }, {
+ value: "420529",
+ text: "浜斿嘲鍦熷鏃忚嚜娌诲幙"
+ }, {
+ value: "420551",
+ text: "钁涙床鍧濆尯"
+ }, {
+ value: "420552",
+ text: "寮�鍙戝尯"
+ }, {
+ value: "420581",
+ text: "瀹滈兘甯�"
+ }, {
+ value: "420582",
+ text: "褰撻槼甯�"
+ }, {
+ value: "420583",
+ text: "鏋濇睙甯�"
+ }, {
+ value: "420584",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "420600",
+ text: "瑗勯槼甯�",
+ children: [{
+ value: "420602",
+ text: "瑗勫煄鍖�"
+ }, {
+ value: "420606",
+ text: "妯婂煄鍖�"
+ }, {
+ value: "420607",
+ text: "瑗勫窞鍖�"
+ }, {
+ value: "420624",
+ text: "鍗楁汲鍘�"
+ }, {
+ value: "420625",
+ text: "璋峰煄鍘�"
+ }, {
+ value: "420626",
+ text: "淇濆悍鍘�"
+ }, {
+ value: "420682",
+ text: "鑰佹渤鍙e競"
+ }, {
+ value: "420683",
+ text: "鏋i槼甯�"
+ }, {
+ value: "420684",
+ text: "瀹滃煄甯�"
+ }, {
+ value: "420685",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "420700",
+ text: "閯傚窞甯�",
+ children: [{
+ value: "420702",
+ text: "姊佸瓙婀栧尯"
+ }, {
+ value: "420703",
+ text: "鍗庡鍖�"
+ }, {
+ value: "420704",
+ text: "閯傚煄鍖�"
+ }, {
+ value: "420705",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "420800",
+ text: "鑽嗛棬甯�",
+ children: [{
+ value: "420802",
+ text: "涓滃疂鍖�"
+ }, {
+ value: "420804",
+ text: "鎺囧垁鍖�"
+ }, {
+ value: "420821",
+ text: "浜北鍘�"
+ }, {
+ value: "420822",
+ text: "娌欐磱鍘�"
+ }, {
+ value: "420881",
+ text: "閽熺ゥ甯�"
+ }, {
+ value: "420882",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "420900",
+ text: "瀛濇劅甯�",
+ children: [{
+ value: "420902",
+ text: "瀛濆崡鍖�"
+ }, {
+ value: "420921",
+ text: "瀛濇槍鍘�"
+ }, {
+ value: "420922",
+ text: "澶ф偀鍘�"
+ }, {
+ value: "420923",
+ text: "浜戞ⅵ鍘�"
+ }, {
+ value: "420981",
+ text: "搴斿煄甯�"
+ }, {
+ value: "420982",
+ text: "瀹夐檰甯�"
+ }, {
+ value: "420984",
+ text: "姹夊窛甯�"
+ }, {
+ value: "420985",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "421000",
+ text: "鑽嗗窞甯�",
+ children: [{
+ value: "421002",
+ text: "娌欏競鍖�"
+ }, {
+ value: "421003",
+ text: "鑽嗗窞鍖�"
+ }, {
+ value: "421022",
+ text: "鍏畨鍘�"
+ }, {
+ value: "421023",
+ text: "鐩戝埄鍘�"
+ }, {
+ value: "421024",
+ text: "姹熼櫟鍘�"
+ }, {
+ value: "421081",
+ text: "鐭抽甯�"
+ }, {
+ value: "421083",
+ text: "娲箹甯�"
+ }, {
+ value: "421087",
+ text: "鏉炬粙甯�"
+ }, {
+ value: "421088",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "421100",
+ text: "榛勫唸甯�",
+ children: [{
+ value: "421102",
+ text: "榛勫窞鍖�"
+ }, {
+ value: "421121",
+ text: "鍥㈤鍘�"
+ }, {
+ value: "421122",
+ text: "绾㈠畨鍘�"
+ }, {
+ value: "421123",
+ text: "缃楃敯鍘�"
+ }, {
+ value: "421124",
+ text: "鑻卞北鍘�"
+ }, {
+ value: "421125",
+ text: "娴犳按鍘�"
+ }, {
+ value: "421126",
+ text: "钑叉槬鍘�"
+ }, {
+ value: "421127",
+ text: "榛勬鍘�"
+ }, {
+ value: "421181",
+ text: "楹诲煄甯�"
+ }, {
+ value: "421182",
+ text: "姝︾┐甯�"
+ }, {
+ value: "421183",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "421200",
+ text: "鍜稿畞甯�",
+ children: [{
+ value: "421202",
+ text: "鍜稿畨鍖�"
+ }, {
+ value: "421221",
+ text: "鍢夐奔鍘�"
+ }, {
+ value: "421222",
+ text: "閫氬煄鍘�"
+ }, {
+ value: "421223",
+ text: "宕囬槼鍘�"
+ }, {
+ value: "421224",
+ text: "閫氬北鍘�"
+ }, {
+ value: "421281",
+ text: "璧ゅ甯�"
+ }, {
+ value: "421282",
+ text: "娓╂硥鍩庡尯"
+ }, {
+ value: "421283",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "421300",
+ text: "闅忓窞甯�",
+ children: [{
+ value: "421302",
+ text: "鏇鹃兘鍖�"
+ }, {
+ value: "421321",
+ text: "闅忓幙"
+ }, {
+ value: "421381",
+ text: "骞挎按甯�"
+ }, {
+ value: "421382",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "422800",
+ text: "鎭╂柦鍦熷鏃忚嫍鏃忚嚜娌诲窞",
+ children: [{
+ value: "422801",
+ text: "鎭╂柦甯�"
+ }, {
+ value: "422802",
+ text: "鍒╁窛甯�"
+ }, {
+ value: "422822",
+ text: "寤哄鍘�"
+ }, {
+ value: "422823",
+ text: "宸翠笢鍘�"
+ }, {
+ value: "422825",
+ text: "瀹f仼鍘�"
+ }, {
+ value: "422826",
+ text: "鍜镐赴鍘�"
+ }, {
+ value: "422827",
+ text: "鏉ュ嚖鍘�"
+ }, {
+ value: "422828",
+ text: "楣ゅ嘲鍘�"
+ }, {
+ value: "422829",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "429004",
+ text: "浠欐甯�"
+ }, {
+ value: "429005",
+ text: "娼滄睙甯�"
+ }, {
+ value: "429006",
+ text: "澶╅棬甯�"
+ }, {
+ value: "429021",
+ text: "绁炲啘鏋舵灄鍖�"
+ }]
+}, {
+ value: '430000',
+ text: '婀栧崡鐪�',
+ children: [{
+ value: "430100",
+ text: "闀挎矙甯�",
+ children: [{
+ value: "430102",
+ text: "鑺欒搲鍖�"
+ }, {
+ value: "430103",
+ text: "澶╁績鍖�"
+ }, {
+ value: "430104",
+ text: "宀抽簱鍖�"
+ }, {
+ value: "430105",
+ text: "寮�绂忓尯"
+ }, {
+ value: "430111",
+ text: "闆ㄨ姳鍖�"
+ }, {
+ value: "430121",
+ text: "闀挎矙鍘�"
+ }, {
+ value: "430122",
+ text: "鏈涘煄鍘�"
+ }, {
+ value: "430124",
+ text: "瀹佷埂鍘�"
+ }, {
+ value: "430181",
+ text: "娴忛槼甯�"
+ }, {
+ value: "430182",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "430200",
+ text: "鏍床甯�",
+ children: [{
+ value: "430202",
+ text: "鑽峰鍖�"
+ }, {
+ value: "430203",
+ text: "鑺︽窞鍖�"
+ }, {
+ value: "430204",
+ text: "鐭冲嘲鍖�"
+ }, {
+ value: "430211",
+ text: "澶╁厓鍖�"
+ }, {
+ value: "430221",
+ text: "鏍床鍘�"
+ }, {
+ value: "430223",
+ text: "鏀稿幙"
+ }, {
+ value: "430224",
+ text: "鑼堕櫟鍘�"
+ }, {
+ value: "430225",
+ text: "鐐庨櫟鍘�"
+ }, {
+ value: "430281",
+ text: "閱撮櫟甯�"
+ }, {
+ value: "430282",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "430300",
+ text: "婀樻江甯�",
+ children: [{
+ value: "430302",
+ text: "闆ㄦ箹鍖�"
+ }, {
+ value: "430304",
+ text: "宀冲鍖�"
+ }, {
+ value: "430321",
+ text: "婀樻江鍘�"
+ }, {
+ value: "430381",
+ text: "婀樹埂甯�"
+ }, {
+ value: "430382",
+ text: "闊跺北甯�"
+ }, {
+ value: "430383",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "430400",
+ text: "琛¢槼甯�",
+ children: [{
+ value: "430405",
+ text: "鐝犳櫀鍖�"
+ }, {
+ value: "430406",
+ text: "闆佸嘲鍖�"
+ }, {
+ value: "430407",
+ text: "鐭抽紦鍖�"
+ }, {
+ value: "430408",
+ text: "钂告箻鍖�"
+ }, {
+ value: "430412",
+ text: "鍗楀渤鍖�"
+ }, {
+ value: "430421",
+ text: "琛¢槼鍘�"
+ }, {
+ value: "430422",
+ text: "琛″崡鍘�"
+ }, {
+ value: "430423",
+ text: "琛″北鍘�"
+ }, {
+ value: "430424",
+ text: "琛′笢鍘�"
+ }, {
+ value: "430426",
+ text: "绁佷笢鍘�"
+ }, {
+ value: "430481",
+ text: "鑰掗槼甯�"
+ }, {
+ value: "430482",
+ text: "甯稿畞甯�"
+ }, {
+ value: "430483",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "430500",
+ text: "閭甸槼甯�",
+ children: [{
+ value: "430502",
+ text: "鍙屾竻鍖�"
+ }, {
+ value: "430503",
+ text: "澶хゥ鍖�"
+ }, {
+ value: "430511",
+ text: "鍖楀鍖�"
+ }, {
+ value: "430521",
+ text: "閭典笢鍘�"
+ }, {
+ value: "430522",
+ text: "鏂伴偟鍘�"
+ }, {
+ value: "430523",
+ text: "閭甸槼鍘�"
+ }, {
+ value: "430524",
+ text: "闅嗗洖鍘�"
+ }, {
+ value: "430525",
+ text: "娲炲彛鍘�"
+ }, {
+ value: "430527",
+ text: "缁ュ畞鍘�"
+ }, {
+ value: "430528",
+ text: "鏂板畞鍘�"
+ }, {
+ value: "430529",
+ text: "鍩庢鑻楁棌鑷不鍘�"
+ }, {
+ value: "430581",
+ text: "姝﹀唸甯�"
+ }, {
+ value: "430582",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "430600",
+ text: "宀抽槼甯�",
+ children: [{
+ value: "430602",
+ text: "宀抽槼妤煎尯"
+ }, {
+ value: "430603",
+ text: "浜戞邯鍖�"
+ }, {
+ value: "430611",
+ text: "鍚涘北鍖�"
+ }, {
+ value: "430621",
+ text: "宀抽槼鍘�"
+ }, {
+ value: "430623",
+ text: "鍗庡鍘�"
+ }, {
+ value: "430624",
+ text: "婀橀槾鍘�"
+ }, {
+ value: "430626",
+ text: "骞虫睙鍘�"
+ }, {
+ value: "430681",
+ text: "姹ㄧ綏甯�"
+ }, {
+ value: "430682",
+ text: "涓存箻甯�"
+ }, {
+ value: "430683",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "430700",
+ text: "甯稿痉甯�",
+ children: [{
+ value: "430702",
+ text: "姝﹂櫟鍖�"
+ }, {
+ value: "430703",
+ text: "榧庡煄鍖�"
+ }, {
+ value: "430721",
+ text: "瀹変埂鍘�"
+ }, {
+ value: "430722",
+ text: "姹夊鍘�"
+ }, {
+ value: "430723",
+ text: "婢у幙"
+ }, {
+ value: "430724",
+ text: "涓存晶鍘�"
+ }, {
+ value: "430725",
+ text: "妗冩簮鍘�"
+ }, {
+ value: "430726",
+ text: "鐭抽棬鍘�"
+ }, {
+ value: "430781",
+ text: "娲ュ競甯�"
+ }, {
+ value: "430782",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "430800",
+ text: "寮犲鐣屽競",
+ children: [{
+ value: "430802",
+ text: "姘稿畾鍖�"
+ }, {
+ value: "430811",
+ text: "姝﹂櫟婧愬尯"
+ }, {
+ value: "430821",
+ text: "鎱堝埄鍘�"
+ }, {
+ value: "430822",
+ text: "妗戞鍘�"
+ }, {
+ value: "430823",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "430900",
+ text: "鐩婇槼甯�",
+ children: [{
+ value: "430902",
+ text: "璧勯槼鍖�"
+ }, {
+ value: "430903",
+ text: "璧北鍖�"
+ }, {
+ value: "430921",
+ text: "鍗楀幙"
+ }, {
+ value: "430922",
+ text: "妗冩睙鍘�"
+ }, {
+ value: "430923",
+ text: "瀹夊寲鍘�"
+ }, {
+ value: "430981",
+ text: "娌呮睙甯�"
+ }, {
+ value: "430982",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "431000",
+ text: "閮村窞甯�",
+ children: [{
+ value: "431002",
+ text: "鍖楁箹鍖�"
+ }, {
+ value: "431003",
+ text: "鑻忎粰鍖�"
+ }, {
+ value: "431021",
+ text: "妗傞槼鍘�"
+ }, {
+ value: "431022",
+ text: "瀹滅珷鍘�"
+ }, {
+ value: "431023",
+ text: "姘稿叴鍘�"
+ }, {
+ value: "431024",
+ text: "鍢夌鍘�"
+ }, {
+ value: "431025",
+ text: "涓存鍘�"
+ }, {
+ value: "431026",
+ text: "姹濆煄鍘�"
+ }, {
+ value: "431027",
+ text: "妗備笢鍘�"
+ }, {
+ value: "431028",
+ text: "瀹変粊鍘�"
+ }, {
+ value: "431081",
+ text: "璧勫叴甯�"
+ }, {
+ value: "431082",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "431100",
+ text: "姘稿窞甯�",
+ children: [{
+ value: "431102",
+ text: "闆堕櫟鍖�"
+ }, {
+ value: "431103",
+ text: "鍐锋按婊╁尯"
+ }, {
+ value: "431121",
+ text: "绁侀槼鍘�"
+ }, {
+ value: "431122",
+ text: "涓滃畨鍘�"
+ }, {
+ value: "431123",
+ text: "鍙岀墝鍘�"
+ }, {
+ value: "431124",
+ text: "閬撳幙"
+ }, {
+ value: "431125",
+ text: "姹熸案鍘�"
+ }, {
+ value: "431126",
+ text: "瀹佽繙鍘�"
+ }, {
+ value: "431127",
+ text: "钃濆北鍘�"
+ }, {
+ value: "431128",
+ text: "鏂扮敯鍘�"
+ }, {
+ value: "431129",
+ text: "姹熷崕鐟舵棌鑷不鍘�"
+ }, {
+ value: "431130",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "431200",
+ text: "鎬�鍖栧競",
+ children: [{
+ value: "431202",
+ text: "楣ゅ煄鍖�"
+ }, {
+ value: "431221",
+ text: "涓柟鍘�"
+ }, {
+ value: "431222",
+ text: "娌呴櫟鍘�"
+ }, {
+ value: "431223",
+ text: "杈版邯鍘�"
+ }, {
+ value: "431224",
+ text: "婧嗘郸鍘�"
+ }, {
+ value: "431225",
+ text: "浼氬悓鍘�"
+ }, {
+ value: "431226",
+ text: "楹婚槼鑻楁棌鑷不鍘�"
+ }, {
+ value: "431227",
+ text: "鏂版檭渚楁棌鑷不鍘�"
+ }, {
+ value: "431228",
+ text: "鑺锋睙渚楁棌鑷不鍘�"
+ }, {
+ value: "431229",
+ text: "闈栧窞鑻楁棌渚楁棌鑷不鍘�"
+ }, {
+ value: "431230",
+ text: "閫氶亾渚楁棌鑷不鍘�"
+ }, {
+ value: "431281",
+ text: "娲睙甯�"
+ }, {
+ value: "431282",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "431300",
+ text: "濞勫簳甯�",
+ children: [{
+ value: "431302",
+ text: "濞勬槦鍖�"
+ }, {
+ value: "431321",
+ text: "鍙屽嘲鍘�"
+ }, {
+ value: "431322",
+ text: "鏂板寲鍘�"
+ }, {
+ value: "431381",
+ text: "鍐锋按姹熷競"
+ }, {
+ value: "431382",
+ text: "娑熸簮甯�"
+ }, {
+ value: "431383",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "433100",
+ text: "婀樿タ鍦熷鏃忚嫍鏃忚嚜娌诲窞",
+ children: [{
+ value: "433101",
+ text: "鍚夐甯�"
+ }, {
+ value: "433122",
+ text: "娉告邯鍘�"
+ }, {
+ value: "433123",
+ text: "鍑ゅ嚢鍘�"
+ }, {
+ value: "433124",
+ text: "鑺卞灒鍘�"
+ }, {
+ value: "433125",
+ text: "淇濋潠鍘�"
+ }, {
+ value: "433126",
+ text: "鍙や笀鍘�"
+ }, {
+ value: "433127",
+ text: "姘搁『鍘�"
+ }, {
+ value: "433130",
+ text: "榫欏北鍘�"
+ }, {
+ value: "433131",
+ text: "鍏跺畠鍖�"
+ }]
+ }]
+}, {
+ value: '440000',
+ text: '骞夸笢鐪�',
+ children: [{
+ value: "440100",
+ text: "骞垮窞甯�",
+ children: [{
+ value: "440103",
+ text: "鑽旀咕鍖�"
+ }, {
+ value: "440104",
+ text: "瓒婄鍖�"
+ }, {
+ value: "440105",
+ text: "娴风彔鍖�"
+ }, {
+ value: "440106",
+ text: "澶╂渤鍖�"
+ }, {
+ value: "440111",
+ text: "鐧戒簯鍖�"
+ }, {
+ value: "440112",
+ text: "榛勫煍鍖�"
+ }, {
+ value: "440113",
+ text: "鐣鍖�"
+ }, {
+ value: "440114",
+ text: "鑺遍兘鍖�"
+ }, {
+ value: "440115",
+ text: "鍗楁矙鍖�"
+ }, {
+ value: "440116",
+ text: "钀濆矖鍖�"
+ }, {
+ value: "440183",
+ text: "澧炲煄甯�"
+ }, {
+ value: "440184",
+ text: "浠庡寲甯�"
+ }, {
+ value: "440188",
+ text: "涓滃北鍖�"
+ }, {
+ value: "440189",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "440200",
+ text: "闊跺叧甯�",
+ children: [{
+ value: "440203",
+ text: "姝︽睙鍖�"
+ }, {
+ value: "440204",
+ text: "娴堟睙鍖�"
+ }, {
+ value: "440205",
+ text: "鏇叉睙鍖�"
+ }, {
+ value: "440222",
+ text: "濮嬪叴鍘�"
+ }, {
+ value: "440224",
+ text: "浠佸寲鍘�"
+ }, {
+ value: "440229",
+ text: "缈佹簮鍘�"
+ }, {
+ value: "440232",
+ text: "涔虫簮鐟舵棌鑷不鍘�"
+ }, {
+ value: "440233",
+ text: "鏂颁赴鍘�"
+ }, {
+ value: "440281",
+ text: "涔愭槍甯�"
+ }, {
+ value: "440282",
+ text: "鍗楅泟甯�"
+ }, {
+ value: "440283",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "440300",
+ text: "娣卞湷甯�",
+ children: [{
+ value: "440303",
+ text: "缃楁箹鍖�"
+ }, {
+ value: "440304",
+ text: "绂忕敯鍖�"
+ }, {
+ value: "440305",
+ text: "鍗楀北鍖�"
+ }, {
+ value: "440306",
+ text: "瀹濆畨鍖�"
+ }, {
+ value: "440307",
+ text: "榫欏矖鍖�"
+ }, {
+ value: "440308",
+ text: "鐩愮敯鍖�"
+ }, {
+ value: "440309",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "440400",
+ text: "鐝犳捣甯�",
+ children: [{
+ value: "440402",
+ text: "棣欐床鍖�"
+ }, {
+ value: "440403",
+ text: "鏂楅棬鍖�"
+ }, {
+ value: "440404",
+ text: "閲戞咕鍖�"
+ }, {
+ value: "440486",
+ text: "閲戝攼鍖�"
+ }, {
+ value: "440487",
+ text: "鍗楁咕鍖�"
+ }, {
+ value: "440488",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "440500",
+ text: "姹曞ご甯�",
+ children: [{
+ value: "440507",
+ text: "榫欐箹鍖�"
+ }, {
+ value: "440511",
+ text: "閲戝钩鍖�"
+ }, {
+ value: "440512",
+ text: "婵犳睙鍖�"
+ }, {
+ value: "440513",
+ text: "娼槼鍖�"
+ }, {
+ value: "440514",
+ text: "娼崡鍖�"
+ }, {
+ value: "440515",
+ text: "婢勬捣鍖�"
+ }, {
+ value: "440523",
+ text: "鍗楁境鍘�"
+ }, {
+ value: "440524",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "440600",
+ text: "浣涘北甯�",
+ children: [{
+ value: "440604",
+ text: "绂呭煄鍖�"
+ }, {
+ value: "440605",
+ text: "鍗楁捣鍖�"
+ }, {
+ value: "440606",
+ text: "椤哄痉鍖�"
+ }, {
+ value: "440607",
+ text: "涓夋按鍖�"
+ }, {
+ value: "440608",
+ text: "楂樻槑鍖�"
+ }, {
+ value: "440609",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "440700",
+ text: "姹熼棬甯�",
+ children: [{
+ value: "440703",
+ text: "钃睙鍖�"
+ }, {
+ value: "440704",
+ text: "姹熸捣鍖�"
+ }, {
+ value: "440705",
+ text: "鏂颁細鍖�"
+ }, {
+ value: "440781",
+ text: "鍙板北甯�"
+ }, {
+ value: "440783",
+ text: "寮�骞冲競"
+ }, {
+ value: "440784",
+ text: "楣ゅ北甯�"
+ }, {
+ value: "440785",
+ text: "鎭╁钩甯�"
+ }, {
+ value: "440786",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "440800",
+ text: "婀涙睙甯�",
+ children: [{
+ value: "440802",
+ text: "璧ゅ潕鍖�"
+ }, {
+ value: "440803",
+ text: "闇炲北鍖�"
+ }, {
+ value: "440804",
+ text: "鍧″ご鍖�"
+ }, {
+ value: "440811",
+ text: "楹荤珷鍖�"
+ }, {
+ value: "440823",
+ text: "閬傛邯鍘�"
+ }, {
+ value: "440825",
+ text: "寰愰椈鍘�"
+ }, {
+ value: "440881",
+ text: "寤夋睙甯�"
+ }, {
+ value: "440882",
+ text: "闆峰窞甯�"
+ }, {
+ value: "440883",
+ text: "鍚村窛甯�"
+ }, {
+ value: "440884",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "440900",
+ text: "鑼傚悕甯�",
+ children: [{
+ value: "440902",
+ text: "鑼傚崡鍖�"
+ }, {
+ value: "440903",
+ text: "鑼傛腐鍖�"
+ }, {
+ value: "440923",
+ text: "鐢电櫧鍘�"
+ }, {
+ value: "440981",
+ text: "楂樺窞甯�"
+ }, {
+ value: "440982",
+ text: "鍖栧窞甯�"
+ }, {
+ value: "440983",
+ text: "淇″疁甯�"
+ }, {
+ value: "440984",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "441200",
+ text: "鑲囧簡甯�",
+ children: [{
+ value: "441202",
+ text: "绔窞鍖�"
+ }, {
+ value: "441203",
+ text: "榧庢箹鍖�"
+ }, {
+ value: "441223",
+ text: "骞垮畞鍘�"
+ }, {
+ value: "441224",
+ text: "鎬�闆嗗幙"
+ }, {
+ value: "441225",
+ text: "灏佸紑鍘�"
+ }, {
+ value: "441226",
+ text: "寰峰簡鍘�"
+ }, {
+ value: "441283",
+ text: "楂樿甯�"
+ }, {
+ value: "441284",
+ text: "鍥涗細甯�"
+ }, {
+ value: "441285",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "441300",
+ text: "鎯犲窞甯�",
+ children: [{
+ value: "441302",
+ text: "鎯犲煄鍖�"
+ }, {
+ value: "441303",
+ text: "鎯犻槼鍖�"
+ }, {
+ value: "441322",
+ text: "鍗氱綏鍘�"
+ }, {
+ value: "441323",
+ text: "鎯犱笢鍘�"
+ }, {
+ value: "441324",
+ text: "榫欓棬鍘�"
+ }, {
+ value: "441325",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "441400",
+ text: "姊呭窞甯�",
+ children: [{
+ value: "441402",
+ text: "姊呮睙鍖�"
+ }, {
+ value: "441421",
+ text: "姊呭幙"
+ }, {
+ value: "441422",
+ text: "澶у煍鍘�"
+ }, {
+ value: "441423",
+ text: "涓伴『鍘�"
+ }, {
+ value: "441424",
+ text: "浜斿崕鍘�"
+ }, {
+ value: "441426",
+ text: "骞宠繙鍘�"
+ }, {
+ value: "441427",
+ text: "钑夊箔鍘�"
+ }, {
+ value: "441481",
+ text: "鍏村畞甯�"
+ }, {
+ value: "441482",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "441500",
+ text: "姹曞熬甯�",
+ children: [{
+ value: "441502",
+ text: "鍩庡尯"
+ }, {
+ value: "441521",
+ text: "娴蜂赴鍘�"
+ }, {
+ value: "441523",
+ text: "闄嗘渤鍘�"
+ }, {
+ value: "441581",
+ text: "闄嗕赴甯�"
+ }, {
+ value: "441582",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "441600",
+ text: "娌虫簮甯�",
+ children: [{
+ value: "441602",
+ text: "婧愬煄鍖�"
+ }, {
+ value: "441621",
+ text: "绱噾鍘�"
+ }, {
+ value: "441622",
+ text: "榫欏窛鍘�"
+ }, {
+ value: "441623",
+ text: "杩炲钩鍘�"
+ }, {
+ value: "441624",
+ text: "鍜屽钩鍘�"
+ }, {
+ value: "441625",
+ text: "涓滄簮鍘�"
+ }, {
+ value: "441626",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "441700",
+ text: "闃虫睙甯�",
+ children: [{
+ value: "441702",
+ text: "姹熷煄鍖�"
+ }, {
+ value: "441721",
+ text: "闃宠タ鍘�"
+ }, {
+ value: "441723",
+ text: "闃充笢鍘�"
+ }, {
+ value: "441781",
+ text: "闃虫槬甯�"
+ }, {
+ value: "441782",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "441800",
+ text: "娓呰繙甯�",
+ children: [{
+ value: "441802",
+ text: "娓呭煄鍖�"
+ }, {
+ value: "441821",
+ text: "浣涘唸鍘�"
+ }, {
+ value: "441823",
+ text: "闃冲北鍘�"
+ }, {
+ value: "441825",
+ text: "杩炲北澹棌鐟舵棌鑷不鍘�"
+ }, {
+ value: "441826",
+ text: "杩炲崡鐟舵棌鑷不鍘�"
+ }, {
+ value: "441827",
+ text: "娓呮柊鍘�"
+ }, {
+ value: "441881",
+ text: "鑻卞痉甯�"
+ }, {
+ value: "441882",
+ text: "杩炲窞甯�"
+ }, {
+ value: "441883",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "441900",
+ text: "涓滆帪甯�"
+ }, {
+ value: "442000",
+ text: "涓北甯�"
+ }, {
+ value: "445100",
+ text: "娼窞甯�",
+ children: [{
+ value: "445102",
+ text: "婀樻ˉ鍖�"
+ }, {
+ value: "445121",
+ text: "娼畨鍘�"
+ }, {
+ value: "445122",
+ text: "楗跺钩鍘�"
+ }, {
+ value: "445185",
+ text: "鏋邯鍖�"
+ }, {
+ value: "445186",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "445200",
+ text: "鎻槼甯�",
+ children: [{
+ value: "445202",
+ text: "姒曞煄鍖�"
+ }, {
+ value: "445221",
+ text: "鎻笢鍘�"
+ }, {
+ value: "445222",
+ text: "鎻タ鍘�"
+ }, {
+ value: "445224",
+ text: "鎯犳潵鍘�"
+ }, {
+ value: "445281",
+ text: "鏅畞甯�"
+ }, {
+ value: "445284",
+ text: "涓滃北鍖�"
+ }, {
+ value: "445285",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "445300",
+ text: "浜戞诞甯�",
+ children: [{
+ value: "445302",
+ text: "浜戝煄鍖�"
+ }, {
+ value: "445321",
+ text: "鏂板叴鍘�"
+ }, {
+ value: "445322",
+ text: "閮佸崡鍘�"
+ }, {
+ value: "445323",
+ text: "浜戝畨鍘�"
+ }, {
+ value: "445381",
+ text: "缃楀畾甯�"
+ }, {
+ value: "445382",
+ text: "鍏跺畠鍖�"
+ }]
+ }]
+}, {
+ value: '450000',
+ text: '骞胯タ澹棌',
+ children: [{
+ value: "450100",
+ text: "鍗楀畞甯�",
+ children: [{
+ value: "450102",
+ text: "鍏村畞鍖�"
+ }, {
+ value: "450103",
+ text: "闈掔鍖�"
+ }, {
+ value: "450105",
+ text: "姹熷崡鍖�"
+ }, {
+ value: "450107",
+ text: "瑗夸埂濉樺尯"
+ }, {
+ value: "450108",
+ text: "鑹簡鍖�"
+ }, {
+ value: "450109",
+ text: "閭曞畞鍖�"
+ }, {
+ value: "450122",
+ text: "姝﹂福鍘�"
+ }, {
+ value: "450123",
+ text: "闅嗗畨鍘�"
+ }, {
+ value: "450124",
+ text: "椹北鍘�"
+ }, {
+ value: "450125",
+ text: "涓婃灄鍘�"
+ }, {
+ value: "450126",
+ text: "瀹鹃槼鍘�"
+ }, {
+ value: "450127",
+ text: "妯幙"
+ }, {
+ value: "450128",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "450200",
+ text: "鏌冲窞甯�",
+ children: [{
+ value: "450202",
+ text: "鍩庝腑鍖�"
+ }, {
+ value: "450203",
+ text: "楸煎嘲鍖�"
+ }, {
+ value: "450204",
+ text: "鏌冲崡鍖�"
+ }, {
+ value: "450205",
+ text: "鏌冲寳鍖�"
+ }, {
+ value: "450221",
+ text: "鏌虫睙鍘�"
+ }, {
+ value: "450222",
+ text: "鏌冲煄鍘�"
+ }, {
+ value: "450223",
+ text: "楣垮鍘�"
+ }, {
+ value: "450224",
+ text: "铻嶅畨鍘�"
+ }, {
+ value: "450225",
+ text: "铻嶆按鑻楁棌鑷不鍘�"
+ }, {
+ value: "450226",
+ text: "涓夋睙渚楁棌鑷不鍘�"
+ }, {
+ value: "450227",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "450300",
+ text: "妗傛灄甯�",
+ children: [{
+ value: "450302",
+ text: "绉�宄板尯"
+ }, {
+ value: "450303",
+ text: "鍙犲僵鍖�"
+ }, {
+ value: "450304",
+ text: "璞″北鍖�"
+ }, {
+ value: "450305",
+ text: "涓冩槦鍖�"
+ }, {
+ value: "450311",
+ text: "闆佸北鍖�"
+ }, {
+ value: "450321",
+ text: "闃虫湐鍘�"
+ }, {
+ value: "450322",
+ text: "涓存鍘�"
+ }, {
+ value: "450323",
+ text: "鐏靛窛鍘�"
+ }, {
+ value: "450324",
+ text: "鍏ㄥ窞鍘�"
+ }, {
+ value: "450325",
+ text: "鍏村畨鍘�"
+ }, {
+ value: "450326",
+ text: "姘哥鍘�"
+ }, {
+ value: "450327",
+ text: "鐏岄槼鍘�"
+ }, {
+ value: "450328",
+ text: "榫欒儨鍚勬棌鑷不鍘�"
+ }, {
+ value: "450329",
+ text: "璧勬簮鍘�"
+ }, {
+ value: "450330",
+ text: "骞充箰鍘�"
+ }, {
+ value: "450331",
+ text: "鑽旀郸鍘�"
+ }, {
+ value: "450332",
+ text: "鎭煄鐟舵棌鑷不鍘�"
+ }, {
+ value: "450333",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "450400",
+ text: "姊у窞甯�",
+ children: [{
+ value: "450403",
+ text: "涓囩鍖�"
+ }, {
+ value: "450404",
+ text: "铦跺北鍖�"
+ }, {
+ value: "450405",
+ text: "闀挎床鍖�"
+ }, {
+ value: "450421",
+ text: "鑻嶆ⅶ鍘�"
+ }, {
+ value: "450422",
+ text: "钘ゅ幙"
+ }, {
+ value: "450423",
+ text: "钂欏北鍘�"
+ }, {
+ value: "450481",
+ text: "宀戞邯甯�"
+ }, {
+ value: "450482",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "450500",
+ text: "鍖楁捣甯�",
+ children: [{
+ value: "450502",
+ text: "娴峰煄鍖�"
+ }, {
+ value: "450503",
+ text: "閾舵捣鍖�"
+ }, {
+ value: "450512",
+ text: "閾佸北娓尯"
+ }, {
+ value: "450521",
+ text: "鍚堟郸鍘�"
+ }, {
+ value: "450522",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "450600",
+ text: "闃插煄娓競",
+ children: [{
+ value: "450602",
+ text: "娓彛鍖�"
+ }, {
+ value: "450603",
+ text: "闃插煄鍖�"
+ }, {
+ value: "450621",
+ text: "涓婃�濆幙"
+ }, {
+ value: "450681",
+ text: "涓滃叴甯�"
+ }, {
+ value: "450682",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "450700",
+ text: "閽﹀窞甯�",
+ children: [{
+ value: "450702",
+ text: "閽﹀崡鍖�"
+ }, {
+ value: "450703",
+ text: "閽﹀寳鍖�"
+ }, {
+ value: "450721",
+ text: "鐏靛北鍘�"
+ }, {
+ value: "450722",
+ text: "娴﹀寳鍘�"
+ }, {
+ value: "450723",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "450800",
+ text: "璐垫腐甯�",
+ children: [{
+ value: "450802",
+ text: "娓寳鍖�"
+ }, {
+ value: "450803",
+ text: "娓崡鍖�"
+ }, {
+ value: "450804",
+ text: "瑕冨鍖�"
+ }, {
+ value: "450821",
+ text: "骞冲崡鍘�"
+ }, {
+ value: "450881",
+ text: "妗傚钩甯�"
+ }, {
+ value: "450882",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "450900",
+ text: "鐜夋灄甯�",
+ children: [{
+ value: "450902",
+ text: "鐜夊窞鍖�"
+ }, {
+ value: "450921",
+ text: "瀹瑰幙"
+ }, {
+ value: "450922",
+ text: "闄嗗窛鍘�"
+ }, {
+ value: "450923",
+ text: "鍗氱櫧鍘�"
+ }, {
+ value: "450924",
+ text: "鍏翠笟鍘�"
+ }, {
+ value: "450981",
+ text: "鍖楁祦甯�"
+ }, {
+ value: "450982",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "451000",
+ text: "鐧捐壊甯�",
+ children: [{
+ value: "451002",
+ text: "鍙虫睙鍖�"
+ }, {
+ value: "451021",
+ text: "鐢伴槼鍘�"
+ }, {
+ value: "451022",
+ text: "鐢颁笢鍘�"
+ }, {
+ value: "451023",
+ text: "骞虫灉鍘�"
+ }, {
+ value: "451024",
+ text: "寰蜂繚鍘�"
+ }, {
+ value: "451025",
+ text: "闈栬タ鍘�"
+ }, {
+ value: "451026",
+ text: "閭e潯鍘�"
+ }, {
+ value: "451027",
+ text: "鍑屼簯鍘�"
+ }, {
+ value: "451028",
+ text: "涔愪笟鍘�"
+ }, {
+ value: "451029",
+ text: "鐢版灄鍘�"
+ }, {
+ value: "451030",
+ text: "瑗挎灄鍘�"
+ }, {
+ value: "451031",
+ text: "闅嗘灄鍚勬棌鑷不鍘�"
+ }, {
+ value: "451032",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "451100",
+ text: "璐哄窞甯�",
+ children: [{
+ value: "451102",
+ text: "鍏鍖�"
+ }, {
+ value: "451121",
+ text: "鏄钩鍘�"
+ }, {
+ value: "451122",
+ text: "閽熷北鍘�"
+ }, {
+ value: "451123",
+ text: "瀵屽窛鐟舵棌鑷不鍘�"
+ },
+
+ {
+ value: "451124",
+ text: "鍏跺畠鍖�"
+ }
+ ]
+ }, {
+ value: "451200",
+ text: "娌虫睜甯�",
+ children: [{
+ value: "451202",
+ text: "閲戝煄姹熷尯"
+ }, {
+ value: "451221",
+ text: "鍗椾腹鍘�"
+ }, {
+ value: "451222",
+ text: "澶╁敞鍘�"
+ }, {
+ value: "451223",
+ text: "鍑ゅ北鍘�"
+ }, {
+ value: "451224",
+ text: "涓滃叞鍘�"
+ }, {
+ value: "451225",
+ text: "缃楀煄浠浆鏃忚嚜娌诲幙"
+ }, {
+ value: "451226",
+ text: "鐜睙姣涘崡鏃忚嚜娌诲幙"
+ }, {
+ value: "451227",
+ text: "宸撮┈鐟舵棌鑷不鍘�"
+ }, {
+ value: "451228",
+ text: "閮藉畨鐟舵棌鑷不鍘�"
+ }, {
+ value: "451229",
+ text: "澶у寲鐟舵棌鑷不鍘�"
+ }, {
+ value: "451281",
+ text: "瀹滃窞甯�"
+ }, {
+ value: "451282",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "451300",
+ text: "鏉ュ甯�",
+ children: [{
+ value: "451302",
+ text: "鍏村鍖�"
+ }, {
+ value: "451321",
+ text: "蹇诲煄鍘�"
+ }, {
+ value: "451322",
+ text: "璞″窞鍘�"
+ }, {
+ value: "451323",
+ text: "姝﹀鍘�"
+ }, {
+ value: "451324",
+ text: "閲戠鐟舵棌鑷不鍘�"
+ }, {
+ value: "451381",
+ text: "鍚堝北甯�"
+ }, {
+ value: "451382",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "451400",
+ text: "宕囧乏甯�",
+ children: [{
+ value: "451402",
+ text: "姹熸床鍖�"
+ }, {
+ value: "451421",
+ text: "鎵剁互鍘�"
+ }, {
+ value: "451422",
+ text: "瀹佹槑鍘�"
+ }, {
+ value: "451423",
+ text: "榫欏窞鍘�"
+ }, {
+ value: "451424",
+ text: "澶ф柊鍘�"
+ }, {
+ value: "451425",
+ text: "澶╃瓑鍘�"
+ }, {
+ value: "451481",
+ text: "鍑ゥ甯�"
+ }, {
+ value: "451482",
+ text: "鍏跺畠鍖�"
+ }]
+ }]
+}, {
+ value: '460000',
+ text: '娴峰崡鐪�',
+ children: [{
+ value: "460100",
+ text: "娴峰彛甯�",
+ children: [{
+ value: "460105",
+ text: "绉�鑻卞尯"
+ }, {
+ value: "460106",
+ text: "榫欏崕鍖�"
+ }, {
+ value: "460107",
+ text: "鐞煎北鍖�"
+ }, {
+ value: "460108",
+ text: "缇庡叞鍖�"
+ }, {
+ value: "460109",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "460200",
+ text: "涓変簹甯�"
+ }, {
+ value: "469001",
+ text: "浜旀寚灞卞競"
+ }, {
+ value: "469002",
+ text: "鐞兼捣甯�"
+ }, {
+ value: "469003",
+ text: "鍎嬪窞甯�"
+ }, {
+ value: "469005",
+ text: "鏂囨槍甯�"
+ }, {
+ value: "469006",
+ text: "涓囧畞甯�"
+ }, {
+ value: "469007",
+ text: "涓滄柟甯�"
+ }, {
+ value: "469025",
+ text: "瀹氬畨鍘�"
+ }, {
+ value: "469026",
+ text: "灞槍鍘�"
+ }, {
+ value: "469027",
+ text: "婢勮繄鍘�"
+ }, {
+ value: "469028",
+ text: "涓撮珮鍘�"
+ }, {
+ value: "469030",
+ text: "鐧芥矙榛庢棌鑷不鍘�"
+ }, {
+ value: "469031",
+ text: "鏄屾睙榛庢棌鑷不鍘�"
+ }, {
+ value: "469033",
+ text: "涔愪笢榛庢棌鑷不鍘�"
+ }, {
+ value: "469034",
+ text: "闄垫按榛庢棌鑷不鍘�"
+ }, {
+ value: "469035",
+ text: "淇濅涵榛庢棌鑻楁棌鑷不鍘�"
+ }, {
+ value: "469036",
+ text: "鐞间腑榛庢棌鑻楁棌鑷不鍘�"
+ }, {
+ value: "469037",
+ text: "瑗挎矙缇ゅ矝"
+ }, {
+ value: "469038",
+ text: "鍗楁矙缇ゅ矝"
+ }, {
+ value: "469039",
+ text: "涓矙缇ゅ矝鐨勫矝绀佸強鍏舵捣鍩�"
+ }]
+}, {
+ value: '500000',
+ text: '閲嶅簡',
+ children: [{
+ value: '500000',
+ text: '閲嶅簡',
+ children: [{
+ value: "500101",
+ text: "涓囧窞鍖�"
+ }, {
+ value: "500102",
+ text: "娑櫟鍖�"
+ }, {
+ value: "500103",
+ text: "娓濅腑鍖�"
+ }, {
+ value: "500104",
+ text: "澶ф浮鍙e尯"
+ }, {
+ value: "500105",
+ text: "姹熷寳鍖�"
+ }, {
+ value: "500106",
+ text: "娌欏潽鍧濆尯"
+ }, {
+ value: "500107",
+ text: "涔濋緳鍧″尯"
+ }, {
+ value: "500108",
+ text: "鍗楀哺鍖�"
+ }, {
+ value: "500109",
+ text: "鍖楃鍖�"
+ }, {
+ value: "500110",
+ text: "涓囩洓鍖�"
+ }, {
+ value: "500111",
+ text: "鍙屾ˉ鍖�"
+ }, {
+ value: "500112",
+ text: "娓濆寳鍖�"
+ }, {
+ value: "500113",
+ text: "宸村崡鍖�"
+ }, {
+ value: "500114",
+ text: "榛旀睙鍖�"
+ }, {
+ value: "500115",
+ text: "闀垮鍖�"
+ }, {
+ value: "500222",
+ text: "缍︽睙鍘�"
+ }, {
+ value: "500223",
+ text: "娼煎崡鍘�"
+ }, {
+ value: "500224",
+ text: "閾滄鍘�"
+ }, {
+ value: "500225",
+ text: "澶ц冻鍘�"
+ }, {
+ value: "500226",
+ text: "鑽f槍鍘�"
+ }, {
+ value: "500227",
+ text: "鐠у北鍘�"
+ }, {
+ value: "500228",
+ text: "姊佸钩鍘�"
+ }, {
+ value: "500229",
+ text: "鍩庡彛鍘�"
+ }, {
+ value: "500230",
+ text: "涓伴兘鍘�"
+ }, {
+ value: "500231",
+ text: "鍨睙鍘�"
+ }, {
+ value: "500232",
+ text: "姝﹂殕鍘�"
+ }, {
+ value: "500233",
+ text: "蹇犲幙"
+ }, {
+ value: "500234",
+ text: "寮�鍘�"
+ }, {
+ value: "500235",
+ text: "浜戦槼鍘�"
+ }, {
+ value: "500236",
+ text: "濂夎妭鍘�"
+ }, {
+ value: "500237",
+ text: "宸北鍘�"
+ }, {
+ value: "500238",
+ text: "宸邯鍘�"
+ }, {
+ value: "500240",
+ text: "鐭虫煴鍦熷鏃忚嚜娌诲幙"
+ }, {
+ value: "500241",
+ text: "绉�灞卞湡瀹舵棌鑻楁棌鑷不鍘�"
+ }, {
+ value: "500242",
+ text: "閰夐槼鍦熷鏃忚嫍鏃忚嚜娌诲幙"
+ }, {
+ value: "500243",
+ text: "褰按鑻楁棌鍦熷鏃忚嚜娌诲幙"
+ }, {
+ value: "500381",
+ text: "姹熸触鍖�"
+ }, {
+ value: "500382",
+ text: "鍚堝窛鍖�"
+ }, {
+ value: "500383",
+ text: "姘稿窛鍖�"
+ }, {
+ value: "500384",
+ text: "鍗楀窛鍖�"
+ }, {
+ value: "500385",
+ text: "鍏跺畠鍖�"
+ }]
+ }]
+}, {
+ value: '510000',
+ text: '鍥涘窛鐪�',
+ children: [{
+ value: "510100",
+ text: "鎴愰兘甯�",
+ children: [{
+ value: "510104",
+ text: "閿︽睙鍖�"
+ }, {
+ value: "510105",
+ text: "闈掔緤鍖�"
+ }, {
+ value: "510106",
+ text: "閲戠墰鍖�"
+ }, {
+ value: "510107",
+ text: "姝︿警鍖�"
+ }, {
+ value: "510108",
+ text: "鎴愬崕鍖�"
+ }, {
+ value: "510112",
+ text: "榫欐硥椹垮尯"
+ }, {
+ value: "510113",
+ text: "闈掔櫧姹熷尯"
+ }, {
+ value: "510114",
+ text: "鏂伴兘鍖�"
+ }, {
+ value: "510115",
+ text: "娓╂睙鍖�"
+ }, {
+ value: "510121",
+ text: "閲戝爞鍘�"
+ }, {
+ value: "510122",
+ text: "鍙屾祦鍘�"
+ }, {
+ value: "510124",
+ text: "閮幙"
+ }, {
+ value: "510129",
+ text: "澶ч倯鍘�"
+ }, {
+ value: "510131",
+ text: "钂叉睙鍘�"
+ }, {
+ value: "510132",
+ text: "鏂版触鍘�"
+ }, {
+ value: "510181",
+ text: "閮芥睙鍫板競"
+ }, {
+ value: "510182",
+ text: "褰窞甯�"
+ }, {
+ value: "510183",
+ text: "閭涘磧甯�"
+ }, {
+ value: "510184",
+ text: "宕囧窞甯�"
+ }, {
+ value: "510185",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "510300",
+ text: "鑷础甯�",
+ children: [{
+ value: "510302",
+ text: "鑷祦浜曞尯"
+ }, {
+ value: "510303",
+ text: "璐′簳鍖�"
+ }, {
+ value: "510304",
+ text: "澶у畨鍖�"
+ }, {
+ value: "510311",
+ text: "娌挎哗鍖�"
+ }, {
+ value: "510321",
+ text: "鑽e幙"
+ }, {
+ value: "510322",
+ text: "瀵岄『鍘�"
+ }, {
+ value: "510323",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "510400",
+ text: "鏀�鏋濊姳甯�",
+ children: [{
+ value: "510402",
+ text: "涓滃尯"
+ }, {
+ value: "510403",
+ text: "瑗垮尯"
+ }, {
+ value: "510411",
+ text: "浠佸拰鍖�"
+ }, {
+ value: "510421",
+ text: "绫虫槗鍘�"
+ }, {
+ value: "510422",
+ text: "鐩愯竟鍘�"
+ }, {
+ value: "510423",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "510500",
+ text: "娉稿窞甯�",
+ children: [{
+ value: "510502",
+ text: "姹熼槼鍖�"
+ }, {
+ value: "510503",
+ text: "绾虫邯鍖�"
+ }, {
+ value: "510504",
+ text: "榫欓┈娼尯"
+ }, {
+ value: "510521",
+ text: "娉稿幙"
+ }, {
+ value: "510522",
+ text: "鍚堟睙鍘�"
+ }, {
+ value: "510524",
+ text: "鍙欐案鍘�"
+ }, {
+ value: "510525",
+ text: "鍙よ敽鍘�"
+ }, {
+ value: "510526",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "510600",
+ text: "寰烽槼甯�",
+ children: [{
+ value: "510603",
+ text: "鏃岄槼鍖�"
+ }, {
+ value: "510623",
+ text: "涓睙鍘�"
+ }, {
+ value: "510626",
+ text: "缃楁睙鍘�"
+ }, {
+ value: "510681",
+ text: "骞挎眽甯�"
+ }, {
+ value: "510682",
+ text: "浠�閭″競"
+ }, {
+ value: "510683",
+ text: "缁电甯�"
+ }, {
+ value: "510684",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "510700",
+ text: "缁甸槼甯�",
+ children: [{
+ value: "510703",
+ text: "娑煄鍖�"
+ }, {
+ value: "510704",
+ text: "娓镐粰鍖�"
+ }, {
+ value: "510722",
+ text: "涓夊彴鍘�"
+ }, {
+ value: "510723",
+ text: "鐩愪涵鍘�"
+ }, {
+ value: "510724",
+ text: "瀹夊幙"
+ }, {
+ value: "510725",
+ text: "姊撴郊鍘�"
+ }, {
+ value: "510726",
+ text: "鍖楀窛缇屾棌鑷不鍘�"
+ }, {
+ value: "510727",
+ text: "骞虫鍘�"
+ }, {
+ value: "510751",
+ text: "楂樻柊鍖�"
+ }, {
+ value: "510781",
+ text: "姹熸补甯�"
+ }, {
+ value: "510782",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "510800",
+ text: "骞垮厓甯�",
+ children: [{
+ value: "510802",
+ text: "鍒╁窞鍖�"
+ }, {
+ value: "510811",
+ text: "鍏冨潩鍖�"
+ }, {
+ value: "510812",
+ text: "鏈濆ぉ鍖�"
+ }, {
+ value: "510821",
+ text: "鏃鸿媿鍘�"
+ }, {
+ value: "510822",
+ text: "闈掑窛鍘�"
+ }, {
+ value: "510823",
+ text: "鍓戦榿鍘�"
+ }, {
+ value: "510824",
+ text: "鑻嶆邯鍘�"
+ }, {
+ value: "510825",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "510900",
+ text: "閬傚畞甯�",
+ children: [{
+ value: "510903",
+ text: "鑸瑰北鍖�"
+ }, {
+ value: "510904",
+ text: "瀹夊眳鍖�"
+ }, {
+ value: "510921",
+ text: "钃邯鍘�"
+ }, {
+ value: "510922",
+ text: "灏勬椽鍘�"
+ }, {
+ value: "510923",
+ text: "澶ц嫳鍘�"
+ }, {
+ value: "510924",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "511000",
+ text: "鍐呮睙甯�",
+ children: [{
+ value: "511002",
+ text: "甯備腑鍖�"
+ }, {
+ value: "511011",
+ text: "涓滃叴鍖�"
+ }, {
+ value: "511024",
+ text: "濞佽繙鍘�"
+ }, {
+ value: "511025",
+ text: "璧勪腑鍘�"
+ }, {
+ value: "511028",
+ text: "闅嗘槍鍘�"
+ }, {
+ value: "511029",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "511100",
+ text: "涔愬北甯�",
+ children: [{
+ value: "511102",
+ text: "甯備腑鍖�"
+ }, {
+ value: "511111",
+ text: "娌欐咕鍖�"
+ }, {
+ value: "511112",
+ text: "浜旈�氭ˉ鍖�"
+ }, {
+ value: "511113",
+ text: "閲戝彛娌冲尯"
+ }, {
+ value: "511123",
+ text: "鐘嶄负鍘�"
+ }, {
+ value: "511124",
+ text: "浜曠爺鍘�"
+ }, {
+ value: "511126",
+ text: "澶规睙鍘�"
+ }, {
+ value: "511129",
+ text: "娌愬窛鍘�"
+ }, {
+ value: "511132",
+ text: "宄ㄨ竟褰濇棌鑷不鍘�"
+ }, {
+ value: "511133",
+ text: "椹竟褰濇棌鑷不鍘�"
+ }, {
+ value: "511181",
+ text: "宄ㄧ湁灞卞競"
+ }, {
+ value: "511182",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "511300",
+ text: "鍗楀厖甯�",
+ children: [{
+ value: "511302",
+ text: "椤哄簡鍖�"
+ }, {
+ value: "511303",
+ text: "楂樺潽鍖�"
+ }, {
+ value: "511304",
+ text: "鍢夐櫟鍖�"
+ }, {
+ value: "511321",
+ text: "鍗楅儴鍘�"
+ }, {
+ value: "511322",
+ text: "钀ュ北鍘�"
+ }, {
+ value: "511323",
+ text: "钃畨鍘�"
+ }, {
+ value: "511324",
+ text: "浠檱鍘�"
+ }, {
+ value: "511325",
+ text: "瑗垮厖鍘�"
+ }, {
+ value: "511381",
+ text: "闃嗕腑甯�"
+ }, {
+ value: "511382",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "511400",
+ text: "鐪夊北甯�",
+ children: [{
+ value: "511402",
+ text: "涓滃潯鍖�"
+ }, {
+ value: "511421",
+ text: "浠佸鍘�"
+ }, {
+ value: "511422",
+ text: "褰北鍘�"
+ }, {
+ value: "511423",
+ text: "娲泤鍘�"
+ }, {
+ value: "511424",
+ text: "涓规1鍘�"
+ }, {
+ value: "511425",
+ text: "闈掔鍘�"
+ }, {
+ value: "511426",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "511500",
+ text: "瀹滃甯�",
+ children: [{
+ value: "511502",
+ text: "缈犲睆鍖�"
+ }, {
+ value: "511521",
+ text: "瀹滃鍘�"
+ }, {
+ value: "511522",
+ text: "鍗楁邯鍘�"
+ }, {
+ value: "511523",
+ text: "姹熷畨鍘�"
+ }, {
+ value: "511524",
+ text: "闀垮畞鍘�"
+ }, {
+ value: "511525",
+ text: "楂樺幙"
+ }, {
+ value: "511526",
+ text: "鐝欏幙"
+ }, {
+ value: "511527",
+ text: "绛犺繛鍘�"
+ }, {
+ value: "511528",
+ text: "鍏存枃鍘�"
+ }, {
+ value: "511529",
+ text: "灞忓北鍘�"
+ }, {
+ value: "511530",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "511600",
+ text: "骞垮畨甯�",
+ children: [{
+ value: "511602",
+ text: "骞垮畨鍖�"
+ }, {
+ value: "511621",
+ text: "宀虫睜鍘�"
+ }, {
+ value: "511622",
+ text: "姝﹁儨鍘�"
+ }, {
+ value: "511623",
+ text: "閭绘按鍘�"
+ }, {
+ value: "511681",
+ text: "鍗庤摜甯�"
+ }, {
+ value: "511682",
+ text: "甯傝緰鍖�"
+ }, {
+ value: "511683",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "511700",
+ text: "杈惧窞甯�",
+ children: [{
+ value: "511702",
+ text: "閫氬窛鍖�"
+ }, {
+ value: "511721",
+ text: "杈惧幙"
+ }, {
+ value: "511722",
+ text: "瀹f眽鍘�"
+ }, {
+ value: "511723",
+ text: "寮�姹熷幙"
+ }, {
+ value: "511724",
+ text: "澶х鍘�"
+ }, {
+ value: "511725",
+ text: "娓犲幙"
+ }, {
+ value: "511781",
+ text: "涓囨簮甯�"
+ }, {
+ value: "511782",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "511800",
+ text: "闆呭畨甯�",
+ children: [{
+ value: "511802",
+ text: "闆ㄥ煄鍖�"
+ }, {
+ value: "511821",
+ text: "鍚嶅北鍘�"
+ }, {
+ value: "511822",
+ text: "鑽ョ粡鍘�"
+ }, {
+ value: "511823",
+ text: "姹夋簮鍘�"
+ }, {
+ value: "511824",
+ text: "鐭虫鍘�"
+ }, {
+ value: "511825",
+ text: "澶╁叏鍘�"
+ }, {
+ value: "511826",
+ text: "鑺﹀北鍘�"
+ }, {
+ value: "511827",
+ text: "瀹濆叴鍘�"
+ }, {
+ value: "511828",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "511900",
+ text: "宸翠腑甯�",
+ children: [{
+ value: "511902",
+ text: "宸村窞鍖�"
+ }, {
+ value: "511921",
+ text: "閫氭睙鍘�"
+ }, {
+ value: "511922",
+ text: "鍗楁睙鍘�"
+ }, {
+ value: "511923",
+ text: "骞虫槍鍘�"
+ }, {
+ value: "511924",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "512000",
+ text: "璧勯槼甯�",
+ children: [{
+ value: "512002",
+ text: "闆佹睙鍖�"
+ }, {
+ value: "512021",
+ text: "瀹夊渤鍘�"
+ }, {
+ value: "512022",
+ text: "涔愯嚦鍘�"
+ }, {
+ value: "512081",
+ text: "绠�闃冲競"
+ }, {
+ value: "512082",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "513200",
+ text: "闃垮潩钘忔棌缇屾棌鑷不宸�",
+ children: [{
+ value: "513221",
+ text: "姹跺窛鍘�"
+ }, {
+ value: "513222",
+ text: "鐞嗗幙"
+ }, {
+ value: "513223",
+ text: "鑼傚幙"
+ }, {
+ value: "513224",
+ text: "鏉炬綐鍘�"
+ }, {
+ value: "513225",
+ text: "涔濆娌熷幙"
+ }, {
+ value: "513226",
+ text: "閲戝窛鍘�"
+ }, {
+ value: "513227",
+ text: "灏忛噾鍘�"
+ }, {
+ value: "513228",
+ text: "榛戞按鍘�"
+ }, {
+ value: "513229",
+ text: "椹皵搴峰幙"
+ }, {
+ value: "513230",
+ text: "澹ゅ鍘�"
+ }, {
+ value: "513231",
+ text: "闃垮潩鍘�"
+ }, {
+ value: "513232",
+ text: "鑻ュ皵鐩栧幙"
+ }, {
+ value: "513233",
+ text: "绾㈠師鍘�"
+ }, {
+ value: "513234",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "513300",
+ text: "鐢樺瓬钘忔棌鑷不宸�",
+ children: [{
+ value: "513321",
+ text: "搴峰畾鍘�"
+ }, {
+ value: "513322",
+ text: "娉稿畾鍘�"
+ }, {
+ value: "513323",
+ text: "涓瑰反鍘�"
+ }, {
+ value: "513324",
+ text: "涔濋緳鍘�"
+ }, {
+ value: "513325",
+ text: "闆呮睙鍘�"
+ }, {
+ value: "513326",
+ text: "閬撳瓪鍘�"
+ }, {
+ value: "513327",
+ text: "鐐夐湇鍘�"
+ }, {
+ value: "513328",
+ text: "鐢樺瓬鍘�"
+ }, {
+ value: "513329",
+ text: "鏂伴緳鍘�"
+ }, {
+ value: "513330",
+ text: "寰锋牸鍘�"
+ }, {
+ value: "513331",
+ text: "鐧界帀鍘�"
+ }, {
+ value: "513332",
+ text: "鐭虫笭鍘�"
+ }, {
+ value: "513333",
+ text: "鑹茶揪鍘�"
+ }, {
+ value: "513334",
+ text: "鐞嗗鍘�"
+ }, {
+ value: "513335",
+ text: "宸村鍘�"
+ }, {
+ value: "513336",
+ text: "涔″煄鍘�"
+ }, {
+ value: "513337",
+ text: "绋诲煄鍘�"
+ }, {
+ value: "513338",
+ text: "寰楄崳鍘�"
+ }, {
+ value: "513339",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "513400",
+ text: "鍑夊北褰濇棌鑷不宸�",
+ children: [{
+ value: "513401",
+ text: "瑗挎槍甯�"
+ }, {
+ value: "513422",
+ text: "鏈ㄩ噷钘忔棌鑷不鍘�"
+ }, {
+ value: "513423",
+ text: "鐩愭簮鍘�"
+ }, {
+ value: "513424",
+ text: "寰锋槍鍘�"
+ }, {
+ value: "513425",
+ text: "浼氱悊鍘�"
+ }, {
+ value: "513426",
+ text: "浼氫笢鍘�"
+ }, {
+ value: "513427",
+ text: "瀹佸崡鍘�"
+ }, {
+ value: "513428",
+ text: "鏅牸鍘�"
+ }, {
+ value: "513429",
+ text: "甯冩嫋鍘�"
+ }, {
+ value: "513430",
+ text: "閲戦槼鍘�"
+ }, {
+ value: "513431",
+ text: "鏄鍘�"
+ }, {
+ value: "513432",
+ text: "鍠滃痉鍘�"
+ }, {
+ value: "513433",
+ text: "鍐曞畞鍘�"
+ }, {
+ value: "513434",
+ text: "瓒婅タ鍘�"
+ }, {
+ value: "513435",
+ text: "鐢樻礇鍘�"
+ }, {
+ value: "513436",
+ text: "缇庡鍘�"
+ }, {
+ value: "513437",
+ text: "闆锋尝鍘�"
+ }, {
+ value: "513438",
+ text: "鍏跺畠鍖�"
+ }]
+ }]
+}, {
+ value: '520000',
+ text: '璐靛窞鐪�',
+ children: [{
+ value: "520100",
+ text: "璐甸槼甯�",
+ children: [{
+ value: "520102",
+ text: "鍗楁槑鍖�"
+ }, {
+ value: "520103",
+ text: "浜戝博鍖�"
+ }, {
+ value: "520111",
+ text: "鑺辨邯鍖�"
+ }, {
+ value: "520112",
+ text: "涔屽綋鍖�"
+ }, {
+ value: "520113",
+ text: "鐧戒簯鍖�"
+ }, {
+ value: "520114",
+ text: "灏忔渤鍖�"
+ }, {
+ value: "520121",
+ text: "寮�闃冲幙"
+ }, {
+ value: "520122",
+ text: "鎭兘鍘�"
+ }, {
+ value: "520123",
+ text: "淇枃鍘�"
+ }, {
+ value: "520151",
+ text: "閲戦槼寮�鍙戝尯"
+ }, {
+ value: "520181",
+ text: "娓呴晣甯�"
+ }, {
+ value: "520182",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "520200",
+ text: "鍏洏姘村競",
+ children: [{
+ value: "520201",
+ text: "閽熷北鍖�"
+ }, {
+ value: "520203",
+ text: "鍏灊鐗瑰尯"
+ }, {
+ value: "520221",
+ text: "姘村煄鍘�"
+ }, {
+ value: "520222",
+ text: "鐩樺幙"
+ }, {
+ value: "520223",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "520300",
+ text: "閬典箟甯�",
+ children: [{
+ value: "520302",
+ text: "绾㈣姳宀楀尯"
+ }, {
+ value: "520303",
+ text: "姹囧窛鍖�"
+ }, {
+ value: "520321",
+ text: "閬典箟鍘�"
+ }, {
+ value: "520322",
+ text: "妗愭鍘�"
+ }, {
+ value: "520323",
+ text: "缁ラ槼鍘�"
+ }, {
+ value: "520324",
+ text: "姝e畨鍘�"
+ }, {
+ value: "520325",
+ text: "閬撶湡浠′浆鏃忚嫍鏃忚嚜娌诲幙"
+ }, {
+ value: "520326",
+ text: "鍔″窛浠′浆鏃忚嫍鏃忚嚜娌诲幙"
+ }, {
+ value: "520327",
+ text: "鍑ゅ唸鍘�"
+ }, {
+ value: "520328",
+ text: "婀勬江鍘�"
+ }, {
+ value: "520329",
+ text: "浣欏簡鍘�"
+ }, {
+ value: "520330",
+ text: "涔犳按鍘�"
+ }, {
+ value: "520381",
+ text: "璧ゆ按甯�"
+ }, {
+ value: "520382",
+ text: "浠佹��甯�"
+ }, {
+ value: "520383",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "520400",
+ text: "瀹夐『甯�",
+ children: [{
+ value: "520402",
+ text: "瑗跨鍖�"
+ }, {
+ value: "520421",
+ text: "骞冲潩鍘�"
+ }, {
+ value: "520422",
+ text: "鏅畾鍘�"
+ }, {
+ value: "520423",
+ text: "闀囧畞甯冧緷鏃忚嫍鏃忚嚜娌诲幙"
+ }, {
+ value: "520424",
+ text: "鍏冲箔甯冧緷鏃忚嫍鏃忚嚜娌诲幙"
+ }, {
+ value: "520425",
+ text: "绱簯鑻楁棌甯冧緷鏃忚嚜娌诲幙"
+ }, {
+ value: "520426",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "522200",
+ text: "閾滀粊鍦板尯",
+ children: [{
+ value: "522201",
+ text: "閾滀粊甯�"
+ }, {
+ value: "522222",
+ text: "姹熷彛鍘�"
+ }, {
+ value: "522223",
+ text: "鐜夊睆渚楁棌鑷不鍘�"
+ }, {
+ value: "522224",
+ text: "鐭抽槨鍘�"
+ }, {
+ value: "522225",
+ text: "鎬濆崡鍘�"
+ }, {
+ value: "522226",
+ text: "鍗版睙鍦熷鏃忚嫍鏃忚嚜娌诲幙"
+ }, {
+ value: "522227",
+ text: "寰锋睙鍘�"
+ }, {
+ value: "522228",
+ text: "娌挎渤鍦熷鏃忚嚜娌诲幙"
+ }, {
+ value: "522229",
+ text: "鏉炬鑻楁棌鑷不鍘�"
+ }, {
+ value: "522230",
+ text: "涓囧北鐗瑰尯"
+ }, {
+ value: "522231",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "522300",
+ text: "榛旇タ鍗楀竷渚濇棌鑻楁棌鑷不宸�",
+ children: [{
+ value: "522301",
+ text: "鍏翠箟甯�"
+ }, {
+ value: "522322",
+ text: "鍏翠粊鍘�"
+ }, {
+ value: "522323",
+ text: "鏅畨鍘�"
+ }, {
+ value: "522324",
+ text: "鏅撮殕鍘�"
+ }, {
+ value: "522325",
+ text: "璐炰赴鍘�"
+ }, {
+ value: "522326",
+ text: "鏈涜盁鍘�"
+ }, {
+ value: "522327",
+ text: "鍐屼酣鍘�"
+ }, {
+ value: "522328",
+ text: "瀹夐緳鍘�"
+ }, {
+ value: "522329",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "522400",
+ text: "姣曡妭鍦板尯",
+ children: [{
+ value: "522401",
+ text: "姣曡妭甯�"
+ }, {
+ value: "522422",
+ text: "澶ф柟鍘�"
+ }, {
+ value: "522423",
+ text: "榛旇タ鍘�"
+ }, {
+ value: "522424",
+ text: "閲戞矙鍘�"
+ }, {
+ value: "522425",
+ text: "缁囬噾鍘�"
+ }, {
+ value: "522426",
+ text: "绾抽泹鍘�"
+ }, {
+ value: "522427",
+ text: "濞佸畞褰濇棌鍥炴棌鑻楁棌鑷不鍘�"
+ }, {
+ value: "522428",
+ text: "璧珷鍘�"
+ }, {
+ value: "522429",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "522600",
+ text: "榛斾笢鍗楄嫍鏃忎緱鏃忚嚜娌诲窞",
+ children: [{
+ value: "522601",
+ text: "鍑噷甯�"
+ }, {
+ value: "522622",
+ text: "榛勫钩鍘�"
+ }, {
+ value: "522623",
+ text: "鏂界鍘�"
+ }, {
+ value: "522624",
+ text: "涓夌鍘�"
+ }, {
+ value: "522625",
+ text: "闀囪繙鍘�"
+ }, {
+ value: "522626",
+ text: "宀戝珐鍘�"
+ }, {
+ value: "522627",
+ text: "澶╂煴鍘�"
+ }, {
+ value: "522628",
+ text: "閿﹀睆鍘�"
+ }, {
+ value: "522629",
+ text: "鍓戞渤鍘�"
+ }, {
+ value: "522630",
+ text: "鍙版睙鍘�"
+ }, {
+ value: "522631",
+ text: "榛庡钩鍘�"
+ }, {
+ value: "522632",
+ text: "姒曟睙鍘�"
+ }, {
+ value: "522633",
+ text: "浠庢睙鍘�"
+ }, {
+ value: "522634",
+ text: "闆峰北鍘�"
+ }, {
+ value: "522635",
+ text: "楹绘睙鍘�"
+ }, {
+ value: "522636",
+ text: "涓瑰鍘�"
+ }, {
+ value: "522637",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "522700",
+ text: "榛斿崡甯冧緷鏃忚嫍鏃忚嚜娌诲窞",
+ children: [{
+ value: "522701",
+ text: "閮藉寑甯�"
+ }, {
+ value: "522702",
+ text: "绂忔硥甯�"
+ }, {
+ value: "522722",
+ text: "鑽旀尝鍘�"
+ }, {
+ value: "522723",
+ text: "璐靛畾鍘�"
+ }, {
+ value: "522725",
+ text: "鐡畨鍘�"
+ }, {
+ value: "522726",
+ text: "鐙北鍘�"
+ }, {
+ value: "522727",
+ text: "骞冲鍘�"
+ }, {
+ value: "522728",
+ text: "缃楃敻鍘�"
+ }, {
+ value: "522729",
+ text: "闀块『鍘�"
+ }, {
+ value: "522730",
+ text: "榫欓噷鍘�"
+ }, {
+ value: "522731",
+ text: "鎯犳按鍘�"
+ }, {
+ value: "522732",
+ text: "涓夐兘姘存棌鑷不鍘�"
+ }, {
+ value: "522733",
+ text: "鍏跺畠鍖�"
+ }]
+ }]
+}, {
+ value: '530000',
+ text: '浜戝崡鐪�',
+ children: [{
+ value: "530100",
+ text: "鏄嗘槑甯�",
+ children: [{
+ value: "530102",
+ text: "浜斿崕鍖�"
+ }, {
+ value: "530103",
+ text: "鐩橀緳鍖�"
+ }, {
+ value: "530111",
+ text: "瀹樻浮鍖�"
+ }, {
+ value: "530112",
+ text: "瑗垮北鍖�"
+ }, {
+ value: "530113",
+ text: "涓滃窛鍖�"
+ }, {
+ value: "530121",
+ text: "鍛堣础鍘�"
+ }, {
+ value: "530122",
+ text: "鏅嬪畞鍘�"
+ }, {
+ value: "530124",
+ text: "瀵屾皯鍘�"
+ }, {
+ value: "530125",
+ text: "瀹滆壇鍘�"
+ }, {
+ value: "530126",
+ text: "鐭虫灄褰濇棌鑷不鍘�"
+ }, {
+ value: "530127",
+ text: "宓╂槑鍘�"
+ }, {
+ value: "530128",
+ text: "绂勫姖褰濇棌鑻楁棌鑷不鍘�"
+ }, {
+ value: "530129",
+ text: "瀵荤敻鍥炴棌褰濇棌鑷不鍘�"
+ }, {
+ value: "530181",
+ text: "瀹夊畞甯�"
+ }, {
+ value: "530182",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "530300",
+ text: "鏇查潠甯�",
+ children: [{
+ value: "530302",
+ text: "楹掗簾鍖�"
+ }, {
+ value: "530321",
+ text: "椹緳鍘�"
+ }, {
+ value: "530322",
+ text: "闄嗚壇鍘�"
+ }, {
+ value: "530323",
+ text: "甯堝畻鍘�"
+ }, {
+ value: "530324",
+ text: "缃楀钩鍘�"
+ }, {
+ value: "530325",
+ text: "瀵屾簮鍘�"
+ }, {
+ value: "530326",
+ text: "浼氭辰鍘�"
+ }, {
+ value: "530328",
+ text: "娌剧泭鍘�"
+ }, {
+ value: "530381",
+ text: "瀹e▉甯�"
+ }, {
+ value: "530382",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "530400",
+ text: "鐜夋邯甯�",
+ children: [{
+ value: "530402",
+ text: "绾㈠鍖�"
+ }, {
+ value: "530421",
+ text: "姹熷窛鍘�"
+ }, {
+ value: "530422",
+ text: "婢勬睙鍘�"
+ }, {
+ value: "530423",
+ text: "閫氭捣鍘�"
+ }, {
+ value: "530424",
+ text: "鍗庡畞鍘�"
+ }, {
+ value: "530425",
+ text: "鏄撻棬鍘�"
+ }, {
+ value: "530426",
+ text: "宄ㄥ北褰濇棌鑷不鍘�"
+ }, {
+ value: "530427",
+ text: "鏂板钩褰濇棌鍌f棌鑷不鍘�"
+ }, {
+ value: "530428",
+ text: "鍏冩睙鍝堝凹鏃忓綕鏃忓偅鏃忚嚜娌诲幙"
+ }, {
+ value: "530429",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "530500",
+ text: "淇濆北甯�",
+ children: [{
+ value: "530502",
+ text: "闅嗛槼鍖�"
+ }, {
+ value: "530521",
+ text: "鏂界敻鍘�"
+ }, {
+ value: "530522",
+ text: "鑵惧啿鍘�"
+ }, {
+ value: "530523",
+ text: "榫欓櫟鍘�"
+ }, {
+ value: "530524",
+ text: "鏄屽畞鍘�"
+ }, {
+ value: "530525",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "530600",
+ text: "鏄�氬競",
+ children: [{
+ value: "530602",
+ text: "鏄槼鍖�"
+ }, {
+ value: "530621",
+ text: "椴佺敻鍘�"
+ }, {
+ value: "530622",
+ text: "宸у鍘�"
+ }, {
+ value: "530623",
+ text: "鐩愭触鍘�"
+ }, {
+ value: "530624",
+ text: "澶у叧鍘�"
+ }, {
+ value: "530625",
+ text: "姘稿杽鍘�"
+ }, {
+ value: "530626",
+ text: "缁ユ睙鍘�"
+ }, {
+ value: "530627",
+ text: "闀囬泟鍘�"
+ }, {
+ value: "530628",
+ text: "褰濊壇鍘�"
+ }, {
+ value: "530629",
+ text: "濞佷俊鍘�"
+ }, {
+ value: "530630",
+ text: "姘村瘜鍘�"
+ }, {
+ value: "530631",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "530700",
+ text: "涓芥睙甯�",
+ children: [{
+ value: "530702",
+ text: "鍙ゅ煄鍖�"
+ }, {
+ value: "530721",
+ text: "鐜夐緳绾宠タ鏃忚嚜娌诲幙"
+ }, {
+ value: "530722",
+ text: "姘歌儨鍘�"
+ }, {
+ value: "530723",
+ text: "鍗庡潽鍘�"
+ }, {
+ value: "530724",
+ text: "瀹佽挆褰濇棌鑷不鍘�"
+ }, {
+ value: "530725",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "530800",
+ text: "鏅幢甯�",
+ children: [{
+ value: "530802",
+ text: "鎬濊寘鍖�"
+ }, {
+ value: "530821",
+ text: "瀹佹幢鍝堝凹鏃忓綕鏃忚嚜娌诲幙"
+ }, {
+ value: "530822",
+ text: "澧ㄦ睙鍝堝凹鏃忚嚜娌诲幙"
+ }, {
+ value: "530823",
+ text: "鏅笢褰濇棌鑷不鍘�"
+ }, {
+ value: "530824",
+ text: "鏅胺鍌f棌褰濇棌鑷不鍘�"
+ }, {
+ value: "530825",
+ text: "闀囨矃褰濇棌鍝堝凹鏃忔媺绁滄棌鑷不鍘�"
+ }, {
+ value: "530826",
+ text: "姹熷煄鍝堝凹鏃忓綕鏃忚嚜娌诲幙"
+ }, {
+ value: "530827",
+ text: "瀛熻繛鍌f棌鎷夌鏃忎饯鏃忚嚜娌诲幙"
+ }, {
+ value: "530828",
+ text: "婢滄钵鎷夌鏃忚嚜娌诲幙"
+ }, {
+ value: "530829",
+ text: "瑗跨洘浣ゆ棌鑷不鍘�"
+ }, {
+ value: "530830",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "530900",
+ text: "涓存钵甯�",
+ children: [{
+ value: "530902",
+ text: "涓寸繑鍖�"
+ }, {
+ value: "530921",
+ text: "鍑ゅ簡鍘�"
+ }, {
+ value: "530922",
+ text: "浜戝幙"
+ }, {
+ value: "530923",
+ text: "姘稿痉鍘�"
+ }, {
+ value: "530924",
+ text: "闀囧悍鍘�"
+ }, {
+ value: "530925",
+ text: "鍙屾睙鎷夌鏃忎饯鏃忓竷鏈楁棌鍌f棌鑷不鍘�"
+ }, {
+ value: "530926",
+ text: "鑰块┈鍌f棌浣ゆ棌鑷不鍘�"
+ }, {
+ value: "530927",
+ text: "娌ф簮浣ゆ棌鑷不鍘�"
+ }, {
+ value: "530928",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "532300",
+ text: "妤氶泟褰濇棌鑷不宸�",
+ children: [{
+ value: "532301",
+ text: "妤氶泟甯�"
+ }, {
+ value: "532322",
+ text: "鍙屾煆鍘�"
+ }, {
+ value: "532323",
+ text: "鐗熷畾鍘�"
+ }, {
+ value: "532324",
+ text: "鍗楀崕鍘�"
+ }, {
+ value: "532325",
+ text: "濮氬畨鍘�"
+ }, {
+ value: "532326",
+ text: "澶у鍘�"
+ }, {
+ value: "532327",
+ text: "姘镐粊鍘�"
+ }, {
+ value: "532328",
+ text: "鍏冭皨鍘�"
+ }, {
+ value: "532329",
+ text: "姝﹀畾鍘�"
+ }, {
+ value: "532331",
+ text: "绂勪赴鍘�"
+ }, {
+ value: "532332",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "532500",
+ text: "绾㈡渤鍝堝凹鏃忓綕鏃忚嚜娌诲窞",
+ children: [{
+ value: "532501",
+ text: "涓棫甯�"
+ }, {
+ value: "532502",
+ text: "寮�杩滃競"
+ }, {
+ value: "532522",
+ text: "钂欒嚜鍘�"
+ }, {
+ value: "532523",
+ text: "灞忚竟鑻楁棌鑷不鍘�"
+ }, {
+ value: "532524",
+ text: "寤烘按鍘�"
+ }, {
+ value: "532525",
+ text: "鐭冲睆鍘�"
+ }, {
+ value: "532526",
+ text: "寮ュ嫆鍘�"
+ }, {
+ value: "532527",
+ text: "娉歌タ鍘�"
+ }, {
+ value: "532528",
+ text: "鍏冮槼鍘�"
+ }, {
+ value: "532529",
+ text: "绾㈡渤鍘�"
+ }, {
+ value: "532530",
+ text: "閲戝钩鑻楁棌鐟舵棌鍌f棌鑷不鍘�"
+ }, {
+ value: "532531",
+ text: "缁挎槬鍘�"
+ }, {
+ value: "532532",
+ text: "娌冲彛鐟舵棌鑷不鍘�"
+ }, {
+ value: "532533",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "532600",
+ text: "鏂囧北澹棌鑻楁棌鑷不宸�",
+ children: [{
+ value: "532621",
+ text: "鏂囧北鍘�"
+ }, {
+ value: "532622",
+ text: "鐮氬北鍘�"
+ }, {
+ value: "532623",
+ text: "瑗跨暣鍘�"
+ }, {
+ value: "532624",
+ text: "楹绘牀鍧″幙"
+ }, {
+ value: "532625",
+ text: "椹叧鍘�"
+ }, {
+ value: "532626",
+ text: "涓樺寳鍘�"
+ }, {
+ value: "532627",
+ text: "骞垮崡鍘�"
+ }, {
+ value: "532628",
+ text: "瀵屽畞鍘�"
+ }, {
+ value: "532629",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "532800",
+ text: "瑗垮弻鐗堢撼鍌f棌鑷不宸�",
+ children: [{
+ value: "532801",
+ text: "鏅椽甯�"
+ }, {
+ value: "532822",
+ text: "鍕愭捣鍘�"
+ }, {
+ value: "532823",
+ text: "鍕愯厞鍘�"
+ }, {
+ value: "532824",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "532900",
+ text: "澶х悊鐧芥棌鑷不宸�",
+ children: [{
+ value: "532901",
+ text: "澶х悊甯�"
+ }, {
+ value: "532922",
+ text: "婕炬繛褰濇棌鑷不鍘�"
+ }, {
+ value: "532923",
+ text: "绁ヤ簯鍘�"
+ }, {
+ value: "532924",
+ text: "瀹惧窛鍘�"
+ }, {
+ value: "532925",
+ text: "寮ユ浮鍘�"
+ }, {
+ value: "532926",
+ text: "鍗楁锭褰濇棌鑷不鍘�"
+ }, {
+ value: "532927",
+ text: "宸嶅北褰濇棌鍥炴棌鑷不鍘�"
+ }, {
+ value: "532928",
+ text: "姘稿钩鍘�"
+ }, {
+ value: "532929",
+ text: "浜戦緳鍘�"
+ }, {
+ value: "532930",
+ text: "娲辨簮鍘�"
+ }, {
+ value: "532931",
+ text: "鍓戝窛鍘�"
+ }, {
+ value: "532932",
+ text: "楣ゅ簡鍘�"
+ }, {
+ value: "532933",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "533100",
+ text: "寰峰畯鍌f棌鏅鏃忚嚜娌诲窞",
+ children: [{
+ value: "533102",
+ text: "鐟炰附甯�"
+ }, {
+ value: "533103",
+ text: "娼炶タ甯�"
+ }, {
+ value: "533122",
+ text: "姊佹渤鍘�"
+ }, {
+ value: "533123",
+ text: "鐩堟睙鍘�"
+ }, {
+ value: "533124",
+ text: "闄囧窛鍘�"
+ }, {
+ value: "533125",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "533300",
+ text: "鎬掓睙鍌堝兂鏃忚嚜娌诲窞",
+ children: [{
+ value: "533321",
+ text: "娉告按鍘�"
+ }, {
+ value: "533323",
+ text: "绂忚础鍘�"
+ }, {
+ value: "533324",
+ text: "璐″北鐙緳鏃忔�掓棌鑷不鍘�"
+ }, {
+ value: "533325",
+ text: "鍏板潽鐧芥棌鏅背鏃忚嚜娌诲幙"
+ }, {
+ value: "533326",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "533400",
+ text: "杩簡钘忔棌鑷不宸�",
+ children: [{
+ value: "533421",
+ text: "棣欐牸閲屾媺鍘�"
+ }, {
+ value: "533422",
+ text: "寰烽挦鍘�"
+ }, {
+ value: "533423",
+ text: "缁磋タ鍌堝兂鏃忚嚜娌诲幙"
+ }, {
+ value: "533424",
+ text: "鍏跺畠鍖�"
+ }]
+ }]
+}, {
+ value: '540000',
+ text: '瑗胯棌',
+ children: [{
+ value: "540100",
+ text: "鎷夎惃甯�",
+ children: [{
+ value: "540102",
+ text: "鍩庡叧鍖�"
+ }, {
+ value: "540121",
+ text: "鏋楀懆鍘�"
+ }, {
+ value: "540122",
+ text: "褰撻泟鍘�"
+ }, {
+ value: "540123",
+ text: "灏兼湪鍘�"
+ }, {
+ value: "540124",
+ text: "鏇叉按鍘�"
+ }, {
+ value: "540125",
+ text: "鍫嗛緳寰峰簡鍘�"
+ }, {
+ value: "540126",
+ text: "杈惧瓬鍘�"
+ }, {
+ value: "540127",
+ text: "澧ㄧ宸ュ崱鍘�"
+ }, {
+ value: "540128",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "542100",
+ text: "鏄岄兘鍦板尯",
+ children: [{
+ value: "542121",
+ text: "鏄岄兘鍘�"
+ }, {
+ value: "542122",
+ text: "姹熻揪鍘�"
+ }, {
+ value: "542123",
+ text: "璐¤鍘�"
+ }, {
+ value: "542124",
+ text: "绫讳箤榻愬幙"
+ }, {
+ value: "542125",
+ text: "涓侀潚鍘�"
+ }, {
+ value: "542126",
+ text: "瀵熼泤鍘�"
+ }, {
+ value: "542127",
+ text: "鍏鍘�"
+ }, {
+ value: "542128",
+ text: "宸﹁础鍘�"
+ }, {
+ value: "542129",
+ text: "鑺掑悍鍘�"
+ }, {
+ value: "542132",
+ text: "娲涢殕鍘�"
+ }, {
+ value: "542133",
+ text: "杈瑰潩鍘�"
+ }, {
+ value: "542134",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "542200",
+ text: "灞卞崡鍦板尯",
+ children: [{
+ value: "542221",
+ text: "涔冧笢鍘�"
+ }, {
+ value: "542222",
+ text: "鎵庡泭鍘�"
+ }, {
+ value: "542223",
+ text: "璐″槑鍘�"
+ }, {
+ value: "542224",
+ text: "妗戞棩鍘�"
+ }, {
+ value: "542225",
+ text: "鐞肩粨鍘�"
+ }, {
+ value: "542226",
+ text: "鏇叉澗鍘�"
+ }, {
+ value: "542227",
+ text: "鎺編鍘�"
+ }, {
+ value: "542228",
+ text: "娲涙墡鍘�"
+ }, {
+ value: "542229",
+ text: "鍔犳煡鍘�"
+ }, {
+ value: "542231",
+ text: "闅嗗瓙鍘�"
+ }, {
+ value: "542232",
+ text: "閿欓偅鍘�"
+ }, {
+ value: "542233",
+ text: "娴崱瀛愬幙"
+ }, {
+ value: "542234",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "542300",
+ text: "鏃ュ杸鍒欏湴鍖�",
+ children: [{
+ value: "542301",
+ text: "鏃ュ杸鍒欏競"
+ }, {
+ value: "542322",
+ text: "鍗楁湪鏋楀幙"
+ }, {
+ value: "542323",
+ text: "姹熷瓬鍘�"
+ }, {
+ value: "542324",
+ text: "瀹氭棩鍘�"
+ }, {
+ value: "542325",
+ text: "钀ㄨ喀鍘�"
+ }, {
+ value: "542326",
+ text: "鎷夊瓬鍘�"
+ }, {
+ value: "542327",
+ text: "鏄備粊鍘�"
+ }, {
+ value: "542328",
+ text: "璋㈤�氶棬鍘�"
+ }, {
+ value: "542329",
+ text: "鐧芥湕鍘�"
+ }, {
+ value: "542330",
+ text: "浠佸竷鍘�"
+ }, {
+ value: "542331",
+ text: "搴烽┈鍘�"
+ }, {
+ value: "542332",
+ text: "瀹氱粨鍘�"
+ }, {
+ value: "542333",
+ text: "浠插反鍘�"
+ }, {
+ value: "542334",
+ text: "浜氫笢鍘�"
+ }, {
+ value: "542335",
+ text: "鍚夐殕鍘�"
+ }, {
+ value: "542336",
+ text: "鑱傛媺鏈ㄥ幙"
+ }, {
+ value: "542337",
+ text: "钀ㄥ槑鍘�"
+ }, {
+ value: "542338",
+ text: "宀楀反鍘�"
+ }, {
+ value: "542339",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "542400",
+ text: "閭f洸鍦板尯",
+ children: [{
+ value: "542421",
+ text: "閭f洸鍘�"
+ }, {
+ value: "542422",
+ text: "鍢夐粠鍘�"
+ }, {
+ value: "542423",
+ text: "姣斿鍘�"
+ }, {
+ value: "542424",
+ text: "鑱傝崳鍘�"
+ }, {
+ value: "542425",
+ text: "瀹夊鍘�"
+ }, {
+ value: "542426",
+ text: "鐢虫墡鍘�"
+ }, {
+ value: "542427",
+ text: "绱㈠幙"
+ }, {
+ value: "542428",
+ text: "鐝垐鍘�"
+ }, {
+ value: "542429",
+ text: "宸撮潚鍘�"
+ }, {
+ value: "542430",
+ text: "灏肩帥鍘�"
+ }, {
+ value: "542431",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "542500",
+ text: "闃块噷鍦板尯",
+ children: [{
+ value: "542521",
+ text: "鏅叞鍘�"
+ }, {
+ value: "542522",
+ text: "鏈揪鍘�"
+ }, {
+ value: "542523",
+ text: "鍣跺皵鍘�"
+ }, {
+ value: "542524",
+ text: "鏃ュ湡鍘�"
+ }, {
+ value: "542525",
+ text: "闈╁悏鍘�"
+ }, {
+ value: "542526",
+ text: "鏀瑰垯鍘�"
+ }, {
+ value: "542527",
+ text: "鎺嫟鍘�"
+ }, {
+ value: "542528",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "542600",
+ text: "鏋楄姖鍦板尯",
+ children: [{
+ value: "542621",
+ text: "鏋楄姖鍘�"
+ }, {
+ value: "542622",
+ text: "宸ュ竷姹熻揪鍘�"
+ }, {
+ value: "542623",
+ text: "绫虫灄鍘�"
+ }, {
+ value: "542624",
+ text: "澧ㄨ劚鍘�"
+ }, {
+ value: "542625",
+ text: "娉㈠瘑鍘�"
+ }, {
+ value: "542626",
+ text: "瀵熼殔鍘�"
+ }, {
+ value: "542627",
+ text: "鏈楀幙"
+ }, {
+ value: "542628",
+ text: "鍏跺畠鍖�"
+ }]
+ }]
+}, {
+ value: '610000',
+ text: '闄曡タ鐪�',
+ children: [{
+ value: "610100",
+ text: "瑗垮畨甯�",
+ children: [{
+ value: "610102",
+ text: "鏂板煄鍖�"
+ }, {
+ value: "610103",
+ text: "纰戞灄鍖�"
+ }, {
+ value: "610104",
+ text: "鑾叉箹鍖�"
+ }, {
+ value: "610111",
+ text: "鐏炴ˉ鍖�"
+ }, {
+ value: "610112",
+ text: "鏈ぎ鍖�"
+ }, {
+ value: "610113",
+ text: "闆佸鍖�"
+ }, {
+ value: "610114",
+ text: "闃庤壇鍖�"
+ }, {
+ value: "610115",
+ text: "涓存郊鍖�"
+ }, {
+ value: "610116",
+ text: "闀垮畨鍖�"
+ }, {
+ value: "610122",
+ text: "钃濈敯鍘�"
+ }, {
+ value: "610124",
+ text: "鍛ㄨ嚦鍘�"
+ }, {
+ value: "610125",
+ text: "鎴峰幙"
+ }, {
+ value: "610126",
+ text: "楂橀櫟鍘�"
+ }, {
+ value: "610127",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "610200",
+ text: "閾滃窛甯�",
+ children: [{
+ value: "610202",
+ text: "鐜嬬泭鍖�"
+ }, {
+ value: "610203",
+ text: "鍗板彴鍖�"
+ }, {
+ value: "610204",
+ text: "鑰�宸炲尯"
+ }, {
+ value: "610222",
+ text: "瀹滃悰鍘�"
+ }, {
+ value: "610223",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "610300",
+ text: "瀹濋浮甯�",
+ children: [{
+ value: "610302",
+ text: "娓花鍖�"
+ }, {
+ value: "610303",
+ text: "閲戝彴鍖�"
+ }, {
+ value: "610304",
+ text: "闄堜粨鍖�"
+ }, {
+ value: "610322",
+ text: "鍑ょ繑鍘�"
+ }, {
+ value: "610323",
+ text: "宀愬北鍘�"
+ }, {
+ value: "610324",
+ text: "鎵堕鍘�"
+ }, {
+ value: "610326",
+ text: "鐪夊幙"
+ }, {
+ value: "610327",
+ text: "闄囧幙"
+ }, {
+ value: "610328",
+ text: "鍗冮槼鍘�"
+ }, {
+ value: "610329",
+ text: "楹熸父鍘�"
+ }, {
+ value: "610330",
+ text: "鍑ゅ幙"
+ }, {
+ value: "610331",
+ text: "澶櫧鍘�"
+ }, {
+ value: "610332",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "610400",
+ text: "鍜搁槼甯�",
+ children: [{
+ value: "610402",
+ text: "绉﹂兘鍖�"
+ }, {
+ value: "610403",
+ text: "鏉ㄩ櫟鍖�"
+ }, {
+ value: "610404",
+ text: "娓煄鍖�"
+ }, {
+ value: "610422",
+ text: "涓夊師鍘�"
+ }, {
+ value: "610423",
+ text: "娉鹃槼鍘�"
+ }, {
+ value: "610424",
+ text: "涔惧幙"
+ }, {
+ value: "610425",
+ text: "绀兼硥鍘�"
+ }, {
+ value: "610426",
+ text: "姘稿鍘�"
+ }, {
+ value: "610427",
+ text: "褰幙"
+ }, {
+ value: "610428",
+ text: "闀挎鍘�"
+ }, {
+ value: "610429",
+ text: "鏃倯鍘�"
+ }, {
+ value: "610430",
+ text: "娣冲寲鍘�"
+ }, {
+ value: "610431",
+ text: "姝﹀姛鍘�"
+ }, {
+ value: "610481",
+ text: "鍏村钩甯�"
+ }, {
+ value: "610482",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "610500",
+ text: "娓崡甯�",
+ children: [{
+ value: "610502",
+ text: "涓存腑鍖�"
+ }, {
+ value: "610521",
+ text: "鍗庡幙"
+ }, {
+ value: "610522",
+ text: "娼煎叧鍘�"
+ }, {
+ value: "610523",
+ text: "澶ц崝鍘�"
+ }, {
+ value: "610524",
+ text: "鍚堥槼鍘�"
+ }, {
+ value: "610525",
+ text: "婢勫煄鍘�"
+ }, {
+ value: "610526",
+ text: "钂插煄鍘�"
+ }, {
+ value: "610527",
+ text: "鐧芥按鍘�"
+ }, {
+ value: "610528",
+ text: "瀵屽钩鍘�"
+ }, {
+ value: "610581",
+ text: "闊╁煄甯�"
+ }, {
+ value: "610582",
+ text: "鍗庨槾甯�"
+ }, {
+ value: "610583",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "610600",
+ text: "寤跺畨甯�",
+ children: [{
+ value: "610602",
+ text: "瀹濆鍖�"
+ }, {
+ value: "610621",
+ text: "寤堕暱鍘�"
+ }, {
+ value: "610622",
+ text: "寤跺窛鍘�"
+ }, {
+ value: "610623",
+ text: "瀛愰暱鍘�"
+ }, {
+ value: "610624",
+ text: "瀹夊鍘�"
+ }, {
+ value: "610625",
+ text: "蹇椾腹鍘�"
+ }, {
+ value: "610626",
+ text: "鍚磋捣鍘�"
+ }, {
+ value: "610627",
+ text: "鐢樻硥鍘�"
+ }, {
+ value: "610628",
+ text: "瀵屽幙"
+ }, {
+ value: "610629",
+ text: "娲涘窛鍘�"
+ }, {
+ value: "610630",
+ text: "瀹滃窛鍘�"
+ }, {
+ value: "610631",
+ text: "榛勯緳鍘�"
+ }, {
+ value: "610632",
+ text: "榛勯櫟鍘�"
+ }, {
+ value: "610633",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "610700",
+ text: "姹変腑甯�",
+ children: [{
+ value: "610702",
+ text: "姹夊彴鍖�"
+ }, {
+ value: "610721",
+ text: "鍗楅儜鍘�"
+ }, {
+ value: "610722",
+ text: "鍩庡浐鍘�"
+ }, {
+ value: "610723",
+ text: "娲嬪幙"
+ }, {
+ value: "610724",
+ text: "瑗夸埂鍘�"
+ }, {
+ value: "610725",
+ text: "鍕夊幙"
+ }, {
+ value: "610726",
+ text: "瀹佸己鍘�"
+ }, {
+ value: "610727",
+ text: "鐣ラ槼鍘�"
+ }, {
+ value: "610728",
+ text: "闀囧反鍘�"
+ }, {
+ value: "610729",
+ text: "鐣欏潩鍘�"
+ }, {
+ value: "610730",
+ text: "浣涘潽鍘�"
+ }, {
+ value: "610731",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "610800",
+ text: "姒嗘灄甯�",
+ children: [{
+ value: "610802",
+ text: "姒嗛槼鍖�"
+ }, {
+ value: "610821",
+ text: "绁炴湪鍘�"
+ }, {
+ value: "610822",
+ text: "搴滆胺鍘�"
+ }, {
+ value: "610823",
+ text: "妯北鍘�"
+ }, {
+ value: "610824",
+ text: "闈栬竟鍘�"
+ }, {
+ value: "610825",
+ text: "瀹氳竟鍘�"
+ }, {
+ value: "610826",
+ text: "缁ュ痉鍘�"
+ }, {
+ value: "610827",
+ text: "绫宠剛鍘�"
+ }, {
+ value: "610828",
+ text: "浣冲幙"
+ }, {
+ value: "610829",
+ text: "鍚村牎鍘�"
+ }, {
+ value: "610830",
+ text: "娓呮锭鍘�"
+ }, {
+ value: "610831",
+ text: "瀛愭床鍘�"
+ }, {
+ value: "610832",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "610900",
+ text: "瀹夊悍甯�",
+ children: [{
+ value: "610902",
+ text: "姹夋花鍖�"
+ }, {
+ value: "610921",
+ text: "姹夐槾鍘�"
+ }, {
+ value: "610922",
+ text: "鐭虫硥鍘�"
+ }, {
+ value: "610923",
+ text: "瀹侀檿鍘�"
+ }, {
+ value: "610924",
+ text: "绱槼鍘�"
+ }, {
+ value: "610925",
+ text: "宀氱殝鍘�"
+ }, {
+ value: "610926",
+ text: "骞冲埄鍘�"
+ }, {
+ value: "610927",
+ text: "闀囧潽鍘�"
+ }, {
+ value: "610928",
+ text: "鏃槼鍘�"
+ }, {
+ value: "610929",
+ text: "鐧芥渤鍘�"
+ }, {
+ value: "610930",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "611000",
+ text: "鍟嗘礇甯�",
+ children: [{
+ value: "611002",
+ text: "鍟嗗窞鍖�"
+ }, {
+ value: "611021",
+ text: "娲涘崡鍘�"
+ }, {
+ value: "611022",
+ text: "涓瑰嚖鍘�"
+ }, {
+ value: "611023",
+ text: "鍟嗗崡鍘�"
+ }, {
+ value: "611024",
+ text: "灞遍槼鍘�"
+ }, {
+ value: "611025",
+ text: "闀囧畨鍘�"
+ }, {
+ value: "611026",
+ text: "鏌炴按鍘�"
+ }, {
+ value: "611027",
+ text: "鍏跺畠鍖�"
+ }]
+ }]
+}, {
+ value: '620000',
+ text: '鐢樿們鐪�',
+ children: [{
+ value: "620100",
+ text: "鍏板窞甯�",
+ children: [{
+ value: "620102",
+ text: "鍩庡叧鍖�"
+ }, {
+ value: "620103",
+ text: "涓冮噷娌冲尯"
+ }, {
+ value: "620104",
+ text: "瑗垮浐鍖�"
+ }, {
+ value: "620105",
+ text: "瀹夊畞鍖�"
+ }, {
+ value: "620111",
+ text: "绾㈠彜鍖�"
+ }, {
+ value: "620121",
+ text: "姘哥櫥鍘�"
+ }, {
+ value: "620122",
+ text: "鐨嬪叞鍘�"
+ }, {
+ value: "620123",
+ text: "姒嗕腑鍘�"
+ }, {
+ value: "620124",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "620200",
+ text: "鍢夊唱鍏冲競",
+ children: []
+ }, {
+ value: "620300",
+ text: "閲戞槍甯�",
+ children: [{
+ value: "620302",
+ text: "閲戝窛鍖�"
+ }, {
+ value: "620321",
+ text: "姘告槍鍘�"
+ }, {
+ value: "620322",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "620400",
+ text: "鐧介摱甯�",
+ children: [{
+ value: "620402",
+ text: "鐧介摱鍖�"
+ }, {
+ value: "620403",
+ text: "骞冲窛鍖�"
+ }, {
+ value: "620421",
+ text: "闈栬繙鍘�"
+ }, {
+ value: "620422",
+ text: "浼氬畞鍘�"
+ }, {
+ value: "620423",
+ text: "鏅嘲鍘�"
+ }, {
+ value: "620424",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "620500",
+ text: "澶╂按甯�",
+ children: [{
+ value: "620502",
+ text: "绉﹀窞鍖�"
+ }, {
+ value: "620503",
+ text: "楹︾Н鍖�"
+ }, {
+ value: "620521",
+ text: "娓呮按鍘�"
+ }, {
+ value: "620522",
+ text: "绉﹀畨鍘�"
+ }, {
+ value: "620523",
+ text: "鐢樿胺鍘�"
+ }, {
+ value: "620524",
+ text: "姝﹀北鍘�"
+ }, {
+ value: "620525",
+ text: "寮犲宸濆洖鏃忚嚜娌诲幙"
+ }, {
+ value: "620526",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "620600",
+ text: "姝﹀▉甯�",
+ children: [{
+ value: "620602",
+ text: "鍑夊窞鍖�"
+ }, {
+ value: "620621",
+ text: "姘戝嫟鍘�"
+ }, {
+ value: "620622",
+ text: "鍙ゆ氮鍘�"
+ }, {
+ value: "620623",
+ text: "澶╃钘忔棌鑷不鍘�"
+ }, {
+ value: "620624",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "620700",
+ text: "寮犳帠甯�",
+ children: [{
+ value: "620702",
+ text: "鐢樺窞鍖�"
+ }, {
+ value: "620721",
+ text: "鑲冨崡瑁曞浐鏃忚嚜娌诲幙"
+ }, {
+ value: "620722",
+ text: "姘戜箰鍘�"
+ }, {
+ value: "620723",
+ text: "涓存辰鍘�"
+ }, {
+ value: "620724",
+ text: "楂樺彴鍘�"
+ }, {
+ value: "620725",
+ text: "灞变腹鍘�"
+ }, {
+ value: "620726",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "620800",
+ text: "骞冲噳甯�",
+ children: [{
+ value: "620802",
+ text: "宕嗗硳鍖�"
+ }, {
+ value: "620821",
+ text: "娉惧窛鍘�"
+ }, {
+ value: "620822",
+ text: "鐏靛彴鍘�"
+ }, {
+ value: "620823",
+ text: "宕囦俊鍘�"
+ }, {
+ value: "620824",
+ text: "鍗庝涵鍘�"
+ }, {
+ value: "620825",
+ text: "搴勬氮鍘�"
+ }, {
+ value: "620826",
+ text: "闈欏畞鍘�"
+ }, {
+ value: "620827",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "620900",
+ text: "閰掓硥甯�",
+ children: [{
+ value: "620902",
+ text: "鑲冨窞鍖�"
+ }, {
+ value: "620921",
+ text: "閲戝鍘�"
+ }, {
+ value: "620922",
+ text: "瀹夎タ鍘�"
+ }, {
+ value: "620923",
+ text: "鑲冨寳钂欏彜鏃忚嚜娌诲幙"
+ }, {
+ value: "620924",
+ text: "闃垮厠濉炲搱钀ㄥ厠鏃忚嚜娌诲幙"
+ }, {
+ value: "620981",
+ text: "鐜夐棬甯�"
+ }, {
+ value: "620982",
+ text: "鏁︾厡甯�"
+ }, {
+ value: "620983",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "621000",
+ text: "搴嗛槼甯�",
+ children: [{
+ value: "621002",
+ text: "瑗垮嘲鍖�"
+ }, {
+ value: "621021",
+ text: "搴嗗煄鍘�"
+ }, {
+ value: "621022",
+ text: "鐜幙"
+ }, {
+ value: "621023",
+ text: "鍗庢睜鍘�"
+ }, {
+ value: "621024",
+ text: "鍚堟按鍘�"
+ }, {
+ value: "621025",
+ text: "姝e畞鍘�"
+ }, {
+ value: "621026",
+ text: "瀹佸幙"
+ }, {
+ value: "621027",
+ text: "闀囧師鍘�"
+ }, {
+ value: "621028",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "621100",
+ text: "瀹氳タ甯�",
+ children: [{
+ value: "621102",
+ text: "瀹夊畾鍖�"
+ }, {
+ value: "621121",
+ text: "閫氭腑鍘�"
+ }, {
+ value: "621122",
+ text: "闄囪タ鍘�"
+ }, {
+ value: "621123",
+ text: "娓簮鍘�"
+ }, {
+ value: "621124",
+ text: "涓存串鍘�"
+ }, {
+ value: "621125",
+ text: "婕冲幙"
+ }, {
+ value: "621126",
+ text: "宀峰幙"
+ }, {
+ value: "621127",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "621200",
+ text: "闄囧崡甯�",
+ children: [{
+ value: "621202",
+ text: "姝﹂兘鍖�"
+ }, {
+ value: "621221",
+ text: "鎴愬幙"
+ }, {
+ value: "621222",
+ text: "鏂囧幙"
+ }, {
+ value: "621223",
+ text: "瀹曟槍鍘�"
+ }, {
+ value: "621224",
+ text: "搴峰幙"
+ }, {
+ value: "621225",
+ text: "瑗垮拰鍘�"
+ }, {
+ value: "621226",
+ text: "绀煎幙"
+ }, {
+ value: "621227",
+ text: "寰藉幙"
+ }, {
+ value: "621228",
+ text: "涓ゅ綋鍘�"
+ }, {
+ value: "621229",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "622900",
+ text: "涓村鍥炴棌鑷不宸�",
+ children: [{
+ value: "622901",
+ text: "涓村甯�"
+ }, {
+ value: "622921",
+ text: "涓村鍘�"
+ }, {
+ value: "622922",
+ text: "搴蜂箰鍘�"
+ }, {
+ value: "622923",
+ text: "姘搁潠鍘�"
+ }, {
+ value: "622924",
+ text: "骞挎渤鍘�"
+ }, {
+ value: "622925",
+ text: "鍜屾斂鍘�"
+ }, {
+ value: "622926",
+ text: "涓滀埂鏃忚嚜娌诲幙"
+ }, {
+ value: "622927",
+ text: "绉煶灞变繚瀹夋棌涓滀埂鏃忔拻鎷夋棌鑷不鍘�"
+ }, {
+ value: "622928",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "623000",
+ text: "鐢樺崡钘忔棌鑷不宸�",
+ children: [{
+ value: "623001",
+ text: "鍚堜綔甯�"
+ }, {
+ value: "623021",
+ text: "涓存江鍘�"
+ }, {
+ value: "623022",
+ text: "鍗撳凹鍘�"
+ }, {
+ value: "623023",
+ text: "鑸熸洸鍘�"
+ }, {
+ value: "623024",
+ text: "杩儴鍘�"
+ }, {
+ value: "623025",
+ text: "鐜涙洸鍘�"
+ }, {
+ value: "623026",
+ text: "纰屾洸鍘�"
+ }, {
+ value: "623027",
+ text: "澶忔渤鍘�"
+ }, {
+ value: "623028",
+ text: "鍏跺畠鍖�"
+ }]
+ }]
+}, {
+ value: '630000',
+ text: '闈掓捣鐪�',
+ children: [{
+ value: "630100",
+ text: "瑗垮畞甯�",
+ children: [{
+ value: "630102",
+ text: "鍩庝笢鍖�"
+ }, {
+ value: "630103",
+ text: "鍩庝腑鍖�"
+ }, {
+ value: "630104",
+ text: "鍩庤タ鍖�"
+ }, {
+ value: "630105",
+ text: "鍩庡寳鍖�"
+ }, {
+ value: "630121",
+ text: "澶ч�氬洖鏃忓湡鏃忚嚜娌诲幙"
+ }, {
+ value: "630122",
+ text: "婀熶腑鍘�"
+ }, {
+ value: "630123",
+ text: "婀熸簮鍘�"
+ }, {
+ value: "630124",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "632100",
+ text: "娴蜂笢鍦板尯",
+ children: [{
+ value: "632121",
+ text: "骞冲畨鍘�"
+ }, {
+ value: "632122",
+ text: "姘戝拰鍥炴棌鍦熸棌鑷不鍘�"
+ }, {
+ value: "632123",
+ text: "涔愰兘鍘�"
+ }, {
+ value: "632126",
+ text: "浜掑姪鍦熸棌鑷不鍘�"
+ }, {
+ value: "632127",
+ text: "鍖栭殕鍥炴棌鑷不鍘�"
+ }, {
+ value: "632128",
+ text: "寰寲鎾掓媺鏃忚嚜娌诲幙"
+ }, {
+ value: "632129",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "632200",
+ text: "娴峰寳钘忔棌鑷不宸�",
+ children: [{
+ value: "632221",
+ text: "闂ㄦ簮鍥炴棌鑷不鍘�"
+ }, {
+ value: "632222",
+ text: "绁佽繛鍘�"
+ }, {
+ value: "632223",
+ text: "娴锋檹鍘�"
+ }, {
+ value: "632224",
+ text: "鍒氬療鍘�"
+ }, {
+ value: "632225",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "632300",
+ text: "榛勫崡钘忔棌鑷不宸�",
+ children: [{
+ value: "632321",
+ text: "鍚屼粊鍘�"
+ }, {
+ value: "632322",
+ text: "灏栨墡鍘�"
+ }, {
+ value: "632323",
+ text: "娉藉簱鍘�"
+ }, {
+ value: "632324",
+ text: "娌冲崡钂欏彜鏃忚嚜娌诲幙"
+ }, {
+ value: "632325",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "632500",
+ text: "娴峰崡钘忔棌鑷不宸�",
+ children: [{
+ value: "632521",
+ text: "鍏卞拰鍘�"
+ }, {
+ value: "632522",
+ text: "鍚屽痉鍘�"
+ }, {
+ value: "632523",
+ text: "璐靛痉鍘�"
+ }, {
+ value: "632524",
+ text: "鍏存捣鍘�"
+ }, {
+ value: "632525",
+ text: "璐靛崡鍘�"
+ }, {
+ value: "632526",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "632600",
+ text: "鏋滄礇钘忔棌鑷不宸�",
+ children: [{
+ value: "632621",
+ text: "鐜涙瞾鍘�"
+ }, {
+ value: "632622",
+ text: "鐝帥鍘�"
+ }, {
+ value: "632623",
+ text: "鐢樺痉鍘�"
+ }, {
+ value: "632624",
+ text: "杈炬棩鍘�"
+ }, {
+ value: "632625",
+ text: "涔呮不鍘�"
+ }, {
+ value: "632626",
+ text: "鐜涘鍘�"
+ }, {
+ value: "632627",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "632700",
+ text: "鐜夋爲钘忔棌鑷不宸�",
+ children: [{
+ value: "632721",
+ text: "鐜夋爲鍘�"
+ }, {
+ value: "632722",
+ text: "鏉傚鍘�"
+ }, {
+ value: "632723",
+ text: "绉板鍘�"
+ }, {
+ value: "632724",
+ text: "娌诲鍘�"
+ }, {
+ value: "632725",
+ text: "鍥婅唉鍘�"
+ }, {
+ value: "632726",
+ text: "鏇查夯鑾卞幙"
+ }, {
+ value: "632727",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "632800",
+ text: "娴疯タ钂欏彜鏃忚棌鏃忚嚜娌诲窞",
+ children: [{
+ value: "632801",
+ text: "鏍煎皵鏈ㄥ競"
+ }, {
+ value: "632802",
+ text: "寰蜂护鍝堝競"
+ }, {
+ value: "632821",
+ text: "涔屽叞鍘�"
+ }, {
+ value: "632822",
+ text: "閮藉叞鍘�"
+ }, {
+ value: "632823",
+ text: "澶╁郴鍘�"
+ }, {
+ value: "632824",
+ text: "鍏跺畠鍖�"
+ }]
+ }]
+}, {
+ value: '640000',
+ text: '瀹佸',
+ children: [{
+ value: "640100",
+ text: "閾跺窛甯�",
+ children: [{
+ value: "640104",
+ text: "鍏村簡鍖�"
+ }, {
+ value: "640105",
+ text: "瑗垮鍖�"
+ }, {
+ value: "640106",
+ text: "閲戝嚖鍖�"
+ }, {
+ value: "640121",
+ text: "姘稿畞鍘�"
+ }, {
+ value: "640122",
+ text: "璐哄叞鍘�"
+ }, {
+ value: "640181",
+ text: "鐏垫甯�"
+ }, {
+ value: "640182",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "640200",
+ text: "鐭冲槾灞卞競",
+ children: [{
+ value: "640202",
+ text: "澶ф鍙e尯"
+ }, {
+ value: "640205",
+ text: "鎯犲啘鍖�"
+ }, {
+ value: "640221",
+ text: "骞崇綏鍘�"
+ }, {
+ value: "640222",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "640300",
+ text: "鍚村繝甯�",
+ children: [{
+ value: "640302",
+ text: "鍒╅�氬尯"
+ }, {
+ value: "640303",
+ text: "绾㈠鍫″尯"
+ }, {
+ value: "640323",
+ text: "鐩愭睜鍘�"
+ }, {
+ value: "640324",
+ text: "鍚屽績鍘�"
+ }, {
+ value: "640381",
+ text: "闈掗摐宄″競"
+ }, {
+ value: "640382",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "640400",
+ text: "鍥哄師甯�",
+ children: [{
+ value: "640402",
+ text: "鍘熷窞鍖�"
+ }, {
+ value: "640422",
+ text: "瑗垮悏鍘�"
+ }, {
+ value: "640423",
+ text: "闅嗗痉鍘�"
+ }, {
+ value: "640424",
+ text: "娉炬簮鍘�"
+ }, {
+ value: "640425",
+ text: "褰槼鍘�"
+ }, {
+ value: "640426",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "640500",
+ text: "涓崼甯�",
+ children: [{
+ value: "640502",
+ text: "娌欏潯澶村尯"
+ }, {
+ value: "640521",
+ text: "涓畞鍘�"
+ }, {
+ value: "640522",
+ text: "娴峰師鍘�"
+ }, {
+ value: "640523",
+ text: "鍏跺畠鍖�"
+ }]
+ }]
+}, {
+ value: '650000',
+ text: '鏂扮枂',
+ children: [{
+ value: "650100",
+ text: "涔岄瞾鏈ㄩ綈甯�",
+ children: [{
+ value: "650102",
+ text: "澶╁北鍖�"
+ }, {
+ value: "650103",
+ text: "娌欎緷宸村厠鍖�"
+ }, {
+ value: "650104",
+ text: "鏂板競鍖�"
+ }, {
+ value: "650105",
+ text: "姘寸(娌熷尯"
+ }, {
+ value: "650106",
+ text: "澶村悲娌冲尯"
+ }, {
+ value: "650107",
+ text: "杈惧潅鍩庡尯"
+ }, {
+ value: "650108",
+ text: "涓滃北鍖�"
+ }, {
+ value: "650109",
+ text: "绫充笢鍖�"
+ }, {
+ value: "650121",
+ text: "涔岄瞾鏈ㄩ綈鍘�"
+ }, {
+ value: "650122",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "650200",
+ text: "鍏嬫媺鐜涗緷甯�",
+ children: [{
+ value: "650202",
+ text: "鐙北瀛愬尯"
+ }, {
+ value: "650203",
+ text: "鍏嬫媺鐜涗緷鍖�"
+ }, {
+ value: "650204",
+ text: "鐧界⒈婊╁尯"
+ }, {
+ value: "650205",
+ text: "涔屽皵绂惧尯"
+ }, {
+ value: "650206",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "652100",
+ text: "鍚愰瞾鐣湴鍖�",
+ children: [{
+ value: "652101",
+ text: "鍚愰瞾鐣競"
+ }, {
+ value: "652122",
+ text: "閯杽鍘�"
+ }, {
+ value: "652123",
+ text: "鎵樺厠閫婂幙"
+ }, {
+ value: "652124",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "652200",
+ text: "鍝堝瘑鍦板尯",
+ children: [{
+ value: "652201",
+ text: "鍝堝瘑甯�"
+ }, {
+ value: "652222",
+ text: "宸撮噷鍧ゅ搱钀ㄥ厠鑷不鍘�"
+ }, {
+ value: "652223",
+ text: "浼婂惥鍘�"
+ }, {
+ value: "652224",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "652300",
+ text: "鏄屽悏鍥炴棌鑷不宸�",
+ children: [{
+ value: "652301",
+ text: "鏄屽悏甯�"
+ }, {
+ value: "652302",
+ text: "闃滃悍甯�"
+ }, {
+ value: "652303",
+ text: "绫虫硥甯�"
+ }, {
+ value: "652323",
+ text: "鍛煎浘澹佸幙"
+ }, {
+ value: "652324",
+ text: "鐜涚撼鏂幙"
+ }, {
+ value: "652325",
+ text: "濂囧彴鍘�"
+ }, {
+ value: "652327",
+ text: "鍚夋湪钀ㄥ皵鍘�"
+ }, {
+ value: "652328",
+ text: "鏈ㄥ瀿鍝堣惃鍏嬭嚜娌诲幙"
+ }, {
+ value: "652329",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "652700",
+ text: "鍗氬皵濉旀媺钂欏彜鑷不宸�",
+ children: [{
+ value: "652701",
+ text: "鍗氫箰甯�"
+ }, {
+ value: "652722",
+ text: "绮炬渤鍘�"
+ }, {
+ value: "652723",
+ text: "娓╂硥鍘�"
+ }, {
+ value: "652724",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "652800",
+ text: "宸撮煶閮钂欏彜鑷不宸�",
+ children: [{
+ value: "652801",
+ text: "搴撳皵鍕掑競"
+ }, {
+ value: "652822",
+ text: "杞彴鍘�"
+ }, {
+ value: "652823",
+ text: "灏夌妬鍘�"
+ }, {
+ value: "652824",
+ text: "鑻ョ緦鍘�"
+ }, {
+ value: "652825",
+ text: "涓旀湯鍘�"
+ }, {
+ value: "652826",
+ text: "鐒夎�嗗洖鏃忚嚜娌诲幙"
+ }, {
+ value: "652827",
+ text: "鍜岄潤鍘�"
+ }, {
+ value: "652828",
+ text: "鍜岀鍘�"
+ }, {
+ value: "652829",
+ text: "鍗氭箹鍘�"
+ }, {
+ value: "652830",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "652900",
+ text: "闃垮厠鑻忓湴鍖�",
+ children: [{
+ value: "652901",
+ text: "闃垮厠鑻忓競"
+ }, {
+ value: "652922",
+ text: "娓╁鍘�"
+ }, {
+ value: "652923",
+ text: "搴撹溅鍘�"
+ }, {
+ value: "652924",
+ text: "娌欓泤鍘�"
+ }, {
+ value: "652925",
+ text: "鏂板拰鍘�"
+ }, {
+ value: "652926",
+ text: "鎷滃煄鍘�"
+ }, {
+ value: "652927",
+ text: "涔屼粈鍘�"
+ }, {
+ value: "652928",
+ text: "闃跨摝鎻愬幙"
+ }, {
+ value: "652929",
+ text: "鏌潽鍘�"
+ }, {
+ value: "652930",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "653000",
+ text: "鍏嬪瓬鍕掕嫃鏌皵鍏嬪瓬鑷不宸�",
+ children: [{
+ value: "653001",
+ text: "闃垮浘浠�甯�"
+ }, {
+ value: "653022",
+ text: "闃垮厠闄跺幙"
+ }, {
+ value: "653023",
+ text: "闃垮悎濂囧幙"
+ }, {
+ value: "653024",
+ text: "涔屾伆鍘�"
+ }, {
+ value: "653025",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "653100",
+ text: "鍠�浠�鍦板尯",
+ children: [{
+ value: "653101",
+ text: "鍠�浠�甯�"
+ }, {
+ value: "653121",
+ text: "鐤忛檮鍘�"
+ }, {
+ value: "653122",
+ text: "鐤忓嫆鍘�"
+ }, {
+ value: "653123",
+ text: "鑻卞悏娌欏幙"
+ }, {
+ value: "653124",
+ text: "娉芥櫘鍘�"
+ }, {
+ value: "653125",
+ text: "鑾庤溅鍘�"
+ }, {
+ value: "653126",
+ text: "鍙跺煄鍘�"
+ }, {
+ value: "653127",
+ text: "楹︾洊鎻愬幙"
+ }, {
+ value: "653128",
+ text: "宀虫櫘婀栧幙"
+ }, {
+ value: "653129",
+ text: "浼藉笀鍘�"
+ }, {
+ value: "653130",
+ text: "宸存鍘�"
+ }, {
+ value: "653131",
+ text: "濉斾粈搴撳皵骞插鍚夊厠鑷不鍘�"
+ }, {
+ value: "653132",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "653200",
+ text: "鍜岀敯鍦板尯",
+ children: [{
+ value: "653201",
+ text: "鍜岀敯甯�"
+ }, {
+ value: "653221",
+ text: "鍜岀敯鍘�"
+ }, {
+ value: "653222",
+ text: "澧ㄧ帀鍘�"
+ }, {
+ value: "653223",
+ text: "鐨北鍘�"
+ }, {
+ value: "653224",
+ text: "娲涙郸鍘�"
+ }, {
+ value: "653225",
+ text: "绛栧嫆鍘�"
+ }, {
+ value: "653226",
+ text: "浜庣敯鍘�"
+ }, {
+ value: "653227",
+ text: "姘戜赴鍘�"
+ }, {
+ value: "653228",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "654000",
+ text: "浼婄妬鍝堣惃鍏嬭嚜娌诲窞",
+ children: [{
+ value: "654002",
+ text: "浼婂畞甯�"
+ }, {
+ value: "654003",
+ text: "濂庡悲甯�"
+ }, {
+ value: "654021",
+ text: "浼婂畞鍘�"
+ }, {
+ value: "654022",
+ text: "瀵熷竷鏌ュ皵閿′集鑷不鍘�"
+ }, {
+ value: "654023",
+ text: "闇嶅煄鍘�"
+ }, {
+ value: "654024",
+ text: "宸╃暀鍘�"
+ }, {
+ value: "654025",
+ text: "鏂版簮鍘�"
+ }, {
+ value: "654026",
+ text: "鏄嫃鍘�"
+ }, {
+ value: "654027",
+ text: "鐗瑰厠鏂幙"
+ }, {
+ value: "654028",
+ text: "灏煎嫆鍏嬪幙"
+ }, {
+ value: "654029",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "654200",
+ text: "濉斿煄鍦板尯",
+ children: [{
+ value: "654201",
+ text: "濉斿煄甯�"
+ }, {
+ value: "654202",
+ text: "涔岃嫃甯�"
+ }, {
+ value: "654221",
+ text: "棰濇晱鍘�"
+ }, {
+ value: "654223",
+ text: "娌欐咕鍘�"
+ }, {
+ value: "654224",
+ text: "鎵橀噷鍘�"
+ }, {
+ value: "654225",
+ text: "瑁曟皯鍘�"
+ }, {
+ value: "654226",
+ text: "鍜屽竷鍏嬭禌灏旇挋鍙よ嚜娌诲幙"
+ }, {
+ value: "654227",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "654300",
+ text: "闃垮嫆娉板湴鍖�",
+ children: [{
+ value: "654301",
+ text: "闃垮嫆娉板競"
+ }, {
+ value: "654321",
+ text: "甯冨皵娲ュ幙"
+ }, {
+ value: "654322",
+ text: "瀵岃暣鍘�"
+ }, {
+ value: "654323",
+ text: "绂忔捣鍘�"
+ }, {
+ value: "654324",
+ text: "鍝堝反娌冲幙"
+ }, {
+ value: "654325",
+ text: "闈掓渤鍘�"
+ }, {
+ value: "654326",
+ text: "鍚夋湪涔冨幙"
+ }, {
+ value: "654327",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "659001",
+ text: "鐭虫渤瀛愬競"
+ }, {
+ value: "659002",
+ text: "闃挎媺灏斿競"
+ }, {
+ value: "659003",
+ text: "鍥炬湪鑸掑厠甯�"
+ }, {
+ value: "659004",
+ text: "浜斿娓犲競"
+ }]
+}, {
+ value: '710000',
+ text: '鍙版咕鐪�',
+ children: [{
+ value: "710100",
+ text: "鍙板寳甯�",
+ children: [{
+ value: "710101",
+ text: "涓鍖�"
+ }, {
+ value: "710102",
+ text: "澶у悓鍖�"
+ }, {
+ value: "710103",
+ text: "涓北鍖�"
+ }, {
+ value: "710104",
+ text: "鏉惧北鍖�"
+ }, {
+ value: "710105",
+ text: "澶у畨鍖�"
+ }, {
+ value: "710106",
+ text: "涓囧崕鍖�"
+ }, {
+ value: "710107",
+ text: "淇′箟鍖�"
+ }, {
+ value: "710108",
+ text: "澹灄鍖�"
+ }, {
+ value: "710109",
+ text: "鍖楁姇鍖�"
+ }, {
+ value: "710110",
+ text: "鍐呮箹鍖�"
+ }, {
+ value: "710111",
+ text: "鍗楁腐鍖�"
+ }, {
+ value: "710112",
+ text: "鏂囧北鍖�"
+ }, {
+ value: "710113",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "710200",
+ text: "楂橀泟甯�",
+ children: [{
+ value: "710201",
+ text: "鏂板叴鍖�"
+ }, {
+ value: "710202",
+ text: "鍓嶉噾鍖�"
+ }, {
+ value: "710203",
+ text: "鑺╅泤鍖�"
+ }, {
+ value: "710204",
+ text: "鐩愬煏鍖�"
+ }, {
+ value: "710205",
+ text: "榧撳北鍖�"
+ }, {
+ value: "710206",
+ text: "鏃楁触鍖�"
+ }, {
+ value: "710207",
+ text: "鍓嶉晣鍖�"
+ }, {
+ value: "710208",
+ text: "涓夋皯鍖�"
+ }, {
+ value: "710209",
+ text: "宸﹁惀鍖�"
+ }, {
+ value: "710210",
+ text: "妤犳鍖�"
+ }, {
+ value: "710211",
+ text: "灏忔腐鍖�"
+ }, {
+ value: "710212",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "710300",
+ text: "鍙板崡甯�",
+ children: [{
+ value: "710301",
+ text: "涓タ鍖�"
+ }, {
+ value: "710302",
+ text: "涓滃尯"
+ }, {
+ value: "710303",
+ text: "鍗楀尯"
+ }, {
+ value: "710304",
+ text: "鍖楀尯"
+ }, {
+ value: "710305",
+ text: "瀹夊钩鍖�"
+ }, {
+ value: "710306",
+ text: "瀹夊崡鍖�"
+ }, {
+ value: "710307",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "710400",
+ text: "鍙颁腑甯�",
+ children: [{
+ value: "710401",
+ text: "涓尯"
+ }, {
+ value: "710402",
+ text: "涓滃尯"
+ }, {
+ value: "710403",
+ text: "鍗楀尯"
+ }, {
+ value: "710404",
+ text: "瑗垮尯"
+ }, {
+ value: "710405",
+ text: "鍖楀尯"
+ }, {
+ value: "710406",
+ text: "鍖楀悲鍖�"
+ }, {
+ value: "710407",
+ text: "瑗垮悲鍖�"
+ }, {
+ value: "710408",
+ text: "鍗楀悲鍖�"
+ }, {
+ value: "710409",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "710500",
+ text: "閲戦棬鍘�"
+ }, {
+ value: "710600",
+ text: "鍗楁姇鍘�"
+ }, {
+ value: "710700",
+ text: "鍩洪殕甯�",
+ children: [{
+ value: "710701",
+ text: "浠佺埍鍖�"
+ }, {
+ value: "710702",
+ text: "淇′箟鍖�"
+ }, {
+ value: "710703",
+ text: "涓鍖�"
+ }, {
+ value: "710704",
+ text: "涓北鍖�"
+ }, {
+ value: "710705",
+ text: "瀹変箰鍖�"
+ }, {
+ value: "710706",
+ text: "鏆栨殩鍖�"
+ }, {
+ value: "710707",
+ text: "涓冨牭鍖�"
+ }, {
+ value: "710708",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "710800",
+ text: "鏂扮甯�",
+ children: [{
+ value: "710801",
+ text: "涓滃尯"
+ }, {
+ value: "710802",
+ text: "鍖楀尯"
+ }, {
+ value: "710803",
+ text: "棣欏北鍖�"
+ }, {
+ value: "710804",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "710900",
+ text: "鍢変箟甯�",
+ children: [{
+ value: "710901",
+ text: "涓滃尯"
+ }, {
+ value: "710902",
+ text: "瑗垮尯"
+ }, {
+ value: "710903",
+ text: "鍏跺畠鍖�"
+ }]
+ }, {
+ value: "711100",
+ text: "鏂板寳甯�"
+ }, {
+ value: "711200",
+ text: "瀹滃叞鍘�"
+ }, {
+ value: "711300",
+ text: "鏂扮鍘�"
+ }, {
+ value: "711400",
+ text: "妗冨洯鍘�"
+ }, {
+ value: "711500",
+ text: "鑻楁牀鍘�"
+ }, {
+ value: "711700",
+ text: "褰板寲鍘�"
+ }, {
+ value: "711900",
+ text: "鍢変箟鍘�"
+ }, {
+ value: "712100",
+ text: "浜戞灄鍘�"
+ }, {
+ value: "712400",
+ text: "灞忎笢鍘�"
+ }, {
+ value: "712500",
+ text: "鍙颁笢鍘�"
+ }, {
+ value: "712600",
+ text: "鑺辫幉鍘�"
+ }, {
+ value: "712700",
+ text: "婢庢箹鍘�"
+ }]
+}, {
+ value: '810000',
+ text: '棣欐腐',
+ children: [{
+ value: "810100",
+ text: "棣欐腐宀�",
+ children: [{
+ value: "810101",
+ text: "涓タ鍖�"
+ }, {
+ value: "810102",
+ text: "婀句粩"
+ }, {
+ value: "810103",
+ text: "涓滃尯"
+ }, {
+ value: "810104",
+ text: "鍗楀尯"
+ }]
+ }, {
+ value: "810200",
+ text: "涔濋緳",
+ children: [{
+ value: "810201",
+ text: "涔濋緳鍩庡尯"
+ }, {
+ value: "810202",
+ text: "娌瑰皷鏃哄尯"
+ }, {
+ value: "810203",
+ text: "娣辨按鍩楀尯"
+ }, {
+ value: "810204",
+ text: "榛勫ぇ浠欏尯"
+ }, {
+ value: "810205",
+ text: "瑙傚鍖�"
+ }]
+ }, {
+ value: "810300",
+ text: "鏂扮晫",
+ children: [{
+ value: "810301",
+ text: "鍖楀尯"
+ }, {
+ value: "810302",
+ text: "澶у煍鍖�"
+ }, {
+ value: "810303",
+ text: "娌欑敯鍖�"
+ }, {
+ value: "810304",
+ text: "瑗胯础鍖�"
+ }, {
+ value: "810305",
+ text: "鍏冩湕鍖�"
+ }, {
+ value: "810306",
+ text: "灞棬鍖�"
+ }, {
+ value: "810307",
+ text: "鑽冩咕鍖�"
+ }, {
+ value: "810308",
+ text: "钁甸潚鍖�"
+ }, {
+ value: "810309",
+ text: "绂诲矝鍖�"
+ }]
+ }]
+}, {
+ value: '820000',
+ text: '婢抽棬',
+ children: [{
+ value: "820100",
+ text: "婢抽棬鍗婂矝"
+ }, {
+ value: "820200",
+ text: "绂诲矝"
+ }]
+}, {
+ value: '990000',
+ text: '娴峰',
+ children: [{
+ value: "990100",
+ text: "娴峰"
+ }]
+}]
\ No newline at end of file
diff --git a/WebContent/basic/js/formSplit.js b/WebContent/basic/js/formSplit.js
index 729ee8f..526293d 100644
--- a/WebContent/basic/js/formSplit.js
+++ b/WebContent/basic/js/formSplit.js
@@ -14,7 +14,9 @@
// var data_doDel = Mock.mock('/transport/yscompany/del.htm', {code: 0, errmsg: 'errmsg'})
// var data_doSave = Mock.mock('/transport/yscompany/save.htm', {code: 0, errmsg: 'errmsg'})
//test data end
-
+/*
+ * 閰嶈溅鎴愬姛 ---- 闇�瑕佹坊鍔犻殢琛屼汉鍛� ---- 鏄惁绔嬪嵆娣诲姞 闅忚浜哄憳 ----- 纭畾 --- 璺宠浆鍒版坊鍔犻〉闈紙缁戝畾杞﹁締銆佷笟鍔″崟銆佷汉鍛樺叧绯伙級 ---杞﹁締浠诲姟椤甸潰涔熷彲浠ユ坊鍔犳垨淇敼锛堢粦瀹氳溅杈嗐�佷笟鍔″崟銆佷汉鍛樺叧绯伙級
+*/
var SORT = [
{key: '鎵规鍙�', value: 'tdmx_fdcph', visible: ko.observable(true)},
{key: '瑙勬牸鍨嬪彿', value: 'tdmx_ggxh', visible: ko.observable(true)},
@@ -48,7 +50,9 @@
modal: $('#modal'),
clearSortBtn: $('#clearSortBtn'),
ssortBtn:$('#searchSortBtn'),
- sxBtn:$('#sxBtn')
+ sxBtn:$('#sxBtn'),
+ personModal:$("#personModal"),
+ addPerson: $("#addPerson")
}
var Obj = {
@@ -170,6 +174,13 @@
vm.o(ko.mapping.fromJS(Obj));
I.tempVehicleModal.modal('show');
});
+ // I.addPerson.click(function (e) {
+ // e.preventDefault();
+ // // vm.o(ko.mapping.fromJS(Obj));
+ // // I.personModal.modal('show');
+ // var item = {businessNo:'XS202203060079',vehicleId: '娌狤J3876'}
+ // addPersonTab(item);
+ // });
I.tempVehicleModal.on('hidden.bs.modal', function (e) {
clearError();
});
@@ -484,7 +495,10 @@
// }
// });
// });
+ // 閰嶈溅
updateNum();
+ var item = {businessNo: data.item.businessNo, vehicleId: vehicle.vehicleId}
+ confirmAddCarPersonTab(item);
getVehicleList();
return;
}
@@ -492,6 +506,31 @@
"json"
);
}
+function confirmAddCarPersonTab(item) {
+ swal({
+ title: "鏄惁闇�瑕佹坊鍔犻殢杞︿汉鍛橈紵", text: "濡傛灉涓嶆坊鍔犳垨闇�瑕佷慨鏀癸紝璇峰埌杞﹁締浠诲姟璇︽儏澶勬搷浣溿��", type: "warning",
+ showCancelButton: true,
+ confirmButtonColor: "#1c84c6",
+ confirmButtonText: "纭畾",
+ cancelButtonText: "鍙栨秷",
+ closeOnConfirm: true,
+ closeOnCancel: true,
+ }, function (isConfirm) {
+ if (isConfirm) {
+ addPersonTab(item)
+ }
+ });
+}
+function addPersonTab(item){
+ var businessNo = item.businessNo
+ var vehicleId = item.vehicleId
+ parent.closableTab.addTab({
+ 'id': "carPersons-" + businessNo + "-" + vehicleId,
+ 'name': '娣诲姞闅忚浜哄憳',
+ 'url': '/basic/carPersons.jsf?businessNo=' + businessNo + '&vehicleId=' + vehicleId,
+ 'closable': true
+ });
+}
function doUnbind() {
if (!!I.AjaxdoUnbind) {
diff --git a/WebContent/basic/js/vehicleBindMaterials.js b/WebContent/basic/js/vehicleBindMaterials.js
index 16896fe..6597bb8 100644
--- a/WebContent/basic/js/vehicleBindMaterials.js
+++ b/WebContent/basic/js/vehicleBindMaterials.js
@@ -16,6 +16,7 @@
bsNo: $('#_bsNo').val(),
printBtn: $('#printBtn'),
detailModal: $("#modal"),
+ addCarPersons: $("#addCarPersons")
}
var ViewModel = function() {
@@ -58,6 +59,18 @@
e.preventDefault();
I.detailModal.modal('hide');
})
+ I.addCarPersons.click(function (e) {
+ e.preventDefault();
+ var item = {businessNo: I.bsNo,vehicleId: I.numberplates}
+ console.log("item",item);
+ parent.closableTab.addTab({
+ 'id': "carPersons-" + item.businessNo + "-" + item.vehicleId,
+ 'name': '娣诲姞闅忚浜哄憳',
+ 'url': '/basic/carPersons.jsf?businessNo=' + item.businessNo + '&vehicleId=' + item.vehicleId,
+ 'closable': true
+ });
+
+ })
getRemarkDetail();
}
function saveRemark() {
diff --git a/WebContent/basic/vehicleBindMaterials.xhtml b/WebContent/basic/vehicleBindMaterials.xhtml
index dd38bc5..3681213 100644
--- a/WebContent/basic/vehicleBindMaterials.xhtml
+++ b/WebContent/basic/vehicleBindMaterials.xhtml
@@ -69,10 +69,13 @@
鏂拌繍杈撳叕鍙�
</button>
</div> -->
- <div class="col-xs-10">
+ <div class="col-xs-9">
<h3 style="margin: 0"><span data-bind="text: decodeURI('#{param.numberplates}')"></span>鐨勫凡閰嶈溅鐗╄祫锛屾�绘暟閲忥細<span data-bind="text: list().length"></span>锛屾�绘瘺閲嶏細<span data-bind="text: totalMZ"></span>锛屾�诲噣閲嶏細<span data-bind="text: totalJZ"></span>锛岃浇閲嶏細<span data-bind="text: vehicleLoadweight"></span>锛岃秴閲嶏細<span data-bind="text: (totalMZ() - vehicleLoadweight()) > 0 ? (totalMZ() - vehicleLoadweight()) : 0"></span>銆�</h3>
</div>
- <div class="col-xs-2" style="text-align: right;">
+ <div class="col-xs-3" style="text-align: right;">
+ <button class="btn btn-sm btn-info" type="button" id="addCarPersons">
+ <i class="ace-icon fa fa-plus center bigger-110"></i> 娣诲姞闅忚浜哄憳
+ </button>
<button class="btn btn-sm btn-info" type="button" id="remark" data-bind="click:addRemark">
澶囨敞
</button>
@@ -177,7 +180,7 @@
</div>
</ui:define>
<ui:define name="myscript">
- <script src="js/vehicleBindMaterials.js?v=11222222321"></script>
+ <script src="js/vehicleBindMaterials.js?v=12321"></script>
</ui:define>
</ui:composition>
</html>
\ No newline at end of file
diff --git a/WebContent/css/address-picker.css b/WebContent/css/address-picker.css
new file mode 100644
index 0000000..78532a2
--- /dev/null
+++ b/WebContent/css/address-picker.css
@@ -0,0 +1 @@
+:root{--theme-color:#56b4f8;--font-size:14px}div.adp-wraper{display:none;position:absolute;width:450px;height:auto;min-height:60px;font-size:15px;border-radius:3px;border:1px solid var(--theme-color);padding:0 0 5px 0;/*box-shadow:0 0 20px #eee;*/background-color:#fcfcfc}div.adp-wraper p{width:450px;height:37px;line-height:37px;border-bottom:2px solid var(--theme-color);margin:0 0 0 -1px;cursor:pointer}div.adp-wraper p span{color:#666;display:inline-block;width:90px;text-align:center;height:34px;line-height:34px;font-size:var(--font-size)}div.adp-wraper p .adp-avtive{background:var(--theme-color);color:white}div.adp-wraper>div.ul-div{padding:0 5px 0 5px;min-height:60px;display:none}div.adp-wraper div ul{width:100%;margin:0;height:100%;min-height:60px;text-align:center;padding:5px 0 0 0;list-style:none}div.adp-wraper div ul li{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;width:20%;padding:8px 0;border-radius:3px;cursor:pointer;color:#666;text-align:center;float:left;transition:.3s;font-size:var(--font-size)}div.adp-wraper div ul li:hover{color:#fff;background:var(--theme-color)}div.adp-wraper .adp-active{background:var(--theme-color);color:#fff !important}div.adp-wraper .adp-head-active{position:absolute;background-color:var(--theme-color);width:20%;height:35px;transition:.3s;border-radius:3px;color:#fff;font-size:var(--font-size);text-align:center;line-height:34px}div.adp-wraper .adp-empty-text{margin-top:15px;display:inline-block;color:#666;font-size:var(--font-size)}div.adp-wraper div.adp-btn-area{height:30px;width:100%;text-align:center;clear:both;}div.adp-wraper div.adp-btn{display:inline-block;margin-right:2px;cursor:pointer;font-family:Microsoft YaHei;font-size:var(--font-size);outline:0;width:18%;height:30px;line-height:30px;border-radius:2px;border:1px solid var(--theme-color);color:#fff;background-color:var(--theme-color)}div.adp-wraper div.adp-btn:hover{box-shadow:0 0 10px #eee;color:#fbfbfb}div.adp-wraper-backshadow{background:#ddd;opacity:.3;top:0;left:0;display:none;position:absolute;width:100%;height:100%}
\ No newline at end of file
diff --git a/WebContent/css/address-picker.js b/WebContent/css/address-picker.js
new file mode 100644
index 0000000..117ba29
--- /dev/null
+++ b/WebContent/css/address-picker.js
@@ -0,0 +1,546 @@
+(function () {
+ Number.prototype.toPercent = function () {
+ return (Math.round(this * 10000) / 100).toFixed(2) + "%"
+ };
+ var a = function (q) {
+ if (!(this instanceof a)) {
+ return new a(q)
+ }
+ var n = this;
+ var h = {};
+ var r = [];
+ var g = {};
+ var o;
+ var e = [];
+ var k = new Date().getTime();
+ var j = {
+ id: "",
+ level: 3,
+ levelDesc: ["鐪佷唤", "鍩庡競", "鍖哄幙"],
+ index: "99999999999999999999",
+ separator: " / ",
+ isInitClick: true,
+ isWithMouse: false,
+ offsetX: 0,
+ offsetY: 0,
+ emptyText: "鏆傛棤鏁版嵁",
+ color: "#56b4f8",
+ fontSize: "14px",
+ isAsync: false,
+ asyncUrl: "",
+ isShowBtn: true,
+ btnConfig: [],
+ data: ""
+ };
+ var t = j;
+ var l;
+ var c = 20;
+ var m = true;
+ n._init = function () {
+ if (!i()) {
+ return
+ }
+ d();
+ var x = '<div id="adp-wraper-' + k + '" class="adp-wraper" style="z-index: ' + t.index + '"><p>';
+ var v = '<div class="ul-div" style="display: block"><ul></ul></div>';
+ x += '<span class="adp-head-active">' + t.levelDesc[0] + "</span><span>" + t.levelDesc[0] + "</span>";
+ for (var w = 1; w < t.level; w++) {
+ x += "<span>" + t.levelDesc[w] + "</span>";
+ v += '<div class="ul-div"><ul><span class="adp-empty-text">' + t.emptyText + "</span></ul></div>"
+ }
+ x += "</p>";
+ var y = b();
+ // $("body").append(x + v + y + '</div><div class="adp-wraper-backshadow" style="z-index: ' + (t.index - 1) + '"></div>');
+ $("body").append(x + v + y + '</div>');
+ if (t.isAsync) {
+ o = f(null);
+ n._initFirstLevelData()
+ } else {
+ if (typeof t.data == "string" && !p(t.data)) {
+ $.ajax({
+ url: t.data, async: false, success: function (z) {
+ o = z;
+ n._getEachLevelData(0, t.level, o);
+ n._initFirstLevelData()
+ }
+ })
+ } else {
+ o = t.data;
+ if (typeof t.data == "string") {
+ o = JSON.parse(o)
+ }
+ n._getEachLevelData(0, t.level, o);
+ n._initFirstLevelData()
+ }
+ }
+ n._bindEvent()
+ };
+ n._getEachLevelData = function (w, B, y) {
+ var A = [];
+ var z = [];
+ if (w >= B) {
+ return
+ }
+ for (var x = 0; x < y.length; x++) {
+ A.push(y[x]);
+ if (w == B - 1) {
+ continue
+ }
+ if (y[x].children == undefined) {
+ continue
+ }
+ for (var v = 0; v < y[x].children.length; v++) {
+ z.push(y[x].children[v])
+ }
+ }
+ if (z.length == 0) {
+ return
+ }
+ h["data_level_" + w] = A;
+ n._getEachLevelData(w + 1, B, z)
+ };
+ n._initFirstLevelData = function () {
+ for (var w = 0; w < t.level; w++) {
+ $("#adp-wraper-" + k).children("div").eq(w).children("ul").empty();
+ $("#adp-wraper-" + k).children("div").eq(w).children("ul").append('<span class="adp-empty-text">' + t.emptyText + "</span>")
+ }
+ if (o.length > 0) {
+ $("#adp-wraper-" + k).children("div").eq(0).children("ul").empty()
+ }
+ for (var w = 0; w < o.length; w++) {
+ var v = '<li data-code="' + o[w].value + '" title="' + o[w].text + '">' + o[w].text + "</li>";
+ $("#adp-wraper-" + k).children("div").eq(0).children("ul").append(v)
+ }
+ var y = $("#adp-wraper-" + k).children("p").children("span").eq(1).text();
+ var x = $("#adp-wraper-" + k).children("p").children("span.adp-head-active");
+ x.css("left", "-1px");
+ x.text(y);
+ $("#adp-wraper-" + k).children("div.ul-div").eq(0).show().siblings("div.ul-div").hide();
+ if (t.isShowBtn) {
+ s(0)
+ }
+ };
+ n._bindEvent = function () {
+ $("#adp-wraper-" + k + " div ul").delegate("li", "click", function () {
+ var z = $(this).parent().parent().index();
+ g.value = $(this).data("code");
+ g.text = $(this).text();
+ g.level = z;
+ r[z - 1] = $(this).data("code");
+ e[z - 1] = $(this).text();
+ r.splice(z, r.length - z);
+ e.splice(z, e.length - z);
+ var G = $("#adp-wraper-" + k).children("div").length;
+ G = G -1
+ // console.log(z,G,z>G)
+ if (z < G) {
+ for (var F = z; F < t.level; F++) {
+ $("#adp-wraper-" + k).children("div.ul-div").eq(F).children("ul").empty().append('<span class="adp-empty-text">' + t.emptyText + "</span>")
+ }
+ $("#adp-wraper-" + k).children("div.ul-div").eq(z).children("ul").empty();
+ var x = t.isAsync ? f(g, z) : o;
+ if (z > 1 && !t.isAsync) {
+ x = h["data_level_" + (z - 1)]
+ }
+ if (x != undefined) {
+ for (var C = 0; C < x.length; C++) {
+ var y = x[C];
+ if (t.isAsync) {
+ var E = '<li data-code="' + y.value + '" title="' + y.text + '">' + y.text + "</li>";
+ $("#adp-wraper-" + k).children("div").eq(z).children("ul").append(E)
+ } else {
+ if (y.text == $(this).text() && y.value == $(this).data("code")) {
+ if (y.children != null && y.children.length > 0) {
+ for (var B = 0; B < y.children.length; B++) {
+ var A = y.children[B];
+ var E = '<li data-code="' + A.value + '" title="' + A.text + '">' + A.text + "</li>";
+ $("#adp-wraper-" + k).children("div.ul-div").eq(z).children("ul").append(E)
+ }
+ } else {
+ $("#adp-wraper-" + k).children("div.ul-div").eq(z).children("ul").append('<span class="adp-empty-text">' + t.emptyText + "</span>")
+ }
+ break
+ }
+ }
+ }
+ if (t.isShowBtn) {
+ s(z)
+ }
+ } else {
+ $("#adp-wraper-" + k).children("div.ul-div").eq(z).children("ul").append('<span class="adp-empty-text">' + t.emptyText + "</span>")
+ }
+ $(this).addClass("adp-active").siblings().removeClass("adp-active");
+ var D = $("#adp-wraper-" + k).children("p").children("span").eq(z + 1).text();
+ var H = $("#adp-wraper-" + k).children("p").children("span.adp-head-active");
+ H.css("left", (0.2 * (z)).toPercent());
+ $(this).parent().parent().next().show().siblings("div.ul-div").hide();
+ setTimeout(function () {
+ H.text(D)
+ }, 200)
+ } else {
+ $(this).addClass("adp-active").siblings().removeClass("adp-active");
+ $("#adp-wraper-" + k).fadeOut();
+ $("div.adp-wraper-backshadow").hide()
+ }
+ });
+ $("#adp-wraper-" + k + " p span").click(function () {
+ if ($(this).hasClass("adp-head-active")) {
+ return
+ }
+ var x = $(this).index() - 1;
+ var z = $(this).text();
+ var y = $("#adp-wraper-" + k).children("p").children("span.adp-head-active");
+ y.css("left", x == 0 ? -1 : (0.2 * x).toPercent());
+ setTimeout(function () {
+ y.text(z)
+ }, 200);
+ $("#adp-wraper-" + k).children("div").eq(x).show().siblings("div.ul-div").hide()
+ });
+ $("div.adp-wraper-backshadow").on("click", function () {
+ $("div.adp-wraper-backshadow").hide();
+ $("#adp-wraper-" + k).fadeOut()
+ });
+ $("#adp-wraper-" + k).click(function(event) {
+ $(document).one("click",
+ function() { //瀵筪ocument缁戝畾涓�涓奖钘廌iv鏂规硶
+ $("#adp-wraper-" + k).hide();
+ });
+ event.stopPropagation(); //闃绘浜嬩欢鍚戜笂鍐掓场
+ });
+
+ if (t.isInitClick) {
+ $("#" + t.id).on("click", function () {
+ var y = u(event);
+ var x = $("#adp-wraper-" + k + " div.ul-div").eq(0);
+ $("#adp-wraper-" + k).css("left", y.x);
+ $("#adp-wraper-" + k).css("top", y.y);
+ $("#adp-wraper-" + k).fadeIn();
+ if ((g.level == undefined || m) && t.isShowBtn) {
+ if (x.children("ul").children("li").height() != 0) {
+ c = x.children("ul").children("li").height()
+ }
+ s(0);
+ m = false
+ }
+ $(".adp-wraper-backshadow").show()
+ })
+ }
+ if (t.isShowBtn) {
+ var w = t.btnConfig;
+ for (var v = 0; v < w.length; v++) {
+ if (typeof (w[v].click) == "function") {
+ $("#adp_btn_" + v).on("click", w[v].click)
+ }
+ }
+ }
+ };
+ n._clearSelectedData = function () {
+ r = [];
+ e = [];
+ g = {};
+ var x = $("#adp-wraper-" + k).children("p").children("span.adp-head-active");
+ x.css("left", "-1px");
+ setTimeout(function () {
+ x.text(t.levelDesc[0])
+ }, 200);
+ for (var w = 1; w < t.level; w++) {
+ $("#adp-wraper-" + k).children("div.ul-div").eq(w).children("ul").empty().append('<span class="adp-empty-text">' + t.emptyText + "</span>");
+ if (t.isShowBtn) {
+ s(w)
+ }
+ }
+ var v;
+ if ((v = $("#adp-wraper-" + k).children("div.ul-div").eq(0).children("ul").children("li.adp-active")).length > 0) {
+ v.removeClass("adp-active")
+ }
+ $("#adp-wraper-" + k).children("div").eq(0).show().siblings("div.ul-div").hide()
+ };
+ n._setSelectedData = function (E) {
+ if (typeof (E) != "object" || E == null) {
+ return
+ }
+ if (E.length > t.level || E.length == 0) {
+ return
+ }
+ var v = t.isAsync ? f(null) : o;
+ if (typeof (v) != "object" || v == null) {
+ return
+ }
+ var x, G, H, K, I, J = "", D = false, C;
+ H = $("#adp-wraper-" + k).children("div.ul-div").eq(0).children("ul");
+ for (var z = 0; z < (K = H.children("li")).length; z++) {
+ x = v[z];
+ if (x.value == E[0]) {
+ g.value = x.value;
+ g.text = x.text;
+ g.level = 1;
+ r[0] = x.value;
+ e[0] = x.text;
+ r.splice(1, r.length - 1);
+ e.splice(1, e.length - 1);
+ G = x;
+ C = 0;
+ D = true;
+ H.children("li").removeClass("adp-active");
+ $(K[z]).addClass("adp-active");
+ continue
+ }
+ }
+ if (!D) {
+ return
+ }
+ for (var B = 1; B < E.length; B++) {
+ if (E[B] == null || E[B] == "") {
+ break
+ }
+ var w = t.isAsync ? f(G, g.level) : G.children;
+ if (typeof (w) != "object" || w == null) {
+ break
+ }
+ J = "";
+ D = false;
+ G = {};
+ for (var A = 0; A < w.length; A++) {
+ if (w[A].value == E[B]) {
+ J += '<li data-code="' + w[A].value + '" title="' + w[A].text + '" class="adp-active">' + w[A].text + "</li>";
+ g.value = w[A].value;
+ g.text = w[A].text;
+ g.level = (B + 1);
+ r[B] = w[A].value;
+ e[B] = w[A].text;
+ r.splice(B + 1, r.length - B - 1);
+ e.splice(B + 1, e.length - B - 1);
+ G = w[A];
+ D = true;
+ C = B;
+ continue
+ }
+ J += '<li data-code="' + w[A].value + '" title="' + w[A].text + '">' + w[A].text + "</li>"
+ }
+ if (!D) {
+ break
+ }
+ $("#adp-wraper-" + k).children("div.ul-div").eq(B).children("ul").empty().append(J);
+ if (t.isShowBtn) {
+ s(B)
+ }
+ }
+ if (typeof (C) == "number") {
+ $("#adp-wraper-" + k).children("div.ul-div").eq(C).show().siblings("div.ul-div").hide();
+ var F = $("#adp-wraper-" + k).children("p").children("span").eq(C + 1).text();
+ var L = $("#adp-wraper-" + k).children("p").children("span.adp-head-active");
+ L.css("left", (0.2 * (C)).toPercent());
+ setTimeout(function () {
+ L.text(F)
+ }, 200);
+ for (var y = C + 1; y < t.level; y++) {
+ $("#adp-wraper-" + k).children("div.ul-div").eq(y).children("ul").empty().append('<span class="adp-empty-text">' + t.emptyText + "</span>");
+ if (t.isShowBtn) {
+ s(y)
+ }
+ }
+ }
+ };
+ n._refreshData = function (v) {
+ if (typeof v == "string" && p(v)) {
+ v = JSON.parse(v)
+ }
+ o = v;
+ if (o.length > 0) {
+ n._getEachLevelData(0, t.level, o)
+ }
+ n._initFirstLevelData()
+ };
+ n._getTotalValueAsArray = function () {
+ return {value: r, text: e}
+ };
+ n._getTotalValueAsText = function () {
+ var w = "";
+ for (var v = 0; v < g.level; v++) {
+ w += (v < g.level - 1 ? e[v] + t.separator : e[v])
+ }
+ return w
+ };
+ n._getCurrentObject = function () {
+ return g
+ };
+ n._show = function () {
+ var v = u(event);
+ $("#adp-wraper-" + k).css("left", v.x);
+ $("#adp-wraper-" + k).css("top", v.y);
+ $("#adp-wraper-" + k).fadeIn();
+ $(".adp-wraper-backshadow").show()
+ };
+ n._hide = function () {
+ $("#adp-wraper-" + k).fadeOut();
+ $("div.adp-wraper-backshadow").hide()
+ };
+ n._on = function (v, w) {
+ $("#adp-wraper-" + k + " div ul").delegate("li", v, w)
+ };
+
+ function p(x) {
+ if (typeof x == "string") {
+ try {
+ var w = JSON.parse(x);
+ if (typeof w == "object" && w) {
+ return true
+ } else {
+ return false
+ }
+ } catch (v) {
+ return false
+ }
+ }
+ }
+
+ function u(w) {
+ var v = $("#" + t.id).offset().left - 10;
+ var C = $("#" + t.id).offset().top + $("#" + t.id).height() + 5;
+ if (t.isWithMouse) {
+ var A = w || window.event;
+ var B = document.documentElement.scrollLeft || document.body.scrollLeft;
+ var z = document.documentElement.scrollTop || document.body.scrollTop;
+ v = A.pageX || A.clientX + B;
+ C = A.pageY || A.clientY + z
+ }
+ v += t.offsetX;
+ C += t.offsetY;
+ return {x: v, y: C}
+ }
+
+ function d() {
+ var w = "";
+ var y = $("head script");
+ if (y.length > 0) {
+ for (var A = 0; A < y.length; A++) {
+ if (y[A].src.indexOf("/js/address-picker.js") != -1) {
+ w = y[A].src.substring(0, y[A].src.indexOf("/js/address-picker.js"));
+ break
+ }
+ }
+ }
+ if (w != "") {
+ var v = document.querySelector(":root");
+ v.style.setProperty("--theme-color", t.color);
+ v.style.setProperty("--font-size", t.fontSize);
+ var z = document.getElementsByTagName("head")[0];
+ var x = document.createElement("script");
+ var B = document.createElement("link");
+ B.href = w + "/css/address-picker.css";
+ B.rel = "stylesheet";
+ B.type = "text/css";
+ z.appendChild(B);
+ if (t.data == "") {
+ if (t.level == 1 || t.level == 2) {
+ t.data = w + "/data/pc-code.json"
+ } else {
+ if (t.level == 4 || t.level == 5) {
+ t.data = w + "/data/pcas-code.json"
+ } else {
+ t.data = w + "/data/pca-code.json"
+ }
+ }
+ }
+ }
+ }
+
+ function i() {
+ var v = true;
+ if (q instanceof Object) {
+ t = $.extend({}, j, q)
+ } else {
+ if (typeof (q) == "string") {
+ t.id = q
+ } else {
+ v = false
+ }
+ }
+ if (t.level > t.levelDesc.length) {
+ t.levelDesc = j.levelDesc
+ }
+ if (t.color == "") {
+ t.color = j.color
+ }
+ if (t.fontSize == "") {
+ t.fontSize = j.fontSize
+ }
+ if (t.id == "" || t.id == undefined) {
+ v = false
+ } else {
+ if ($("#" + t.id).length == 0) {
+ v = false
+ }
+ }
+ if (t.isAsync && (typeof (t.asyncUrl) != "string" || t.asyncUrl == "")) {
+ t.isAsync = j.isAsync
+ }
+ if (typeof (t.btnConfig) != "object" || t.btnConfig == null) {
+ t.isShowBtn = false;
+ t.btnConfig = j.btnConfig
+ }
+ return v
+ }
+
+ function s(y) {
+ var w = $("#adp-wraper-" + k).children("div.ul-div").eq(y);
+ var x = w.find("ul li");
+ var v = Math.ceil(x.length / 5) * (c + 16) + 10;
+ w.css("height", v > 65 ? v : 65 + "px")
+ }
+
+ function b() {
+ var x, v = "";
+ if (t.isShowBtn && (x = t.btnConfig).length > 0) {
+ v = '<div class="adp-btn-area">';
+ for (var w = 0; w < x.length; w++) {
+ v += '<div id="adp_btn_' + w + '" class="adp-btn">' + x[w].text + "</div>"
+ }
+ v += "</div>"
+ }
+ return v
+ }
+
+ function f(z, y) {
+ var v = [];
+ if (t.isAsync) {
+ var x = "", w = "", A = 1;
+ if (z == null) {
+ if ((typeof (l) != "undefined" && l != null)) {
+ return l
+ }
+ } else {
+ x = z.value;
+ w = z.text ? z.text : z.text;
+ A = y
+ }
+ $.ajax({
+ data: {value: x, text: w, level: A}, url: t.asyncUrl, async: false, success: function (B) {
+ if (typeof (B) == "string" && p(B)) {
+ B = JSON.parse(B)
+ }
+ v = B;
+ if (z == null && typeof (l) == "undefined") {
+ l = B
+ }
+ }
+ })
+ }
+ return v
+ }
+
+ n._init();
+ return {
+ on: n._on,
+ show: n._show,
+ hide: n._hide,
+ refreshData: n._refreshData,
+ getCurrentObject: n._getCurrentObject,
+ getTotalValueAsArray: n._getTotalValueAsArray,
+ getTotalValueAsText: n._getTotalValueAsText,
+ clearSelectedData: n._clearSelectedData,
+ setSelectedData: n._setSelectedData
+ }
+ };
+ window.addressPicker = a
+}());
\ No newline at end of file
diff --git a/WebContent/template/nit/tmp_brief.xhtml b/WebContent/template/nit/tmp_brief.xhtml
index 15bf1f2..91ddda1 100644
--- a/WebContent/template/nit/tmp_brief.xhtml
+++ b/WebContent/template/nit/tmp_brief.xhtml
@@ -87,6 +87,7 @@
<ui:insert name="title">
<title>娌冲崡鏄庢嘲鍒嗗崟閰嶈溅绠$悊绯荤粺</title>
</ui:insert>
+ <ui:insert name="link"/>
<ui:insert name="acss"></ui:insert>
</h:head>
<h:body class="no-skin">
--
Gitblit v1.9.3