diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Mobile/www/pages/timeTable/form/form.js b/Learun.Framework.Ultimate V7/Learun.Application.Mobile/www/pages/timeTable/form/form.js index f25753c3b..52f917a5a 100644 --- a/Learun.Framework.Ultimate V7/Learun.Application.Mobile/www/pages/timeTable/form/form.js +++ b/Learun.Framework.Ultimate V7/Learun.Application.Mobile/www/pages/timeTable/form/form.js @@ -89,7 +89,7 @@ _postData.keyValue = keyValue; _postData.strEntity = JSON.stringify($page.find('.lr-form-container').lrformGet()); learun.layer.loading(true, '正在提交数据'); - learun.httppost(config.webapi + 'learun/EducationalAdministration/StuAttendanceLeave/save', _postData, (data) => { + learun.httppost(config.webapi + 'learun/adms/EducationalAdministration/StuAttendanceLeave/save', _postData, (data) => { learun.layer.loading(false); if (data) {// 表单数据保存成功 if (keyValue) { @@ -104,8 +104,8 @@ else {// 如果是 learun.nav.closeCurrent(); } - var prepage = learun.nav.getpage('EducationalAdministration/StuAttendanceLeave'); - prepage.grid.reload(); + var prepage = learun.nav.getpage('timeTable'); + prepage.init($(prepage)); } }); }); @@ -115,7 +115,7 @@ $header.find('.lr-form-header-btnlist').show(); // 获取表单数据 learun.layer.loading(true, '获取表单数据'); - learun.httpget(config.webapi + 'learun/EducationalAdministration/StuAttendanceLeave/leaveform', keyValue, (data) => { + learun.httpget(config.webapi + 'learun/adms/EducationalAdministration/StuAttendanceLeave/leaveform', keyValue, (data) => { console.log(data); if (data) { diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Mobile/www/pages/timeTable/timeTable.css b/Learun.Framework.Ultimate V7/Learun.Application.Mobile/www/pages/timeTable/timeTable.css index c837dc840..9bcf81d07 100644 --- a/Learun.Framework.Ultimate V7/Learun.Application.Mobile/www/pages/timeTable/timeTable.css +++ b/Learun.Framework.Ultimate V7/Learun.Application.Mobile/www/pages/timeTable/timeTable.css @@ -121,7 +121,7 @@ li{ .tSec2List li{ border-bottom: 1px solid #D5EAF7; overflow: hidden; - height: 60px; + height: 64px; } .tSec2ListL{ float: left; @@ -150,7 +150,7 @@ li{ .tSec2ListT{ color: #3E3E3E; font-size: 15px; - margin: 5px 0; + margin: 2px 0; overflow:hidden; white-space:nowrap; text-overflow:ellipsis; diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Mobile/www/pages/timeTable/timeTable.js b/Learun.Framework.Ultimate V7/Learun.Application.Mobile/www/pages/timeTable/timeTable.js index 43d791fa2..c945ecb72 100644 --- a/Learun.Framework.Ultimate V7/Learun.Application.Mobile/www/pages/timeTable/timeTable.js +++ b/Learun.Framework.Ultimate V7/Learun.Application.Mobile/www/pages/timeTable/timeTable.js @@ -120,6 +120,9 @@ k.LessonName + '' + '
' + + k.ClassName + + '
' + + '
' + '' + k.EmpName + '
' + diff --git a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Controllers/StuAttendanceLeaveController.cs b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Controllers/StuAttendanceLeaveController.cs index bd26f7a65..b86aca106 100644 --- a/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Controllers/StuAttendanceLeaveController.cs +++ b/Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Controllers/StuAttendanceLeaveController.cs @@ -137,6 +137,8 @@ namespace Learun.Application.Web.Areas.EducationalAdministration.Controllers StuAttendanceLeaveEntity entity = strEntity.ToObject(); stuAttendanceLeaveIBLL.SaveEntity(keyValue, entity); + entity = stuAttendanceLeaveIBLL.GetStuAttendanceLeaveEntity(entity.ID); + if (!string.IsNullOrEmpty(entity.IsCheck)) { if (entity.IsCheck == "1") diff --git a/Learun.Framework.Ultimate V7/Learun.Application.WebApi/Modules/StuAttendanceLeaveApi.cs b/Learun.Framework.Ultimate V7/Learun.Application.WebApi/Modules/StuAttendanceLeaveApi.cs index 29fe98147..1ab2e02fb 100644 --- a/Learun.Framework.Ultimate V7/Learun.Application.WebApi/Modules/StuAttendanceLeaveApi.cs +++ b/Learun.Framework.Ultimate V7/Learun.Application.WebApi/Modules/StuAttendanceLeaveApi.cs @@ -133,6 +133,7 @@ namespace Learun.Application.WebApi { ReqFormEntity parameter = this.GetReqData(); StuAttendanceLeaveEntity entity = parameter.strEntity.ToObject(); + entity.TeachClassNo = entity.ClassNo; stuAttendanceLeaveIBLL.SaveEntity(this.userInfo, parameter.keyValue, entity); if (!string.IsNullOrEmpty(entity.IsCheck)) { diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/App.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/App.vue index 82cf5320d..55e9bb57a 100644 --- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/App.vue +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/App.vue @@ -1,52 +1,65 @@ diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/css/common.less b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/css/common.less new file mode 100644 index 000000000..ec4b7e619 --- /dev/null +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/css/common.less @@ -0,0 +1,11 @@ +@pubColor: #0C86D8; + +.btn { + width: 50%; + line-height: 34px; + background-color: #0c86d8; + text-align: center; + color: #fff; + border-radius: 4px; + margin: 30px auto; +} diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/1.jpg b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/1.jpg new file mode 100644 index 000000000..df1127a0a Binary files /dev/null and b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/1.jpg differ diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/2.jpg b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/2.jpg new file mode 100644 index 000000000..444ac86a5 Binary files /dev/null and b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/2.jpg differ diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/2.png b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/2.png new file mode 100644 index 000000000..efccc99b6 Binary files /dev/null and b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/2.png differ diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/3.jpg b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/3.jpg new file mode 100644 index 000000000..1c244fa67 Binary files /dev/null and b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/3.jpg differ diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/4.jpg b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/4.jpg new file mode 100644 index 000000000..2461b4f5c Binary files /dev/null and b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/4.jpg differ diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/banner.png b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/banner.png new file mode 100644 index 000000000..e6830d937 Binary files /dev/null and b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/banner.png differ diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/banner1.png b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/banner1.png new file mode 100644 index 000000000..c2d5ff2bf Binary files /dev/null and b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/banner1.png differ diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/banner160.png b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/banner160.png new file mode 100644 index 000000000..1e5e79a83 Binary files /dev/null and b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/banner160.png differ diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/book.png b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/book.png new file mode 100644 index 000000000..0db4f0234 Binary files /dev/null and b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/book.png differ diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/dk.png b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/dk.png new file mode 100644 index 000000000..64bd99bf5 Binary files /dev/null and b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/dk.png differ diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/dkred.png b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/dkred.png new file mode 100644 index 000000000..a2dc327d0 Binary files /dev/null and b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/dkred.png differ diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/dkyellow.png b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/dkyellow.png new file mode 100644 index 000000000..4f1cabb69 Binary files /dev/null and b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/dkyellow.png differ diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/enter1-1.png b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/enter1-1.png new file mode 100644 index 000000000..990fd495c Binary files /dev/null and b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/enter1-1.png differ diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/enter1-2.png b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/enter1-2.png new file mode 100644 index 000000000..ac3c8b0fe Binary files /dev/null and b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/enter1-2.png differ diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/enter1-3.png b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/enter1-3.png new file mode 100644 index 000000000..c088593c3 Binary files /dev/null and b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/enter1-3.png differ diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/enter1-4.png b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/enter1-4.png new file mode 100644 index 000000000..ad16a75be Binary files /dev/null and b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/enter1-4.png differ diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/enter1-5.png b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/enter1-5.png new file mode 100644 index 000000000..74f182764 Binary files /dev/null and b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/enter1-5.png differ diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/enter1-6.png b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/enter1-6.png new file mode 100644 index 000000000..3a8521416 Binary files /dev/null and b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/enter1-6.png differ diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/enter2-1.png b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/enter2-1.png new file mode 100644 index 000000000..6b334c16d Binary files /dev/null and b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/enter2-1.png differ diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/enter2-2.png b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/enter2-2.png new file mode 100644 index 000000000..79af57c9a Binary files /dev/null and b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/enter2-2.png differ diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/enter2-3.png b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/enter2-3.png new file mode 100644 index 000000000..0cf0c96a8 Binary files /dev/null and b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/enter2-3.png differ diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/enter2-4.png b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/enter2-4.png new file mode 100644 index 000000000..5937e6a5a Binary files /dev/null and b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/enter2-4.png differ diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/enter2-5.png b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/enter2-5.png new file mode 100644 index 000000000..91ea733b3 Binary files /dev/null and b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/enter2-5.png differ diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/location.png b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/location.png new file mode 100644 index 000000000..53c3d8932 Binary files /dev/null and b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/location.png differ diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/location2.png b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/location2.png new file mode 100644 index 000000000..c6dd0480a Binary files /dev/null and b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/location2.png differ diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/logo.png b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/logo.png new file mode 100644 index 000000000..928b9c3e6 Binary files /dev/null and b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/logo.png differ diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/logoXc.png b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/logoXc.png new file mode 100644 index 000000000..532bd5a13 Binary files /dev/null and b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/logoXc.png differ diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/logoXcTxt.png b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/logoXcTxt.png new file mode 100644 index 000000000..e898a2075 Binary files /dev/null and b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/logoXcTxt.png differ diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/myCardBg.png b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/myCardBg.png new file mode 100644 index 000000000..676d58f78 Binary files /dev/null and b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/myCardBg.png differ diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/notification.png b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/notification.png new file mode 100644 index 000000000..63a1047c0 Binary files /dev/null and b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/notification.png differ diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/on-boy.jpg b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/on-boy.jpg new file mode 100644 index 000000000..0d7d6051f Binary files /dev/null and b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/on-boy.jpg differ diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/on-girl.jpg b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/on-girl.jpg new file mode 100644 index 000000000..a59d771b7 Binary files /dev/null and b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/on-girl.jpg differ diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/person.png b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/person.png new file mode 100644 index 000000000..7c628a717 Binary files /dev/null and b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/person.png differ diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/reportBg.png b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/reportBg.png new file mode 100644 index 000000000..f03e24700 Binary files /dev/null and b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/reportBg.png differ diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/student.jpg b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/student.jpg new file mode 100644 index 000000000..de0ba984f Binary files /dev/null and b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/student.jpg differ diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/tab10.png b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/tab10.png new file mode 100644 index 000000000..9fb636d45 Binary files /dev/null and b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/tab10.png differ diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/tab11.png b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/tab11.png new file mode 100644 index 000000000..ef6741dad Binary files /dev/null and b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/tab11.png differ diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/tab20.png b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/tab20.png new file mode 100644 index 000000000..8ca8e66ac Binary files /dev/null and b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/tab20.png differ diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/tab21.png b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/tab21.png new file mode 100644 index 000000000..a110b4dc4 Binary files /dev/null and b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/tab21.png differ diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/tab30.png b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/tab30.png new file mode 100644 index 000000000..8394fe514 Binary files /dev/null and b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/tab30.png differ diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/tab31.png b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/tab31.png new file mode 100644 index 000000000..06c111e89 Binary files /dev/null and b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/tab31.png differ diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/tab40.png b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/tab40.png new file mode 100644 index 000000000..fbe861832 Binary files /dev/null and b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/tab40.png differ diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/tab41.png b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/tab41.png new file mode 100644 index 000000000..7c2c8522b Binary files /dev/null and b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/tab41.png differ diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/time.png b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/time.png new file mode 100644 index 000000000..1581f1781 Binary files /dev/null and b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/time.png differ diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/timeT1-1.png b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/timeT1-1.png new file mode 100644 index 000000000..ddfdbaf4d Binary files /dev/null and b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/timeT1-1.png differ diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/wechat.jpg b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/wechat.jpg new file mode 100644 index 000000000..a7b92f902 Binary files /dev/null and b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/wechat.jpg differ diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/welcomeBanner.jpg b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/welcomeBanner.jpg new file mode 100644 index 000000000..ed47550d7 Binary files /dev/null and b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/welcomeBanner.jpg differ diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/xcBg.jpg b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/xcBg.jpg new file mode 100644 index 000000000..2241763a5 Binary files /dev/null and b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/xcBg.jpg differ diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/xcQr.jpg b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/xcQr.jpg new file mode 100644 index 000000000..571ab58bb Binary files /dev/null and b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/xcQr.jpg differ diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/xcYc.png b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/xcYc.png new file mode 100644 index 000000000..3b7d8ebec Binary files /dev/null and b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/xcYc.png differ diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/xcYz.png b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/xcYz.png new file mode 100644 index 000000000..7667e13c0 Binary files /dev/null and b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/xcYz.png differ diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/xcZc.png b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/xcZc.png new file mode 100644 index 000000000..ed807d60b Binary files /dev/null and b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/xcZc.png differ diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/xcZc2.png b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/xcZc2.png new file mode 100644 index 000000000..eed805947 Binary files /dev/null and b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/xcZc2.png differ diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/xcZc3.png b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/xcZc3.png new file mode 100644 index 000000000..bca79a5e8 Binary files /dev/null and b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/images/xcZc3.png differ diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/js/city.js b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/js/city.js new file mode 100644 index 000000000..6dc76d48c --- /dev/null +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/js/city.js @@ -0,0 +1,11553 @@ + +var cityData = [{ + value: '110000', + text: '北京市', + children: [{ + value: "110100", + text: "北京市", + children: [{ + value: "110101", + text: "东城区" + }, { + value: "110102", + text: "西城区" + }, { + value: "110103", + text: "崇文区" + }, { + value: "110104", + text: "宣武区" + }, { + 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: "正定县" + }, { + 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: "张家口市", + children: [{ + value: "130702", + text: "桥东区" + }, { + value: "130703", + text: "桥西区" + }, { + value: "130705", + text: "宣化区" + }, { + value: "130706", + text: "下花园区" + }, { + value: "130721", + text: "宣化县" + }, { + 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: "枣强县" + }, { + 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: "垣曲县" + }, { + 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: "代县" + }, { + 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: "正镶白旗" + }, { + value: "152530", + text: "正蓝旗" + }, { + 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: "沙河口区" + }, { + value: "210211", + text: "甘井子区" + }, { + value: "210212", + text: "旅顺口区" + }, { + 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: "梅河口市" + }, { + 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: "穆棱市" + }, { + 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: "绥棱县" + }, { + 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: "赣榆县" + }, { + 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: "宣城市", + children: [{ + value: "341802", + text: "宣州区" + }, { + 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: "赣州市", + children: [{ + value: "360702", + text: "章贡区" + }, { + value: "360721", + text: "赣县" + }, { + 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: "枣庄市", + 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: "荣成市" + }, { + 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: "解放区" + }, { + 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: "正阳县" + }, { + 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: "丹江口市" + }, { + 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: "老河口市" + }, { + value: "420683", + text: "枣阳市" + }, { + 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: "宣恩县" + }, { + 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: "那坡县" + }, { + 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: "大渡口区" + }, { + 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: "荣昌县" + }, { + 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: "荣县" + }, { + 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: "丹棱县" + }, { + 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: "宣汉县" + }, { + 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: "正安县" + }, { + 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: "宣威市" + }, { + 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: "新平彝族傣族自治县" + }, { + 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: "景谷傣族彝族自治县" + }, { + value: "530825", + text: "镇沅彝族哈尼族拉祜族自治县" + }, { + value: "530826", + text: "江城哈尼族彝族自治县" + }, { + value: "530827", + text: "孟连傣族拉祜族佤族自治县" + }, { + 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: "双江拉祜族佤族布朗族傣族自治县" + }, { + value: "530926", + text: "耿马傣族佤族自治县" + }, { + 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: "金平苗族瑶族傣族自治县" + }, { + 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: "西双版纳傣族自治州", + 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: "德宏傣族景颇族自治州", + 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: "那曲地区", + children: [{ + value: "542421", + text: "那曲县" + }, { + 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: "正宁县" + }, { + 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: "大武口区" + }, { + 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: "海外" + }] +}] + +export default{ + cityData +} diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/js/common.js b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/js/common.js new file mode 100644 index 000000000..a2b133f39 --- /dev/null +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/js/common.js @@ -0,0 +1,55 @@ +export default { + fmtDate(obj) { + let date =obj? new Date(obj) : new Date(); + let y = 1900+date.getYear(); + let m = "0"+(date.getMonth()+1); + let d = "0"+date.getDate(); + return y+"-"+m.substring(m.length-2,m.length)+"-"+d.substring(d.length-2,d.length); + }, + judgeDate(obj) { //判断学期 + let date = obj ? new Date(obj) : new Date(); + let y = 1900 + date.getYear(); + let m = date.getMonth() + 1; + if(m >= 2) { + if(m < 7) { + return (y - 1) + '-' + y + '学年第二学期' + } else { + return y + '-' + (y + 1) + '学年第一学期' + } + }else{ + return (y - 1) + '-' + y + '学年第一学期' + } + }, + oneDayTime () { + return 24 * 60 * 60 * 1000 //一天时间 + }, + weekday(obj) { //根据今天得到周一与周日的时间 + var now = obj? new Date(obj):new Date();  + var nowTime = now.getTime();  + var day = now.getDay(); + //显示周一 + var MondayTime = nowTime - (day - 1) * this.oneDayTime() ;  + //显示周日 + var SundayTime =  nowTime + (7 - day) * this.oneDayTime() ;  + return { + MondayTime: MondayTime, + Monday: this.fmtDate(MondayTime), + SundayTime: SundayTime, + Sunday: this.fmtDate(SundayTime) + } + }, + compare (key) { + return (obj1, obj2) => { + let value1 = obj1[key] + let value2 = obj2[key] + if (value1 < value2) { + return -1; + } else if (value1 > value2) { + return 1; + } else { + return 0 + } + } + } +} + diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/js/scanCodeFun.js b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/js/scanCodeFun.js new file mode 100644 index 000000000..509568d1b --- /dev/null +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/js/scanCodeFun.js @@ -0,0 +1,29 @@ +export default { + scanCodeFun() { + const promise = new Promise((resolve, reject) => { + // #ifdef APP-PLUS || MP-WEIXIN + uni.scanCode({ + success: function(res) { + // console.log(res) + // console.log('条码类型:' + res.scanType); + // console.log('条码内容:' + res.result); + resolve(res) + }, + fail: function(res) { + resolve(false) + } + }); + // #endif + + // #ifndef APP-PLUS || MP-WEIXIN + resolve(false) + uni.showToast({ + title: '请下载app或者到微信浏览器打开网页', + icon: 'none', + mask: false + }) + // #endif + }) + return promise + } +} diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/js/todayTime.js b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/js/todayTime.js new file mode 100644 index 000000000..916052f92 --- /dev/null +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/js/todayTime.js @@ -0,0 +1,17 @@ +export default { + fmtDate(obj) { + let date =obj? new Date(obj) : new Date(); + let y = 1900+date.getYear(); + let m = "0"+(date.getMonth()+1); + let d = "0"+date.getDate(); + let h = "0"+date.getHours(); + let min = "0"+date.getMinutes(); + let second = "0"+date.getSeconds(); + return { + ymdhMin:y+"-"+m.substring(m.length-2,m.length)+"-"+d.substring(d.length-2,d.length) + ' ' + h.substring(h.length-2,h.length) + ':' + min.substring(min.length-2,min.length), + ymdhMins:y+"-"+m.substring(m.length-2,m.length)+"-"+d.substring(d.length-2,d.length) + ' ' + h.substring(h.length-2,h.length) + ':' + min.substring(min.length-2,min.length) + ':' + second.substring(second.length-2,second.length), + ymd:y+"-"+m.substring(m.length-2,m.length)+"-"+d.substring(d.length-2,d.length) + }; + } +} + diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/mixins.js b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/mixins.js index 8e61e971a..b64043ab0 100644 --- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/mixins.js +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/common/mixins.js @@ -206,7 +206,7 @@ export default { return [] } - return await this.HTTP_GET('/datasource/map', { + return await this.HTTP_GET('learun/adms/datasource/map', { code, ver: '' }) @@ -218,7 +218,7 @@ export default { return '' } - return await this.HTTP_GET('/coderule/code', rulecode) + return await this.HTTP_GET('learun/adms/coderule/code', rulecode) }, // 拉取指定 id 的文件信息 @@ -227,7 +227,7 @@ export default { return null } - return await this.HTTP_GET('/annexes/wxfileinfo', fileId) + return await this.HTTP_GET('learun/adms/annexes/wxfileinfo', fileId) }, // 封装的 GET 请求,集成了验证信息 @@ -393,10 +393,10 @@ export default { // 目前包括了:公司、部门、人员、数据字典 async FETCH_CLIENTDATA() { await Promise.all([ - this.HTTP_GET('/company/map').then(res => this.SET_GLOBAL('company', res.data || {})), - this.HTTP_GET('/department/map').then(res => this.SET_GLOBAL('department', res.data || {})), - this.HTTP_GET('/user/map').then(res => this.SET_GLOBAL('user', res.data || {})), - this.HTTP_GET('/dataitem/map').then(res => this.SET_GLOBAL('dataDictionary', res.data || {})) + this.HTTP_GET('learun/adms/company/map').then(res => this.SET_GLOBAL('company', res.data || {})), + this.HTTP_GET('learun/adms/department/map').then(res => this.SET_GLOBAL('department', res.data || {})), + this.HTTP_GET('learun/adms/user/map').then(res => this.SET_GLOBAL('user', res.data || {})), + this.HTTP_GET('learun/adms/dataitem/map').then(res => this.SET_GLOBAL('dataDictionary', res.data || {})) ]) }, diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/learun-app/customlist-sidepage-datefilter.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/learun-app/customlist-sidepage-datefilter.vue index fdea8e1bb..d32ec0eba 100644 --- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/learun-app/customlist-sidepage-datefilter.vue +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/learun-app/customlist-sidepage-datefilter.vue @@ -76,6 +76,7 @@ @change="customChange" title="结束时间" placeholder="点击来选取" + /> diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/learun-app/organize-tree.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/learun-app/organize-tree.vue index 838165d5c..5ca7caacc 100644 --- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/learun-app/organize-tree.vue +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/learun-app/organize-tree.vue @@ -124,11 +124,21 @@ export default { // 加载子部门 if (this.level === 'department' || this.level === 'user') { - children = children.concat( - Object.entries(this.GET_GLOBAL('department')) - .filter(([id, item]) => item.companyId === this.root.id && Number(item.parentId) !== -1) - .map(([id, item]) => ({ ...item, id, type: 'department' })) - ) + console.log(this.level,'level') + if(this.root.type == 'company'){ + children = children.concat( + Object.entries(this.GET_GLOBAL('department')) + .filter(([id, item]) => item.companyId === this.root.id && (Number(item.parentId) == -1||Number(item.parentId) == 0)) + .map(([id, item]) => ({ ...item, id, type: 'department' })) + ) + } + else{ + children = children.concat( + Object.entries(this.GET_GLOBAL('department')) + .filter(([id, item]) => item.companyId === this.root.companyId && (item.parentId == this.root.id )) + .map(([id, item]) => ({ ...item, id, type: 'department' })) + ) + } } // 加载子职员 diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/learun-app/scroll-list.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/learun-app/scroll-list.vue index 250667e2d..f40958889 100644 --- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/learun-app/scroll-list.vue +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/learun-app/scroll-list.vue @@ -81,6 +81,6 @@ export default { diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/learun-app/workflow-action.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/learun-app/workflow-action.vue index f95837fd9..7b8c68d9e 100644 --- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/learun-app/workflow-action.vue +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/learun-app/workflow-action.vue @@ -38,7 +38,7 @@ @@ -95,7 +95,7 @@ export default { // 是否显示催办按钮(仅限我的任务,满足以下条件则可以催办:已开始、未结束、未作废) canUrge() { - if (this.openFrom !== 'my') { + if (this.openFrom !== 'my' || ['child', 'create', 'again','draft'].includes(this.type)) { return false } @@ -104,7 +104,7 @@ export default { // 是否显示撤销按钮(仅限我的任务,满足以下条件则可以撤销:未开始) canRevoke() { - if (this.openFrom !== 'my') { + if (this.openFrom !== 'my' || ['child', 'create', 'again','draft'].includes(this.type)) { return false } @@ -113,7 +113,7 @@ export default { // 是否允许加签(仅限待办任务,流程中配置允许加签则) canMultipleSign() { - if (this.openFrom !== 'pre') { + if (this.openFrom !== 'pre' || ['child', 'create', 'again','draft'].includes(this.type)) { return false } diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/learun-app/workflow-timeline.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/learun-app/workflow-timeline.vue index 8b8bc05ab..5e3d482d4 100644 --- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/learun-app/workflow-timeline.vue +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/learun-app/workflow-timeline.vue @@ -36,9 +36,11 @@ diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/learun-mpui/learun-ui-ali/date-picker.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/learun-mpui/learun-ui-ali/date-picker.vue index e24325735..b43fa6ddc 100644 --- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/learun-mpui/learun-ui-ali/date-picker.vue +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/learun-mpui/learun-ui-ali/date-picker.vue @@ -26,7 +26,9 @@ export default { required: {}, value: {} }, - +created() { + console.log(this.end) +}, methods: { click(e) { if (this.disabled) { diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/learun-mpui/learun-ui-ali/title.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/learun-mpui/learun-ui-ali/title.vue index 678f5f2f5..82d074ea4 100644 --- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/learun-mpui/learun-ui-ali/title.vue +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/learun-mpui/learun-ui-ali/title.vue @@ -1,5 +1,5 @@ + + + + diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/uni-calendar/calendar.js b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/uni-calendar/calendar.js new file mode 100644 index 000000000..b8d7d6fc4 --- /dev/null +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/uni-calendar/calendar.js @@ -0,0 +1,546 @@ +/** +* @1900-2100区间内的公历、农历互转 +* @charset UTF-8 +* @github https://github.com/jjonline/calendar.js +* @Author Jea杨(JJonline@JJonline.Cn) +* @Time 2014-7-21 +* @Time 2016-8-13 Fixed 2033hex、Attribution Annals +* @Time 2016-9-25 Fixed lunar LeapMonth Param Bug +* @Time 2017-7-24 Fixed use getTerm Func Param Error.use solar year,NOT lunar year +* @Version 1.0.3 +* @公历转农历:calendar.solar2lunar(1987,11,01); //[you can ignore params of prefix 0] +* @农历转公历:calendar.lunar2solar(1987,09,10); //[you can ignore params of prefix 0] +*/ +/* eslint-disable */ +var calendar = { + + /** + * 农历1900-2100的润大小信息表 + * @Array Of Property + * @return Hex + */ + lunarInfo: [0x04bd8, 0x04ae0, 0x0a570, 0x054d5, 0x0d260, 0x0d950, 0x16554, 0x056a0, 0x09ad0, 0x055d2, // 1900-1909 + 0x04ae0, 0x0a5b6, 0x0a4d0, 0x0d250, 0x1d255, 0x0b540, 0x0d6a0, 0x0ada2, 0x095b0, 0x14977, // 1910-1919 + 0x04970, 0x0a4b0, 0x0b4b5, 0x06a50, 0x06d40, 0x1ab54, 0x02b60, 0x09570, 0x052f2, 0x04970, // 1920-1929 + 0x06566, 0x0d4a0, 0x0ea50, 0x06e95, 0x05ad0, 0x02b60, 0x186e3, 0x092e0, 0x1c8d7, 0x0c950, // 1930-1939 + 0x0d4a0, 0x1d8a6, 0x0b550, 0x056a0, 0x1a5b4, 0x025d0, 0x092d0, 0x0d2b2, 0x0a950, 0x0b557, // 1940-1949 + 0x06ca0, 0x0b550, 0x15355, 0x04da0, 0x0a5b0, 0x14573, 0x052b0, 0x0a9a8, 0x0e950, 0x06aa0, // 1950-1959 + 0x0aea6, 0x0ab50, 0x04b60, 0x0aae4, 0x0a570, 0x05260, 0x0f263, 0x0d950, 0x05b57, 0x056a0, // 1960-1969 + 0x096d0, 0x04dd5, 0x04ad0, 0x0a4d0, 0x0d4d4, 0x0d250, 0x0d558, 0x0b540, 0x0b6a0, 0x195a6, // 1970-1979 + 0x095b0, 0x049b0, 0x0a974, 0x0a4b0, 0x0b27a, 0x06a50, 0x06d40, 0x0af46, 0x0ab60, 0x09570, // 1980-1989 + 0x04af5, 0x04970, 0x064b0, 0x074a3, 0x0ea50, 0x06b58, 0x05ac0, 0x0ab60, 0x096d5, 0x092e0, // 1990-1999 + 0x0c960, 0x0d954, 0x0d4a0, 0x0da50, 0x07552, 0x056a0, 0x0abb7, 0x025d0, 0x092d0, 0x0cab5, // 2000-2009 + 0x0a950, 0x0b4a0, 0x0baa4, 0x0ad50, 0x055d9, 0x04ba0, 0x0a5b0, 0x15176, 0x052b0, 0x0a930, // 2010-2019 + 0x07954, 0x06aa0, 0x0ad50, 0x05b52, 0x04b60, 0x0a6e6, 0x0a4e0, 0x0d260, 0x0ea65, 0x0d530, // 2020-2029 + 0x05aa0, 0x076a3, 0x096d0, 0x04afb, 0x04ad0, 0x0a4d0, 0x1d0b6, 0x0d250, 0x0d520, 0x0dd45, // 2030-2039 + 0x0b5a0, 0x056d0, 0x055b2, 0x049b0, 0x0a577, 0x0a4b0, 0x0aa50, 0x1b255, 0x06d20, 0x0ada0, // 2040-2049 + /** Add By JJonline@JJonline.Cn**/ + 0x14b63, 0x09370, 0x049f8, 0x04970, 0x064b0, 0x168a6, 0x0ea50, 0x06b20, 0x1a6c4, 0x0aae0, // 2050-2059 + 0x0a2e0, 0x0d2e3, 0x0c960, 0x0d557, 0x0d4a0, 0x0da50, 0x05d55, 0x056a0, 0x0a6d0, 0x055d4, // 2060-2069 + 0x052d0, 0x0a9b8, 0x0a950, 0x0b4a0, 0x0b6a6, 0x0ad50, 0x055a0, 0x0aba4, 0x0a5b0, 0x052b0, // 2070-2079 + 0x0b273, 0x06930, 0x07337, 0x06aa0, 0x0ad50, 0x14b55, 0x04b60, 0x0a570, 0x054e4, 0x0d160, // 2080-2089 + 0x0e968, 0x0d520, 0x0daa0, 0x16aa6, 0x056d0, 0x04ae0, 0x0a9d4, 0x0a2d0, 0x0d150, 0x0f252, // 2090-2099 + 0x0d520], // 2100 + + /** + * 公历每个月份的天数普通表 + * @Array Of Property + * @return Number + */ + solarMonth: [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31], + + /** + * 天干地支之天干速查表 + * @Array Of Property trans["甲","乙","丙","丁","戊","己","庚","辛","壬","癸"] + * @return Cn string + */ + Gan: ['\u7532', '\u4e59', '\u4e19', '\u4e01', '\u620a', '\u5df1', '\u5e9a', '\u8f9b', '\u58ec', '\u7678'], + + /** + * 天干地支之地支速查表 + * @Array Of Property + * @trans["子","丑","寅","卯","辰","巳","午","未","申","酉","戌","亥"] + * @return Cn string + */ + Zhi: ['\u5b50', '\u4e11', '\u5bc5', '\u536f', '\u8fb0', '\u5df3', '\u5348', '\u672a', '\u7533', '\u9149', '\u620c', '\u4ea5'], + + /** + * 天干地支之地支速查表<=>生肖 + * @Array Of Property + * @trans["鼠","牛","虎","兔","龙","蛇","马","羊","猴","鸡","狗","猪"] + * @return Cn string + */ + Animals: ['\u9f20', '\u725b', '\u864e', '\u5154', '\u9f99', '\u86c7', '\u9a6c', '\u7f8a', '\u7334', '\u9e21', '\u72d7', '\u732a'], + + /** + * 24节气速查表 + * @Array Of Property + * @trans["小寒","大寒","立春","雨水","惊蛰","春分","清明","谷雨","立夏","小满","芒种","夏至","小暑","大暑","立秋","处暑","白露","秋分","寒露","霜降","立冬","小雪","大雪","冬至"] + * @return Cn string + */ + solarTerm: ['\u5c0f\u5bd2', '\u5927\u5bd2', '\u7acb\u6625', '\u96e8\u6c34', '\u60ca\u86f0', '\u6625\u5206', '\u6e05\u660e', '\u8c37\u96e8', '\u7acb\u590f', '\u5c0f\u6ee1', '\u8292\u79cd', '\u590f\u81f3', '\u5c0f\u6691', '\u5927\u6691', '\u7acb\u79cb', '\u5904\u6691', '\u767d\u9732', '\u79cb\u5206', '\u5bd2\u9732', '\u971c\u964d', '\u7acb\u51ac', '\u5c0f\u96ea', '\u5927\u96ea', '\u51ac\u81f3'], + + /** + * 1900-2100各年的24节气日期速查表 + * @Array Of Property + * @return 0x string For splice + */ + sTermInfo: ['9778397bd097c36b0b6fc9274c91aa', '97b6b97bd19801ec9210c965cc920e', '97bcf97c3598082c95f8c965cc920f', + '97bd0b06bdb0722c965ce1cfcc920f', 'b027097bd097c36b0b6fc9274c91aa', '97b6b97bd19801ec9210c965cc920e', + '97bcf97c359801ec95f8c965cc920f', '97bd0b06bdb0722c965ce1cfcc920f', 'b027097bd097c36b0b6fc9274c91aa', + '97b6b97bd19801ec9210c965cc920e', '97bcf97c359801ec95f8c965cc920f', '97bd0b06bdb0722c965ce1cfcc920f', + 'b027097bd097c36b0b6fc9274c91aa', '9778397bd19801ec9210c965cc920e', '97b6b97bd19801ec95f8c965cc920f', + '97bd09801d98082c95f8e1cfcc920f', '97bd097bd097c36b0b6fc9210c8dc2', '9778397bd197c36c9210c9274c91aa', + '97b6b97bd19801ec95f8c965cc920e', '97bd09801d98082c95f8e1cfcc920f', '97bd097bd097c36b0b6fc9210c8dc2', + '9778397bd097c36c9210c9274c91aa', '97b6b97bd19801ec95f8c965cc920e', '97bcf97c3598082c95f8e1cfcc920f', + '97bd097bd097c36b0b6fc9210c8dc2', '9778397bd097c36c9210c9274c91aa', '97b6b97bd19801ec9210c965cc920e', + '97bcf97c3598082c95f8c965cc920f', '97bd097bd097c35b0b6fc920fb0722', '9778397bd097c36b0b6fc9274c91aa', + '97b6b97bd19801ec9210c965cc920e', '97bcf97c3598082c95f8c965cc920f', '97bd097bd097c35b0b6fc920fb0722', + '9778397bd097c36b0b6fc9274c91aa', '97b6b97bd19801ec9210c965cc920e', '97bcf97c359801ec95f8c965cc920f', + '97bd097bd097c35b0b6fc920fb0722', '9778397bd097c36b0b6fc9274c91aa', '97b6b97bd19801ec9210c965cc920e', + '97bcf97c359801ec95f8c965cc920f', '97bd097bd097c35b0b6fc920fb0722', '9778397bd097c36b0b6fc9274c91aa', + '97b6b97bd19801ec9210c965cc920e', '97bcf97c359801ec95f8c965cc920f', '97bd097bd07f595b0b6fc920fb0722', + '9778397bd097c36b0b6fc9210c8dc2', '9778397bd19801ec9210c9274c920e', '97b6b97bd19801ec95f8c965cc920f', + '97bd07f5307f595b0b0bc920fb0722', '7f0e397bd097c36b0b6fc9210c8dc2', '9778397bd097c36c9210c9274c920e', + '97b6b97bd19801ec95f8c965cc920f', '97bd07f5307f595b0b0bc920fb0722', '7f0e397bd097c36b0b6fc9210c8dc2', + '9778397bd097c36c9210c9274c91aa', '97b6b97bd19801ec9210c965cc920e', '97bd07f1487f595b0b0bc920fb0722', + '7f0e397bd097c36b0b6fc9210c8dc2', '9778397bd097c36b0b6fc9274c91aa', '97b6b97bd19801ec9210c965cc920e', + '97bcf7f1487f595b0b0bb0b6fb0722', '7f0e397bd097c35b0b6fc920fb0722', '9778397bd097c36b0b6fc9274c91aa', + '97b6b97bd19801ec9210c965cc920e', '97bcf7f1487f595b0b0bb0b6fb0722', '7f0e397bd097c35b0b6fc920fb0722', + '9778397bd097c36b0b6fc9274c91aa', '97b6b97bd19801ec9210c965cc920e', '97bcf7f1487f531b0b0bb0b6fb0722', + '7f0e397bd097c35b0b6fc920fb0722', '9778397bd097c36b0b6fc9274c91aa', '97b6b97bd19801ec9210c965cc920e', + '97bcf7f1487f531b0b0bb0b6fb0722', '7f0e397bd07f595b0b6fc920fb0722', '9778397bd097c36b0b6fc9274c91aa', + '97b6b97bd19801ec9210c9274c920e', '97bcf7f0e47f531b0b0bb0b6fb0722', '7f0e397bd07f595b0b0bc920fb0722', + '9778397bd097c36b0b6fc9210c91aa', '97b6b97bd197c36c9210c9274c920e', '97bcf7f0e47f531b0b0bb0b6fb0722', + '7f0e397bd07f595b0b0bc920fb0722', '9778397bd097c36b0b6fc9210c8dc2', '9778397bd097c36c9210c9274c920e', + '97b6b7f0e47f531b0723b0b6fb0722', '7f0e37f5307f595b0b0bc920fb0722', '7f0e397bd097c36b0b6fc9210c8dc2', + '9778397bd097c36b0b70c9274c91aa', '97b6b7f0e47f531b0723b0b6fb0721', '7f0e37f1487f595b0b0bb0b6fb0722', + '7f0e397bd097c35b0b6fc9210c8dc2', '9778397bd097c36b0b6fc9274c91aa', '97b6b7f0e47f531b0723b0b6fb0721', + '7f0e27f1487f595b0b0bb0b6fb0722', '7f0e397bd097c35b0b6fc920fb0722', '9778397bd097c36b0b6fc9274c91aa', + '97b6b7f0e47f531b0723b0b6fb0721', '7f0e27f1487f531b0b0bb0b6fb0722', '7f0e397bd097c35b0b6fc920fb0722', + '9778397bd097c36b0b6fc9274c91aa', '97b6b7f0e47f531b0723b0b6fb0721', '7f0e27f1487f531b0b0bb0b6fb0722', + '7f0e397bd097c35b0b6fc920fb0722', '9778397bd097c36b0b6fc9274c91aa', '97b6b7f0e47f531b0723b0b6fb0721', + '7f0e27f1487f531b0b0bb0b6fb0722', '7f0e397bd07f595b0b0bc920fb0722', '9778397bd097c36b0b6fc9274c91aa', + '97b6b7f0e47f531b0723b0787b0721', '7f0e27f0e47f531b0b0bb0b6fb0722', '7f0e397bd07f595b0b0bc920fb0722', + '9778397bd097c36b0b6fc9210c91aa', '97b6b7f0e47f149b0723b0787b0721', '7f0e27f0e47f531b0723b0b6fb0722', + '7f0e397bd07f595b0b0bc920fb0722', '9778397bd097c36b0b6fc9210c8dc2', '977837f0e37f149b0723b0787b0721', + '7f07e7f0e47f531b0723b0b6fb0722', '7f0e37f5307f595b0b0bc920fb0722', '7f0e397bd097c35b0b6fc9210c8dc2', + '977837f0e37f14998082b0787b0721', '7f07e7f0e47f531b0723b0b6fb0721', '7f0e37f1487f595b0b0bb0b6fb0722', + '7f0e397bd097c35b0b6fc9210c8dc2', '977837f0e37f14998082b0787b06bd', '7f07e7f0e47f531b0723b0b6fb0721', + '7f0e27f1487f531b0b0bb0b6fb0722', '7f0e397bd097c35b0b6fc920fb0722', '977837f0e37f14998082b0787b06bd', + '7f07e7f0e47f531b0723b0b6fb0721', '7f0e27f1487f531b0b0bb0b6fb0722', '7f0e397bd097c35b0b6fc920fb0722', + '977837f0e37f14998082b0787b06bd', '7f07e7f0e47f531b0723b0b6fb0721', '7f0e27f1487f531b0b0bb0b6fb0722', + '7f0e397bd07f595b0b0bc920fb0722', '977837f0e37f14998082b0787b06bd', '7f07e7f0e47f531b0723b0b6fb0721', + '7f0e27f1487f531b0b0bb0b6fb0722', '7f0e397bd07f595b0b0bc920fb0722', '977837f0e37f14998082b0787b06bd', + '7f07e7f0e47f149b0723b0787b0721', '7f0e27f0e47f531b0b0bb0b6fb0722', '7f0e397bd07f595b0b0bc920fb0722', + '977837f0e37f14998082b0723b06bd', '7f07e7f0e37f149b0723b0787b0721', '7f0e27f0e47f531b0723b0b6fb0722', + '7f0e397bd07f595b0b0bc920fb0722', '977837f0e37f14898082b0723b02d5', '7ec967f0e37f14998082b0787b0721', + '7f07e7f0e47f531b0723b0b6fb0722', '7f0e37f1487f595b0b0bb0b6fb0722', '7f0e37f0e37f14898082b0723b02d5', + '7ec967f0e37f14998082b0787b0721', '7f07e7f0e47f531b0723b0b6fb0722', '7f0e37f1487f531b0b0bb0b6fb0722', + '7f0e37f0e37f14898082b0723b02d5', '7ec967f0e37f14998082b0787b06bd', '7f07e7f0e47f531b0723b0b6fb0721', + '7f0e37f1487f531b0b0bb0b6fb0722', '7f0e37f0e37f14898082b072297c35', '7ec967f0e37f14998082b0787b06bd', + '7f07e7f0e47f531b0723b0b6fb0721', '7f0e27f1487f531b0b0bb0b6fb0722', '7f0e37f0e37f14898082b072297c35', + '7ec967f0e37f14998082b0787b06bd', '7f07e7f0e47f531b0723b0b6fb0721', '7f0e27f1487f531b0b0bb0b6fb0722', + '7f0e37f0e366aa89801eb072297c35', '7ec967f0e37f14998082b0787b06bd', '7f07e7f0e47f149b0723b0787b0721', + '7f0e27f1487f531b0b0bb0b6fb0722', '7f0e37f0e366aa89801eb072297c35', '7ec967f0e37f14998082b0723b06bd', + '7f07e7f0e47f149b0723b0787b0721', '7f0e27f0e47f531b0723b0b6fb0722', '7f0e37f0e366aa89801eb072297c35', + '7ec967f0e37f14998082b0723b06bd', '7f07e7f0e37f14998083b0787b0721', '7f0e27f0e47f531b0723b0b6fb0722', + '7f0e37f0e366aa89801eb072297c35', '7ec967f0e37f14898082b0723b02d5', '7f07e7f0e37f14998082b0787b0721', + '7f07e7f0e47f531b0723b0b6fb0722', '7f0e36665b66aa89801e9808297c35', '665f67f0e37f14898082b0723b02d5', + '7ec967f0e37f14998082b0787b0721', '7f07e7f0e47f531b0723b0b6fb0722', '7f0e36665b66a449801e9808297c35', + '665f67f0e37f14898082b0723b02d5', '7ec967f0e37f14998082b0787b06bd', '7f07e7f0e47f531b0723b0b6fb0721', + '7f0e36665b66a449801e9808297c35', '665f67f0e37f14898082b072297c35', '7ec967f0e37f14998082b0787b06bd', + '7f07e7f0e47f531b0723b0b6fb0721', '7f0e26665b66a449801e9808297c35', '665f67f0e37f1489801eb072297c35', + '7ec967f0e37f14998082b0787b06bd', '7f07e7f0e47f531b0723b0b6fb0721', '7f0e27f1487f531b0b0bb0b6fb0722'], + + /** + * 数字转中文速查表 + * @Array Of Property + * @trans ['日','一','二','三','四','五','六','七','八','九','十'] + * @return Cn string + */ + nStr1: ['\u65e5', '\u4e00', '\u4e8c', '\u4e09', '\u56db', '\u4e94', '\u516d', '\u4e03', '\u516b', '\u4e5d', '\u5341'], + + /** + * 日期转农历称呼速查表 + * @Array Of Property + * @trans ['初','十','廿','卅'] + * @return Cn string + */ + nStr2: ['\u521d', '\u5341', '\u5eff', '\u5345'], + + /** + * 月份转农历称呼速查表 + * @Array Of Property + * @trans ['正','一','二','三','四','五','六','七','八','九','十','冬','腊'] + * @return Cn string + */ + nStr3: ['\u6b63', '\u4e8c', '\u4e09', '\u56db', '\u4e94', '\u516d', '\u4e03', '\u516b', '\u4e5d', '\u5341', '\u51ac', '\u814a'], + + /** + * 返回农历y年一整年的总天数 + * @param lunar Year + * @return Number + * @eg:var count = calendar.lYearDays(1987) ;//count=387 + */ + lYearDays: function (y) { + var i; var sum = 348 + for (i = 0x8000; i > 0x8; i >>= 1) { sum += (this.lunarInfo[y - 1900] & i) ? 1 : 0 } + return (sum + this.leapDays(y)) + }, + + /** + * 返回农历y年闰月是哪个月;若y年没有闰月 则返回0 + * @param lunar Year + * @return Number (0-12) + * @eg:var leapMonth = calendar.leapMonth(1987) ;//leapMonth=6 + */ + leapMonth: function (y) { // 闰字编码 \u95f0 + return (this.lunarInfo[y - 1900] & 0xf) + }, + + /** + * 返回农历y年闰月的天数 若该年没有闰月则返回0 + * @param lunar Year + * @return Number (0、29、30) + * @eg:var leapMonthDay = calendar.leapDays(1987) ;//leapMonthDay=29 + */ + leapDays: function (y) { + if (this.leapMonth(y)) { + return ((this.lunarInfo[y - 1900] & 0x10000) ? 30 : 29) + } + return (0) + }, + + /** + * 返回农历y年m月(非闰月)的总天数,计算m为闰月时的天数请使用leapDays方法 + * @param lunar Year + * @return Number (-1、29、30) + * @eg:var MonthDay = calendar.monthDays(1987,9) ;//MonthDay=29 + */ + monthDays: function (y, m) { + if (m > 12 || m < 1) { return -1 }// 月份参数从1至12,参数错误返回-1 + return ((this.lunarInfo[y - 1900] & (0x10000 >> m)) ? 30 : 29) + }, + + /** + * 返回公历(!)y年m月的天数 + * @param solar Year + * @return Number (-1、28、29、30、31) + * @eg:var solarMonthDay = calendar.leapDays(1987) ;//solarMonthDay=30 + */ + solarDays: function (y, m) { + if (m > 12 || m < 1) { return -1 } // 若参数错误 返回-1 + var ms = m - 1 + if (ms == 1) { // 2月份的闰平规律测算后确认返回28或29 + return (((y % 4 == 0) && (y % 100 != 0) || (y % 400 == 0)) ? 29 : 28) + } else { + return (this.solarMonth[ms]) + } + }, + + /** + * 农历年份转换为干支纪年 + * @param lYear 农历年的年份数 + * @return Cn string + */ + toGanZhiYear: function (lYear) { + var ganKey = (lYear - 3) % 10 + var zhiKey = (lYear - 3) % 12 + if (ganKey == 0) ganKey = 10// 如果余数为0则为最后一个天干 + if (zhiKey == 0) zhiKey = 12// 如果余数为0则为最后一个地支 + return this.Gan[ganKey - 1] + this.Zhi[zhiKey - 1] + }, + + /** + * 公历月、日判断所属星座 + * @param cMonth [description] + * @param cDay [description] + * @return Cn string + */ + toAstro: function (cMonth, cDay) { + var s = '\u9b54\u7faf\u6c34\u74f6\u53cc\u9c7c\u767d\u7f8a\u91d1\u725b\u53cc\u5b50\u5de8\u87f9\u72ee\u5b50\u5904\u5973\u5929\u79e4\u5929\u874e\u5c04\u624b\u9b54\u7faf' + var arr = [20, 19, 21, 21, 21, 22, 23, 23, 23, 23, 22, 22] + return s.substr(cMonth * 2 - (cDay < arr[cMonth - 1] ? 2 : 0), 2) + '\u5ea7'// 座 + }, + + /** + * 传入offset偏移量返回干支 + * @param offset 相对甲子的偏移量 + * @return Cn string + */ + toGanZhi: function (offset) { + return this.Gan[offset % 10] + this.Zhi[offset % 12] + }, + + /** + * 传入公历(!)y年获得该年第n个节气的公历日期 + * @param y公历年(1900-2100);n二十四节气中的第几个节气(1~24);从n=1(小寒)算起 + * @return day Number + * @eg:var _24 = calendar.getTerm(1987,3) ;//_24=4;意即1987年2月4日立春 + */ + getTerm: function (y, n) { + if (y < 1900 || y > 2100) { return -1 } + if (n < 1 || n > 24) { return -1 } + var _table = this.sTermInfo[y - 1900] + var _info = [ + parseInt('0x' + _table.substr(0, 5)).toString(), + parseInt('0x' + _table.substr(5, 5)).toString(), + parseInt('0x' + _table.substr(10, 5)).toString(), + parseInt('0x' + _table.substr(15, 5)).toString(), + parseInt('0x' + _table.substr(20, 5)).toString(), + parseInt('0x' + _table.substr(25, 5)).toString() + ] + var _calday = [ + _info[0].substr(0, 1), + _info[0].substr(1, 2), + _info[0].substr(3, 1), + _info[0].substr(4, 2), + + _info[1].substr(0, 1), + _info[1].substr(1, 2), + _info[1].substr(3, 1), + _info[1].substr(4, 2), + + _info[2].substr(0, 1), + _info[2].substr(1, 2), + _info[2].substr(3, 1), + _info[2].substr(4, 2), + + _info[3].substr(0, 1), + _info[3].substr(1, 2), + _info[3].substr(3, 1), + _info[3].substr(4, 2), + + _info[4].substr(0, 1), + _info[4].substr(1, 2), + _info[4].substr(3, 1), + _info[4].substr(4, 2), + + _info[5].substr(0, 1), + _info[5].substr(1, 2), + _info[5].substr(3, 1), + _info[5].substr(4, 2) + ] + return parseInt(_calday[n - 1]) + }, + + /** + * 传入农历数字月份返回汉语通俗表示法 + * @param lunar month + * @return Cn string + * @eg:var cnMonth = calendar.toChinaMonth(12) ;//cnMonth='腊月' + */ + toChinaMonth: function (m) { // 月 => \u6708 + if (m > 12 || m < 1) { return -1 } // 若参数错误 返回-1 + var s = this.nStr3[m - 1] + s += '\u6708'// 加上月字 + return s + }, + + /** + * 传入农历日期数字返回汉字表示法 + * @param lunar day + * @return Cn string + * @eg:var cnDay = calendar.toChinaDay(21) ;//cnMonth='廿一' + */ + toChinaDay: function (d) { // 日 => \u65e5 + var s + switch (d) { + case 10: + s = '\u521d\u5341'; break + case 20: + s = '\u4e8c\u5341'; break + break + case 30: + s = '\u4e09\u5341'; break + break + default : + s = this.nStr2[Math.floor(d / 10)] + s += this.nStr1[d % 10] + } + return (s) + }, + + /** + * 年份转生肖[!仅能大致转换] => 精确划分生肖分界线是“立春” + * @param y year + * @return Cn string + * @eg:var animal = calendar.getAnimal(1987) ;//animal='兔' + */ + getAnimal: function (y) { + return this.Animals[(y - 4) % 12] + }, + + /** + * 传入阳历年月日获得详细的公历、农历object信息 <=>JSON + * @param y solar year + * @param m solar month + * @param d solar day + * @return JSON object + * @eg:console.log(calendar.solar2lunar(1987,11,01)); + */ + solar2lunar: function (y, m, d) { // 参数区间1900.1.31~2100.12.31 + // 年份限定、上限 + if (y < 1900 || y > 2100) { + return -1// undefined转换为数字变为NaN + } + // 公历传参最下限 + if (y == 1900 && m == 1 && d < 31) { + return -1 + } + // 未传参 获得当天 + if (!y) { + var objDate = new Date() + } else { + var objDate = new Date(y, parseInt(m) - 1, d) + } + var i; var leap = 0; var temp = 0 + // 修正ymd参数 + var y = objDate.getFullYear() + var m = objDate.getMonth() + 1 + var d = objDate.getDate() + var offset = (Date.UTC(objDate.getFullYear(), objDate.getMonth(), objDate.getDate()) - Date.UTC(1900, 0, 31)) / 86400000 + for (i = 1900; i < 2101 && offset > 0; i++) { + temp = this.lYearDays(i) + offset -= temp + } + if (offset < 0) { + offset += temp; i-- + } + + // 是否今天 + var isTodayObj = new Date() + var isToday = false + if (isTodayObj.getFullYear() == y && isTodayObj.getMonth() + 1 == m && isTodayObj.getDate() == d) { + isToday = true + } + // 星期几 + var nWeek = objDate.getDay() + var cWeek = this.nStr1[nWeek] + // 数字表示周几顺应天朝周一开始的惯例 + if (nWeek == 0) { + nWeek = 7 + } + // 农历年 + var year = i + var leap = this.leapMonth(i) // 闰哪个月 + var isLeap = false + + // 效验闰月 + for (i = 1; i < 13 && offset > 0; i++) { + // 闰月 + if (leap > 0 && i == (leap + 1) && isLeap == false) { + --i + isLeap = true; temp = this.leapDays(year) // 计算农历闰月天数 + } else { + temp = this.monthDays(year, i)// 计算农历普通月天数 + } + // 解除闰月 + if (isLeap == true && i == (leap + 1)) { isLeap = false } + offset -= temp + } + // 闰月导致数组下标重叠取反 + if (offset == 0 && leap > 0 && i == leap + 1) { + if (isLeap) { + isLeap = false + } else { + isLeap = true; --i + } + } + if (offset < 0) { + offset += temp; --i + } + // 农历月 + var month = i + // 农历日 + var day = offset + 1 + // 天干地支处理 + var sm = m - 1 + var gzY = this.toGanZhiYear(year) + + // 当月的两个节气 + // bugfix-2017-7-24 11:03:38 use lunar Year Param `y` Not `year` + var firstNode = this.getTerm(y, (m * 2 - 1))// 返回当月「节」为几日开始 + var secondNode = this.getTerm(y, (m * 2))// 返回当月「节」为几日开始 + + // 依据12节气修正干支月 + var gzM = this.toGanZhi((y - 1900) * 12 + m + 11) + if (d >= firstNode) { + gzM = this.toGanZhi((y - 1900) * 12 + m + 12) + } + + // 传入的日期的节气与否 + var isTerm = false + var Term = null + if (firstNode == d) { + isTerm = true + Term = this.solarTerm[m * 2 - 2] + } + if (secondNode == d) { + isTerm = true + Term = this.solarTerm[m * 2 - 1] + } + // 日柱 当月一日与 1900/1/1 相差天数 + var dayCyclical = Date.UTC(y, sm, 1, 0, 0, 0, 0) / 86400000 + 25567 + 10 + var gzD = this.toGanZhi(dayCyclical + d - 1) + // 该日期所属的星座 + var astro = this.toAstro(m, d) + + return { 'lYear': year, 'lMonth': month, 'lDay': day, 'Animal': this.getAnimal(year), 'IMonthCn': (isLeap ? '\u95f0' : '') + this.toChinaMonth(month), 'IDayCn': this.toChinaDay(day), 'cYear': y, 'cMonth': m, 'cDay': d, 'gzYear': gzY, 'gzMonth': gzM, 'gzDay': gzD, 'isToday': isToday, 'isLeap': isLeap, 'nWeek': nWeek, 'ncWeek': '\u661f\u671f' + cWeek, 'isTerm': isTerm, 'Term': Term, 'astro': astro } + }, + + /** + * 传入农历年月日以及传入的月份是否闰月获得详细的公历、农历object信息 <=>JSON + * @param y lunar year + * @param m lunar month + * @param d lunar day + * @param isLeapMonth lunar month is leap or not.[如果是农历闰月第四个参数赋值true即可] + * @return JSON object + * @eg:console.log(calendar.lunar2solar(1987,9,10)); + */ + lunar2solar: function (y, m, d, isLeapMonth) { // 参数区间1900.1.31~2100.12.1 + var isLeapMonth = !!isLeapMonth + var leapOffset = 0 + var leapMonth = this.leapMonth(y) + var leapDay = this.leapDays(y) + if (isLeapMonth && (leapMonth != m)) { return -1 }// 传参要求计算该闰月公历 但该年得出的闰月与传参的月份并不同 + if (y == 2100 && m == 12 && d > 1 || y == 1900 && m == 1 && d < 31) { return -1 }// 超出了最大极限值 + var day = this.monthDays(y, m) + var _day = day + // bugFix 2016-9-25 + // if month is leap, _day use leapDays method + if (isLeapMonth) { + _day = this.leapDays(y, m) + } + if (y < 1900 || y > 2100 || d > _day) { return -1 }// 参数合法性效验 + + // 计算农历的时间差 + var offset = 0 + for (var i = 1900; i < y; i++) { + offset += this.lYearDays(i) + } + var leap = 0; var isAdd = false + for (var i = 1; i < m; i++) { + leap = this.leapMonth(y) + if (!isAdd) { // 处理闰月 + if (leap <= i && leap > 0) { + offset += this.leapDays(y); isAdd = true + } + } + offset += this.monthDays(y, i) + } + // 转换闰月农历 需补充该年闰月的前一个月的时差 + if (isLeapMonth) { offset += day } + // 1900年农历正月一日的公历时间为1900年1月30日0时0分0秒(该时间也是本农历的最开始起始点) + var stmap = Date.UTC(1900, 1, 30, 0, 0, 0) + var calObj = new Date((offset + d - 31) * 86400000 + stmap) + var cY = calObj.getUTCFullYear() + var cM = calObj.getUTCMonth() + 1 + var cD = calObj.getUTCDate() + + return this.solar2lunar(cY, cM, cD) + } +} + +export default calendar diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/uni-calendar/uni-calendar-item.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/uni-calendar/uni-calendar-item.vue new file mode 100644 index 000000000..c66a58d31 --- /dev/null +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/uni-calendar/uni-calendar-item.vue @@ -0,0 +1,170 @@ + + + + + diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/uni-calendar/uni-calendar.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/uni-calendar/uni-calendar.vue new file mode 100644 index 000000000..405832050 --- /dev/null +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/uni-calendar/uni-calendar.vue @@ -0,0 +1,505 @@ + + + + + diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/uni-calendar/util.js b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/uni-calendar/util.js new file mode 100644 index 000000000..37f44321e --- /dev/null +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/uni-calendar/util.js @@ -0,0 +1,352 @@ +import CALENDAR from './calendar.js' + +class Calendar { + constructor({ + date, + selected, + startDate, + endDate, + range + } = {}) { + // 当前日期 + this.date = this.getDate(new Date()) // 当前初入日期 + // 打点信息 + this.selected = selected || []; + // 范围开始 + this.startDate = startDate + // 范围结束 + this.endDate = endDate + this.range = range + // 多选状态 + this.cleanMultipleStatus() + // 每周日期 + this.weeks = {} + // this._getWeek(this.date.fullDate) + } + /** + * 设置日期 + * @param {Object} date + */ + setDate(date) { + this.selectDate = this.getDate(date) + this._getWeek(this.selectDate.fullDate) + } + + /** + * 清理多选状态 + */ + cleanMultipleStatus() { + this.multipleStatus = { + before: '', + after: '', + data: [] + } + } + + /** + * 重置开始日期 + */ + resetSatrtDate(startDate) { + // 范围开始 + this.startDate = startDate + + } + + /** + * 重置结束日期 + */ + resetEndDate(endDate) { + // 范围结束 + this.endDate = endDate + } + + /** + * 获取任意时间 + */ + getDate(date, AddDayCount = 0, str = 'day') { + if (!date) { + date = new Date() + } + if (typeof date !== 'object') { + date = date.replace(/-/g, '/') + } + const dd = new Date(date) + switch (str) { + case 'day': + dd.setDate(dd.getDate() + AddDayCount) // 获取AddDayCount天后的日期 + break + case 'month': + if (dd.getDate() === 31) { + dd.setDate(dd.getDate() + AddDayCount) + } else { + dd.setMonth(dd.getMonth() + AddDayCount) // 获取AddDayCount天后的日期 + } + break + case 'year': + dd.setFullYear(dd.getFullYear() + AddDayCount) // 获取AddDayCount天后的日期 + break + } + const y = dd.getFullYear() + const m = dd.getMonth() + 1 < 10 ? '0' + (dd.getMonth() + 1) : dd.getMonth() + 1 // 获取当前月份的日期,不足10补0 + const d = dd.getDate() < 10 ? '0' + dd.getDate() : dd.getDate() // 获取当前几号,不足10补0 + return { + fullDate: y + '-' + m + '-' + d, + year: y, + month: m, + date: d, + day: dd.getDay() + } + } + + + /** + * 获取上月剩余天数 + */ + _getLastMonthDays(firstDay, full) { + let dateArr = [] + for (let i = firstDay; i > 0; i--) { + const beforeDate = new Date(full.year, full.month - 1, -i + 1).getDate() + dateArr.push({ + date: beforeDate, + month: full.month - 1, + lunar: this.getlunar(full.year, full.month - 1, beforeDate), + disable: true + }) + } + return dateArr + } + /** + * 获取本月天数 + */ + _currentMonthDys(dateData, full) { + let dateArr = [] + let fullDate = this.date.fullDate + for (let i = 1; i <= dateData; i++) { + let isinfo = false + let nowDate = full.year + '-' + (full.month < 10 ? + full.month : full.month) + '-' + (i < 10 ? + '0' + i : i) + // 是否今天 + let isDay = fullDate === nowDate + // 获取打点信息 + let info = this.selected && this.selected.find((item) => { + if (this.dateEqual(nowDate, item.date)) { + return item + } + }) + + // 日期禁用 + let disableBefore = true + let disableAfter = true + if (this.startDate) { + let dateCompBefore = this.dateCompare(this.startDate, fullDate) + disableBefore = this.dateCompare(dateCompBefore ? this.startDate : fullDate, nowDate) + } + + if (this.endDate) { + let dateCompAfter = this.dateCompare(fullDate, this.endDate) + disableAfter = this.dateCompare(nowDate, dateCompAfter ? this.endDate : fullDate) + } + let multiples = this.multipleStatus.data + let checked = false + let multiplesStatus = -1 + if (this.range) { + if (multiples) { + multiplesStatus = multiples.findIndex((item) => { + return this.dateEqual(item, nowDate) + }) + } + if (multiplesStatus !== -1) { + checked = true + } + } + let data = { + fullDate: nowDate, + year: full.year, + date: i, + multiple: this.range ? checked : false, + beforeMultiple: this.dateEqual(this.multipleStatus.before, nowDate), + afterMultiple: this.dateEqual(this.multipleStatus.after, nowDate), + month: full.month, + lunar: this.getlunar(full.year, full.month, i), + disable: !disableBefore || !disableAfter, + isDay + } + if (info) { + data.extraInfo = info + } + + dateArr.push(data) + } + return dateArr + } + /** + * 获取下月天数 + */ + _getNextMonthDays(surplus, full) { + let dateArr = [] + for (let i = 1; i < surplus + 1; i++) { + dateArr.push({ + date: i, + month: Number(full.month) + 1, + lunar: this.getlunar(full.year, Number(full.month) + 1, i), + disable: true + }) + } + return dateArr + } + + /** + * 获取当前日期详情 + * @param {Object} date + */ + getInfo(date) { + if (!date) { + date = new Date() + } + const dateInfo = this.canlender.find(item => item.fullDate === this.getDate(date).fullDate) + return dateInfo + } + + /** + * 比较时间大小 + */ + dateCompare(startDate, endDate) { + // 计算截止时间 + startDate = new Date(startDate.replace('-', '/').replace('-', '/')) + // 计算详细项的截止时间 + endDate = new Date(endDate.replace('-', '/').replace('-', '/')) + if (startDate <= endDate) { + return true + } else { + return false + } + } + + /** + * 比较时间是否相等 + */ + dateEqual(before, after) { + // 计算截止时间 + before = new Date(before.replace('-', '/').replace('-', '/')) + // 计算详细项的截止时间 + after = new Date(after.replace('-', '/').replace('-', '/')) + if (before.getTime() - after.getTime() === 0) { + return true + } else { + return false + } + } + + + /** + * 获取日期范围内所有日期 + * @param {Object} begin + * @param {Object} end + */ + geDateAll(begin, end) { + var arr = [] + var ab = begin.split('-') + var ae = end.split('-') + var db = new Date() + db.setFullYear(ab[0], ab[1] - 1, ab[2]) + var de = new Date() + de.setFullYear(ae[0], ae[1] - 1, ae[2]) + var unixDb = db.getTime() - 24 * 60 * 60 * 1000 + var unixDe = de.getTime() - 24 * 60 * 60 * 1000 + for (var k = unixDb; k <= unixDe;) { + k = k + 24 * 60 * 60 * 1000 + arr.push(this.getDate(new Date(parseInt(k))).fullDate) + } + return arr + } + /** + * 计算阴历日期显示 + */ + getlunar(year, month, date) { + return CALENDAR.solar2lunar(year, month, date) + } + /** + * 设置打点 + */ + setSelectInfo(data, value) { + this.selected = value + this._getWeek(data) + } + + /** + * 获取多选状态 + */ + setMultiple(fullDate) { + let { + before, + after + } = this.multipleStatus + + if (!this.range) return + if (before && after) { + this.multipleStatus.before = '' + this.multipleStatus.after = '' + this.multipleStatus.data = [] + } else { + if (!before) { + this.multipleStatus.before = fullDate + } else { + this.multipleStatus.after = fullDate + if (this.dateCompare(this.multipleStatus.before, this.multipleStatus.after)) { + this.multipleStatus.data = this.geDateAll(this.multipleStatus.before, this.multipleStatus.after); + } else { + this.multipleStatus.data = this.geDateAll(this.multipleStatus.after, this.multipleStatus.before); + } + } + } + this._getWeek(fullDate) + } + + /** + * 获取每周数据 + * @param {Object} dateData + */ + _getWeek(dateData) { + const { + fullDate, + year, + month, + date, + day + } = this.getDate(dateData) + let firstDay = new Date(year, month - 1, 1).getDay() + let currentDay = new Date(year, month, 0).getDate() + let dates = { + lastMonthDays: this._getLastMonthDays(firstDay, this.getDate(dateData)), // 上个月末尾几天 + currentMonthDys: this._currentMonthDys(currentDay, this.getDate(dateData)), // 本月天数 + nextMonthDays: [], // 下个月开始几天 + weeks: [] + } + let canlender = [] + const surplus = 42 - (dates.lastMonthDays.length + dates.currentMonthDys.length) + dates.nextMonthDays = this._getNextMonthDays(surplus, this.getDate(dateData)) + canlender = canlender.concat(dates.lastMonthDays, dates.currentMonthDys, dates.nextMonthDays) + let weeks = {} + // 拼接数组 上个月开始几天 + 本月天数+ 下个月开始几天 + for (let i = 0; i < canlender.length; i++) { + if (i % 7 === 0) { + weeks[parseInt(i / 7)] = new Array(7) + } + weeks[parseInt(i / 7)][i % 7] = canlender[i] + } + this.canlender = canlender + this.weeks = weeks + } + + //静态方法 + // static init(date) { + // if (!this.instance) { + // this.instance = new Calendar(date); + // } + // return this.instance; + // } +} + + +export default Calendar diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/xuan-linkAddress/api.js b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/xuan-linkAddress/api.js new file mode 100644 index 000000000..9eb1dcae5 --- /dev/null +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/xuan-linkAddress/api.js @@ -0,0 +1,11 @@ +import Request from "@/static/xuan-linkAddress/request.js" +//创建Request对象 +let request=new Request(); + +export default{ + //data 参数值 + get_linkAddress_api:function(data){ + console.log(data); + return request.http('/api/address/area',data,'GET'); + } +} diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/xuan-linkAddress/xuan-linkAddress.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/xuan-linkAddress/xuan-linkAddress.vue new file mode 100644 index 000000000..b7b4576db --- /dev/null +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/components/xuan-linkAddress/xuan-linkAddress.vue @@ -0,0 +1,408 @@ + + + + + diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/main.js b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/main.js index 84bd8923d..d2881dae9 100644 --- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/main.js +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/main.js @@ -5,6 +5,8 @@ import store from '@/common/store.js' import mixins from '@/common/mixins.js' import '@/components/learun-mpui' +// import '@/common/css/common.less'; + moment.locale('zh-cn') Vue.mixin(mixins) diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/manifest.json b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/manifest.json index 5d59763e8..29bada559 100644 --- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/manifest.json +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/manifest.json @@ -172,13 +172,14 @@ "mode" : "hash", "base" : "" }, - "title" : "力软敏捷开发框架", + "title" : "数字化智慧校园", "template" : "index.html", "optimization" : { "treeShaking" : { "enable" : false } - } + }, + "domain" : "testapp.bjquanjiang.com" }, "mp-qq" : { "uniStatistics" : { diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages.json b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages.json index 199fa4d71..7d4284706 100644 --- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages.json +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages.json @@ -358,15 +358,16 @@ }, // 考勤记录 { - "path": "pages/LogisticsManagement/ADR_Record/list", + "path": "pages/ADRRecord/list", "style": { - "navigationBarTitleText": "考勤里列表" + "navigationBarTitleText": "考勤记录" } }, + // 考勤打卡 { - "path": "pages/LogisticsManagement/ADR_Record/single", + "path": "pages/AttendanceCard/list", "style": { - "navigationBarTitleText": "考勤详情" + "navigationBarTitleText": "考勤打卡" } }, //班级自诊打卡 diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/ADR_Record/list.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/ADRRecord/list.vue similarity index 79% rename from Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/ADR_Record/list.vue rename to Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/ADRRecord/list.vue index cf2f19074..810e39b77 100644 --- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/ADR_Record/list.vue +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/ADRRecord/list.vue @@ -3,7 +3,7 @@ - {{ tips }} + {{ tips }} @@ -12,22 +12,22 @@ - 文本框: - {{ displayListItem(item, 'ADDate') }} + 打卡时间: + {{ displayListItem(item, 'ClockTime') }} - 下拉框: - {{ displayListItem(item, 'ClockStatus') }} + 考勤类型: + {{ showADTypeFormat(item, 'ADType') }} - 日期框: - {{ displayListItem(item, 'ADTime') }} + 打卡结果: + {{ displayListItem(item, 'ClockStatus') }} - + @@ -71,7 +71,7 @@ - + @@ -105,22 +105,22 @@ export default { return { // 数据项的数据类型、结构 scheme: { - ADDate: { type: 'text' }, - ClockStatus: { type: 'select', itemCode: 'DbFieldType', dataSource: '0' }, - ADTime: { type: 'datetime', dateformat: '0' }, + ClockTime: { type: 'datetime' }, + ADType: { type: 'text' }, + ClockStatus: { type: 'select', itemCode: 'ADStatus', dataSource: '0' }, }, // 查询条件 searchData: {}, defaultQueryData: {}, queryData: { - ADDate: '', + ClockTime: '', ClockStatus: '', }, // 数据源 dataSource: { - ClockStatus: Object.values(this.GET_GLOBAL('dataDictionary').DbFieldType).map(t => ({ value: t.value, text: t.text })), + ClockStatus: Object.values(this.GET_GLOBAL('dataDictionary').ADStatus).map(t => ({ value: t.value, text: t.text })), }, // 时间查询参数 @@ -143,13 +143,13 @@ export default { await this.init() }, onUnload() { - this.OFF('LogisticsManagementADR_Record-list-change') + this.OFF('ADRRecord-list-change') }, methods: { // 页面初始化 async init() { - this.ON('LogisticsManagementADR_Record-list-change', this.refreshList) + this.ON('ADRRecord-list-change', this.refreshList) // 拉取加载列表和数据源 await Promise.all([ @@ -166,13 +166,16 @@ export default { // 拉取列表 async fetchList() { if (this.page > this.total) { return } + + let userInfo = this.GET_GLOBAL('loginUser'); + this.searchData.UserNo=userInfo.account; const result = await this.HTTP_GET( - '/LogisticsManagement/ADR_Record/pagelist', + 'learun/adms/attendance/getrecordpagelist', { // 这里 sidx 表示排序字段,sord 表示排序方式(DESC=降序,ASC=升序) // 代码生成器生成时默认按照主键排序,您可以修改成按创建时间的字段降序 - pagination: { rows: 10, page: this.page, sidx: 'ID', sord: 'DESC' }, + pagination: { rows: 10, page: this.page, sidx: 'ClockTime', sord: 'DESC' }, queryJson: JSON.stringify(this.searchData) }, '加载数据时出错' @@ -249,7 +252,7 @@ export default { return } - this.HTTP_POST('/LogisticsManagement/ADR_Record/delete', id, '删除失败').then(success => { + this.HTTP_POST('learun/adms/LogisticsManagement/ADR_Record/delete', id, '删除失败').then(success => { if(!success) { return } this.TOAST('删除成功', 'success') this.refreshList() @@ -283,11 +286,46 @@ export default { case 'datetime': if (!value) { return '' } - return moment(value).format(Number(fieldItem.dateformat) === 0 ? 'YYYY年 M月 D日' : 'YYYY-MM-DD HH:mm') + return moment(value).format(Number(fieldItem.dateformat) === 0 ? 'YYYY年 M月 D日' : 'YYYY-MM-DD HH:mm:ss') default: return value === null || value === undefined ? '' : value } - } + }, + + //显示考勤类型格式化 + showADTypeFormat(item,field){ + const ADType = item[field] + var type = ''; + if(ADType=='0'){ + type='未定义'; + }else if(ADType=='1') + { + type='上班'; + }else if(ADType=='2') + { + type='下班'; + }else if(ADType=='3') + { + type='开始休息'; + }else if(ADType=='4') + { + type='结束休息'; + }else if(ADType=='5') + { + type='开始加班'; + }else if(ADType=='6') + { + type='结束加班'; + }else if(ADType=='7') + { + type='中午上班'; + }else if(ADType=='8') + { + type='中午下班'; + } + return type; + + } } } diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/ADR_Record/single.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/ADRRecord/single.vue similarity index 94% rename from Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/ADR_Record/single.vue rename to Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/ADRRecord/single.vue index 552f99003..2b228cabf 100644 --- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/LogisticsManagement/ADR_Record/single.vue +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/ADRRecord/single.vue @@ -128,7 +128,7 @@ export default { if (this.mode === 'create') { this.origin = await this.getDefaultForm() } else { - const result = await this.HTTP_GET('/LogisticsManagement/ADR_Record/form', this.id) + const result = await this.HTTP_GET('learun/adms/LogisticsManagement/ADR_Record/form', this.id) this.origin = await this.formatFormData(result) } this.current = this.COPY(this.origin) @@ -160,7 +160,7 @@ export default { this.LOADING('正在提交...') const postData = await this.getPostData() - this.HTTP_POST('/LogisticsManagement/ADR_Record/save', postData, '表单提交保存失败').then(success => { + this.HTTP_POST('learun/adms/LogisticsManagement/ADR_Record/save', postData, '表单提交保存失败').then(success => { this.HIDE_LOADING() if (!success) { return @@ -178,7 +178,7 @@ export default { } this.LOADING('提交删除中...') - this.HTTP_POST('/LogisticsManagement/ADR_Record/delete', this.id, '删除失败').then(success => { + this.HTTP_POST('learun/adms/LogisticsManagement/ADR_Record/delete', this.id, '删除失败').then(success => { this.HIDE_LOADING() if (!success) { return diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/Ask/from.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/Ask/from.vue new file mode 100644 index 000000000..9559c654c --- /dev/null +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/Ask/from.vue @@ -0,0 +1,352 @@ + + + + + diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/Ask/list.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/Ask/list.vue new file mode 100644 index 000000000..a1bdf4795 --- /dev/null +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/Ask/list.vue @@ -0,0 +1,179 @@ + + + + + diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/AssetManagementSystem/Ass_InventoryResult/Ass_InventoryItemList/from.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/AssetManagementSystem/Ass_InventoryResult/Ass_InventoryItemList/from.vue new file mode 100644 index 000000000..9ba870f16 --- /dev/null +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/AssetManagementSystem/Ass_InventoryResult/Ass_InventoryItemList/from.vue @@ -0,0 +1,124 @@ + + + + + diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/AssetManagementSystem/Ass_InventoryResult/Ass_InventoryItemList/list.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/AssetManagementSystem/Ass_InventoryResult/Ass_InventoryItemList/list.vue new file mode 100644 index 000000000..124c1de3c --- /dev/null +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/AssetManagementSystem/Ass_InventoryResult/Ass_InventoryItemList/list.vue @@ -0,0 +1,267 @@ + + + + + diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/AssetManagementSystem/Ass_InventoryResult/Ass_InventoryList/list.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/AssetManagementSystem/Ass_InventoryResult/Ass_InventoryList/list.vue new file mode 100644 index 000000000..ecc8c2df2 --- /dev/null +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/AssetManagementSystem/Ass_InventoryResult/Ass_InventoryList/list.vue @@ -0,0 +1,180 @@ + + + + + diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/AttendanceCard/list.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/AttendanceCard/list.vue new file mode 100644 index 000000000..3532cab08 --- /dev/null +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/AttendanceCard/list.vue @@ -0,0 +1,191 @@ + + + + + + \ No newline at end of file diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/DemoLeaveForm.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/DemoLeaveForm.vue index a791db1f8..b49e40701 100644 --- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/DemoLeaveForm.vue +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/DemoLeaveForm.vue @@ -152,9 +152,9 @@ export default { async fetchForm() { // 此处处理旧版无外层表结构的表单格式 const formData = {} - formData.lr_demo_formleave = await this.HTTP_GET('/demo/wfsys/form', this.processId) + formData.lr_demo_formleave = await this.HTTP_GET('learun/adms/demo/wfsys/form', this.processId) // 原版: - // const formData = await this.HTTP_GET('/demo/wfsys/form', this.processId) + // const formData = await this.HTTP_GET('learun/adms/demo/wfsys/form', this.processId) if (['again', 'child', 'create'].includes(this.type)) { this.origin = await this.getDefaultForm() @@ -183,7 +183,7 @@ export default { } this.LOADING(`提交${actionText}中…`) - this.HTTP_POST(`/newwf${actionUrl}`, actionData, `提交${actionText}失败`).then(success => { + this.HTTP_POST(`learun/adms/newwf${actionUrl}`, actionData, `提交${actionText}失败`).then(success => { this.HIDE_LOADING() if (success) { this.EMIT('task-list-change') @@ -200,7 +200,7 @@ export default { this.LOADING('正在提交草稿…') const draftPostData = await this.getPostData(this.processId) - const pdSuccess = await this.HTTP_POST('/demo/wfsys/save', draftPostData, '提交表单失败') + const pdSuccess = await this.HTTP_POST('learun/adms/demo/wfsys/save', draftPostData, '提交表单失败') if (!pdSuccess) { return } @@ -210,7 +210,7 @@ export default { processId: this.processId, formreq: JSON.stringify({}) } - const draftSuccess = await this.HTTP_POST('/newwf/draft', draftWorkflowInfo, '提交草稿失败') + const draftSuccess = await this.HTTP_POST('learun/adms/newwf/draft', draftWorkflowInfo, '提交草稿失败') if (!draftSuccess) { return } @@ -235,7 +235,7 @@ export default { this.LOADING('正在提交…') const postKv = ['create'].includes(this.type) ? '' : this.processId const postData = await this.getPostData(postKv) - const pSuccess = await this.HTTP_POST('/demo/wfsys/save', postData, '表单提交失败') + const pSuccess = await this.HTTP_POST('learun/adms/demo/wfsys/save', postData, '表单提交失败') if (!pSuccess) { return } @@ -255,10 +255,10 @@ export default { workflowInfo.parentTaskId = this.currentTask.F_TaskId } const postUrl = { - create: '/newwf/create', - draft: '/newwf/draft', - again: '/newwf​/againcreate', - child: '/newwf/createchildflow' + create: 'learun/adms/newwf/create', + draft: 'learun/adms/newwf/draft', + again: 'learun/adms/newwf​/againcreate', + child: 'learun/adms/newwf/createchildflow' }[this.type] const success = await this.HTTP_POST(postUrl, workflowInfo, '流程提交失败') if (!success) { diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/EducationalAdministration/ArrangeLessonTermAttemper/list.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/EducationalAdministration/ArrangeLessonTermAttemper/list.vue index 9d243fd37..0b3e61278 100644 --- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/EducationalAdministration/ArrangeLessonTermAttemper/list.vue +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/EducationalAdministration/ArrangeLessonTermAttemper/list.vue @@ -1,475 +1,428 @@ - -   -   - -   -   - \ No newline at end of file + + + + + diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/EducationalAdministration/BookBorrow/list.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/EducationalAdministration/BookBorrow/list.vue index cb3537e4e..28be8e8ff 100644 --- a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/EducationalAdministration/BookBorrow/list.vue +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/EducationalAdministration/BookBorrow/list.vue @@ -1,303 +1,303 @@ -   -   + + -   -   + + diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/EducationalAdministration/OpenLessonPlanOfElectiveStudent/list.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/EducationalAdministration/OpenLessonPlanOfElectiveStudent/list.vue new file mode 100644 index 000000000..f7a0c9843 --- /dev/null +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/EducationalAdministration/OpenLessonPlanOfElectiveStudent/list.vue @@ -0,0 +1,237 @@ + + + + + diff --git a/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/EducationalAdministration/OpenLessonPlanOfElectiveStudentPre/from.vue b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/EducationalAdministration/OpenLessonPlanOfElectiveStudentPre/from.vue new file mode 100644 index 000000000..9885c9735 --- /dev/null +++ b/Learun.Framework.Ultimate V7/LearunApp-2.2.0/pages/EducationalAdministration/OpenLessonPlanOfElectiveStudentPre/from.vue @@ -0,0 +1,99 @@ +