intelligentGroup/unpackage/dist/dev/mp-weixin/common/vendor.js

13688 lines
680 KiB
JavaScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

(global["webpackJsonp"] = global["webpackJsonp"] || []).push([["common/vendor"],{
/***/ 1:
/*!*********************************************************!*\
!*** ./node_modules/@dcloudio/uni-mp-weixin/dist/wx.js ***!
\*********************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var objectKeys = ['qy', 'env', 'error', 'version', 'lanDebug', 'cloud', 'serviceMarket', 'router', 'worklet', '__webpack_require_UNI_MP_PLUGIN__'];
var singlePageDisableKey = ['lanDebug', 'router', 'worklet'];
var target = typeof globalThis !== 'undefined' ? globalThis : function () {
return this;
}();
var key = ['w', 'x'].join('');
var oldWx = target[key];
var launchOption = oldWx.getLaunchOptionsSync ? oldWx.getLaunchOptionsSync() : null;
function isWxKey(key) {
if (launchOption && launchOption.scene === 1154 && singlePageDisableKey.includes(key)) {
return false;
}
return objectKeys.indexOf(key) > -1 || typeof oldWx[key] === 'function';
}
function initWx() {
var newWx = {};
for (var _key in oldWx) {
if (isWxKey(_key)) {
// TODO wrapper function
newWx[_key] = oldWx[_key];
}
}
return newWx;
}
target[key] = initWx();
var _default = target[key];
exports.default = _default;
/***/ }),
/***/ 10:
/*!****************************************************************!*\
!*** ./node_modules/@babel/runtime/helpers/nonIterableRest.js ***!
\****************************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
function _nonIterableRest() {
throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
}
module.exports = _nonIterableRest, module.exports.__esModule = true, module.exports["default"] = module.exports;
/***/ }),
/***/ 11:
/*!***************************************************************!*\
!*** ./node_modules/@babel/runtime/helpers/defineProperty.js ***!
\***************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
var toPropertyKey = __webpack_require__(/*! ./toPropertyKey.js */ 12);
function _defineProperty(obj, key, value) {
key = toPropertyKey(key);
if (key in obj) {
Object.defineProperty(obj, key, {
value: value,
enumerable: true,
configurable: true,
writable: true
});
} else {
obj[key] = value;
}
return obj;
}
module.exports = _defineProperty, module.exports.__esModule = true, module.exports["default"] = module.exports;
/***/ }),
/***/ 12:
/*!**************************************************************!*\
!*** ./node_modules/@babel/runtime/helpers/toPropertyKey.js ***!
\**************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
var _typeof = __webpack_require__(/*! ./typeof.js */ 13)["default"];
var toPrimitive = __webpack_require__(/*! ./toPrimitive.js */ 14);
function toPropertyKey(t) {
var i = toPrimitive(t, "string");
return "symbol" == _typeof(i) ? i : i + "";
}
module.exports = toPropertyKey, module.exports.__esModule = true, module.exports["default"] = module.exports;
/***/ }),
/***/ 13:
/*!*******************************************************!*\
!*** ./node_modules/@babel/runtime/helpers/typeof.js ***!
\*******************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
function _typeof(o) {
"@babel/helpers - typeof";
return (module.exports = _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) {
return typeof o;
} : function (o) {
return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o;
}, module.exports.__esModule = true, module.exports["default"] = module.exports), _typeof(o);
}
module.exports = _typeof, module.exports.__esModule = true, module.exports["default"] = module.exports;
/***/ }),
/***/ 14:
/*!************************************************************!*\
!*** ./node_modules/@babel/runtime/helpers/toPrimitive.js ***!
\************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
var _typeof = __webpack_require__(/*! ./typeof.js */ 13)["default"];
function toPrimitive(t, r) {
if ("object" != _typeof(t) || !t) return t;
var e = t[Symbol.toPrimitive];
if (void 0 !== e) {
var i = e.call(t, r || "default");
if ("object" != _typeof(i)) return i;
throw new TypeError("@@toPrimitive must return a primitive value.");
}
return ("string" === r ? String : Number)(t);
}
module.exports = toPrimitive, module.exports.__esModule = true, module.exports["default"] = module.exports;
/***/ }),
/***/ 15:
/*!**********************************************************!*\
!*** ./node_modules/@babel/runtime/helpers/construct.js ***!
\**********************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
var setPrototypeOf = __webpack_require__(/*! ./setPrototypeOf.js */ 16);
var isNativeReflectConstruct = __webpack_require__(/*! ./isNativeReflectConstruct.js */ 17);
function _construct(t, e, r) {
if (isNativeReflectConstruct()) return Reflect.construct.apply(null, arguments);
var o = [null];
o.push.apply(o, e);
var p = new (t.bind.apply(t, o))();
return r && setPrototypeOf(p, r.prototype), p;
}
module.exports = _construct, module.exports.__esModule = true, module.exports["default"] = module.exports;
/***/ }),
/***/ 16:
/*!***************************************************************!*\
!*** ./node_modules/@babel/runtime/helpers/setPrototypeOf.js ***!
\***************************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
function _setPrototypeOf(o, p) {
module.exports = _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) {
o.__proto__ = p;
return o;
}, module.exports.__esModule = true, module.exports["default"] = module.exports;
return _setPrototypeOf(o, p);
}
module.exports = _setPrototypeOf, module.exports.__esModule = true, module.exports["default"] = module.exports;
/***/ }),
/***/ 17:
/*!*************************************************************************!*\
!*** ./node_modules/@babel/runtime/helpers/isNativeReflectConstruct.js ***!
\*************************************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
function _isNativeReflectConstruct() {
try {
var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {}));
} catch (t) {}
return (module.exports = _isNativeReflectConstruct = function _isNativeReflectConstruct() {
return !!t;
}, module.exports.__esModule = true, module.exports["default"] = module.exports)();
}
module.exports = _isNativeReflectConstruct, module.exports.__esModule = true, module.exports["default"] = module.exports;
/***/ }),
/***/ 18:
/*!******************************************************************!*\
!*** ./node_modules/@babel/runtime/helpers/toConsumableArray.js ***!
\******************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
var arrayWithoutHoles = __webpack_require__(/*! ./arrayWithoutHoles.js */ 19);
var iterableToArray = __webpack_require__(/*! ./iterableToArray.js */ 20);
var unsupportedIterableToArray = __webpack_require__(/*! ./unsupportedIterableToArray.js */ 8);
var nonIterableSpread = __webpack_require__(/*! ./nonIterableSpread.js */ 21);
function _toConsumableArray(arr) {
return arrayWithoutHoles(arr) || iterableToArray(arr) || unsupportedIterableToArray(arr) || nonIterableSpread();
}
module.exports = _toConsumableArray, module.exports.__esModule = true, module.exports["default"] = module.exports;
/***/ }),
/***/ 19:
/*!******************************************************************!*\
!*** ./node_modules/@babel/runtime/helpers/arrayWithoutHoles.js ***!
\******************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
var arrayLikeToArray = __webpack_require__(/*! ./arrayLikeToArray.js */ 9);
function _arrayWithoutHoles(arr) {
if (Array.isArray(arr)) return arrayLikeToArray(arr);
}
module.exports = _arrayWithoutHoles, module.exports.__esModule = true, module.exports["default"] = module.exports;
/***/ }),
/***/ 2:
/*!************************************************************!*\
!*** ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js ***!
\************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
/* WEBPACK VAR INJECTION */(function(wx, global) {
var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ 4);
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.createApp = createApp;
exports.createComponent = createComponent;
exports.createPage = createPage;
exports.createPlugin = createPlugin;
exports.createSubpackageApp = createSubpackageApp;
exports.default = void 0;
var _slicedToArray2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/slicedToArray */ 5));
var _defineProperty2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/defineProperty */ 11));
var _construct2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/construct */ 15));
var _toConsumableArray2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/toConsumableArray */ 18));
var _typeof2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/typeof */ 13));
var _uniI18n = __webpack_require__(/*! @dcloudio/uni-i18n */ 22);
var _vue = _interopRequireDefault(__webpack_require__(/*! vue */ 25));
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { (0, _defineProperty2.default)(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
var realAtob;
var b64 = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=';
var b64re = /^(?:[A-Za-z\d+/]{4})*?(?:[A-Za-z\d+/]{2}(?:==)?|[A-Za-z\d+/]{3}=?)?$/;
if (typeof atob !== 'function') {
realAtob = function realAtob(str) {
str = String(str).replace(/[\t\n\f\r ]+/g, '');
if (!b64re.test(str)) {
throw new Error("Failed to execute 'atob' on 'Window': The string to be decoded is not correctly encoded.");
}
// Adding the padding if missing, for semplicity
str += '=='.slice(2 - (str.length & 3));
var bitmap;
var result = '';
var r1;
var r2;
var i = 0;
for (; i < str.length;) {
bitmap = b64.indexOf(str.charAt(i++)) << 18 | b64.indexOf(str.charAt(i++)) << 12 | (r1 = b64.indexOf(str.charAt(i++))) << 6 | (r2 = b64.indexOf(str.charAt(i++)));
result += r1 === 64 ? String.fromCharCode(bitmap >> 16 & 255) : r2 === 64 ? String.fromCharCode(bitmap >> 16 & 255, bitmap >> 8 & 255) : String.fromCharCode(bitmap >> 16 & 255, bitmap >> 8 & 255, bitmap & 255);
}
return result;
};
} else {
// 注意atob只能在全局对象上调用例如`const Base64 = {atob};Base64.atob('xxxx')`是错误的用法
realAtob = atob;
}
function b64DecodeUnicode(str) {
return decodeURIComponent(realAtob(str).split('').map(function (c) {
return '%' + ('00' + c.charCodeAt(0).toString(16)).slice(-2);
}).join(''));
}
function getCurrentUserInfo() {
var token = wx.getStorageSync('uni_id_token') || '';
var tokenArr = token.split('.');
if (!token || tokenArr.length !== 3) {
return {
uid: null,
role: [],
permission: [],
tokenExpired: 0
};
}
var userInfo;
try {
userInfo = JSON.parse(b64DecodeUnicode(tokenArr[1]));
} catch (error) {
throw new Error('获取当前用户信息出错,详细错误信息为:' + error.message);
}
userInfo.tokenExpired = userInfo.exp * 1000;
delete userInfo.exp;
delete userInfo.iat;
return userInfo;
}
function uniIdMixin(Vue) {
Vue.prototype.uniIDHasRole = function (roleId) {
var _getCurrentUserInfo = getCurrentUserInfo(),
role = _getCurrentUserInfo.role;
return role.indexOf(roleId) > -1;
};
Vue.prototype.uniIDHasPermission = function (permissionId) {
var _getCurrentUserInfo2 = getCurrentUserInfo(),
permission = _getCurrentUserInfo2.permission;
return this.uniIDHasRole('admin') || permission.indexOf(permissionId) > -1;
};
Vue.prototype.uniIDTokenValid = function () {
var _getCurrentUserInfo3 = getCurrentUserInfo(),
tokenExpired = _getCurrentUserInfo3.tokenExpired;
return tokenExpired > Date.now();
};
}
var _toString = Object.prototype.toString;
var hasOwnProperty = Object.prototype.hasOwnProperty;
function isFn(fn) {
return typeof fn === 'function';
}
function isStr(str) {
return typeof str === 'string';
}
function isObject(obj) {
return obj !== null && (0, _typeof2.default)(obj) === 'object';
}
function isPlainObject(obj) {
return _toString.call(obj) === '[object Object]';
}
function hasOwn(obj, key) {
return hasOwnProperty.call(obj, key);
}
function noop() {}
/**
* Create a cached version of a pure function.
*/
function cached(fn) {
var cache = Object.create(null);
return function cachedFn(str) {
var hit = cache[str];
return hit || (cache[str] = fn(str));
};
}
/**
* Camelize a hyphen-delimited string.
*/
var camelizeRE = /-(\w)/g;
var camelize = cached(function (str) {
return str.replace(camelizeRE, function (_, c) {
return c ? c.toUpperCase() : '';
});
});
function sortObject(obj) {
var sortObj = {};
if (isPlainObject(obj)) {
Object.keys(obj).sort().forEach(function (key) {
sortObj[key] = obj[key];
});
}
return !Object.keys(sortObj) ? obj : sortObj;
}
var HOOKS = ['invoke', 'success', 'fail', 'complete', 'returnValue'];
var globalInterceptors = {};
var scopedInterceptors = {};
function mergeHook(parentVal, childVal) {
var res = childVal ? parentVal ? parentVal.concat(childVal) : Array.isArray(childVal) ? childVal : [childVal] : parentVal;
return res ? dedupeHooks(res) : res;
}
function dedupeHooks(hooks) {
var res = [];
for (var i = 0; i < hooks.length; i++) {
if (res.indexOf(hooks[i]) === -1) {
res.push(hooks[i]);
}
}
return res;
}
function removeHook(hooks, hook) {
var index = hooks.indexOf(hook);
if (index !== -1) {
hooks.splice(index, 1);
}
}
function mergeInterceptorHook(interceptor, option) {
Object.keys(option).forEach(function (hook) {
if (HOOKS.indexOf(hook) !== -1 && isFn(option[hook])) {
interceptor[hook] = mergeHook(interceptor[hook], option[hook]);
}
});
}
function removeInterceptorHook(interceptor, option) {
if (!interceptor || !option) {
return;
}
Object.keys(option).forEach(function (hook) {
if (HOOKS.indexOf(hook) !== -1 && isFn(option[hook])) {
removeHook(interceptor[hook], option[hook]);
}
});
}
function addInterceptor(method, option) {
if (typeof method === 'string' && isPlainObject(option)) {
mergeInterceptorHook(scopedInterceptors[method] || (scopedInterceptors[method] = {}), option);
} else if (isPlainObject(method)) {
mergeInterceptorHook(globalInterceptors, method);
}
}
function removeInterceptor(method, option) {
if (typeof method === 'string') {
if (isPlainObject(option)) {
removeInterceptorHook(scopedInterceptors[method], option);
} else {
delete scopedInterceptors[method];
}
} else if (isPlainObject(method)) {
removeInterceptorHook(globalInterceptors, method);
}
}
function wrapperHook(hook, params) {
return function (data) {
return hook(data, params) || data;
};
}
function isPromise(obj) {
return !!obj && ((0, _typeof2.default)(obj) === 'object' || typeof obj === 'function') && typeof obj.then === 'function';
}
function queue(hooks, data, params) {
var promise = false;
for (var i = 0; i < hooks.length; i++) {
var hook = hooks[i];
if (promise) {
promise = Promise.resolve(wrapperHook(hook, params));
} else {
var res = hook(data, params);
if (isPromise(res)) {
promise = Promise.resolve(res);
}
if (res === false) {
return {
then: function then() {}
};
}
}
}
return promise || {
then: function then(callback) {
return callback(data);
}
};
}
function wrapperOptions(interceptor) {
var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
['success', 'fail', 'complete'].forEach(function (name) {
if (Array.isArray(interceptor[name])) {
var oldCallback = options[name];
options[name] = function callbackInterceptor(res) {
queue(interceptor[name], res, options).then(function (res) {
/* eslint-disable no-mixed-operators */
return isFn(oldCallback) && oldCallback(res) || res;
});
};
}
});
return options;
}
function wrapperReturnValue(method, returnValue) {
var returnValueHooks = [];
if (Array.isArray(globalInterceptors.returnValue)) {
returnValueHooks.push.apply(returnValueHooks, (0, _toConsumableArray2.default)(globalInterceptors.returnValue));
}
var interceptor = scopedInterceptors[method];
if (interceptor && Array.isArray(interceptor.returnValue)) {
returnValueHooks.push.apply(returnValueHooks, (0, _toConsumableArray2.default)(interceptor.returnValue));
}
returnValueHooks.forEach(function (hook) {
returnValue = hook(returnValue) || returnValue;
});
return returnValue;
}
function getApiInterceptorHooks(method) {
var interceptor = Object.create(null);
Object.keys(globalInterceptors).forEach(function (hook) {
if (hook !== 'returnValue') {
interceptor[hook] = globalInterceptors[hook].slice();
}
});
var scopedInterceptor = scopedInterceptors[method];
if (scopedInterceptor) {
Object.keys(scopedInterceptor).forEach(function (hook) {
if (hook !== 'returnValue') {
interceptor[hook] = (interceptor[hook] || []).concat(scopedInterceptor[hook]);
}
});
}
return interceptor;
}
function invokeApi(method, api, options) {
for (var _len = arguments.length, params = new Array(_len > 3 ? _len - 3 : 0), _key = 3; _key < _len; _key++) {
params[_key - 3] = arguments[_key];
}
var interceptor = getApiInterceptorHooks(method);
if (interceptor && Object.keys(interceptor).length) {
if (Array.isArray(interceptor.invoke)) {
var res = queue(interceptor.invoke, options);
return res.then(function (options) {
// 重新访问 getApiInterceptorHooks, 允许 invoke 中再次调用 addInterceptor,removeInterceptor
return api.apply(void 0, [wrapperOptions(getApiInterceptorHooks(method), options)].concat(params));
});
} else {
return api.apply(void 0, [wrapperOptions(interceptor, options)].concat(params));
}
}
return api.apply(void 0, [options].concat(params));
}
var promiseInterceptor = {
returnValue: function returnValue(res) {
if (!isPromise(res)) {
return res;
}
return new Promise(function (resolve, reject) {
res.then(function (res) {
if (res[0]) {
reject(res[0]);
} else {
resolve(res[1]);
}
});
});
}
};
var SYNC_API_RE = /^\$|Window$|WindowStyle$|sendHostEvent|sendNativeEvent|restoreGlobal|requireGlobal|getCurrentSubNVue|getMenuButtonBoundingClientRect|^report|interceptors|Interceptor$|getSubNVueById|requireNativePlugin|upx2px|hideKeyboard|canIUse|^create|Sync$|Manager$|base64ToArrayBuffer|arrayBufferToBase64|getLocale|setLocale|invokePushCallback|getWindowInfo|getDeviceInfo|getAppBaseInfo|getSystemSetting|getAppAuthorizeSetting|initUTS|requireUTS|registerUTS/;
var CONTEXT_API_RE = /^create|Manager$/;
// Context例外情况
var CONTEXT_API_RE_EXC = ['createBLEConnection'];
// 同步例外情况
var ASYNC_API = ['createBLEConnection', 'createPushMessage'];
var CALLBACK_API_RE = /^on|^off/;
function isContextApi(name) {
return CONTEXT_API_RE.test(name) && CONTEXT_API_RE_EXC.indexOf(name) === -1;
}
function isSyncApi(name) {
return SYNC_API_RE.test(name) && ASYNC_API.indexOf(name) === -1;
}
function isCallbackApi(name) {
return CALLBACK_API_RE.test(name) && name !== 'onPush';
}
function handlePromise(promise) {
return promise.then(function (data) {
return [null, data];
}).catch(function (err) {
return [err];
});
}
function shouldPromise(name) {
if (isContextApi(name) || isSyncApi(name) || isCallbackApi(name)) {
return false;
}
return true;
}
/* eslint-disable no-extend-native */
if (!Promise.prototype.finally) {
Promise.prototype.finally = function (callback) {
var promise = this.constructor;
return this.then(function (value) {
return promise.resolve(callback()).then(function () {
return value;
});
}, function (reason) {
return promise.resolve(callback()).then(function () {
throw reason;
});
});
};
}
function promisify(name, api) {
if (!shouldPromise(name) || !isFn(api)) {
return api;
}
return function promiseApi() {
var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
for (var _len2 = arguments.length, params = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {
params[_key2 - 1] = arguments[_key2];
}
if (isFn(options.success) || isFn(options.fail) || isFn(options.complete)) {
return wrapperReturnValue(name, invokeApi.apply(void 0, [name, api, options].concat(params)));
}
return wrapperReturnValue(name, handlePromise(new Promise(function (resolve, reject) {
invokeApi.apply(void 0, [name, api, Object.assign({}, options, {
success: resolve,
fail: reject
})].concat(params));
})));
};
}
var EPS = 1e-4;
var BASE_DEVICE_WIDTH = 750;
var isIOS = false;
var deviceWidth = 0;
var deviceDPR = 0;
function checkDeviceWidth() {
var _wx$getSystemInfoSync = wx.getSystemInfoSync(),
platform = _wx$getSystemInfoSync.platform,
pixelRatio = _wx$getSystemInfoSync.pixelRatio,
windowWidth = _wx$getSystemInfoSync.windowWidth; // uni=>wx runtime 编译目标是 uni 对象,内部不允许直接使用 uni
deviceWidth = windowWidth;
deviceDPR = pixelRatio;
isIOS = platform === 'ios';
}
function upx2px(number, newDeviceWidth) {
if (deviceWidth === 0) {
checkDeviceWidth();
}
number = Number(number);
if (number === 0) {
return 0;
}
var result = number / BASE_DEVICE_WIDTH * (newDeviceWidth || deviceWidth);
if (result < 0) {
result = -result;
}
result = Math.floor(result + EPS);
if (result === 0) {
if (deviceDPR === 1 || !isIOS) {
result = 1;
} else {
result = 0.5;
}
}
return number < 0 ? -result : result;
}
var LOCALE_ZH_HANS = 'zh-Hans';
var LOCALE_ZH_HANT = 'zh-Hant';
var LOCALE_EN = 'en';
var LOCALE_FR = 'fr';
var LOCALE_ES = 'es';
var messages = {};
var locale;
{
locale = normalizeLocale(wx.getSystemInfoSync().language) || LOCALE_EN;
}
function initI18nMessages() {
if (!isEnableLocale()) {
return;
}
var localeKeys = Object.keys(__uniConfig.locales);
if (localeKeys.length) {
localeKeys.forEach(function (locale) {
var curMessages = messages[locale];
var userMessages = __uniConfig.locales[locale];
if (curMessages) {
Object.assign(curMessages, userMessages);
} else {
messages[locale] = userMessages;
}
});
}
}
initI18nMessages();
var i18n = (0, _uniI18n.initVueI18n)(locale, {});
var t = i18n.t;
var i18nMixin = i18n.mixin = {
beforeCreate: function beforeCreate() {
var _this = this;
var unwatch = i18n.i18n.watchLocale(function () {
_this.$forceUpdate();
});
this.$once('hook:beforeDestroy', function () {
unwatch();
});
},
methods: {
$$t: function $$t(key, values) {
return t(key, values);
}
}
};
var setLocale = i18n.setLocale;
var getLocale = i18n.getLocale;
function initAppLocale(Vue, appVm, locale) {
var state = Vue.observable({
locale: locale || i18n.getLocale()
});
var localeWatchers = [];
appVm.$watchLocale = function (fn) {
localeWatchers.push(fn);
};
Object.defineProperty(appVm, '$locale', {
get: function get() {
return state.locale;
},
set: function set(v) {
state.locale = v;
localeWatchers.forEach(function (watch) {
return watch(v);
});
}
});
}
function isEnableLocale() {
return typeof __uniConfig !== 'undefined' && __uniConfig.locales && !!Object.keys(__uniConfig.locales).length;
}
function include(str, parts) {
return !!parts.find(function (part) {
return str.indexOf(part) !== -1;
});
}
function startsWith(str, parts) {
return parts.find(function (part) {
return str.indexOf(part) === 0;
});
}
function normalizeLocale(locale, messages) {
if (!locale) {
return;
}
locale = locale.trim().replace(/_/g, '-');
if (messages && messages[locale]) {
return locale;
}
locale = locale.toLowerCase();
if (locale === 'chinese') {
// 支付宝
return LOCALE_ZH_HANS;
}
if (locale.indexOf('zh') === 0) {
if (locale.indexOf('-hans') > -1) {
return LOCALE_ZH_HANS;
}
if (locale.indexOf('-hant') > -1) {
return LOCALE_ZH_HANT;
}
if (include(locale, ['-tw', '-hk', '-mo', '-cht'])) {
return LOCALE_ZH_HANT;
}
return LOCALE_ZH_HANS;
}
var lang = startsWith(locale, [LOCALE_EN, LOCALE_FR, LOCALE_ES]);
if (lang) {
return lang;
}
}
// export function initI18n() {
// const localeKeys = Object.keys(__uniConfig.locales || {})
// if (localeKeys.length) {
// localeKeys.forEach((locale) =>
// i18n.add(locale, __uniConfig.locales[locale])
// )
// }
// }
function getLocale$1() {
// 优先使用 $locale
if (isFn(getApp)) {
var app = getApp({
allowDefault: true
});
if (app && app.$vm) {
return app.$vm.$locale;
}
}
return normalizeLocale(wx.getSystemInfoSync().language) || LOCALE_EN;
}
function setLocale$1(locale) {
var app = isFn(getApp) ? getApp() : false;
if (!app) {
return false;
}
var oldLocale = app.$vm.$locale;
if (oldLocale !== locale) {
app.$vm.$locale = locale;
onLocaleChangeCallbacks.forEach(function (fn) {
return fn({
locale: locale
});
});
return true;
}
return false;
}
var onLocaleChangeCallbacks = [];
function onLocaleChange(fn) {
if (onLocaleChangeCallbacks.indexOf(fn) === -1) {
onLocaleChangeCallbacks.push(fn);
}
}
if (typeof global !== 'undefined') {
global.getLocale = getLocale$1;
}
var interceptors = {
promiseInterceptor: promiseInterceptor
};
var baseApi = /*#__PURE__*/Object.freeze({
__proto__: null,
upx2px: upx2px,
getLocale: getLocale$1,
setLocale: setLocale$1,
onLocaleChange: onLocaleChange,
addInterceptor: addInterceptor,
removeInterceptor: removeInterceptor,
interceptors: interceptors
});
function findExistsPageIndex(url) {
var pages = getCurrentPages();
var len = pages.length;
while (len--) {
var page = pages[len];
if (page.$page && page.$page.fullPath === url) {
return len;
}
}
return -1;
}
var redirectTo = {
name: function name(fromArgs) {
if (fromArgs.exists === 'back' && fromArgs.delta) {
return 'navigateBack';
}
return 'redirectTo';
},
args: function args(fromArgs) {
if (fromArgs.exists === 'back' && fromArgs.url) {
var existsPageIndex = findExistsPageIndex(fromArgs.url);
if (existsPageIndex !== -1) {
var delta = getCurrentPages().length - 1 - existsPageIndex;
if (delta > 0) {
fromArgs.delta = delta;
}
}
}
}
};
var previewImage = {
args: function args(fromArgs) {
var currentIndex = parseInt(fromArgs.current);
if (isNaN(currentIndex)) {
return;
}
var urls = fromArgs.urls;
if (!Array.isArray(urls)) {
return;
}
var len = urls.length;
if (!len) {
return;
}
if (currentIndex < 0) {
currentIndex = 0;
} else if (currentIndex >= len) {
currentIndex = len - 1;
}
if (currentIndex > 0) {
fromArgs.current = urls[currentIndex];
fromArgs.urls = urls.filter(function (item, index) {
return index < currentIndex ? item !== urls[currentIndex] : true;
});
} else {
fromArgs.current = urls[0];
}
return {
indicator: false,
loop: false
};
}
};
var UUID_KEY = '__DC_STAT_UUID';
var deviceId;
function useDeviceId(result) {
deviceId = deviceId || wx.getStorageSync(UUID_KEY);
if (!deviceId) {
deviceId = Date.now() + '' + Math.floor(Math.random() * 1e7);
wx.setStorage({
key: UUID_KEY,
data: deviceId
});
}
result.deviceId = deviceId;
}
function addSafeAreaInsets(result) {
if (result.safeArea) {
var safeArea = result.safeArea;
result.safeAreaInsets = {
top: safeArea.top,
left: safeArea.left,
right: result.windowWidth - safeArea.right,
bottom: result.screenHeight - safeArea.bottom
};
}
}
function populateParameters(result) {
var _result$brand = result.brand,
brand = _result$brand === void 0 ? '' : _result$brand,
_result$model = result.model,
model = _result$model === void 0 ? '' : _result$model,
_result$system = result.system,
system = _result$system === void 0 ? '' : _result$system,
_result$language = result.language,
language = _result$language === void 0 ? '' : _result$language,
theme = result.theme,
version = result.version,
platform = result.platform,
fontSizeSetting = result.fontSizeSetting,
SDKVersion = result.SDKVersion,
pixelRatio = result.pixelRatio,
deviceOrientation = result.deviceOrientation;
// const isQuickApp = "mp-weixin".indexOf('quickapp-webview') !== -1
var extraParam = {};
// osName osVersion
var osName = '';
var osVersion = '';
{
osName = system.split(' ')[0] || '';
osVersion = system.split(' ')[1] || '';
}
var hostVersion = version;
// deviceType
var deviceType = getGetDeviceType(result, model);
// deviceModel
var deviceBrand = getDeviceBrand(brand);
// hostName
var _hostName = getHostName(result);
// deviceOrientation
var _deviceOrientation = deviceOrientation; // 仅 微信 百度 支持
// devicePixelRatio
var _devicePixelRatio = pixelRatio;
// SDKVersion
var _SDKVersion = SDKVersion;
// hostLanguage
var hostLanguage = language.replace(/_/g, '-');
// wx.getAccountInfoSync
var parameters = {
appId: "__UNI__8CF31FA",
appName: "intelligentGroup",
appVersion: "1.0.0",
appVersionCode: "100",
appLanguage: getAppLanguage(hostLanguage),
uniCompileVersion: "4.24",
uniRuntimeVersion: "4.24",
uniPlatform: undefined || "mp-weixin",
deviceBrand: deviceBrand,
deviceModel: model,
deviceType: deviceType,
devicePixelRatio: _devicePixelRatio,
deviceOrientation: _deviceOrientation,
osName: osName.toLocaleLowerCase(),
osVersion: osVersion,
hostTheme: theme,
hostVersion: hostVersion,
hostLanguage: hostLanguage,
hostName: _hostName,
hostSDKVersion: _SDKVersion,
hostFontSizeSetting: fontSizeSetting,
windowTop: 0,
windowBottom: 0,
// TODO
osLanguage: undefined,
osTheme: undefined,
ua: undefined,
hostPackageName: undefined,
browserName: undefined,
browserVersion: undefined
};
Object.assign(result, parameters, extraParam);
}
function getGetDeviceType(result, model) {
var deviceType = result.deviceType || 'phone';
{
var deviceTypeMaps = {
ipad: 'pad',
windows: 'pc',
mac: 'pc'
};
var deviceTypeMapsKeys = Object.keys(deviceTypeMaps);
var _model = model.toLocaleLowerCase();
for (var index = 0; index < deviceTypeMapsKeys.length; index++) {
var _m = deviceTypeMapsKeys[index];
if (_model.indexOf(_m) !== -1) {
deviceType = deviceTypeMaps[_m];
break;
}
}
}
return deviceType;
}
function getDeviceBrand(brand) {
var deviceBrand = brand;
if (deviceBrand) {
deviceBrand = brand.toLocaleLowerCase();
}
return deviceBrand;
}
function getAppLanguage(defaultLanguage) {
return getLocale$1 ? getLocale$1() : defaultLanguage;
}
function getHostName(result) {
var _platform = 'WeChat';
var _hostName = result.hostName || _platform; // mp-jd
{
if (result.environment) {
_hostName = result.environment;
} else if (result.host && result.host.env) {
_hostName = result.host.env;
}
}
return _hostName;
}
var getSystemInfo = {
returnValue: function returnValue(result) {
useDeviceId(result);
addSafeAreaInsets(result);
populateParameters(result);
}
};
var showActionSheet = {
args: function args(fromArgs) {
if ((0, _typeof2.default)(fromArgs) === 'object') {
fromArgs.alertText = fromArgs.title;
}
}
};
var getAppBaseInfo = {
returnValue: function returnValue(result) {
var _result = result,
version = _result.version,
language = _result.language,
SDKVersion = _result.SDKVersion,
theme = _result.theme;
var _hostName = getHostName(result);
var hostLanguage = language.replace('_', '-');
result = sortObject(Object.assign(result, {
appId: "__UNI__8CF31FA",
appName: "intelligentGroup",
appVersion: "1.0.0",
appVersionCode: "100",
appLanguage: getAppLanguage(hostLanguage),
hostVersion: version,
hostLanguage: hostLanguage,
hostName: _hostName,
hostSDKVersion: SDKVersion,
hostTheme: theme
}));
}
};
var getDeviceInfo = {
returnValue: function returnValue(result) {
var _result2 = result,
brand = _result2.brand,
model = _result2.model;
var deviceType = getGetDeviceType(result, model);
var deviceBrand = getDeviceBrand(brand);
useDeviceId(result);
result = sortObject(Object.assign(result, {
deviceType: deviceType,
deviceBrand: deviceBrand,
deviceModel: model
}));
}
};
var getWindowInfo = {
returnValue: function returnValue(result) {
addSafeAreaInsets(result);
result = sortObject(Object.assign(result, {
windowTop: 0,
windowBottom: 0
}));
}
};
var getAppAuthorizeSetting = {
returnValue: function returnValue(result) {
var locationReducedAccuracy = result.locationReducedAccuracy;
result.locationAccuracy = 'unsupported';
if (locationReducedAccuracy === true) {
result.locationAccuracy = 'reduced';
} else if (locationReducedAccuracy === false) {
result.locationAccuracy = 'full';
}
}
};
// import navigateTo from 'uni-helpers/navigate-to'
var compressImage = {
args: function args(fromArgs) {
// https://developers.weixin.qq.com/community/develop/doc/000c08940c865011298e0a43256800?highLine=compressHeight
if (fromArgs.compressedHeight && !fromArgs.compressHeight) {
fromArgs.compressHeight = fromArgs.compressedHeight;
}
if (fromArgs.compressedWidth && !fromArgs.compressWidth) {
fromArgs.compressWidth = fromArgs.compressedWidth;
}
}
};
var protocols = {
redirectTo: redirectTo,
// navigateTo, // 由于在微信开发者工具的页面参数会显示__id__参数因此暂时关闭mp-weixin对于navigateTo的AOP
previewImage: previewImage,
getSystemInfo: getSystemInfo,
getSystemInfoSync: getSystemInfo,
showActionSheet: showActionSheet,
getAppBaseInfo: getAppBaseInfo,
getDeviceInfo: getDeviceInfo,
getWindowInfo: getWindowInfo,
getAppAuthorizeSetting: getAppAuthorizeSetting,
compressImage: compressImage
};
var todos = ['vibrate', 'preloadPage', 'unPreloadPage', 'loadSubPackage'];
var canIUses = [];
var CALLBACKS = ['success', 'fail', 'cancel', 'complete'];
function processCallback(methodName, method, returnValue) {
return function (res) {
return method(processReturnValue(methodName, res, returnValue));
};
}
function processArgs(methodName, fromArgs) {
var argsOption = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};
var returnValue = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : {};
var keepFromArgs = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : false;
if (isPlainObject(fromArgs)) {
// 一般 api 的参数解析
var toArgs = keepFromArgs === true ? fromArgs : {}; // returnValue 为 false 时,说明是格式化返回值,直接在返回值对象上修改赋值
if (isFn(argsOption)) {
argsOption = argsOption(fromArgs, toArgs) || {};
}
for (var key in fromArgs) {
if (hasOwn(argsOption, key)) {
var keyOption = argsOption[key];
if (isFn(keyOption)) {
keyOption = keyOption(fromArgs[key], fromArgs, toArgs);
}
if (!keyOption) {
// 不支持的参数
console.warn("The '".concat(methodName, "' method of platform '\u5FAE\u4FE1\u5C0F\u7A0B\u5E8F' does not support option '").concat(key, "'"));
} else if (isStr(keyOption)) {
// 重写参数 key
toArgs[keyOption] = fromArgs[key];
} else if (isPlainObject(keyOption)) {
// {name:newName,value:value}可重新指定参数 key:value
toArgs[keyOption.name ? keyOption.name : key] = keyOption.value;
}
} else if (CALLBACKS.indexOf(key) !== -1) {
if (isFn(fromArgs[key])) {
toArgs[key] = processCallback(methodName, fromArgs[key], returnValue);
}
} else {
if (!keepFromArgs) {
toArgs[key] = fromArgs[key];
}
}
}
return toArgs;
} else if (isFn(fromArgs)) {
fromArgs = processCallback(methodName, fromArgs, returnValue);
}
return fromArgs;
}
function processReturnValue(methodName, res, returnValue) {
var keepReturnValue = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : false;
if (isFn(protocols.returnValue)) {
// 处理通用 returnValue
res = protocols.returnValue(methodName, res);
}
return processArgs(methodName, res, returnValue, {}, keepReturnValue);
}
function wrapper(methodName, method) {
if (hasOwn(protocols, methodName)) {
var protocol = protocols[methodName];
if (!protocol) {
// 暂不支持的 api
return function () {
console.error("Platform '\u5FAE\u4FE1\u5C0F\u7A0B\u5E8F' does not support '".concat(methodName, "'."));
};
}
return function (arg1, arg2) {
// 目前 api 最多两个参数
var options = protocol;
if (isFn(protocol)) {
options = protocol(arg1);
}
arg1 = processArgs(methodName, arg1, options.args, options.returnValue);
var args = [arg1];
if (typeof arg2 !== 'undefined') {
args.push(arg2);
}
if (isFn(options.name)) {
methodName = options.name(arg1);
} else if (isStr(options.name)) {
methodName = options.name;
}
var returnValue = wx[methodName].apply(wx, args);
if (isSyncApi(methodName)) {
// 同步 api
return processReturnValue(methodName, returnValue, options.returnValue, isContextApi(methodName));
}
return returnValue;
};
}
return method;
}
var todoApis = Object.create(null);
var TODOS = ['onTabBarMidButtonTap', 'subscribePush', 'unsubscribePush', 'onPush', 'offPush', 'share'];
function createTodoApi(name) {
return function todoApi(_ref) {
var fail = _ref.fail,
complete = _ref.complete;
var res = {
errMsg: "".concat(name, ":fail method '").concat(name, "' not supported")
};
isFn(fail) && fail(res);
isFn(complete) && complete(res);
};
}
TODOS.forEach(function (name) {
todoApis[name] = createTodoApi(name);
});
var providers = {
oauth: ['weixin'],
share: ['weixin'],
payment: ['wxpay'],
push: ['weixin']
};
function getProvider(_ref2) {
var service = _ref2.service,
success = _ref2.success,
fail = _ref2.fail,
complete = _ref2.complete;
var res = false;
if (providers[service]) {
res = {
errMsg: 'getProvider:ok',
service: service,
provider: providers[service]
};
isFn(success) && success(res);
} else {
res = {
errMsg: 'getProvider:fail service not found'
};
isFn(fail) && fail(res);
}
isFn(complete) && complete(res);
}
var extraApi = /*#__PURE__*/Object.freeze({
__proto__: null,
getProvider: getProvider
});
var getEmitter = function () {
var Emitter;
return function getUniEmitter() {
if (!Emitter) {
Emitter = new _vue.default();
}
return Emitter;
};
}();
function apply(ctx, method, args) {
return ctx[method].apply(ctx, args);
}
function $on() {
return apply(getEmitter(), '$on', Array.prototype.slice.call(arguments));
}
function $off() {
return apply(getEmitter(), '$off', Array.prototype.slice.call(arguments));
}
function $once() {
return apply(getEmitter(), '$once', Array.prototype.slice.call(arguments));
}
function $emit() {
return apply(getEmitter(), '$emit', Array.prototype.slice.call(arguments));
}
var eventApi = /*#__PURE__*/Object.freeze({
__proto__: null,
$on: $on,
$off: $off,
$once: $once,
$emit: $emit
});
/**
* 框架内 try-catch
*/
/**
* 开发者 try-catch
*/
function tryCatch(fn) {
return function () {
try {
return fn.apply(fn, arguments);
} catch (e) {
// TODO
console.error(e);
}
};
}
function getApiCallbacks(params) {
var apiCallbacks = {};
for (var name in params) {
var param = params[name];
if (isFn(param)) {
apiCallbacks[name] = tryCatch(param);
delete params[name];
}
}
return apiCallbacks;
}
var cid;
var cidErrMsg;
var enabled;
function normalizePushMessage(message) {
try {
return JSON.parse(message);
} catch (e) {}
return message;
}
function invokePushCallback(args) {
if (args.type === 'enabled') {
enabled = true;
} else if (args.type === 'clientId') {
cid = args.cid;
cidErrMsg = args.errMsg;
invokeGetPushCidCallbacks(cid, args.errMsg);
} else if (args.type === 'pushMsg') {
var message = {
type: 'receive',
data: normalizePushMessage(args.message)
};
for (var i = 0; i < onPushMessageCallbacks.length; i++) {
var callback = onPushMessageCallbacks[i];
callback(message);
// 该消息已被阻止
if (message.stopped) {
break;
}
}
} else if (args.type === 'click') {
onPushMessageCallbacks.forEach(function (callback) {
callback({
type: 'click',
data: normalizePushMessage(args.message)
});
});
}
}
var getPushCidCallbacks = [];
function invokeGetPushCidCallbacks(cid, errMsg) {
getPushCidCallbacks.forEach(function (callback) {
callback(cid, errMsg);
});
getPushCidCallbacks.length = 0;
}
function getPushClientId(args) {
if (!isPlainObject(args)) {
args = {};
}
var _getApiCallbacks = getApiCallbacks(args),
success = _getApiCallbacks.success,
fail = _getApiCallbacks.fail,
complete = _getApiCallbacks.complete;
var hasSuccess = isFn(success);
var hasFail = isFn(fail);
var hasComplete = isFn(complete);
Promise.resolve().then(function () {
if (typeof enabled === 'undefined') {
enabled = false;
cid = '';
cidErrMsg = 'uniPush is not enabled';
}
getPushCidCallbacks.push(function (cid, errMsg) {
var res;
if (cid) {
res = {
errMsg: 'getPushClientId:ok',
cid: cid
};
hasSuccess && success(res);
} else {
res = {
errMsg: 'getPushClientId:fail' + (errMsg ? ' ' + errMsg : '')
};
hasFail && fail(res);
}
hasComplete && complete(res);
});
if (typeof cid !== 'undefined') {
invokeGetPushCidCallbacks(cid, cidErrMsg);
}
});
}
var onPushMessageCallbacks = [];
// 不使用 defineOnApi 实现,是因为 defineOnApi 依赖 UniServiceJSBridge ,该对象目前在小程序上未提供,故简单实现
var onPushMessage = function onPushMessage(fn) {
if (onPushMessageCallbacks.indexOf(fn) === -1) {
onPushMessageCallbacks.push(fn);
}
};
var offPushMessage = function offPushMessage(fn) {
if (!fn) {
onPushMessageCallbacks.length = 0;
} else {
var index = onPushMessageCallbacks.indexOf(fn);
if (index > -1) {
onPushMessageCallbacks.splice(index, 1);
}
}
};
var baseInfo = wx.getAppBaseInfo && wx.getAppBaseInfo();
if (!baseInfo) {
baseInfo = wx.getSystemInfoSync();
}
var host = baseInfo ? baseInfo.host : null;
var shareVideoMessage = host && host.env === 'SAAASDK' ? wx.miniapp.shareVideoMessage : wx.shareVideoMessage;
var api = /*#__PURE__*/Object.freeze({
__proto__: null,
shareVideoMessage: shareVideoMessage,
getPushClientId: getPushClientId,
onPushMessage: onPushMessage,
offPushMessage: offPushMessage,
invokePushCallback: invokePushCallback
});
var mocks = ['__route__', '__wxExparserNodeId__', '__wxWebviewId__'];
function findVmByVueId(vm, vuePid) {
var $children = vm.$children;
// 优先查找直属(反向查找:https://github.com/dcloudio/uni-app/issues/1200)
for (var i = $children.length - 1; i >= 0; i--) {
var childVm = $children[i];
if (childVm.$scope._$vueId === vuePid) {
return childVm;
}
}
// 反向递归查找
var parentVm;
for (var _i = $children.length - 1; _i >= 0; _i--) {
parentVm = findVmByVueId($children[_i], vuePid);
if (parentVm) {
return parentVm;
}
}
}
function initBehavior(options) {
return Behavior(options);
}
function isPage() {
return !!this.route;
}
function initRelation(detail) {
this.triggerEvent('__l', detail);
}
function selectAllComponents(mpInstance, selector, $refs) {
var components = mpInstance.selectAllComponents(selector) || [];
components.forEach(function (component) {
var ref = component.dataset.ref;
$refs[ref] = component.$vm || toSkip(component);
{
if (component.dataset.vueGeneric === 'scoped') {
component.selectAllComponents('.scoped-ref').forEach(function (scopedComponent) {
selectAllComponents(scopedComponent, selector, $refs);
});
}
}
});
}
function syncRefs(refs, newRefs) {
var oldKeys = (0, _construct2.default)(Set, (0, _toConsumableArray2.default)(Object.keys(refs)));
var newKeys = Object.keys(newRefs);
newKeys.forEach(function (key) {
var oldValue = refs[key];
var newValue = newRefs[key];
if (Array.isArray(oldValue) && Array.isArray(newValue) && oldValue.length === newValue.length && newValue.every(function (value) {
return oldValue.includes(value);
})) {
return;
}
refs[key] = newValue;
oldKeys.delete(key);
});
oldKeys.forEach(function (key) {
delete refs[key];
});
return refs;
}
function initRefs(vm) {
var mpInstance = vm.$scope;
var refs = {};
Object.defineProperty(vm, '$refs', {
get: function get() {
var $refs = {};
selectAllComponents(mpInstance, '.vue-ref', $refs);
// TODO 暂不考虑 for 中的 scoped
var forComponents = mpInstance.selectAllComponents('.vue-ref-in-for') || [];
forComponents.forEach(function (component) {
var ref = component.dataset.ref;
if (!$refs[ref]) {
$refs[ref] = [];
}
$refs[ref].push(component.$vm || toSkip(component));
});
return syncRefs(refs, $refs);
}
});
}
function handleLink(event) {
var _ref3 = event.detail || event.value,
vuePid = _ref3.vuePid,
vueOptions = _ref3.vueOptions; // detail 是微信,value 是百度(dipatch)
var parentVm;
if (vuePid) {
parentVm = findVmByVueId(this.$vm, vuePid);
}
if (!parentVm) {
parentVm = this.$vm;
}
vueOptions.parent = parentVm;
}
function markMPComponent(component) {
// 在 Vue 中标记为小程序组件
var IS_MP = '__v_isMPComponent';
Object.defineProperty(component, IS_MP, {
configurable: true,
enumerable: false,
value: true
});
return component;
}
function toSkip(obj) {
var OB = '__ob__';
var SKIP = '__v_skip';
if (isObject(obj) && Object.isExtensible(obj)) {
// 避免被 @vue/composition-api 观测
Object.defineProperty(obj, OB, {
configurable: true,
enumerable: false,
value: (0, _defineProperty2.default)({}, SKIP, true)
});
}
return obj;
}
var WORKLET_RE = /_(.*)_worklet_factory_/;
function initWorkletMethods(mpMethods, vueMethods) {
if (vueMethods) {
Object.keys(vueMethods).forEach(function (name) {
var matches = name.match(WORKLET_RE);
if (matches) {
var workletName = matches[1];
mpMethods[name] = vueMethods[name];
mpMethods[workletName] = vueMethods[workletName];
}
});
}
}
var MPPage = Page;
var MPComponent = Component;
var customizeRE = /:/g;
var customize = cached(function (str) {
return camelize(str.replace(customizeRE, '-'));
});
function initTriggerEvent(mpInstance) {
var oldTriggerEvent = mpInstance.triggerEvent;
var newTriggerEvent = function newTriggerEvent(event) {
for (var _len3 = arguments.length, args = new Array(_len3 > 1 ? _len3 - 1 : 0), _key3 = 1; _key3 < _len3; _key3++) {
args[_key3 - 1] = arguments[_key3];
}
// 事件名统一转驼峰格式,仅处理:当前组件为 vue 组件、当前组件为 vue 组件子组件
if (this.$vm || this.dataset && this.dataset.comType) {
event = customize(event);
} else {
// 针对微信/QQ小程序单独补充驼峰格式事件以兼容历史项目
var newEvent = customize(event);
if (newEvent !== event) {
oldTriggerEvent.apply(this, [newEvent].concat(args));
}
}
return oldTriggerEvent.apply(this, [event].concat(args));
};
try {
// 京东小程序 triggerEvent 为只读
mpInstance.triggerEvent = newTriggerEvent;
} catch (error) {
mpInstance._triggerEvent = newTriggerEvent;
}
}
function initHook(name, options, isComponent) {
var oldHook = options[name];
options[name] = function () {
markMPComponent(this);
initTriggerEvent(this);
if (oldHook) {
for (var _len4 = arguments.length, args = new Array(_len4), _key4 = 0; _key4 < _len4; _key4++) {
args[_key4] = arguments[_key4];
}
return oldHook.apply(this, args);
}
};
}
if (!MPPage.__$wrappered) {
MPPage.__$wrappered = true;
Page = function Page() {
var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
initHook('onLoad', options);
return MPPage(options);
};
Page.after = MPPage.after;
Component = function Component() {
var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
initHook('created', options);
return MPComponent(options);
};
}
var PAGE_EVENT_HOOKS = ['onPullDownRefresh', 'onReachBottom', 'onAddToFavorites', 'onShareTimeline', 'onShareAppMessage', 'onPageScroll', 'onResize', 'onTabItemTap'];
function initMocks(vm, mocks) {
var mpInstance = vm.$mp[vm.mpType];
mocks.forEach(function (mock) {
if (hasOwn(mpInstance, mock)) {
vm[mock] = mpInstance[mock];
}
});
}
function hasHook(hook, vueOptions) {
if (!vueOptions) {
return true;
}
if (_vue.default.options && Array.isArray(_vue.default.options[hook])) {
return true;
}
vueOptions = vueOptions.default || vueOptions;
if (isFn(vueOptions)) {
if (isFn(vueOptions.extendOptions[hook])) {
return true;
}
if (vueOptions.super && vueOptions.super.options && Array.isArray(vueOptions.super.options[hook])) {
return true;
}
return false;
}
if (isFn(vueOptions[hook]) || Array.isArray(vueOptions[hook])) {
return true;
}
var mixins = vueOptions.mixins;
if (Array.isArray(mixins)) {
return !!mixins.find(function (mixin) {
return hasHook(hook, mixin);
});
}
}
function initHooks(mpOptions, hooks, vueOptions) {
hooks.forEach(function (hook) {
if (hasHook(hook, vueOptions)) {
mpOptions[hook] = function (args) {
return this.$vm && this.$vm.__call_hook(hook, args);
};
}
});
}
function initUnknownHooks(mpOptions, vueOptions) {
var excludes = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : [];
findHooks(vueOptions).forEach(function (hook) {
return initHook$1(mpOptions, hook, excludes);
});
}
function findHooks(vueOptions) {
var hooks = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : [];
if (vueOptions) {
Object.keys(vueOptions).forEach(function (name) {
if (name.indexOf('on') === 0 && isFn(vueOptions[name])) {
hooks.push(name);
}
});
}
return hooks;
}
function initHook$1(mpOptions, hook, excludes) {
if (excludes.indexOf(hook) === -1 && !hasOwn(mpOptions, hook)) {
mpOptions[hook] = function (args) {
return this.$vm && this.$vm.__call_hook(hook, args);
};
}
}
function initVueComponent(Vue, vueOptions) {
vueOptions = vueOptions.default || vueOptions;
var VueComponent;
if (isFn(vueOptions)) {
VueComponent = vueOptions;
} else {
VueComponent = Vue.extend(vueOptions);
}
vueOptions = VueComponent.options;
return [VueComponent, vueOptions];
}
function initSlots(vm, vueSlots) {
if (Array.isArray(vueSlots) && vueSlots.length) {
var $slots = Object.create(null);
vueSlots.forEach(function (slotName) {
$slots[slotName] = true;
});
vm.$scopedSlots = vm.$slots = $slots;
}
}
function initVueIds(vueIds, mpInstance) {
vueIds = (vueIds || '').split(',');
var len = vueIds.length;
if (len === 1) {
mpInstance._$vueId = vueIds[0];
} else if (len === 2) {
mpInstance._$vueId = vueIds[0];
mpInstance._$vuePid = vueIds[1];
}
}
function initData(vueOptions, context) {
var data = vueOptions.data || {};
var methods = vueOptions.methods || {};
if (typeof data === 'function') {
try {
data = data.call(context); // 支持 Vue.prototype 上挂的数据
} catch (e) {
if (Object({"NODE_ENV":"development","VUE_APP_DARK_MODE":"false","VUE_APP_NAME":"intelligentGroup","VUE_APP_PLATFORM":"mp-weixin","BASE_URL":"/"}).VUE_APP_DEBUG) {
console.warn('根据 Vue 的 data 函数初始化小程序 data 失败,请尽量确保 data 函数中不访问 vm 对象,否则可能影响首次数据渲染速度。', data);
}
}
} else {
try {
// 对 data 格式化
data = JSON.parse(JSON.stringify(data));
} catch (e) {}
}
if (!isPlainObject(data)) {
data = {};
}
Object.keys(methods).forEach(function (methodName) {
if (context.__lifecycle_hooks__.indexOf(methodName) === -1 && !hasOwn(data, methodName)) {
data[methodName] = methods[methodName];
}
});
return data;
}
var PROP_TYPES = [String, Number, Boolean, Object, Array, null];
function createObserver(name) {
return function observer(newVal, oldVal) {
if (this.$vm) {
this.$vm[name] = newVal; // 为了触发其他非 render watcher
}
};
}
function initBehaviors(vueOptions, initBehavior) {
var vueBehaviors = vueOptions.behaviors;
var vueExtends = vueOptions.extends;
var vueMixins = vueOptions.mixins;
var vueProps = vueOptions.props;
if (!vueProps) {
vueOptions.props = vueProps = [];
}
var behaviors = [];
if (Array.isArray(vueBehaviors)) {
vueBehaviors.forEach(function (behavior) {
behaviors.push(behavior.replace('uni://', "wx".concat("://")));
if (behavior === 'uni://form-field') {
if (Array.isArray(vueProps)) {
vueProps.push('name');
vueProps.push('value');
} else {
vueProps.name = {
type: String,
default: ''
};
vueProps.value = {
type: [String, Number, Boolean, Array, Object, Date],
default: ''
};
}
}
});
}
if (isPlainObject(vueExtends) && vueExtends.props) {
behaviors.push(initBehavior({
properties: initProperties(vueExtends.props, true)
}));
}
if (Array.isArray(vueMixins)) {
vueMixins.forEach(function (vueMixin) {
if (isPlainObject(vueMixin) && vueMixin.props) {
behaviors.push(initBehavior({
properties: initProperties(vueMixin.props, true)
}));
}
});
}
return behaviors;
}
function parsePropType(key, type, defaultValue, file) {
// [String]=>String
if (Array.isArray(type) && type.length === 1) {
return type[0];
}
return type;
}
function initProperties(props) {
var isBehavior = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
var file = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : '';
var options = arguments.length > 3 ? arguments[3] : undefined;
var properties = {};
if (!isBehavior) {
properties.vueId = {
type: String,
value: ''
};
{
if (options.virtualHost) {
properties.virtualHostStyle = {
type: null,
value: ''
};
properties.virtualHostClass = {
type: null,
value: ''
};
}
}
// scopedSlotsCompiler auto
properties.scopedSlotsCompiler = {
type: String,
value: ''
};
properties.vueSlots = {
// 小程序不能直接定义 $slots 的 props所以通过 vueSlots 转换到 $slots
type: null,
value: [],
observer: function observer(newVal, oldVal) {
var $slots = Object.create(null);
newVal.forEach(function (slotName) {
$slots[slotName] = true;
});
this.setData({
$slots: $slots
});
}
};
}
if (Array.isArray(props)) {
// ['title']
props.forEach(function (key) {
properties[key] = {
type: null,
observer: createObserver(key)
};
});
} else if (isPlainObject(props)) {
// {title:{type:String,default:''},content:String}
Object.keys(props).forEach(function (key) {
var opts = props[key];
if (isPlainObject(opts)) {
// title:{type:String,default:''}
var value = opts.default;
if (isFn(value)) {
value = value();
}
opts.type = parsePropType(key, opts.type);
properties[key] = {
type: PROP_TYPES.indexOf(opts.type) !== -1 ? opts.type : null,
value: value,
observer: createObserver(key)
};
} else {
// content:String
var type = parsePropType(key, opts);
properties[key] = {
type: PROP_TYPES.indexOf(type) !== -1 ? type : null,
observer: createObserver(key)
};
}
});
}
return properties;
}
function wrapper$1(event) {
// TODO 又得兼容 mpvue 的 mp 对象
try {
event.mp = JSON.parse(JSON.stringify(event));
} catch (e) {}
event.stopPropagation = noop;
event.preventDefault = noop;
event.target = event.target || {};
if (!hasOwn(event, 'detail')) {
event.detail = {};
}
if (hasOwn(event, 'markerId')) {
event.detail = (0, _typeof2.default)(event.detail) === 'object' ? event.detail : {};
event.detail.markerId = event.markerId;
}
if (isPlainObject(event.detail)) {
event.target = Object.assign({}, event.target, event.detail);
}
return event;
}
function getExtraValue(vm, dataPathsArray) {
var context = vm;
dataPathsArray.forEach(function (dataPathArray) {
var dataPath = dataPathArray[0];
var value = dataPathArray[2];
if (dataPath || typeof value !== 'undefined') {
// ['','',index,'disable']
var propPath = dataPathArray[1];
var valuePath = dataPathArray[3];
var vFor;
if (Number.isInteger(dataPath)) {
vFor = dataPath;
} else if (!dataPath) {
vFor = context;
} else if (typeof dataPath === 'string' && dataPath) {
if (dataPath.indexOf('#s#') === 0) {
vFor = dataPath.substr(3);
} else {
vFor = vm.__get_value(dataPath, context);
}
}
if (Number.isInteger(vFor)) {
context = value;
} else if (!propPath) {
context = vFor[value];
} else {
if (Array.isArray(vFor)) {
context = vFor.find(function (vForItem) {
return vm.__get_value(propPath, vForItem) === value;
});
} else if (isPlainObject(vFor)) {
context = Object.keys(vFor).find(function (vForKey) {
return vm.__get_value(propPath, vFor[vForKey]) === value;
});
} else {
console.error('v-for 暂不支持循环数据:', vFor);
}
}
if (valuePath) {
context = vm.__get_value(valuePath, context);
}
}
});
return context;
}
function processEventExtra(vm, extra, event, __args__) {
var extraObj = {};
if (Array.isArray(extra) && extra.length) {
/**
*[
* ['data.items', 'data.id', item.data.id],
* ['metas', 'id', meta.id]
*],
*[
* ['data.items', 'data.id', item.data.id],
* ['metas', 'id', meta.id]
*],
*'test'
*/
extra.forEach(function (dataPath, index) {
if (typeof dataPath === 'string') {
if (!dataPath) {
// model,prop.sync
extraObj['$' + index] = vm;
} else {
if (dataPath === '$event') {
// $event
extraObj['$' + index] = event;
} else if (dataPath === 'arguments') {
extraObj['$' + index] = event.detail ? event.detail.__args__ || __args__ : __args__;
} else if (dataPath.indexOf('$event.') === 0) {
// $event.target.value
extraObj['$' + index] = vm.__get_value(dataPath.replace('$event.', ''), event);
} else {
extraObj['$' + index] = vm.__get_value(dataPath);
}
}
} else {
extraObj['$' + index] = getExtraValue(vm, dataPath);
}
});
}
return extraObj;
}
function getObjByArray(arr) {
var obj = {};
for (var i = 1; i < arr.length; i++) {
var element = arr[i];
obj[element[0]] = element[1];
}
return obj;
}
function processEventArgs(vm, event) {
var args = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : [];
var extra = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : [];
var isCustom = arguments.length > 4 ? arguments[4] : undefined;
var methodName = arguments.length > 5 ? arguments[5] : undefined;
var isCustomMPEvent = false; // wxcomponent 组件,传递原始 event 对象
// fixed 用户直接触发 mpInstance.triggerEvent
var __args__ = isPlainObject(event.detail) ? event.detail.__args__ || [event.detail] : [event.detail];
if (isCustom) {
// 自定义事件
isCustomMPEvent = event.currentTarget && event.currentTarget.dataset && event.currentTarget.dataset.comType === 'wx';
if (!args.length) {
// 无参数,直接传入 event 或 detail 数组
if (isCustomMPEvent) {
return [event];
}
return __args__;
}
}
var extraObj = processEventExtra(vm, extra, event, __args__);
var ret = [];
args.forEach(function (arg) {
if (arg === '$event') {
if (methodName === '__set_model' && !isCustom) {
// input v-model value
ret.push(event.target.value);
} else {
if (isCustom && !isCustomMPEvent) {
ret.push(__args__[0]);
} else {
// wxcomponent 组件或内置组件
ret.push(event);
}
}
} else {
if (Array.isArray(arg) && arg[0] === 'o') {
ret.push(getObjByArray(arg));
} else if (typeof arg === 'string' && hasOwn(extraObj, arg)) {
ret.push(extraObj[arg]);
} else {
ret.push(arg);
}
}
});
return ret;
}
var ONCE = '~';
var CUSTOM = '^';
function isMatchEventType(eventType, optType) {
return eventType === optType || optType === 'regionchange' && (eventType === 'begin' || eventType === 'end');
}
function getContextVm(vm) {
var $parent = vm.$parent;
// 父组件是 scoped slots 或者其他自定义组件时继续查找
while ($parent && $parent.$parent && ($parent.$options.generic || $parent.$parent.$options.generic || $parent.$scope._$vuePid)) {
$parent = $parent.$parent;
}
return $parent && $parent.$parent;
}
function handleEvent(event) {
var _this2 = this;
event = wrapper$1(event);
// [['tap',[['handle',[1,2,a]],['handle1',[1,2,a]]]]]
var dataset = (event.currentTarget || event.target).dataset;
if (!dataset) {
return console.warn('事件信息不存在');
}
var eventOpts = dataset.eventOpts || dataset['event-opts']; // 支付宝 web-view 组件 dataset 非驼峰
if (!eventOpts) {
return console.warn('事件信息不存在');
}
// [['handle',[1,2,a]],['handle1',[1,2,a]]]
var eventType = event.type;
var ret = [];
eventOpts.forEach(function (eventOpt) {
var type = eventOpt[0];
var eventsArray = eventOpt[1];
var isCustom = type.charAt(0) === CUSTOM;
type = isCustom ? type.slice(1) : type;
var isOnce = type.charAt(0) === ONCE;
type = isOnce ? type.slice(1) : type;
if (eventsArray && isMatchEventType(eventType, type)) {
eventsArray.forEach(function (eventArray) {
var methodName = eventArray[0];
if (methodName) {
var handlerCtx = _this2.$vm;
if (handlerCtx.$options.generic) {
// mp-weixin,mp-toutiao 抽象节点模拟 scoped slots
handlerCtx = getContextVm(handlerCtx) || handlerCtx;
}
if (methodName === '$emit') {
handlerCtx.$emit.apply(handlerCtx, processEventArgs(_this2.$vm, event, eventArray[1], eventArray[2], isCustom, methodName));
return;
}
var handler = handlerCtx[methodName];
if (!isFn(handler)) {
var _type = _this2.$vm.mpType === 'page' ? 'Page' : 'Component';
var path = _this2.route || _this2.is;
throw new Error("".concat(_type, " \"").concat(path, "\" does not have a method \"").concat(methodName, "\""));
}
if (isOnce) {
if (handler.once) {
return;
}
handler.once = true;
}
var params = processEventArgs(_this2.$vm, event, eventArray[1], eventArray[2], isCustom, methodName);
params = Array.isArray(params) ? params : [];
// 参数尾部增加原始事件对象用于复杂表达式内获取额外数据
if (/=\s*\S+\.eventParams\s*\|\|\s*\S+\[['"]event-params['"]\]/.test(handler.toString())) {
// eslint-disable-next-line no-sparse-arrays
params = params.concat([,,,,,,,,,, event]);
}
ret.push(handler.apply(handlerCtx, params));
}
});
}
});
if (eventType === 'input' && ret.length === 1 && typeof ret[0] !== 'undefined') {
return ret[0];
}
}
var eventChannels = {};
function getEventChannel(id) {
var eventChannel = eventChannels[id];
delete eventChannels[id];
return eventChannel;
}
var hooks = ['onShow', 'onHide', 'onError', 'onPageNotFound', 'onThemeChange', 'onUnhandledRejection'];
function initEventChannel() {
_vue.default.prototype.getOpenerEventChannel = function () {
// 微信小程序使用自身getOpenerEventChannel
{
return this.$scope.getOpenerEventChannel();
}
};
var callHook = _vue.default.prototype.__call_hook;
_vue.default.prototype.__call_hook = function (hook, args) {
if (hook === 'onLoad' && args && args.__id__) {
this.__eventChannel__ = getEventChannel(args.__id__);
delete args.__id__;
}
return callHook.call(this, hook, args);
};
}
function initScopedSlotsParams() {
var center = {};
var parents = {};
function currentId(fn) {
var vueIds = this.$options.propsData.vueId;
if (vueIds) {
var vueId = vueIds.split(',')[0];
fn(vueId);
}
}
_vue.default.prototype.$hasSSP = function (vueId) {
var slot = center[vueId];
if (!slot) {
parents[vueId] = this;
this.$on('hook:destroyed', function () {
delete parents[vueId];
});
}
return slot;
};
_vue.default.prototype.$getSSP = function (vueId, name, needAll) {
var slot = center[vueId];
if (slot) {
var params = slot[name] || [];
if (needAll) {
return params;
}
return params[0];
}
};
_vue.default.prototype.$setSSP = function (name, value) {
var index = 0;
currentId.call(this, function (vueId) {
var slot = center[vueId];
var params = slot[name] = slot[name] || [];
params.push(value);
index = params.length - 1;
});
return index;
};
_vue.default.prototype.$initSSP = function () {
currentId.call(this, function (vueId) {
center[vueId] = {};
});
};
_vue.default.prototype.$callSSP = function () {
currentId.call(this, function (vueId) {
if (parents[vueId]) {
parents[vueId].$forceUpdate();
}
});
};
_vue.default.mixin({
destroyed: function destroyed() {
var propsData = this.$options.propsData;
var vueId = propsData && propsData.vueId;
if (vueId) {
delete center[vueId];
delete parents[vueId];
}
}
});
}
function parseBaseApp(vm, _ref4) {
var mocks = _ref4.mocks,
initRefs = _ref4.initRefs;
initEventChannel();
{
initScopedSlotsParams();
}
if (vm.$options.store) {
_vue.default.prototype.$store = vm.$options.store;
}
uniIdMixin(_vue.default);
_vue.default.prototype.mpHost = "mp-weixin";
_vue.default.mixin({
beforeCreate: function beforeCreate() {
if (!this.$options.mpType) {
return;
}
this.mpType = this.$options.mpType;
this.$mp = (0, _defineProperty2.default)({
data: {}
}, this.mpType, this.$options.mpInstance);
this.$scope = this.$options.mpInstance;
delete this.$options.mpType;
delete this.$options.mpInstance;
if (this.mpType === 'page' && typeof getApp === 'function') {
// hack vue-i18n
var app = getApp();
if (app.$vm && app.$vm.$i18n) {
this._i18n = app.$vm.$i18n;
}
}
if (this.mpType !== 'app') {
initRefs(this);
initMocks(this, mocks);
}
}
});
var appOptions = {
onLaunch: function onLaunch(args) {
if (this.$vm) {
// 已经初始化过了,主要是为了百度,百度 onShow 在 onLaunch 之前
return;
}
{
if (wx.canIUse && !wx.canIUse('nextTick')) {
// 事实 上2.2.3 即可,简单使用 2.3.0 的 nextTick 判断
console.error('当前微信基础库版本过低,请将 微信开发者工具-详情-项目设置-调试基础库版本 更换为`2.3.0`以上');
}
}
this.$vm = vm;
this.$vm.$mp = {
app: this
};
this.$vm.$scope = this;
// vm 上也挂载 globalData
this.$vm.globalData = this.globalData;
this.$vm._isMounted = true;
this.$vm.__call_hook('mounted', args);
this.$vm.__call_hook('onLaunch', args);
}
};
// 兼容旧版本 globalData
appOptions.globalData = vm.$options.globalData || {};
// 将 methods 中的方法挂在 getApp() 中
var methods = vm.$options.methods;
if (methods) {
Object.keys(methods).forEach(function (name) {
appOptions[name] = methods[name];
});
}
initAppLocale(_vue.default, vm, normalizeLocale(wx.getSystemInfoSync().language) || LOCALE_EN);
initHooks(appOptions, hooks);
initUnknownHooks(appOptions, vm.$options);
return appOptions;
}
function parseApp(vm) {
return parseBaseApp(vm, {
mocks: mocks,
initRefs: initRefs
});
}
function createApp(vm) {
App(parseApp(vm));
return vm;
}
var encodeReserveRE = /[!'()*]/g;
var encodeReserveReplacer = function encodeReserveReplacer(c) {
return '%' + c.charCodeAt(0).toString(16);
};
var commaRE = /%2C/g;
// fixed encodeURIComponent which is more conformant to RFC3986:
// - escapes [!'()*]
// - preserve commas
var encode = function encode(str) {
return encodeURIComponent(str).replace(encodeReserveRE, encodeReserveReplacer).replace(commaRE, ',');
};
function stringifyQuery(obj) {
var encodeStr = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : encode;
var res = obj ? Object.keys(obj).map(function (key) {
var val = obj[key];
if (val === undefined) {
return '';
}
if (val === null) {
return encodeStr(key);
}
if (Array.isArray(val)) {
var result = [];
val.forEach(function (val2) {
if (val2 === undefined) {
return;
}
if (val2 === null) {
result.push(encodeStr(key));
} else {
result.push(encodeStr(key) + '=' + encodeStr(val2));
}
});
return result.join('&');
}
return encodeStr(key) + '=' + encodeStr(val);
}).filter(function (x) {
return x.length > 0;
}).join('&') : null;
return res ? "?".concat(res) : '';
}
function parseBaseComponent(vueComponentOptions) {
var _ref5 = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {},
isPage = _ref5.isPage,
initRelation = _ref5.initRelation;
var needVueOptions = arguments.length > 2 ? arguments[2] : undefined;
var _initVueComponent = initVueComponent(_vue.default, vueComponentOptions),
_initVueComponent2 = (0, _slicedToArray2.default)(_initVueComponent, 2),
VueComponent = _initVueComponent2[0],
vueOptions = _initVueComponent2[1];
var options = _objectSpread({
multipleSlots: true,
// styleIsolation: 'apply-shared',
addGlobalClass: true
}, vueOptions.options || {});
{
// 微信 multipleSlots 部分情况有 bug导致内容顺序错乱 如 u-list提供覆盖选项
if (vueOptions['mp-weixin'] && vueOptions['mp-weixin'].options) {
Object.assign(options, vueOptions['mp-weixin'].options);
}
}
var componentOptions = {
options: options,
data: initData(vueOptions, _vue.default.prototype),
behaviors: initBehaviors(vueOptions, initBehavior),
properties: initProperties(vueOptions.props, false, vueOptions.__file, options),
lifetimes: {
attached: function attached() {
var properties = this.properties;
var options = {
mpType: isPage.call(this) ? 'page' : 'component',
mpInstance: this,
propsData: properties
};
initVueIds(properties.vueId, this);
// 处理父子关系
initRelation.call(this, {
vuePid: this._$vuePid,
vueOptions: options
});
// 初始化 vue 实例
this.$vm = new VueComponent(options);
// 处理$slots,$scopedSlots暂不支持动态变化$slots
initSlots(this.$vm, properties.vueSlots);
// 触发首次 setData
this.$vm.$mount();
},
ready: function ready() {
// 当组件 props 默认值为 true初始化时传入 false 会导致 created,ready 触发, 但 attached 不触发
// https://developers.weixin.qq.com/community/develop/doc/00066ae2844cc0f8eb883e2a557800
if (this.$vm) {
this.$vm._isMounted = true;
this.$vm.__call_hook('mounted');
this.$vm.__call_hook('onReady');
}
},
detached: function detached() {
this.$vm && this.$vm.$destroy();
}
},
pageLifetimes: {
show: function show(args) {
this.$vm && this.$vm.__call_hook('onPageShow', args);
},
hide: function hide() {
this.$vm && this.$vm.__call_hook('onPageHide');
},
resize: function resize(size) {
this.$vm && this.$vm.__call_hook('onPageResize', size);
}
},
methods: {
__l: handleLink,
__e: handleEvent
}
};
// externalClasses
if (vueOptions.externalClasses) {
componentOptions.externalClasses = vueOptions.externalClasses;
}
if (Array.isArray(vueOptions.wxsCallMethods)) {
vueOptions.wxsCallMethods.forEach(function (callMethod) {
componentOptions.methods[callMethod] = function (args) {
return this.$vm[callMethod](args);
};
});
}
if (needVueOptions) {
return [componentOptions, vueOptions, VueComponent];
}
if (isPage) {
return componentOptions;
}
return [componentOptions, VueComponent];
}
function parseComponent(vueComponentOptions, needVueOptions) {
return parseBaseComponent(vueComponentOptions, {
isPage: isPage,
initRelation: initRelation
}, needVueOptions);
}
var hooks$1 = ['onShow', 'onHide', 'onUnload'];
hooks$1.push.apply(hooks$1, PAGE_EVENT_HOOKS);
function parseBasePage(vuePageOptions) {
var _parseComponent = parseComponent(vuePageOptions, true),
_parseComponent2 = (0, _slicedToArray2.default)(_parseComponent, 2),
pageOptions = _parseComponent2[0],
vueOptions = _parseComponent2[1];
initHooks(pageOptions.methods, hooks$1, vueOptions);
pageOptions.methods.onLoad = function (query) {
this.options = query;
var copyQuery = Object.assign({}, query);
delete copyQuery.__id__;
this.$page = {
fullPath: '/' + (this.route || this.is) + stringifyQuery(copyQuery)
};
this.$vm.$mp.query = query; // 兼容 mpvue
this.$vm.__call_hook('onLoad', query);
};
{
initUnknownHooks(pageOptions.methods, vuePageOptions, ['onReady']);
}
{
initWorkletMethods(pageOptions.methods, vueOptions.methods);
}
return pageOptions;
}
function parsePage(vuePageOptions) {
return parseBasePage(vuePageOptions);
}
function createPage(vuePageOptions) {
{
return Component(parsePage(vuePageOptions));
}
}
function createComponent(vueOptions) {
{
return Component(parseComponent(vueOptions));
}
}
function createSubpackageApp(vm) {
var appOptions = parseApp(vm);
var app = getApp({
allowDefault: true
});
vm.$scope = app;
var globalData = app.globalData;
if (globalData) {
Object.keys(appOptions.globalData).forEach(function (name) {
if (!hasOwn(globalData, name)) {
globalData[name] = appOptions.globalData[name];
}
});
}
Object.keys(appOptions).forEach(function (name) {
if (!hasOwn(app, name)) {
app[name] = appOptions[name];
}
});
if (isFn(appOptions.onShow) && wx.onAppShow) {
wx.onAppShow(function () {
for (var _len5 = arguments.length, args = new Array(_len5), _key5 = 0; _key5 < _len5; _key5++) {
args[_key5] = arguments[_key5];
}
vm.__call_hook('onShow', args);
});
}
if (isFn(appOptions.onHide) && wx.onAppHide) {
wx.onAppHide(function () {
for (var _len6 = arguments.length, args = new Array(_len6), _key6 = 0; _key6 < _len6; _key6++) {
args[_key6] = arguments[_key6];
}
vm.__call_hook('onHide', args);
});
}
if (isFn(appOptions.onLaunch)) {
var args = wx.getLaunchOptionsSync && wx.getLaunchOptionsSync();
vm.__call_hook('onLaunch', args);
}
return vm;
}
function createPlugin(vm) {
var appOptions = parseApp(vm);
if (isFn(appOptions.onShow) && wx.onAppShow) {
wx.onAppShow(function () {
for (var _len7 = arguments.length, args = new Array(_len7), _key7 = 0; _key7 < _len7; _key7++) {
args[_key7] = arguments[_key7];
}
vm.__call_hook('onShow', args);
});
}
if (isFn(appOptions.onHide) && wx.onAppHide) {
wx.onAppHide(function () {
for (var _len8 = arguments.length, args = new Array(_len8), _key8 = 0; _key8 < _len8; _key8++) {
args[_key8] = arguments[_key8];
}
vm.__call_hook('onHide', args);
});
}
if (isFn(appOptions.onLaunch)) {
var args = wx.getLaunchOptionsSync && wx.getLaunchOptionsSync();
vm.__call_hook('onLaunch', args);
}
return vm;
}
todos.forEach(function (todoApi) {
protocols[todoApi] = false;
});
canIUses.forEach(function (canIUseApi) {
var apiName = protocols[canIUseApi] && protocols[canIUseApi].name ? protocols[canIUseApi].name : canIUseApi;
if (!wx.canIUse(apiName)) {
protocols[canIUseApi] = false;
}
});
var uni = {};
if (typeof Proxy !== 'undefined' && "mp-weixin" !== 'app-plus') {
uni = new Proxy({}, {
get: function get(target, name) {
if (hasOwn(target, name)) {
return target[name];
}
if (baseApi[name]) {
return baseApi[name];
}
if (api[name]) {
return promisify(name, api[name]);
}
{
if (extraApi[name]) {
return promisify(name, extraApi[name]);
}
if (todoApis[name]) {
return promisify(name, todoApis[name]);
}
}
if (eventApi[name]) {
return eventApi[name];
}
return promisify(name, wrapper(name, wx[name]));
},
set: function set(target, name, value) {
target[name] = value;
return true;
}
});
} else {
Object.keys(baseApi).forEach(function (name) {
uni[name] = baseApi[name];
});
{
Object.keys(todoApis).forEach(function (name) {
uni[name] = promisify(name, todoApis[name]);
});
Object.keys(extraApi).forEach(function (name) {
uni[name] = promisify(name, extraApi[name]);
});
}
Object.keys(eventApi).forEach(function (name) {
uni[name] = eventApi[name];
});
Object.keys(api).forEach(function (name) {
uni[name] = promisify(name, api[name]);
});
Object.keys(wx).forEach(function (name) {
if (hasOwn(wx, name) || hasOwn(protocols, name)) {
uni[name] = promisify(name, wrapper(name, wx[name]));
}
});
}
wx.createApp = createApp;
wx.createPage = createPage;
wx.createComponent = createComponent;
wx.createSubpackageApp = createSubpackageApp;
wx.createPlugin = createPlugin;
var uni$1 = uni;
var _default = uni$1;
exports.default = _default;
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/wx.js */ 1)["default"], __webpack_require__(/*! ./../../../webpack/buildin/global.js */ 3)))
/***/ }),
/***/ 20:
/*!****************************************************************!*\
!*** ./node_modules/@babel/runtime/helpers/iterableToArray.js ***!
\****************************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
function _iterableToArray(iter) {
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter);
}
module.exports = _iterableToArray, module.exports.__esModule = true, module.exports["default"] = module.exports;
/***/ }),
/***/ 21:
/*!******************************************************************!*\
!*** ./node_modules/@babel/runtime/helpers/nonIterableSpread.js ***!
\******************************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
function _nonIterableSpread() {
throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
}
module.exports = _nonIterableSpread, module.exports.__esModule = true, module.exports["default"] = module.exports;
/***/ }),
/***/ 22:
/*!*************************************************************!*\
!*** ./node_modules/@dcloudio/uni-i18n/dist/uni-i18n.es.js ***!
\*************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
/* WEBPACK VAR INJECTION */(function(uni, global) {
var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ 4);
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.LOCALE_ZH_HANT = exports.LOCALE_ZH_HANS = exports.LOCALE_FR = exports.LOCALE_ES = exports.LOCALE_EN = exports.I18n = exports.Formatter = void 0;
exports.compileI18nJsonStr = compileI18nJsonStr;
exports.hasI18nJson = hasI18nJson;
exports.initVueI18n = initVueI18n;
exports.isI18nStr = isI18nStr;
exports.isString = void 0;
exports.normalizeLocale = normalizeLocale;
exports.parseI18nJson = parseI18nJson;
exports.resolveLocale = resolveLocale;
var _slicedToArray2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/slicedToArray */ 5));
var _classCallCheck2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/classCallCheck */ 23));
var _createClass2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/createClass */ 24));
var _typeof2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/typeof */ 13));
var isObject = function isObject(val) {
return val !== null && (0, _typeof2.default)(val) === 'object';
};
var defaultDelimiters = ['{', '}'];
var BaseFormatter = /*#__PURE__*/function () {
function BaseFormatter() {
(0, _classCallCheck2.default)(this, BaseFormatter);
this._caches = Object.create(null);
}
(0, _createClass2.default)(BaseFormatter, [{
key: "interpolate",
value: function interpolate(message, values) {
var delimiters = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : defaultDelimiters;
if (!values) {
return [message];
}
var tokens = this._caches[message];
if (!tokens) {
tokens = parse(message, delimiters);
this._caches[message] = tokens;
}
return compile(tokens, values);
}
}]);
return BaseFormatter;
}();
exports.Formatter = BaseFormatter;
var RE_TOKEN_LIST_VALUE = /^(?:\d)+/;
var RE_TOKEN_NAMED_VALUE = /^(?:\w)+/;
function parse(format, _ref) {
var _ref2 = (0, _slicedToArray2.default)(_ref, 2),
startDelimiter = _ref2[0],
endDelimiter = _ref2[1];
var tokens = [];
var position = 0;
var text = '';
while (position < format.length) {
var char = format[position++];
if (char === startDelimiter) {
if (text) {
tokens.push({
type: 'text',
value: text
});
}
text = '';
var sub = '';
char = format[position++];
while (char !== undefined && char !== endDelimiter) {
sub += char;
char = format[position++];
}
var isClosed = char === endDelimiter;
var type = RE_TOKEN_LIST_VALUE.test(sub) ? 'list' : isClosed && RE_TOKEN_NAMED_VALUE.test(sub) ? 'named' : 'unknown';
tokens.push({
value: sub,
type: type
});
}
// else if (char === '%') {
// // when found rails i18n syntax, skip text capture
// if (format[position] !== '{') {
// text += char
// }
// }
else {
text += char;
}
}
text && tokens.push({
type: 'text',
value: text
});
return tokens;
}
function compile(tokens, values) {
var compiled = [];
var index = 0;
var mode = Array.isArray(values) ? 'list' : isObject(values) ? 'named' : 'unknown';
if (mode === 'unknown') {
return compiled;
}
while (index < tokens.length) {
var token = tokens[index];
switch (token.type) {
case 'text':
compiled.push(token.value);
break;
case 'list':
compiled.push(values[parseInt(token.value, 10)]);
break;
case 'named':
if (mode === 'named') {
compiled.push(values[token.value]);
} else {
if (true) {
console.warn("Type of token '".concat(token.type, "' and format of value '").concat(mode, "' don't match!"));
}
}
break;
case 'unknown':
if (true) {
console.warn("Detect 'unknown' type of token!");
}
break;
}
index++;
}
return compiled;
}
var LOCALE_ZH_HANS = 'zh-Hans';
exports.LOCALE_ZH_HANS = LOCALE_ZH_HANS;
var LOCALE_ZH_HANT = 'zh-Hant';
exports.LOCALE_ZH_HANT = LOCALE_ZH_HANT;
var LOCALE_EN = 'en';
exports.LOCALE_EN = LOCALE_EN;
var LOCALE_FR = 'fr';
exports.LOCALE_FR = LOCALE_FR;
var LOCALE_ES = 'es';
exports.LOCALE_ES = LOCALE_ES;
var hasOwnProperty = Object.prototype.hasOwnProperty;
var hasOwn = function hasOwn(val, key) {
return hasOwnProperty.call(val, key);
};
var defaultFormatter = new BaseFormatter();
function include(str, parts) {
return !!parts.find(function (part) {
return str.indexOf(part) !== -1;
});
}
function startsWith(str, parts) {
return parts.find(function (part) {
return str.indexOf(part) === 0;
});
}
function normalizeLocale(locale, messages) {
if (!locale) {
return;
}
locale = locale.trim().replace(/_/g, '-');
if (messages && messages[locale]) {
return locale;
}
locale = locale.toLowerCase();
if (locale === 'chinese') {
// 支付宝
return LOCALE_ZH_HANS;
}
if (locale.indexOf('zh') === 0) {
if (locale.indexOf('-hans') > -1) {
return LOCALE_ZH_HANS;
}
if (locale.indexOf('-hant') > -1) {
return LOCALE_ZH_HANT;
}
if (include(locale, ['-tw', '-hk', '-mo', '-cht'])) {
return LOCALE_ZH_HANT;
}
return LOCALE_ZH_HANS;
}
var locales = [LOCALE_EN, LOCALE_FR, LOCALE_ES];
if (messages && Object.keys(messages).length > 0) {
locales = Object.keys(messages);
}
var lang = startsWith(locale, locales);
if (lang) {
return lang;
}
}
var I18n = /*#__PURE__*/function () {
function I18n(_ref3) {
var locale = _ref3.locale,
fallbackLocale = _ref3.fallbackLocale,
messages = _ref3.messages,
watcher = _ref3.watcher,
formater = _ref3.formater;
(0, _classCallCheck2.default)(this, I18n);
this.locale = LOCALE_EN;
this.fallbackLocale = LOCALE_EN;
this.message = {};
this.messages = {};
this.watchers = [];
if (fallbackLocale) {
this.fallbackLocale = fallbackLocale;
}
this.formater = formater || defaultFormatter;
this.messages = messages || {};
this.setLocale(locale || LOCALE_EN);
if (watcher) {
this.watchLocale(watcher);
}
}
(0, _createClass2.default)(I18n, [{
key: "setLocale",
value: function setLocale(locale) {
var _this = this;
var oldLocale = this.locale;
this.locale = normalizeLocale(locale, this.messages) || this.fallbackLocale;
if (!this.messages[this.locale]) {
// 可能初始化时不存在
this.messages[this.locale] = {};
}
this.message = this.messages[this.locale];
// 仅发生变化时,通知
if (oldLocale !== this.locale) {
this.watchers.forEach(function (watcher) {
watcher(_this.locale, oldLocale);
});
}
}
}, {
key: "getLocale",
value: function getLocale() {
return this.locale;
}
}, {
key: "watchLocale",
value: function watchLocale(fn) {
var _this2 = this;
var index = this.watchers.push(fn) - 1;
return function () {
_this2.watchers.splice(index, 1);
};
}
}, {
key: "add",
value: function add(locale, message) {
var override = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : true;
var curMessages = this.messages[locale];
if (curMessages) {
if (override) {
Object.assign(curMessages, message);
} else {
Object.keys(message).forEach(function (key) {
if (!hasOwn(curMessages, key)) {
curMessages[key] = message[key];
}
});
}
} else {
this.messages[locale] = message;
}
}
}, {
key: "f",
value: function f(message, values, delimiters) {
return this.formater.interpolate(message, values, delimiters).join('');
}
}, {
key: "t",
value: function t(key, locale, values) {
var message = this.message;
if (typeof locale === 'string') {
locale = normalizeLocale(locale, this.messages);
locale && (message = this.messages[locale]);
} else {
values = locale;
}
if (!hasOwn(message, key)) {
console.warn("Cannot translate the value of keypath ".concat(key, ". Use the value of keypath as default."));
return key;
}
return this.formater.interpolate(message[key], values).join('');
}
}]);
return I18n;
}();
exports.I18n = I18n;
function watchAppLocale(appVm, i18n) {
// 需要保证 watch 的触发在组件渲染之前
if (appVm.$watchLocale) {
// vue2
appVm.$watchLocale(function (newLocale) {
i18n.setLocale(newLocale);
});
} else {
appVm.$watch(function () {
return appVm.$locale;
}, function (newLocale) {
i18n.setLocale(newLocale);
});
}
}
function getDefaultLocale() {
if (typeof uni !== 'undefined' && uni.getLocale) {
return uni.getLocale();
}
// 小程序平台uni 和 uni-i18n 互相引用,导致访问不到 uni故在 global 上挂了 getLocale
if (typeof global !== 'undefined' && global.getLocale) {
return global.getLocale();
}
return LOCALE_EN;
}
function initVueI18n(locale) {
var messages = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
var fallbackLocale = arguments.length > 2 ? arguments[2] : undefined;
var watcher = arguments.length > 3 ? arguments[3] : undefined;
// 兼容旧版本入参
if (typeof locale !== 'string') {
var _ref4 = [messages, locale];
locale = _ref4[0];
messages = _ref4[1];
}
if (typeof locale !== 'string') {
// 因为小程序平台uni-i18n 和 uni 互相引用,导致此时访问 uni 时,为 undefined
locale = getDefaultLocale();
}
if (typeof fallbackLocale !== 'string') {
fallbackLocale = typeof __uniConfig !== 'undefined' && __uniConfig.fallbackLocale || LOCALE_EN;
}
var i18n = new I18n({
locale: locale,
fallbackLocale: fallbackLocale,
messages: messages,
watcher: watcher
});
var _t = function t(key, values) {
if (typeof getApp !== 'function') {
// app view
/* eslint-disable no-func-assign */
_t = function t(key, values) {
return i18n.t(key, values);
};
} else {
var isWatchedAppLocale = false;
_t = function t(key, values) {
var appVm = getApp().$vm;
// 可能$vm还不存在比如在支付宝小程序中组件定义较早在props的default里使用了t()函数如uni-goods-nav此时app还未初始化
// options: {
// type: Array,
// default () {
// return [{
// icon: 'shop',
// text: t("uni-goods-nav.options.shop"),
// }, {
// icon: 'cart',
// text: t("uni-goods-nav.options.cart")
// }]
// }
// },
if (appVm) {
// 触发响应式
appVm.$locale;
if (!isWatchedAppLocale) {
isWatchedAppLocale = true;
watchAppLocale(appVm, i18n);
}
}
return i18n.t(key, values);
};
}
return _t(key, values);
};
return {
i18n: i18n,
f: function f(message, values, delimiters) {
return i18n.f(message, values, delimiters);
},
t: function t(key, values) {
return _t(key, values);
},
add: function add(locale, message) {
var override = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : true;
return i18n.add(locale, message, override);
},
watch: function watch(fn) {
return i18n.watchLocale(fn);
},
getLocale: function getLocale() {
return i18n.getLocale();
},
setLocale: function setLocale(newLocale) {
return i18n.setLocale(newLocale);
}
};
}
var isString = function isString(val) {
return typeof val === 'string';
};
exports.isString = isString;
var formater;
function hasI18nJson(jsonObj, delimiters) {
if (!formater) {
formater = new BaseFormatter();
}
return walkJsonObj(jsonObj, function (jsonObj, key) {
var value = jsonObj[key];
if (isString(value)) {
if (isI18nStr(value, delimiters)) {
return true;
}
} else {
return hasI18nJson(value, delimiters);
}
});
}
function parseI18nJson(jsonObj, values, delimiters) {
if (!formater) {
formater = new BaseFormatter();
}
walkJsonObj(jsonObj, function (jsonObj, key) {
var value = jsonObj[key];
if (isString(value)) {
if (isI18nStr(value, delimiters)) {
jsonObj[key] = compileStr(value, values, delimiters);
}
} else {
parseI18nJson(value, values, delimiters);
}
});
return jsonObj;
}
function compileI18nJsonStr(jsonStr, _ref5) {
var locale = _ref5.locale,
locales = _ref5.locales,
delimiters = _ref5.delimiters;
if (!isI18nStr(jsonStr, delimiters)) {
return jsonStr;
}
if (!formater) {
formater = new BaseFormatter();
}
var localeValues = [];
Object.keys(locales).forEach(function (name) {
if (name !== locale) {
localeValues.push({
locale: name,
values: locales[name]
});
}
});
localeValues.unshift({
locale: locale,
values: locales[locale]
});
try {
return JSON.stringify(compileJsonObj(JSON.parse(jsonStr), localeValues, delimiters), null, 2);
} catch (e) {}
return jsonStr;
}
function isI18nStr(value, delimiters) {
return value.indexOf(delimiters[0]) > -1;
}
function compileStr(value, values, delimiters) {
return formater.interpolate(value, values, delimiters).join('');
}
function compileValue(jsonObj, key, localeValues, delimiters) {
var value = jsonObj[key];
if (isString(value)) {
// 存在国际化
if (isI18nStr(value, delimiters)) {
jsonObj[key] = compileStr(value, localeValues[0].values, delimiters);
if (localeValues.length > 1) {
// 格式化国际化语言
var valueLocales = jsonObj[key + 'Locales'] = {};
localeValues.forEach(function (localValue) {
valueLocales[localValue.locale] = compileStr(value, localValue.values, delimiters);
});
}
}
} else {
compileJsonObj(value, localeValues, delimiters);
}
}
function compileJsonObj(jsonObj, localeValues, delimiters) {
walkJsonObj(jsonObj, function (jsonObj, key) {
compileValue(jsonObj, key, localeValues, delimiters);
});
return jsonObj;
}
function walkJsonObj(jsonObj, walk) {
if (Array.isArray(jsonObj)) {
for (var i = 0; i < jsonObj.length; i++) {
if (walk(jsonObj, i)) {
return true;
}
}
} else if (isObject(jsonObj)) {
for (var key in jsonObj) {
if (walk(jsonObj, key)) {
return true;
}
}
}
return false;
}
function resolveLocale(locales) {
return function (locale) {
if (!locale) {
return locale;
}
locale = normalizeLocale(locale) || locale;
return resolveLocaleChain(locale).find(function (locale) {
return locales.indexOf(locale) > -1;
});
};
}
function resolveLocaleChain(locale) {
var chain = [];
var tokens = locale.split('-');
while (tokens.length) {
chain.push(tokens.join('-'));
tokens.pop();
}
return chain;
}
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 2)["default"], __webpack_require__(/*! ./../../../webpack/buildin/global.js */ 3)))
/***/ }),
/***/ 23:
/*!***************************************************************!*\
!*** ./node_modules/@babel/runtime/helpers/classCallCheck.js ***!
\***************************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
function _classCallCheck(instance, Constructor) {
if (!(instance instanceof Constructor)) {
throw new TypeError("Cannot call a class as a function");
}
}
module.exports = _classCallCheck, module.exports.__esModule = true, module.exports["default"] = module.exports;
/***/ }),
/***/ 230:
/*!****************************************************************************************!*\
!*** E:/qiaocongli/小程序/智造团资源共享/intelligentGroup/uni_modules/u-parse/libs/html2json.js ***!
\****************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
/* WEBPACK VAR INJECTION */(function(wx) {
var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ 4);
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _wxDiscode = _interopRequireDefault(__webpack_require__(/*! ./wxDiscode */ 231));
var _htmlparser = _interopRequireDefault(__webpack_require__(/*! ./htmlparser */ 232));
/**
* html2Json 改造来自: https://github.com/Jxck/html2json
*
*
* author: Di (微信小程序开发工程师)
* organization: WeAppDev(微信小程序开发论坛)(http://weappdev.com)
* 垂直微信小程序开发交流社区
*
* github地址: https://github.com/icindy/wxParse
*
* for: 微信小程序富文本解析
* detail : http://weappdev.com/t/wxparse-alpha0-1-html-markdown/184
*/
function makeMap(str) {
var obj = {};
var items = str.split(',');
for (var i = 0; i < items.length; i += 1) {
obj[items[i]] = true;
}
return obj;
}
// Block Elements - HTML 5
var block = makeMap('br,code,address,article,applet,aside,audio,blockquote,button,canvas,center,dd,del,dir,div,dl,dt,fieldset,figcaption,figure,footer,form,frameset,h1,h2,h3,h4,h5,h6,header,hgroup,hr,iframe,ins,isindex,li,map,menu,noframes,noscript,object,ol,output,p,pre,section,script,table,tbody,td,tfoot,th,thead,tr,ul,video');
// Inline Elements - HTML 5
var inline = makeMap('a,abbr,acronym,applet,b,basefont,bdo,big,button,cite,del,dfn,em,font,i,iframe,img,input,ins,kbd,label,map,object,q,s,samp,script,select,small,span,strike,strong,sub,sup,textarea,tt,u,var');
// Elements that you can, intentionally, leave open
// (and which close themselves)
var closeSelf = makeMap('colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr');
function removeDOCTYPE(html) {
var isDocument = /<body.*>([^]*)<\/body>/.test(html);
return isDocument ? RegExp.$1 : html;
}
function trimHtml(html) {
return html.replace(/<!--.*?-->/gi, '').replace(/\/\*.*?\*\//gi, '').replace(/[ ]+</gi, '<').replace(/<script[^]*<\/script>/gi, '').replace(/<style[^]*<\/style>/gi, '');
}
function getScreenInfo() {
var screen = {};
wx.getSystemInfo({
success: function success(res) {
screen.width = res.windowWidth;
screen.height = res.windowHeight;
}
});
return screen;
}
function html2json(html, customHandler, imageProp, host) {
// 处理字符串
html = removeDOCTYPE(html);
html = trimHtml(html);
html = _wxDiscode.default.strDiscode(html);
// 生成node节点
var bufArray = [];
var results = {
nodes: [],
imageUrls: []
};
var screen = getScreenInfo();
function Node(tag) {
this.node = 'element';
this.tag = tag;
this.$screen = screen;
}
(0, _htmlparser.default)(html, {
start: function start(tag, attrs, unary) {
// node for this element
var node = new Node(tag);
if (bufArray.length !== 0) {
var parent = bufArray[0];
if (parent.nodes === undefined) {
parent.nodes = [];
}
}
if (block[tag]) {
node.tagType = 'block';
} else if (inline[tag]) {
node.tagType = 'inline';
} else if (closeSelf[tag]) {
node.tagType = 'closeSelf';
}
node.attr = attrs.reduce(function (pre, attr) {
var name = attr.name;
var value = attr.value;
if (name === 'class') {
node.classStr = value;
}
// has multi attibutes
// make it array of attribute
if (name === 'style') {
node.styleStr = value;
}
if (value.match(/ /)) {
value = value.split(' ');
}
// if attr already exists
// merge it
if (pre[name]) {
if (Array.isArray(pre[name])) {
// already array, push to last
pre[name].push(value);
} else {
// single value, make it array
pre[name] = [pre[name], value];
}
} else {
// not exist, put it
pre[name] = value;
}
return pre;
}, {});
// 优化样式相关属性
if (node.classStr) {
node.classStr += " ".concat(node.tag);
} else {
node.classStr = node.tag;
}
if (node.tagType === 'inline') {
node.classStr += ' inline';
}
// 对img添加额外数据
if (node.tag === 'img') {
var imgUrl = node.attr.src;
imgUrl = _wxDiscode.default.urlToHttpUrl(imgUrl, imageProp.domain);
Object.assign(node.attr, imageProp, {
src: imgUrl || ''
});
if (imgUrl) {
results.imageUrls.push(imgUrl);
}
}
// 处理a标签属性
if (node.tag === 'a') {
node.attr.href = node.attr.href || '';
}
// 处理font标签样式属性
if (node.tag === 'font') {
var fontSize = ['x-small', 'small', 'medium', 'large', 'x-large', 'xx-large', '-webkit-xxx-large'];
var styleAttrs = {
color: 'color',
face: 'font-family',
size: 'font-size'
};
if (!node.styleStr) node.styleStr = '';
Object.keys(styleAttrs).forEach(function (key) {
if (node.attr[key]) {
var value = key === 'size' ? fontSize[node.attr[key] - 1] : node.attr[key];
node.styleStr += "".concat(styleAttrs[key], ": ").concat(value, ";");
}
});
}
// 临时记录source资源
if (node.tag === 'source') {
results.source = node.attr.src;
}
if (customHandler.start) {
customHandler.start(node, results);
}
if (unary) {
// if this tag doesn't have end tag
// like <img src="hoge.png"/>
// add to parents
var _parent = bufArray[0] || results;
if (_parent.nodes === undefined) {
_parent.nodes = [];
}
_parent.nodes.push(node);
} else {
bufArray.unshift(node);
}
},
end: function end(tag) {
// merge into parent tag
var node = bufArray.shift();
if (node.tag !== tag) {
console.error('invalid state: mismatch end tag');
}
// 当有缓存source资源时于于video补上src资源
if (node.tag === 'video' && results.source) {
node.attr.src = results.source;
delete results.source;
}
if (customHandler.end) {
customHandler.end(node, results);
}
if (bufArray.length === 0) {
results.nodes.push(node);
} else {
var parent = bufArray[0];
if (!parent.nodes) {
parent.nodes = [];
}
parent.nodes.push(node);
}
},
chars: function chars(text) {
if (!text.trim()) return;
var node = {
node: 'text',
text: text
};
if (customHandler.chars) {
customHandler.chars(node, results);
}
if (bufArray.length === 0) {
results.nodes.push(node);
} else {
var parent = bufArray[0];
if (parent.nodes === undefined) {
parent.nodes = [];
}
parent.nodes.push(node);
}
}
});
return results;
}
var _default = html2json;
exports.default = _default;
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/wx.js */ 1)["default"]))
/***/ }),
/***/ 231:
/*!****************************************************************************************!*\
!*** E:/qiaocongli/小程序/智造团资源共享/intelligentGroup/uni_modules/u-parse/libs/wxDiscode.js ***!
\****************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
// HTML 支持的数学符号
function strNumDiscode(str) {
str = str.replace(/&forall;/g, '∀');
str = str.replace(/&part;/g, '∂');
str = str.replace(/&exist;/g, '∃');
str = str.replace(/&empty;/g, '∅');
str = str.replace(/&nabla;/g, '∇');
str = str.replace(/&isin;/g, '∈');
str = str.replace(/&notin;/g, '∉');
str = str.replace(/&ni;/g, '∋');
str = str.replace(/&prod;/g, '∏');
str = str.replace(/&sum;/g, '∑');
str = str.replace(/&minus;/g, '');
str = str.replace(/&lowast;/g, '');
str = str.replace(/&radic;/g, '√');
str = str.replace(/&prop;/g, '∝');
str = str.replace(/&infin;/g, '∞');
str = str.replace(/&ang;/g, '∠');
str = str.replace(/&and;/g, '∧');
str = str.replace(/&or;/g, '');
str = str.replace(/&cap;/g, '∩');
str = str.replace(/&cup;/g, '');
str = str.replace(/&int;/g, '∫');
str = str.replace(/&there4;/g, '∴');
str = str.replace(/&sim;/g, '');
str = str.replace(/&cong;/g, '≅');
str = str.replace(/&asymp;/g, '≈');
str = str.replace(/&ne;/g, '≠');
str = str.replace(/&le;/g, '≤');
str = str.replace(/&ge;/g, '≥');
str = str.replace(/&sub;/g, '⊂');
str = str.replace(/&sup;/g, '⊃');
str = str.replace(/&nsub;/g, '⊄');
str = str.replace(/&sube;/g, '⊆');
str = str.replace(/&supe;/g, '⊇');
str = str.replace(/&oplus;/g, '⊕');
str = str.replace(/&otimes;/g, '⊗');
str = str.replace(/&perp;/g, '⊥');
str = str.replace(/&sdot;/g, '⋅');
return str;
}
// HTML 支持的希腊字母
function strGreeceDiscode(str) {
str = str.replace(/&Alpha;/g, 'Α');
str = str.replace(/&Beta;/g, 'Β');
str = str.replace(/&Gamma;/g, 'Γ');
str = str.replace(/&Delta;/g, 'Δ');
str = str.replace(/&Epsilon;/g, 'Ε');
str = str.replace(/&Zeta;/g, 'Ζ');
str = str.replace(/&Eta;/g, 'Η');
str = str.replace(/&Theta;/g, 'Θ');
str = str.replace(/&Iota;/g, 'Ι');
str = str.replace(/&Kappa;/g, 'Κ');
str = str.replace(/&Lambda;/g, 'Λ');
str = str.replace(/&Mu;/g, 'Μ');
str = str.replace(/&Nu;/g, 'Ν');
str = str.replace(/&Xi;/g, 'Ν');
str = str.replace(/&Omicron;/g, 'Ο');
str = str.replace(/&Pi;/g, 'Π');
str = str.replace(/&Rho;/g, 'Ρ');
str = str.replace(/&Sigma;/g, 'Σ');
str = str.replace(/&Tau;/g, 'Τ');
str = str.replace(/&Upsilon;/g, 'Υ');
str = str.replace(/&Phi;/g, 'Φ');
str = str.replace(/&Chi;/g, 'Χ');
str = str.replace(/&Psi;/g, 'Ψ');
str = str.replace(/&Omega;/g, 'Ω');
str = str.replace(/&alpha;/g, 'α');
str = str.replace(/&beta;/g, 'β');
str = str.replace(/&gamma;/g, 'γ');
str = str.replace(/&delta;/g, 'δ');
str = str.replace(/&epsilon;/g, 'ε');
str = str.replace(/&zeta;/g, 'ζ');
str = str.replace(/&eta;/g, 'η');
str = str.replace(/&theta;/g, 'θ');
str = str.replace(/&iota;/g, 'ι');
str = str.replace(/&kappa;/g, 'κ');
str = str.replace(/&lambda;/g, 'λ');
str = str.replace(/&mu;/g, 'μ');
str = str.replace(/&nu;/g, 'ν');
str = str.replace(/&xi;/g, 'ξ');
str = str.replace(/&omicron;/g, 'ο');
str = str.replace(/&pi;/g, 'π');
str = str.replace(/&rho;/g, 'ρ');
str = str.replace(/&sigmaf;/g, 'ς');
str = str.replace(/&sigma;/g, 'σ');
str = str.replace(/&tau;/g, 'τ');
str = str.replace(/&upsilon;/g, 'υ');
str = str.replace(/&phi;/g, 'φ');
str = str.replace(/&chi;/g, 'χ');
str = str.replace(/&psi;/g, 'ψ');
str = str.replace(/&omega;/g, 'ω');
str = str.replace(/&thetasym;/g, 'ϑ');
str = str.replace(/&upsih;/g, 'ϒ');
str = str.replace(/&piv;/g, 'ϖ');
str = str.replace(/&middot;/g, '·');
return str;
}
function strcharacterDiscode(str) {
// 加入常用解析
str = str.replace(/&nbsp;/g, ' ');
str = str.replace(/&ensp;/g, '');
str = str.replace(/&emsp;/g, ' ');
str = str.replace(/&quot;/g, "'");
str = str.replace(/&amp;/g, '&');
str = str.replace(/&lt;/g, '<');
str = str.replace(/&gt;/g, '>');
str = str.replace(/&#8226;/g, '•');
return str;
}
// HTML 支持的其他实体
function strOtherDiscode(str) {
str = str.replace(/&OElig;/g, 'Œ');
str = str.replace(/&oelig;/g, 'œ');
str = str.replace(/&Scaron;/g, 'Š');
str = str.replace(/&scaron;/g, 'š');
str = str.replace(/&Yuml;/g, 'Ÿ');
str = str.replace(/&fnof;/g, 'ƒ');
str = str.replace(/&circ;/g, 'ˆ');
str = str.replace(/&tilde;/g, '˜');
str = str.replace(/&ensp;/g, '');
str = str.replace(/&emsp;/g, '');
str = str.replace(/&thinsp;/g, '');
str = str.replace(/&zwnj;/g, '');
str = str.replace(/&zwj;/g, '');
str = str.replace(/&lrm;/g, '');
str = str.replace(/&rlm;/g, '');
str = str.replace(/&ndash;/g, '');
str = str.replace(/&mdash;/g, '—');
str = str.replace(/&lsquo;/g, '');
str = str.replace(/&rsquo;/g, '');
str = str.replace(/&sbquo;/g, '');
str = str.replace(/&ldquo;/g, '“');
str = str.replace(/&rdquo;/g, '”');
str = str.replace(/&bdquo;/g, '„');
str = str.replace(/&dagger;/g, '†');
str = str.replace(/&Dagger;/g, '‡');
str = str.replace(/&bull;/g, '•');
str = str.replace(/&hellip;/g, '…');
str = str.replace(/&permil;/g, '‰');
str = str.replace(/&prime;/g, '');
str = str.replace(/&Prime;/g, '″');
str = str.replace(/&lsaquo;/g, '');
str = str.replace(/&rsaquo;/g, '');
str = str.replace(/&oline;/g, '‾');
str = str.replace(/&euro;/g, '€');
str = str.replace(/&trade;/g, '™');
str = str.replace(/&larr;/g, '←');
str = str.replace(/&uarr;/g, '↑');
str = str.replace(/&rarr;/g, '→');
str = str.replace(/&darr;/g, '↓');
str = str.replace(/&harr;/g, '↔');
str = str.replace(/&crarr;/g, '↵');
str = str.replace(/&lceil;/g, '⌈');
str = str.replace(/&rceil;/g, '⌉');
str = str.replace(/&lfloor;/g, '⌊');
str = str.replace(/&rfloor;/g, '⌋');
str = str.replace(/&loz;/g, '◊');
str = str.replace(/&spades;/g, '♠');
str = str.replace(/&clubs;/g, '♣');
str = str.replace(/&hearts;/g, '♥');
str = str.replace(/&diams;/g, '♦');
str = str.replace(/&#39;/g, "'");
return str;
}
function strDiscode(str) {
str = strNumDiscode(str);
str = strGreeceDiscode(str);
str = strcharacterDiscode(str);
str = strOtherDiscode(str);
return str;
}
function urlToHttpUrl(url, domain) {
if (/^\/\//.test(url)) {
return "https:".concat(url);
} else if (/^\//.test(url)) {
return "https://".concat(domain).concat(url);
}
return url;
}
var _default = {
strDiscode: strDiscode,
urlToHttpUrl: urlToHttpUrl
};
exports.default = _default;
/***/ }),
/***/ 232:
/*!*****************************************************************************************!*\
!*** E:/qiaocongli/小程序/智造团资源共享/intelligentGroup/uni_modules/u-parse/libs/htmlparser.js ***!
\*****************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
/**
*
* htmlParser改造自: https://github.com/blowsie/Pure-JavaScript-HTML5-Parser
*
* author: Di (微信小程序开发工程师)
* organization: WeAppDev(微信小程序开发论坛)(http://weappdev.com)
* 垂直微信小程序开发交流社区
*
* github地址: https://github.com/icindy/wxParse
*
* for: 微信小程序富文本解析
* detail : http://weappdev.com/t/wxparse-alpha0-1-html-markdown/184
*/
// Regular Expressions for parsing tags and attributes
var startTag = /^<([-A-Za-z0-9_]+)((?:\s+[a-zA-Z0-9_:][-a-zA-Z0-9_:.]*(?:\s*=\s*(?:(?:"[^"]*")|(?:'[^']*')|[^>\s]+))?)*)\s*(\/?)>/;
var endTag = /^<\/([-A-Za-z0-9_]+)[^>]*>/;
var attr = /([a-zA-Z0-9_:][-a-zA-Z0-9_:.]*)(?:\s*=\s*(?:(?:"((?:\\.|[^"])*)")|(?:'((?:\\.|[^'])*)')|([^>\s]+)))?/g;
function makeMap(str) {
var obj = {};
var items = str.split(',');
for (var i = 0; i < items.length; i += 1) {
obj[items[i]] = true;
}
return obj;
}
// Empty Elements - HTML 5
var empty = makeMap('area,base,basefont,br,col,frame,hr,img,input,link,meta,param,embed,command,keygen,source,track,wbr');
// Block Elements - HTML 5
var block = makeMap('address,code,article,applet,aside,audio,blockquote,button,canvas,center,dd,del,dir,div,dl,dt,fieldset,figcaption,figure,footer,form,frameset,h1,h2,h3,h4,h5,h6,header,hgroup,hr,iframe,ins,isindex,li,map,menu,noframes,noscript,object,ol,output,p,pre,section,script,table,tbody,td,tfoot,th,thead,tr,ul,video');
// Inline Elements - HTML 5
var inline = makeMap('a,abbr,acronym,applet,b,basefont,bdo,big,br,button,cite,del,dfn,em,font,i,iframe,img,input,ins,kbd,label,map,object,q,s,samp,script,select,small,span,strike,strong,sub,sup,textarea,tt,u,var');
// Elements that you can, intentionally, leave open
// (and which close themselves)
var closeSelf = makeMap('colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr');
// Attributes that have their values filled in disabled="disabled"
var fillAttrs = makeMap('checked,compact,declare,defer,disabled,ismap,multiple,nohref,noresize,noshade,nowrap,readonly,selected');
function HTMLParser(html, handler) {
var index;
var chars;
var match;
var last = html;
var stack = [];
stack.last = function () {
return stack[stack.length - 1];
};
function parseEndTag(tag, tagName) {
// If no tag name is provided, clean shop
var pos;
if (!tagName) {
pos = 0;
} else {
// Find the closest opened tag of the same type
tagName = tagName.toLowerCase();
for (pos = stack.length - 1; pos >= 0; pos -= 1) {
if (stack[pos] === tagName) break;
}
}
if (pos >= 0) {
// Close all the open elements, up the stack
for (var i = stack.length - 1; i >= pos; i -= 1) {
if (handler.end) handler.end(stack[i]);
}
// Remove the open elements from the stack
stack.length = pos;
}
}
function parseStartTag(tag, tagName, rest, unary) {
tagName = tagName.toLowerCase();
if (block[tagName]) {
while (stack.last() && inline[stack.last()]) {
parseEndTag('', stack.last());
}
}
if (closeSelf[tagName] && stack.last() === tagName) {
parseEndTag('', tagName);
}
unary = empty[tagName] || !!unary;
if (!unary) stack.push(tagName);
if (handler.start) {
var attrs = [];
rest.replace(attr, function genAttr(matches, name) {
var value = arguments[2] || arguments[3] || arguments[4] || (fillAttrs[name] ? name : '');
attrs.push({
name: name,
value: value,
escaped: value.replace(/(^|[^\\])"/g, '$1\\"') // "
});
});
if (handler.start) {
handler.start(tagName, attrs, unary);
}
}
}
while (html) {
chars = true;
if (html.indexOf('</') === 0) {
match = html.match(endTag);
if (match) {
html = html.substring(match[0].length);
match[0].replace(endTag, parseEndTag);
chars = false;
}
// start tag
} else if (html.indexOf('<') === 0) {
match = html.match(startTag);
if (match) {
html = html.substring(match[0].length);
match[0].replace(startTag, parseStartTag);
chars = false;
}
}
if (chars) {
index = html.indexOf('<');
var text = '';
while (index === 0) {
text += '<';
html = html.substring(1);
index = html.indexOf('<');
}
text += index < 0 ? html : html.substring(0, index);
html = index < 0 ? '' : html.substring(index);
if (handler.chars) handler.chars(text);
}
if (html === last) throw new Error("Parse Error: ".concat(html));
last = html;
}
// Clean up any remaining tags
parseEndTag();
}
var _default = HTMLParser;
exports.default = _default;
/***/ }),
/***/ 238:
/*!******************************************************************************************************!*\
!*** E:/qiaocongli/小程序/智造团资源共享/intelligentGroup/uni_modules/uni-icons/components/uni-icons/icons.js ***!
\******************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _default = {
"id": "2852637",
"name": "uniui图标库",
"font_family": "uniicons",
"css_prefix_text": "uniui-",
"description": "",
"glyphs": [{
"icon_id": "25027049",
"name": "yanse",
"font_class": "color",
"unicode": "e6cf",
"unicode_decimal": 59087
}, {
"icon_id": "25027048",
"name": "wallet",
"font_class": "wallet",
"unicode": "e6b1",
"unicode_decimal": 59057
}, {
"icon_id": "25015720",
"name": "settings-filled",
"font_class": "settings-filled",
"unicode": "e6ce",
"unicode_decimal": 59086
}, {
"icon_id": "25015434",
"name": "shimingrenzheng-filled",
"font_class": "auth-filled",
"unicode": "e6cc",
"unicode_decimal": 59084
}, {
"icon_id": "24934246",
"name": "shop-filled",
"font_class": "shop-filled",
"unicode": "e6cd",
"unicode_decimal": 59085
}, {
"icon_id": "24934159",
"name": "staff-filled-01",
"font_class": "staff-filled",
"unicode": "e6cb",
"unicode_decimal": 59083
}, {
"icon_id": "24932461",
"name": "VIP-filled",
"font_class": "vip-filled",
"unicode": "e6c6",
"unicode_decimal": 59078
}, {
"icon_id": "24932462",
"name": "plus_circle_fill",
"font_class": "plus-filled",
"unicode": "e6c7",
"unicode_decimal": 59079
}, {
"icon_id": "24932463",
"name": "folder_add-filled",
"font_class": "folder-add-filled",
"unicode": "e6c8",
"unicode_decimal": 59080
}, {
"icon_id": "24932464",
"name": "yanse-filled",
"font_class": "color-filled",
"unicode": "e6c9",
"unicode_decimal": 59081
}, {
"icon_id": "24932465",
"name": "tune-filled",
"font_class": "tune-filled",
"unicode": "e6ca",
"unicode_decimal": 59082
}, {
"icon_id": "24932455",
"name": "a-rilidaka-filled",
"font_class": "calendar-filled",
"unicode": "e6c0",
"unicode_decimal": 59072
}, {
"icon_id": "24932456",
"name": "notification-filled",
"font_class": "notification-filled",
"unicode": "e6c1",
"unicode_decimal": 59073
}, {
"icon_id": "24932457",
"name": "wallet-filled",
"font_class": "wallet-filled",
"unicode": "e6c2",
"unicode_decimal": 59074
}, {
"icon_id": "24932458",
"name": "paihangbang-filled",
"font_class": "medal-filled",
"unicode": "e6c3",
"unicode_decimal": 59075
}, {
"icon_id": "24932459",
"name": "gift-filled",
"font_class": "gift-filled",
"unicode": "e6c4",
"unicode_decimal": 59076
}, {
"icon_id": "24932460",
"name": "fire-filled",
"font_class": "fire-filled",
"unicode": "e6c5",
"unicode_decimal": 59077
}, {
"icon_id": "24928001",
"name": "refreshempty",
"font_class": "refreshempty",
"unicode": "e6bf",
"unicode_decimal": 59071
}, {
"icon_id": "24926853",
"name": "location-ellipse",
"font_class": "location-filled",
"unicode": "e6af",
"unicode_decimal": 59055
}, {
"icon_id": "24926735",
"name": "person-filled",
"font_class": "person-filled",
"unicode": "e69d",
"unicode_decimal": 59037
}, {
"icon_id": "24926703",
"name": "personadd-filled",
"font_class": "personadd-filled",
"unicode": "e698",
"unicode_decimal": 59032
}, {
"icon_id": "24923351",
"name": "back",
"font_class": "back",
"unicode": "e6b9",
"unicode_decimal": 59065
}, {
"icon_id": "24923352",
"name": "forward",
"font_class": "forward",
"unicode": "e6ba",
"unicode_decimal": 59066
}, {
"icon_id": "24923353",
"name": "arrowthinright",
"font_class": "arrow-right",
"unicode": "e6bb",
"unicode_decimal": 59067
}, {
"icon_id": "24923353",
"name": "arrowthinright",
"font_class": "arrowthinright",
"unicode": "e6bb",
"unicode_decimal": 59067
}, {
"icon_id": "24923354",
"name": "arrowthinleft",
"font_class": "arrow-left",
"unicode": "e6bc",
"unicode_decimal": 59068
}, {
"icon_id": "24923354",
"name": "arrowthinleft",
"font_class": "arrowthinleft",
"unicode": "e6bc",
"unicode_decimal": 59068
}, {
"icon_id": "24923355",
"name": "arrowthinup",
"font_class": "arrow-up",
"unicode": "e6bd",
"unicode_decimal": 59069
}, {
"icon_id": "24923355",
"name": "arrowthinup",
"font_class": "arrowthinup",
"unicode": "e6bd",
"unicode_decimal": 59069
}, {
"icon_id": "24923356",
"name": "arrowthindown",
"font_class": "arrow-down",
"unicode": "e6be",
"unicode_decimal": 59070
}, {
"icon_id": "24923356",
"name": "arrowthindown",
"font_class": "arrowthindown",
"unicode": "e6be",
"unicode_decimal": 59070
}, {
"icon_id": "24923349",
"name": "arrowdown",
"font_class": "bottom",
"unicode": "e6b8",
"unicode_decimal": 59064
}, {
"icon_id": "24923349",
"name": "arrowdown",
"font_class": "arrowdown",
"unicode": "e6b8",
"unicode_decimal": 59064
}, {
"icon_id": "24923346",
"name": "arrowright",
"font_class": "right",
"unicode": "e6b5",
"unicode_decimal": 59061
}, {
"icon_id": "24923346",
"name": "arrowright",
"font_class": "arrowright",
"unicode": "e6b5",
"unicode_decimal": 59061
}, {
"icon_id": "24923347",
"name": "arrowup",
"font_class": "top",
"unicode": "e6b6",
"unicode_decimal": 59062
}, {
"icon_id": "24923347",
"name": "arrowup",
"font_class": "arrowup",
"unicode": "e6b6",
"unicode_decimal": 59062
}, {
"icon_id": "24923348",
"name": "arrowleft",
"font_class": "left",
"unicode": "e6b7",
"unicode_decimal": 59063
}, {
"icon_id": "24923348",
"name": "arrowleft",
"font_class": "arrowleft",
"unicode": "e6b7",
"unicode_decimal": 59063
}, {
"icon_id": "24923334",
"name": "eye",
"font_class": "eye",
"unicode": "e651",
"unicode_decimal": 58961
}, {
"icon_id": "24923335",
"name": "eye-filled",
"font_class": "eye-filled",
"unicode": "e66a",
"unicode_decimal": 58986
}, {
"icon_id": "24923336",
"name": "eye-slash",
"font_class": "eye-slash",
"unicode": "e6b3",
"unicode_decimal": 59059
}, {
"icon_id": "24923337",
"name": "eye-slash-filled",
"font_class": "eye-slash-filled",
"unicode": "e6b4",
"unicode_decimal": 59060
}, {
"icon_id": "24923305",
"name": "info-filled",
"font_class": "info-filled",
"unicode": "e649",
"unicode_decimal": 58953
}, {
"icon_id": "24923299",
"name": "reload-01",
"font_class": "reload",
"unicode": "e6b2",
"unicode_decimal": 59058
}, {
"icon_id": "24923195",
"name": "mic_slash_fill",
"font_class": "micoff-filled",
"unicode": "e6b0",
"unicode_decimal": 59056
}, {
"icon_id": "24923165",
"name": "map-pin-ellipse",
"font_class": "map-pin-ellipse",
"unicode": "e6ac",
"unicode_decimal": 59052
}, {
"icon_id": "24923166",
"name": "map-pin",
"font_class": "map-pin",
"unicode": "e6ad",
"unicode_decimal": 59053
}, {
"icon_id": "24923167",
"name": "location",
"font_class": "location",
"unicode": "e6ae",
"unicode_decimal": 59054
}, {
"icon_id": "24923064",
"name": "starhalf",
"font_class": "starhalf",
"unicode": "e683",
"unicode_decimal": 59011
}, {
"icon_id": "24923065",
"name": "star",
"font_class": "star",
"unicode": "e688",
"unicode_decimal": 59016
}, {
"icon_id": "24923066",
"name": "star-filled",
"font_class": "star-filled",
"unicode": "e68f",
"unicode_decimal": 59023
}, {
"icon_id": "24899646",
"name": "a-rilidaka",
"font_class": "calendar",
"unicode": "e6a0",
"unicode_decimal": 59040
}, {
"icon_id": "24899647",
"name": "fire",
"font_class": "fire",
"unicode": "e6a1",
"unicode_decimal": 59041
}, {
"icon_id": "24899648",
"name": "paihangbang",
"font_class": "medal",
"unicode": "e6a2",
"unicode_decimal": 59042
}, {
"icon_id": "24899649",
"name": "font",
"font_class": "font",
"unicode": "e6a3",
"unicode_decimal": 59043
}, {
"icon_id": "24899650",
"name": "gift",
"font_class": "gift",
"unicode": "e6a4",
"unicode_decimal": 59044
}, {
"icon_id": "24899651",
"name": "link",
"font_class": "link",
"unicode": "e6a5",
"unicode_decimal": 59045
}, {
"icon_id": "24899652",
"name": "notification",
"font_class": "notification",
"unicode": "e6a6",
"unicode_decimal": 59046
}, {
"icon_id": "24899653",
"name": "staff",
"font_class": "staff",
"unicode": "e6a7",
"unicode_decimal": 59047
}, {
"icon_id": "24899654",
"name": "VIP",
"font_class": "vip",
"unicode": "e6a8",
"unicode_decimal": 59048
}, {
"icon_id": "24899655",
"name": "folder_add",
"font_class": "folder-add",
"unicode": "e6a9",
"unicode_decimal": 59049
}, {
"icon_id": "24899656",
"name": "tune",
"font_class": "tune",
"unicode": "e6aa",
"unicode_decimal": 59050
}, {
"icon_id": "24899657",
"name": "shimingrenzheng",
"font_class": "auth",
"unicode": "e6ab",
"unicode_decimal": 59051
}, {
"icon_id": "24899565",
"name": "person",
"font_class": "person",
"unicode": "e699",
"unicode_decimal": 59033
}, {
"icon_id": "24899566",
"name": "email-filled",
"font_class": "email-filled",
"unicode": "e69a",
"unicode_decimal": 59034
}, {
"icon_id": "24899567",
"name": "phone-filled",
"font_class": "phone-filled",
"unicode": "e69b",
"unicode_decimal": 59035
}, {
"icon_id": "24899568",
"name": "phone",
"font_class": "phone",
"unicode": "e69c",
"unicode_decimal": 59036
}, {
"icon_id": "24899570",
"name": "email",
"font_class": "email",
"unicode": "e69e",
"unicode_decimal": 59038
}, {
"icon_id": "24899571",
"name": "personadd",
"font_class": "personadd",
"unicode": "e69f",
"unicode_decimal": 59039
}, {
"icon_id": "24899558",
"name": "chatboxes-filled",
"font_class": "chatboxes-filled",
"unicode": "e692",
"unicode_decimal": 59026
}, {
"icon_id": "24899559",
"name": "contact",
"font_class": "contact",
"unicode": "e693",
"unicode_decimal": 59027
}, {
"icon_id": "24899560",
"name": "chatbubble-filled",
"font_class": "chatbubble-filled",
"unicode": "e694",
"unicode_decimal": 59028
}, {
"icon_id": "24899561",
"name": "contact-filled",
"font_class": "contact-filled",
"unicode": "e695",
"unicode_decimal": 59029
}, {
"icon_id": "24899562",
"name": "chatboxes",
"font_class": "chatboxes",
"unicode": "e696",
"unicode_decimal": 59030
}, {
"icon_id": "24899563",
"name": "chatbubble",
"font_class": "chatbubble",
"unicode": "e697",
"unicode_decimal": 59031
}, {
"icon_id": "24881290",
"name": "upload-filled",
"font_class": "upload-filled",
"unicode": "e68e",
"unicode_decimal": 59022
}, {
"icon_id": "24881292",
"name": "upload",
"font_class": "upload",
"unicode": "e690",
"unicode_decimal": 59024
}, {
"icon_id": "24881293",
"name": "weixin",
"font_class": "weixin",
"unicode": "e691",
"unicode_decimal": 59025
}, {
"icon_id": "24881274",
"name": "compose",
"font_class": "compose",
"unicode": "e67f",
"unicode_decimal": 59007
}, {
"icon_id": "24881275",
"name": "qq",
"font_class": "qq",
"unicode": "e680",
"unicode_decimal": 59008
}, {
"icon_id": "24881276",
"name": "download-filled",
"font_class": "download-filled",
"unicode": "e681",
"unicode_decimal": 59009
}, {
"icon_id": "24881277",
"name": "pengyouquan",
"font_class": "pyq",
"unicode": "e682",
"unicode_decimal": 59010
}, {
"icon_id": "24881279",
"name": "sound",
"font_class": "sound",
"unicode": "e684",
"unicode_decimal": 59012
}, {
"icon_id": "24881280",
"name": "trash-filled",
"font_class": "trash-filled",
"unicode": "e685",
"unicode_decimal": 59013
}, {
"icon_id": "24881281",
"name": "sound-filled",
"font_class": "sound-filled",
"unicode": "e686",
"unicode_decimal": 59014
}, {
"icon_id": "24881282",
"name": "trash",
"font_class": "trash",
"unicode": "e687",
"unicode_decimal": 59015
}, {
"icon_id": "24881284",
"name": "videocam-filled",
"font_class": "videocam-filled",
"unicode": "e689",
"unicode_decimal": 59017
}, {
"icon_id": "24881285",
"name": "spinner-cycle",
"font_class": "spinner-cycle",
"unicode": "e68a",
"unicode_decimal": 59018
}, {
"icon_id": "24881286",
"name": "weibo",
"font_class": "weibo",
"unicode": "e68b",
"unicode_decimal": 59019
}, {
"icon_id": "24881288",
"name": "videocam",
"font_class": "videocam",
"unicode": "e68c",
"unicode_decimal": 59020
}, {
"icon_id": "24881289",
"name": "download",
"font_class": "download",
"unicode": "e68d",
"unicode_decimal": 59021
}, {
"icon_id": "24879601",
"name": "help",
"font_class": "help",
"unicode": "e679",
"unicode_decimal": 59001
}, {
"icon_id": "24879602",
"name": "navigate-filled",
"font_class": "navigate-filled",
"unicode": "e67a",
"unicode_decimal": 59002
}, {
"icon_id": "24879603",
"name": "plusempty",
"font_class": "plusempty",
"unicode": "e67b",
"unicode_decimal": 59003
}, {
"icon_id": "24879604",
"name": "smallcircle",
"font_class": "smallcircle",
"unicode": "e67c",
"unicode_decimal": 59004
}, {
"icon_id": "24879605",
"name": "minus-filled",
"font_class": "minus-filled",
"unicode": "e67d",
"unicode_decimal": 59005
}, {
"icon_id": "24879606",
"name": "micoff",
"font_class": "micoff",
"unicode": "e67e",
"unicode_decimal": 59006
}, {
"icon_id": "24879588",
"name": "closeempty",
"font_class": "closeempty",
"unicode": "e66c",
"unicode_decimal": 58988
}, {
"icon_id": "24879589",
"name": "clear",
"font_class": "clear",
"unicode": "e66d",
"unicode_decimal": 58989
}, {
"icon_id": "24879590",
"name": "navigate",
"font_class": "navigate",
"unicode": "e66e",
"unicode_decimal": 58990
}, {
"icon_id": "24879591",
"name": "minus",
"font_class": "minus",
"unicode": "e66f",
"unicode_decimal": 58991
}, {
"icon_id": "24879592",
"name": "image",
"font_class": "image",
"unicode": "e670",
"unicode_decimal": 58992
}, {
"icon_id": "24879593",
"name": "mic",
"font_class": "mic",
"unicode": "e671",
"unicode_decimal": 58993
}, {
"icon_id": "24879594",
"name": "paperplane",
"font_class": "paperplane",
"unicode": "e672",
"unicode_decimal": 58994
}, {
"icon_id": "24879595",
"name": "close",
"font_class": "close",
"unicode": "e673",
"unicode_decimal": 58995
}, {
"icon_id": "24879596",
"name": "help-filled",
"font_class": "help-filled",
"unicode": "e674",
"unicode_decimal": 58996
}, {
"icon_id": "24879597",
"name": "plus-filled",
"font_class": "paperplane-filled",
"unicode": "e675",
"unicode_decimal": 58997
}, {
"icon_id": "24879598",
"name": "plus",
"font_class": "plus",
"unicode": "e676",
"unicode_decimal": 58998
}, {
"icon_id": "24879599",
"name": "mic-filled",
"font_class": "mic-filled",
"unicode": "e677",
"unicode_decimal": 58999
}, {
"icon_id": "24879600",
"name": "image-filled",
"font_class": "image-filled",
"unicode": "e678",
"unicode_decimal": 59000
}, {
"icon_id": "24855900",
"name": "locked-filled",
"font_class": "locked-filled",
"unicode": "e668",
"unicode_decimal": 58984
}, {
"icon_id": "24855901",
"name": "info",
"font_class": "info",
"unicode": "e669",
"unicode_decimal": 58985
}, {
"icon_id": "24855903",
"name": "locked",
"font_class": "locked",
"unicode": "e66b",
"unicode_decimal": 58987
}, {
"icon_id": "24855884",
"name": "camera-filled",
"font_class": "camera-filled",
"unicode": "e658",
"unicode_decimal": 58968
}, {
"icon_id": "24855885",
"name": "chat-filled",
"font_class": "chat-filled",
"unicode": "e659",
"unicode_decimal": 58969
}, {
"icon_id": "24855886",
"name": "camera",
"font_class": "camera",
"unicode": "e65a",
"unicode_decimal": 58970
}, {
"icon_id": "24855887",
"name": "circle",
"font_class": "circle",
"unicode": "e65b",
"unicode_decimal": 58971
}, {
"icon_id": "24855888",
"name": "checkmarkempty",
"font_class": "checkmarkempty",
"unicode": "e65c",
"unicode_decimal": 58972
}, {
"icon_id": "24855889",
"name": "chat",
"font_class": "chat",
"unicode": "e65d",
"unicode_decimal": 58973
}, {
"icon_id": "24855890",
"name": "circle-filled",
"font_class": "circle-filled",
"unicode": "e65e",
"unicode_decimal": 58974
}, {
"icon_id": "24855891",
"name": "flag",
"font_class": "flag",
"unicode": "e65f",
"unicode_decimal": 58975
}, {
"icon_id": "24855892",
"name": "flag-filled",
"font_class": "flag-filled",
"unicode": "e660",
"unicode_decimal": 58976
}, {
"icon_id": "24855893",
"name": "gear-filled",
"font_class": "gear-filled",
"unicode": "e661",
"unicode_decimal": 58977
}, {
"icon_id": "24855894",
"name": "home",
"font_class": "home",
"unicode": "e662",
"unicode_decimal": 58978
}, {
"icon_id": "24855895",
"name": "home-filled",
"font_class": "home-filled",
"unicode": "e663",
"unicode_decimal": 58979
}, {
"icon_id": "24855896",
"name": "gear",
"font_class": "gear",
"unicode": "e664",
"unicode_decimal": 58980
}, {
"icon_id": "24855897",
"name": "smallcircle-filled",
"font_class": "smallcircle-filled",
"unicode": "e665",
"unicode_decimal": 58981
}, {
"icon_id": "24855898",
"name": "map-filled",
"font_class": "map-filled",
"unicode": "e666",
"unicode_decimal": 58982
}, {
"icon_id": "24855899",
"name": "map",
"font_class": "map",
"unicode": "e667",
"unicode_decimal": 58983
}, {
"icon_id": "24855825",
"name": "refresh-filled",
"font_class": "refresh-filled",
"unicode": "e656",
"unicode_decimal": 58966
}, {
"icon_id": "24855826",
"name": "refresh",
"font_class": "refresh",
"unicode": "e657",
"unicode_decimal": 58967
}, {
"icon_id": "24855808",
"name": "cloud-upload",
"font_class": "cloud-upload",
"unicode": "e645",
"unicode_decimal": 58949
}, {
"icon_id": "24855809",
"name": "cloud-download-filled",
"font_class": "cloud-download-filled",
"unicode": "e646",
"unicode_decimal": 58950
}, {
"icon_id": "24855810",
"name": "cloud-download",
"font_class": "cloud-download",
"unicode": "e647",
"unicode_decimal": 58951
}, {
"icon_id": "24855811",
"name": "cloud-upload-filled",
"font_class": "cloud-upload-filled",
"unicode": "e648",
"unicode_decimal": 58952
}, {
"icon_id": "24855813",
"name": "redo",
"font_class": "redo",
"unicode": "e64a",
"unicode_decimal": 58954
}, {
"icon_id": "24855814",
"name": "images-filled",
"font_class": "images-filled",
"unicode": "e64b",
"unicode_decimal": 58955
}, {
"icon_id": "24855815",
"name": "undo-filled",
"font_class": "undo-filled",
"unicode": "e64c",
"unicode_decimal": 58956
}, {
"icon_id": "24855816",
"name": "more",
"font_class": "more",
"unicode": "e64d",
"unicode_decimal": 58957
}, {
"icon_id": "24855817",
"name": "more-filled",
"font_class": "more-filled",
"unicode": "e64e",
"unicode_decimal": 58958
}, {
"icon_id": "24855818",
"name": "undo",
"font_class": "undo",
"unicode": "e64f",
"unicode_decimal": 58959
}, {
"icon_id": "24855819",
"name": "images",
"font_class": "images",
"unicode": "e650",
"unicode_decimal": 58960
}, {
"icon_id": "24855821",
"name": "paperclip",
"font_class": "paperclip",
"unicode": "e652",
"unicode_decimal": 58962
}, {
"icon_id": "24855822",
"name": "settings",
"font_class": "settings",
"unicode": "e653",
"unicode_decimal": 58963
}, {
"icon_id": "24855823",
"name": "search",
"font_class": "search",
"unicode": "e654",
"unicode_decimal": 58964
}, {
"icon_id": "24855824",
"name": "redo-filled",
"font_class": "redo-filled",
"unicode": "e655",
"unicode_decimal": 58965
}, {
"icon_id": "24841702",
"name": "list",
"font_class": "list",
"unicode": "e644",
"unicode_decimal": 58948
}, {
"icon_id": "24841489",
"name": "mail-open-filled",
"font_class": "mail-open-filled",
"unicode": "e63a",
"unicode_decimal": 58938
}, {
"icon_id": "24841491",
"name": "hand-thumbsdown-filled",
"font_class": "hand-down-filled",
"unicode": "e63c",
"unicode_decimal": 58940
}, {
"icon_id": "24841492",
"name": "hand-thumbsdown",
"font_class": "hand-down",
"unicode": "e63d",
"unicode_decimal": 58941
}, {
"icon_id": "24841493",
"name": "hand-thumbsup-filled",
"font_class": "hand-up-filled",
"unicode": "e63e",
"unicode_decimal": 58942
}, {
"icon_id": "24841494",
"name": "hand-thumbsup",
"font_class": "hand-up",
"unicode": "e63f",
"unicode_decimal": 58943
}, {
"icon_id": "24841496",
"name": "heart-filled",
"font_class": "heart-filled",
"unicode": "e641",
"unicode_decimal": 58945
}, {
"icon_id": "24841498",
"name": "mail-open",
"font_class": "mail-open",
"unicode": "e643",
"unicode_decimal": 58947
}, {
"icon_id": "24841488",
"name": "heart",
"font_class": "heart",
"unicode": "e639",
"unicode_decimal": 58937
}, {
"icon_id": "24839963",
"name": "loop",
"font_class": "loop",
"unicode": "e633",
"unicode_decimal": 58931
}, {
"icon_id": "24839866",
"name": "pulldown",
"font_class": "pulldown",
"unicode": "e632",
"unicode_decimal": 58930
}, {
"icon_id": "24813798",
"name": "scan",
"font_class": "scan",
"unicode": "e62a",
"unicode_decimal": 58922
}, {
"icon_id": "24813786",
"name": "bars",
"font_class": "bars",
"unicode": "e627",
"unicode_decimal": 58919
}, {
"icon_id": "24813788",
"name": "cart-filled",
"font_class": "cart-filled",
"unicode": "e629",
"unicode_decimal": 58921
}, {
"icon_id": "24813790",
"name": "checkbox",
"font_class": "checkbox",
"unicode": "e62b",
"unicode_decimal": 58923
}, {
"icon_id": "24813791",
"name": "checkbox-filled",
"font_class": "checkbox-filled",
"unicode": "e62c",
"unicode_decimal": 58924
}, {
"icon_id": "24813794",
"name": "shop",
"font_class": "shop",
"unicode": "e62f",
"unicode_decimal": 58927
}, {
"icon_id": "24813795",
"name": "headphones",
"font_class": "headphones",
"unicode": "e630",
"unicode_decimal": 58928
}, {
"icon_id": "24813796",
"name": "cart",
"font_class": "cart",
"unicode": "e631",
"unicode_decimal": 58929
}]
};
exports.default = _default;
/***/ }),
/***/ 24:
/*!************************************************************!*\
!*** ./node_modules/@babel/runtime/helpers/createClass.js ***!
\************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
var toPropertyKey = __webpack_require__(/*! ./toPropertyKey.js */ 12);
function _defineProperties(target, props) {
for (var i = 0; i < props.length; i++) {
var descriptor = props[i];
descriptor.enumerable = descriptor.enumerable || false;
descriptor.configurable = true;
if ("value" in descriptor) descriptor.writable = true;
Object.defineProperty(target, toPropertyKey(descriptor.key), descriptor);
}
}
function _createClass(Constructor, protoProps, staticProps) {
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
if (staticProps) _defineProperties(Constructor, staticProps);
Object.defineProperty(Constructor, "prototype", {
writable: false
});
return Constructor;
}
module.exports = _createClass, module.exports.__esModule = true, module.exports["default"] = module.exports;
/***/ }),
/***/ 246:
/*!****************************************************************************************!*\
!*** E:/qiaocongli/小程序/智造团资源共享/intelligentGroup/uni_modules/pick-regions/regions.json ***!
\****************************************************************************************/
/*! exports provided: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, default */
/***/ (function(module) {
module.exports = JSON.parse("[{\"id\":\"11\",\"pid\":0,\"code\":\"110000000000\",\"name\":\"北京市\",\"childs\":[{\"id\":\"1101\",\"pid\":11,\"code\":\"110100000000\",\"name\":\"北京市\",\"childs\":[{\"id\":\"110101\",\"pid\":1101,\"code\":\"110101000000\",\"name\":\"东城区\"},{\"id\":\"110102\",\"pid\":1101,\"code\":\"110102000000\",\"name\":\"西城区\"},{\"id\":\"110105\",\"pid\":1101,\"code\":\"110105000000\",\"name\":\"朝阳区\"},{\"id\":\"110106\",\"pid\":1101,\"code\":\"110106000000\",\"name\":\"丰台区\"},{\"id\":\"110107\",\"pid\":1101,\"code\":\"110107000000\",\"name\":\"石景山区\"},{\"id\":\"110108\",\"pid\":1101,\"code\":\"110108000000\",\"name\":\"海淀区\"},{\"id\":\"110109\",\"pid\":1101,\"code\":\"110109000000\",\"name\":\"门头沟区\"},{\"id\":\"110111\",\"pid\":1101,\"code\":\"110111000000\",\"name\":\"房山区\"},{\"id\":\"110112\",\"pid\":1101,\"code\":\"110112000000\",\"name\":\"通州区\"},{\"id\":\"110113\",\"pid\":1101,\"code\":\"110113000000\",\"name\":\"顺义区\"},{\"id\":\"110114\",\"pid\":1101,\"code\":\"110114000000\",\"name\":\"昌平区\"},{\"id\":\"110115\",\"pid\":1101,\"code\":\"110115000000\",\"name\":\"大兴区\"},{\"id\":\"110116\",\"pid\":1101,\"code\":\"110116000000\",\"name\":\"怀柔区\"},{\"id\":\"110117\",\"pid\":1101,\"code\":\"110117000000\",\"name\":\"平谷区\"},{\"id\":\"110118\",\"pid\":1101,\"code\":\"110118000000\",\"name\":\"密云区\"},{\"id\":\"110119\",\"pid\":1101,\"code\":\"110119000000\",\"name\":\"延庆区\"}]}]},{\"id\":\"12\",\"pid\":0,\"code\":\"120000000000\",\"name\":\"天津市\",\"childs\":[{\"id\":\"1201\",\"pid\":12,\"code\":\"120100000000\",\"name\":\"天津市\",\"childs\":[{\"id\":\"120101\",\"pid\":1201,\"code\":\"120101000000\",\"name\":\"和平区\"},{\"id\":\"120102\",\"pid\":1201,\"code\":\"120102000000\",\"name\":\"河东区\"},{\"id\":\"120103\",\"pid\":1201,\"code\":\"120103000000\",\"name\":\"河西区\"},{\"id\":\"120104\",\"pid\":1201,\"code\":\"120104000000\",\"name\":\"南开区\"},{\"id\":\"120105\",\"pid\":1201,\"code\":\"120105000000\",\"name\":\"河北区\"},{\"id\":\"120106\",\"pid\":1201,\"code\":\"120106000000\",\"name\":\"红桥区\"},{\"id\":\"120110\",\"pid\":1201,\"code\":\"120110000000\",\"name\":\"东丽区\"},{\"id\":\"120111\",\"pid\":1201,\"code\":\"120111000000\",\"name\":\"西青区\"},{\"id\":\"120112\",\"pid\":1201,\"code\":\"120112000000\",\"name\":\"津南区\"},{\"id\":\"120113\",\"pid\":1201,\"code\":\"120113000000\",\"name\":\"北辰区\"},{\"id\":\"120114\",\"pid\":1201,\"code\":\"120114000000\",\"name\":\"武清区\"},{\"id\":\"120115\",\"pid\":1201,\"code\":\"120115000000\",\"name\":\"宝坻区\"},{\"id\":\"120116\",\"pid\":1201,\"code\":\"120116000000\",\"name\":\"滨海新区\"},{\"id\":\"120117\",\"pid\":1201,\"code\":\"120117000000\",\"name\":\"宁河区\"},{\"id\":\"120118\",\"pid\":1201,\"code\":\"120118000000\",\"name\":\"静海区\"},{\"id\":\"120119\",\"pid\":1201,\"code\":\"120119000000\",\"name\":\"蓟州区\"}]}]},{\"id\":\"13\",\"pid\":0,\"code\":\"130000000000\",\"name\":\"河北省\",\"childs\":[{\"id\":\"1301\",\"pid\":13,\"code\":\"130100000000\",\"name\":\"石家庄市\",\"childs\":[{\"id\":\"130102\",\"pid\":1301,\"code\":\"130102000000\",\"name\":\"长安区\"},{\"id\":\"130104\",\"pid\":1301,\"code\":\"130104000000\",\"name\":\"桥西区\"},{\"id\":\"130105\",\"pid\":1301,\"code\":\"130105000000\",\"name\":\"新华区\"},{\"id\":\"130107\",\"pid\":1301,\"code\":\"130107000000\",\"name\":\"井陉矿区\"},{\"id\":\"130108\",\"pid\":1301,\"code\":\"130108000000\",\"name\":\"裕华区\"},{\"id\":\"130109\",\"pid\":1301,\"code\":\"130109000000\",\"name\":\"藁城区\"},{\"id\":\"130110\",\"pid\":1301,\"code\":\"130110000000\",\"name\":\"鹿泉区\"},{\"id\":\"130111\",\"pid\":1301,\"code\":\"130111000000\",\"name\":\"栾城区\"},{\"id\":\"130121\",\"pid\":1301,\"code\":\"130121000000\",\"name\":\"井陉县\"},{\"id\":\"130123\",\"pid\":1301,\"code\":\"130123000000\",\"name\":\"正定县\"},{\"id\":\"130125\",\"pid\":1301,\"code\":\"130125000000\",\"name\":\"行唐县\"},{\"id\":\"130126\",\"pid\":1301,\"code\":\"130126000000\",\"name\":\"灵寿县\"},{\"id\":\"130127\",\"pid\":1301,\"code\":\"130127000000\",\"name\":\"高邑县\"},{\"id\":\"130128\",\"pid\":1301,\"code\":\"130128000000\",\"name\":\"深泽县\"},{\"id\":\"130129\",\"pid\":1301,\"code\":\"130129000000\",\"name\":\"赞皇县\"},{\"id\":\"130130\",\"pid\":1301,\"code\":\"130130000000\",\"name\":\"无极县\"},{\"id\":\"130131\",\"pid\":1301,\"code\":\"130131000000\",\"name\":\"平山县\"},{\"id\":\"130132\",\"pid\":1301,\"code\":\"130132000000\",\"name\":\"元氏县\"},{\"id\":\"130133\",\"pid\":1301,\"code\":\"130133000000\",\"name\":\"赵县\"},{\"id\":\"130181\",\"pid\":1301,\"code\":\"130181000000\",\"name\":\"辛集市\"},{\"id\":\"130183\",\"pid\":1301,\"code\":\"130183000000\",\"name\":\"晋州市\"},{\"id\":\"130184\",\"pid\":1301,\"code\":\"130184000000\",\"name\":\"新乐市\"}]},{\"id\":\"1302\",\"pid\":13,\"code\":\"130200000000\",\"name\":\"唐山市\",\"childs\":[{\"id\":\"130202\",\"pid\":1302,\"code\":\"130202000000\",\"name\":\"路南区\"},{\"id\":\"130203\",\"pid\":1302,\"code\":\"130203000000\",\"name\":\"路北区\"},{\"id\":\"130204\",\"pid\":1302,\"code\":\"130204000000\",\"name\":\"古冶区\"},{\"id\":\"130205\",\"pid\":1302,\"code\":\"130205000000\",\"name\":\"开平区\"},{\"id\":\"130207\",\"pid\":1302,\"code\":\"130207000000\",\"name\":\"丰南区\"},{\"id\":\"130208\",\"pid\":1302,\"code\":\"130208000000\",\"name\":\"丰润区\"},{\"id\":\"130209\",\"pid\":1302,\"code\":\"130209000000\",\"name\":\"曹妃甸区\"},{\"id\":\"130224\",\"pid\":1302,\"code\":\"130224000000\",\"name\":\"滦南县\"},{\"id\":\"130225\",\"pid\":1302,\"code\":\"130225000000\",\"name\":\"乐亭县\"},{\"id\":\"130227\",\"pid\":1302,\"code\":\"130227000000\",\"name\":\"迁西县\"},{\"id\":\"130229\",\"pid\":1302,\"code\":\"130229000000\",\"name\":\"玉田县\"},{\"id\":\"130281\",\"pid\":1302,\"code\":\"130281000000\",\"name\":\"遵化市\"},{\"id\":\"130283\",\"pid\":1302,\"code\":\"130283000000\",\"name\":\"迁安市\"},{\"id\":\"130284\",\"pid\":1302,\"code\":\"130284000000\",\"name\":\"滦州市\"}]},{\"id\":\"1303\",\"pid\":13,\"code\":\"130300000000\",\"name\":\"秦皇岛市\",\"childs\":[{\"id\":\"130302\",\"pid\":1303,\"code\":\"130302000000\",\"name\":\"海港区\"},{\"id\":\"130303\",\"pid\":1303,\"code\":\"130303000000\",\"name\":\"山海关区\"},{\"id\":\"130304\",\"pid\":1303,\"code\":\"130304000000\",\"name\":\"北戴河区\"},{\"id\":\"130306\",\"pid\":1303,\"code\":\"130306000000\",\"name\":\"抚宁区\"},{\"id\":\"130321\",\"pid\":1303,\"code\":\"130321000000\",\"name\":\"青龙满族自治县\"},{\"id\":\"130322\",\"pid\":1303,\"code\":\"130322000000\",\"name\":\"昌黎县\"},{\"id\":\"130324\",\"pid\":1303,\"code\":\"130324000000\",\"name\":\"卢龙县\"}]},{\"id\":\"1304\",\"pid\":13,\"code\":\"130400000000\",\"name\":\"邯郸市\",\"childs\":[{\"id\":\"130402\",\"pid\":1304,\"code\":\"130402000000\",\"name\":\"邯山区\"},{\"id\":\"130403\",\"pid\":1304,\"code\":\"130403000000\",\"name\":\"丛台区\"},{\"id\":\"130404\",\"pid\":1304,\"code\":\"130404000000\",\"name\":\"复兴区\"},{\"id\":\"130406\",\"pid\":1304,\"code\":\"130406000000\",\"name\":\"峰峰矿区\"},{\"id\":\"130407\",\"pid\":1304,\"code\":\"130407000000\",\"name\":\"肥乡区\"},{\"id\":\"130408\",\"pid\":1304,\"code\":\"130408000000\",\"name\":\"永年区\"},{\"id\":\"130423\",\"pid\":1304,\"code\":\"130423000000\",\"name\":\"临漳县\"},{\"id\":\"130424\",\"pid\":1304,\"code\":\"130424000000\",\"name\":\"成安县\"},{\"id\":\"130425\",\"pid\":1304,\"code\":\"130425000000\",\"name\":\"大名县\"},{\"id\":\"130426\",\"pid\":1304,\"code\":\"130426000000\",\"name\":\"涉县\"},{\"id\":\"130427\",\"pid\":1304,\"code\":\"130427000000\",\"name\":\"磁县\"},{\"id\":\"130430\",\"pid\":1304,\"code\":\"130430000000\",\"name\":\"邱县\"},{\"id\":\"130431\",\"pid\":1304,\"code\":\"130431000000\",\"name\":\"鸡泽县\"},{\"id\":\"130432\",\"pid\":1304,\"code\":\"130432000000\",\"name\":\"广平县\"},{\"id\":\"130433\",\"pid\":1304,\"code\":\"130433000000\",\"name\":\"馆陶县\"},{\"id\":\"130434\",\"pid\":1304,\"code\":\"130434000000\",\"name\":\"魏县\"},{\"id\":\"130435\",\"pid\":1304,\"code\":\"130435000000\",\"name\":\"曲周县\"},{\"id\":\"130481\",\"pid\":1304,\"code\":\"130481000000\",\"name\":\"武安市\"}]},{\"id\":\"1305\",\"pid\":13,\"code\":\"130500000000\",\"name\":\"邢台市\",\"childs\":[{\"id\":\"130502\",\"pid\":1305,\"code\":\"130502000000\",\"name\":\"襄都区\"},{\"id\":\"130503\",\"pid\":1305,\"code\":\"130503000000\",\"name\":\"信都区\"},{\"id\":\"130505\",\"pid\":1305,\"code\":\"130505000000\",\"name\":\"任泽区\"},{\"id\":\"130506\",\"pid\":1305,\"code\":\"130506000000\",\"name\":\"南和区\"},{\"id\":\"130522\",\"pid\":1305,\"code\":\"130522000000\",\"name\":\"临城县\"},{\"id\":\"130523\",\"pid\":1305,\"code\":\"130523000000\",\"name\":\"内丘县\"},{\"id\":\"130524\",\"pid\":1305,\"code\":\"130524000000\",\"name\":\"柏乡县\"},{\"id\":\"130525\",\"pid\":1305,\"code\":\"130525000000\",\"name\":\"隆尧县\"},{\"id\":\"130528\",\"pid\":1305,\"code\":\"130528000000\",\"name\":\"宁晋县\"},{\"id\":\"130529\",\"pid\":1305,\"code\":\"130529000000\",\"name\":\"巨鹿县\"},{\"id\":\"130530\",\"pid\":1305,\"code\":\"130530000000\",\"name\":\"新河县\"},{\"id\":\"130531\",\"pid\":1305,\"code\":\"130531000000\",\"name\":\"广宗县\"},{\"id\":\"130532\",\"pid\":1305,\"code\":\"130532000000\",\"name\":\"平乡县\"},{\"id\":\"130533\",\"pid\":1305,\"code\":\"130533000000\",\"name\":\"威县\"},{\"id\":\"130534\",\"pid\":1305,\"code\":\"130534000000\",\"name\":\"清河县\"},{\"id\":\"130535\",\"pid\":1305,\"code\":\"130535000000\",\"name\":\"临西县\"},{\"id\":\"130581\",\"pid\":1305,\"code\":\"130581000000\",\"name\":\"南宫市\"},{\"id\":\"130582\",\"pid\":1305,\"code\":\"130582000000\",\"name\":\"沙河市\"}]},{\"id\":\"1306\",\"pid\":13,\"code\":\"130600000000\",\"name\":\"保定市\",\"childs\":[{\"id\":\"130602\",\"pid\":1306,\"code\":\"130602000000\",\"name\":\"竞秀区\"},{\"id\":\"130606\",\"pid\":1306,\"code\":\"130606000000\",\"name\":\"莲池区\"},{\"id\":\"130607\",\"pid\":1306,\"code\":\"130607000000\",\"name\":\"满城区\"},{\"id\":\"130608\",\"pid\":1306,\"code\":\"130608000000\",\"name\":\"清苑区\"},{\"id\":\"130609\",\"pid\":1306,\"code\":\"130609000000\",\"name\":\"徐水区\"},{\"id\":\"130623\",\"pid\":1306,\"code\":\"130623000000\",\"name\":\"涞水县\"},{\"id\":\"130624\",\"pid\":1306,\"code\":\"130624000000\",\"name\":\"阜平县\"},{\"id\":\"130626\",\"pid\":1306,\"code\":\"130626000000\",\"name\":\"定兴县\"},{\"id\":\"130627\",\"pid\":1306,\"code\":\"130627000000\",\"name\":\"唐县\"},{\"id\":\"130628\",\"pid\":1306,\"code\":\"130628000000\",\"name\":\"高阳县\"},{\"id\":\"130629\",\"pid\":1306,\"code\":\"130629000000\",\"name\":\"容城县\"},{\"id\":\"130630\",\"pid\":1306,\"code\":\"130630000000\",\"name\":\"涞源县\"},{\"id\":\"130631\",\"pid\":1306,\"code\":\"130631000000\",\"name\":\"望都县\"},{\"id\":\"130632\",\"pid\":1306,\"code\":\"130632000000\",\"name\":\"安新县\"},{\"id\":\"130633\",\"pid\":1306,\"code\":\"130633000000\",\"name\":\"易县\"},{\"id\":\"130634\",\"pid\":1306,\"code\":\"130634000000\",\"name\":\"曲阳县\"},{\"id\":\"130635\",\"pid\":1306,\"code\":\"130635000000\",\"name\":\"蠡县\"},{\"id\":\"130636\",\"pid\":1306,\"code\":\"130636000000\",\"name\":\"顺平县\"},{\"id\":\"130637\",\"pid\":1306,\"code\":\"130637000000\",\"name\":\"博野县\"},{\"id\":\"130638\",\"pid\":1306,\"code\":\"130638000000\",\"name\":\"雄县\"},{\"id\":\"130681\",\"pid\":1306,\"code\":\"130681000000\",\"name\":\"涿州市\"},{\"id\":\"130682\",\"pid\":1306,\"code\":\"130682000000\",\"name\":\"定州市\"},{\"id\":\"130683\",\"pid\":1306,\"code\":\"130683000000\",\"name\":\"安国市\"},{\"id\":\"130684\",\"pid\":1306,\"code\":\"130684000000\",\"name\":\"高碑店市\"}]},{\"id\":\"1307\",\"pid\":13,\"code\":\"130700000000\",\"name\":\"张家口市\",\"childs\":[{\"id\":\"130702\",\"pid\":1307,\"code\":\"130702000000\",\"name\":\"桥东区\"},{\"id\":\"130703\",\"pid\":1307,\"code\":\"130703000000\",\"name\":\"桥西区\"},{\"id\":\"130705\",\"pid\":1307,\"code\":\"130705000000\",\"name\":\"宣化区\"},{\"id\":\"130706\",\"pid\":1307,\"code\":\"130706000000\",\"name\":\"下花园区\"},{\"id\":\"130708\",\"pid\":1307,\"code\":\"130708000000\",\"name\":\"万全区\"},{\"id\":\"130709\",\"pid\":1307,\"code\":\"130709000000\",\"name\":\"崇礼区\"},{\"id\":\"130722\",\"pid\":1307,\"code\":\"130722000000\",\"name\":\"张北县\"},{\"id\":\"130723\",\"pid\":1307,\"code\":\"130723000000\",\"name\":\"康保县\"},{\"id\":\"130724\",\"pid\":1307,\"code\":\"130724000000\",\"name\":\"沽源县\"},{\"id\":\"130725\",\"pid\":1307,\"code\":\"130725000000\",\"name\":\"尚义县\"},{\"id\":\"130726\",\"pid\":1307,\"code\":\"130726000000\",\"name\":\"蔚县\"},{\"id\":\"130727\",\"pid\":1307,\"code\":\"130727000000\",\"name\":\"阳原县\"},{\"id\":\"130728\",\"pid\":1307,\"code\":\"130728000000\",\"name\":\"怀安县\"},{\"id\":\"130730\",\"pid\":1307,\"code\":\"130730000000\",\"name\":\"怀来县\"},{\"id\":\"130731\",\"pid\":1307,\"code\":\"130731000000\",\"name\":\"涿鹿县\"},{\"id\":\"130732\",\"pid\":1307,\"code\":\"130732000000\",\"name\":\"赤城县\"}]},{\"id\":\"1308\",\"pid\":13,\"code\":\"130800000000\",\"name\":\"承德市\",\"childs\":[{\"id\":\"130802\",\"pid\":1308,\"code\":\"130802000000\",\"name\":\"双桥区\"},{\"id\":\"130803\",\"pid\":1308,\"code\":\"130803000000\",\"name\":\"双滦区\"},{\"id\":\"130804\",\"pid\":1308,\"code\":\"130804000000\",\"name\":\"鹰手营子矿区\"},{\"id\":\"130821\",\"pid\":1308,\"code\":\"130821000000\",\"name\":\"承德县\"},{\"id\":\"130822\",\"pid\":1308,\"code\":\"130822000000\",\"name\":\"兴隆县\"},{\"id\":\"130824\",\"pid\":1308,\"code\":\"130824000000\",\"name\":\"滦平县\"},{\"id\":\"130825\",\"pid\":1308,\"code\":\"130825000000\",\"name\":\"隆化县\"},{\"id\":\"130826\",\"pid\":1308,\"code\":\"130826000000\",\"name\":\"丰宁满族自治县\"},{\"id\":\"130827\",\"pid\":1308,\"code\":\"130827000000\",\"name\":\"宽城满族自治县\"},{\"id\":\"130828\",\"pid\":1308,\"code\":\"130828000000\",\"name\":\"围场满族蒙古族自治县\"},{\"id\":\"130881\",\"pid\":1308,\"code\":\"130881000000\",\"name\":\"平泉市\"}]},{\"id\":\"1309\",\"pid\":13,\"code\":\"130900000000\",\"name\":\"沧州市\",\"childs\":[{\"id\":\"130902\",\"pid\":1309,\"code\":\"130902000000\",\"name\":\"新华区\"},{\"id\":\"130903\",\"pid\":1309,\"code\":\"130903000000\",\"name\":\"运河区\"},{\"id\":\"130921\",\"pid\":1309,\"code\":\"130921000000\",\"name\":\"沧县\"},{\"id\":\"130922\",\"pid\":1309,\"code\":\"130922000000\",\"name\":\"青县\"},{\"id\":\"130923\",\"pid\":1309,\"code\":\"130923000000\",\"name\":\"东光县\"},{\"id\":\"130924\",\"pid\":1309,\"code\":\"130924000000\",\"name\":\"海兴县\"},{\"id\":\"130925\",\"pid\":1309,\"code\":\"130925000000\",\"name\":\"盐山县\"},{\"id\":\"130926\",\"pid\":1309,\"code\":\"130926000000\",\"name\":\"肃宁县\"},{\"id\":\"130927\",\"pid\":1309,\"code\":\"130927000000\",\"name\":\"南皮县\"},{\"id\":\"130928\",\"pid\":1309,\"code\":\"130928000000\",\"name\":\"吴桥县\"},{\"id\":\"130929\",\"pid\":1309,\"code\":\"130929000000\",\"name\":\"献县\"},{\"id\":\"130930\",\"pid\":1309,\"code\":\"130930000000\",\"name\":\"孟村回族自治县\"},{\"id\":\"130981\",\"pid\":1309,\"code\":\"130981000000\",\"name\":\"泊头市\"},{\"id\":\"130982\",\"pid\":1309,\"code\":\"130982000000\",\"name\":\"任丘市\"},{\"id\":\"130983\",\"pid\":1309,\"code\":\"130983000000\",\"name\":\"黄骅市\"},{\"id\":\"130984\",\"pid\":1309,\"code\":\"130984000000\",\"name\":\"河间市\"}]},{\"id\":\"1310\",\"pid\":13,\"code\":\"131000000000\",\"name\":\"廊坊市\",\"childs\":[{\"id\":\"131002\",\"pid\":1310,\"code\":\"131002000000\",\"name\":\"安次区\"},{\"id\":\"131003\",\"pid\":1310,\"code\":\"131003000000\",\"name\":\"广阳区\"},{\"id\":\"131022\",\"pid\":1310,\"code\":\"131022000000\",\"name\":\"固安县\"},{\"id\":\"131023\",\"pid\":1310,\"code\":\"131023000000\",\"name\":\"永清县\"},{\"id\":\"131024\",\"pid\":1310,\"code\":\"131024000000\",\"name\":\"香河县\"},{\"id\":\"131025\",\"pid\":1310,\"code\":\"131025000000\",\"name\":\"大城县\"},{\"id\":\"131026\",\"pid\":1310,\"code\":\"131026000000\",\"name\":\"文安县\"},{\"id\":\"131028\",\"pid\":1310,\"code\":\"131028000000\",\"name\":\"大厂回族自治县\"},{\"id\":\"131081\",\"pid\":1310,\"code\":\"131081000000\",\"name\":\"霸州市\"},{\"id\":\"131082\",\"pid\":1310,\"code\":\"131082000000\",\"name\":\"三河市\"}]},{\"id\":\"1311\",\"pid\":13,\"code\":\"131100000000\",\"name\":\"衡水市\",\"childs\":[{\"id\":\"131102\",\"pid\":1311,\"code\":\"131102000000\",\"name\":\"桃城区\"},{\"id\":\"131103\",\"pid\":1311,\"code\":\"131103000000\",\"name\":\"冀州区\"},{\"id\":\"131121\",\"pid\":1311,\"code\":\"131121000000\",\"name\":\"枣强县\"},{\"id\":\"131122\",\"pid\":1311,\"code\":\"131122000000\",\"name\":\"武邑县\"},{\"id\":\"131123\",\"pid\":1311,\"code\":\"131123000000\",\"name\":\"武强县\"},{\"id\":\"131124\",\"pid\":1311,\"code\":\"131124000000\",\"name\":\"饶阳县\"},{\"id\":\"131125\",\"pid\":1311,\"code\":\"131125000000\",\"name\":\"安平县\"},{\"id\":\"131126\",\"pid\":1311,\"code\":\"131126000000\",\"name\":\"故城县\"},{\"id\":\"131127\",\"pid\":1311,\"code\":\"131127000000\",\"name\":\"景县\"},{\"id\":\"131128\",\"pid\":1311,\"code\":\"131128000000\",\"name\":\"阜城县\"},{\"id\":\"131182\",\"pid\":1311,\"code\":\"131182000000\",\"name\":\"深州市\"}]}]},{\"id\":\"14\",\"pid\":0,\"code\":\"140000000000\",\"name\":\"山西省\",\"childs\":[{\"id\":\"1401\",\"pid\":14,\"code\":\"140100000000\",\"name\":\"太原市\",\"childs\":[{\"id\":\"140105\",\"pid\":1401,\"code\":\"140105000000\",\"name\":\"小店区\"},{\"id\":\"140106\",\"pid\":1401,\"code\":\"140106000000\",\"name\":\"迎泽区\"},{\"id\":\"140107\",\"pid\":1401,\"code\":\"140107000000\",\"name\":\"杏花岭区\"},{\"id\":\"140108\",\"pid\":1401,\"code\":\"140108000000\",\"name\":\"尖草坪区\"},{\"id\":\"140109\",\"pid\":1401,\"code\":\"140109000000\",\"name\":\"万柏林区\"},{\"id\":\"140110\",\"pid\":1401,\"code\":\"140110000000\",\"name\":\"晋源区\"},{\"id\":\"140121\",\"pid\":1401,\"code\":\"140121000000\",\"name\":\"清徐县\"},{\"id\":\"140122\",\"pid\":1401,\"code\":\"140122000000\",\"name\":\"阳曲县\"},{\"id\":\"140123\",\"pid\":1401,\"code\":\"140123000000\",\"name\":\"娄烦县\"},{\"id\":\"140181\",\"pid\":1401,\"code\":\"140181000000\",\"name\":\"古交市\"}]},{\"id\":\"1402\",\"pid\":14,\"code\":\"140200000000\",\"name\":\"大同市\",\"childs\":[{\"id\":\"140212\",\"pid\":1402,\"code\":\"140212000000\",\"name\":\"新荣区\"},{\"id\":\"140213\",\"pid\":1402,\"code\":\"140213000000\",\"name\":\"平城区\"},{\"id\":\"140214\",\"pid\":1402,\"code\":\"140214000000\",\"name\":\"云冈区\"},{\"id\":\"140215\",\"pid\":1402,\"code\":\"140215000000\",\"name\":\"云州区\"},{\"id\":\"140221\",\"pid\":1402,\"code\":\"140221000000\",\"name\":\"阳高县\"},{\"id\":\"140222\",\"pid\":1402,\"code\":\"140222000000\",\"name\":\"天镇县\"},{\"id\":\"140223\",\"pid\":1402,\"code\":\"140223000000\",\"name\":\"广灵县\"},{\"id\":\"140224\",\"pid\":1402,\"code\":\"140224000000\",\"name\":\"灵丘县\"},{\"id\":\"140225\",\"pid\":1402,\"code\":\"140225000000\",\"name\":\"浑源县\"},{\"id\":\"140226\",\"pid\":1402,\"code\":\"140226000000\",\"name\":\"左云县\"}]},{\"id\":\"1403\",\"pid\":14,\"code\":\"140300000000\",\"name\":\"阳泉市\",\"childs\":[{\"id\":\"140302\",\"pid\":1403,\"code\":\"140302000000\",\"name\":\"城区\"},{\"id\":\"140303\",\"pid\":1403,\"code\":\"140303000000\",\"name\":\"矿区\"},{\"id\":\"140311\",\"pid\":1403,\"code\":\"140311000000\",\"name\":\"郊区\"},{\"id\":\"140321\",\"pid\":1403,\"code\":\"140321000000\",\"name\":\"平定县\"},{\"id\":\"140322\",\"pid\":1403,\"code\":\"140322000000\",\"name\":\"盂县\"}]},{\"id\":\"1404\",\"pid\":14,\"code\":\"140400000000\",\"name\":\"长治市\",\"childs\":[{\"id\":\"140403\",\"pid\":1404,\"code\":\"140403000000\",\"name\":\"潞州区\"},{\"id\":\"140404\",\"pid\":1404,\"code\":\"140404000000\",\"name\":\"上党区\"},{\"id\":\"140405\",\"pid\":1404,\"code\":\"140405000000\",\"name\":\"屯留区\"},{\"id\":\"140406\",\"pid\":1404,\"code\":\"140406000000\",\"name\":\"潞城区\"},{\"id\":\"140423\",\"pid\":1404,\"code\":\"140423000000\",\"name\":\"襄垣县\"},{\"id\":\"140425\",\"pid\":1404,\"code\":\"140425000000\",\"name\":\"平顺县\"},{\"id\":\"140426\",\"pid\":1404,\"code\":\"140426000000\",\"name\":\"黎城县\"},{\"id\":\"140427\",\"pid\":1404,\"code\":\"140427000000\",\"name\":\"壶关县\"},{\"id\":\"140428\",\"pid\":1404,\"code\":\"140428000000\",\"name\":\"长子县\"},{\"id\":\"140429\",\"pid\":1404,\"code\":\"140429000000\",\"name\":\"武乡县\"},{\"id\":\"140430\",\"pid\":1404,\"code\":\"140430000000\",\"name\":\"沁县\"},{\"id\":\"140431\",\"pid\":1404,\"code\":\"140431000000\",\"name\":\"沁源县\"}]},{\"id\":\"1405\",\"pid\":14,\"code\":\"140500000000\",\"name\":\"晋城市\",\"childs\":[{\"id\":\"140502\",\"pid\":1405,\"code\":\"140502000000\",\"name\":\"城区\"},{\"id\":\"140521\",\"pid\":1405,\"code\":\"140521000000\",\"name\":\"沁水县\"},{\"id\":\"140522\",\"pid\":1405,\"code\":\"140522000000\",\"name\":\"阳城县\"},{\"id\":\"140524\",\"pid\":1405,\"code\":\"140524000000\",\"name\":\"陵川县\"},{\"id\":\"140525\",\"pid\":1405,\"code\":\"140525000000\",\"name\":\"泽州县\"},{\"id\":\"140581\",\"pid\":1405,\"code\":\"140581000000\",\"name\":\"高平市\"}]},{\"id\":\"1406\",\"pid\":14,\"code\":\"140600000000\",\"name\":\"朔州市\",\"childs\":[{\"id\":\"140602\",\"pid\":1406,\"code\":\"140602000000\",\"name\":\"朔城区\"},{\"id\":\"140603\",\"pid\":1406,\"code\":\"140603000000\",\"name\":\"平鲁区\"},{\"id\":\"140621\",\"pid\":1406,\"code\":\"140621000000\",\"name\":\"山阴县\"},{\"id\":\"140622\",\"pid\":1406,\"code\":\"140622000000\",\"name\":\"应县\"},{\"id\":\"140623\",\"pid\":1406,\"code\":\"140623000000\",\"name\":\"右玉县\"},{\"id\":\"140681\",\"pid\":1406,\"code\":\"140681000000\",\"name\":\"怀仁市\"}]},{\"id\":\"1407\",\"pid\":14,\"code\":\"140700000000\",\"name\":\"晋中市\",\"childs\":[{\"id\":\"140702\",\"pid\":1407,\"code\":\"140702000000\",\"name\":\"榆次区\"},{\"id\":\"140703\",\"pid\":1407,\"code\":\"140703000000\",\"name\":\"太谷区\"},{\"id\":\"140721\",\"pid\":1407,\"code\":\"140721000000\",\"name\":\"榆社县\"},{\"id\":\"140722\",\"pid\":1407,\"code\":\"140722000000\",\"name\":\"左权县\"},{\"id\":\"140723\",\"pid\":1407,\"code\":\"140723000000\",\"name\":\"和顺县\"},{\"id\":\"140724\",\"pid\":1407,\"code\":\"140724000000\",\"name\":\"昔阳县\"},{\"id\":\"140725\",\"pid\":1407,\"code\":\"140725000000\",\"name\":\"寿阳县\"},{\"id\":\"140727\",\"pid\":1407,\"code\":\"140727000000\",\"name\":\"祁县\"},{\"id\":\"140728\",\"pid\":1407,\"code\":\"140728000000\",\"name\":\"平遥县\"},{\"id\":\"140729\",\"pid\":1407,\"code\":\"140729000000\",\"name\":\"灵石县\"},{\"id\":\"140781\",\"pid\":1407,\"code\":\"140781000000\",\"name\":\"介休市\"}]},{\"id\":\"1408\",\"pid\":14,\"code\":\"140800000000\",\"name\":\"运城市\",\"childs\":[{\"id\":\"140802\",\"pid\":1408,\"code\":\"140802000000\",\"name\":\"盐湖区\"},{\"id\":\"140821\",\"pid\":1408,\"code\":\"140821000000\",\"name\":\"临猗县\"},{\"id\":\"140822\",\"pid\":1408,\"code\":\"140822000000\",\"name\":\"万荣县\"},{\"id\":\"140823\",\"pid\":1408,\"code\":\"140823000000\",\"name\":\"闻喜县\"},{\"id\":\"140824\",\"pid\":1408,\"code\":\"140824000000\",\"name\":\"稷山县\"},{\"id\":\"140825\",\"pid\":1408,\"code\":\"140825000000\",\"name\":\"新绛县\"},{\"id\":\"140826\",\"pid\":1408,\"code\":\"140826000000\",\"name\":\"绛县\"},{\"id\":\"140827\",\"pid\":1408,\"code\":\"140827000000\",\"name\":\"垣曲县\"},{\"id\":\"140828\",\"pid\":1408,\"code\":\"140828000000\",\"name\":\"夏县\"},{\"id\":\"140829\",\"pid\":1408,\"code\":\"140829000000\",\"name\":\"平陆县\"},{\"id\":\"140830\",\"pid\":1408,\"code\":\"140830000000\",\"name\":\"芮城县\"},{\"id\":\"140881\",\"pid\":1408,\"code\":\"140881000000\",\"name\":\"永济市\"},{\"id\":\"140882\",\"pid\":1408,\"code\":\"140882000000\",\"name\":\"河津市\"}]},{\"id\":\"1409\",\"pid\":14,\"code\":\"140900000000\",\"name\":\"忻州市\",\"childs\":[{\"id\":\"140902\",\"pid\":1409,\"code\":\"140902000000\",\"name\":\"忻府区\"},{\"id\":\"140921\",\"pid\":1409,\"code\":\"140921000000\",\"name\":\"定襄县\"},{\"id\":\"140922\",\"pid\":1409,\"code\":\"140922000000\",\"name\":\"五台县\"},{\"id\":\"140923\",\"pid\":1409,\"code\":\"140923000000\",\"name\":\"代县\"},{\"id\":\"140924\",\"pid\":1409,\"code\":\"140924000000\",\"name\":\"繁峙县\"},{\"id\":\"140925\",\"pid\":1409,\"code\":\"140925000000\",\"name\":\"宁武县\"},{\"id\":\"140926\",\"pid\":1409,\"code\":\"140926000000\",\"name\":\"静乐县\"},{\"id\":\"140927\",\"pid\":1409,\"code\":\"140927000000\",\"name\":\"神池县\"},{\"id\":\"140928\",\"pid\":1409,\"code\":\"140928000000\",\"name\":\"五寨县\"},{\"id\":\"140929\",\"pid\":1409,\"code\":\"140929000000\",\"name\":\"岢岚县\"},{\"id\":\"140930\",\"pid\":1409,\"code\":\"140930000000\",\"name\":\"河曲县\"},{\"id\":\"140931\",\"pid\":1409,\"code\":\"140931000000\",\"name\":\"保德县\"},{\"id\":\"140932\",\"pid\":1409,\"code\":\"140932000000\",\"name\":\"偏关县\"},{\"id\":\"140981\",\"pid\":1409,\"code\":\"140981000000\",\"name\":\"原平市\"}]},{\"id\":\"1410\",\"pid\":14,\"code\":\"141000000000\",\"name\":\"临汾市\",\"childs\":[{\"id\":\"141002\",\"pid\":1410,\"code\":\"141002000000\",\"name\":\"尧都区\"},{\"id\":\"141021\",\"pid\":1410,\"code\":\"141021000000\",\"name\":\"曲沃县\"},{\"id\":\"141022\",\"pid\":1410,\"code\":\"141022000000\",\"name\":\"翼城县\"},{\"id\":\"141023\",\"pid\":1410,\"code\":\"141023000000\",\"name\":\"襄汾县\"},{\"id\":\"141024\",\"pid\":1410,\"code\":\"141024000000\",\"name\":\"洪洞县\"},{\"id\":\"141025\",\"pid\":1410,\"code\":\"141025000000\",\"name\":\"古县\"},{\"id\":\"141026\",\"pid\":1410,\"code\":\"141026000000\",\"name\":\"安泽县\"},{\"id\":\"141027\",\"pid\":1410,\"code\":\"141027000000\",\"name\":\"浮山县\"},{\"id\":\"141028\",\"pid\":1410,\"code\":\"141028000000\",\"name\":\"吉县\"},{\"id\":\"141029\",\"pid\":1410,\"code\":\"141029000000\",\"name\":\"乡宁县\"},{\"id\":\"141030\",\"pid\":1410,\"code\":\"141030000000\",\"name\":\"大宁县\"},{\"id\":\"141031\",\"pid\":1410,\"code\":\"141031000000\",\"name\":\"隰县\"},{\"id\":\"141032\",\"pid\":1410,\"code\":\"141032000000\",\"name\":\"永和县\"},{\"id\":\"141033\",\"pid\":1410,\"code\":\"141033000000\",\"name\":\"蒲县\"},{\"id\":\"141034\",\"pid\":1410,\"code\":\"141034000000\",\"name\":\"汾西县\"},{\"id\":\"141081\",\"pid\":1410,\"code\":\"141081000000\",\"name\":\"侯马市\"},{\"id\":\"141082\",\"pid\":1410,\"code\":\"141082000000\",\"name\":\"霍州市\"}]},{\"id\":\"1411\",\"pid\":14,\"code\":\"141100000000\",\"name\":\"吕梁市\",\"childs\":[{\"id\":\"141102\",\"pid\":1411,\"code\":\"141102000000\",\"name\":\"离石区\"},{\"id\":\"141121\",\"pid\":1411,\"code\":\"141121000000\",\"name\":\"文水县\"},{\"id\":\"141122\",\"pid\":1411,\"code\":\"141122000000\",\"name\":\"交城县\"},{\"id\":\"141123\",\"pid\":1411,\"code\":\"141123000000\",\"name\":\"兴县\"},{\"id\":\"141124\",\"pid\":1411,\"code\":\"141124000000\",\"name\":\"临县\"},{\"id\":\"141125\",\"pid\":1411,\"code\":\"141125000000\",\"name\":\"柳林县\"},{\"id\":\"141126\",\"pid\":1411,\"code\":\"141126000000\",\"name\":\"石楼县\"},{\"id\":\"141127\",\"pid\":1411,\"code\":\"141127000000\",\"name\":\"岚县\"},{\"id\":\"141128\",\"pid\":1411,\"code\":\"141128000000\",\"name\":\"方山县\"},{\"id\":\"141129\",\"pid\":1411,\"code\":\"141129000000\",\"name\":\"中阳县\"},{\"id\":\"141130\",\"pid\":1411,\"code\":\"141130000000\",\"name\":\"交口县\"},{\"id\":\"141181\",\"pid\":1411,\"code\":\"141181000000\",\"name\":\"孝义市\"},{\"id\":\"141182\",\"pid\":1411,\"code\":\"141182000000\",\"name\":\"汾阳市\"}]}]},{\"id\":\"15\",\"pid\":0,\"code\":\"150000000000\",\"name\":\"内蒙古自治区\",\"childs\":[{\"id\":\"1501\",\"pid\":15,\"code\":\"150100000000\",\"name\":\"呼和浩特市\",\"childs\":[{\"id\":\"150102\",\"pid\":1501,\"code\":\"150102000000\",\"name\":\"新城区\"},{\"id\":\"150103\",\"pid\":1501,\"code\":\"150103000000\",\"name\":\"回民区\"},{\"id\":\"150104\",\"pid\":1501,\"code\":\"150104000000\",\"name\":\"玉泉区\"},{\"id\":\"150105\",\"pid\":1501,\"code\":\"150105000000\",\"name\":\"赛罕区\"},{\"id\":\"150121\",\"pid\":1501,\"code\":\"150121000000\",\"name\":\"土默特左旗\"},{\"id\":\"150122\",\"pid\":1501,\"code\":\"150122000000\",\"name\":\"托克托县\"},{\"id\":\"150123\",\"pid\":1501,\"code\":\"150123000000\",\"name\":\"和林格尔县\"},{\"id\":\"150124\",\"pid\":1501,\"code\":\"150124000000\",\"name\":\"清水河县\"},{\"id\":\"150125\",\"pid\":1501,\"code\":\"150125000000\",\"name\":\"武川县\"}]},{\"id\":\"1502\",\"pid\":15,\"code\":\"150200000000\",\"name\":\"包头市\",\"childs\":[{\"id\":\"150202\",\"pid\":1502,\"code\":\"150202000000\",\"name\":\"东河区\"},{\"id\":\"150203\",\"pid\":1502,\"code\":\"150203000000\",\"name\":\"昆都仑区\"},{\"id\":\"150204\",\"pid\":1502,\"code\":\"150204000000\",\"name\":\"青山区\"},{\"id\":\"150205\",\"pid\":1502,\"code\":\"150205000000\",\"name\":\"石拐区\"},{\"id\":\"150206\",\"pid\":1502,\"code\":\"150206000000\",\"name\":\"白云鄂博矿区\"},{\"id\":\"150207\",\"pid\":1502,\"code\":\"150207000000\",\"name\":\"九原区\"},{\"id\":\"150221\",\"pid\":1502,\"code\":\"150221000000\",\"name\":\"土默特右旗\"},{\"id\":\"150222\",\"pid\":1502,\"code\":\"150222000000\",\"name\":\"固阳县\"},{\"id\":\"150223\",\"pid\":1502,\"code\":\"150223000000\",\"name\":\"达尔罕茂明安联合旗\"}]},{\"id\":\"1503\",\"pid\":15,\"code\":\"150300000000\",\"name\":\"乌海市\",\"childs\":[{\"id\":\"150302\",\"pid\":1503,\"code\":\"150302000000\",\"name\":\"海勃湾区\"},{\"id\":\"150303\",\"pid\":1503,\"code\":\"150303000000\",\"name\":\"海南区\"},{\"id\":\"150304\",\"pid\":1503,\"code\":\"150304000000\",\"name\":\"乌达区\"}]},{\"id\":\"1504\",\"pid\":15,\"code\":\"150400000000\",\"name\":\"赤峰市\",\"childs\":[{\"id\":\"150402\",\"pid\":1504,\"code\":\"150402000000\",\"name\":\"红山区\"},{\"id\":\"150403\",\"pid\":1504,\"code\":\"150403000000\",\"name\":\"元宝山区\"},{\"id\":\"150404\",\"pid\":1504,\"code\":\"150404000000\",\"name\":\"松山区\"},{\"id\":\"150421\",\"pid\":1504,\"code\":\"150421000000\",\"name\":\"阿鲁科尔沁旗\"},{\"id\":\"150422\",\"pid\":1504,\"code\":\"150422000000\",\"name\":\"巴林左旗\"},{\"id\":\"150423\",\"pid\":1504,\"code\":\"150423000000\",\"name\":\"巴林右旗\"},{\"id\":\"150424\",\"pid\":1504,\"code\":\"150424000000\",\"name\":\"林西县\"},{\"id\":\"150425\",\"pid\":1504,\"code\":\"150425000000\",\"name\":\"克什克腾旗\"},{\"id\":\"150426\",\"pid\":1504,\"code\":\"150426000000\",\"name\":\"翁牛特旗\"},{\"id\":\"150428\",\"pid\":1504,\"code\":\"150428000000\",\"name\":\"喀喇沁旗\"},{\"id\":\"150429\",\"pid\":1504,\"code\":\"150429000000\",\"name\":\"宁城县\"},{\"id\":\"150430\",\"pid\":1504,\"code\":\"150430000000\",\"name\":\"敖汉旗\"}]},{\"id\":\"1505\",\"pid\":15,\"code\":\"150500000000\",\"name\":\"通辽市\",\"childs\":[{\"id\":\"150502\",\"pid\":1505,\"code\":\"150502000000\",\"name\":\"科尔沁区\"},{\"id\":\"150521\",\"pid\":1505,\"code\":\"150521000000\",\"name\":\"科尔沁左翼中旗\"},{\"id\":\"150522\",\"pid\":1505,\"code\":\"150522000000\",\"name\":\"科尔沁左翼后旗\"},{\"id\":\"150523\",\"pid\":1505,\"code\":\"150523000000\",\"name\":\"开鲁县\"},{\"id\":\"150524\",\"pid\":1505,\"code\":\"150524000000\",\"name\":\"库伦旗\"},{\"id\":\"150525\",\"pid\":1505,\"code\":\"150525000000\",\"name\":\"奈曼旗\"},{\"id\":\"150526\",\"pid\":1505,\"code\":\"150526000000\",\"name\":\"扎鲁特旗\"},{\"id\":\"150581\",\"pid\":1505,\"code\":\"150581000000\",\"name\":\"霍林郭勒市\"}]},{\"id\":\"1506\",\"pid\":15,\"code\":\"150600000000\",\"name\":\"鄂尔多斯市\",\"childs\":[{\"id\":\"150602\",\"pid\":1506,\"code\":\"150602000000\",\"name\":\"东胜区\"},{\"id\":\"150603\",\"pid\":1506,\"code\":\"150603000000\",\"name\":\"康巴什区\"},{\"id\":\"150621\",\"pid\":1506,\"code\":\"150621000000\",\"name\":\"达拉特旗\"},{\"id\":\"150622\",\"pid\":1506,\"code\":\"150622000000\",\"name\":\"准格尔旗\"},{\"id\":\"150623\",\"pid\":1506,\"code\":\"150623000000\",\"name\":\"鄂托克前旗\"},{\"id\":\"150624\",\"pid\":1506,\"code\":\"150624000000\",\"name\":\"鄂托克旗\"},{\"id\":\"150625\",\"pid\":1506,\"code\":\"150625000000\",\"name\":\"杭锦旗\"},{\"id\":\"150626\",\"pid\":1506,\"code\":\"150626000000\",\"name\":\"乌审旗\"},{\"id\":\"150627\",\"pid\":1506,\"code\":\"150627000000\",\"name\":\"伊金霍洛旗\"}]},{\"id\":\"1507\",\"pid\":15,\"code\":\"150700000000\",\"name\":\"呼伦贝尔市\",\"childs\":[{\"id\":\"150702\",\"pid\":1507,\"code\":\"150702000000\",\"name\":\"海拉尔区\"},{\"id\":\"150703\",\"pid\":1507,\"code\":\"150703000000\",\"name\":\"扎赉诺尔区\"},{\"id\":\"150721\",\"pid\":1507,\"code\":\"150721000000\",\"name\":\"阿荣旗\"},{\"id\":\"150722\",\"pid\":1507,\"code\":\"150722000000\",\"name\":\"莫力达瓦达斡尔族自治旗\"},{\"id\":\"150723\",\"pid\":1507,\"code\":\"150723000000\",\"name\":\"鄂伦春自治旗\"},{\"id\":\"150724\",\"pid\":1507,\"code\":\"150724000000\",\"name\":\"鄂温克族自治旗\"},{\"id\":\"150725\",\"pid\":1507,\"code\":\"150725000000\",\"name\":\"陈巴尔虎旗\"},{\"id\":\"150726\",\"pid\":1507,\"code\":\"150726000000\",\"name\":\"新巴尔虎左旗\"},{\"id\":\"150727\",\"pid\":1507,\"code\":\"150727000000\",\"name\":\"新巴尔虎右旗\"},{\"id\":\"150781\",\"pid\":1507,\"code\":\"150781000000\",\"name\":\"满洲里市\"},{\"id\":\"150782\",\"pid\":1507,\"code\":\"150782000000\",\"name\":\"牙克石市\"},{\"id\":\"150783\",\"pid\":1507,\"code\":\"150783000000\",\"name\":\"扎兰屯市\"},{\"id\":\"150784\",\"pid\":1507,\"code\":\"150784000000\",\"name\":\"额尔古纳市\"},{\"id\":\"150785\",\"pid\":1507,\"code\":\"150785000000\",\"name\":\"根河市\"}]},{\"id\":\"1508\",\"pid\":15,\"code\":\"150800000000\",\"name\":\"巴彦淖尔市\",\"childs\":[{\"id\":\"150802\",\"pid\":1508,\"code\":\"150802000000\",\"name\":\"临河区\"},{\"id\":\"150821\",\"pid\":1508,\"code\":\"150821000000\",\"name\":\"五原县\"},{\"id\":\"150822\",\"pid\":1508,\"code\":\"150822000000\",\"name\":\"磴口县\"},{\"id\":\"150823\",\"pid\":1508,\"code\":\"150823000000\",\"name\":\"乌拉特前旗\"},{\"id\":\"150824\",\"pid\":1508,\"code\":\"150824000000\",\"name\":\"乌拉特中旗\"},{\"id\":\"150825\",\"pid\":1508,\"code\":\"150825000000\",\"name\":\"乌拉特后旗\"},{\"id\":\"150826\",\"pid\":1508,\"code\":\"150826000000\",\"name\":\"杭锦后旗\"}]},{\"id\":\"1509\",\"pid\":15,\"code\":\"150900000000\",\"name\":\"乌兰察布市\",\"childs\":[{\"id\":\"150902\",\"pid\":1509,\"code\":\"150902000000\",\"name\":\"集宁区\"},{\"id\":\"150921\",\"pid\":1509,\"code\":\"150921000000\",\"name\":\"卓资县\"},{\"id\":\"150922\",\"pid\":1509,\"code\":\"150922000000\",\"name\":\"化德县\"},{\"id\":\"150923\",\"pid\":1509,\"code\":\"150923000000\",\"name\":\"商都县\"},{\"id\":\"150924\",\"pid\":1509,\"code\":\"150924000000\",\"name\":\"兴和县\"},{\"id\":\"150925\",\"pid\":1509,\"code\":\"150925000000\",\"name\":\"凉城县\"},{\"id\":\"150926\",\"pid\":1509,\"code\":\"150926000000\",\"name\":\"察哈尔右翼前旗\"},{\"id\":\"150927\",\"pid\":1509,\"code\":\"150927000000\",\"name\":\"察哈尔右翼中旗\"},{\"id\":\"150928\",\"pid\":1509,\"code\":\"150928000000\",\"name\":\"察哈尔右翼后旗\"},{\"id\":\"150929\",\"pid\":1509,\"code\":\"150929000000\",\"name\":\"四子王旗\"},{\"id\":\"150981\",\"pid\":1509,\"code\":\"150981000000\",\"name\":\"丰镇市\"}]},{\"id\":\"1522\",\"pid\":15,\"code\":\"152200000000\",\"name\":\"兴安盟\",\"childs\":[{\"id\":\"152201\",\"pid\":1522,\"code\":\"152201000000\",\"name\":\"乌兰浩特市\"},{\"id\":\"152202\",\"pid\":1522,\"code\":\"152202000000\",\"name\":\"阿尔山市\"},{\"id\":\"152221\",\"pid\":1522,\"code\":\"152221000000\",\"name\":\"科尔沁右翼前旗\"},{\"id\":\"152222\",\"pid\":1522,\"code\":\"152222000000\",\"name\":\"科尔沁右翼中旗\"},{\"id\":\"152223\",\"pid\":1522,\"code\":\"152223000000\",\"name\":\"扎赉特旗\"},{\"id\":\"152224\",\"pid\":1522,\"code\":\"152224000000\",\"name\":\"突泉县\"}]},{\"id\":\"1525\",\"pid\":15,\"code\":\"152500000000\",\"name\":\"锡林郭勒盟\",\"childs\":[{\"id\":\"152501\",\"pid\":1525,\"code\":\"152501000000\",\"name\":\"二连浩特市\"},{\"id\":\"152502\",\"pid\":1525,\"code\":\"152502000000\",\"name\":\"锡林浩特市\"},{\"id\":\"152522\",\"pid\":1525,\"code\":\"152522000000\",\"name\":\"阿巴嘎旗\"},{\"id\":\"152523\",\"pid\":1525,\"code\":\"152523000000\",\"name\":\"苏尼特左旗\"},{\"id\":\"152524\",\"pid\":1525,\"code\":\"152524000000\",\"name\":\"苏尼特右旗\"},{\"id\":\"152525\",\"pid\":1525,\"code\":\"152525000000\",\"name\":\"东乌珠穆沁旗\"},{\"id\":\"152526\",\"pid\":1525,\"code\":\"152526000000\",\"name\":\"西乌珠穆沁旗\"},{\"id\":\"152527\",\"pid\":1525,\"code\":\"152527000000\",\"name\":\"太仆寺旗\"},{\"id\":\"152528\",\"pid\":1525,\"code\":\"152528000000\",\"name\":\"镶黄旗\"},{\"id\":\"152529\",\"pid\":1525,\"code\":\"152529000000\",\"name\":\"正镶白旗\"},{\"id\":\"152530\",\"pid\":1525,\"code\":\"152530000000\",\"name\":\"正蓝旗\"},{\"id\":\"152531\",\"pid\":1525,\"code\":\"152531000000\",\"name\":\"多伦县\"}]},{\"id\":\"1529\",\"pid\":15,\"code\":\"152900000000\",\"name\":\"阿拉善盟\",\"childs\":[{\"id\":\"152921\",\"pid\":1529,\"code\":\"152921000000\",\"name\":\"阿拉善左旗\"},{\"id\":\"152922\",\"pid\":1529,\"code\":\"152922000000\",\"name\":\"阿拉善右旗\"},{\"id\":\"152923\",\"pid\":1529,\"code\":\"152923000000\",\"name\":\"额济纳旗\"}]}]},{\"id\":\"21\",\"pid\":0,\"code\":\"210000000000\",\"name\":\"辽宁省\",\"childs\":[{\"id\":\"2101\",\"pid\":21,\"code\":\"210100000000\",\"name\":\"沈阳市\",\"childs\":[{\"id\":\"210102\",\"pid\":2101,\"code\":\"210102000000\",\"name\":\"和平区\"},{\"id\":\"210103\",\"pid\":2101,\"code\":\"210103000000\",\"name\":\"沈河区\"},{\"id\":\"210104\",\"pid\":2101,\"code\":\"210104000000\",\"name\":\"大东区\"},{\"id\":\"210105\",\"pid\":2101,\"code\":\"210105000000\",\"name\":\"皇姑区\"},{\"id\":\"210106\",\"pid\":2101,\"code\":\"210106000000\",\"name\":\"铁西区\"},{\"id\":\"210111\",\"pid\":2101,\"code\":\"210111000000\",\"name\":\"苏家屯区\"},{\"id\":\"210112\",\"pid\":2101,\"code\":\"210112000000\",\"name\":\"浑南区\"},{\"id\":\"210113\",\"pid\":2101,\"code\":\"210113000000\",\"name\":\"沈北新区\"},{\"id\":\"210114\",\"pid\":2101,\"code\":\"210114000000\",\"name\":\"于洪区\"},{\"id\":\"210115\",\"pid\":2101,\"code\":\"210115000000\",\"name\":\"辽中区\"},{\"id\":\"210123\",\"pid\":2101,\"code\":\"210123000000\",\"name\":\"康平县\"},{\"id\":\"210124\",\"pid\":2101,\"code\":\"210124000000\",\"name\":\"法库县\"},{\"id\":\"210181\",\"pid\":2101,\"code\":\"210181000000\",\"name\":\"新民市\"}]},{\"id\":\"2102\",\"pid\":21,\"code\":\"210200000000\",\"name\":\"大连市\",\"childs\":[{\"id\":\"210202\",\"pid\":2102,\"code\":\"210202000000\",\"name\":\"中山区\"},{\"id\":\"210203\",\"pid\":2102,\"code\":\"210203000000\",\"name\":\"西岗区\"},{\"id\":\"210204\",\"pid\":2102,\"code\":\"210204000000\",\"name\":\"沙河口区\"},{\"id\":\"210211\",\"pid\":2102,\"code\":\"210211000000\",\"name\":\"甘井子区\"},{\"id\":\"210212\",\"pid\":2102,\"code\":\"210212000000\",\"name\":\"旅顺口区\"},{\"id\":\"210213\",\"pid\":2102,\"code\":\"210213000000\",\"name\":\"金州区\"},{\"id\":\"210214\",\"pid\":2102,\"code\":\"210214000000\",\"name\":\"普兰店区\"},{\"id\":\"210224\",\"pid\":2102,\"code\":\"210224000000\",\"name\":\"长海县\"},{\"id\":\"210281\",\"pid\":2102,\"code\":\"210281000000\",\"name\":\"瓦房店市\"},{\"id\":\"210283\",\"pid\":2102,\"code\":\"210283000000\",\"name\":\"庄河市\"}]},{\"id\":\"2103\",\"pid\":21,\"code\":\"210300000000\",\"name\":\"鞍山市\",\"childs\":[{\"id\":\"210302\",\"pid\":2103,\"code\":\"210302000000\",\"name\":\"铁东区\"},{\"id\":\"210303\",\"pid\":2103,\"code\":\"210303000000\",\"name\":\"铁西区\"},{\"id\":\"210304\",\"pid\":2103,\"code\":\"210304000000\",\"name\":\"立山区\"},{\"id\":\"210311\",\"pid\":2103,\"code\":\"210311000000\",\"name\":\"千山区\"},{\"id\":\"210321\",\"pid\":2103,\"code\":\"210321000000\",\"name\":\"台安县\"},{\"id\":\"210323\",\"pid\":2103,\"code\":\"210323000000\",\"name\":\"岫岩满族自治县\"},{\"id\":\"210381\",\"pid\":2103,\"code\":\"210381000000\",\"name\":\"海城市\"}]},{\"id\":\"2104\",\"pid\":21,\"code\":\"210400000000\",\"name\":\"抚顺市\",\"childs\":[{\"id\":\"210402\",\"pid\":2104,\"code\":\"210402000000\",\"name\":\"新抚区\"},{\"id\":\"210403\",\"pid\":2104,\"code\":\"210403000000\",\"name\":\"东洲区\"},{\"id\":\"210404\",\"pid\":2104,\"code\":\"210404000000\",\"name\":\"望花区\"},{\"id\":\"210411\",\"pid\":2104,\"code\":\"210411000000\",\"name\":\"顺城区\"},{\"id\":\"210421\",\"pid\":2104,\"code\":\"210421000000\",\"name\":\"抚顺县\"},{\"id\":\"210422\",\"pid\":2104,\"code\":\"210422000000\",\"name\":\"新宾满族自治县\"},{\"id\":\"210423\",\"pid\":2104,\"code\":\"210423000000\",\"name\":\"清原满族自治县\"}]},{\"id\":\"2105\",\"pid\":21,\"code\":\"210500000000\",\"name\":\"本溪市\",\"childs\":[{\"id\":\"210502\",\"pid\":2105,\"code\":\"210502000000\",\"name\":\"平山区\"},{\"id\":\"210503\",\"pid\":2105,\"code\":\"210503000000\",\"name\":\"溪湖区\"},{\"id\":\"210504\",\"pid\":2105,\"code\":\"210504000000\",\"name\":\"明山区\"},{\"id\":\"210505\",\"pid\":2105,\"code\":\"210505000000\",\"name\":\"南芬区\"},{\"id\":\"210521\",\"pid\":2105,\"code\":\"210521000000\",\"name\":\"本溪满族自治县\"},{\"id\":\"210522\",\"pid\":2105,\"code\":\"210522000000\",\"name\":\"桓仁满族自治县\"}]},{\"id\":\"2106\",\"pid\":21,\"code\":\"210600000000\",\"name\":\"丹东市\",\"childs\":[{\"id\":\"210602\",\"pid\":2106,\"code\":\"210602000000\",\"name\":\"元宝区\"},{\"id\":\"210603\",\"pid\":2106,\"code\":\"210603000000\",\"name\":\"振兴区\"},{\"id\":\"210604\",\"pid\":2106,\"code\":\"210604000000\",\"name\":\"振安区\"},{\"id\":\"210624\",\"pid\":2106,\"code\":\"210624000000\",\"name\":\"宽甸满族自治县\"},{\"id\":\"210681\",\"pid\":2106,\"code\":\"210681000000\",\"name\":\"东港市\"},{\"id\":\"210682\",\"pid\":2106,\"code\":\"210682000000\",\"name\":\"凤城市\"}]},{\"id\":\"2107\",\"pid\":21,\"code\":\"210700000000\",\"name\":\"锦州市\",\"childs\":[{\"id\":\"210702\",\"pid\":2107,\"code\":\"210702000000\",\"name\":\"古塔区\"},{\"id\":\"210703\",\"pid\":2107,\"code\":\"210703000000\",\"name\":\"凌河区\"},{\"id\":\"210711\",\"pid\":2107,\"code\":\"210711000000\",\"name\":\"太和区\"},{\"id\":\"210726\",\"pid\":2107,\"code\":\"210726000000\",\"name\":\"黑山县\"},{\"id\":\"210727\",\"pid\":2107,\"code\":\"210727000000\",\"name\":\"义县\"},{\"id\":\"210781\",\"pid\":2107,\"code\":\"210781000000\",\"name\":\"凌海市\"},{\"id\":\"210782\",\"pid\":2107,\"code\":\"210782000000\",\"name\":\"北镇市\"}]},{\"id\":\"2108\",\"pid\":21,\"code\":\"210800000000\",\"name\":\"营口市\",\"childs\":[{\"id\":\"210802\",\"pid\":2108,\"code\":\"210802000000\",\"name\":\"站前区\"},{\"id\":\"210803\",\"pid\":2108,\"code\":\"210803000000\",\"name\":\"西市区\"},{\"id\":\"210804\",\"pid\":2108,\"code\":\"210804000000\",\"name\":\"鲅鱼圈区\"},{\"id\":\"210811\",\"pid\":2108,\"code\":\"210811000000\",\"name\":\"老边区\"},{\"id\":\"210881\",\"pid\":2108,\"code\":\"210881000000\",\"name\":\"盖州市\"},{\"id\":\"210882\",\"pid\":2108,\"code\":\"210882000000\",\"name\":\"大石桥市\"}]},{\"id\":\"2109\",\"pid\":21,\"code\":\"210900000000\",\"name\":\"阜新市\",\"childs\":[{\"id\":\"210902\",\"pid\":2109,\"code\":\"210902000000\",\"name\":\"海州区\"},{\"id\":\"210903\",\"pid\":2109,\"code\":\"210903000000\",\"name\":\"新邱区\"},{\"id\":\"210904\",\"pid\":2109,\"code\":\"210904000000\",\"name\":\"太平区\"},{\"id\":\"210905\",\"pid\":2109,\"code\":\"210905000000\",\"name\":\"清河门区\"},{\"id\":\"210911\",\"pid\":2109,\"code\":\"210911000000\",\"name\":\"细河区\"},{\"id\":\"210921\",\"pid\":2109,\"code\":\"210921000000\",\"name\":\"阜新蒙古族自治县\"},{\"id\":\"210922\",\"pid\":2109,\"code\":\"210922000000\",\"name\":\"彰武县\"}]},{\"id\":\"2110\",\"pid\":21,\"code\":\"211000000000\",\"name\":\"辽阳市\",\"childs\":[{\"id\":\"211002\",\"pid\":2110,\"code\":\"211002000000\",\"name\":\"白塔区\"},{\"id\":\"211003\",\"pid\":2110,\"code\":\"211003000000\",\"name\":\"文圣区\"},{\"id\":\"211004\",\"pid\":2110,\"code\":\"211004000000\",\"name\":\"宏伟区\"},{\"id\":\"211005\",\"pid\":2110,\"code\":\"211005000000\",\"name\":\"弓长岭区\"},{\"id\":\"211011\",\"pid\":2110,\"code\":\"211011000000\",\"name\":\"太子河区\"},{\"id\":\"211021\",\"pid\":2110,\"code\":\"211021000000\",\"name\":\"辽阳县\"},{\"id\":\"211081\",\"pid\":2110,\"code\":\"211081000000\",\"name\":\"灯塔市\"}]},{\"id\":\"2111\",\"pid\":21,\"code\":\"211100000000\",\"name\":\"盘锦市\",\"childs\":[{\"id\":\"211102\",\"pid\":2111,\"code\":\"211102000000\",\"name\":\"双台子区\"},{\"id\":\"211103\",\"pid\":2111,\"code\":\"211103000000\",\"name\":\"兴隆台区\"},{\"id\":\"211104\",\"pid\":2111,\"code\":\"211104000000\",\"name\":\"大洼区\"},{\"id\":\"211122\",\"pid\":2111,\"code\":\"211122000000\",\"name\":\"盘山县\"}]},{\"id\":\"2112\",\"pid\":21,\"code\":\"211200000000\",\"name\":\"铁岭市\",\"childs\":[{\"id\":\"211202\",\"pid\":2112,\"code\":\"211202000000\",\"name\":\"银州区\"},{\"id\":\"211204\",\"pid\":2112,\"code\":\"211204000000\",\"name\":\"清河区\"},{\"id\":\"211221\",\"pid\":2112,\"code\":\"211221000000\",\"name\":\"铁岭县\"},{\"id\":\"211223\",\"pid\":2112,\"code\":\"211223000000\",\"name\":\"西丰县\"},{\"id\":\"211224\",\"pid\":2112,\"code\":\"211224000000\",\"name\":\"昌图县\"},{\"id\":\"211281\",\"pid\":2112,\"code\":\"211281000000\",\"name\":\"调兵山市\"},{\"id\":\"211282\",\"pid\":2112,\"code\":\"211282000000\",\"name\":\"开原市\"}]},{\"id\":\"2113\",\"pid\":21,\"code\":\"211300000000\",\"name\":\"朝阳市\",\"childs\":[{\"id\":\"211302\",\"pid\":2113,\"code\":\"211302000000\",\"name\":\"双塔区\"},{\"id\":\"211303\",\"pid\":2113,\"code\":\"211303000000\",\"name\":\"龙城区\"},{\"id\":\"211321\",\"pid\":2113,\"code\":\"211321000000\",\"name\":\"朝阳县\"},{\"id\":\"211322\",\"pid\":2113,\"code\":\"211322000000\",\"name\":\"建平县\"},{\"id\":\"211324\",\"pid\":2113,\"code\":\"211324000000\",\"name\":\"喀喇沁左翼蒙古族自治县\"},{\"id\":\"211381\",\"pid\":2113,\"code\":\"211381000000\",\"name\":\"北票市\"},{\"id\":\"211382\",\"pid\":2113,\"code\":\"211382000000\",\"name\":\"凌源市\"}]},{\"id\":\"2114\",\"pid\":21,\"code\":\"211400000000\",\"name\":\"葫芦岛市\",\"childs\":[{\"id\":\"211402\",\"pid\":2114,\"code\":\"211402000000\",\"name\":\"连山区\"},{\"id\":\"211403\",\"pid\":2114,\"code\":\"211403000000\",\"name\":\"龙港区\"},{\"id\":\"211404\",\"pid\":2114,\"code\":\"211404000000\",\"name\":\"南票区\"},{\"id\":\"211421\",\"pid\":2114,\"code\":\"211421000000\",\"name\":\"绥中县\"},{\"id\":\"211422\",\"pid\":2114,\"code\":\"211422000000\",\"name\":\"建昌县\"},{\"id\":\"211481\",\"pid\":2114,\"code\":\"211481000000\",\"name\":\"兴城市\"}]}]},{\"id\":\"22\",\"pid\":0,\"code\":\"220000000000\",\"name\":\"吉林省\",\"childs\":[{\"id\":\"2201\",\"pid\":22,\"code\":\"220100000000\",\"name\":\"长春市\",\"childs\":[{\"id\":\"220102\",\"pid\":2201,\"code\":\"220102000000\",\"name\":\"南关区\"},{\"id\":\"220103\",\"pid\":2201,\"code\":\"220103000000\",\"name\":\"宽城区\"},{\"id\":\"220104\",\"pid\":2201,\"code\":\"220104000000\",\"name\":\"朝阳区\"},{\"id\":\"220105\",\"pid\":2201,\"code\":\"220105000000\",\"name\":\"二道区\"},{\"id\":\"220106\",\"pid\":2201,\"code\":\"220106000000\",\"name\":\"绿园区\"},{\"id\":\"220112\",\"pid\":2201,\"code\":\"220112000000\",\"name\":\"双阳区\"},{\"id\":\"220113\",\"pid\":2201,\"code\":\"220113000000\",\"name\":\"九台区\"},{\"id\":\"220122\",\"pid\":2201,\"code\":\"220122000000\",\"name\":\"农安县\"},{\"id\":\"220182\",\"pid\":2201,\"code\":\"220182000000\",\"name\":\"榆树市\"},{\"id\":\"220183\",\"pid\":2201,\"code\":\"220183000000\",\"name\":\"德惠市\"},{\"id\":\"220184\",\"pid\":2201,\"code\":\"220184000000\",\"name\":\"公主岭市\"}]},{\"id\":\"2202\",\"pid\":22,\"code\":\"220200000000\",\"name\":\"吉林市\",\"childs\":[{\"id\":\"220202\",\"pid\":2202,\"code\":\"220202000000\",\"name\":\"昌邑区\"},{\"id\":\"220203\",\"pid\":2202,\"code\":\"220203000000\",\"name\":\"龙潭区\"},{\"id\":\"220204\",\"pid\":2202,\"code\":\"220204000000\",\"name\":\"船营区\"},{\"id\":\"220211\",\"pid\":2202,\"code\":\"220211000000\",\"name\":\"丰满区\"},{\"id\":\"220221\",\"pid\":2202,\"code\":\"220221000000\",\"name\":\"永吉县\"},{\"id\":\"220281\",\"pid\":2202,\"code\":\"220281000000\",\"name\":\"蛟河市\"},{\"id\":\"220282\",\"pid\":2202,\"code\":\"220282000000\",\"name\":\"桦甸市\"},{\"id\":\"220283\",\"pid\":2202,\"code\":\"220283000000\",\"name\":\"舒兰市\"},{\"id\":\"220284\",\"pid\":2202,\"code\":\"220284000000\",\"name\":\"磐石市\"}]},{\"id\":\"2203\",\"pid\":22,\"code\":\"220300000000\",\"name\":\"四平市\",\"childs\":[{\"id\":\"220302\",\"pid\":2203,\"code\":\"220302000000\",\"name\":\"铁西区\"},{\"id\":\"220303\",\"pid\":2203,\"code\":\"220303000000\",\"name\":\"铁东区\"},{\"id\":\"220322\",\"pid\":2203,\"code\":\"220322000000\",\"name\":\"梨树县\"},{\"id\":\"220323\",\"pid\":2203,\"code\":\"220323000000\",\"name\":\"伊通满族自治县\"},{\"id\":\"220382\",\"pid\":2203,\"code\":\"220382000000\",\"name\":\"双辽市\"}]},{\"id\":\"2204\",\"pid\":22,\"code\":\"220400000000\",\"name\":\"辽源市\",\"childs\":[{\"id\":\"220402\",\"pid\":2204,\"code\":\"220402000000\",\"name\":\"龙山区\"},{\"id\":\"220403\",\"pid\":2204,\"code\":\"220403000000\",\"name\":\"西安区\"},{\"id\":\"220421\",\"pid\":2204,\"code\":\"220421000000\",\"name\":\"东丰县\"},{\"id\":\"220422\",\"pid\":2204,\"code\":\"220422000000\",\"name\":\"东辽县\"}]},{\"id\":\"2205\",\"pid\":22,\"code\":\"220500000000\",\"name\":\"通化市\",\"childs\":[{\"id\":\"220502\",\"pid\":2205,\"code\":\"220502000000\",\"name\":\"东昌区\"},{\"id\":\"220503\",\"pid\":2205,\"code\":\"220503000000\",\"name\":\"二道江区\"},{\"id\":\"220521\",\"pid\":2205,\"code\":\"220521000000\",\"name\":\"通化县\"},{\"id\":\"220523\",\"pid\":2205,\"code\":\"220523000000\",\"name\":\"辉南县\"},{\"id\":\"220524\",\"pid\":2205,\"code\":\"220524000000\",\"name\":\"柳河县\"},{\"id\":\"220581\",\"pid\":2205,\"code\":\"220581000000\",\"name\":\"梅河口市\"},{\"id\":\"220582\",\"pid\":2205,\"code\":\"220582000000\",\"name\":\"集安市\"}]},{\"id\":\"2206\",\"pid\":22,\"code\":\"220600000000\",\"name\":\"白山市\",\"childs\":[{\"id\":\"220602\",\"pid\":2206,\"code\":\"220602000000\",\"name\":\"浑江区\"},{\"id\":\"220605\",\"pid\":2206,\"code\":\"220605000000\",\"name\":\"江源区\"},{\"id\":\"220621\",\"pid\":2206,\"code\":\"220621000000\",\"name\":\"抚松县\"},{\"id\":\"220622\",\"pid\":2206,\"code\":\"220622000000\",\"name\":\"靖宇县\"},{\"id\":\"220623\",\"pid\":2206,\"code\":\"220623000000\",\"name\":\"长白朝鲜族自治县\"},{\"id\":\"220681\",\"pid\":2206,\"code\":\"220681000000\",\"name\":\"临江市\"}]},{\"id\":\"2207\",\"pid\":22,\"code\":\"220700000000\",\"name\":\"松原市\",\"childs\":[{\"id\":\"220702\",\"pid\":2207,\"code\":\"220702000000\",\"name\":\"宁江区\"},{\"id\":\"220721\",\"pid\":2207,\"code\":\"220721000000\",\"name\":\"前郭尔罗斯蒙古族自治县\"},{\"id\":\"220722\",\"pid\":2207,\"code\":\"220722000000\",\"name\":\"长岭县\"},{\"id\":\"220723\",\"pid\":2207,\"code\":\"220723000000\",\"name\":\"乾安县\"},{\"id\":\"220781\",\"pid\":2207,\"code\":\"220781000000\",\"name\":\"扶余市\"}]},{\"id\":\"2208\",\"pid\":22,\"code\":\"220800000000\",\"name\":\"白城市\",\"childs\":[{\"id\":\"220802\",\"pid\":2208,\"code\":\"220802000000\",\"name\":\"洮北区\"},{\"id\":\"220821\",\"pid\":2208,\"code\":\"220821000000\",\"name\":\"镇赉县\"},{\"id\":\"220822\",\"pid\":2208,\"code\":\"220822000000\",\"name\":\"通榆县\"},{\"id\":\"220881\",\"pid\":2208,\"code\":\"220881000000\",\"name\":\"洮南市\"},{\"id\":\"220882\",\"pid\":2208,\"code\":\"220882000000\",\"name\":\"大安市\"}]},{\"id\":\"2224\",\"pid\":22,\"code\":\"222400000000\",\"name\":\"延边朝鲜族自治州\",\"childs\":[{\"id\":\"222401\",\"pid\":2224,\"code\":\"222401000000\",\"name\":\"延吉市\"},{\"id\":\"222402\",\"pid\":2224,\"code\":\"222402000000\",\"name\":\"图们市\"},{\"id\":\"222403\",\"pid\":2224,\"code\":\"222403000000\",\"name\":\"敦化市\"},{\"id\":\"222404\",\"pid\":2224,\"code\":\"222404000000\",\"name\":\"珲春市\"},{\"id\":\"222405\",\"pid\":2224,\"code\":\"222405000000\",\"name\":\"龙井市\"},{\"id\":\"222406\",\"pid\":2224,\"code\":\"222406000000\",\"name\":\"和龙市\"},{\"id\":\"222424\",\"pid\":2224,\"code\":\"222424000000\",\"name\":\"汪清县\"},{\"id\":\"222426\",\"pid\":2224,\"code\":\"222426000000\",\"name\":\"安图县\"}]}]},{\"id\":\"23\",\"pid\":0,\"code\":\"230000000000\",\"name\":\"黑龙江省\",\"childs\":[{\"id\":\"2301\",\"pid\":23,\"code\":\"230100000000\",\"name\":\"哈尔滨市\",\"childs\":[{\"id\":\"230102\",\"pid\":2301,\"code\":\"230102000000\",\"name\":\"道里区\"},{\"id\":\"230103\",\"pid\":2301,\"code\":\"230103000000\",\"name\":\"南岗区\"},{\"id\":\"230104\",\"pid\":2301,\"code\":\"230104000000\",\"name\":\"道外区\"},{\"id\":\"230108\",\"pid\":2301,\"code\":\"230108000000\",\"name\":\"平房区\"},{\"id\":\"230109\",\"pid\":2301,\"code\":\"230109000000\",\"name\":\"松北区\"},{\"id\":\"230110\",\"pid\":2301,\"code\":\"230110000000\",\"name\":\"香坊区\"},{\"id\":\"230111\",\"pid\":2301,\"code\":\"230111000000\",\"name\":\"呼兰区\"},{\"id\":\"230112\",\"pid\":2301,\"code\":\"230112000000\",\"name\":\"阿城区\"},{\"id\":\"230113\",\"pid\":2301,\"code\":\"230113000000\",\"name\":\"双城区\"},{\"id\":\"230123\",\"pid\":2301,\"code\":\"230123000000\",\"name\":\"依兰县\"},{\"id\":\"230124\",\"pid\":2301,\"code\":\"230124000000\",\"name\":\"方正县\"},{\"id\":\"230125\",\"pid\":2301,\"code\":\"230125000000\",\"name\":\"宾县\"},{\"id\":\"230126\",\"pid\":2301,\"code\":\"230126000000\",\"name\":\"巴彦县\"},{\"id\":\"230127\",\"pid\":2301,\"code\":\"230127000000\",\"name\":\"木兰县\"},{\"id\":\"230128\",\"pid\":2301,\"code\":\"230128000000\",\"name\":\"通河县\"},{\"id\":\"230129\",\"pid\":2301,\"code\":\"230129000000\",\"name\":\"延寿县\"},{\"id\":\"230183\",\"pid\":2301,\"code\":\"230183000000\",\"name\":\"尚志市\"},{\"id\":\"230184\",\"pid\":2301,\"code\":\"230184000000\",\"name\":\"五常市\"}]},{\"id\":\"2302\",\"pid\":23,\"code\":\"230200000000\",\"name\":\"齐齐哈尔市\",\"childs\":[{\"id\":\"230202\",\"pid\":2302,\"code\":\"230202000000\",\"name\":\"龙沙区\"},{\"id\":\"230203\",\"pid\":2302,\"code\":\"230203000000\",\"name\":\"建华区\"},{\"id\":\"230204\",\"pid\":2302,\"code\":\"230204000000\",\"name\":\"铁锋区\"},{\"id\":\"230205\",\"pid\":2302,\"code\":\"230205000000\",\"name\":\"昂昂溪区\"},{\"id\":\"230206\",\"pid\":2302,\"code\":\"230206000000\",\"name\":\"富拉尔基区\"},{\"id\":\"230207\",\"pid\":2302,\"code\":\"230207000000\",\"name\":\"碾子山区\"},{\"id\":\"230208\",\"pid\":2302,\"code\":\"230208000000\",\"name\":\"梅里斯达斡尔族区\"},{\"id\":\"230221\",\"pid\":2302,\"code\":\"230221000000\",\"name\":\"龙江县\"},{\"id\":\"230223\",\"pid\":2302,\"code\":\"230223000000\",\"name\":\"依安县\"},{\"id\":\"230224\",\"pid\":2302,\"code\":\"230224000000\",\"name\":\"泰来县\"},{\"id\":\"230225\",\"pid\":2302,\"code\":\"230225000000\",\"name\":\"甘南县\"},{\"id\":\"230227\",\"pid\":2302,\"code\":\"230227000000\",\"name\":\"富裕县\"},{\"id\":\"230229\",\"pid\":2302,\"code\":\"230229000000\",\"name\":\"克山县\"},{\"id\":\"230230\",\"pid\":2302,\"code\":\"230230000000\",\"name\":\"克东县\"},{\"id\":\"230231\",\"pid\":2302,\"code\":\"230231000000\",\"name\":\"拜泉县\"},{\"id\":\"230281\",\"pid\":2302,\"code\":\"230281000000\",\"name\":\"讷河市\"}]},{\"id\":\"2303\",\"pid\":23,\"code\":\"230300000000\",\"name\":\"鸡西市\",\"childs\":[{\"id\":\"230302\",\"pid\":2303,\"code\":\"230302000000\",\"name\":\"鸡冠区\"},{\"id\":\"230303\",\"pid\":2303,\"code\":\"230303000000\",\"name\":\"恒山区\"},{\"id\":\"230304\",\"pid\":2303,\"code\":\"230304000000\",\"name\":\"滴道区\"},{\"id\":\"230305\",\"pid\":2303,\"code\":\"230305000000\",\"name\":\"梨树区\"},{\"id\":\"230306\",\"pid\":2303,\"code\":\"230306000000\",\"name\":\"城子河区\"},{\"id\":\"230307\",\"pid\":2303,\"code\":\"230307000000\",\"name\":\"麻山区\"},{\"id\":\"230321\",\"pid\":2303,\"code\":\"230321000000\",\"name\":\"鸡东县\"},{\"id\":\"230381\",\"pid\":2303,\"code\":\"230381000000\",\"name\":\"虎林市\"},{\"id\":\"230382\",\"pid\":2303,\"code\":\"230382000000\",\"name\":\"密山市\"}]},{\"id\":\"2304\",\"pid\":23,\"code\":\"230400000000\",\"name\":\"鹤岗市\",\"childs\":[{\"id\":\"230402\",\"pid\":2304,\"code\":\"230402000000\",\"name\":\"向阳区\"},{\"id\":\"230403\",\"pid\":2304,\"code\":\"230403000000\",\"name\":\"工农区\"},{\"id\":\"230404\",\"pid\":2304,\"code\":\"230404000000\",\"name\":\"南山区\"},{\"id\":\"230405\",\"pid\":2304,\"code\":\"230405000000\",\"name\":\"兴安区\"},{\"id\":\"230406\",\"pid\":2304,\"code\":\"230406000000\",\"name\":\"东山区\"},{\"id\":\"230407\",\"pid\":2304,\"code\":\"230407000000\",\"name\":\"兴山区\"},{\"id\":\"230421\",\"pid\":2304,\"code\":\"230421000000\",\"name\":\"萝北县\"},{\"id\":\"230422\",\"pid\":2304,\"code\":\"230422000000\",\"name\":\"绥滨县\"}]},{\"id\":\"2305\",\"pid\":23,\"code\":\"230500000000\",\"name\":\"双鸭山市\",\"childs\":[{\"id\":\"230502\",\"pid\":2305,\"code\":\"230502000000\",\"name\":\"尖山区\"},{\"id\":\"230503\",\"pid\":2305,\"code\":\"230503000000\",\"name\":\"岭东区\"},{\"id\":\"230505\",\"pid\":2305,\"code\":\"230505000000\",\"name\":\"四方台区\"},{\"id\":\"230506\",\"pid\":2305,\"code\":\"230506000000\",\"name\":\"宝山区\"},{\"id\":\"230521\",\"pid\":2305,\"code\":\"230521000000\",\"name\":\"集贤县\"},{\"id\":\"230522\",\"pid\":2305,\"code\":\"230522000000\",\"name\":\"友谊县\"},{\"id\":\"230523\",\"pid\":2305,\"code\":\"230523000000\",\"name\":\"宝清县\"},{\"id\":\"230524\",\"pid\":2305,\"code\":\"230524000000\",\"name\":\"饶河县\"}]},{\"id\":\"2306\",\"pid\":23,\"code\":\"230600000000\",\"name\":\"大庆市\",\"childs\":[{\"id\":\"230602\",\"pid\":2306,\"code\":\"230602000000\",\"name\":\"萨尔图区\"},{\"id\":\"230603\",\"pid\":2306,\"code\":\"230603000000\",\"name\":\"龙凤区\"},{\"id\":\"230604\",\"pid\":2306,\"code\":\"230604000000\",\"name\":\"让胡路区\"},{\"id\":\"230605\",\"pid\":2306,\"code\":\"230605000000\",\"name\":\"红岗区\"},{\"id\":\"230606\",\"pid\":2306,\"code\":\"230606000000\",\"name\":\"大同区\"},{\"id\":\"230621\",\"pid\":2306,\"code\":\"230621000000\",\"name\":\"肇州县\"},{\"id\":\"230622\",\"pid\":2306,\"code\":\"230622000000\",\"name\":\"肇源县\"},{\"id\":\"230623\",\"pid\":2306,\"code\":\"230623000000\",\"name\":\"林甸县\"},{\"id\":\"230624\",\"pid\":2306,\"code\":\"230624000000\",\"name\":\"杜尔伯特蒙古族自治县\"}]},{\"id\":\"2307\",\"pid\":23,\"code\":\"230700000000\",\"name\":\"伊春市\",\"childs\":[{\"id\":\"230717\",\"pid\":2307,\"code\":\"230717000000\",\"name\":\"伊美区\"},{\"id\":\"230718\",\"pid\":2307,\"code\":\"230718000000\",\"name\":\"乌翠区\"},{\"id\":\"230719\",\"pid\":2307,\"code\":\"230719000000\",\"name\":\"友好区\"},{\"id\":\"230722\",\"pid\":2307,\"code\":\"230722000000\",\"name\":\"嘉荫县\"},{\"id\":\"230723\",\"pid\":2307,\"code\":\"230723000000\",\"name\":\"汤旺县\"},{\"id\":\"230724\",\"pid\":2307,\"code\":\"230724000000\",\"name\":\"丰林县\"},{\"id\":\"230725\",\"pid\":2307,\"code\":\"230725000000\",\"name\":\"大箐山县\"},{\"id\":\"230726\",\"pid\":2307,\"code\":\"230726000000\",\"name\":\"南岔县\"},{\"id\":\"230751\",\"pid\":2307,\"code\":\"230751000000\",\"name\":\"金林区\"},{\"id\":\"230781\",\"pid\":2307,\"code\":\"230781000000\",\"name\":\"铁力市\"}]},{\"id\":\"2308\",\"pid\":23,\"code\":\"230800000000\",\"name\":\"佳木斯市\",\"childs\":[{\"id\":\"230803\",\"pid\":2308,\"code\":\"230803000000\",\"name\":\"向阳区\"},{\"id\":\"230804\",\"pid\":2308,\"code\":\"230804000000\",\"name\":\"前进区\"},{\"id\":\"230805\",\"pid\":2308,\"code\":\"230805000000\",\"name\":\"东风区\"},{\"id\":\"230811\",\"pid\":2308,\"code\":\"230811000000\",\"name\":\"郊区\"},{\"id\":\"230822\",\"pid\":2308,\"code\":\"230822000000\",\"name\":\"桦南县\"},{\"id\":\"230826\",\"pid\":2308,\"code\":\"230826000000\",\"name\":\"桦川县\"},{\"id\":\"230828\",\"pid\":2308,\"code\":\"230828000000\",\"name\":\"汤原县\"},{\"id\":\"230881\",\"pid\":2308,\"code\":\"230881000000\",\"name\":\"同江市\"},{\"id\":\"230882\",\"pid\":2308,\"code\":\"230882000000\",\"name\":\"富锦市\"},{\"id\":\"230883\",\"pid\":2308,\"code\":\"230883000000\",\"name\":\"抚远市\"}]},{\"id\":\"2309\",\"pid\":23,\"code\":\"230900000000\",\"name\":\"七台河市\",\"childs\":[{\"id\":\"230902\",\"pid\":2309,\"code\":\"230902000000\",\"name\":\"新兴区\"},{\"id\":\"230903\",\"pid\":2309,\"code\":\"230903000000\",\"name\":\"桃山区\"},{\"id\":\"230904\",\"pid\":2309,\"code\":\"230904000000\",\"name\":\"茄子河区\"},{\"id\":\"230921\",\"pid\":2309,\"code\":\"230921000000\",\"name\":\"勃利县\"}]},{\"id\":\"2310\",\"pid\":23,\"code\":\"231000000000\",\"name\":\"牡丹江市\",\"childs\":[{\"id\":\"231002\",\"pid\":2310,\"code\":\"231002000000\",\"name\":\"东安区\"},{\"id\":\"231003\",\"pid\":2310,\"code\":\"231003000000\",\"name\":\"阳明区\"},{\"id\":\"231004\",\"pid\":2310,\"code\":\"231004000000\",\"name\":\"爱民区\"},{\"id\":\"231005\",\"pid\":2310,\"code\":\"231005000000\",\"name\":\"西安区\"},{\"id\":\"231025\",\"pid\":2310,\"code\":\"231025000000\",\"name\":\"林口县\"},{\"id\":\"231081\",\"pid\":2310,\"code\":\"231081000000\",\"name\":\"绥芬河市\"},{\"id\":\"231083\",\"pid\":2310,\"code\":\"231083000000\",\"name\":\"海林市\"},{\"id\":\"231084\",\"pid\":2310,\"code\":\"231084000000\",\"name\":\"宁安市\"},{\"id\":\"231085\",\"pid\":2310,\"code\":\"231085000000\",\"name\":\"穆棱市\"},{\"id\":\"231086\",\"pid\":2310,\"code\":\"231086000000\",\"name\":\"东宁市\"}]},{\"id\":\"2311\",\"pid\":23,\"code\":\"231100000000\",\"name\":\"黑河市\",\"childs\":[{\"id\":\"231102\",\"pid\":2311,\"code\":\"231102000000\",\"name\":\"爱辉区\"},{\"id\":\"231123\",\"pid\":2311,\"code\":\"231123000000\",\"name\":\"逊克县\"},{\"id\":\"231124\",\"pid\":2311,\"code\":\"231124000000\",\"name\":\"孙吴县\"},{\"id\":\"231181\",\"pid\":2311,\"code\":\"231181000000\",\"name\":\"北安市\"},{\"id\":\"231182\",\"pid\":2311,\"code\":\"231182000000\",\"name\":\"五大连池市\"},{\"id\":\"231183\",\"pid\":2311,\"code\":\"231183000000\",\"name\":\"嫩江市\"}]},{\"id\":\"2312\",\"pid\":23,\"code\":\"231200000000\",\"name\":\"绥化市\",\"childs\":[{\"id\":\"231202\",\"pid\":2312,\"code\":\"231202000000\",\"name\":\"北林区\"},{\"id\":\"231221\",\"pid\":2312,\"code\":\"231221000000\",\"name\":\"望奎县\"},{\"id\":\"231222\",\"pid\":2312,\"code\":\"231222000000\",\"name\":\"兰西县\"},{\"id\":\"231223\",\"pid\":2312,\"code\":\"231223000000\",\"name\":\"青冈县\"},{\"id\":\"231224\",\"pid\":2312,\"code\":\"231224000000\",\"name\":\"庆安县\"},{\"id\":\"231225\",\"pid\":2312,\"code\":\"231225000000\",\"name\":\"明水县\"},{\"id\":\"231226\",\"pid\":2312,\"code\":\"231226000000\",\"name\":\"绥棱县\"},{\"id\":\"231281\",\"pid\":2312,\"code\":\"231281000000\",\"name\":\"安达市\"},{\"id\":\"231282\",\"pid\":2312,\"code\":\"231282000000\",\"name\":\"肇东市\"},{\"id\":\"231283\",\"pid\":2312,\"code\":\"231283000000\",\"name\":\"海伦市\"}]},{\"id\":\"2327\",\"pid\":23,\"code\":\"232700000000\",\"name\":\"大兴安岭地区\",\"childs\":[{\"id\":\"232701\",\"pid\":2327,\"code\":\"232701000000\",\"name\":\"漠河市\"},{\"id\":\"232718\",\"pid\":2327,\"code\":\"232718000000\",\"name\":\"加格达奇区\"},{\"id\":\"232721\",\"pid\":2327,\"code\":\"232721000000\",\"name\":\"呼玛县\"},{\"id\":\"232722\",\"pid\":2327,\"code\":\"232722000000\",\"name\":\"塔河县\"}]}]},{\"id\":\"31\",\"pid\":0,\"code\":\"310000000000\",\"name\":\"上海市\",\"childs\":[{\"id\":\"3101\",\"pid\":31,\"code\":\"310100000000\",\"name\":\"上海市\",\"childs\":[{\"id\":\"310101\",\"pid\":3101,\"code\":\"310101000000\",\"name\":\"黄浦区\"},{\"id\":\"310104\",\"pid\":3101,\"code\":\"310104000000\",\"name\":\"徐汇区\"},{\"id\":\"310105\",\"pid\":3101,\"code\":\"310105000000\",\"name\":\"长宁区\"},{\"id\":\"310106\",\"pid\":3101,\"code\":\"310106000000\",\"name\":\"静安区\"},{\"id\":\"310107\",\"pid\":3101,\"code\":\"310107000000\",\"name\":\"普陀区\"},{\"id\":\"310109\",\"pid\":3101,\"code\":\"310109000000\",\"name\":\"虹口区\"},{\"id\":\"310110\",\"pid\":3101,\"code\":\"310110000000\",\"name\":\"杨浦区\"},{\"id\":\"310112\",\"pid\":3101,\"code\":\"310112000000\",\"name\":\"闵行区\"},{\"id\":\"310113\",\"pid\":3101,\"code\":\"310113000000\",\"name\":\"宝山区\"},{\"id\":\"310114\",\"pid\":3101,\"code\":\"310114000000\",\"name\":\"嘉定区\"},{\"id\":\"310115\",\"pid\":3101,\"code\":\"310115000000\",\"name\":\"浦东新区\"},{\"id\":\"310116\",\"pid\":3101,\"code\":\"310116000000\",\"name\":\"金山区\"},{\"id\":\"310117\",\"pid\":3101,\"code\":\"310117000000\",\"name\":\"松江区\"},{\"id\":\"310118\",\"pid\":3101,\"code\":\"310118000000\",\"name\":\"青浦区\"},{\"id\":\"310120\",\"pid\":3101,\"code\":\"310120000000\",\"name\":\"奉贤区\"},{\"id\":\"310151\",\"pid\":3101,\"code\":\"310151000000\",\"name\":\"崇明区\"}]}]},{\"id\":\"32\",\"pid\":0,\"code\":\"320000000000\",\"name\":\"江苏省\",\"childs\":[{\"id\":\"3201\",\"pid\":32,\"code\":\"320100000000\",\"name\":\"南京市\",\"childs\":[{\"id\":\"320102\",\"pid\":3201,\"code\":\"320102000000\",\"name\":\"玄武区\"},{\"id\":\"320104\",\"pid\":3201,\"code\":\"320104000000\",\"name\":\"秦淮区\"},{\"id\":\"320105\",\"pid\":3201,\"code\":\"320105000000\",\"name\":\"建邺区\"},{\"id\":\"320106\",\"pid\":3201,\"code\":\"320106000000\",\"name\":\"鼓楼区\"},{\"id\":\"320111\",\"pid\":3201,\"code\":\"320111000000\",\"name\":\"浦口区\"},{\"id\":\"320113\",\"pid\":3201,\"code\":\"320113000000\",\"name\":\"栖霞区\"},{\"id\":\"320114\",\"pid\":3201,\"code\":\"320114000000\",\"name\":\"雨花台区\"},{\"id\":\"320115\",\"pid\":3201,\"code\":\"320115000000\",\"name\":\"江宁区\"},{\"id\":\"320116\",\"pid\":3201,\"code\":\"320116000000\",\"name\":\"六合区\"},{\"id\":\"320117\",\"pid\":3201,\"code\":\"320117000000\",\"name\":\"溧水区\"},{\"id\":\"320118\",\"pid\":3201,\"code\":\"320118000000\",\"name\":\"高淳区\"}]},{\"id\":\"3202\",\"pid\":32,\"code\":\"320200000000\",\"name\":\"无锡市\",\"childs\":[{\"id\":\"320205\",\"pid\":3202,\"code\":\"320205000000\",\"name\":\"锡山区\"},{\"id\":\"320206\",\"pid\":3202,\"code\":\"320206000000\",\"name\":\"惠山区\"},{\"id\":\"320211\",\"pid\":3202,\"code\":\"320211000000\",\"name\":\"滨湖区\"},{\"id\":\"320213\",\"pid\":3202,\"code\":\"320213000000\",\"name\":\"梁溪区\"},{\"id\":\"320214\",\"pid\":3202,\"code\":\"320214000000\",\"name\":\"新吴区\"},{\"id\":\"320281\",\"pid\":3202,\"code\":\"320281000000\",\"name\":\"江阴市\"},{\"id\":\"320282\",\"pid\":3202,\"code\":\"320282000000\",\"name\":\"宜兴市\"}]},{\"id\":\"3203\",\"pid\":32,\"code\":\"320300000000\",\"name\":\"徐州市\",\"childs\":[{\"id\":\"320302\",\"pid\":3203,\"code\":\"320302000000\",\"name\":\"鼓楼区\"},{\"id\":\"320303\",\"pid\":3203,\"code\":\"320303000000\",\"name\":\"云龙区\"},{\"id\":\"320305\",\"pid\":3203,\"code\":\"320305000000\",\"name\":\"贾汪区\"},{\"id\":\"320311\",\"pid\":3203,\"code\":\"320311000000\",\"name\":\"泉山区\"},{\"id\":\"320312\",\"pid\":3203,\"code\":\"320312000000\",\"name\":\"铜山区\"},{\"id\":\"320321\",\"pid\":3203,\"code\":\"320321000000\",\"name\":\"丰县\"},{\"id\":\"320322\",\"pid\":3203,\"code\":\"320322000000\",\"name\":\"沛县\"},{\"id\":\"320324\",\"pid\":3203,\"code\":\"320324000000\",\"name\":\"睢宁县\"},{\"id\":\"320381\",\"pid\":3203,\"code\":\"320381000000\",\"name\":\"新沂市\"},{\"id\":\"320382\",\"pid\":3203,\"code\":\"320382000000\",\"name\":\"邳州市\"}]},{\"id\":\"3204\",\"pid\":32,\"code\":\"320400000000\",\"name\":\"常州市\",\"childs\":[{\"id\":\"320402\",\"pid\":3204,\"code\":\"320402000000\",\"name\":\"天宁区\"},{\"id\":\"320404\",\"pid\":3204,\"code\":\"320404000000\",\"name\":\"钟楼区\"},{\"id\":\"320411\",\"pid\":3204,\"code\":\"320411000000\",\"name\":\"新北区\"},{\"id\":\"320412\",\"pid\":3204,\"code\":\"320412000000\",\"name\":\"武进区\"},{\"id\":\"320413\",\"pid\":3204,\"code\":\"320413000000\",\"name\":\"金坛区\"},{\"id\":\"320481\",\"pid\":3204,\"code\":\"320481000000\",\"name\":\"溧阳市\"}]},{\"id\":\"3205\",\"pid\":32,\"code\":\"320500000000\",\"name\":\"苏州市\",\"childs\":[{\"id\":\"320505\",\"pid\":3205,\"code\":\"320505000000\",\"name\":\"虎丘区\"},{\"id\":\"320506\",\"pid\":3205,\"code\":\"320506000000\",\"name\":\"吴中区\"},{\"id\":\"320507\",\"pid\":3205,\"code\":\"320507000000\",\"name\":\"相城区\"},{\"id\":\"320508\",\"pid\":3205,\"code\":\"320508000000\",\"name\":\"姑苏区\"},{\"id\":\"320509\",\"pid\":3205,\"code\":\"320509000000\",\"name\":\"吴江区\"},{\"id\":\"320581\",\"pid\":3205,\"code\":\"320581000000\",\"name\":\"常熟市\"},{\"id\":\"320582\",\"pid\":3205,\"code\":\"320582000000\",\"name\":\"张家港市\"},{\"id\":\"320583\",\"pid\":3205,\"code\":\"320583000000\",\"name\":\"昆山市\"},{\"id\":\"320585\",\"pid\":3205,\"code\":\"320585000000\",\"name\":\"太仓市\"}]},{\"id\":\"3206\",\"pid\":32,\"code\":\"320600000000\",\"name\":\"南通市\",\"childs\":[{\"id\":\"320612\",\"pid\":3206,\"code\":\"320612000000\",\"name\":\"通州区\"},{\"id\":\"320613\",\"pid\":3206,\"code\":\"320613000000\",\"name\":\"崇川区\"},{\"id\":\"320614\",\"pid\":3206,\"code\":\"320614000000\",\"name\":\"海门区\"},{\"id\":\"320623\",\"pid\":3206,\"code\":\"320623000000\",\"name\":\"如东县\"},{\"id\":\"320681\",\"pid\":3206,\"code\":\"320681000000\",\"name\":\"启东市\"},{\"id\":\"320682\",\"pid\":3206,\"code\":\"320682000000\",\"name\":\"如皋市\"},{\"id\":\"320685\",\"pid\":3206,\"code\":\"320685000000\",\"name\":\"海安市\"}]},{\"id\":\"3207\",\"pid\":32,\"code\":\"320700000000\",\"name\":\"连云港市\",\"childs\":[{\"id\":\"320703\",\"pid\":3207,\"code\":\"320703000000\",\"name\":\"连云区\"},{\"id\":\"320706\",\"pid\":3207,\"code\":\"320706000000\",\"name\":\"海州区\"},{\"id\":\"320707\",\"pid\":3207,\"code\":\"320707000000\",\"name\":\"赣榆区\"},{\"id\":\"320722\",\"pid\":3207,\"code\":\"320722000000\",\"name\":\"东海县\"},{\"id\":\"320723\",\"pid\":3207,\"code\":\"320723000000\",\"name\":\"灌云县\"},{\"id\":\"320724\",\"pid\":3207,\"code\":\"320724000000\",\"name\":\"灌南县\"}]},{\"id\":\"3208\",\"pid\":32,\"code\":\"320800000000\",\"name\":\"淮安市\",\"childs\":[{\"id\":\"320803\",\"pid\":3208,\"code\":\"320803000000\",\"name\":\"淮安区\"},{\"id\":\"320804\",\"pid\":3208,\"code\":\"320804000000\",\"name\":\"淮阴区\"},{\"id\":\"320812\",\"pid\":3208,\"code\":\"320812000000\",\"name\":\"清江浦区\"},{\"id\":\"320813\",\"pid\":3208,\"code\":\"320813000000\",\"name\":\"洪泽区\"},{\"id\":\"320826\",\"pid\":3208,\"code\":\"320826000000\",\"name\":\"涟水县\"},{\"id\":\"320830\",\"pid\":3208,\"code\":\"320830000000\",\"name\":\"盱眙县\"},{\"id\":\"320831\",\"pid\":3208,\"code\":\"320831000000\",\"name\":\"金湖县\"}]},{\"id\":\"3209\",\"pid\":32,\"code\":\"320900000000\",\"name\":\"盐城市\",\"childs\":[{\"id\":\"320902\",\"pid\":3209,\"code\":\"320902000000\",\"name\":\"亭湖区\"},{\"id\":\"320903\",\"pid\":3209,\"code\":\"320903000000\",\"name\":\"盐都区\"},{\"id\":\"320904\",\"pid\":3209,\"code\":\"320904000000\",\"name\":\"大丰区\"},{\"id\":\"320921\",\"pid\":3209,\"code\":\"320921000000\",\"name\":\"响水县\"},{\"id\":\"320922\",\"pid\":3209,\"code\":\"320922000000\",\"name\":\"滨海县\"},{\"id\":\"320923\",\"pid\":3209,\"code\":\"320923000000\",\"name\":\"阜宁县\"},{\"id\":\"320924\",\"pid\":3209,\"code\":\"320924000000\",\"name\":\"射阳县\"},{\"id\":\"320925\",\"pid\":3209,\"code\":\"320925000000\",\"name\":\"建湖县\"},{\"id\":\"320981\",\"pid\":3209,\"code\":\"320981000000\",\"name\":\"东台市\"}]},{\"id\":\"3210\",\"pid\":32,\"code\":\"321000000000\",\"name\":\"扬州市\",\"childs\":[{\"id\":\"321002\",\"pid\":3210,\"code\":\"321002000000\",\"name\":\"广陵区\"},{\"id\":\"321003\",\"pid\":3210,\"code\":\"321003000000\",\"name\":\"邗江区\"},{\"id\":\"321012\",\"pid\":3210,\"code\":\"321012000000\",\"name\":\"江都区\"},{\"id\":\"321023\",\"pid\":3210,\"code\":\"321023000000\",\"name\":\"宝应县\"},{\"id\":\"321081\",\"pid\":3210,\"code\":\"321081000000\",\"name\":\"仪征市\"},{\"id\":\"321084\",\"pid\":3210,\"code\":\"321084000000\",\"name\":\"高邮市\"}]},{\"id\":\"3211\",\"pid\":32,\"code\":\"321100000000\",\"name\":\"镇江市\",\"childs\":[{\"id\":\"321102\",\"pid\":3211,\"code\":\"321102000000\",\"name\":\"京口区\"},{\"id\":\"321111\",\"pid\":3211,\"code\":\"321111000000\",\"name\":\"润州区\"},{\"id\":\"321112\",\"pid\":3211,\"code\":\"321112000000\",\"name\":\"丹徒区\"},{\"id\":\"321181\",\"pid\":3211,\"code\":\"321181000000\",\"name\":\"丹阳市\"},{\"id\":\"321182\",\"pid\":3211,\"code\":\"321182000000\",\"name\":\"扬中市\"},{\"id\":\"321183\",\"pid\":3211,\"code\":\"321183000000\",\"name\":\"句容市\"}]},{\"id\":\"3212\",\"pid\":32,\"code\":\"321200000000\",\"name\":\"泰州市\",\"childs\":[{\"id\":\"321202\",\"pid\":3212,\"code\":\"321202000000\",\"name\":\"海陵区\"},{\"id\":\"321203\",\"pid\":3212,\"code\":\"321203000000\",\"name\":\"高港区\"},{\"id\":\"321204\",\"pid\":3212,\"code\":\"321204000000\",\"name\":\"姜堰区\"},{\"id\":\"321281\",\"pid\":3212,\"code\":\"321281000000\",\"name\":\"兴化市\"},{\"id\":\"321282\",\"pid\":3212,\"code\":\"321282000000\",\"name\":\"靖江市\"},{\"id\":\"321283\",\"pid\":3212,\"code\":\"321283000000\",\"name\":\"泰兴市\"}]},{\"id\":\"3213\",\"pid\":32,\"code\":\"321300000000\",\"name\":\"宿迁市\",\"childs\":[{\"id\":\"321302\",\"pid\":3213,\"code\":\"321302000000\",\"name\":\"宿城区\"},{\"id\":\"321311\",\"pid\":3213,\"code\":\"321311000000\",\"name\":\"宿豫区\"},{\"id\":\"321322\",\"pid\":3213,\"code\":\"321322000000\",\"name\":\"沭阳县\"},{\"id\":\"321323\",\"pid\":3213,\"code\":\"321323000000\",\"name\":\"泗阳县\"},{\"id\":\"321324\",\"pid\":3213,\"code\":\"321324000000\",\"name\":\"泗洪县\"}]}]},{\"id\":\"33\",\"pid\":0,\"code\":\"330000000000\",\"name\":\"浙江省\",\"childs\":[{\"id\":\"3301\",\"pid\":33,\"code\":\"330100000000\",\"name\":\"杭州市\",\"childs\":[{\"id\":\"330102\",\"pid\":3301,\"code\":\"330102000000\",\"name\":\"上城区\"},{\"id\":\"330105\",\"pid\":3301,\"code\":\"330105000000\",\"name\":\"拱墅区\"},{\"id\":\"330106\",\"pid\":3301,\"code\":\"330106000000\",\"name\":\"西湖区\"},{\"id\":\"330108\",\"pid\":3301,\"code\":\"330108000000\",\"name\":\"滨江区\"},{\"id\":\"330109\",\"pid\":3301,\"code\":\"330109000000\",\"name\":\"萧山区\"},{\"id\":\"330110\",\"pid\":3301,\"code\":\"330110000000\",\"name\":\"余杭区\"},{\"id\":\"330111\",\"pid\":3301,\"code\":\"330111000000\",\"name\":\"富阳区\"},{\"id\":\"330112\",\"pid\":3301,\"code\":\"330112000000\",\"name\":\"临安区\"},{\"id\":\"330113\",\"pid\":3301,\"code\":\"330113000000\",\"name\":\"临平区\"},{\"id\":\"330114\",\"pid\":3301,\"code\":\"330114000000\",\"name\":\"钱塘区\"},{\"id\":\"330122\",\"pid\":3301,\"code\":\"330122000000\",\"name\":\"桐庐县\"},{\"id\":\"330127\",\"pid\":3301,\"code\":\"330127000000\",\"name\":\"淳安县\"},{\"id\":\"330182\",\"pid\":3301,\"code\":\"330182000000\",\"name\":\"建德市\"}]},{\"id\":\"3302\",\"pid\":33,\"code\":\"330200000000\",\"name\":\"宁波市\",\"childs\":[{\"id\":\"330203\",\"pid\":3302,\"code\":\"330203000000\",\"name\":\"海曙区\"},{\"id\":\"330205\",\"pid\":3302,\"code\":\"330205000000\",\"name\":\"江北区\"},{\"id\":\"330206\",\"pid\":3302,\"code\":\"330206000000\",\"name\":\"北仑区\"},{\"id\":\"330211\",\"pid\":3302,\"code\":\"330211000000\",\"name\":\"镇海区\"},{\"id\":\"330212\",\"pid\":3302,\"code\":\"330212000000\",\"name\":\"鄞州区\"},{\"id\":\"330213\",\"pid\":3302,\"code\":\"330213000000\",\"name\":\"奉化区\"},{\"id\":\"330225\",\"pid\":3302,\"code\":\"330225000000\",\"name\":\"象山县\"},{\"id\":\"330226\",\"pid\":3302,\"code\":\"330226000000\",\"name\":\"宁海县\"},{\"id\":\"330281\",\"pid\":3302,\"code\":\"330281000000\",\"name\":\"余姚市\"},{\"id\":\"330282\",\"pid\":3302,\"code\":\"330282000000\",\"name\":\"慈溪市\"}]},{\"id\":\"3303\",\"pid\":33,\"code\":\"330300000000\",\"name\":\"温州市\",\"childs\":[{\"id\":\"330302\",\"pid\":3303,\"code\":\"330302000000\",\"name\":\"鹿城区\"},{\"id\":\"330303\",\"pid\":3303,\"code\":\"330303000000\",\"name\":\"龙湾区\"},{\"id\":\"330304\",\"pid\":3303,\"code\":\"330304000000\",\"name\":\"瓯海区\"},{\"id\":\"330305\",\"pid\":3303,\"code\":\"330305000000\",\"name\":\"洞头区\"},{\"id\":\"330324\",\"pid\":3303,\"code\":\"330324000000\",\"name\":\"永嘉县\"},{\"id\":\"330326\",\"pid\":3303,\"code\":\"330326000000\",\"name\":\"平阳县\"},{\"id\":\"330327\",\"pid\":3303,\"code\":\"330327000000\",\"name\":\"苍南县\"},{\"id\":\"330328\",\"pid\":3303,\"code\":\"330328000000\",\"name\":\"文成县\"},{\"id\":\"330329\",\"pid\":3303,\"code\":\"330329000000\",\"name\":\"泰顺县\"},{\"id\":\"330381\",\"pid\":3303,\"code\":\"330381000000\",\"name\":\"瑞安市\"},{\"id\":\"330382\",\"pid\":3303,\"code\":\"330382000000\",\"name\":\"乐清市\"},{\"id\":\"330383\",\"pid\":3303,\"code\":\"330383000000\",\"name\":\"龙港市\"}]},{\"id\":\"3304\",\"pid\":33,\"code\":\"330400000000\",\"name\":\"嘉兴市\",\"childs\":[{\"id\":\"330402\",\"pid\":3304,\"code\":\"330402000000\",\"name\":\"南湖区\"},{\"id\":\"330411\",\"pid\":3304,\"code\":\"330411000000\",\"name\":\"秀洲区\"},{\"id\":\"330421\",\"pid\":3304,\"code\":\"330421000000\",\"name\":\"嘉善县\"},{\"id\":\"330424\",\"pid\":3304,\"code\":\"330424000000\",\"name\":\"海盐县\"},{\"id\":\"330481\",\"pid\":3304,\"code\":\"330481000000\",\"name\":\"海宁市\"},{\"id\":\"330482\",\"pid\":3304,\"code\":\"330482000000\",\"name\":\"平湖市\"},{\"id\":\"330483\",\"pid\":3304,\"code\":\"330483000000\",\"name\":\"桐乡市\"}]},{\"id\":\"3305\",\"pid\":33,\"code\":\"330500000000\",\"name\":\"湖州市\",\"childs\":[{\"id\":\"330502\",\"pid\":3305,\"code\":\"330502000000\",\"name\":\"吴兴区\"},{\"id\":\"330503\",\"pid\":3305,\"code\":\"330503000000\",\"name\":\"南浔区\"},{\"id\":\"330521\",\"pid\":3305,\"code\":\"330521000000\",\"name\":\"德清县\"},{\"id\":\"330522\",\"pid\":3305,\"code\":\"330522000000\",\"name\":\"长兴县\"},{\"id\":\"330523\",\"pid\":3305,\"code\":\"330523000000\",\"name\":\"安吉县\"}]},{\"id\":\"3306\",\"pid\":33,\"code\":\"330600000000\",\"name\":\"绍兴市\",\"childs\":[{\"id\":\"330602\",\"pid\":3306,\"code\":\"330602000000\",\"name\":\"越城区\"},{\"id\":\"330603\",\"pid\":3306,\"code\":\"330603000000\",\"name\":\"柯桥区\"},{\"id\":\"330604\",\"pid\":3306,\"code\":\"330604000000\",\"name\":\"上虞区\"},{\"id\":\"330624\",\"pid\":3306,\"code\":\"330624000000\",\"name\":\"新昌县\"},{\"id\":\"330681\",\"pid\":3306,\"code\":\"330681000000\",\"name\":\"诸暨市\"},{\"id\":\"330683\",\"pid\":3306,\"code\":\"330683000000\",\"name\":\"嵊州市\"}]},{\"id\":\"3307\",\"pid\":33,\"code\":\"330700000000\",\"name\":\"金华市\",\"childs\":[{\"id\":\"330702\",\"pid\":3307,\"code\":\"330702000000\",\"name\":\"婺城区\"},{\"id\":\"330703\",\"pid\":3307,\"code\":\"330703000000\",\"name\":\"金东区\"},{\"id\":\"330723\",\"pid\":3307,\"code\":\"330723000000\",\"name\":\"武义县\"},{\"id\":\"330726\",\"pid\":3307,\"code\":\"330726000000\",\"name\":\"浦江县\"},{\"id\":\"330727\",\"pid\":3307,\"code\":\"330727000000\",\"name\":\"磐安县\"},{\"id\":\"330781\",\"pid\":3307,\"code\":\"330781000000\",\"name\":\"兰溪市\"},{\"id\":\"330782\",\"pid\":3307,\"code\":\"330782000000\",\"name\":\"义乌市\"},{\"id\":\"330783\",\"pid\":3307,\"code\":\"330783000000\",\"name\":\"东阳市\"},{\"id\":\"330784\",\"pid\":3307,\"code\":\"330784000000\",\"name\":\"永康市\"}]},{\"id\":\"3308\",\"pid\":33,\"code\":\"330800000000\",\"name\":\"衢州市\",\"childs\":[{\"id\":\"330802\",\"pid\":3308,\"code\":\"330802000000\",\"name\":\"柯城区\"},{\"id\":\"330803\",\"pid\":3308,\"code\":\"330803000000\",\"name\":\"衢江区\"},{\"id\":\"330822\",\"pid\":3308,\"code\":\"330822000000\",\"name\":\"常山县\"},{\"id\":\"330824\",\"pid\":3308,\"code\":\"330824000000\",\"name\":\"开化县\"},{\"id\":\"330825\",\"pid\":3308,\"code\":\"330825000000\",\"name\":\"龙游县\"},{\"id\":\"330881\",\"pid\":3308,\"code\":\"330881000000\",\"name\":\"江山市\"}]},{\"id\":\"3309\",\"pid\":33,\"code\":\"330900000000\",\"name\":\"舟山市\",\"childs\":[{\"id\":\"330902\",\"pid\":3309,\"code\":\"330902000000\",\"name\":\"定海区\"},{\"id\":\"330903\",\"pid\":3309,\"code\":\"330903000000\",\"name\":\"普陀区\"},{\"id\":\"330921\",\"pid\":3309,\"code\":\"330921000000\",\"name\":\"岱山县\"},{\"id\":\"330922\",\"pid\":3309,\"code\":\"330922000000\",\"name\":\"嵊泗县\"}]},{\"id\":\"3310\",\"pid\":33,\"code\":\"331000000000\",\"name\":\"台州市\",\"childs\":[{\"id\":\"331002\",\"pid\":3310,\"code\":\"331002000000\",\"name\":\"椒江区\"},{\"id\":\"331003\",\"pid\":3310,\"code\":\"331003000000\",\"name\":\"黄岩区\"},{\"id\":\"331004\",\"pid\":3310,\"code\":\"331004000000\",\"name\":\"路桥区\"},{\"id\":\"331022\",\"pid\":3310,\"code\":\"331022000000\",\"name\":\"三门县\"},{\"id\":\"331023\",\"pid\":3310,\"code\":\"331023000000\",\"name\":\"天台县\"},{\"id\":\"331024\",\"pid\":3310,\"code\":\"331024000000\",\"name\":\"仙居县\"},{\"id\":\"331081\",\"pid\":3310,\"code\":\"331081000000\",\"name\":\"温岭市\"},{\"id\":\"331082\",\"pid\":3310,\"code\":\"331082000000\",\"name\":\"临海市\"},{\"id\":\"331083\",\"pid\":3310,\"code\":\"331083000000\",\"name\":\"玉环市\"}]},{\"id\":\"3311\",\"pid\":33,\"code\":\"331100000000\",\"name\":\"丽水市\",\"childs\":[{\"id\":\"331102\",\"pid\":3311,\"code\":\"331102000000\",\"name\":\"莲都区\"},{\"id\":\"331121\",\"pid\":3311,\"code\":\"331121000000\",\"name\":\"青田县\"},{\"id\":\"331122\",\"pid\":3311,\"code\":\"331122000000\",\"name\":\"缙云县\"},{\"id\":\"331123\",\"pid\":3311,\"code\":\"331123000000\",\"name\":\"遂昌县\"},{\"id\":\"331124\",\"pid\":3311,\"code\":\"331124000000\",\"name\":\"松阳县\"},{\"id\":\"331125\",\"pid\":3311,\"code\":\"331125000000\",\"name\":\"云和县\"},{\"id\":\"331126\",\"pid\":3311,\"code\":\"331126000000\",\"name\":\"庆元县\"},{\"id\":\"331127\",\"pid\":3311,\"code\":\"331127000000\",\"name\":\"景宁畲族自治县\"},{\"id\":\"331181\",\"pid\":3311,\"code\":\"331181000000\",\"name\":\"龙泉市\"}]}]},{\"id\":\"34\",\"pid\":0,\"code\":\"340000000000\",\"name\":\"安徽省\",\"childs\":[{\"id\":\"3401\",\"pid\":34,\"code\":\"340100000000\",\"name\":\"合肥市\",\"childs\":[{\"id\":\"340102\",\"pid\":3401,\"code\":\"340102000000\",\"name\":\"瑶海区\"},{\"id\":\"340103\",\"pid\":3401,\"code\":\"340103000000\",\"name\":\"庐阳区\"},{\"id\":\"340104\",\"pid\":3401,\"code\":\"340104000000\",\"name\":\"蜀山区\"},{\"id\":\"340111\",\"pid\":3401,\"code\":\"340111000000\",\"name\":\"包河区\"},{\"id\":\"340121\",\"pid\":3401,\"code\":\"340121000000\",\"name\":\"长丰县\"},{\"id\":\"340122\",\"pid\":3401,\"code\":\"340122000000\",\"name\":\"肥东县\"},{\"id\":\"340123\",\"pid\":3401,\"code\":\"340123000000\",\"name\":\"肥西县\"},{\"id\":\"340124\",\"pid\":3401,\"code\":\"340124000000\",\"name\":\"庐江县\"},{\"id\":\"340181\",\"pid\":3401,\"code\":\"340181000000\",\"name\":\"巢湖市\"}]},{\"id\":\"3402\",\"pid\":34,\"code\":\"340200000000\",\"name\":\"芜湖市\",\"childs\":[{\"id\":\"340202\",\"pid\":3402,\"code\":\"340202000000\",\"name\":\"镜湖区\"},{\"id\":\"340207\",\"pid\":3402,\"code\":\"340207000000\",\"name\":\"鸠江区\"},{\"id\":\"340209\",\"pid\":3402,\"code\":\"340209000000\",\"name\":\"弋江区\"},{\"id\":\"340210\",\"pid\":3402,\"code\":\"340210000000\",\"name\":\"湾沚区\"},{\"id\":\"340212\",\"pid\":3402,\"code\":\"340212000000\",\"name\":\"繁昌区\"},{\"id\":\"340223\",\"pid\":3402,\"code\":\"340223000000\",\"name\":\"南陵县\"},{\"id\":\"340281\",\"pid\":3402,\"code\":\"340281000000\",\"name\":\"无为市\"}]},{\"id\":\"3403\",\"pid\":34,\"code\":\"340300000000\",\"name\":\"蚌埠市\",\"childs\":[{\"id\":\"340302\",\"pid\":3403,\"code\":\"340302000000\",\"name\":\"龙子湖区\"},{\"id\":\"340303\",\"pid\":3403,\"code\":\"340303000000\",\"name\":\"蚌山区\"},{\"id\":\"340304\",\"pid\":3403,\"code\":\"340304000000\",\"name\":\"禹会区\"},{\"id\":\"340311\",\"pid\":3403,\"code\":\"340311000000\",\"name\":\"淮上区\"},{\"id\":\"340321\",\"pid\":3403,\"code\":\"340321000000\",\"name\":\"怀远县\"},{\"id\":\"340322\",\"pid\":3403,\"code\":\"340322000000\",\"name\":\"五河县\"},{\"id\":\"340323\",\"pid\":3403,\"code\":\"340323000000\",\"name\":\"固镇县\"}]},{\"id\":\"3404\",\"pid\":34,\"code\":\"340400000000\",\"name\":\"淮南市\",\"childs\":[{\"id\":\"340402\",\"pid\":3404,\"code\":\"340402000000\",\"name\":\"大通区\"},{\"id\":\"340403\",\"pid\":3404,\"code\":\"340403000000\",\"name\":\"田家庵区\"},{\"id\":\"340404\",\"pid\":3404,\"code\":\"340404000000\",\"name\":\"谢家集区\"},{\"id\":\"340405\",\"pid\":3404,\"code\":\"340405000000\",\"name\":\"八公山区\"},{\"id\":\"340406\",\"pid\":3404,\"code\":\"340406000000\",\"name\":\"潘集区\"},{\"id\":\"340421\",\"pid\":3404,\"code\":\"340421000000\",\"name\":\"凤台县\"},{\"id\":\"340422\",\"pid\":3404,\"code\":\"340422000000\",\"name\":\"寿县\"}]},{\"id\":\"3405\",\"pid\":34,\"code\":\"340500000000\",\"name\":\"马鞍山市\",\"childs\":[{\"id\":\"340503\",\"pid\":3405,\"code\":\"340503000000\",\"name\":\"花山区\"},{\"id\":\"340504\",\"pid\":3405,\"code\":\"340504000000\",\"name\":\"雨山区\"},{\"id\":\"340506\",\"pid\":3405,\"code\":\"340506000000\",\"name\":\"博望区\"},{\"id\":\"340521\",\"pid\":3405,\"code\":\"340521000000\",\"name\":\"当涂县\"},{\"id\":\"340522\",\"pid\":3405,\"code\":\"340522000000\",\"name\":\"含山县\"},{\"id\":\"340523\",\"pid\":3405,\"code\":\"340523000000\",\"name\":\"和县\"}]},{\"id\":\"3406\",\"pid\":34,\"code\":\"340600000000\",\"name\":\"淮北市\",\"childs\":[{\"id\":\"340602\",\"pid\":3406,\"code\":\"340602000000\",\"name\":\"杜集区\"},{\"id\":\"340603\",\"pid\":3406,\"code\":\"340603000000\",\"name\":\"相山区\"},{\"id\":\"340604\",\"pid\":3406,\"code\":\"340604000000\",\"name\":\"烈山区\"},{\"id\":\"340621\",\"pid\":3406,\"code\":\"340621000000\",\"name\":\"濉溪县\"}]},{\"id\":\"3407\",\"pid\":34,\"code\":\"340700000000\",\"name\":\"铜陵市\",\"childs\":[{\"id\":\"340705\",\"pid\":3407,\"code\":\"340705000000\",\"name\":\"铜官区\"},{\"id\":\"340706\",\"pid\":3407,\"code\":\"340706000000\",\"name\":\"义安区\"},{\"id\":\"340711\",\"pid\":3407,\"code\":\"340711000000\",\"name\":\"郊区\"},{\"id\":\"340722\",\"pid\":3407,\"code\":\"340722000000\",\"name\":\"枞阳县\"}]},{\"id\":\"3408\",\"pid\":34,\"code\":\"340800000000\",\"name\":\"安庆市\",\"childs\":[{\"id\":\"340802\",\"pid\":3408,\"code\":\"340802000000\",\"name\":\"迎江区\"},{\"id\":\"340803\",\"pid\":3408,\"code\":\"340803000000\",\"name\":\"大观区\"},{\"id\":\"340811\",\"pid\":3408,\"code\":\"340811000000\",\"name\":\"宜秀区\"},{\"id\":\"340822\",\"pid\":3408,\"code\":\"340822000000\",\"name\":\"怀宁县\"},{\"id\":\"340825\",\"pid\":3408,\"code\":\"340825000000\",\"name\":\"太湖县\"},{\"id\":\"340826\",\"pid\":3408,\"code\":\"340826000000\",\"name\":\"宿松县\"},{\"id\":\"340827\",\"pid\":3408,\"code\":\"340827000000\",\"name\":\"望江县\"},{\"id\":\"340828\",\"pid\":3408,\"code\":\"340828000000\",\"name\":\"岳西县\"},{\"id\":\"340881\",\"pid\":3408,\"code\":\"340881000000\",\"name\":\"桐城市\"},{\"id\":\"340882\",\"pid\":3408,\"code\":\"340882000000\",\"name\":\"潜山市\"}]},{\"id\":\"3410\",\"pid\":34,\"code\":\"341000000000\",\"name\":\"黄山市\",\"childs\":[{\"id\":\"341002\",\"pid\":3410,\"code\":\"341002000000\",\"name\":\"屯溪区\"},{\"id\":\"341003\",\"pid\":3410,\"code\":\"341003000000\",\"name\":\"黄山区\"},{\"id\":\"341004\",\"pid\":3410,\"code\":\"341004000000\",\"name\":\"徽州区\"},{\"id\":\"341021\",\"pid\":3410,\"code\":\"341021000000\",\"name\":\"歙县\"},{\"id\":\"341022\",\"pid\":3410,\"code\":\"341022000000\",\"name\":\"休宁县\"},{\"id\":\"341023\",\"pid\":3410,\"code\":\"341023000000\",\"name\":\"黟县\"},{\"id\":\"341024\",\"pid\":3410,\"code\":\"341024000000\",\"name\":\"祁门县\"}]},{\"id\":\"3411\",\"pid\":34,\"code\":\"341100000000\",\"name\":\"滁州市\",\"childs\":[{\"id\":\"341102\",\"pid\":3411,\"code\":\"341102000000\",\"name\":\"琅琊区\"},{\"id\":\"341103\",\"pid\":3411,\"code\":\"341103000000\",\"name\":\"南谯区\"},{\"id\":\"341122\",\"pid\":3411,\"code\":\"341122000000\",\"name\":\"来安县\"},{\"id\":\"341124\",\"pid\":3411,\"code\":\"341124000000\",\"name\":\"全椒县\"},{\"id\":\"341125\",\"pid\":3411,\"code\":\"341125000000\",\"name\":\"定远县\"},{\"id\":\"341126\",\"pid\":3411,\"code\":\"341126000000\",\"name\":\"凤阳县\"},{\"id\":\"341181\",\"pid\":3411,\"code\":\"341181000000\",\"name\":\"天长市\"},{\"id\":\"341182\",\"pid\":3411,\"code\":\"341182000000\",\"name\":\"明光市\"}]},{\"id\":\"3412\",\"pid\":34,\"code\":\"341200000000\",\"name\":\"阜阳市\",\"childs\":[{\"id\":\"341202\",\"pid\":3412,\"code\":\"341202000000\",\"name\":\"颍州区\"},{\"id\":\"341203\",\"pid\":3412,\"code\":\"341203000000\",\"name\":\"颍东区\"},{\"id\":\"341204\",\"pid\":3412,\"code\":\"341204000000\",\"name\":\"颍泉区\"},{\"id\":\"341221\",\"pid\":3412,\"code\":\"341221000000\",\"name\":\"临泉县\"},{\"id\":\"341222\",\"pid\":3412,\"code\":\"341222000000\",\"name\":\"太和县\"},{\"id\":\"341225\",\"pid\":3412,\"code\":\"341225000000\",\"name\":\"阜南县\"},{\"id\":\"341226\",\"pid\":3412,\"code\":\"341226000000\",\"name\":\"颍上县\"},{\"id\":\"341282\",\"pid\":3412,\"code\":\"341282000000\",\"name\":\"界首市\"}]},{\"id\":\"3413\",\"pid\":34,\"code\":\"341300000000\",\"name\":\"宿州市\",\"childs\":[{\"id\":\"341302\",\"pid\":3413,\"code\":\"341302000000\",\"name\":\"埇桥区\"},{\"id\":\"341321\",\"pid\":3413,\"code\":\"341321000000\",\"name\":\"砀山县\"},{\"id\":\"341322\",\"pid\":3413,\"code\":\"341322000000\",\"name\":\"萧县\"},{\"id\":\"341323\",\"pid\":3413,\"code\":\"341323000000\",\"name\":\"灵璧县\"},{\"id\":\"341324\",\"pid\":3413,\"code\":\"341324000000\",\"name\":\"泗县\"}]},{\"id\":\"3415\",\"pid\":34,\"code\":\"341500000000\",\"name\":\"六安市\",\"childs\":[{\"id\":\"341502\",\"pid\":3415,\"code\":\"341502000000\",\"name\":\"金安区\"},{\"id\":\"341503\",\"pid\":3415,\"code\":\"341503000000\",\"name\":\"裕安区\"},{\"id\":\"341504\",\"pid\":3415,\"code\":\"341504000000\",\"name\":\"叶集区\"},{\"id\":\"341522\",\"pid\":3415,\"code\":\"341522000000\",\"name\":\"霍邱县\"},{\"id\":\"341523\",\"pid\":3415,\"code\":\"341523000000\",\"name\":\"舒城县\"},{\"id\":\"341524\",\"pid\":3415,\"code\":\"341524000000\",\"name\":\"金寨县\"},{\"id\":\"341525\",\"pid\":3415,\"code\":\"341525000000\",\"name\":\"霍山县\"}]},{\"id\":\"3416\",\"pid\":34,\"code\":\"341600000000\",\"name\":\"亳州市\",\"childs\":[{\"id\":\"341602\",\"pid\":3416,\"code\":\"341602000000\",\"name\":\"谯城区\"},{\"id\":\"341621\",\"pid\":3416,\"code\":\"341621000000\",\"name\":\"涡阳县\"},{\"id\":\"341622\",\"pid\":3416,\"code\":\"341622000000\",\"name\":\"蒙城县\"},{\"id\":\"341623\",\"pid\":3416,\"code\":\"341623000000\",\"name\":\"利辛县\"}]},{\"id\":\"3417\",\"pid\":34,\"code\":\"341700000000\",\"name\":\"池州市\",\"childs\":[{\"id\":\"341702\",\"pid\":3417,\"code\":\"341702000000\",\"name\":\"贵池区\"},{\"id\":\"341721\",\"pid\":3417,\"code\":\"341721000000\",\"name\":\"东至县\"},{\"id\":\"341722\",\"pid\":3417,\"code\":\"341722000000\",\"name\":\"石台县\"},{\"id\":\"341723\",\"pid\":3417,\"code\":\"341723000000\",\"name\":\"青阳县\"}]},{\"id\":\"3418\",\"pid\":34,\"code\":\"341800000000\",\"name\":\"宣城市\",\"childs\":[{\"id\":\"341802\",\"pid\":3418,\"code\":\"341802000000\",\"name\":\"宣州区\"},{\"id\":\"341821\",\"pid\":3418,\"code\":\"341821000000\",\"name\":\"郎溪县\"},{\"id\":\"341823\",\"pid\":3418,\"code\":\"341823000000\",\"name\":\"泾县\"},{\"id\":\"341824\",\"pid\":3418,\"code\":\"341824000000\",\"name\":\"绩溪县\"},{\"id\":\"341825\",\"pid\":3418,\"code\":\"341825000000\",\"name\":\"旌德县\"},{\"id\":\"341881\",\"pid\":3418,\"code\":\"341881000000\",\"name\":\"宁国市\"},{\"id\":\"341882\",\"pid\":3418,\"code\":\"341882000000\",\"name\":\"广德市\"}]}]},{\"id\":\"35\",\"pid\":0,\"code\":\"350000000000\",\"name\":\"福建省\",\"childs\":[{\"id\":\"3501\",\"pid\":35,\"code\":\"350100000000\",\"name\":\"福州市\",\"childs\":[{\"id\":\"350102\",\"pid\":3501,\"code\":\"350102000000\",\"name\":\"鼓楼区\"},{\"id\":\"350103\",\"pid\":3501,\"code\":\"350103000000\",\"name\":\"台江区\"},{\"id\":\"350104\",\"pid\":3501,\"code\":\"350104000000\",\"name\":\"仓山区\"},{\"id\":\"350105\",\"pid\":3501,\"code\":\"350105000000\",\"name\":\"马尾区\"},{\"id\":\"350111\",\"pid\":3501,\"code\":\"350111000000\",\"name\":\"晋安区\"},{\"id\":\"350112\",\"pid\":3501,\"code\":\"350112000000\",\"name\":\"长乐区\"},{\"id\":\"350121\",\"pid\":3501,\"code\":\"350121000000\",\"name\":\"闽侯县\"},{\"id\":\"350122\",\"pid\":3501,\"code\":\"350122000000\",\"name\":\"连江县\"},{\"id\":\"350123\",\"pid\":3501,\"code\":\"350123000000\",\"name\":\"罗源县\"},{\"id\":\"350124\",\"pid\":3501,\"code\":\"350124000000\",\"name\":\"闽清县\"},{\"id\":\"350125\",\"pid\":3501,\"code\":\"350125000000\",\"name\":\"永泰县\"},{\"id\":\"350128\",\"pid\":3501,\"code\":\"350128000000\",\"name\":\"平潭县\"},{\"id\":\"350181\",\"pid\":3501,\"code\":\"350181000000\",\"name\":\"福清市\"}]},{\"id\":\"3502\",\"pid\":35,\"code\":\"350200000000\",\"name\":\"厦门市\",\"childs\":[{\"id\":\"350203\",\"pid\":3502,\"code\":\"350203000000\",\"name\":\"思明区\"},{\"id\":\"350205\",\"pid\":3502,\"code\":\"350205000000\",\"name\":\"海沧区\"},{\"id\":\"350206\",\"pid\":3502,\"code\":\"350206000000\",\"name\":\"湖里区\"},{\"id\":\"350211\",\"pid\":3502,\"code\":\"350211000000\",\"name\":\"集美区\"},{\"id\":\"350212\",\"pid\":3502,\"code\":\"350212000000\",\"name\":\"同安区\"},{\"id\":\"350213\",\"pid\":3502,\"code\":\"350213000000\",\"name\":\"翔安区\"}]},{\"id\":\"3503\",\"pid\":35,\"code\":\"350300000000\",\"name\":\"莆田市\",\"childs\":[{\"id\":\"350302\",\"pid\":3503,\"code\":\"350302000000\",\"name\":\"城厢区\"},{\"id\":\"350303\",\"pid\":3503,\"code\":\"350303000000\",\"name\":\"涵江区\"},{\"id\":\"350304\",\"pid\":3503,\"code\":\"350304000000\",\"name\":\"荔城区\"},{\"id\":\"350305\",\"pid\":3503,\"code\":\"350305000000\",\"name\":\"秀屿区\"},{\"id\":\"350322\",\"pid\":3503,\"code\":\"350322000000\",\"name\":\"仙游县\"}]},{\"id\":\"3504\",\"pid\":35,\"code\":\"350400000000\",\"name\":\"三明市\",\"childs\":[{\"id\":\"350404\",\"pid\":3504,\"code\":\"350404000000\",\"name\":\"三元区\"},{\"id\":\"350405\",\"pid\":3504,\"code\":\"350405000000\",\"name\":\"沙县区\"},{\"id\":\"350421\",\"pid\":3504,\"code\":\"350421000000\",\"name\":\"明溪县\"},{\"id\":\"350423\",\"pid\":3504,\"code\":\"350423000000\",\"name\":\"清流县\"},{\"id\":\"350424\",\"pid\":3504,\"code\":\"350424000000\",\"name\":\"宁化县\"},{\"id\":\"350425\",\"pid\":3504,\"code\":\"350425000000\",\"name\":\"大田县\"},{\"id\":\"350426\",\"pid\":3504,\"code\":\"350426000000\",\"name\":\"尤溪县\"},{\"id\":\"350428\",\"pid\":3504,\"code\":\"350428000000\",\"name\":\"将乐县\"},{\"id\":\"350429\",\"pid\":3504,\"code\":\"350429000000\",\"name\":\"泰宁县\"},{\"id\":\"350430\",\"pid\":3504,\"code\":\"350430000000\",\"name\":\"建宁县\"},{\"id\":\"350481\",\"pid\":3504,\"code\":\"350481000000\",\"name\":\"永安市\"}]},{\"id\":\"3505\",\"pid\":35,\"code\":\"350500000000\",\"name\":\"泉州市\",\"childs\":[{\"id\":\"350502\",\"pid\":3505,\"code\":\"350502000000\",\"name\":\"鲤城区\"},{\"id\":\"350503\",\"pid\":3505,\"code\":\"350503000000\",\"name\":\"丰泽区\"},{\"id\":\"350504\",\"pid\":3505,\"code\":\"350504000000\",\"name\":\"洛江区\"},{\"id\":\"350505\",\"pid\":3505,\"code\":\"350505000000\",\"name\":\"泉港区\"},{\"id\":\"350521\",\"pid\":3505,\"code\":\"350521000000\",\"name\":\"惠安县\"},{\"id\":\"350524\",\"pid\":3505,\"code\":\"350524000000\",\"name\":\"安溪县\"},{\"id\":\"350525\",\"pid\":3505,\"code\":\"350525000000\",\"name\":\"永春县\"},{\"id\":\"350526\",\"pid\":3505,\"code\":\"350526000000\",\"name\":\"德化县\"},{\"id\":\"350527\",\"pid\":3505,\"code\":\"350527000000\",\"name\":\"金门县\"},{\"id\":\"350581\",\"pid\":3505,\"code\":\"350581000000\",\"name\":\"石狮市\"},{\"id\":\"350582\",\"pid\":3505,\"code\":\"350582000000\",\"name\":\"晋江市\"},{\"id\":\"350583\",\"pid\":3505,\"code\":\"350583000000\",\"name\":\"南安市\"}]},{\"id\":\"3506\",\"pid\":35,\"code\":\"350600000000\",\"name\":\"漳州市\",\"childs\":[{\"id\":\"350602\",\"pid\":3506,\"code\":\"350602000000\",\"name\":\"芗城区\"},{\"id\":\"350603\",\"pid\":3506,\"code\":\"350603000000\",\"name\":\"龙文区\"},{\"id\":\"350604\",\"pid\":3506,\"code\":\"350604000000\",\"name\":\"龙海区\"},{\"id\":\"350605\",\"pid\":3506,\"code\":\"350605000000\",\"name\":\"长泰区\"},{\"id\":\"350622\",\"pid\":3506,\"code\":\"350622000000\",\"name\":\"云霄县\"},{\"id\":\"350623\",\"pid\":3506,\"code\":\"350623000000\",\"name\":\"漳浦县\"},{\"id\":\"350624\",\"pid\":3506,\"code\":\"350624000000\",\"name\":\"诏安县\"},{\"id\":\"350626\",\"pid\":3506,\"code\":\"350626000000\",\"name\":\"东山县\"},{\"id\":\"350627\",\"pid\":3506,\"code\":\"350627000000\",\"name\":\"南靖县\"},{\"id\":\"350628\",\"pid\":3506,\"code\":\"350628000000\",\"name\":\"平和县\"},{\"id\":\"350629\",\"pid\":3506,\"code\":\"350629000000\",\"name\":\"华安县\"}]},{\"id\":\"3507\",\"pid\":35,\"code\":\"350700000000\",\"name\":\"南平市\",\"childs\":[{\"id\":\"350702\",\"pid\":3507,\"code\":\"350702000000\",\"name\":\"延平区\"},{\"id\":\"350703\",\"pid\":3507,\"code\":\"350703000000\",\"name\":\"建阳区\"},{\"id\":\"350721\",\"pid\":3507,\"code\":\"350721000000\",\"name\":\"顺昌县\"},{\"id\":\"350722\",\"pid\":3507,\"code\":\"350722000000\",\"name\":\"浦城县\"},{\"id\":\"350723\",\"pid\":3507,\"code\":\"350723000000\",\"name\":\"光泽县\"},{\"id\":\"350724\",\"pid\":3507,\"code\":\"350724000000\",\"name\":\"松溪县\"},{\"id\":\"350725\",\"pid\":3507,\"code\":\"350725000000\",\"name\":\"政和县\"},{\"id\":\"350781\",\"pid\":3507,\"code\":\"350781000000\",\"name\":\"邵武市\"},{\"id\":\"350782\",\"pid\":3507,\"code\":\"350782000000\",\"name\":\"武夷山市\"},{\"id\":\"350783\",\"pid\":3507,\"code\":\"350783000000\",\"name\":\"建瓯市\"}]},{\"id\":\"3508\",\"pid\":35,\"code\":\"350800000000\",\"name\":\"龙岩市\",\"childs\":[{\"id\":\"350802\",\"pid\":3508,\"code\":\"350802000000\",\"name\":\"新罗区\"},{\"id\":\"350803\",\"pid\":3508,\"code\":\"350803000000\",\"name\":\"永定区\"},{\"id\":\"350821\",\"pid\":3508,\"code\":\"350821000000\",\"name\":\"长汀县\"},{\"id\":\"350823\",\"pid\":3508,\"code\":\"350823000000\",\"name\":\"上杭县\"},{\"id\":\"350824\",\"pid\":3508,\"code\":\"350824000000\",\"name\":\"武平县\"},{\"id\":\"350825\",\"pid\":3508,\"code\":\"350825000000\",\"name\":\"连城县\"},{\"id\":\"350881\",\"pid\":3508,\"code\":\"350881000000\",\"name\":\"漳平市\"}]},{\"id\":\"3509\",\"pid\":35,\"code\":\"350900000000\",\"name\":\"宁德市\",\"childs\":[{\"id\":\"350902\",\"pid\":3509,\"code\":\"350902000000\",\"name\":\"蕉城区\"},{\"id\":\"350921\",\"pid\":3509,\"code\":\"350921000000\",\"name\":\"霞浦县\"},{\"id\":\"350922\",\"pid\":3509,\"code\":\"350922000000\",\"name\":\"古田县\"},{\"id\":\"350923\",\"pid\":3509,\"code\":\"350923000000\",\"name\":\"屏南县\"},{\"id\":\"350924\",\"pid\":3509,\"code\":\"350924000000\",\"name\":\"寿宁县\"},{\"id\":\"350925\",\"pid\":3509,\"code\":\"350925000000\",\"name\":\"周宁县\"},{\"id\":\"350926\",\"pid\":3509,\"code\":\"350926000000\",\"name\":\"柘荣县\"},{\"id\":\"350981\",\"pid\":3509,\"code\":\"350981000000\",\"name\":\"福安市\"},{\"id\":\"350982\",\"pid\":3509,\"code\":\"350982000000\",\"name\":\"福鼎市\"}]}]},{\"id\":\"36\",\"pid\":0,\"code\":\"360000000000\",\"name\":\"江西省\",\"childs\":[{\"id\":\"3601\",\"pid\":36,\"code\":\"360100000000\",\"name\":\"南昌市\",\"childs\":[{\"id\":\"360102\",\"pid\":3601,\"code\":\"360102000000\",\"name\":\"东湖区\"},{\"id\":\"360103\",\"pid\":3601,\"code\":\"360103000000\",\"name\":\"西湖区\"},{\"id\":\"360104\",\"pid\":3601,\"code\":\"360104000000\",\"name\":\"青云谱区\"},{\"id\":\"360111\",\"pid\":3601,\"code\":\"360111000000\",\"name\":\"青山湖区\"},{\"id\":\"360112\",\"pid\":3601,\"code\":\"360112000000\",\"name\":\"新建区\"},{\"id\":\"360113\",\"pid\":3601,\"code\":\"360113000000\",\"name\":\"红谷滩区\"},{\"id\":\"360121\",\"pid\":3601,\"code\":\"360121000000\",\"name\":\"南昌县\"},{\"id\":\"360123\",\"pid\":3601,\"code\":\"360123000000\",\"name\":\"安义县\"},{\"id\":\"360124\",\"pid\":3601,\"code\":\"360124000000\",\"name\":\"进贤县\"}]},{\"id\":\"3602\",\"pid\":36,\"code\":\"360200000000\",\"name\":\"景德镇市\",\"childs\":[{\"id\":\"360202\",\"pid\":3602,\"code\":\"360202000000\",\"name\":\"昌江区\"},{\"id\":\"360203\",\"pid\":3602,\"code\":\"360203000000\",\"name\":\"珠山区\"},{\"id\":\"360222\",\"pid\":3602,\"code\":\"360222000000\",\"name\":\"浮梁县\"},{\"id\":\"360281\",\"pid\":3602,\"code\":\"360281000000\",\"name\":\"乐平市\"}]},{\"id\":\"3603\",\"pid\":36,\"code\":\"360300000000\",\"name\":\"萍乡市\",\"childs\":[{\"id\":\"360302\",\"pid\":3603,\"code\":\"360302000000\",\"name\":\"安源区\"},{\"id\":\"360313\",\"pid\":3603,\"code\":\"360313000000\",\"name\":\"湘东区\"},{\"id\":\"360321\",\"pid\":3603,\"code\":\"360321000000\",\"name\":\"莲花县\"},{\"id\":\"360322\",\"pid\":3603,\"code\":\"360322000000\",\"name\":\"上栗县\"},{\"id\":\"360323\",\"pid\":3603,\"code\":\"360323000000\",\"name\":\"芦溪县\"}]},{\"id\":\"3604\",\"pid\":36,\"code\":\"360400000000\",\"name\":\"九江市\",\"childs\":[{\"id\":\"360402\",\"pid\":3604,\"code\":\"360402000000\",\"name\":\"濂溪区\"},{\"id\":\"360403\",\"pid\":3604,\"code\":\"360403000000\",\"name\":\"浔阳区\"},{\"id\":\"360404\",\"pid\":3604,\"code\":\"360404000000\",\"name\":\"柴桑区\"},{\"id\":\"360423\",\"pid\":3604,\"code\":\"360423000000\",\"name\":\"武宁县\"},{\"id\":\"360424\",\"pid\":3604,\"code\":\"360424000000\",\"name\":\"修水县\"},{\"id\":\"360425\",\"pid\":3604,\"code\":\"360425000000\",\"name\":\"永修县\"},{\"id\":\"360426\",\"pid\":3604,\"code\":\"360426000000\",\"name\":\"德安县\"},{\"id\":\"360428\",\"pid\":3604,\"code\":\"360428000000\",\"name\":\"都昌县\"},{\"id\":\"360429\",\"pid\":3604,\"code\":\"360429000000\",\"name\":\"湖口县\"},{\"id\":\"360430\",\"pid\":3604,\"code\":\"360430000000\",\"name\":\"彭泽县\"},{\"id\":\"360481\",\"pid\":3604,\"code\":\"360481000000\",\"name\":\"瑞昌市\"},{\"id\":\"360482\",\"pid\":3604,\"code\":\"360482000000\",\"name\":\"共青城市\"},{\"id\":\"360483\",\"pid\":3604,\"code\":\"360483000000\",\"name\":\"庐山市\"}]},{\"id\":\"3605\",\"pid\":36,\"code\":\"360500000000\",\"name\":\"新余市\",\"childs\":[{\"id\":\"360502\",\"pid\":3605,\"code\":\"360502000000\",\"name\":\"渝水区\"},{\"id\":\"360521\",\"pid\":3605,\"code\":\"360521000000\",\"name\":\"分宜县\"}]},{\"id\":\"3606\",\"pid\":36,\"code\":\"360600000000\",\"name\":\"鹰潭市\",\"childs\":[{\"id\":\"360602\",\"pid\":3606,\"code\":\"360602000000\",\"name\":\"月湖区\"},{\"id\":\"360603\",\"pid\":3606,\"code\":\"360603000000\",\"name\":\"余江区\"},{\"id\":\"360681\",\"pid\":3606,\"code\":\"360681000000\",\"name\":\"贵溪市\"}]},{\"id\":\"3607\",\"pid\":36,\"code\":\"360700000000\",\"name\":\"赣州市\",\"childs\":[{\"id\":\"360702\",\"pid\":3607,\"code\":\"360702000000\",\"name\":\"章贡区\"},{\"id\":\"360703\",\"pid\":3607,\"code\":\"360703000000\",\"name\":\"南康区\"},{\"id\":\"360704\",\"pid\":3607,\"code\":\"360704000000\",\"name\":\"赣县区\"},{\"id\":\"360722\",\"pid\":3607,\"code\":\"360722000000\",\"name\":\"信丰县\"},{\"id\":\"360723\",\"pid\":3607,\"code\":\"360723000000\",\"name\":\"大余县\"},{\"id\":\"360724\",\"pid\":3607,\"code\":\"360724000000\",\"name\":\"上犹县\"},{\"id\":\"360725\",\"pid\":3607,\"code\":\"360725000000\",\"name\":\"崇义县\"},{\"id\":\"360726\",\"pid\":3607,\"code\":\"360726000000\",\"name\":\"安远县\"},{\"id\":\"360728\",\"pid\":3607,\"code\":\"360728000000\",\"name\":\"定南县\"},{\"id\":\"360729\",\"pid\":3607,\"code\":\"360729000000\",\"name\":\"全南县\"},{\"id\":\"360730\",\"pid\":3607,\"code\":\"360730000000\",\"name\":\"宁都县\"},{\"id\":\"360731\",\"pid\":3607,\"code\":\"360731000000\",\"name\":\"于都县\"},{\"id\":\"360732\",\"pid\":3607,\"code\":\"360732000000\",\"name\":\"兴国县\"},{\"id\":\"360733\",\"pid\":3607,\"code\":\"360733000000\",\"name\":\"会昌县\"},{\"id\":\"360734\",\"pid\":3607,\"code\":\"360734000000\",\"name\":\"寻乌县\"},{\"id\":\"360735\",\"pid\":3607,\"code\":\"360735000000\",\"name\":\"石城县\"},{\"id\":\"360781\",\"pid\":3607,\"code\":\"360781000000\",\"name\":\"瑞金市\"},{\"id\":\"360783\",\"pid\":3607,\"code\":\"360783000000\",\"name\":\"龙南市\"}]},{\"id\":\"3608\",\"pid\":36,\"code\":\"360800000000\",\"name\":\"吉安市\",\"childs\":[{\"id\":\"360802\",\"pid\":3608,\"code\":\"360802000000\",\"name\":\"吉州区\"},{\"id\":\"360803\",\"pid\":3608,\"code\":\"360803000000\",\"name\":\"青原区\"},{\"id\":\"360821\",\"pid\":3608,\"code\":\"360821000000\",\"name\":\"吉安县\"},{\"id\":\"360822\",\"pid\":3608,\"code\":\"360822000000\",\"name\":\"吉水县\"},{\"id\":\"360823\",\"pid\":3608,\"code\":\"360823000000\",\"name\":\"峡江县\"},{\"id\":\"360824\",\"pid\":3608,\"code\":\"360824000000\",\"name\":\"新干县\"},{\"id\":\"360825\",\"pid\":3608,\"code\":\"360825000000\",\"name\":\"永丰县\"},{\"id\":\"360826\",\"pid\":3608,\"code\":\"360826000000\",\"name\":\"泰和县\"},{\"id\":\"360827\",\"pid\":3608,\"code\":\"360827000000\",\"name\":\"遂川县\"},{\"id\":\"360828\",\"pid\":3608,\"code\":\"360828000000\",\"name\":\"万安县\"},{\"id\":\"360829\",\"pid\":3608,\"code\":\"360829000000\",\"name\":\"安福县\"},{\"id\":\"360830\",\"pid\":3608,\"code\":\"360830000000\",\"name\":\"永新县\"},{\"id\":\"360881\",\"pid\":3608,\"code\":\"360881000000\",\"name\":\"井冈山市\"}]},{\"id\":\"3609\",\"pid\":36,\"code\":\"360900000000\",\"name\":\"宜春市\",\"childs\":[{\"id\":\"360902\",\"pid\":3609,\"code\":\"360902000000\",\"name\":\"袁州区\"},{\"id\":\"360921\",\"pid\":3609,\"code\":\"360921000000\",\"name\":\"奉新县\"},{\"id\":\"360922\",\"pid\":3609,\"code\":\"360922000000\",\"name\":\"万载县\"},{\"id\":\"360923\",\"pid\":3609,\"code\":\"360923000000\",\"name\":\"上高县\"},{\"id\":\"360924\",\"pid\":3609,\"code\":\"360924000000\",\"name\":\"宜丰县\"},{\"id\":\"360925\",\"pid\":3609,\"code\":\"360925000000\",\"name\":\"靖安县\"},{\"id\":\"360926\",\"pid\":3609,\"code\":\"360926000000\",\"name\":\"铜鼓县\"},{\"id\":\"360981\",\"pid\":3609,\"code\":\"360981000000\",\"name\":\"丰城市\"},{\"id\":\"360982\",\"pid\":3609,\"code\":\"360982000000\",\"name\":\"樟树市\"},{\"id\":\"360983\",\"pid\":3609,\"code\":\"360983000000\",\"name\":\"高安市\"}]},{\"id\":\"3610\",\"pid\":36,\"code\":\"361000000000\",\"name\":\"抚州市\",\"childs\":[{\"id\":\"361002\",\"pid\":3610,\"code\":\"361002000000\",\"name\":\"临川区\"},{\"id\":\"361003\",\"pid\":3610,\"code\":\"361003000000\",\"name\":\"东乡区\"},{\"id\":\"361021\",\"pid\":3610,\"code\":\"361021000000\",\"name\":\"南城县\"},{\"id\":\"361022\",\"pid\":3610,\"code\":\"361022000000\",\"name\":\"黎川县\"},{\"id\":\"361023\",\"pid\":3610,\"code\":\"361023000000\",\"name\":\"南丰县\"},{\"id\":\"361024\",\"pid\":3610,\"code\":\"361024000000\",\"name\":\"崇仁县\"},{\"id\":\"361025\",\"pid\":3610,\"code\":\"361025000000\",\"name\":\"乐安县\"},{\"id\":\"361026\",\"pid\":3610,\"code\":\"361026000000\",\"name\":\"宜黄县\"},{\"id\":\"361027\",\"pid\":3610,\"code\":\"361027000000\",\"name\":\"金溪县\"},{\"id\":\"361028\",\"pid\":3610,\"code\":\"361028000000\",\"name\":\"资溪县\"},{\"id\":\"361030\",\"pid\":3610,\"code\":\"361030000000\",\"name\":\"广昌县\"}]},{\"id\":\"3611\",\"pid\":36,\"code\":\"361100000000\",\"name\":\"上饶市\",\"childs\":[{\"id\":\"361102\",\"pid\":3611,\"code\":\"361102000000\",\"name\":\"信州区\"},{\"id\":\"361103\",\"pid\":3611,\"code\":\"361103000000\",\"name\":\"广丰区\"},{\"id\":\"361104\",\"pid\":3611,\"code\":\"361104000000\",\"name\":\"广信区\"},{\"id\":\"361123\",\"pid\":3611,\"code\":\"361123000000\",\"name\":\"玉山县\"},{\"id\":\"361124\",\"pid\":3611,\"code\":\"361124000000\",\"name\":\"铅山县\"},{\"id\":\"361125\",\"pid\":3611,\"code\":\"361125000000\",\"name\":\"横峰县\"},{\"id\":\"361126\",\"pid\":3611,\"code\":\"361126000000\",\"name\":\"弋阳县\"},{\"id\":\"361127\",\"pid\":3611,\"code\":\"361127000000\",\"name\":\"余干县\"},{\"id\":\"361128\",\"pid\":3611,\"code\":\"361128000000\",\"name\":\"鄱阳县\"},{\"id\":\"361129\",\"pid\":3611,\"code\":\"361129000000\",\"name\":\"万年县\"},{\"id\":\"361130\",\"pid\":3611,\"code\":\"361130000000\",\"name\":\"婺源县\"},{\"id\":\"361181\",\"pid\":3611,\"code\":\"361181000000\",\"name\":\"德兴市\"}]}]},{\"id\":\"37\",\"pid\":0,\"code\":\"370000000000\",\"name\":\"山东省\",\"childs\":[{\"id\":\"3701\",\"pid\":37,\"code\":\"370100000000\",\"name\":\"济南市\",\"childs\":[{\"id\":\"370102\",\"pid\":3701,\"code\":\"370102000000\",\"name\":\"历下区\"},{\"id\":\"370103\",\"pid\":3701,\"code\":\"370103000000\",\"name\":\"市中区\"},{\"id\":\"370104\",\"pid\":3701,\"code\":\"370104000000\",\"name\":\"槐荫区\"},{\"id\":\"370105\",\"pid\":3701,\"code\":\"370105000000\",\"name\":\"天桥区\"},{\"id\":\"370112\",\"pid\":3701,\"code\":\"370112000000\",\"name\":\"历城区\"},{\"id\":\"370113\",\"pid\":3701,\"code\":\"370113000000\",\"name\":\"长清区\"},{\"id\":\"370114\",\"pid\":3701,\"code\":\"370114000000\",\"name\":\"章丘区\"},{\"id\":\"370115\",\"pid\":3701,\"code\":\"370115000000\",\"name\":\"济阳区\"},{\"id\":\"370116\",\"pid\":3701,\"code\":\"370116000000\",\"name\":\"莱芜区\"},{\"id\":\"370117\",\"pid\":3701,\"code\":\"370117000000\",\"name\":\"钢城区\"},{\"id\":\"370124\",\"pid\":3701,\"code\":\"370124000000\",\"name\":\"平阴县\"},{\"id\":\"370126\",\"pid\":3701,\"code\":\"370126000000\",\"name\":\"商河县\"}]},{\"id\":\"3702\",\"pid\":37,\"code\":\"370200000000\",\"name\":\"青岛市\",\"childs\":[{\"id\":\"370202\",\"pid\":3702,\"code\":\"370202000000\",\"name\":\"市南区\"},{\"id\":\"370203\",\"pid\":3702,\"code\":\"370203000000\",\"name\":\"市北区\"},{\"id\":\"370211\",\"pid\":3702,\"code\":\"370211000000\",\"name\":\"黄岛区\"},{\"id\":\"370212\",\"pid\":3702,\"code\":\"370212000000\",\"name\":\"崂山区\"},{\"id\":\"370213\",\"pid\":3702,\"code\":\"370213000000\",\"name\":\"李沧区\"},{\"id\":\"370214\",\"pid\":3702,\"code\":\"370214000000\",\"name\":\"城阳区\"},{\"id\":\"370215\",\"pid\":3702,\"code\":\"370215000000\",\"name\":\"即墨区\"},{\"id\":\"370281\",\"pid\":3702,\"code\":\"370281000000\",\"name\":\"胶州市\"},{\"id\":\"370283\",\"pid\":3702,\"code\":\"370283000000\",\"name\":\"平度市\"},{\"id\":\"370285\",\"pid\":3702,\"code\":\"370285000000\",\"name\":\"莱西市\"}]},{\"id\":\"3703\",\"pid\":37,\"code\":\"370300000000\",\"name\":\"淄博市\",\"childs\":[{\"id\":\"370302\",\"pid\":3703,\"code\":\"370302000000\",\"name\":\"淄川区\"},{\"id\":\"370303\",\"pid\":3703,\"code\":\"370303000000\",\"name\":\"张店区\"},{\"id\":\"370304\",\"pid\":3703,\"code\":\"370304000000\",\"name\":\"博山区\"},{\"id\":\"370305\",\"pid\":3703,\"code\":\"370305000000\",\"name\":\"临淄区\"},{\"id\":\"370306\",\"pid\":3703,\"code\":\"370306000000\",\"name\":\"周村区\"},{\"id\":\"370321\",\"pid\":3703,\"code\":\"370321000000\",\"name\":\"桓台县\"},{\"id\":\"370322\",\"pid\":3703,\"code\":\"370322000000\",\"name\":\"高青县\"},{\"id\":\"370323\",\"pid\":3703,\"code\":\"370323000000\",\"name\":\"沂源县\"}]},{\"id\":\"3704\",\"pid\":37,\"code\":\"370400000000\",\"name\":\"枣庄市\",\"childs\":[{\"id\":\"370402\",\"pid\":3704,\"code\":\"370402000000\",\"name\":\"市中区\"},{\"id\":\"370403\",\"pid\":3704,\"code\":\"370403000000\",\"name\":\"薛城区\"},{\"id\":\"370404\",\"pid\":3704,\"code\":\"370404000000\",\"name\":\"峄城区\"},{\"id\":\"370405\",\"pid\":3704,\"code\":\"370405000000\",\"name\":\"台儿庄区\"},{\"id\":\"370406\",\"pid\":3704,\"code\":\"370406000000\",\"name\":\"山亭区\"},{\"id\":\"370481\",\"pid\":3704,\"code\":\"370481000000\",\"name\":\"滕州市\"}]},{\"id\":\"3705\",\"pid\":37,\"code\":\"370500000000\",\"name\":\"东营市\",\"childs\":[{\"id\":\"370502\",\"pid\":3705,\"code\":\"370502000000\",\"name\":\"东营区\"},{\"id\":\"370503\",\"pid\":3705,\"code\":\"370503000000\",\"name\":\"河口区\"},{\"id\":\"370505\",\"pid\":3705,\"code\":\"370505000000\",\"name\":\"垦利区\"},{\"id\":\"370522\",\"pid\":3705,\"code\":\"370522000000\",\"name\":\"利津县\"},{\"id\":\"370523\",\"pid\":3705,\"code\":\"370523000000\",\"name\":\"广饶县\"}]},{\"id\":\"3706\",\"pid\":37,\"code\":\"370600000000\",\"name\":\"烟台市\",\"childs\":[{\"id\":\"370602\",\"pid\":3706,\"code\":\"370602000000\",\"name\":\"芝罘区\"},{\"id\":\"370611\",\"pid\":3706,\"code\":\"370611000000\",\"name\":\"福山区\"},{\"id\":\"370612\",\"pid\":3706,\"code\":\"370612000000\",\"name\":\"牟平区\"},{\"id\":\"370613\",\"pid\":3706,\"code\":\"370613000000\",\"name\":\"莱山区\"},{\"id\":\"370614\",\"pid\":3706,\"code\":\"370614000000\",\"name\":\"蓬莱区\"},{\"id\":\"370681\",\"pid\":3706,\"code\":\"370681000000\",\"name\":\"龙口市\"},{\"id\":\"370682\",\"pid\":3706,\"code\":\"370682000000\",\"name\":\"莱阳市\"},{\"id\":\"370683\",\"pid\":3706,\"code\":\"370683000000\",\"name\":\"莱州市\"},{\"id\":\"370685\",\"pid\":3706,\"code\":\"370685000000\",\"name\":\"招远市\"},{\"id\":\"370686\",\"pid\":3706,\"code\":\"370686000000\",\"name\":\"栖霞市\"},{\"id\":\"370687\",\"pid\":3706,\"code\":\"370687000000\",\"name\":\"海阳市\"}]},{\"id\":\"3707\",\"pid\":37,\"code\":\"370700000000\",\"name\":\"潍坊市\",\"childs\":[{\"id\":\"370702\",\"pid\":3707,\"code\":\"370702000000\",\"name\":\"潍城区\"},{\"id\":\"370703\",\"pid\":3707,\"code\":\"370703000000\",\"name\":\"寒亭区\"},{\"id\":\"370704\",\"pid\":3707,\"code\":\"370704000000\",\"name\":\"坊子区\"},{\"id\":\"370705\",\"pid\":3707,\"code\":\"370705000000\",\"name\":\"奎文区\"},{\"id\":\"370724\",\"pid\":3707,\"code\":\"370724000000\",\"name\":\"临朐县\"},{\"id\":\"370725\",\"pid\":3707,\"code\":\"370725000000\",\"name\":\"昌乐县\"},{\"id\":\"370781\",\"pid\":3707,\"code\":\"370781000000\",\"name\":\"青州市\"},{\"id\":\"370782\",\"pid\":3707,\"code\":\"370782000000\",\"name\":\"诸城市\"},{\"id\":\"370783\",\"pid\":3707,\"code\":\"370783000000\",\"name\":\"寿光市\"},{\"id\":\"370784\",\"pid\":3707,\"code\":\"370784000000\",\"name\":\"安丘市\"},{\"id\":\"370785\",\"pid\":3707,\"code\":\"370785000000\",\"name\":\"高密市\"},{\"id\":\"370786\",\"pid\":3707,\"code\":\"370786000000\",\"name\":\"昌邑市\"}]},{\"id\":\"3708\",\"pid\":37,\"code\":\"370800000000\",\"name\":\"济宁市\",\"childs\":[{\"id\":\"370811\",\"pid\":3708,\"code\":\"370811000000\",\"name\":\"任城区\"},{\"id\":\"370812\",\"pid\":3708,\"code\":\"370812000000\",\"name\":\"兖州区\"},{\"id\":\"370826\",\"pid\":3708,\"code\":\"370826000000\",\"name\":\"微山县\"},{\"id\":\"370827\",\"pid\":3708,\"code\":\"370827000000\",\"name\":\"鱼台县\"},{\"id\":\"370828\",\"pid\":3708,\"code\":\"370828000000\",\"name\":\"金乡县\"},{\"id\":\"370829\",\"pid\":3708,\"code\":\"370829000000\",\"name\":\"嘉祥县\"},{\"id\":\"370830\",\"pid\":3708,\"code\":\"370830000000\",\"name\":\"汶上县\"},{\"id\":\"370831\",\"pid\":3708,\"code\":\"370831000000\",\"name\":\"泗水县\"},{\"id\":\"370832\",\"pid\":3708,\"code\":\"370832000000\",\"name\":\"梁山县\"},{\"id\":\"370881\",\"pid\":3708,\"code\":\"370881000000\",\"name\":\"曲阜市\"},{\"id\":\"370883\",\"pid\":3708,\"code\":\"370883000000\",\"name\":\"邹城市\"}]},{\"id\":\"3709\",\"pid\":37,\"code\":\"370900000000\",\"name\":\"泰安市\",\"childs\":[{\"id\":\"370902\",\"pid\":3709,\"code\":\"370902000000\",\"name\":\"泰山区\"},{\"id\":\"370911\",\"pid\":3709,\"code\":\"370911000000\",\"name\":\"岱岳区\"},{\"id\":\"370921\",\"pid\":3709,\"code\":\"370921000000\",\"name\":\"宁阳县\"},{\"id\":\"370923\",\"pid\":3709,\"code\":\"370923000000\",\"name\":\"东平县\"},{\"id\":\"370982\",\"pid\":3709,\"code\":\"370982000000\",\"name\":\"新泰市\"},{\"id\":\"370983\",\"pid\":3709,\"code\":\"370983000000\",\"name\":\"肥城市\"}]},{\"id\":\"3710\",\"pid\":37,\"code\":\"371000000000\",\"name\":\"威海市\",\"childs\":[{\"id\":\"371002\",\"pid\":3710,\"code\":\"371002000000\",\"name\":\"环翠区\"},{\"id\":\"371003\",\"pid\":3710,\"code\":\"371003000000\",\"name\":\"文登区\"},{\"id\":\"371082\",\"pid\":3710,\"code\":\"371082000000\",\"name\":\"荣成市\"},{\"id\":\"371083\",\"pid\":3710,\"code\":\"371083000000\",\"name\":\"乳山市\"}]},{\"id\":\"3711\",\"pid\":37,\"code\":\"371100000000\",\"name\":\"日照市\",\"childs\":[{\"id\":\"371102\",\"pid\":3711,\"code\":\"371102000000\",\"name\":\"东港区\"},{\"id\":\"371103\",\"pid\":3711,\"code\":\"371103000000\",\"name\":\"岚山区\"},{\"id\":\"371121\",\"pid\":3711,\"code\":\"371121000000\",\"name\":\"五莲县\"},{\"id\":\"371122\",\"pid\":3711,\"code\":\"371122000000\",\"name\":\"莒县\"}]},{\"id\":\"3713\",\"pid\":37,\"code\":\"371300000000\",\"name\":\"临沂市\",\"childs\":[{\"id\":\"371302\",\"pid\":3713,\"code\":\"371302000000\",\"name\":\"兰山区\"},{\"id\":\"371311\",\"pid\":3713,\"code\":\"371311000000\",\"name\":\"罗庄区\"},{\"id\":\"371312\",\"pid\":3713,\"code\":\"371312000000\",\"name\":\"河东区\"},{\"id\":\"371321\",\"pid\":3713,\"code\":\"371321000000\",\"name\":\"沂南县\"},{\"id\":\"371322\",\"pid\":3713,\"code\":\"371322000000\",\"name\":\"郯城县\"},{\"id\":\"371323\",\"pid\":3713,\"code\":\"371323000000\",\"name\":\"沂水县\"},{\"id\":\"371324\",\"pid\":3713,\"code\":\"371324000000\",\"name\":\"兰陵县\"},{\"id\":\"371325\",\"pid\":3713,\"code\":\"371325000000\",\"name\":\"费县\"},{\"id\":\"371326\",\"pid\":3713,\"code\":\"371326000000\",\"name\":\"平邑县\"},{\"id\":\"371327\",\"pid\":3713,\"code\":\"371327000000\",\"name\":\"莒南县\"},{\"id\":\"371328\",\"pid\":3713,\"code\":\"371328000000\",\"name\":\"蒙阴县\"},{\"id\":\"371329\",\"pid\":3713,\"code\":\"371329000000\",\"name\":\"临沭县\"}]},{\"id\":\"3714\",\"pid\":37,\"code\":\"371400000000\",\"name\":\"德州市\",\"childs\":[{\"id\":\"371402\",\"pid\":3714,\"code\":\"371402000000\",\"name\":\"德城区\"},{\"id\":\"371403\",\"pid\":3714,\"code\":\"371403000000\",\"name\":\"陵城区\"},{\"id\":\"371422\",\"pid\":3714,\"code\":\"371422000000\",\"name\":\"宁津县\"},{\"id\":\"371423\",\"pid\":3714,\"code\":\"371423000000\",\"name\":\"庆云县\"},{\"id\":\"371424\",\"pid\":3714,\"code\":\"371424000000\",\"name\":\"临邑县\"},{\"id\":\"371425\",\"pid\":3714,\"code\":\"371425000000\",\"name\":\"齐河县\"},{\"id\":\"371426\",\"pid\":3714,\"code\":\"371426000000\",\"name\":\"平原县\"},{\"id\":\"371427\",\"pid\":3714,\"code\":\"371427000000\",\"name\":\"夏津县\"},{\"id\":\"371428\",\"pid\":3714,\"code\":\"371428000000\",\"name\":\"武城县\"},{\"id\":\"371481\",\"pid\":3714,\"code\":\"371481000000\",\"name\":\"乐陵市\"},{\"id\":\"371482\",\"pid\":3714,\"code\":\"371482000000\",\"name\":\"禹城市\"}]},{\"id\":\"3715\",\"pid\":37,\"code\":\"371500000000\",\"name\":\"聊城市\",\"childs\":[{\"id\":\"371502\",\"pid\":3715,\"code\":\"371502000000\",\"name\":\"东昌府区\"},{\"id\":\"371503\",\"pid\":3715,\"code\":\"371503000000\",\"name\":\"茌平区\"},{\"id\":\"371521\",\"pid\":3715,\"code\":\"371521000000\",\"name\":\"阳谷县\"},{\"id\":\"371522\",\"pid\":3715,\"code\":\"371522000000\",\"name\":\"莘县\"},{\"id\":\"371524\",\"pid\":3715,\"code\":\"371524000000\",\"name\":\"东阿县\"},{\"id\":\"371525\",\"pid\":3715,\"code\":\"371525000000\",\"name\":\"冠县\"},{\"id\":\"371526\",\"pid\":3715,\"code\":\"371526000000\",\"name\":\"高唐县\"},{\"id\":\"371581\",\"pid\":3715,\"code\":\"371581000000\",\"name\":\"临清市\"}]},{\"id\":\"3716\",\"pid\":37,\"code\":\"371600000000\",\"name\":\"滨州市\",\"childs\":[{\"id\":\"371602\",\"pid\":3716,\"code\":\"371602000000\",\"name\":\"滨城区\"},{\"id\":\"371603\",\"pid\":3716,\"code\":\"371603000000\",\"name\":\"沾化区\"},{\"id\":\"371621\",\"pid\":3716,\"code\":\"371621000000\",\"name\":\"惠民县\"},{\"id\":\"371622\",\"pid\":3716,\"code\":\"371622000000\",\"name\":\"阳信县\"},{\"id\":\"371623\",\"pid\":3716,\"code\":\"371623000000\",\"name\":\"无棣县\"},{\"id\":\"371625\",\"pid\":3716,\"code\":\"371625000000\",\"name\":\"博兴县\"},{\"id\":\"371681\",\"pid\":3716,\"code\":\"371681000000\",\"name\":\"邹平市\"}]},{\"id\":\"3717\",\"pid\":37,\"code\":\"371700000000\",\"name\":\"菏泽市\",\"childs\":[{\"id\":\"371702\",\"pid\":3717,\"code\":\"371702000000\",\"name\":\"牡丹区\"},{\"id\":\"371703\",\"pid\":3717,\"code\":\"371703000000\",\"name\":\"定陶区\"},{\"id\":\"371721\",\"pid\":3717,\"code\":\"371721000000\",\"name\":\"曹县\"},{\"id\":\"371722\",\"pid\":3717,\"code\":\"371722000000\",\"name\":\"单县\"},{\"id\":\"371723\",\"pid\":3717,\"code\":\"371723000000\",\"name\":\"成武县\"},{\"id\":\"371724\",\"pid\":3717,\"code\":\"371724000000\",\"name\":\"巨野县\"},{\"id\":\"371725\",\"pid\":3717,\"code\":\"371725000000\",\"name\":\"郓城县\"},{\"id\":\"371726\",\"pid\":3717,\"code\":\"371726000000\",\"name\":\"鄄城县\"},{\"id\":\"371728\",\"pid\":3717,\"code\":\"371728000000\",\"name\":\"东明县\"}]}]},{\"id\":\"41\",\"pid\":0,\"code\":\"410000000000\",\"name\":\"河南省\",\"childs\":[{\"id\":\"4101\",\"pid\":41,\"code\":\"410100000000\",\"name\":\"郑州市\",\"childs\":[{\"id\":\"410102\",\"pid\":4101,\"code\":\"410102000000\",\"name\":\"中原区\"},{\"id\":\"410103\",\"pid\":4101,\"code\":\"410103000000\",\"name\":\"二七区\"},{\"id\":\"410104\",\"pid\":4101,\"code\":\"410104000000\",\"name\":\"管城回族区\"},{\"id\":\"410105\",\"pid\":4101,\"code\":\"410105000000\",\"name\":\"金水区\"},{\"id\":\"410106\",\"pid\":4101,\"code\":\"410106000000\",\"name\":\"上街区\"},{\"id\":\"410108\",\"pid\":4101,\"code\":\"410108000000\",\"name\":\"惠济区\"},{\"id\":\"410122\",\"pid\":4101,\"code\":\"410122000000\",\"name\":\"中牟县\"},{\"id\":\"410181\",\"pid\":4101,\"code\":\"410181000000\",\"name\":\"巩义市\"},{\"id\":\"410182\",\"pid\":4101,\"code\":\"410182000000\",\"name\":\"荥阳市\"},{\"id\":\"410183\",\"pid\":4101,\"code\":\"410183000000\",\"name\":\"新密市\"},{\"id\":\"410184\",\"pid\":4101,\"code\":\"410184000000\",\"name\":\"新郑市\"},{\"id\":\"410185\",\"pid\":4101,\"code\":\"410185000000\",\"name\":\"登封市\"}]},{\"id\":\"4102\",\"pid\":41,\"code\":\"410200000000\",\"name\":\"开封市\",\"childs\":[{\"id\":\"410202\",\"pid\":4102,\"code\":\"410202000000\",\"name\":\"龙亭区\"},{\"id\":\"410203\",\"pid\":4102,\"code\":\"410203000000\",\"name\":\"顺河回族区\"},{\"id\":\"410204\",\"pid\":4102,\"code\":\"410204000000\",\"name\":\"鼓楼区\"},{\"id\":\"410205\",\"pid\":4102,\"code\":\"410205000000\",\"name\":\"禹王台区\"},{\"id\":\"410212\",\"pid\":4102,\"code\":\"410212000000\",\"name\":\"祥符区\"},{\"id\":\"410221\",\"pid\":4102,\"code\":\"410221000000\",\"name\":\"杞县\"},{\"id\":\"410222\",\"pid\":4102,\"code\":\"410222000000\",\"name\":\"通许县\"},{\"id\":\"410223\",\"pid\":4102,\"code\":\"410223000000\",\"name\":\"尉氏县\"},{\"id\":\"410225\",\"pid\":4102,\"code\":\"410225000000\",\"name\":\"兰考县\"}]},{\"id\":\"4103\",\"pid\":41,\"code\":\"410300000000\",\"name\":\"洛阳市\",\"childs\":[{\"id\":\"410302\",\"pid\":4103,\"code\":\"410302000000\",\"name\":\"老城区\"},{\"id\":\"410303\",\"pid\":4103,\"code\":\"410303000000\",\"name\":\"西工区\"},{\"id\":\"410304\",\"pid\":4103,\"code\":\"410304000000\",\"name\":\"瀍河回族区\"},{\"id\":\"410305\",\"pid\":4103,\"code\":\"410305000000\",\"name\":\"涧西区\"},{\"id\":\"410307\",\"pid\":4103,\"code\":\"410307000000\",\"name\":\"偃师区\"},{\"id\":\"410308\",\"pid\":4103,\"code\":\"410308000000\",\"name\":\"孟津区\"},{\"id\":\"410311\",\"pid\":4103,\"code\":\"410311000000\",\"name\":\"洛龙区\"},{\"id\":\"410323\",\"pid\":4103,\"code\":\"410323000000\",\"name\":\"新安县\"},{\"id\":\"410324\",\"pid\":4103,\"code\":\"410324000000\",\"name\":\"栾川县\"},{\"id\":\"410325\",\"pid\":4103,\"code\":\"410325000000\",\"name\":\"嵩县\"},{\"id\":\"410326\",\"pid\":4103,\"code\":\"410326000000\",\"name\":\"汝阳县\"},{\"id\":\"410327\",\"pid\":4103,\"code\":\"410327000000\",\"name\":\"宜阳县\"},{\"id\":\"410328\",\"pid\":4103,\"code\":\"410328000000\",\"name\":\"洛宁县\"},{\"id\":\"410329\",\"pid\":4103,\"code\":\"410329000000\",\"name\":\"伊川县\"}]},{\"id\":\"4104\",\"pid\":41,\"code\":\"410400000000\",\"name\":\"平顶山市\",\"childs\":[{\"id\":\"410402\",\"pid\":4104,\"code\":\"410402000000\",\"name\":\"新华区\"},{\"id\":\"410403\",\"pid\":4104,\"code\":\"410403000000\",\"name\":\"卫东区\"},{\"id\":\"410404\",\"pid\":4104,\"code\":\"410404000000\",\"name\":\"石龙区\"},{\"id\":\"410411\",\"pid\":4104,\"code\":\"410411000000\",\"name\":\"湛河区\"},{\"id\":\"410421\",\"pid\":4104,\"code\":\"410421000000\",\"name\":\"宝丰县\"},{\"id\":\"410422\",\"pid\":4104,\"code\":\"410422000000\",\"name\":\"叶县\"},{\"id\":\"410423\",\"pid\":4104,\"code\":\"410423000000\",\"name\":\"鲁山县\"},{\"id\":\"410425\",\"pid\":4104,\"code\":\"410425000000\",\"name\":\"郏县\"},{\"id\":\"410481\",\"pid\":4104,\"code\":\"410481000000\",\"name\":\"舞钢市\"},{\"id\":\"410482\",\"pid\":4104,\"code\":\"410482000000\",\"name\":\"汝州市\"}]},{\"id\":\"4105\",\"pid\":41,\"code\":\"410500000000\",\"name\":\"安阳市\",\"childs\":[{\"id\":\"410502\",\"pid\":4105,\"code\":\"410502000000\",\"name\":\"文峰区\"},{\"id\":\"410503\",\"pid\":4105,\"code\":\"410503000000\",\"name\":\"北关区\"},{\"id\":\"410505\",\"pid\":4105,\"code\":\"410505000000\",\"name\":\"殷都区\"},{\"id\":\"410506\",\"pid\":4105,\"code\":\"410506000000\",\"name\":\"龙安区\"},{\"id\":\"410522\",\"pid\":4105,\"code\":\"410522000000\",\"name\":\"安阳县\"},{\"id\":\"410523\",\"pid\":4105,\"code\":\"410523000000\",\"name\":\"汤阴县\"},{\"id\":\"410526\",\"pid\":4105,\"code\":\"410526000000\",\"name\":\"滑县\"},{\"id\":\"410527\",\"pid\":4105,\"code\":\"410527000000\",\"name\":\"内黄县\"},{\"id\":\"410581\",\"pid\":4105,\"code\":\"410581000000\",\"name\":\"林州市\"}]},{\"id\":\"4106\",\"pid\":41,\"code\":\"410600000000\",\"name\":\"鹤壁市\",\"childs\":[{\"id\":\"410602\",\"pid\":4106,\"code\":\"410602000000\",\"name\":\"鹤山区\"},{\"id\":\"410603\",\"pid\":4106,\"code\":\"410603000000\",\"name\":\"山城区\"},{\"id\":\"410611\",\"pid\":4106,\"code\":\"410611000000\",\"name\":\"淇滨区\"},{\"id\":\"410621\",\"pid\":4106,\"code\":\"410621000000\",\"name\":\"浚县\"},{\"id\":\"410622\",\"pid\":4106,\"code\":\"410622000000\",\"name\":\"淇县\"}]},{\"id\":\"4107\",\"pid\":41,\"code\":\"410700000000\",\"name\":\"新乡市\",\"childs\":[{\"id\":\"410702\",\"pid\":4107,\"code\":\"410702000000\",\"name\":\"红旗区\"},{\"id\":\"410703\",\"pid\":4107,\"code\":\"410703000000\",\"name\":\"卫滨区\"},{\"id\":\"410704\",\"pid\":4107,\"code\":\"410704000000\",\"name\":\"凤泉区\"},{\"id\":\"410711\",\"pid\":4107,\"code\":\"410711000000\",\"name\":\"牧野区\"},{\"id\":\"410721\",\"pid\":4107,\"code\":\"410721000000\",\"name\":\"新乡县\"},{\"id\":\"410724\",\"pid\":4107,\"code\":\"410724000000\",\"name\":\"获嘉县\"},{\"id\":\"410725\",\"pid\":4107,\"code\":\"410725000000\",\"name\":\"原阳县\"},{\"id\":\"410726\",\"pid\":4107,\"code\":\"410726000000\",\"name\":\"延津县\"},{\"id\":\"410727\",\"pid\":4107,\"code\":\"410727000000\",\"name\":\"封丘县\"},{\"id\":\"410781\",\"pid\":4107,\"code\":\"410781000000\",\"name\":\"卫辉市\"},{\"id\":\"410782\",\"pid\":4107,\"code\":\"410782000000\",\"name\":\"辉县市\"},{\"id\":\"410783\",\"pid\":4107,\"code\":\"410783000000\",\"name\":\"长垣市\"}]},{\"id\":\"4108\",\"pid\":41,\"code\":\"410800000000\",\"name\":\"焦作市\",\"childs\":[{\"id\":\"410802\",\"pid\":4108,\"code\":\"410802000000\",\"name\":\"解放区\"},{\"id\":\"410803\",\"pid\":4108,\"code\":\"410803000000\",\"name\":\"中站区\"},{\"id\":\"410804\",\"pid\":4108,\"code\":\"410804000000\",\"name\":\"马村区\"},{\"id\":\"410811\",\"pid\":4108,\"code\":\"410811000000\",\"name\":\"山阳区\"},{\"id\":\"410821\",\"pid\":4108,\"code\":\"410821000000\",\"name\":\"修武县\"},{\"id\":\"410822\",\"pid\":4108,\"code\":\"410822000000\",\"name\":\"博爱县\"},{\"id\":\"410823\",\"pid\":4108,\"code\":\"410823000000\",\"name\":\"武陟县\"},{\"id\":\"410825\",\"pid\":4108,\"code\":\"410825000000\",\"name\":\"温县\"},{\"id\":\"410882\",\"pid\":4108,\"code\":\"410882000000\",\"name\":\"沁阳市\"},{\"id\":\"410883\",\"pid\":4108,\"code\":\"410883000000\",\"name\":\"孟州市\"}]},{\"id\":\"4109\",\"pid\":41,\"code\":\"410900000000\",\"name\":\"濮阳市\",\"childs\":[{\"id\":\"410902\",\"pid\":4109,\"code\":\"410902000000\",\"name\":\"华龙区\"},{\"id\":\"410922\",\"pid\":4109,\"code\":\"410922000000\",\"name\":\"清丰县\"},{\"id\":\"410923\",\"pid\":4109,\"code\":\"410923000000\",\"name\":\"南乐县\"},{\"id\":\"410926\",\"pid\":4109,\"code\":\"410926000000\",\"name\":\"范县\"},{\"id\":\"410927\",\"pid\":4109,\"code\":\"410927000000\",\"name\":\"台前县\"},{\"id\":\"410928\",\"pid\":4109,\"code\":\"410928000000\",\"name\":\"濮阳县\"}]},{\"id\":\"4110\",\"pid\":41,\"code\":\"411000000000\",\"name\":\"许昌市\",\"childs\":[{\"id\":\"411002\",\"pid\":4110,\"code\":\"411002000000\",\"name\":\"魏都区\"},{\"id\":\"411003\",\"pid\":4110,\"code\":\"411003000000\",\"name\":\"建安区\"},{\"id\":\"411024\",\"pid\":4110,\"code\":\"411024000000\",\"name\":\"鄢陵县\"},{\"id\":\"411025\",\"pid\":4110,\"code\":\"411025000000\",\"name\":\"襄城县\"},{\"id\":\"411081\",\"pid\":4110,\"code\":\"411081000000\",\"name\":\"禹州市\"},{\"id\":\"411082\",\"pid\":4110,\"code\":\"411082000000\",\"name\":\"长葛市\"}]},{\"id\":\"4111\",\"pid\":41,\"code\":\"411100000000\",\"name\":\"漯河市\",\"childs\":[{\"id\":\"411102\",\"pid\":4111,\"code\":\"411102000000\",\"name\":\"源汇区\"},{\"id\":\"411103\",\"pid\":4111,\"code\":\"411103000000\",\"name\":\"郾城区\"},{\"id\":\"411104\",\"pid\":4111,\"code\":\"411104000000\",\"name\":\"召陵区\"},{\"id\":\"411121\",\"pid\":4111,\"code\":\"411121000000\",\"name\":\"舞阳县\"},{\"id\":\"411122\",\"pid\":4111,\"code\":\"411122000000\",\"name\":\"临颍县\"}]},{\"id\":\"4112\",\"pid\":41,\"code\":\"411200000000\",\"name\":\"三门峡市\",\"childs\":[{\"id\":\"411202\",\"pid\":4112,\"code\":\"411202000000\",\"name\":\"湖滨区\"},{\"id\":\"411203\",\"pid\":4112,\"code\":\"411203000000\",\"name\":\"陕州区\"},{\"id\":\"411221\",\"pid\":4112,\"code\":\"411221000000\",\"name\":\"渑池县\"},{\"id\":\"411224\",\"pid\":4112,\"code\":\"411224000000\",\"name\":\"卢氏县\"},{\"id\":\"411281\",\"pid\":4112,\"code\":\"411281000000\",\"name\":\"义马市\"},{\"id\":\"411282\",\"pid\":4112,\"code\":\"411282000000\",\"name\":\"灵宝市\"}]},{\"id\":\"4113\",\"pid\":41,\"code\":\"411300000000\",\"name\":\"南阳市\",\"childs\":[{\"id\":\"411302\",\"pid\":4113,\"code\":\"411302000000\",\"name\":\"宛城区\"},{\"id\":\"411303\",\"pid\":4113,\"code\":\"411303000000\",\"name\":\"卧龙区\"},{\"id\":\"411321\",\"pid\":4113,\"code\":\"411321000000\",\"name\":\"南召县\"},{\"id\":\"411322\",\"pid\":4113,\"code\":\"411322000000\",\"name\":\"方城县\"},{\"id\":\"411323\",\"pid\":4113,\"code\":\"411323000000\",\"name\":\"西峡县\"},{\"id\":\"411324\",\"pid\":4113,\"code\":\"411324000000\",\"name\":\"镇平县\"},{\"id\":\"411325\",\"pid\":4113,\"code\":\"411325000000\",\"name\":\"内乡县\"},{\"id\":\"411326\",\"pid\":4113,\"code\":\"411326000000\",\"name\":\"淅川县\"},{\"id\":\"411327\",\"pid\":4113,\"code\":\"411327000000\",\"name\":\"社旗县\"},{\"id\":\"411328\",\"pid\":4113,\"code\":\"411328000000\",\"name\":\"唐河县\"},{\"id\":\"411329\",\"pid\":4113,\"code\":\"411329000000\",\"name\":\"新野县\"},{\"id\":\"411330\",\"pid\":4113,\"code\":\"411330000000\",\"name\":\"桐柏县\"},{\"id\":\"411381\",\"pid\":4113,\"code\":\"411381000000\",\"name\":\"邓州市\"}]},{\"id\":\"4114\",\"pid\":41,\"code\":\"411400000000\",\"name\":\"商丘市\",\"childs\":[{\"id\":\"411402\",\"pid\":4114,\"code\":\"411402000000\",\"name\":\"梁园区\"},{\"id\":\"411403\",\"pid\":4114,\"code\":\"411403000000\",\"name\":\"睢阳区\"},{\"id\":\"411421\",\"pid\":4114,\"code\":\"411421000000\",\"name\":\"民权县\"},{\"id\":\"411422\",\"pid\":4114,\"code\":\"411422000000\",\"name\":\"睢县\"},{\"id\":\"411423\",\"pid\":4114,\"code\":\"411423000000\",\"name\":\"宁陵县\"},{\"id\":\"411424\",\"pid\":4114,\"code\":\"411424000000\",\"name\":\"柘城县\"},{\"id\":\"411425\",\"pid\":4114,\"code\":\"411425000000\",\"name\":\"虞城县\"},{\"id\":\"411426\",\"pid\":4114,\"code\":\"411426000000\",\"name\":\"夏邑县\"},{\"id\":\"411481\",\"pid\":4114,\"code\":\"411481000000\",\"name\":\"永城市\"}]},{\"id\":\"4115\",\"pid\":41,\"code\":\"411500000000\",\"name\":\"信阳市\",\"childs\":[{\"id\":\"411502\",\"pid\":4115,\"code\":\"411502000000\",\"name\":\"浉河区\"},{\"id\":\"411503\",\"pid\":4115,\"code\":\"411503000000\",\"name\":\"平桥区\"},{\"id\":\"411521\",\"pid\":4115,\"code\":\"411521000000\",\"name\":\"罗山县\"},{\"id\":\"411522\",\"pid\":4115,\"code\":\"411522000000\",\"name\":\"光山县\"},{\"id\":\"411523\",\"pid\":4115,\"code\":\"411523000000\",\"name\":\"新县\"},{\"id\":\"411524\",\"pid\":4115,\"code\":\"411524000000\",\"name\":\"商城县\"},{\"id\":\"411525\",\"pid\":4115,\"code\":\"411525000000\",\"name\":\"固始县\"},{\"id\":\"411526\",\"pid\":4115,\"code\":\"411526000000\",\"name\":\"潢川县\"},{\"id\":\"411527\",\"pid\":4115,\"code\":\"411527000000\",\"name\":\"淮滨县\"},{\"id\":\"411528\",\"pid\":4115,\"code\":\"411528000000\",\"name\":\"息县\"}]},{\"id\":\"4116\",\"pid\":41,\"code\":\"411600000000\",\"name\":\"周口市\",\"childs\":[{\"id\":\"411602\",\"pid\":4116,\"code\":\"411602000000\",\"name\":\"川汇区\"},{\"id\":\"411603\",\"pid\":4116,\"code\":\"411603000000\",\"name\":\"淮阳区\"},{\"id\":\"411621\",\"pid\":4116,\"code\":\"411621000000\",\"name\":\"扶沟县\"},{\"id\":\"411622\",\"pid\":4116,\"code\":\"411622000000\",\"name\":\"西华县\"},{\"id\":\"411623\",\"pid\":4116,\"code\":\"411623000000\",\"name\":\"商水县\"},{\"id\":\"411624\",\"pid\":4116,\"code\":\"411624000000\",\"name\":\"沈丘县\"},{\"id\":\"411625\",\"pid\":4116,\"code\":\"411625000000\",\"name\":\"郸城县\"},{\"id\":\"411627\",\"pid\":4116,\"code\":\"411627000000\",\"name\":\"太康县\"},{\"id\":\"411628\",\"pid\":4116,\"code\":\"411628000000\",\"name\":\"鹿邑县\"},{\"id\":\"411681\",\"pid\":4116,\"code\":\"411681000000\",\"name\":\"项城市\"}]},{\"id\":\"4117\",\"pid\":41,\"code\":\"411700000000\",\"name\":\"驻马店市\",\"childs\":[{\"id\":\"411702\",\"pid\":4117,\"code\":\"411702000000\",\"name\":\"驿城区\"},{\"id\":\"411721\",\"pid\":4117,\"code\":\"411721000000\",\"name\":\"西平县\"},{\"id\":\"411722\",\"pid\":4117,\"code\":\"411722000000\",\"name\":\"上蔡县\"},{\"id\":\"411723\",\"pid\":4117,\"code\":\"411723000000\",\"name\":\"平舆县\"},{\"id\":\"411724\",\"pid\":4117,\"code\":\"411724000000\",\"name\":\"正阳县\"},{\"id\":\"411725\",\"pid\":4117,\"code\":\"411725000000\",\"name\":\"确山县\"},{\"id\":\"411726\",\"pid\":4117,\"code\":\"411726000000\",\"name\":\"泌阳县\"},{\"id\":\"411727\",\"pid\":4117,\"code\":\"411727000000\",\"name\":\"汝南县\"},{\"id\":\"411728\",\"pid\":4117,\"code\":\"411728000000\",\"name\":\"遂平县\"},{\"id\":\"411729\",\"pid\":4117,\"code\":\"411729000000\",\"name\":\"新蔡县\"}]},{\"id\":\"419001\",\"pid\":41,\"code\":\"419001000000\",\"name\":\"济源市\",\"childs\":[{\"id\":\"419001000\",\"pid\":419001,\"code\":\"419001000000\",\"name\":\"济源市\"}]}]},{\"id\":\"42\",\"pid\":0,\"code\":\"420000000000\",\"name\":\"湖北省\",\"childs\":[{\"id\":\"4201\",\"pid\":42,\"code\":\"420100000000\",\"name\":\"武汉市\",\"childs\":[{\"id\":\"420102\",\"pid\":4201,\"code\":\"420102000000\",\"name\":\"江岸区\"},{\"id\":\"420103\",\"pid\":4201,\"code\":\"420103000000\",\"name\":\"江汉区\"},{\"id\":\"420104\",\"pid\":4201,\"code\":\"420104000000\",\"name\":\"硚口区\"},{\"id\":\"420105\",\"pid\":4201,\"code\":\"420105000000\",\"name\":\"汉阳区\"},{\"id\":\"420106\",\"pid\":4201,\"code\":\"420106000000\",\"name\":\"武昌区\"},{\"id\":\"420107\",\"pid\":4201,\"code\":\"420107000000\",\"name\":\"青山区\"},{\"id\":\"420111\",\"pid\":4201,\"code\":\"420111000000\",\"name\":\"洪山区\"},{\"id\":\"420112\",\"pid\":4201,\"code\":\"420112000000\",\"name\":\"东西湖区\"},{\"id\":\"420113\",\"pid\":4201,\"code\":\"420113000000\",\"name\":\"汉南区\"},{\"id\":\"420114\",\"pid\":4201,\"code\":\"420114000000\",\"name\":\"蔡甸区\"},{\"id\":\"420115\",\"pid\":4201,\"code\":\"420115000000\",\"name\":\"江夏区\"},{\"id\":\"420116\",\"pid\":4201,\"code\":\"420116000000\",\"name\":\"黄陂区\"},{\"id\":\"420117\",\"pid\":4201,\"code\":\"420117000000\",\"name\":\"新洲区\"}]},{\"id\":\"4202\",\"pid\":42,\"code\":\"420200000000\",\"name\":\"黄石市\",\"childs\":[{\"id\":\"420202\",\"pid\":4202,\"code\":\"420202000000\",\"name\":\"黄石港区\"},{\"id\":\"420203\",\"pid\":4202,\"code\":\"420203000000\",\"name\":\"西塞山区\"},{\"id\":\"420204\",\"pid\":4202,\"code\":\"420204000000\",\"name\":\"下陆区\"},{\"id\":\"420205\",\"pid\":4202,\"code\":\"420205000000\",\"name\":\"铁山区\"},{\"id\":\"420222\",\"pid\":4202,\"code\":\"420222000000\",\"name\":\"阳新县\"},{\"id\":\"420281\",\"pid\":4202,\"code\":\"420281000000\",\"name\":\"大冶市\"}]},{\"id\":\"4203\",\"pid\":42,\"code\":\"420300000000\",\"name\":\"十堰市\",\"childs\":[{\"id\":\"420302\",\"pid\":4203,\"code\":\"420302000000\",\"name\":\"茅箭区\"},{\"id\":\"420303\",\"pid\":4203,\"code\":\"420303000000\",\"name\":\"张湾区\"},{\"id\":\"420304\",\"pid\":4203,\"code\":\"420304000000\",\"name\":\"郧阳区\"},{\"id\":\"420322\",\"pid\":4203,\"code\":\"420322000000\",\"name\":\"郧西县\"},{\"id\":\"420323\",\"pid\":4203,\"code\":\"420323000000\",\"name\":\"竹山县\"},{\"id\":\"420324\",\"pid\":4203,\"code\":\"420324000000\",\"name\":\"竹溪县\"},{\"id\":\"420325\",\"pid\":4203,\"code\":\"420325000000\",\"name\":\"房县\"},{\"id\":\"420381\",\"pid\":4203,\"code\":\"420381000000\",\"name\":\"丹江口市\"}]},{\"id\":\"4205\",\"pid\":42,\"code\":\"420500000000\",\"name\":\"宜昌市\",\"childs\":[{\"id\":\"420502\",\"pid\":4205,\"code\":\"420502000000\",\"name\":\"西陵区\"},{\"id\":\"420503\",\"pid\":4205,\"code\":\"420503000000\",\"name\":\"伍家岗区\"},{\"id\":\"420504\",\"pid\":4205,\"code\":\"420504000000\",\"name\":\"点军区\"},{\"id\":\"420505\",\"pid\":4205,\"code\":\"420505000000\",\"name\":\"猇亭区\"},{\"id\":\"420506\",\"pid\":4205,\"code\":\"420506000000\",\"name\":\"夷陵区\"},{\"id\":\"420525\",\"pid\":4205,\"code\":\"420525000000\",\"name\":\"远安县\"},{\"id\":\"420526\",\"pid\":4205,\"code\":\"420526000000\",\"name\":\"兴山县\"},{\"id\":\"420527\",\"pid\":4205,\"code\":\"420527000000\",\"name\":\"秭归县\"},{\"id\":\"420528\",\"pid\":4205,\"code\":\"420528000000\",\"name\":\"长阳土家族自治县\"},{\"id\":\"420529\",\"pid\":4205,\"code\":\"420529000000\",\"name\":\"五峰土家族自治县\"},{\"id\":\"420581\",\"pid\":4205,\"code\":\"420581000000\",\"name\":\"宜都市\"},{\"id\":\"420582\",\"pid\":4205,\"code\":\"420582000000\",\"name\":\"当阳市\"},{\"id\":\"420583\",\"pid\":4205,\"code\":\"420583000000\",\"name\":\"枝江市\"}]},{\"id\":\"4206\",\"pid\":42,\"code\":\"420600000000\",\"name\":\"襄阳市\",\"childs\":[{\"id\":\"420602\",\"pid\":4206,\"code\":\"420602000000\",\"name\":\"襄城区\"},{\"id\":\"420606\",\"pid\":4206,\"code\":\"420606000000\",\"name\":\"樊城区\"},{\"id\":\"420607\",\"pid\":4206,\"code\":\"420607000000\",\"name\":\"襄州区\"},{\"id\":\"420624\",\"pid\":4206,\"code\":\"420624000000\",\"name\":\"南漳县\"},{\"id\":\"420625\",\"pid\":4206,\"code\":\"420625000000\",\"name\":\"谷城县\"},{\"id\":\"420626\",\"pid\":4206,\"code\":\"420626000000\",\"name\":\"保康县\"},{\"id\":\"420682\",\"pid\":4206,\"code\":\"420682000000\",\"name\":\"老河口市\"},{\"id\":\"420683\",\"pid\":4206,\"code\":\"420683000000\",\"name\":\"枣阳市\"},{\"id\":\"420684\",\"pid\":4206,\"code\":\"420684000000\",\"name\":\"宜城市\"}]},{\"id\":\"4207\",\"pid\":42,\"code\":\"420700000000\",\"name\":\"鄂州市\",\"childs\":[{\"id\":\"420702\",\"pid\":4207,\"code\":\"420702000000\",\"name\":\"梁子湖区\"},{\"id\":\"420703\",\"pid\":4207,\"code\":\"420703000000\",\"name\":\"华容区\"},{\"id\":\"420704\",\"pid\":4207,\"code\":\"420704000000\",\"name\":\"鄂城区\"}]},{\"id\":\"4208\",\"pid\":42,\"code\":\"420800000000\",\"name\":\"荆门市\",\"childs\":[{\"id\":\"420802\",\"pid\":4208,\"code\":\"420802000000\",\"name\":\"东宝区\"},{\"id\":\"420804\",\"pid\":4208,\"code\":\"420804000000\",\"name\":\"掇刀区\"},{\"id\":\"420822\",\"pid\":4208,\"code\":\"420822000000\",\"name\":\"沙洋县\"},{\"id\":\"420881\",\"pid\":4208,\"code\":\"420881000000\",\"name\":\"钟祥市\"},{\"id\":\"420882\",\"pid\":4208,\"code\":\"420882000000\",\"name\":\"京山市\"}]},{\"id\":\"4209\",\"pid\":42,\"code\":\"420900000000\",\"name\":\"孝感市\",\"childs\":[{\"id\":\"420902\",\"pid\":4209,\"code\":\"420902000000\",\"name\":\"孝南区\"},{\"id\":\"420921\",\"pid\":4209,\"code\":\"420921000000\",\"name\":\"孝昌县\"},{\"id\":\"420922\",\"pid\":4209,\"code\":\"420922000000\",\"name\":\"大悟县\"},{\"id\":\"420923\",\"pid\":4209,\"code\":\"420923000000\",\"name\":\"云梦县\"},{\"id\":\"420981\",\"pid\":4209,\"code\":\"420981000000\",\"name\":\"应城市\"},{\"id\":\"420982\",\"pid\":4209,\"code\":\"420982000000\",\"name\":\"安陆市\"},{\"id\":\"420984\",\"pid\":4209,\"code\":\"420984000000\",\"name\":\"汉川市\"}]},{\"id\":\"4210\",\"pid\":42,\"code\":\"421000000000\",\"name\":\"荆州市\",\"childs\":[{\"id\":\"421002\",\"pid\":4210,\"code\":\"421002000000\",\"name\":\"沙市区\"},{\"id\":\"421003\",\"pid\":4210,\"code\":\"421003000000\",\"name\":\"荆州区\"},{\"id\":\"421022\",\"pid\":4210,\"code\":\"421022000000\",\"name\":\"公安县\"},{\"id\":\"421024\",\"pid\":4210,\"code\":\"421024000000\",\"name\":\"江陵县\"},{\"id\":\"421081\",\"pid\":4210,\"code\":\"421081000000\",\"name\":\"石首市\"},{\"id\":\"421083\",\"pid\":4210,\"code\":\"421083000000\",\"name\":\"洪湖市\"},{\"id\":\"421087\",\"pid\":4210,\"code\":\"421087000000\",\"name\":\"松滋市\"},{\"id\":\"421088\",\"pid\":4210,\"code\":\"421088000000\",\"name\":\"监利市\"}]},{\"id\":\"4211\",\"pid\":42,\"code\":\"421100000000\",\"name\":\"黄冈市\",\"childs\":[{\"id\":\"421102\",\"pid\":4211,\"code\":\"421102000000\",\"name\":\"黄州区\"},{\"id\":\"421121\",\"pid\":4211,\"code\":\"421121000000\",\"name\":\"团风县\"},{\"id\":\"421122\",\"pid\":4211,\"code\":\"421122000000\",\"name\":\"红安县\"},{\"id\":\"421123\",\"pid\":4211,\"code\":\"421123000000\",\"name\":\"罗田县\"},{\"id\":\"421124\",\"pid\":4211,\"code\":\"421124000000\",\"name\":\"英山县\"},{\"id\":\"421125\",\"pid\":4211,\"code\":\"421125000000\",\"name\":\"浠水县\"},{\"id\":\"421126\",\"pid\":4211,\"code\":\"421126000000\",\"name\":\"蕲春县\"},{\"id\":\"421127\",\"pid\":4211,\"code\":\"421127000000\",\"name\":\"黄梅县\"},{\"id\":\"421181\",\"pid\":4211,\"code\":\"421181000000\",\"name\":\"麻城市\"},{\"id\":\"421182\",\"pid\":4211,\"code\":\"421182000000\",\"name\":\"武穴市\"}]},{\"id\":\"4212\",\"pid\":42,\"code\":\"421200000000\",\"name\":\"咸宁市\",\"childs\":[{\"id\":\"421202\",\"pid\":4212,\"code\":\"421202000000\",\"name\":\"咸安区\"},{\"id\":\"421221\",\"pid\":4212,\"code\":\"421221000000\",\"name\":\"嘉鱼县\"},{\"id\":\"421222\",\"pid\":4212,\"code\":\"421222000000\",\"name\":\"通城县\"},{\"id\":\"421223\",\"pid\":4212,\"code\":\"421223000000\",\"name\":\"崇阳县\"},{\"id\":\"421224\",\"pid\":4212,\"code\":\"421224000000\",\"name\":\"通山县\"},{\"id\":\"421281\",\"pid\":4212,\"code\":\"421281000000\",\"name\":\"赤壁市\"}]},{\"id\":\"4213\",\"pid\":42,\"code\":\"421300000000\",\"name\":\"随州市\",\"childs\":[{\"id\":\"421303\",\"pid\":4213,\"code\":\"421303000000\",\"name\":\"曾都区\"},{\"id\":\"421321\",\"pid\":4213,\"code\":\"421321000000\",\"name\":\"随县\"},{\"id\":\"421381\",\"pid\":4213,\"code\":\"421381000000\",\"name\":\"广水市\"}]},{\"id\":\"4228\",\"pid\":42,\"code\":\"422800000000\",\"name\":\"恩施土家族苗族自治州\",\"childs\":[{\"id\":\"422801\",\"pid\":4228,\"code\":\"422801000000\",\"name\":\"恩施市\"},{\"id\":\"422802\",\"pid\":4228,\"code\":\"422802000000\",\"name\":\"利川市\"},{\"id\":\"422822\",\"pid\":4228,\"code\":\"422822000000\",\"name\":\"建始县\"},{\"id\":\"422823\",\"pid\":4228,\"code\":\"422823000000\",\"name\":\"巴东县\"},{\"id\":\"422825\",\"pid\":4228,\"code\":\"422825000000\",\"name\":\"宣恩县\"},{\"id\":\"422826\",\"pid\":4228,\"code\":\"422826000000\",\"name\":\"咸丰县\"},{\"id\":\"422827\",\"pid\":4228,\"code\":\"422827000000\",\"name\":\"来凤县\"},{\"id\":\"422828\",\"pid\":4228,\"code\":\"422828000000\",\"name\":\"鹤峰县\"}]},{\"id\":\"429004\",\"pid\":42,\"code\":\"429004000000\",\"name\":\"仙桃市\",\"childs\":[{\"id\":\"429004000\",\"pid\":429004,\"code\":\"429004000000\",\"name\":\"仙桃市\"}]},{\"id\":\"429005\",\"pid\":42,\"code\":\"429005000000\",\"name\":\"潜江市\",\"childs\":[{\"id\":\"429005000\",\"pid\":429005,\"code\":\"429005000000\",\"name\":\"潜江市\"}]},{\"id\":\"429006\",\"pid\":42,\"code\":\"429006000000\",\"name\":\"天门市\",\"childs\":[{\"id\":\"429006000\",\"pid\":429006,\"code\":\"429006000000\",\"name\":\"天门市\"}]},{\"id\":\"429021\",\"pid\":42,\"code\":\"429021000000\",\"name\":\"神农架林区\",\"childs\":[{\"id\":\"429021000\",\"pid\":429021,\"code\":\"429021000000\",\"name\":\"神农架林区\"}]}]},{\"id\":\"43\",\"pid\":0,\"code\":\"430000000000\",\"name\":\"湖南省\",\"childs\":[{\"id\":\"4301\",\"pid\":43,\"code\":\"430100000000\",\"name\":\"长沙市\",\"childs\":[{\"id\":\"430102\",\"pid\":4301,\"code\":\"430102000000\",\"name\":\"芙蓉区\"},{\"id\":\"430103\",\"pid\":4301,\"code\":\"430103000000\",\"name\":\"天心区\"},{\"id\":\"430104\",\"pid\":4301,\"code\":\"430104000000\",\"name\":\"岳麓区\"},{\"id\":\"430105\",\"pid\":4301,\"code\":\"430105000000\",\"name\":\"开福区\"},{\"id\":\"430111\",\"pid\":4301,\"code\":\"430111000000\",\"name\":\"雨花区\"},{\"id\":\"430112\",\"pid\":4301,\"code\":\"430112000000\",\"name\":\"望城区\"},{\"id\":\"430121\",\"pid\":4301,\"code\":\"430121000000\",\"name\":\"长沙县\"},{\"id\":\"430181\",\"pid\":4301,\"code\":\"430181000000\",\"name\":\"浏阳市\"},{\"id\":\"430182\",\"pid\":4301,\"code\":\"430182000000\",\"name\":\"宁乡市\"}]},{\"id\":\"4302\",\"pid\":43,\"code\":\"430200000000\",\"name\":\"株洲市\",\"childs\":[{\"id\":\"430202\",\"pid\":4302,\"code\":\"430202000000\",\"name\":\"荷塘区\"},{\"id\":\"430203\",\"pid\":4302,\"code\":\"430203000000\",\"name\":\"芦淞区\"},{\"id\":\"430204\",\"pid\":4302,\"code\":\"430204000000\",\"name\":\"石峰区\"},{\"id\":\"430211\",\"pid\":4302,\"code\":\"430211000000\",\"name\":\"天元区\"},{\"id\":\"430212\",\"pid\":4302,\"code\":\"430212000000\",\"name\":\"渌口区\"},{\"id\":\"430223\",\"pid\":4302,\"code\":\"430223000000\",\"name\":\"攸县\"},{\"id\":\"430224\",\"pid\":4302,\"code\":\"430224000000\",\"name\":\"茶陵县\"},{\"id\":\"430225\",\"pid\":4302,\"code\":\"430225000000\",\"name\":\"炎陵县\"},{\"id\":\"430281\",\"pid\":4302,\"code\":\"430281000000\",\"name\":\"醴陵市\"}]},{\"id\":\"4303\",\"pid\":43,\"code\":\"430300000000\",\"name\":\"湘潭市\",\"childs\":[{\"id\":\"430302\",\"pid\":4303,\"code\":\"430302000000\",\"name\":\"雨湖区\"},{\"id\":\"430304\",\"pid\":4303,\"code\":\"430304000000\",\"name\":\"岳塘区\"},{\"id\":\"430321\",\"pid\":4303,\"code\":\"430321000000\",\"name\":\"湘潭县\"},{\"id\":\"430381\",\"pid\":4303,\"code\":\"430381000000\",\"name\":\"湘乡市\"},{\"id\":\"430382\",\"pid\":4303,\"code\":\"430382000000\",\"name\":\"韶山市\"}]},{\"id\":\"4304\",\"pid\":43,\"code\":\"430400000000\",\"name\":\"衡阳市\",\"childs\":[{\"id\":\"430405\",\"pid\":4304,\"code\":\"430405000000\",\"name\":\"珠晖区\"},{\"id\":\"430406\",\"pid\":4304,\"code\":\"430406000000\",\"name\":\"雁峰区\"},{\"id\":\"430407\",\"pid\":4304,\"code\":\"430407000000\",\"name\":\"石鼓区\"},{\"id\":\"430408\",\"pid\":4304,\"code\":\"430408000000\",\"name\":\"蒸湘区\"},{\"id\":\"430412\",\"pid\":4304,\"code\":\"430412000000\",\"name\":\"南岳区\"},{\"id\":\"430421\",\"pid\":4304,\"code\":\"430421000000\",\"name\":\"衡阳县\"},{\"id\":\"430422\",\"pid\":4304,\"code\":\"430422000000\",\"name\":\"衡南县\"},{\"id\":\"430423\",\"pid\":4304,\"code\":\"430423000000\",\"name\":\"衡山县\"},{\"id\":\"430424\",\"pid\":4304,\"code\":\"430424000000\",\"name\":\"衡东县\"},{\"id\":\"430426\",\"pid\":4304,\"code\":\"430426000000\",\"name\":\"祁东县\"},{\"id\":\"430481\",\"pid\":4304,\"code\":\"430481000000\",\"name\":\"耒阳市\"},{\"id\":\"430482\",\"pid\":4304,\"code\":\"430482000000\",\"name\":\"常宁市\"}]},{\"id\":\"4305\",\"pid\":43,\"code\":\"430500000000\",\"name\":\"邵阳市\",\"childs\":[{\"id\":\"430502\",\"pid\":4305,\"code\":\"430502000000\",\"name\":\"双清区\"},{\"id\":\"430503\",\"pid\":4305,\"code\":\"430503000000\",\"name\":\"大祥区\"},{\"id\":\"430511\",\"pid\":4305,\"code\":\"430511000000\",\"name\":\"北塔区\"},{\"id\":\"430522\",\"pid\":4305,\"code\":\"430522000000\",\"name\":\"新邵县\"},{\"id\":\"430523\",\"pid\":4305,\"code\":\"430523000000\",\"name\":\"邵阳县\"},{\"id\":\"430524\",\"pid\":4305,\"code\":\"430524000000\",\"name\":\"隆回县\"},{\"id\":\"430525\",\"pid\":4305,\"code\":\"430525000000\",\"name\":\"洞口县\"},{\"id\":\"430527\",\"pid\":4305,\"code\":\"430527000000\",\"name\":\"绥宁县\"},{\"id\":\"430528\",\"pid\":4305,\"code\":\"430528000000\",\"name\":\"新宁县\"},{\"id\":\"430529\",\"pid\":4305,\"code\":\"430529000000\",\"name\":\"城步苗族自治县\"},{\"id\":\"430581\",\"pid\":4305,\"code\":\"430581000000\",\"name\":\"武冈市\"},{\"id\":\"430582\",\"pid\":4305,\"code\":\"430582000000\",\"name\":\"邵东市\"}]},{\"id\":\"4306\",\"pid\":43,\"code\":\"430600000000\",\"name\":\"岳阳市\",\"childs\":[{\"id\":\"430602\",\"pid\":4306,\"code\":\"430602000000\",\"name\":\"岳阳楼区\"},{\"id\":\"430603\",\"pid\":4306,\"code\":\"430603000000\",\"name\":\"云溪区\"},{\"id\":\"430611\",\"pid\":4306,\"code\":\"430611000000\",\"name\":\"君山区\"},{\"id\":\"430621\",\"pid\":4306,\"code\":\"430621000000\",\"name\":\"岳阳县\"},{\"id\":\"430623\",\"pid\":4306,\"code\":\"430623000000\",\"name\":\"华容县\"},{\"id\":\"430624\",\"pid\":4306,\"code\":\"430624000000\",\"name\":\"湘阴县\"},{\"id\":\"430626\",\"pid\":4306,\"code\":\"430626000000\",\"name\":\"平江县\"},{\"id\":\"430681\",\"pid\":4306,\"code\":\"430681000000\",\"name\":\"汨罗市\"},{\"id\":\"430682\",\"pid\":4306,\"code\":\"430682000000\",\"name\":\"临湘市\"}]},{\"id\":\"4307\",\"pid\":43,\"code\":\"430700000000\",\"name\":\"常德市\",\"childs\":[{\"id\":\"430702\",\"pid\":4307,\"code\":\"430702000000\",\"name\":\"武陵区\"},{\"id\":\"430703\",\"pid\":4307,\"code\":\"430703000000\",\"name\":\"鼎城区\"},{\"id\":\"430721\",\"pid\":4307,\"code\":\"430721000000\",\"name\":\"安乡县\"},{\"id\":\"430722\",\"pid\":4307,\"code\":\"430722000000\",\"name\":\"汉寿县\"},{\"id\":\"430723\",\"pid\":4307,\"code\":\"430723000000\",\"name\":\"澧县\"},{\"id\":\"430724\",\"pid\":4307,\"code\":\"430724000000\",\"name\":\"临澧县\"},{\"id\":\"430725\",\"pid\":4307,\"code\":\"430725000000\",\"name\":\"桃源县\"},{\"id\":\"430726\",\"pid\":4307,\"code\":\"430726000000\",\"name\":\"石门县\"},{\"id\":\"430781\",\"pid\":4307,\"code\":\"430781000000\",\"name\":\"津市市\"}]},{\"id\":\"4308\",\"pid\":43,\"code\":\"430800000000\",\"name\":\"张家界市\",\"childs\":[{\"id\":\"430802\",\"pid\":4308,\"code\":\"430802000000\",\"name\":\"永定区\"},{\"id\":\"430811\",\"pid\":4308,\"code\":\"430811000000\",\"name\":\"武陵源区\"},{\"id\":\"430821\",\"pid\":4308,\"code\":\"430821000000\",\"name\":\"慈利县\"},{\"id\":\"430822\",\"pid\":4308,\"code\":\"430822000000\",\"name\":\"桑植县\"}]},{\"id\":\"4309\",\"pid\":43,\"code\":\"430900000000\",\"name\":\"益阳市\",\"childs\":[{\"id\":\"430902\",\"pid\":4309,\"code\":\"430902000000\",\"name\":\"资阳区\"},{\"id\":\"430903\",\"pid\":4309,\"code\":\"430903000000\",\"name\":\"赫山区\"},{\"id\":\"430921\",\"pid\":4309,\"code\":\"430921000000\",\"name\":\"南县\"},{\"id\":\"430922\",\"pid\":4309,\"code\":\"430922000000\",\"name\":\"桃江县\"},{\"id\":\"430923\",\"pid\":4309,\"code\":\"430923000000\",\"name\":\"安化县\"},{\"id\":\"430981\",\"pid\":4309,\"code\":\"430981000000\",\"name\":\"沅江市\"}]},{\"id\":\"4310\",\"pid\":43,\"code\":\"431000000000\",\"name\":\"郴州市\",\"childs\":[{\"id\":\"431002\",\"pid\":4310,\"code\":\"431002000000\",\"name\":\"北湖区\"},{\"id\":\"431003\",\"pid\":4310,\"code\":\"431003000000\",\"name\":\"苏仙区\"},{\"id\":\"431021\",\"pid\":4310,\"code\":\"431021000000\",\"name\":\"桂阳县\"},{\"id\":\"431022\",\"pid\":4310,\"code\":\"431022000000\",\"name\":\"宜章县\"},{\"id\":\"431023\",\"pid\":4310,\"code\":\"431023000000\",\"name\":\"永兴县\"},{\"id\":\"431024\",\"pid\":4310,\"code\":\"431024000000\",\"name\":\"嘉禾县\"},{\"id\":\"431025\",\"pid\":4310,\"code\":\"431025000000\",\"name\":\"临武县\"},{\"id\":\"431026\",\"pid\":4310,\"code\":\"431026000000\",\"name\":\"汝城县\"},{\"id\":\"431027\",\"pid\":4310,\"code\":\"431027000000\",\"name\":\"桂东县\"},{\"id\":\"431028\",\"pid\":4310,\"code\":\"431028000000\",\"name\":\"安仁县\"},{\"id\":\"431081\",\"pid\":4310,\"code\":\"431081000000\",\"name\":\"资兴市\"}]},{\"id\":\"4311\",\"pid\":43,\"code\":\"431100000000\",\"name\":\"永州市\",\"childs\":[{\"id\":\"431102\",\"pid\":4311,\"code\":\"431102000000\",\"name\":\"零陵区\"},{\"id\":\"431103\",\"pid\":4311,\"code\":\"431103000000\",\"name\":\"冷水滩区\"},{\"id\":\"431122\",\"pid\":4311,\"code\":\"431122000000\",\"name\":\"东安县\"},{\"id\":\"431123\",\"pid\":4311,\"code\":\"431123000000\",\"name\":\"双牌县\"},{\"id\":\"431124\",\"pid\":4311,\"code\":\"431124000000\",\"name\":\"道县\"},{\"id\":\"431125\",\"pid\":4311,\"code\":\"431125000000\",\"name\":\"江永县\"},{\"id\":\"431126\",\"pid\":4311,\"code\":\"431126000000\",\"name\":\"宁远县\"},{\"id\":\"431127\",\"pid\":4311,\"code\":\"431127000000\",\"name\":\"蓝山县\"},{\"id\":\"431128\",\"pid\":4311,\"code\":\"431128000000\",\"name\":\"新田县\"},{\"id\":\"431129\",\"pid\":4311,\"code\":\"431129000000\",\"name\":\"江华瑶族自治县\"},{\"id\":\"431181\",\"pid\":4311,\"code\":\"431181000000\",\"name\":\"祁阳市\"}]},{\"id\":\"4312\",\"pid\":43,\"code\":\"431200000000\",\"name\":\"怀化市\",\"childs\":[{\"id\":\"431202\",\"pid\":4312,\"code\":\"431202000000\",\"name\":\"鹤城区\"},{\"id\":\"431221\",\"pid\":4312,\"code\":\"431221000000\",\"name\":\"中方县\"},{\"id\":\"431222\",\"pid\":4312,\"code\":\"431222000000\",\"name\":\"沅陵县\"},{\"id\":\"431223\",\"pid\":4312,\"code\":\"431223000000\",\"name\":\"辰溪县\"},{\"id\":\"431224\",\"pid\":4312,\"code\":\"431224000000\",\"name\":\"溆浦县\"},{\"id\":\"431225\",\"pid\":4312,\"code\":\"431225000000\",\"name\":\"会同县\"},{\"id\":\"431226\",\"pid\":4312,\"code\":\"431226000000\",\"name\":\"麻阳苗族自治县\"},{\"id\":\"431227\",\"pid\":4312,\"code\":\"431227000000\",\"name\":\"新晃侗族自治县\"},{\"id\":\"431228\",\"pid\":4312,\"code\":\"431228000000\",\"name\":\"芷江侗族自治县\"},{\"id\":\"431229\",\"pid\":4312,\"code\":\"431229000000\",\"name\":\"靖州苗族侗族自治县\"},{\"id\":\"431230\",\"pid\":4312,\"code\":\"431230000000\",\"name\":\"通道侗族自治县\"},{\"id\":\"431281\",\"pid\":4312,\"code\":\"431281000000\",\"name\":\"洪江市\"}]},{\"id\":\"4313\",\"pid\":43,\"code\":\"431300000000\",\"name\":\"娄底市\",\"childs\":[{\"id\":\"431302\",\"pid\":4313,\"code\":\"431302000000\",\"name\":\"娄星区\"},{\"id\":\"431321\",\"pid\":4313,\"code\":\"431321000000\",\"name\":\"双峰县\"},{\"id\":\"431322\",\"pid\":4313,\"code\":\"431322000000\",\"name\":\"新化县\"},{\"id\":\"431381\",\"pid\":4313,\"code\":\"431381000000\",\"name\":\"冷水江市\"},{\"id\":\"431382\",\"pid\":4313,\"code\":\"431382000000\",\"name\":\"涟源市\"}]},{\"id\":\"4331\",\"pid\":43,\"code\":\"433100000000\",\"name\":\"湘西土家族苗族自治州\",\"childs\":[{\"id\":\"433101\",\"pid\":4331,\"code\":\"433101000000\",\"name\":\"吉首市\"},{\"id\":\"433122\",\"pid\":4331,\"code\":\"433122000000\",\"name\":\"泸溪县\"},{\"id\":\"433123\",\"pid\":4331,\"code\":\"433123000000\",\"name\":\"凤凰县\"},{\"id\":\"433124\",\"pid\":4331,\"code\":\"433124000000\",\"name\":\"花垣县\"},{\"id\":\"433125\",\"pid\":4331,\"code\":\"433125000000\",\"name\":\"保靖县\"},{\"id\":\"433126\",\"pid\":4331,\"code\":\"433126000000\",\"name\":\"古丈县\"},{\"id\":\"433127\",\"pid\":4331,\"code\":\"433127000000\",\"name\":\"永顺县\"},{\"id\":\"433130\",\"pid\":4331,\"code\":\"433130000000\",\"name\":\"龙山县\"}]}]},{\"id\":\"44\",\"pid\":0,\"code\":\"440000000000\",\"name\":\"广东省\",\"childs\":[{\"id\":\"4401\",\"pid\":44,\"code\":\"440100000000\",\"name\":\"广州市\",\"childs\":[{\"id\":\"440103\",\"pid\":4401,\"code\":\"440103000000\",\"name\":\"荔湾区\"},{\"id\":\"440104\",\"pid\":4401,\"code\":\"440104000000\",\"name\":\"越秀区\"},{\"id\":\"440105\",\"pid\":4401,\"code\":\"440105000000\",\"name\":\"海珠区\"},{\"id\":\"440106\",\"pid\":4401,\"code\":\"440106000000\",\"name\":\"天河区\"},{\"id\":\"440111\",\"pid\":4401,\"code\":\"440111000000\",\"name\":\"白云区\"},{\"id\":\"440112\",\"pid\":4401,\"code\":\"440112000000\",\"name\":\"黄埔区\"},{\"id\":\"440113\",\"pid\":4401,\"code\":\"440113000000\",\"name\":\"番禺区\"},{\"id\":\"440114\",\"pid\":4401,\"code\":\"440114000000\",\"name\":\"花都区\"},{\"id\":\"440115\",\"pid\":4401,\"code\":\"440115000000\",\"name\":\"南沙区\"},{\"id\":\"440117\",\"pid\":4401,\"code\":\"440117000000\",\"name\":\"从化区\"},{\"id\":\"440118\",\"pid\":4401,\"code\":\"440118000000\",\"name\":\"增城区\"}]},{\"id\":\"4402\",\"pid\":44,\"code\":\"440200000000\",\"name\":\"韶关市\",\"childs\":[{\"id\":\"440203\",\"pid\":4402,\"code\":\"440203000000\",\"name\":\"武江区\"},{\"id\":\"440204\",\"pid\":4402,\"code\":\"440204000000\",\"name\":\"浈江区\"},{\"id\":\"440205\",\"pid\":4402,\"code\":\"440205000000\",\"name\":\"曲江区\"},{\"id\":\"440222\",\"pid\":4402,\"code\":\"440222000000\",\"name\":\"始兴县\"},{\"id\":\"440224\",\"pid\":4402,\"code\":\"440224000000\",\"name\":\"仁化县\"},{\"id\":\"440229\",\"pid\":4402,\"code\":\"440229000000\",\"name\":\"翁源县\"},{\"id\":\"440232\",\"pid\":4402,\"code\":\"440232000000\",\"name\":\"乳源瑶族自治县\"},{\"id\":\"440233\",\"pid\":4402,\"code\":\"440233000000\",\"name\":\"新丰县\"},{\"id\":\"440281\",\"pid\":4402,\"code\":\"440281000000\",\"name\":\"乐昌市\"},{\"id\":\"440282\",\"pid\":4402,\"code\":\"440282000000\",\"name\":\"南雄市\"}]},{\"id\":\"4403\",\"pid\":44,\"code\":\"440300000000\",\"name\":\"深圳市\",\"childs\":[{\"id\":\"440303\",\"pid\":4403,\"code\":\"440303000000\",\"name\":\"罗湖区\"},{\"id\":\"440304\",\"pid\":4403,\"code\":\"440304000000\",\"name\":\"福田区\"},{\"id\":\"440305\",\"pid\":4403,\"code\":\"440305000000\",\"name\":\"南山区\"},{\"id\":\"440306\",\"pid\":4403,\"code\":\"440306000000\",\"name\":\"宝安区\"},{\"id\":\"440307\",\"pid\":4403,\"code\":\"440307000000\",\"name\":\"龙岗区\"},{\"id\":\"440308\",\"pid\":4403,\"code\":\"440308000000\",\"name\":\"盐田区\"},{\"id\":\"440309\",\"pid\":4403,\"code\":\"440309000000\",\"name\":\"龙华区\"},{\"id\":\"440310\",\"pid\":4403,\"code\":\"440310000000\",\"name\":\"坪山区\"},{\"id\":\"440311\",\"pid\":4403,\"code\":\"440311000000\",\"name\":\"光明区\"}]},{\"id\":\"4404\",\"pid\":44,\"code\":\"440400000000\",\"name\":\"珠海市\",\"childs\":[{\"id\":\"440402\",\"pid\":4404,\"code\":\"440402000000\",\"name\":\"香洲区\"},{\"id\":\"440403\",\"pid\":4404,\"code\":\"440403000000\",\"name\":\"斗门区\"},{\"id\":\"440404\",\"pid\":4404,\"code\":\"440404000000\",\"name\":\"金湾区\"}]},{\"id\":\"4405\",\"pid\":44,\"code\":\"440500000000\",\"name\":\"汕头市\",\"childs\":[{\"id\":\"440507\",\"pid\":4405,\"code\":\"440507000000\",\"name\":\"龙湖区\"},{\"id\":\"440511\",\"pid\":4405,\"code\":\"440511000000\",\"name\":\"金平区\"},{\"id\":\"440512\",\"pid\":4405,\"code\":\"440512000000\",\"name\":\"濠江区\"},{\"id\":\"440513\",\"pid\":4405,\"code\":\"440513000000\",\"name\":\"潮阳区\"},{\"id\":\"440514\",\"pid\":4405,\"code\":\"440514000000\",\"name\":\"潮南区\"},{\"id\":\"440515\",\"pid\":4405,\"code\":\"440515000000\",\"name\":\"澄海区\"},{\"id\":\"440523\",\"pid\":4405,\"code\":\"440523000000\",\"name\":\"南澳县\"}]},{\"id\":\"4406\",\"pid\":44,\"code\":\"440600000000\",\"name\":\"佛山市\",\"childs\":[{\"id\":\"440604\",\"pid\":4406,\"code\":\"440604000000\",\"name\":\"禅城区\"},{\"id\":\"440605\",\"pid\":4406,\"code\":\"440605000000\",\"name\":\"南海区\"},{\"id\":\"440606\",\"pid\":4406,\"code\":\"440606000000\",\"name\":\"顺德区\"},{\"id\":\"440607\",\"pid\":4406,\"code\":\"440607000000\",\"name\":\"三水区\"},{\"id\":\"440608\",\"pid\":4406,\"code\":\"440608000000\",\"name\":\"高明区\"}]},{\"id\":\"4407\",\"pid\":44,\"code\":\"440700000000\",\"name\":\"江门市\",\"childs\":[{\"id\":\"440703\",\"pid\":4407,\"code\":\"440703000000\",\"name\":\"蓬江区\"},{\"id\":\"440704\",\"pid\":4407,\"code\":\"440704000000\",\"name\":\"江海区\"},{\"id\":\"440705\",\"pid\":4407,\"code\":\"440705000000\",\"name\":\"新会区\"},{\"id\":\"440781\",\"pid\":4407,\"code\":\"440781000000\",\"name\":\"台山市\"},{\"id\":\"440783\",\"pid\":4407,\"code\":\"440783000000\",\"name\":\"开平市\"},{\"id\":\"440784\",\"pid\":4407,\"code\":\"440784000000\",\"name\":\"鹤山市\"},{\"id\":\"440785\",\"pid\":4407,\"code\":\"440785000000\",\"name\":\"恩平市\"}]},{\"id\":\"4408\",\"pid\":44,\"code\":\"440800000000\",\"name\":\"湛江市\",\"childs\":[{\"id\":\"440802\",\"pid\":4408,\"code\":\"440802000000\",\"name\":\"赤坎区\"},{\"id\":\"440803\",\"pid\":4408,\"code\":\"440803000000\",\"name\":\"霞山区\"},{\"id\":\"440804\",\"pid\":4408,\"code\":\"440804000000\",\"name\":\"坡头区\"},{\"id\":\"440811\",\"pid\":4408,\"code\":\"440811000000\",\"name\":\"麻章区\"},{\"id\":\"440823\",\"pid\":4408,\"code\":\"440823000000\",\"name\":\"遂溪县\"},{\"id\":\"440825\",\"pid\":4408,\"code\":\"440825000000\",\"name\":\"徐闻县\"},{\"id\":\"440881\",\"pid\":4408,\"code\":\"440881000000\",\"name\":\"廉江市\"},{\"id\":\"440882\",\"pid\":4408,\"code\":\"440882000000\",\"name\":\"雷州市\"},{\"id\":\"440883\",\"pid\":4408,\"code\":\"440883000000\",\"name\":\"吴川市\"}]},{\"id\":\"4409\",\"pid\":44,\"code\":\"440900000000\",\"name\":\"茂名市\",\"childs\":[{\"id\":\"440902\",\"pid\":4409,\"code\":\"440902000000\",\"name\":\"茂南区\"},{\"id\":\"440904\",\"pid\":4409,\"code\":\"440904000000\",\"name\":\"电白区\"},{\"id\":\"440981\",\"pid\":4409,\"code\":\"440981000000\",\"name\":\"高州市\"},{\"id\":\"440982\",\"pid\":4409,\"code\":\"440982000000\",\"name\":\"化州市\"},{\"id\":\"440983\",\"pid\":4409,\"code\":\"440983000000\",\"name\":\"信宜市\"}]},{\"id\":\"4412\",\"pid\":44,\"code\":\"441200000000\",\"name\":\"肇庆市\",\"childs\":[{\"id\":\"441202\",\"pid\":4412,\"code\":\"441202000000\",\"name\":\"端州区\"},{\"id\":\"441203\",\"pid\":4412,\"code\":\"441203000000\",\"name\":\"鼎湖区\"},{\"id\":\"441204\",\"pid\":4412,\"code\":\"441204000000\",\"name\":\"高要区\"},{\"id\":\"441223\",\"pid\":4412,\"code\":\"441223000000\",\"name\":\"广宁县\"},{\"id\":\"441224\",\"pid\":4412,\"code\":\"441224000000\",\"name\":\"怀集县\"},{\"id\":\"441225\",\"pid\":4412,\"code\":\"441225000000\",\"name\":\"封开县\"},{\"id\":\"441226\",\"pid\":4412,\"code\":\"441226000000\",\"name\":\"德庆县\"},{\"id\":\"441284\",\"pid\":4412,\"code\":\"441284000000\",\"name\":\"四会市\"}]},{\"id\":\"4413\",\"pid\":44,\"code\":\"441300000000\",\"name\":\"惠州市\",\"childs\":[{\"id\":\"441302\",\"pid\":4413,\"code\":\"441302000000\",\"name\":\"惠城区\"},{\"id\":\"441303\",\"pid\":4413,\"code\":\"441303000000\",\"name\":\"惠阳区\"},{\"id\":\"441322\",\"pid\":4413,\"code\":\"441322000000\",\"name\":\"博罗县\"},{\"id\":\"441323\",\"pid\":4413,\"code\":\"441323000000\",\"name\":\"惠东县\"},{\"id\":\"441324\",\"pid\":4413,\"code\":\"441324000000\",\"name\":\"龙门县\"}]},{\"id\":\"4414\",\"pid\":44,\"code\":\"441400000000\",\"name\":\"梅州市\",\"childs\":[{\"id\":\"441402\",\"pid\":4414,\"code\":\"441402000000\",\"name\":\"梅江区\"},{\"id\":\"441403\",\"pid\":4414,\"code\":\"441403000000\",\"name\":\"梅县区\"},{\"id\":\"441422\",\"pid\":4414,\"code\":\"441422000000\",\"name\":\"大埔县\"},{\"id\":\"441423\",\"pid\":4414,\"code\":\"441423000000\",\"name\":\"丰顺县\"},{\"id\":\"441424\",\"pid\":4414,\"code\":\"441424000000\",\"name\":\"五华县\"},{\"id\":\"441426\",\"pid\":4414,\"code\":\"441426000000\",\"name\":\"平远县\"},{\"id\":\"441427\",\"pid\":4414,\"code\":\"441427000000\",\"name\":\"蕉岭县\"},{\"id\":\"441481\",\"pid\":4414,\"code\":\"441481000000\",\"name\":\"兴宁市\"}]},{\"id\":\"4415\",\"pid\":44,\"code\":\"441500000000\",\"name\":\"汕尾市\",\"childs\":[{\"id\":\"441502\",\"pid\":4415,\"code\":\"441502000000\",\"name\":\"城区\"},{\"id\":\"441521\",\"pid\":4415,\"code\":\"441521000000\",\"name\":\"海丰县\"},{\"id\":\"441523\",\"pid\":4415,\"code\":\"441523000000\",\"name\":\"陆河县\"},{\"id\":\"441581\",\"pid\":4415,\"code\":\"441581000000\",\"name\":\"陆丰市\"}]},{\"id\":\"4416\",\"pid\":44,\"code\":\"441600000000\",\"name\":\"河源市\",\"childs\":[{\"id\":\"441602\",\"pid\":4416,\"code\":\"441602000000\",\"name\":\"源城区\"},{\"id\":\"441621\",\"pid\":4416,\"code\":\"441621000000\",\"name\":\"紫金县\"},{\"id\":\"441622\",\"pid\":4416,\"code\":\"441622000000\",\"name\":\"龙川县\"},{\"id\":\"441623\",\"pid\":4416,\"code\":\"441623000000\",\"name\":\"连平县\"},{\"id\":\"441624\",\"pid\":4416,\"code\":\"441624000000\",\"name\":\"和平县\"},{\"id\":\"441625\",\"pid\":4416,\"code\":\"441625000000\",\"name\":\"东源县\"}]},{\"id\":\"4417\",\"pid\":44,\"code\":\"441700000000\",\"name\":\"阳江市\",\"childs\":[{\"id\":\"441702\",\"pid\":4417,\"code\":\"441702000000\",\"name\":\"江城区\"},{\"id\":\"441704\",\"pid\":4417,\"code\":\"441704000000\",\"name\":\"阳东区\"},{\"id\":\"441721\",\"pid\":4417,\"code\":\"441721000000\",\"name\":\"阳西县\"},{\"id\":\"441781\",\"pid\":4417,\"code\":\"441781000000\",\"name\":\"阳春市\"}]},{\"id\":\"4418\",\"pid\":44,\"code\":\"441800000000\",\"name\":\"清远市\",\"childs\":[{\"id\":\"441802\",\"pid\":4418,\"code\":\"441802000000\",\"name\":\"清城区\"},{\"id\":\"441803\",\"pid\":4418,\"code\":\"441803000000\",\"name\":\"清新区\"},{\"id\":\"441821\",\"pid\":4418,\"code\":\"441821000000\",\"name\":\"佛冈县\"},{\"id\":\"441823\",\"pid\":4418,\"code\":\"441823000000\",\"name\":\"阳山县\"},{\"id\":\"441825\",\"pid\":4418,\"code\":\"441825000000\",\"name\":\"连山壮族瑶族自治县\"},{\"id\":\"441826\",\"pid\":4418,\"code\":\"441826000000\",\"name\":\"连南瑶族自治县\"},{\"id\":\"441881\",\"pid\":4418,\"code\":\"441881000000\",\"name\":\"英德市\"},{\"id\":\"441882\",\"pid\":4418,\"code\":\"441882000000\",\"name\":\"连州市\"}]},{\"id\":\"4419\",\"pid\":44,\"code\":\"441900000000\",\"name\":\"东莞市\",\"childs\":[{\"id\":\"441900\",\"pid\":4419,\"code\":\"441900000000\",\"name\":\"东莞市\"}]},{\"id\":\"4420\",\"pid\":44,\"code\":\"442000000000\",\"name\":\"中山市\",\"childs\":[{\"id\":\"442000\",\"pid\":4420,\"code\":\"442000000000\",\"name\":\"中山市\"}]},{\"id\":\"4451\",\"pid\":44,\"code\":\"445100000000\",\"name\":\"潮州市\",\"childs\":[{\"id\":\"445102\",\"pid\":4451,\"code\":\"445102000000\",\"name\":\"湘桥区\"},{\"id\":\"445103\",\"pid\":4451,\"code\":\"445103000000\",\"name\":\"潮安区\"},{\"id\":\"445122\",\"pid\":4451,\"code\":\"445122000000\",\"name\":\"饶平县\"}]},{\"id\":\"4452\",\"pid\":44,\"code\":\"445200000000\",\"name\":\"揭阳市\",\"childs\":[{\"id\":\"445202\",\"pid\":4452,\"code\":\"445202000000\",\"name\":\"榕城区\"},{\"id\":\"445203\",\"pid\":4452,\"code\":\"445203000000\",\"name\":\"揭东区\"},{\"id\":\"445222\",\"pid\":4452,\"code\":\"445222000000\",\"name\":\"揭西县\"},{\"id\":\"445224\",\"pid\":4452,\"code\":\"445224000000\",\"name\":\"惠来县\"},{\"id\":\"445281\",\"pid\":4452,\"code\":\"445281000000\",\"name\":\"普宁市\"}]},{\"id\":\"4453\",\"pid\":44,\"code\":\"445300000000\",\"name\":\"云浮市\",\"childs\":[{\"id\":\"445302\",\"pid\":4453,\"code\":\"445302000000\",\"name\":\"云城区\"},{\"id\":\"445303\",\"pid\":4453,\"code\":\"445303000000\",\"name\":\"云安区\"},{\"id\":\"445321\",\"pid\":4453,\"code\":\"445321000000\",\"name\":\"新兴县\"},{\"id\":\"445322\",\"pid\":4453,\"code\":\"445322000000\",\"name\":\"郁南县\"},{\"id\":\"445381\",\"pid\":4453,\"code\":\"445381000000\",\"name\":\"罗定市\"}]}]},{\"id\":\"45\",\"pid\":0,\"code\":\"450000000000\",\"name\":\"广西壮族自治区\",\"childs\":[{\"id\":\"4501\",\"pid\":45,\"code\":\"450100000000\",\"name\":\"南宁市\",\"childs\":[{\"id\":\"450102\",\"pid\":4501,\"code\":\"450102000000\",\"name\":\"兴宁区\"},{\"id\":\"450103\",\"pid\":4501,\"code\":\"450103000000\",\"name\":\"青秀区\"},{\"id\":\"450105\",\"pid\":4501,\"code\":\"450105000000\",\"name\":\"江南区\"},{\"id\":\"450107\",\"pid\":4501,\"code\":\"450107000000\",\"name\":\"西乡塘区\"},{\"id\":\"450108\",\"pid\":4501,\"code\":\"450108000000\",\"name\":\"良庆区\"},{\"id\":\"450109\",\"pid\":4501,\"code\":\"450109000000\",\"name\":\"邕宁区\"},{\"id\":\"450110\",\"pid\":4501,\"code\":\"450110000000\",\"name\":\"武鸣区\"},{\"id\":\"450123\",\"pid\":4501,\"code\":\"450123000000\",\"name\":\"隆安县\"},{\"id\":\"450124\",\"pid\":4501,\"code\":\"450124000000\",\"name\":\"马山县\"},{\"id\":\"450125\",\"pid\":4501,\"code\":\"450125000000\",\"name\":\"上林县\"},{\"id\":\"450126\",\"pid\":4501,\"code\":\"450126000000\",\"name\":\"宾阳县\"},{\"id\":\"450181\",\"pid\":4501,\"code\":\"450181000000\",\"name\":\"横州市\"}]},{\"id\":\"4502\",\"pid\":45,\"code\":\"450200000000\",\"name\":\"柳州市\",\"childs\":[{\"id\":\"450202\",\"pid\":4502,\"code\":\"450202000000\",\"name\":\"城中区\"},{\"id\":\"450203\",\"pid\":4502,\"code\":\"450203000000\",\"name\":\"鱼峰区\"},{\"id\":\"450204\",\"pid\":4502,\"code\":\"450204000000\",\"name\":\"柳南区\"},{\"id\":\"450205\",\"pid\":4502,\"code\":\"450205000000\",\"name\":\"柳北区\"},{\"id\":\"450206\",\"pid\":4502,\"code\":\"450206000000\",\"name\":\"柳江区\"},{\"id\":\"450222\",\"pid\":4502,\"code\":\"450222000000\",\"name\":\"柳城县\"},{\"id\":\"450223\",\"pid\":4502,\"code\":\"450223000000\",\"name\":\"鹿寨县\"},{\"id\":\"450224\",\"pid\":4502,\"code\":\"450224000000\",\"name\":\"融安县\"},{\"id\":\"450225\",\"pid\":4502,\"code\":\"450225000000\",\"name\":\"融水苗族自治县\"},{\"id\":\"450226\",\"pid\":4502,\"code\":\"450226000000\",\"name\":\"三江侗族自治县\"}]},{\"id\":\"4503\",\"pid\":45,\"code\":\"450300000000\",\"name\":\"桂林市\",\"childs\":[{\"id\":\"450302\",\"pid\":4503,\"code\":\"450302000000\",\"name\":\"秀峰区\"},{\"id\":\"450303\",\"pid\":4503,\"code\":\"450303000000\",\"name\":\"叠彩区\"},{\"id\":\"450304\",\"pid\":4503,\"code\":\"450304000000\",\"name\":\"象山区\"},{\"id\":\"450305\",\"pid\":4503,\"code\":\"450305000000\",\"name\":\"七星区\"},{\"id\":\"450311\",\"pid\":4503,\"code\":\"450311000000\",\"name\":\"雁山区\"},{\"id\":\"450312\",\"pid\":4503,\"code\":\"450312000000\",\"name\":\"临桂区\"},{\"id\":\"450321\",\"pid\":4503,\"code\":\"450321000000\",\"name\":\"阳朔县\"},{\"id\":\"450323\",\"pid\":4503,\"code\":\"450323000000\",\"name\":\"灵川县\"},{\"id\":\"450324\",\"pid\":4503,\"code\":\"450324000000\",\"name\":\"全州县\"},{\"id\":\"450325\",\"pid\":4503,\"code\":\"450325000000\",\"name\":\"兴安县\"},{\"id\":\"450326\",\"pid\":4503,\"code\":\"450326000000\",\"name\":\"永福县\"},{\"id\":\"450327\",\"pid\":4503,\"code\":\"450327000000\",\"name\":\"灌阳县\"},{\"id\":\"450328\",\"pid\":4503,\"code\":\"450328000000\",\"name\":\"龙胜各族自治县\"},{\"id\":\"450329\",\"pid\":4503,\"code\":\"450329000000\",\"name\":\"资源县\"},{\"id\":\"450330\",\"pid\":4503,\"code\":\"450330000000\",\"name\":\"平乐县\"},{\"id\":\"450332\",\"pid\":4503,\"code\":\"450332000000\",\"name\":\"恭城瑶族自治县\"},{\"id\":\"450381\",\"pid\":4503,\"code\":\"450381000000\",\"name\":\"荔浦市\"}]},{\"id\":\"4504\",\"pid\":45,\"code\":\"450400000000\",\"name\":\"梧州市\",\"childs\":[{\"id\":\"450403\",\"pid\":4504,\"code\":\"450403000000\",\"name\":\"万秀区\"},{\"id\":\"450405\",\"pid\":4504,\"code\":\"450405000000\",\"name\":\"长洲区\"},{\"id\":\"450406\",\"pid\":4504,\"code\":\"450406000000\",\"name\":\"龙圩区\"},{\"id\":\"450421\",\"pid\":4504,\"code\":\"450421000000\",\"name\":\"苍梧县\"},{\"id\":\"450422\",\"pid\":4504,\"code\":\"450422000000\",\"name\":\"藤县\"},{\"id\":\"450423\",\"pid\":4504,\"code\":\"450423000000\",\"name\":\"蒙山县\"},{\"id\":\"450481\",\"pid\":4504,\"code\":\"450481000000\",\"name\":\"岑溪市\"}]},{\"id\":\"4505\",\"pid\":45,\"code\":\"450500000000\",\"name\":\"北海市\",\"childs\":[{\"id\":\"450502\",\"pid\":4505,\"code\":\"450502000000\",\"name\":\"海城区\"},{\"id\":\"450503\",\"pid\":4505,\"code\":\"450503000000\",\"name\":\"银海区\"},{\"id\":\"450512\",\"pid\":4505,\"code\":\"450512000000\",\"name\":\"铁山港区\"},{\"id\":\"450521\",\"pid\":4505,\"code\":\"450521000000\",\"name\":\"合浦县\"}]},{\"id\":\"4506\",\"pid\":45,\"code\":\"450600000000\",\"name\":\"防城港市\",\"childs\":[{\"id\":\"450602\",\"pid\":4506,\"code\":\"450602000000\",\"name\":\"港口区\"},{\"id\":\"450603\",\"pid\":4506,\"code\":\"450603000000\",\"name\":\"防城区\"},{\"id\":\"450621\",\"pid\":4506,\"code\":\"450621000000\",\"name\":\"上思县\"},{\"id\":\"450681\",\"pid\":4506,\"code\":\"450681000000\",\"name\":\"东兴市\"}]},{\"id\":\"4507\",\"pid\":45,\"code\":\"450700000000\",\"name\":\"钦州市\",\"childs\":[{\"id\":\"450702\",\"pid\":4507,\"code\":\"450702000000\",\"name\":\"钦南区\"},{\"id\":\"450703\",\"pid\":4507,\"code\":\"450703000000\",\"name\":\"钦北区\"},{\"id\":\"450721\",\"pid\":4507,\"code\":\"450721000000\",\"name\":\"灵山县\"},{\"id\":\"450722\",\"pid\":4507,\"code\":\"450722000000\",\"name\":\"浦北县\"}]},{\"id\":\"4508\",\"pid\":45,\"code\":\"450800000000\",\"name\":\"贵港市\",\"childs\":[{\"id\":\"450802\",\"pid\":4508,\"code\":\"450802000000\",\"name\":\"港北区\"},{\"id\":\"450803\",\"pid\":4508,\"code\":\"450803000000\",\"name\":\"港南区\"},{\"id\":\"450804\",\"pid\":4508,\"code\":\"450804000000\",\"name\":\"覃塘区\"},{\"id\":\"450821\",\"pid\":4508,\"code\":\"450821000000\",\"name\":\"平南县\"},{\"id\":\"450881\",\"pid\":4508,\"code\":\"450881000000\",\"name\":\"桂平市\"}]},{\"id\":\"4509\",\"pid\":45,\"code\":\"450900000000\",\"name\":\"玉林市\",\"childs\":[{\"id\":\"450902\",\"pid\":4509,\"code\":\"450902000000\",\"name\":\"玉州区\"},{\"id\":\"450903\",\"pid\":4509,\"code\":\"450903000000\",\"name\":\"福绵区\"},{\"id\":\"450921\",\"pid\":4509,\"code\":\"450921000000\",\"name\":\"容县\"},{\"id\":\"450922\",\"pid\":4509,\"code\":\"450922000000\",\"name\":\"陆川县\"},{\"id\":\"450923\",\"pid\":4509,\"code\":\"450923000000\",\"name\":\"博白县\"},{\"id\":\"450924\",\"pid\":4509,\"code\":\"450924000000\",\"name\":\"兴业县\"},{\"id\":\"450981\",\"pid\":4509,\"code\":\"450981000000\",\"name\":\"北流市\"}]},{\"id\":\"4510\",\"pid\":45,\"code\":\"451000000000\",\"name\":\"百色市\",\"childs\":[{\"id\":\"451002\",\"pid\":4510,\"code\":\"451002000000\",\"name\":\"右江区\"},{\"id\":\"451003\",\"pid\":4510,\"code\":\"451003000000\",\"name\":\"田阳区\"},{\"id\":\"451022\",\"pid\":4510,\"code\":\"451022000000\",\"name\":\"田东县\"},{\"id\":\"451024\",\"pid\":4510,\"code\":\"451024000000\",\"name\":\"德保县\"},{\"id\":\"451026\",\"pid\":4510,\"code\":\"451026000000\",\"name\":\"那坡县\"},{\"id\":\"451027\",\"pid\":4510,\"code\":\"451027000000\",\"name\":\"凌云县\"},{\"id\":\"451028\",\"pid\":4510,\"code\":\"451028000000\",\"name\":\"乐业县\"},{\"id\":\"451029\",\"pid\":4510,\"code\":\"451029000000\",\"name\":\"田林县\"},{\"id\":\"451030\",\"pid\":4510,\"code\":\"451030000000\",\"name\":\"西林县\"},{\"id\":\"451031\",\"pid\":4510,\"code\":\"451031000000\",\"name\":\"隆林各族自治县\"},{\"id\":\"451081\",\"pid\":4510,\"code\":\"451081000000\",\"name\":\"靖西市\"},{\"id\":\"451082\",\"pid\":4510,\"code\":\"451082000000\",\"name\":\"平果市\"}]},{\"id\":\"4511\",\"pid\":45,\"code\":\"451100000000\",\"name\":\"贺州市\",\"childs\":[{\"id\":\"451102\",\"pid\":4511,\"code\":\"451102000000\",\"name\":\"八步区\"},{\"id\":\"451103\",\"pid\":4511,\"code\":\"451103000000\",\"name\":\"平桂区\"},{\"id\":\"451121\",\"pid\":4511,\"code\":\"451121000000\",\"name\":\"昭平县\"},{\"id\":\"451122\",\"pid\":4511,\"code\":\"451122000000\",\"name\":\"钟山县\"},{\"id\":\"451123\",\"pid\":4511,\"code\":\"451123000000\",\"name\":\"富川瑶族自治县\"}]},{\"id\":\"4512\",\"pid\":45,\"code\":\"451200000000\",\"name\":\"河池市\",\"childs\":[{\"id\":\"451202\",\"pid\":4512,\"code\":\"451202000000\",\"name\":\"金城江区\"},{\"id\":\"451203\",\"pid\":4512,\"code\":\"451203000000\",\"name\":\"宜州区\"},{\"id\":\"451221\",\"pid\":4512,\"code\":\"451221000000\",\"name\":\"南丹县\"},{\"id\":\"451222\",\"pid\":4512,\"code\":\"451222000000\",\"name\":\"天峨县\"},{\"id\":\"451223\",\"pid\":4512,\"code\":\"451223000000\",\"name\":\"凤山县\"},{\"id\":\"451224\",\"pid\":4512,\"code\":\"451224000000\",\"name\":\"东兰县\"},{\"id\":\"451225\",\"pid\":4512,\"code\":\"451225000000\",\"name\":\"罗城仫佬族自治县\"},{\"id\":\"451226\",\"pid\":4512,\"code\":\"451226000000\",\"name\":\"环江毛南族自治县\"},{\"id\":\"451227\",\"pid\":4512,\"code\":\"451227000000\",\"name\":\"巴马瑶族自治县\"},{\"id\":\"451228\",\"pid\":4512,\"code\":\"451228000000\",\"name\":\"都安瑶族自治县\"},{\"id\":\"451229\",\"pid\":4512,\"code\":\"451229000000\",\"name\":\"大化瑶族自治县\"}]},{\"id\":\"4513\",\"pid\":45,\"code\":\"451300000000\",\"name\":\"来宾市\",\"childs\":[{\"id\":\"451302\",\"pid\":4513,\"code\":\"451302000000\",\"name\":\"兴宾区\"},{\"id\":\"451321\",\"pid\":4513,\"code\":\"451321000000\",\"name\":\"忻城县\"},{\"id\":\"451322\",\"pid\":4513,\"code\":\"451322000000\",\"name\":\"象州县\"},{\"id\":\"451323\",\"pid\":4513,\"code\":\"451323000000\",\"name\":\"武宣县\"},{\"id\":\"451324\",\"pid\":4513,\"code\":\"451324000000\",\"name\":\"金秀瑶族自治县\"},{\"id\":\"451381\",\"pid\":4513,\"code\":\"451381000000\",\"name\":\"合山市\"}]},{\"id\":\"4514\",\"pid\":45,\"code\":\"451400000000\",\"name\":\"崇左市\",\"childs\":[{\"id\":\"451402\",\"pid\":4514,\"code\":\"451402000000\",\"name\":\"江州区\"},{\"id\":\"451421\",\"pid\":4514,\"code\":\"451421000000\",\"name\":\"扶绥县\"},{\"id\":\"451422\",\"pid\":4514,\"code\":\"451422000000\",\"name\":\"宁明县\"},{\"id\":\"451423\",\"pid\":4514,\"code\":\"451423000000\",\"name\":\"龙州县\"},{\"id\":\"451424\",\"pid\":4514,\"code\":\"451424000000\",\"name\":\"大新县\"},{\"id\":\"451425\",\"pid\":4514,\"code\":\"451425000000\",\"name\":\"天等县\"},{\"id\":\"451481\",\"pid\":4514,\"code\":\"451481000000\",\"name\":\"凭祥市\"}]}]},{\"id\":\"46\",\"pid\":0,\"code\":\"460000000000\",\"name\":\"海南省\",\"childs\":[{\"id\":\"4601\",\"pid\":46,\"code\":\"460100000000\",\"name\":\"海口市\",\"childs\":[{\"id\":\"460105\",\"pid\":4601,\"code\":\"460105000000\",\"name\":\"秀英区\"},{\"id\":\"460106\",\"pid\":4601,\"code\":\"460106000000\",\"name\":\"龙华区\"},{\"id\":\"460107\",\"pid\":4601,\"code\":\"460107000000\",\"name\":\"琼山区\"},{\"id\":\"460108\",\"pid\":4601,\"code\":\"460108000000\",\"name\":\"美兰区\"}]},{\"id\":\"4602\",\"pid\":46,\"code\":\"460200000000\",\"name\":\"三亚市\",\"childs\":[{\"id\":\"460202\",\"pid\":4602,\"code\":\"460202000000\",\"name\":\"海棠区\"},{\"id\":\"460203\",\"pid\":4602,\"code\":\"460203000000\",\"name\":\"吉阳区\"},{\"id\":\"460204\",\"pid\":4602,\"code\":\"460204000000\",\"name\":\"天涯区\"},{\"id\":\"460205\",\"pid\":4602,\"code\":\"460205000000\",\"name\":\"崖州区\"}]},{\"id\":\"4603\",\"pid\":46,\"code\":\"460300000000\",\"name\":\"三沙市\",\"childs\":[{\"id\":\"460301\",\"pid\":4603,\"code\":\"460301000000\",\"name\":\"西沙区\"},{\"id\":\"460302\",\"pid\":4603,\"code\":\"460302000000\",\"name\":\"南沙区\"}]},{\"id\":\"4604\",\"pid\":46,\"code\":\"460400000000\",\"name\":\"儋州市\",\"childs\":[{\"id\":\"460400\",\"pid\":4604,\"code\":\"460400000000\",\"name\":\"儋州市\"}]},{\"id\":\"469001\",\"pid\":46,\"code\":\"469001000000\",\"name\":\"五指山市\",\"childs\":[{\"id\":\"469001000\",\"pid\":469001,\"code\":\"469001000000\",\"name\":\"五指山市\"}]},{\"id\":\"469002\",\"pid\":46,\"code\":\"469002000000\",\"name\":\"琼海市\",\"childs\":[{\"id\":\"469002000\",\"pid\":469002,\"code\":\"469002000000\",\"name\":\"琼海市\"}]},{\"id\":\"469005\",\"pid\":46,\"code\":\"469005000000\",\"name\":\"文昌市\",\"childs\":[{\"id\":\"469005000\",\"pid\":469005,\"code\":\"469005000000\",\"name\":\"文昌市\"}]},{\"id\":\"469006\",\"pid\":46,\"code\":\"469006000000\",\"name\":\"万宁市\",\"childs\":[{\"id\":\"469006000\",\"pid\":469006,\"code\":\"469006000000\",\"name\":\"万宁市\"}]},{\"id\":\"469007\",\"pid\":46,\"code\":\"469007000000\",\"name\":\"东方市\",\"childs\":[{\"id\":\"469007000\",\"pid\":469007,\"code\":\"469007000000\",\"name\":\"东方市\"}]},{\"id\":\"469021\",\"pid\":46,\"code\":\"469021000000\",\"name\":\"定安县\",\"childs\":[{\"id\":\"469021000\",\"pid\":469021,\"code\":\"469021000000\",\"name\":\"定安县\"}]},{\"id\":\"469022\",\"pid\":46,\"code\":\"469022000000\",\"name\":\"屯昌县\",\"childs\":[{\"id\":\"469022000\",\"pid\":469022,\"code\":\"469022000000\",\"name\":\"屯昌县\"}]},{\"id\":\"469023\",\"pid\":46,\"code\":\"469023000000\",\"name\":\"澄迈县\",\"childs\":[{\"id\":\"469023000\",\"pid\":469023,\"code\":\"469023000000\",\"name\":\"澄迈县\"}]},{\"id\":\"469024\",\"pid\":46,\"code\":\"469024000000\",\"name\":\"临高县\",\"childs\":[{\"id\":\"469024000\",\"pid\":469024,\"code\":\"469024000000\",\"name\":\"临高县\"}]},{\"id\":\"469025\",\"pid\":46,\"code\":\"469025000000\",\"name\":\"白沙黎族自治县\",\"childs\":[{\"id\":\"469025000\",\"pid\":469025,\"code\":\"469025000000\",\"name\":\"白沙黎族自治县\"}]},{\"id\":\"469026\",\"pid\":46,\"code\":\"469026000000\",\"name\":\"昌江黎族自治县\",\"childs\":[{\"id\":\"469026000\",\"pid\":469026,\"code\":\"469026000000\",\"name\":\"昌江黎族自治县\"}]},{\"id\":\"469027\",\"pid\":46,\"code\":\"469027000000\",\"name\":\"乐东黎族自治县\",\"childs\":[{\"id\":\"469027000\",\"pid\":469027,\"code\":\"469027000000\",\"name\":\"乐东黎族自治县\"}]},{\"id\":\"469028\",\"pid\":46,\"code\":\"469028000000\",\"name\":\"陵水黎族自治县\",\"childs\":[{\"id\":\"469028000\",\"pid\":469028,\"code\":\"469028000000\",\"name\":\"陵水黎族自治县\"}]},{\"id\":\"469029\",\"pid\":46,\"code\":\"469029000000\",\"name\":\"保亭黎族苗族自治县\",\"childs\":[{\"id\":\"469029000\",\"pid\":469029,\"code\":\"469029000000\",\"name\":\"保亭黎族苗族自治县\"}]},{\"id\":\"469030\",\"pid\":46,\"code\":\"469030000000\",\"name\":\"琼中黎族苗族自治县\",\"childs\":[{\"id\":\"469030000\",\"pid\":469030,\"code\":\"469030000000\",\"name\":\"琼中黎族苗族自治县\"}]}]},{\"id\":\"50\",\"pid\":0,\"code\":\"500000000000\",\"name\":\"重庆市\",\"childs\":[{\"id\":\"5001\",\"pid\":50,\"code\":\"500100000000\",\"name\":\"重庆城区\",\"childs\":[{\"id\":\"500101\",\"pid\":5001,\"code\":\"500101000000\",\"name\":\"万州区\"},{\"id\":\"500102\",\"pid\":5001,\"code\":\"500102000000\",\"name\":\"涪陵区\"},{\"id\":\"500103\",\"pid\":5001,\"code\":\"500103000000\",\"name\":\"渝中区\"},{\"id\":\"500104\",\"pid\":5001,\"code\":\"500104000000\",\"name\":\"大渡口区\"},{\"id\":\"500105\",\"pid\":5001,\"code\":\"500105000000\",\"name\":\"江北区\"},{\"id\":\"500106\",\"pid\":5001,\"code\":\"500106000000\",\"name\":\"沙坪坝区\"},{\"id\":\"500107\",\"pid\":5001,\"code\":\"500107000000\",\"name\":\"九龙坡区\"},{\"id\":\"500108\",\"pid\":5001,\"code\":\"500108000000\",\"name\":\"南岸区\"},{\"id\":\"500109\",\"pid\":5001,\"code\":\"500109000000\",\"name\":\"北碚区\"},{\"id\":\"500110\",\"pid\":5001,\"code\":\"500110000000\",\"name\":\"綦江区\"},{\"id\":\"500111\",\"pid\":5001,\"code\":\"500111000000\",\"name\":\"大足区\"},{\"id\":\"500112\",\"pid\":5001,\"code\":\"500112000000\",\"name\":\"渝北区\"},{\"id\":\"500113\",\"pid\":5001,\"code\":\"500113000000\",\"name\":\"巴南区\"},{\"id\":\"500114\",\"pid\":5001,\"code\":\"500114000000\",\"name\":\"黔江区\"},{\"id\":\"500115\",\"pid\":5001,\"code\":\"500115000000\",\"name\":\"长寿区\"},{\"id\":\"500116\",\"pid\":5001,\"code\":\"500116000000\",\"name\":\"江津区\"},{\"id\":\"500117\",\"pid\":5001,\"code\":\"500117000000\",\"name\":\"合川区\"},{\"id\":\"500118\",\"pid\":5001,\"code\":\"500118000000\",\"name\":\"永川区\"},{\"id\":\"500119\",\"pid\":5001,\"code\":\"500119000000\",\"name\":\"南川区\"},{\"id\":\"500120\",\"pid\":5001,\"code\":\"500120000000\",\"name\":\"璧山区\"},{\"id\":\"500151\",\"pid\":5001,\"code\":\"500151000000\",\"name\":\"铜梁区\"},{\"id\":\"500152\",\"pid\":5001,\"code\":\"500152000000\",\"name\":\"潼南区\"},{\"id\":\"500153\",\"pid\":5001,\"code\":\"500153000000\",\"name\":\"荣昌区\"},{\"id\":\"500154\",\"pid\":5001,\"code\":\"500154000000\",\"name\":\"开州区\"},{\"id\":\"500155\",\"pid\":5001,\"code\":\"500155000000\",\"name\":\"梁平区\"},{\"id\":\"500156\",\"pid\":5001,\"code\":\"500156000000\",\"name\":\"武隆区\"}]},{\"id\":\"5002\",\"pid\":50,\"code\":\"500200000000\",\"name\":\"重庆郊县\",\"childs\":[{\"id\":\"500229\",\"pid\":5002,\"code\":\"500229000000\",\"name\":\"城口县\"},{\"id\":\"500230\",\"pid\":5002,\"code\":\"500230000000\",\"name\":\"丰都县\"},{\"id\":\"500231\",\"pid\":5002,\"code\":\"500231000000\",\"name\":\"垫江县\"},{\"id\":\"500233\",\"pid\":5002,\"code\":\"500233000000\",\"name\":\"忠县\"},{\"id\":\"500235\",\"pid\":5002,\"code\":\"500235000000\",\"name\":\"云阳县\"},{\"id\":\"500236\",\"pid\":5002,\"code\":\"500236000000\",\"name\":\"奉节县\"},{\"id\":\"500237\",\"pid\":5002,\"code\":\"500237000000\",\"name\":\"巫山县\"},{\"id\":\"500238\",\"pid\":5002,\"code\":\"500238000000\",\"name\":\"巫溪县\"},{\"id\":\"500240\",\"pid\":5002,\"code\":\"500240000000\",\"name\":\"石柱土家族自治县\"},{\"id\":\"500241\",\"pid\":5002,\"code\":\"500241000000\",\"name\":\"秀山土家族苗族自治县\"},{\"id\":\"500242\",\"pid\":5002,\"code\":\"500242000000\",\"name\":\"酉阳土家族苗族自治县\"},{\"id\":\"500243\",\"pid\":5002,\"code\":\"500243000000\",\"name\":\"彭水苗族土家族自治县\"}]}]},{\"id\":\"51\",\"pid\":0,\"code\":\"510000000000\",\"name\":\"四川省\",\"childs\":[{\"id\":\"5101\",\"pid\":51,\"code\":\"510100000000\",\"name\":\"成都市\",\"childs\":[{\"id\":\"510104\",\"pid\":5101,\"code\":\"510104000000\",\"name\":\"锦江区\"},{\"id\":\"510105\",\"pid\":5101,\"code\":\"510105000000\",\"name\":\"青羊区\"},{\"id\":\"510106\",\"pid\":5101,\"code\":\"510106000000\",\"name\":\"金牛区\"},{\"id\":\"510107\",\"pid\":5101,\"code\":\"510107000000\",\"name\":\"武侯区\"},{\"id\":\"510108\",\"pid\":5101,\"code\":\"510108000000\",\"name\":\"成华区\"},{\"id\":\"510112\",\"pid\":5101,\"code\":\"510112000000\",\"name\":\"龙泉驿区\"},{\"id\":\"510113\",\"pid\":5101,\"code\":\"510113000000\",\"name\":\"青白江区\"},{\"id\":\"510114\",\"pid\":5101,\"code\":\"510114000000\",\"name\":\"新都区\"},{\"id\":\"510115\",\"pid\":5101,\"code\":\"510115000000\",\"name\":\"温江区\"},{\"id\":\"510116\",\"pid\":5101,\"code\":\"510116000000\",\"name\":\"双流区\"},{\"id\":\"510117\",\"pid\":5101,\"code\":\"510117000000\",\"name\":\"郫都区\"},{\"id\":\"510118\",\"pid\":5101,\"code\":\"510118000000\",\"name\":\"新津区\"},{\"id\":\"510121\",\"pid\":5101,\"code\":\"510121000000\",\"name\":\"金堂县\"},{\"id\":\"510129\",\"pid\":5101,\"code\":\"510129000000\",\"name\":\"大邑县\"},{\"id\":\"510131\",\"pid\":5101,\"code\":\"510131000000\",\"name\":\"蒲江县\"},{\"id\":\"510181\",\"pid\":5101,\"code\":\"510181000000\",\"name\":\"都江堰市\"},{\"id\":\"510182\",\"pid\":5101,\"code\":\"510182000000\",\"name\":\"彭州市\"},{\"id\":\"510183\",\"pid\":5101,\"code\":\"510183000000\",\"name\":\"邛崃市\"},{\"id\":\"510184\",\"pid\":5101,\"code\":\"510184000000\",\"name\":\"崇州市\"},{\"id\":\"510185\",\"pid\":5101,\"code\":\"510185000000\",\"name\":\"简阳市\"}]},{\"id\":\"5103\",\"pid\":51,\"code\":\"510300000000\",\"name\":\"自贡市\",\"childs\":[{\"id\":\"510302\",\"pid\":5103,\"code\":\"510302000000\",\"name\":\"自流井区\"},{\"id\":\"510303\",\"pid\":5103,\"code\":\"510303000000\",\"name\":\"贡井区\"},{\"id\":\"510304\",\"pid\":5103,\"code\":\"510304000000\",\"name\":\"大安区\"},{\"id\":\"510311\",\"pid\":5103,\"code\":\"510311000000\",\"name\":\"沿滩区\"},{\"id\":\"510321\",\"pid\":5103,\"code\":\"510321000000\",\"name\":\"荣县\"},{\"id\":\"510322\",\"pid\":5103,\"code\":\"510322000000\",\"name\":\"富顺县\"}]},{\"id\":\"5104\",\"pid\":51,\"code\":\"510400000000\",\"name\":\"攀枝花市\",\"childs\":[{\"id\":\"510402\",\"pid\":5104,\"code\":\"510402000000\",\"name\":\"东区\"},{\"id\":\"510403\",\"pid\":5104,\"code\":\"510403000000\",\"name\":\"西区\"},{\"id\":\"510411\",\"pid\":5104,\"code\":\"510411000000\",\"name\":\"仁和区\"},{\"id\":\"510421\",\"pid\":5104,\"code\":\"510421000000\",\"name\":\"米易县\"},{\"id\":\"510422\",\"pid\":5104,\"code\":\"510422000000\",\"name\":\"盐边县\"}]},{\"id\":\"5105\",\"pid\":51,\"code\":\"510500000000\",\"name\":\"泸州市\",\"childs\":[{\"id\":\"510502\",\"pid\":5105,\"code\":\"510502000000\",\"name\":\"江阳区\"},{\"id\":\"510503\",\"pid\":5105,\"code\":\"510503000000\",\"name\":\"纳溪区\"},{\"id\":\"510504\",\"pid\":5105,\"code\":\"510504000000\",\"name\":\"龙马潭区\"},{\"id\":\"510521\",\"pid\":5105,\"code\":\"510521000000\",\"name\":\"泸县\"},{\"id\":\"510522\",\"pid\":5105,\"code\":\"510522000000\",\"name\":\"合江县\"},{\"id\":\"510524\",\"pid\":5105,\"code\":\"510524000000\",\"name\":\"叙永县\"},{\"id\":\"510525\",\"pid\":5105,\"code\":\"510525000000\",\"name\":\"古蔺县\"}]},{\"id\":\"5106\",\"pid\":51,\"code\":\"510600000000\",\"name\":\"德阳市\",\"childs\":[{\"id\":\"510603\",\"pid\":5106,\"code\":\"510603000000\",\"name\":\"旌阳区\"},{\"id\":\"510604\",\"pid\":5106,\"code\":\"510604000000\",\"name\":\"罗江区\"},{\"id\":\"510623\",\"pid\":5106,\"code\":\"510623000000\",\"name\":\"中江县\"},{\"id\":\"510681\",\"pid\":5106,\"code\":\"510681000000\",\"name\":\"广汉市\"},{\"id\":\"510682\",\"pid\":5106,\"code\":\"510682000000\",\"name\":\"什邡市\"},{\"id\":\"510683\",\"pid\":5106,\"code\":\"510683000000\",\"name\":\"绵竹市\"}]},{\"id\":\"5107\",\"pid\":51,\"code\":\"510700000000\",\"name\":\"绵阳市\",\"childs\":[{\"id\":\"510703\",\"pid\":5107,\"code\":\"510703000000\",\"name\":\"涪城区\"},{\"id\":\"510704\",\"pid\":5107,\"code\":\"510704000000\",\"name\":\"游仙区\"},{\"id\":\"510705\",\"pid\":5107,\"code\":\"510705000000\",\"name\":\"安州区\"},{\"id\":\"510722\",\"pid\":5107,\"code\":\"510722000000\",\"name\":\"三台县\"},{\"id\":\"510723\",\"pid\":5107,\"code\":\"510723000000\",\"name\":\"盐亭县\"},{\"id\":\"510725\",\"pid\":5107,\"code\":\"510725000000\",\"name\":\"梓潼县\"},{\"id\":\"510726\",\"pid\":5107,\"code\":\"510726000000\",\"name\":\"北川羌族自治县\"},{\"id\":\"510727\",\"pid\":5107,\"code\":\"510727000000\",\"name\":\"平武县\"},{\"id\":\"510781\",\"pid\":5107,\"code\":\"510781000000\",\"name\":\"江油市\"}]},{\"id\":\"5108\",\"pid\":51,\"code\":\"510800000000\",\"name\":\"广元市\",\"childs\":[{\"id\":\"510802\",\"pid\":5108,\"code\":\"510802000000\",\"name\":\"利州区\"},{\"id\":\"510811\",\"pid\":5108,\"code\":\"510811000000\",\"name\":\"昭化区\"},{\"id\":\"510812\",\"pid\":5108,\"code\":\"510812000000\",\"name\":\"朝天区\"},{\"id\":\"510821\",\"pid\":5108,\"code\":\"510821000000\",\"name\":\"旺苍县\"},{\"id\":\"510822\",\"pid\":5108,\"code\":\"510822000000\",\"name\":\"青川县\"},{\"id\":\"510823\",\"pid\":5108,\"code\":\"510823000000\",\"name\":\"剑阁县\"},{\"id\":\"510824\",\"pid\":5108,\"code\":\"510824000000\",\"name\":\"苍溪县\"}]},{\"id\":\"5109\",\"pid\":51,\"code\":\"510900000000\",\"name\":\"遂宁市\",\"childs\":[{\"id\":\"510903\",\"pid\":5109,\"code\":\"510903000000\",\"name\":\"船山区\"},{\"id\":\"510904\",\"pid\":5109,\"code\":\"510904000000\",\"name\":\"安居区\"},{\"id\":\"510921\",\"pid\":5109,\"code\":\"510921000000\",\"name\":\"蓬溪县\"},{\"id\":\"510923\",\"pid\":5109,\"code\":\"510923000000\",\"name\":\"大英县\"},{\"id\":\"510981\",\"pid\":5109,\"code\":\"510981000000\",\"name\":\"射洪市\"}]},{\"id\":\"5110\",\"pid\":51,\"code\":\"511000000000\",\"name\":\"内江市\",\"childs\":[{\"id\":\"511002\",\"pid\":5110,\"code\":\"511002000000\",\"name\":\"市中区\"},{\"id\":\"511011\",\"pid\":5110,\"code\":\"511011000000\",\"name\":\"东兴区\"},{\"id\":\"511024\",\"pid\":5110,\"code\":\"511024000000\",\"name\":\"威远县\"},{\"id\":\"511025\",\"pid\":5110,\"code\":\"511025000000\",\"name\":\"资中县\"},{\"id\":\"511083\",\"pid\":5110,\"code\":\"511083000000\",\"name\":\"隆昌市\"}]},{\"id\":\"5111\",\"pid\":51,\"code\":\"511100000000\",\"name\":\"乐山市\",\"childs\":[{\"id\":\"511102\",\"pid\":5111,\"code\":\"511102000000\",\"name\":\"市中区\"},{\"id\":\"511111\",\"pid\":5111,\"code\":\"511111000000\",\"name\":\"沙湾区\"},{\"id\":\"511112\",\"pid\":5111,\"code\":\"511112000000\",\"name\":\"五通桥区\"},{\"id\":\"511113\",\"pid\":5111,\"code\":\"511113000000\",\"name\":\"金口河区\"},{\"id\":\"511123\",\"pid\":5111,\"code\":\"511123000000\",\"name\":\"犍为县\"},{\"id\":\"511124\",\"pid\":5111,\"code\":\"511124000000\",\"name\":\"井研县\"},{\"id\":\"511126\",\"pid\":5111,\"code\":\"511126000000\",\"name\":\"夹江县\"},{\"id\":\"511129\",\"pid\":5111,\"code\":\"511129000000\",\"name\":\"沐川县\"},{\"id\":\"511132\",\"pid\":5111,\"code\":\"511132000000\",\"name\":\"峨边彝族自治县\"},{\"id\":\"511133\",\"pid\":5111,\"code\":\"511133000000\",\"name\":\"马边彝族自治县\"},{\"id\":\"511181\",\"pid\":5111,\"code\":\"511181000000\",\"name\":\"峨眉山市\"}]},{\"id\":\"5113\",\"pid\":51,\"code\":\"511300000000\",\"name\":\"南充市\",\"childs\":[{\"id\":\"511302\",\"pid\":5113,\"code\":\"511302000000\",\"name\":\"顺庆区\"},{\"id\":\"511303\",\"pid\":5113,\"code\":\"511303000000\",\"name\":\"高坪区\"},{\"id\":\"511304\",\"pid\":5113,\"code\":\"511304000000\",\"name\":\"嘉陵区\"},{\"id\":\"511321\",\"pid\":5113,\"code\":\"511321000000\",\"name\":\"南部县\"},{\"id\":\"511322\",\"pid\":5113,\"code\":\"511322000000\",\"name\":\"营山县\"},{\"id\":\"511323\",\"pid\":5113,\"code\":\"511323000000\",\"name\":\"蓬安县\"},{\"id\":\"511324\",\"pid\":5113,\"code\":\"511324000000\",\"name\":\"仪陇县\"},{\"id\":\"511325\",\"pid\":5113,\"code\":\"511325000000\",\"name\":\"西充县\"},{\"id\":\"511381\",\"pid\":5113,\"code\":\"511381000000\",\"name\":\"阆中市\"}]},{\"id\":\"5114\",\"pid\":51,\"code\":\"511400000000\",\"name\":\"眉山市\",\"childs\":[{\"id\":\"511402\",\"pid\":5114,\"code\":\"511402000000\",\"name\":\"东坡区\"},{\"id\":\"511403\",\"pid\":5114,\"code\":\"511403000000\",\"name\":\"彭山区\"},{\"id\":\"511421\",\"pid\":5114,\"code\":\"511421000000\",\"name\":\"仁寿县\"},{\"id\":\"511423\",\"pid\":5114,\"code\":\"511423000000\",\"name\":\"洪雅县\"},{\"id\":\"511424\",\"pid\":5114,\"code\":\"511424000000\",\"name\":\"丹棱县\"},{\"id\":\"511425\",\"pid\":5114,\"code\":\"511425000000\",\"name\":\"青神县\"}]},{\"id\":\"5115\",\"pid\":51,\"code\":\"511500000000\",\"name\":\"宜宾市\",\"childs\":[{\"id\":\"511502\",\"pid\":5115,\"code\":\"511502000000\",\"name\":\"翠屏区\"},{\"id\":\"511503\",\"pid\":5115,\"code\":\"511503000000\",\"name\":\"南溪区\"},{\"id\":\"511504\",\"pid\":5115,\"code\":\"511504000000\",\"name\":\"叙州区\"},{\"id\":\"511523\",\"pid\":5115,\"code\":\"511523000000\",\"name\":\"江安县\"},{\"id\":\"511524\",\"pid\":5115,\"code\":\"511524000000\",\"name\":\"长宁县\"},{\"id\":\"511525\",\"pid\":5115,\"code\":\"511525000000\",\"name\":\"高县\"},{\"id\":\"511526\",\"pid\":5115,\"code\":\"511526000000\",\"name\":\"珙县\"},{\"id\":\"511527\",\"pid\":5115,\"code\":\"511527000000\",\"name\":\"筠连县\"},{\"id\":\"511528\",\"pid\":5115,\"code\":\"511528000000\",\"name\":\"兴文县\"},{\"id\":\"511529\",\"pid\":5115,\"code\":\"511529000000\",\"name\":\"屏山县\"}]},{\"id\":\"5116\",\"pid\":51,\"code\":\"511600000000\",\"name\":\"广安市\",\"childs\":[{\"id\":\"511602\",\"pid\":5116,\"code\":\"511602000000\",\"name\":\"广安区\"},{\"id\":\"511603\",\"pid\":5116,\"code\":\"511603000000\",\"name\":\"前锋区\"},{\"id\":\"511621\",\"pid\":5116,\"code\":\"511621000000\",\"name\":\"岳池县\"},{\"id\":\"511622\",\"pid\":5116,\"code\":\"511622000000\",\"name\":\"武胜县\"},{\"id\":\"511623\",\"pid\":5116,\"code\":\"511623000000\",\"name\":\"邻水县\"},{\"id\":\"511681\",\"pid\":5116,\"code\":\"511681000000\",\"name\":\"华蓥市\"}]},{\"id\":\"5117\",\"pid\":51,\"code\":\"511700000000\",\"name\":\"达州市\",\"childs\":[{\"id\":\"511702\",\"pid\":5117,\"code\":\"511702000000\",\"name\":\"通川区\"},{\"id\":\"511703\",\"pid\":5117,\"code\":\"511703000000\",\"name\":\"达川区\"},{\"id\":\"511722\",\"pid\":5117,\"code\":\"511722000000\",\"name\":\"宣汉县\"},{\"id\":\"511723\",\"pid\":5117,\"code\":\"511723000000\",\"name\":\"开江县\"},{\"id\":\"511724\",\"pid\":5117,\"code\":\"511724000000\",\"name\":\"大竹县\"},{\"id\":\"511725\",\"pid\":5117,\"code\":\"511725000000\",\"name\":\"渠县\"},{\"id\":\"511781\",\"pid\":5117,\"code\":\"511781000000\",\"name\":\"万源市\"}]},{\"id\":\"5118\",\"pid\":51,\"code\":\"511800000000\",\"name\":\"雅安市\",\"childs\":[{\"id\":\"511802\",\"pid\":5118,\"code\":\"511802000000\",\"name\":\"雨城区\"},{\"id\":\"511803\",\"pid\":5118,\"code\":\"511803000000\",\"name\":\"名山区\"},{\"id\":\"511822\",\"pid\":5118,\"code\":\"511822000000\",\"name\":\"荥经县\"},{\"id\":\"511823\",\"pid\":5118,\"code\":\"511823000000\",\"name\":\"汉源县\"},{\"id\":\"511824\",\"pid\":5118,\"code\":\"511824000000\",\"name\":\"石棉县\"},{\"id\":\"511825\",\"pid\":5118,\"code\":\"511825000000\",\"name\":\"天全县\"},{\"id\":\"511826\",\"pid\":5118,\"code\":\"511826000000\",\"name\":\"芦山县\"},{\"id\":\"511827\",\"pid\":5118,\"code\":\"511827000000\",\"name\":\"宝兴县\"}]},{\"id\":\"5119\",\"pid\":51,\"code\":\"511900000000\",\"name\":\"巴中市\",\"childs\":[{\"id\":\"511902\",\"pid\":5119,\"code\":\"511902000000\",\"name\":\"巴州区\"},{\"id\":\"511903\",\"pid\":5119,\"code\":\"511903000000\",\"name\":\"恩阳区\"},{\"id\":\"511921\",\"pid\":5119,\"code\":\"511921000000\",\"name\":\"通江县\"},{\"id\":\"511922\",\"pid\":5119,\"code\":\"511922000000\",\"name\":\"南江县\"},{\"id\":\"511923\",\"pid\":5119,\"code\":\"511923000000\",\"name\":\"平昌县\"}]},{\"id\":\"5120\",\"pid\":51,\"code\":\"512000000000\",\"name\":\"资阳市\",\"childs\":[{\"id\":\"512002\",\"pid\":5120,\"code\":\"512002000000\",\"name\":\"雁江区\"},{\"id\":\"512021\",\"pid\":5120,\"code\":\"512021000000\",\"name\":\"安岳县\"},{\"id\":\"512022\",\"pid\":5120,\"code\":\"512022000000\",\"name\":\"乐至县\"}]},{\"id\":\"5132\",\"pid\":51,\"code\":\"513200000000\",\"name\":\"阿坝藏族羌族自治州\",\"childs\":[{\"id\":\"513201\",\"pid\":5132,\"code\":\"513201000000\",\"name\":\"马尔康市\"},{\"id\":\"513221\",\"pid\":5132,\"code\":\"513221000000\",\"name\":\"汶川县\"},{\"id\":\"513222\",\"pid\":5132,\"code\":\"513222000000\",\"name\":\"理县\"},{\"id\":\"513223\",\"pid\":5132,\"code\":\"513223000000\",\"name\":\"茂县\"},{\"id\":\"513224\",\"pid\":5132,\"code\":\"513224000000\",\"name\":\"松潘县\"},{\"id\":\"513225\",\"pid\":5132,\"code\":\"513225000000\",\"name\":\"九寨沟县\"},{\"id\":\"513226\",\"pid\":5132,\"code\":\"513226000000\",\"name\":\"金川县\"},{\"id\":\"513227\",\"pid\":5132,\"code\":\"513227000000\",\"name\":\"小金县\"},{\"id\":\"513228\",\"pid\":5132,\"code\":\"513228000000\",\"name\":\"黑水县\"},{\"id\":\"513230\",\"pid\":5132,\"code\":\"513230000000\",\"name\":\"壤塘县\"},{\"id\":\"513231\",\"pid\":5132,\"code\":\"513231000000\",\"name\":\"阿坝县\"},{\"id\":\"513232\",\"pid\":5132,\"code\":\"513232000000\",\"name\":\"若尔盖县\"},{\"id\":\"513233\",\"pid\":5132,\"code\":\"513233000000\",\"name\":\"红原县\"}]},{\"id\":\"5133\",\"pid\":51,\"code\":\"513300000000\",\"name\":\"甘孜藏族自治州\",\"childs\":[{\"id\":\"513301\",\"pid\":5133,\"code\":\"513301000000\",\"name\":\"康定市\"},{\"id\":\"513322\",\"pid\":5133,\"code\":\"513322000000\",\"name\":\"泸定县\"},{\"id\":\"513323\",\"pid\":5133,\"code\":\"513323000000\",\"name\":\"丹巴县\"},{\"id\":\"513324\",\"pid\":5133,\"code\":\"513324000000\",\"name\":\"九龙县\"},{\"id\":\"513325\",\"pid\":5133,\"code\":\"513325000000\",\"name\":\"雅江县\"},{\"id\":\"513326\",\"pid\":5133,\"code\":\"513326000000\",\"name\":\"道孚县\"},{\"id\":\"513327\",\"pid\":5133,\"code\":\"513327000000\",\"name\":\"炉霍县\"},{\"id\":\"513328\",\"pid\":5133,\"code\":\"513328000000\",\"name\":\"甘孜县\"},{\"id\":\"513329\",\"pid\":5133,\"code\":\"513329000000\",\"name\":\"新龙县\"},{\"id\":\"513330\",\"pid\":5133,\"code\":\"513330000000\",\"name\":\"德格县\"},{\"id\":\"513331\",\"pid\":5133,\"code\":\"513331000000\",\"name\":\"白玉县\"},{\"id\":\"513332\",\"pid\":5133,\"code\":\"513332000000\",\"name\":\"石渠县\"},{\"id\":\"513333\",\"pid\":5133,\"code\":\"513333000000\",\"name\":\"色达县\"},{\"id\":\"513334\",\"pid\":5133,\"code\":\"513334000000\",\"name\":\"理塘县\"},{\"id\":\"513335\",\"pid\":5133,\"code\":\"513335000000\",\"name\":\"巴塘县\"},{\"id\":\"513336\",\"pid\":5133,\"code\":\"513336000000\",\"name\":\"乡城县\"},{\"id\":\"513337\",\"pid\":5133,\"code\":\"513337000000\",\"name\":\"稻城县\"},{\"id\":\"513338\",\"pid\":5133,\"code\":\"513338000000\",\"name\":\"得荣县\"}]},{\"id\":\"5134\",\"pid\":51,\"code\":\"513400000000\",\"name\":\"凉山彝族自治州\",\"childs\":[{\"id\":\"513401\",\"pid\":5134,\"code\":\"513401000000\",\"name\":\"西昌市\"},{\"id\":\"513402\",\"pid\":5134,\"code\":\"513402000000\",\"name\":\"会理市\"},{\"id\":\"513422\",\"pid\":5134,\"code\":\"513422000000\",\"name\":\"木里藏族自治县\"},{\"id\":\"513423\",\"pid\":5134,\"code\":\"513423000000\",\"name\":\"盐源县\"},{\"id\":\"513424\",\"pid\":5134,\"code\":\"513424000000\",\"name\":\"德昌县\"},{\"id\":\"513426\",\"pid\":5134,\"code\":\"513426000000\",\"name\":\"会东县\"},{\"id\":\"513427\",\"pid\":5134,\"code\":\"513427000000\",\"name\":\"宁南县\"},{\"id\":\"513428\",\"pid\":5134,\"code\":\"513428000000\",\"name\":\"普格县\"},{\"id\":\"513429\",\"pid\":5134,\"code\":\"513429000000\",\"name\":\"布拖县\"},{\"id\":\"513430\",\"pid\":5134,\"code\":\"513430000000\",\"name\":\"金阳县\"},{\"id\":\"513431\",\"pid\":5134,\"code\":\"513431000000\",\"name\":\"昭觉县\"},{\"id\":\"513432\",\"pid\":5134,\"code\":\"513432000000\",\"name\":\"喜德县\"},{\"id\":\"513433\",\"pid\":5134,\"code\":\"513433000000\",\"name\":\"冕宁县\"},{\"id\":\"513434\",\"pid\":5134,\"code\":\"513434000000\",\"name\":\"越西县\"},{\"id\":\"513435\",\"pid\":5134,\"code\":\"513435000000\",\"name\":\"甘洛县\"},{\"id\":\"513436\",\"pid\":5134,\"code\":\"513436000000\",\"name\":\"美姑县\"},{\"id\":\"513437\",\"pid\":5134,\"code\":\"513437000000\",\"name\":\"雷波县\"}]}]},{\"id\":\"52\",\"pid\":0,\"code\":\"520000000000\",\"name\":\"贵州省\",\"childs\":[{\"id\":\"5201\",\"pid\":52,\"code\":\"520100000000\",\"name\":\"贵阳市\",\"childs\":[{\"id\":\"520102\",\"pid\":5201,\"code\":\"520102000000\",\"name\":\"南明区\"},{\"id\":\"520103\",\"pid\":5201,\"code\":\"520103000000\",\"name\":\"云岩区\"},{\"id\":\"520111\",\"pid\":5201,\"code\":\"520111000000\",\"name\":\"花溪区\"},{\"id\":\"520112\",\"pid\":5201,\"code\":\"520112000000\",\"name\":\"乌当区\"},{\"id\":\"520113\",\"pid\":5201,\"code\":\"520113000000\",\"name\":\"白云区\"},{\"id\":\"520115\",\"pid\":5201,\"code\":\"520115000000\",\"name\":\"观山湖区\"},{\"id\":\"520121\",\"pid\":5201,\"code\":\"520121000000\",\"name\":\"开阳县\"},{\"id\":\"520122\",\"pid\":5201,\"code\":\"520122000000\",\"name\":\"息烽县\"},{\"id\":\"520123\",\"pid\":5201,\"code\":\"520123000000\",\"name\":\"修文县\"},{\"id\":\"520181\",\"pid\":5201,\"code\":\"520181000000\",\"name\":\"清镇市\"}]},{\"id\":\"5202\",\"pid\":52,\"code\":\"520200000000\",\"name\":\"六盘水市\",\"childs\":[{\"id\":\"520201\",\"pid\":5202,\"code\":\"520201000000\",\"name\":\"钟山区\"},{\"id\":\"520203\",\"pid\":5202,\"code\":\"520203000000\",\"name\":\"六枝特区\"},{\"id\":\"520204\",\"pid\":5202,\"code\":\"520204000000\",\"name\":\"水城区\"},{\"id\":\"520281\",\"pid\":5202,\"code\":\"520281000000\",\"name\":\"盘州市\"}]},{\"id\":\"5203\",\"pid\":52,\"code\":\"520300000000\",\"name\":\"遵义市\",\"childs\":[{\"id\":\"520302\",\"pid\":5203,\"code\":\"520302000000\",\"name\":\"红花岗区\"},{\"id\":\"520303\",\"pid\":5203,\"code\":\"520303000000\",\"name\":\"汇川区\"},{\"id\":\"520304\",\"pid\":5203,\"code\":\"520304000000\",\"name\":\"播州区\"},{\"id\":\"520322\",\"pid\":5203,\"code\":\"520322000000\",\"name\":\"桐梓县\"},{\"id\":\"520323\",\"pid\":5203,\"code\":\"520323000000\",\"name\":\"绥阳县\"},{\"id\":\"520324\",\"pid\":5203,\"code\":\"520324000000\",\"name\":\"正安县\"},{\"id\":\"520325\",\"pid\":5203,\"code\":\"520325000000\",\"name\":\"道真仡佬族苗族自治县\"},{\"id\":\"520326\",\"pid\":5203,\"code\":\"520326000000\",\"name\":\"务川仡佬族苗族自治县\"},{\"id\":\"520327\",\"pid\":5203,\"code\":\"520327000000\",\"name\":\"凤冈县\"},{\"id\":\"520328\",\"pid\":5203,\"code\":\"520328000000\",\"name\":\"湄潭县\"},{\"id\":\"520329\",\"pid\":5203,\"code\":\"520329000000\",\"name\":\"余庆县\"},{\"id\":\"520330\",\"pid\":5203,\"code\":\"520330000000\",\"name\":\"习水县\"},{\"id\":\"520381\",\"pid\":5203,\"code\":\"520381000000\",\"name\":\"赤水市\"},{\"id\":\"520382\",\"pid\":5203,\"code\":\"520382000000\",\"name\":\"仁怀市\"}]},{\"id\":\"5204\",\"pid\":52,\"code\":\"520400000000\",\"name\":\"安顺市\",\"childs\":[{\"id\":\"520402\",\"pid\":5204,\"code\":\"520402000000\",\"name\":\"西秀区\"},{\"id\":\"520403\",\"pid\":5204,\"code\":\"520403000000\",\"name\":\"平坝区\"},{\"id\":\"520422\",\"pid\":5204,\"code\":\"520422000000\",\"name\":\"普定县\"},{\"id\":\"520423\",\"pid\":5204,\"code\":\"520423000000\",\"name\":\"镇宁布依族苗族自治县\"},{\"id\":\"520424\",\"pid\":5204,\"code\":\"520424000000\",\"name\":\"关岭布依族苗族自治县\"},{\"id\":\"520425\",\"pid\":5204,\"code\":\"520425000000\",\"name\":\"紫云苗族布依族自治县\"}]},{\"id\":\"5205\",\"pid\":52,\"code\":\"520500000000\",\"name\":\"毕节市\",\"childs\":[{\"id\":\"520502\",\"pid\":5205,\"code\":\"520502000000\",\"name\":\"七星关区\"},{\"id\":\"520521\",\"pid\":5205,\"code\":\"520521000000\",\"name\":\"大方县\"},{\"id\":\"520523\",\"pid\":5205,\"code\":\"520523000000\",\"name\":\"金沙县\"},{\"id\":\"520524\",\"pid\":5205,\"code\":\"520524000000\",\"name\":\"织金县\"},{\"id\":\"520525\",\"pid\":5205,\"code\":\"520525000000\",\"name\":\"纳雍县\"},{\"id\":\"520526\",\"pid\":5205,\"code\":\"520526000000\",\"name\":\"威宁彝族回族苗族自治县\"},{\"id\":\"520527\",\"pid\":5205,\"code\":\"520527000000\",\"name\":\"赫章县\"},{\"id\":\"520581\",\"pid\":5205,\"code\":\"520581000000\",\"name\":\"黔西市\"}]},{\"id\":\"5206\",\"pid\":52,\"code\":\"520600000000\",\"name\":\"铜仁市\",\"childs\":[{\"id\":\"520602\",\"pid\":5206,\"code\":\"520602000000\",\"name\":\"碧江区\"},{\"id\":\"520603\",\"pid\":5206,\"code\":\"520603000000\",\"name\":\"万山区\"},{\"id\":\"520621\",\"pid\":5206,\"code\":\"520621000000\",\"name\":\"江口县\"},{\"id\":\"520622\",\"pid\":5206,\"code\":\"520622000000\",\"name\":\"玉屏侗族自治县\"},{\"id\":\"520623\",\"pid\":5206,\"code\":\"520623000000\",\"name\":\"石阡县\"},{\"id\":\"520624\",\"pid\":5206,\"code\":\"520624000000\",\"name\":\"思南县\"},{\"id\":\"520625\",\"pid\":5206,\"code\":\"520625000000\",\"name\":\"印江土家族苗族自治县\"},{\"id\":\"520626\",\"pid\":5206,\"code\":\"520626000000\",\"name\":\"德江县\"},{\"id\":\"520627\",\"pid\":5206,\"code\":\"520627000000\",\"name\":\"沿河土家族自治县\"},{\"id\":\"520628\",\"pid\":5206,\"code\":\"520628000000\",\"name\":\"松桃苗族自治县\"}]},{\"id\":\"5223\",\"pid\":52,\"code\":\"522300000000\",\"name\":\"黔西南布依族苗族自治州\",\"childs\":[{\"id\":\"522301\",\"pid\":5223,\"code\":\"522301000000\",\"name\":\"兴义市\"},{\"id\":\"522302\",\"pid\":5223,\"code\":\"522302000000\",\"name\":\"兴仁市\"},{\"id\":\"522323\",\"pid\":5223,\"code\":\"522323000000\",\"name\":\"普安县\"},{\"id\":\"522324\",\"pid\":5223,\"code\":\"522324000000\",\"name\":\"晴隆县\"},{\"id\":\"522325\",\"pid\":5223,\"code\":\"522325000000\",\"name\":\"贞丰县\"},{\"id\":\"522326\",\"pid\":5223,\"code\":\"522326000000\",\"name\":\"望谟县\"},{\"id\":\"522327\",\"pid\":5223,\"code\":\"522327000000\",\"name\":\"册亨县\"},{\"id\":\"522328\",\"pid\":5223,\"code\":\"522328000000\",\"name\":\"安龙县\"}]},{\"id\":\"5226\",\"pid\":52,\"code\":\"522600000000\",\"name\":\"黔东南苗族侗族自治州\",\"childs\":[{\"id\":\"522601\",\"pid\":5226,\"code\":\"522601000000\",\"name\":\"凯里市\"},{\"id\":\"522622\",\"pid\":5226,\"code\":\"522622000000\",\"name\":\"黄平县\"},{\"id\":\"522623\",\"pid\":5226,\"code\":\"522623000000\",\"name\":\"施秉县\"},{\"id\":\"522624\",\"pid\":5226,\"code\":\"522624000000\",\"name\":\"三穗县\"},{\"id\":\"522625\",\"pid\":5226,\"code\":\"522625000000\",\"name\":\"镇远县\"},{\"id\":\"522626\",\"pid\":5226,\"code\":\"522626000000\",\"name\":\"岑巩县\"},{\"id\":\"522627\",\"pid\":5226,\"code\":\"522627000000\",\"name\":\"天柱县\"},{\"id\":\"522628\",\"pid\":5226,\"code\":\"522628000000\",\"name\":\"锦屏县\"},{\"id\":\"522629\",\"pid\":5226,\"code\":\"522629000000\",\"name\":\"剑河县\"},{\"id\":\"522630\",\"pid\":5226,\"code\":\"522630000000\",\"name\":\"台江县\"},{\"id\":\"522631\",\"pid\":5226,\"code\":\"522631000000\",\"name\":\"黎平县\"},{\"id\":\"522632\",\"pid\":5226,\"code\":\"522632000000\",\"name\":\"榕江县\"},{\"id\":\"522633\",\"pid\":5226,\"code\":\"522633000000\",\"name\":\"从江县\"},{\"id\":\"522634\",\"pid\":5226,\"code\":\"522634000000\",\"name\":\"雷山县\"},{\"id\":\"522635\",\"pid\":5226,\"code\":\"522635000000\",\"name\":\"麻江县\"},{\"id\":\"522636\",\"pid\":5226,\"code\":\"522636000000\",\"name\":\"丹寨县\"}]},{\"id\":\"5227\",\"pid\":52,\"code\":\"522700000000\",\"name\":\"黔南布依族苗族自治州\",\"childs\":[{\"id\":\"522701\",\"pid\":5227,\"code\":\"522701000000\",\"name\":\"都匀市\"},{\"id\":\"522702\",\"pid\":5227,\"code\":\"522702000000\",\"name\":\"福泉市\"},{\"id\":\"522722\",\"pid\":5227,\"code\":\"522722000000\",\"name\":\"荔波县\"},{\"id\":\"522723\",\"pid\":5227,\"code\":\"522723000000\",\"name\":\"贵定县\"},{\"id\":\"522725\",\"pid\":5227,\"code\":\"522725000000\",\"name\":\"瓮安县\"},{\"id\":\"522726\",\"pid\":5227,\"code\":\"522726000000\",\"name\":\"独山县\"},{\"id\":\"522727\",\"pid\":5227,\"code\":\"522727000000\",\"name\":\"平塘县\"},{\"id\":\"522728\",\"pid\":5227,\"code\":\"522728000000\",\"name\":\"罗甸县\"},{\"id\":\"522729\",\"pid\":5227,\"code\":\"522729000000\",\"name\":\"长顺县\"},{\"id\":\"522730\",\"pid\":5227,\"code\":\"522730000000\",\"name\":\"龙里县\"},{\"id\":\"522731\",\"pid\":5227,\"code\":\"522731000000\",\"name\":\"惠水县\"},{\"id\":\"522732\",\"pid\":5227,\"code\":\"522732000000\",\"name\":\"三都水族自治县\"}]}]},{\"id\":\"53\",\"pid\":0,\"code\":\"530000000000\",\"name\":\"云南省\",\"childs\":[{\"id\":\"5301\",\"pid\":53,\"code\":\"530100000000\",\"name\":\"昆明市\",\"childs\":[{\"id\":\"530102\",\"pid\":5301,\"code\":\"530102000000\",\"name\":\"五华区\"},{\"id\":\"530103\",\"pid\":5301,\"code\":\"530103000000\",\"name\":\"盘龙区\"},{\"id\":\"530111\",\"pid\":5301,\"code\":\"530111000000\",\"name\":\"官渡区\"},{\"id\":\"530112\",\"pid\":5301,\"code\":\"530112000000\",\"name\":\"西山区\"},{\"id\":\"530113\",\"pid\":5301,\"code\":\"530113000000\",\"name\":\"东川区\"},{\"id\":\"530114\",\"pid\":5301,\"code\":\"530114000000\",\"name\":\"呈贡区\"},{\"id\":\"530115\",\"pid\":5301,\"code\":\"530115000000\",\"name\":\"晋宁区\"},{\"id\":\"530124\",\"pid\":5301,\"code\":\"530124000000\",\"name\":\"富民县\"},{\"id\":\"530125\",\"pid\":5301,\"code\":\"530125000000\",\"name\":\"宜良县\"},{\"id\":\"530126\",\"pid\":5301,\"code\":\"530126000000\",\"name\":\"石林彝族自治县\"},{\"id\":\"530127\",\"pid\":5301,\"code\":\"530127000000\",\"name\":\"嵩明县\"},{\"id\":\"530128\",\"pid\":5301,\"code\":\"530128000000\",\"name\":\"禄劝彝族苗族自治县\"},{\"id\":\"530129\",\"pid\":5301,\"code\":\"530129000000\",\"name\":\"寻甸回族彝族自治县\"},{\"id\":\"530181\",\"pid\":5301,\"code\":\"530181000000\",\"name\":\"安宁市\"}]},{\"id\":\"5303\",\"pid\":53,\"code\":\"530300000000\",\"name\":\"曲靖市\",\"childs\":[{\"id\":\"530302\",\"pid\":5303,\"code\":\"530302000000\",\"name\":\"麒麟区\"},{\"id\":\"530303\",\"pid\":5303,\"code\":\"530303000000\",\"name\":\"沾益区\"},{\"id\":\"530304\",\"pid\":5303,\"code\":\"530304000000\",\"name\":\"马龙区\"},{\"id\":\"530322\",\"pid\":5303,\"code\":\"530322000000\",\"name\":\"陆良县\"},{\"id\":\"530323\",\"pid\":5303,\"code\":\"530323000000\",\"name\":\"师宗县\"},{\"id\":\"530324\",\"pid\":5303,\"code\":\"530324000000\",\"name\":\"罗平县\"},{\"id\":\"530325\",\"pid\":5303,\"code\":\"530325000000\",\"name\":\"富源县\"},{\"id\":\"530326\",\"pid\":5303,\"code\":\"530326000000\",\"name\":\"会泽县\"},{\"id\":\"530381\",\"pid\":5303,\"code\":\"530381000000\",\"name\":\"宣威市\"}]},{\"id\":\"5304\",\"pid\":53,\"code\":\"530400000000\",\"name\":\"玉溪市\",\"childs\":[{\"id\":\"530402\",\"pid\":5304,\"code\":\"530402000000\",\"name\":\"红塔区\"},{\"id\":\"530403\",\"pid\":5304,\"code\":\"530403000000\",\"name\":\"江川区\"},{\"id\":\"530423\",\"pid\":5304,\"code\":\"530423000000\",\"name\":\"通海县\"},{\"id\":\"530424\",\"pid\":5304,\"code\":\"530424000000\",\"name\":\"华宁县\"},{\"id\":\"530425\",\"pid\":5304,\"code\":\"530425000000\",\"name\":\"易门县\"},{\"id\":\"530426\",\"pid\":5304,\"code\":\"530426000000\",\"name\":\"峨山彝族自治县\"},{\"id\":\"530427\",\"pid\":5304,\"code\":\"530427000000\",\"name\":\"新平彝族傣族自治县\"},{\"id\":\"530428\",\"pid\":5304,\"code\":\"530428000000\",\"name\":\"元江哈尼族彝族傣族自治县\"},{\"id\":\"530481\",\"pid\":5304,\"code\":\"530481000000\",\"name\":\"澄江市\"}]},{\"id\":\"5305\",\"pid\":53,\"code\":\"530500000000\",\"name\":\"保山市\",\"childs\":[{\"id\":\"530502\",\"pid\":5305,\"code\":\"530502000000\",\"name\":\"隆阳区\"},{\"id\":\"530521\",\"pid\":5305,\"code\":\"530521000000\",\"name\":\"施甸县\"},{\"id\":\"530523\",\"pid\":5305,\"code\":\"530523000000\",\"name\":\"龙陵县\"},{\"id\":\"530524\",\"pid\":5305,\"code\":\"530524000000\",\"name\":\"昌宁县\"},{\"id\":\"530581\",\"pid\":5305,\"code\":\"530581000000\",\"name\":\"腾冲市\"}]},{\"id\":\"5306\",\"pid\":53,\"code\":\"530600000000\",\"name\":\"昭通市\",\"childs\":[{\"id\":\"530602\",\"pid\":5306,\"code\":\"530602000000\",\"name\":\"昭阳区\"},{\"id\":\"530621\",\"pid\":5306,\"code\":\"530621000000\",\"name\":\"鲁甸县\"},{\"id\":\"530622\",\"pid\":5306,\"code\":\"530622000000\",\"name\":\"巧家县\"},{\"id\":\"530623\",\"pid\":5306,\"code\":\"530623000000\",\"name\":\"盐津县\"},{\"id\":\"530624\",\"pid\":5306,\"code\":\"530624000000\",\"name\":\"大关县\"},{\"id\":\"530625\",\"pid\":5306,\"code\":\"530625000000\",\"name\":\"永善县\"},{\"id\":\"530626\",\"pid\":5306,\"code\":\"530626000000\",\"name\":\"绥江县\"},{\"id\":\"530627\",\"pid\":5306,\"code\":\"530627000000\",\"name\":\"镇雄县\"},{\"id\":\"530628\",\"pid\":5306,\"code\":\"530628000000\",\"name\":\"彝良县\"},{\"id\":\"530629\",\"pid\":5306,\"code\":\"530629000000\",\"name\":\"威信县\"},{\"id\":\"530681\",\"pid\":5306,\"code\":\"530681000000\",\"name\":\"水富市\"}]},{\"id\":\"5307\",\"pid\":53,\"code\":\"530700000000\",\"name\":\"丽江市\",\"childs\":[{\"id\":\"530702\",\"pid\":5307,\"code\":\"530702000000\",\"name\":\"古城区\"},{\"id\":\"530721\",\"pid\":5307,\"code\":\"530721000000\",\"name\":\"玉龙纳西族自治县\"},{\"id\":\"530722\",\"pid\":5307,\"code\":\"530722000000\",\"name\":\"永胜县\"},{\"id\":\"530723\",\"pid\":5307,\"code\":\"530723000000\",\"name\":\"华坪县\"},{\"id\":\"530724\",\"pid\":5307,\"code\":\"530724000000\",\"name\":\"宁蒗彝族自治县\"}]},{\"id\":\"5308\",\"pid\":53,\"code\":\"530800000000\",\"name\":\"普洱市\",\"childs\":[{\"id\":\"530802\",\"pid\":5308,\"code\":\"530802000000\",\"name\":\"思茅区\"},{\"id\":\"530821\",\"pid\":5308,\"code\":\"530821000000\",\"name\":\"宁洱哈尼族彝族自治县\"},{\"id\":\"530822\",\"pid\":5308,\"code\":\"530822000000\",\"name\":\"墨江哈尼族自治县\"},{\"id\":\"530823\",\"pid\":5308,\"code\":\"530823000000\",\"name\":\"景东彝族自治县\"},{\"id\":\"530824\",\"pid\":5308,\"code\":\"530824000000\",\"name\":\"景谷傣族彝族自治县\"},{\"id\":\"530825\",\"pid\":5308,\"code\":\"530825000000\",\"name\":\"镇沅彝族哈尼族拉祜族自治县\"},{\"id\":\"530826\",\"pid\":5308,\"code\":\"530826000000\",\"name\":\"江城哈尼族彝族自治县\"},{\"id\":\"530827\",\"pid\":5308,\"code\":\"530827000000\",\"name\":\"孟连傣族拉祜族佤族自治县\"},{\"id\":\"530828\",\"pid\":5308,\"code\":\"530828000000\",\"name\":\"澜沧拉祜族自治县\"},{\"id\":\"530829\",\"pid\":5308,\"code\":\"530829000000\",\"name\":\"西盟佤族自治县\"}]},{\"id\":\"5309\",\"pid\":53,\"code\":\"530900000000\",\"name\":\"临沧市\",\"childs\":[{\"id\":\"530902\",\"pid\":5309,\"code\":\"530902000000\",\"name\":\"临翔区\"},{\"id\":\"530921\",\"pid\":5309,\"code\":\"530921000000\",\"name\":\"凤庆县\"},{\"id\":\"530922\",\"pid\":5309,\"code\":\"530922000000\",\"name\":\"云县\"},{\"id\":\"530923\",\"pid\":5309,\"code\":\"530923000000\",\"name\":\"永德县\"},{\"id\":\"530924\",\"pid\":5309,\"code\":\"530924000000\",\"name\":\"镇康县\"},{\"id\":\"530925\",\"pid\":5309,\"code\":\"530925000000\",\"name\":\"双江拉祜族佤族布朗族傣族自治县\"},{\"id\":\"530926\",\"pid\":5309,\"code\":\"530926000000\",\"name\":\"耿马傣族佤族自治县\"},{\"id\":\"530927\",\"pid\":5309,\"code\":\"530927000000\",\"name\":\"沧源佤族自治县\"}]},{\"id\":\"5323\",\"pid\":53,\"code\":\"532300000000\",\"name\":\"楚雄彝族自治州\",\"childs\":[{\"id\":\"532301\",\"pid\":5323,\"code\":\"532301000000\",\"name\":\"楚雄市\"},{\"id\":\"532302\",\"pid\":5323,\"code\":\"532302000000\",\"name\":\"禄丰市\"},{\"id\":\"532322\",\"pid\":5323,\"code\":\"532322000000\",\"name\":\"双柏县\"},{\"id\":\"532323\",\"pid\":5323,\"code\":\"532323000000\",\"name\":\"牟定县\"},{\"id\":\"532324\",\"pid\":5323,\"code\":\"532324000000\",\"name\":\"南华县\"},{\"id\":\"532325\",\"pid\":5323,\"code\":\"532325000000\",\"name\":\"姚安县\"},{\"id\":\"532326\",\"pid\":5323,\"code\":\"532326000000\",\"name\":\"大姚县\"},{\"id\":\"532327\",\"pid\":5323,\"code\":\"532327000000\",\"name\":\"永仁县\"},{\"id\":\"532328\",\"pid\":5323,\"code\":\"532328000000\",\"name\":\"元谋县\"},{\"id\":\"532329\",\"pid\":5323,\"code\":\"532329000000\",\"name\":\"武定县\"}]},{\"id\":\"5325\",\"pid\":53,\"code\":\"532500000000\",\"name\":\"红河哈尼族彝族自治州\",\"childs\":[{\"id\":\"532501\",\"pid\":5325,\"code\":\"532501000000\",\"name\":\"个旧市\"},{\"id\":\"532502\",\"pid\":5325,\"code\":\"532502000000\",\"name\":\"开远市\"},{\"id\":\"532503\",\"pid\":5325,\"code\":\"532503000000\",\"name\":\"蒙自市\"},{\"id\":\"532504\",\"pid\":5325,\"code\":\"532504000000\",\"name\":\"弥勒市\"},{\"id\":\"532523\",\"pid\":5325,\"code\":\"532523000000\",\"name\":\"屏边苗族自治县\"},{\"id\":\"532524\",\"pid\":5325,\"code\":\"532524000000\",\"name\":\"建水县\"},{\"id\":\"532525\",\"pid\":5325,\"code\":\"532525000000\",\"name\":\"石屏县\"},{\"id\":\"532527\",\"pid\":5325,\"code\":\"532527000000\",\"name\":\"泸西县\"},{\"id\":\"532528\",\"pid\":5325,\"code\":\"532528000000\",\"name\":\"元阳县\"},{\"id\":\"532529\",\"pid\":5325,\"code\":\"532529000000\",\"name\":\"红河县\"},{\"id\":\"532530\",\"pid\":5325,\"code\":\"532530000000\",\"name\":\"金平苗族瑶族傣族自治县\"},{\"id\":\"532531\",\"pid\":5325,\"code\":\"532531000000\",\"name\":\"绿春县\"},{\"id\":\"532532\",\"pid\":5325,\"code\":\"532532000000\",\"name\":\"河口瑶族自治县\"}]},{\"id\":\"5326\",\"pid\":53,\"code\":\"532600000000\",\"name\":\"文山壮族苗族自治州\",\"childs\":[{\"id\":\"532601\",\"pid\":5326,\"code\":\"532601000000\",\"name\":\"文山市\"},{\"id\":\"532622\",\"pid\":5326,\"code\":\"532622000000\",\"name\":\"砚山县\"},{\"id\":\"532623\",\"pid\":5326,\"code\":\"532623000000\",\"name\":\"西畴县\"},{\"id\":\"532624\",\"pid\":5326,\"code\":\"532624000000\",\"name\":\"麻栗坡县\"},{\"id\":\"532625\",\"pid\":5326,\"code\":\"532625000000\",\"name\":\"马关县\"},{\"id\":\"532626\",\"pid\":5326,\"code\":\"532626000000\",\"name\":\"丘北县\"},{\"id\":\"532627\",\"pid\":5326,\"code\":\"532627000000\",\"name\":\"广南县\"},{\"id\":\"532628\",\"pid\":5326,\"code\":\"532628000000\",\"name\":\"富宁县\"}]},{\"id\":\"5328\",\"pid\":53,\"code\":\"532800000000\",\"name\":\"西双版纳傣族自治州\",\"childs\":[{\"id\":\"532801\",\"pid\":5328,\"code\":\"532801000000\",\"name\":\"景洪市\"},{\"id\":\"532822\",\"pid\":5328,\"code\":\"532822000000\",\"name\":\"勐海县\"},{\"id\":\"532823\",\"pid\":5328,\"code\":\"532823000000\",\"name\":\"勐腊县\"}]},{\"id\":\"5329\",\"pid\":53,\"code\":\"532900000000\",\"name\":\"大理白族自治州\",\"childs\":[{\"id\":\"532901\",\"pid\":5329,\"code\":\"532901000000\",\"name\":\"大理市\"},{\"id\":\"532922\",\"pid\":5329,\"code\":\"532922000000\",\"name\":\"漾濞彝族自治县\"},{\"id\":\"532923\",\"pid\":5329,\"code\":\"532923000000\",\"name\":\"祥云县\"},{\"id\":\"532924\",\"pid\":5329,\"code\":\"532924000000\",\"name\":\"宾川县\"},{\"id\":\"532925\",\"pid\":5329,\"code\":\"532925000000\",\"name\":\"弥渡县\"},{\"id\":\"532926\",\"pid\":5329,\"code\":\"532926000000\",\"name\":\"南涧彝族自治县\"},{\"id\":\"532927\",\"pid\":5329,\"code\":\"532927000000\",\"name\":\"巍山彝族回族自治县\"},{\"id\":\"532928\",\"pid\":5329,\"code\":\"532928000000\",\"name\":\"永平县\"},{\"id\":\"532929\",\"pid\":5329,\"code\":\"532929000000\",\"name\":\"云龙县\"},{\"id\":\"532930\",\"pid\":5329,\"code\":\"532930000000\",\"name\":\"洱源县\"},{\"id\":\"532931\",\"pid\":5329,\"code\":\"532931000000\",\"name\":\"剑川县\"},{\"id\":\"532932\",\"pid\":5329,\"code\":\"532932000000\",\"name\":\"鹤庆县\"}]},{\"id\":\"5331\",\"pid\":53,\"code\":\"533100000000\",\"name\":\"德宏傣族景颇族自治州\",\"childs\":[{\"id\":\"533102\",\"pid\":5331,\"code\":\"533102000000\",\"name\":\"瑞丽市\"},{\"id\":\"533103\",\"pid\":5331,\"code\":\"533103000000\",\"name\":\"芒市\"},{\"id\":\"533122\",\"pid\":5331,\"code\":\"533122000000\",\"name\":\"梁河县\"},{\"id\":\"533123\",\"pid\":5331,\"code\":\"533123000000\",\"name\":\"盈江县\"},{\"id\":\"533124\",\"pid\":5331,\"code\":\"533124000000\",\"name\":\"陇川县\"}]},{\"id\":\"5333\",\"pid\":53,\"code\":\"533300000000\",\"name\":\"怒江傈僳族自治州\",\"childs\":[{\"id\":\"533301\",\"pid\":5333,\"code\":\"533301000000\",\"name\":\"泸水市\"},{\"id\":\"533323\",\"pid\":5333,\"code\":\"533323000000\",\"name\":\"福贡县\"},{\"id\":\"533324\",\"pid\":5333,\"code\":\"533324000000\",\"name\":\"贡山独龙族怒族自治县\"},{\"id\":\"533325\",\"pid\":5333,\"code\":\"533325000000\",\"name\":\"兰坪白族普米族自治县\"}]},{\"id\":\"5334\",\"pid\":53,\"code\":\"533400000000\",\"name\":\"迪庆藏族自治州\",\"childs\":[{\"id\":\"533401\",\"pid\":5334,\"code\":\"533401000000\",\"name\":\"香格里拉市\"},{\"id\":\"533422\",\"pid\":5334,\"code\":\"533422000000\",\"name\":\"德钦县\"},{\"id\":\"533423\",\"pid\":5334,\"code\":\"533423000000\",\"name\":\"维西傈僳族自治县\"}]}]},{\"id\":\"54\",\"pid\":0,\"code\":\"540000000000\",\"name\":\"西藏自治区\",\"childs\":[{\"id\":\"5401\",\"pid\":54,\"code\":\"540100000000\",\"name\":\"拉萨市\",\"childs\":[{\"id\":\"540102\",\"pid\":5401,\"code\":\"540102000000\",\"name\":\"城关区\"},{\"id\":\"540103\",\"pid\":5401,\"code\":\"540103000000\",\"name\":\"堆龙德庆区\"},{\"id\":\"540104\",\"pid\":5401,\"code\":\"540104000000\",\"name\":\"达孜区\"},{\"id\":\"540121\",\"pid\":5401,\"code\":\"540121000000\",\"name\":\"林周县\"},{\"id\":\"540122\",\"pid\":5401,\"code\":\"540122000000\",\"name\":\"当雄县\"},{\"id\":\"540123\",\"pid\":5401,\"code\":\"540123000000\",\"name\":\"尼木县\"},{\"id\":\"540124\",\"pid\":5401,\"code\":\"540124000000\",\"name\":\"曲水县\"},{\"id\":\"540127\",\"pid\":5401,\"code\":\"540127000000\",\"name\":\"墨竹工卡县\"}]},{\"id\":\"5402\",\"pid\":54,\"code\":\"540200000000\",\"name\":\"日喀则市\",\"childs\":[{\"id\":\"540202\",\"pid\":5402,\"code\":\"540202000000\",\"name\":\"桑珠孜区\"},{\"id\":\"540221\",\"pid\":5402,\"code\":\"540221000000\",\"name\":\"南木林县\"},{\"id\":\"540222\",\"pid\":5402,\"code\":\"540222000000\",\"name\":\"江孜县\"},{\"id\":\"540223\",\"pid\":5402,\"code\":\"540223000000\",\"name\":\"定日县\"},{\"id\":\"540224\",\"pid\":5402,\"code\":\"540224000000\",\"name\":\"萨迦县\"},{\"id\":\"540225\",\"pid\":5402,\"code\":\"540225000000\",\"name\":\"拉孜县\"},{\"id\":\"540226\",\"pid\":5402,\"code\":\"540226000000\",\"name\":\"昂仁县\"},{\"id\":\"540227\",\"pid\":5402,\"code\":\"540227000000\",\"name\":\"谢通门县\"},{\"id\":\"540228\",\"pid\":5402,\"code\":\"540228000000\",\"name\":\"白朗县\"},{\"id\":\"540229\",\"pid\":5402,\"code\":\"540229000000\",\"name\":\"仁布县\"},{\"id\":\"540230\",\"pid\":5402,\"code\":\"540230000000\",\"name\":\"康马县\"},{\"id\":\"540231\",\"pid\":5402,\"code\":\"540231000000\",\"name\":\"定结县\"},{\"id\":\"540232\",\"pid\":5402,\"code\":\"540232000000\",\"name\":\"仲巴县\"},{\"id\":\"540233\",\"pid\":5402,\"code\":\"540233000000\",\"name\":\"亚东县\"},{\"id\":\"540234\",\"pid\":5402,\"code\":\"540234000000\",\"name\":\"吉隆县\"},{\"id\":\"540235\",\"pid\":5402,\"code\":\"540235000000\",\"name\":\"聂拉木县\"},{\"id\":\"540236\",\"pid\":5402,\"code\":\"540236000000\",\"name\":\"萨嘎县\"},{\"id\":\"540237\",\"pid\":5402,\"code\":\"540237000000\",\"name\":\"岗巴县\"}]},{\"id\":\"5403\",\"pid\":54,\"code\":\"540300000000\",\"name\":\"昌都市\",\"childs\":[{\"id\":\"540302\",\"pid\":5403,\"code\":\"540302000000\",\"name\":\"卡若区\"},{\"id\":\"540321\",\"pid\":5403,\"code\":\"540321000000\",\"name\":\"江达县\"},{\"id\":\"540322\",\"pid\":5403,\"code\":\"540322000000\",\"name\":\"贡觉县\"},{\"id\":\"540323\",\"pid\":5403,\"code\":\"540323000000\",\"name\":\"类乌齐县\"},{\"id\":\"540324\",\"pid\":5403,\"code\":\"540324000000\",\"name\":\"丁青县\"},{\"id\":\"540325\",\"pid\":5403,\"code\":\"540325000000\",\"name\":\"察雅县\"},{\"id\":\"540326\",\"pid\":5403,\"code\":\"540326000000\",\"name\":\"八宿县\"},{\"id\":\"540327\",\"pid\":5403,\"code\":\"540327000000\",\"name\":\"左贡县\"},{\"id\":\"540328\",\"pid\":5403,\"code\":\"540328000000\",\"name\":\"芒康县\"},{\"id\":\"540329\",\"pid\":5403,\"code\":\"540329000000\",\"name\":\"洛隆县\"},{\"id\":\"540330\",\"pid\":5403,\"code\":\"540330000000\",\"name\":\"边坝县\"}]},{\"id\":\"5404\",\"pid\":54,\"code\":\"540400000000\",\"name\":\"林芝市\",\"childs\":[{\"id\":\"540402\",\"pid\":5404,\"code\":\"540402000000\",\"name\":\"巴宜区\"},{\"id\":\"540421\",\"pid\":5404,\"code\":\"540421000000\",\"name\":\"工布江达县\"},{\"id\":\"540422\",\"pid\":5404,\"code\":\"540422000000\",\"name\":\"米林市\"},{\"id\":\"540423\",\"pid\":5404,\"code\":\"540423000000\",\"name\":\"墨脱县\"},{\"id\":\"540424\",\"pid\":5404,\"code\":\"540424000000\",\"name\":\"波密县\"},{\"id\":\"540425\",\"pid\":5404,\"code\":\"540425000000\",\"name\":\"察隅县\"},{\"id\":\"540426\",\"pid\":5404,\"code\":\"540426000000\",\"name\":\"朗县\"}]},{\"id\":\"5405\",\"pid\":54,\"code\":\"540500000000\",\"name\":\"山南市\",\"childs\":[{\"id\":\"540502\",\"pid\":5405,\"code\":\"540502000000\",\"name\":\"乃东区\"},{\"id\":\"540521\",\"pid\":5405,\"code\":\"540521000000\",\"name\":\"扎囊县\"},{\"id\":\"540522\",\"pid\":5405,\"code\":\"540522000000\",\"name\":\"贡嘎县\"},{\"id\":\"540523\",\"pid\":5405,\"code\":\"540523000000\",\"name\":\"桑日县\"},{\"id\":\"540524\",\"pid\":5405,\"code\":\"540524000000\",\"name\":\"琼结县\"},{\"id\":\"540525\",\"pid\":5405,\"code\":\"540525000000\",\"name\":\"曲松县\"},{\"id\":\"540526\",\"pid\":5405,\"code\":\"540526000000\",\"name\":\"措美县\"},{\"id\":\"540527\",\"pid\":5405,\"code\":\"540527000000\",\"name\":\"洛扎县\"},{\"id\":\"540528\",\"pid\":5405,\"code\":\"540528000000\",\"name\":\"加查县\"},{\"id\":\"540529\",\"pid\":5405,\"code\":\"540529000000\",\"name\":\"隆子县\"},{\"id\":\"540530\",\"pid\":5405,\"code\":\"540530000000\",\"name\":\"错那市\"},{\"id\":\"540531\",\"pid\":5405,\"code\":\"540531000000\",\"name\":\"浪卡子县\"}]},{\"id\":\"5406\",\"pid\":54,\"code\":\"540600000000\",\"name\":\"那曲市\",\"childs\":[{\"id\":\"540602\",\"pid\":5406,\"code\":\"540602000000\",\"name\":\"色尼区\"},{\"id\":\"540621\",\"pid\":5406,\"code\":\"540621000000\",\"name\":\"嘉黎县\"},{\"id\":\"540622\",\"pid\":5406,\"code\":\"540622000000\",\"name\":\"比如县\"},{\"id\":\"540623\",\"pid\":5406,\"code\":\"540623000000\",\"name\":\"聂荣县\"},{\"id\":\"540624\",\"pid\":5406,\"code\":\"540624000000\",\"name\":\"安多县\"},{\"id\":\"540625\",\"pid\":5406,\"code\":\"540625000000\",\"name\":\"申扎县\"},{\"id\":\"540626\",\"pid\":5406,\"code\":\"540626000000\",\"name\":\"索县\"},{\"id\":\"540627\",\"pid\":5406,\"code\":\"540627000000\",\"name\":\"班戈县\"},{\"id\":\"540628\",\"pid\":5406,\"code\":\"540628000000\",\"name\":\"巴青县\"},{\"id\":\"540629\",\"pid\":5406,\"code\":\"540629000000\",\"name\":\"尼玛县\"},{\"id\":\"540630\",\"pid\":5406,\"code\":\"540630000000\",\"name\":\"双湖县\"}]},{\"id\":\"5425\",\"pid\":54,\"code\":\"542500000000\",\"name\":\"阿里地区\",\"childs\":[{\"id\":\"542521\",\"pid\":5425,\"code\":\"542521000000\",\"name\":\"普兰县\"},{\"id\":\"542522\",\"pid\":5425,\"code\":\"542522000000\",\"name\":\"札达县\"},{\"id\":\"542523\",\"pid\":5425,\"code\":\"542523000000\",\"name\":\"噶尔县\"},{\"id\":\"542524\",\"pid\":5425,\"code\":\"542524000000\",\"name\":\"日土县\"},{\"id\":\"542525\",\"pid\":5425,\"code\":\"542525000000\",\"name\":\"革吉县\"},{\"id\":\"542526\",\"pid\":5425,\"code\":\"542526000000\",\"name\":\"改则县\"},{\"id\":\"542527\",\"pid\":5425,\"code\":\"542527000000\",\"name\":\"措勤县\"}]}]},{\"id\":\"61\",\"pid\":0,\"code\":\"610000000000\",\"name\":\"陕西省\",\"childs\":[{\"id\":\"6101\",\"pid\":61,\"code\":\"610100000000\",\"name\":\"西安市\",\"childs\":[{\"id\":\"610102\",\"pid\":6101,\"code\":\"610102000000\",\"name\":\"新城区\"},{\"id\":\"610103\",\"pid\":6101,\"code\":\"610103000000\",\"name\":\"碑林区\"},{\"id\":\"610104\",\"pid\":6101,\"code\":\"610104000000\",\"name\":\"莲湖区\"},{\"id\":\"610111\",\"pid\":6101,\"code\":\"610111000000\",\"name\":\"灞桥区\"},{\"id\":\"610112\",\"pid\":6101,\"code\":\"610112000000\",\"name\":\"未央区\"},{\"id\":\"610113\",\"pid\":6101,\"code\":\"610113000000\",\"name\":\"雁塔区\"},{\"id\":\"610114\",\"pid\":6101,\"code\":\"610114000000\",\"name\":\"阎良区\"},{\"id\":\"610115\",\"pid\":6101,\"code\":\"610115000000\",\"name\":\"临潼区\"},{\"id\":\"610116\",\"pid\":6101,\"code\":\"610116000000\",\"name\":\"长安区\"},{\"id\":\"610117\",\"pid\":6101,\"code\":\"610117000000\",\"name\":\"高陵区\"},{\"id\":\"610118\",\"pid\":6101,\"code\":\"610118000000\",\"name\":\"鄠邑区\"},{\"id\":\"610122\",\"pid\":6101,\"code\":\"610122000000\",\"name\":\"蓝田县\"},{\"id\":\"610124\",\"pid\":6101,\"code\":\"610124000000\",\"name\":\"周至县\"}]},{\"id\":\"6102\",\"pid\":61,\"code\":\"610200000000\",\"name\":\"铜川市\",\"childs\":[{\"id\":\"610202\",\"pid\":6102,\"code\":\"610202000000\",\"name\":\"王益区\"},{\"id\":\"610203\",\"pid\":6102,\"code\":\"610203000000\",\"name\":\"印台区\"},{\"id\":\"610204\",\"pid\":6102,\"code\":\"610204000000\",\"name\":\"耀州区\"},{\"id\":\"610222\",\"pid\":6102,\"code\":\"610222000000\",\"name\":\"宜君县\"}]},{\"id\":\"6103\",\"pid\":61,\"code\":\"610300000000\",\"name\":\"宝鸡市\",\"childs\":[{\"id\":\"610302\",\"pid\":6103,\"code\":\"610302000000\",\"name\":\"渭滨区\"},{\"id\":\"610303\",\"pid\":6103,\"code\":\"610303000000\",\"name\":\"金台区\"},{\"id\":\"610304\",\"pid\":6103,\"code\":\"610304000000\",\"name\":\"陈仓区\"},{\"id\":\"610305\",\"pid\":6103,\"code\":\"610305000000\",\"name\":\"凤翔区\"},{\"id\":\"610323\",\"pid\":6103,\"code\":\"610323000000\",\"name\":\"岐山县\"},{\"id\":\"610324\",\"pid\":6103,\"code\":\"610324000000\",\"name\":\"扶风县\"},{\"id\":\"610326\",\"pid\":6103,\"code\":\"610326000000\",\"name\":\"眉县\"},{\"id\":\"610327\",\"pid\":6103,\"code\":\"610327000000\",\"name\":\"陇县\"},{\"id\":\"610328\",\"pid\":6103,\"code\":\"610328000000\",\"name\":\"千阳县\"},{\"id\":\"610329\",\"pid\":6103,\"code\":\"610329000000\",\"name\":\"麟游县\"},{\"id\":\"610330\",\"pid\":6103,\"code\":\"610330000000\",\"name\":\"凤县\"},{\"id\":\"610331\",\"pid\":6103,\"code\":\"610331000000\",\"name\":\"太白县\"}]},{\"id\":\"6104\",\"pid\":61,\"code\":\"610400000000\",\"name\":\"咸阳市\",\"childs\":[{\"id\":\"610402\",\"pid\":6104,\"code\":\"610402000000\",\"name\":\"秦都区\"},{\"id\":\"610403\",\"pid\":6104,\"code\":\"610403000000\",\"name\":\"杨陵区\"},{\"id\":\"610404\",\"pid\":6104,\"code\":\"610404000000\",\"name\":\"渭城区\"},{\"id\":\"610422\",\"pid\":6104,\"code\":\"610422000000\",\"name\":\"三原县\"},{\"id\":\"610423\",\"pid\":6104,\"code\":\"610423000000\",\"name\":\"泾阳县\"},{\"id\":\"610424\",\"pid\":6104,\"code\":\"610424000000\",\"name\":\"乾县\"},{\"id\":\"610425\",\"pid\":6104,\"code\":\"610425000000\",\"name\":\"礼泉县\"},{\"id\":\"610426\",\"pid\":6104,\"code\":\"610426000000\",\"name\":\"永寿县\"},{\"id\":\"610428\",\"pid\":6104,\"code\":\"610428000000\",\"name\":\"长武县\"},{\"id\":\"610429\",\"pid\":6104,\"code\":\"610429000000\",\"name\":\"旬邑县\"},{\"id\":\"610430\",\"pid\":6104,\"code\":\"610430000000\",\"name\":\"淳化县\"},{\"id\":\"610431\",\"pid\":6104,\"code\":\"610431000000\",\"name\":\"武功县\"},{\"id\":\"610481\",\"pid\":6104,\"code\":\"610481000000\",\"name\":\"兴平市\"},{\"id\":\"610482\",\"pid\":6104,\"code\":\"610482000000\",\"name\":\"彬州市\"}]},{\"id\":\"6105\",\"pid\":61,\"code\":\"610500000000\",\"name\":\"渭南市\",\"childs\":[{\"id\":\"610502\",\"pid\":6105,\"code\":\"610502000000\",\"name\":\"临渭区\"},{\"id\":\"610503\",\"pid\":6105,\"code\":\"610503000000\",\"name\":\"华州区\"},{\"id\":\"610522\",\"pid\":6105,\"code\":\"610522000000\",\"name\":\"潼关县\"},{\"id\":\"610523\",\"pid\":6105,\"code\":\"610523000000\",\"name\":\"大荔县\"},{\"id\":\"610524\",\"pid\":6105,\"code\":\"610524000000\",\"name\":\"合阳县\"},{\"id\":\"610525\",\"pid\":6105,\"code\":\"610525000000\",\"name\":\"澄城县\"},{\"id\":\"610526\",\"pid\":6105,\"code\":\"610526000000\",\"name\":\"蒲城县\"},{\"id\":\"610527\",\"pid\":6105,\"code\":\"610527000000\",\"name\":\"白水县\"},{\"id\":\"610528\",\"pid\":6105,\"code\":\"610528000000\",\"name\":\"富平县\"},{\"id\":\"610581\",\"pid\":6105,\"code\":\"610581000000\",\"name\":\"韩城市\"},{\"id\":\"610582\",\"pid\":6105,\"code\":\"610582000000\",\"name\":\"华阴市\"}]},{\"id\":\"6106\",\"pid\":61,\"code\":\"610600000000\",\"name\":\"延安市\",\"childs\":[{\"id\":\"610602\",\"pid\":6106,\"code\":\"610602000000\",\"name\":\"宝塔区\"},{\"id\":\"610603\",\"pid\":6106,\"code\":\"610603000000\",\"name\":\"安塞区\"},{\"id\":\"610621\",\"pid\":6106,\"code\":\"610621000000\",\"name\":\"延长县\"},{\"id\":\"610622\",\"pid\":6106,\"code\":\"610622000000\",\"name\":\"延川县\"},{\"id\":\"610625\",\"pid\":6106,\"code\":\"610625000000\",\"name\":\"志丹县\"},{\"id\":\"610626\",\"pid\":6106,\"code\":\"610626000000\",\"name\":\"吴起县\"},{\"id\":\"610627\",\"pid\":6106,\"code\":\"610627000000\",\"name\":\"甘泉县\"},{\"id\":\"610628\",\"pid\":6106,\"code\":\"610628000000\",\"name\":\"富县\"},{\"id\":\"610629\",\"pid\":6106,\"code\":\"610629000000\",\"name\":\"洛川县\"},{\"id\":\"610630\",\"pid\":6106,\"code\":\"610630000000\",\"name\":\"宜川县\"},{\"id\":\"610631\",\"pid\":6106,\"code\":\"610631000000\",\"name\":\"黄龙县\"},{\"id\":\"610632\",\"pid\":6106,\"code\":\"610632000000\",\"name\":\"黄陵县\"},{\"id\":\"610681\",\"pid\":6106,\"code\":\"610681000000\",\"name\":\"子长市\"}]},{\"id\":\"6107\",\"pid\":61,\"code\":\"610700000000\",\"name\":\"汉中市\",\"childs\":[{\"id\":\"610702\",\"pid\":6107,\"code\":\"610702000000\",\"name\":\"汉台区\"},{\"id\":\"610703\",\"pid\":6107,\"code\":\"610703000000\",\"name\":\"南郑区\"},{\"id\":\"610722\",\"pid\":6107,\"code\":\"610722000000\",\"name\":\"城固县\"},{\"id\":\"610723\",\"pid\":6107,\"code\":\"610723000000\",\"name\":\"洋县\"},{\"id\":\"610724\",\"pid\":6107,\"code\":\"610724000000\",\"name\":\"西乡县\"},{\"id\":\"610725\",\"pid\":6107,\"code\":\"610725000000\",\"name\":\"勉县\"},{\"id\":\"610726\",\"pid\":6107,\"code\":\"610726000000\",\"name\":\"宁强县\"},{\"id\":\"610727\",\"pid\":6107,\"code\":\"610727000000\",\"name\":\"略阳县\"},{\"id\":\"610728\",\"pid\":6107,\"code\":\"610728000000\",\"name\":\"镇巴县\"},{\"id\":\"610729\",\"pid\":6107,\"code\":\"610729000000\",\"name\":\"留坝县\"},{\"id\":\"610730\",\"pid\":6107,\"code\":\"610730000000\",\"name\":\"佛坪县\"}]},{\"id\":\"6108\",\"pid\":61,\"code\":\"610800000000\",\"name\":\"榆林市\",\"childs\":[{\"id\":\"610802\",\"pid\":6108,\"code\":\"610802000000\",\"name\":\"榆阳区\"},{\"id\":\"610803\",\"pid\":6108,\"code\":\"610803000000\",\"name\":\"横山区\"},{\"id\":\"610822\",\"pid\":6108,\"code\":\"610822000000\",\"name\":\"府谷县\"},{\"id\":\"610824\",\"pid\":6108,\"code\":\"610824000000\",\"name\":\"靖边县\"},{\"id\":\"610825\",\"pid\":6108,\"code\":\"610825000000\",\"name\":\"定边县\"},{\"id\":\"610826\",\"pid\":6108,\"code\":\"610826000000\",\"name\":\"绥德县\"},{\"id\":\"610827\",\"pid\":6108,\"code\":\"610827000000\",\"name\":\"米脂县\"},{\"id\":\"610828\",\"pid\":6108,\"code\":\"610828000000\",\"name\":\"佳县\"},{\"id\":\"610829\",\"pid\":6108,\"code\":\"610829000000\",\"name\":\"吴堡县\"},{\"id\":\"610830\",\"pid\":6108,\"code\":\"610830000000\",\"name\":\"清涧县\"},{\"id\":\"610831\",\"pid\":6108,\"code\":\"610831000000\",\"name\":\"子洲县\"},{\"id\":\"610881\",\"pid\":6108,\"code\":\"610881000000\",\"name\":\"神木市\"}]},{\"id\":\"6109\",\"pid\":61,\"code\":\"610900000000\",\"name\":\"安康市\",\"childs\":[{\"id\":\"610902\",\"pid\":6109,\"code\":\"610902000000\",\"name\":\"汉滨区\"},{\"id\":\"610921\",\"pid\":6109,\"code\":\"610921000000\",\"name\":\"汉阴县\"},{\"id\":\"610922\",\"pid\":6109,\"code\":\"610922000000\",\"name\":\"石泉县\"},{\"id\":\"610923\",\"pid\":6109,\"code\":\"610923000000\",\"name\":\"宁陕县\"},{\"id\":\"610924\",\"pid\":6109,\"code\":\"610924000000\",\"name\":\"紫阳县\"},{\"id\":\"610925\",\"pid\":6109,\"code\":\"610925000000\",\"name\":\"岚皋县\"},{\"id\":\"610926\",\"pid\":6109,\"code\":\"610926000000\",\"name\":\"平利县\"},{\"id\":\"610927\",\"pid\":6109,\"code\":\"610927000000\",\"name\":\"镇坪县\"},{\"id\":\"610929\",\"pid\":6109,\"code\":\"610929000000\",\"name\":\"白河县\"},{\"id\":\"610981\",\"pid\":6109,\"code\":\"610981000000\",\"name\":\"旬阳市\"}]},{\"id\":\"6110\",\"pid\":61,\"code\":\"611000000000\",\"name\":\"商洛市\",\"childs\":[{\"id\":\"611002\",\"pid\":6110,\"code\":\"611002000000\",\"name\":\"商州区\"},{\"id\":\"611021\",\"pid\":6110,\"code\":\"611021000000\",\"name\":\"洛南县\"},{\"id\":\"611022\",\"pid\":6110,\"code\":\"611022000000\",\"name\":\"丹凤县\"},{\"id\":\"611023\",\"pid\":6110,\"code\":\"611023000000\",\"name\":\"商南县\"},{\"id\":\"611024\",\"pid\":6110,\"code\":\"611024000000\",\"name\":\"山阳县\"},{\"id\":\"611025\",\"pid\":6110,\"code\":\"611025000000\",\"name\":\"镇安县\"},{\"id\":\"611026\",\"pid\":6110,\"code\":\"611026000000\",\"name\":\"柞水县\"}]}]},{\"id\":\"62\",\"pid\":0,\"code\":\"620000000000\",\"name\":\"甘肃省\",\"childs\":[{\"id\":\"6201\",\"pid\":62,\"code\":\"620100000000\",\"name\":\"兰州市\",\"childs\":[{\"id\":\"620102\",\"pid\":6201,\"code\":\"620102000000\",\"name\":\"城关区\"},{\"id\":\"620103\",\"pid\":6201,\"code\":\"620103000000\",\"name\":\"七里河区\"},{\"id\":\"620104\",\"pid\":6201,\"code\":\"620104000000\",\"name\":\"西固区\"},{\"id\":\"620105\",\"pid\":6201,\"code\":\"620105000000\",\"name\":\"安宁区\"},{\"id\":\"620111\",\"pid\":6201,\"code\":\"620111000000\",\"name\":\"红古区\"},{\"id\":\"620121\",\"pid\":6201,\"code\":\"620121000000\",\"name\":\"永登县\"},{\"id\":\"620122\",\"pid\":6201,\"code\":\"620122000000\",\"name\":\"皋兰县\"},{\"id\":\"620123\",\"pid\":6201,\"code\":\"620123000000\",\"name\":\"榆中县\"}]},{\"id\":\"6202\",\"pid\":62,\"code\":\"620200000000\",\"name\":\"嘉峪关市\",\"childs\":[{\"id\":\"620200\",\"pid\":6202,\"code\":\"620200000000\",\"name\":\"嘉峪关市\"}]},{\"id\":\"6203\",\"pid\":62,\"code\":\"620300000000\",\"name\":\"金昌市\",\"childs\":[{\"id\":\"620302\",\"pid\":6203,\"code\":\"620302000000\",\"name\":\"金川区\"},{\"id\":\"620321\",\"pid\":6203,\"code\":\"620321000000\",\"name\":\"永昌县\"}]},{\"id\":\"6204\",\"pid\":62,\"code\":\"620400000000\",\"name\":\"白银市\",\"childs\":[{\"id\":\"620402\",\"pid\":6204,\"code\":\"620402000000\",\"name\":\"白银区\"},{\"id\":\"620403\",\"pid\":6204,\"code\":\"620403000000\",\"name\":\"平川区\"},{\"id\":\"620421\",\"pid\":6204,\"code\":\"620421000000\",\"name\":\"靖远县\"},{\"id\":\"620422\",\"pid\":6204,\"code\":\"620422000000\",\"name\":\"会宁县\"},{\"id\":\"620423\",\"pid\":6204,\"code\":\"620423000000\",\"name\":\"景泰县\"}]},{\"id\":\"6205\",\"pid\":62,\"code\":\"620500000000\",\"name\":\"天水市\",\"childs\":[{\"id\":\"620502\",\"pid\":6205,\"code\":\"620502000000\",\"name\":\"秦州区\"},{\"id\":\"620503\",\"pid\":6205,\"code\":\"620503000000\",\"name\":\"麦积区\"},{\"id\":\"620521\",\"pid\":6205,\"code\":\"620521000000\",\"name\":\"清水县\"},{\"id\":\"620522\",\"pid\":6205,\"code\":\"620522000000\",\"name\":\"秦安县\"},{\"id\":\"620523\",\"pid\":6205,\"code\":\"620523000000\",\"name\":\"甘谷县\"},{\"id\":\"620524\",\"pid\":6205,\"code\":\"620524000000\",\"name\":\"武山县\"},{\"id\":\"620525\",\"pid\":6205,\"code\":\"620525000000\",\"name\":\"张家川回族自治县\"}]},{\"id\":\"6206\",\"pid\":62,\"code\":\"620600000000\",\"name\":\"武威市\",\"childs\":[{\"id\":\"620602\",\"pid\":6206,\"code\":\"620602000000\",\"name\":\"凉州区\"},{\"id\":\"620621\",\"pid\":6206,\"code\":\"620621000000\",\"name\":\"民勤县\"},{\"id\":\"620622\",\"pid\":6206,\"code\":\"620622000000\",\"name\":\"古浪县\"},{\"id\":\"620623\",\"pid\":6206,\"code\":\"620623000000\",\"name\":\"天祝藏族自治县\"}]},{\"id\":\"6207\",\"pid\":62,\"code\":\"620700000000\",\"name\":\"张掖市\",\"childs\":[{\"id\":\"620702\",\"pid\":6207,\"code\":\"620702000000\",\"name\":\"甘州区\"},{\"id\":\"620721\",\"pid\":6207,\"code\":\"620721000000\",\"name\":\"肃南裕固族自治县\"},{\"id\":\"620722\",\"pid\":6207,\"code\":\"620722000000\",\"name\":\"民乐县\"},{\"id\":\"620723\",\"pid\":6207,\"code\":\"620723000000\",\"name\":\"临泽县\"},{\"id\":\"620724\",\"pid\":6207,\"code\":\"620724000000\",\"name\":\"高台县\"},{\"id\":\"620725\",\"pid\":6207,\"code\":\"620725000000\",\"name\":\"山丹县\"}]},{\"id\":\"6208\",\"pid\":62,\"code\":\"620800000000\",\"name\":\"平凉市\",\"childs\":[{\"id\":\"620802\",\"pid\":6208,\"code\":\"620802000000\",\"name\":\"崆峒区\"},{\"id\":\"620821\",\"pid\":6208,\"code\":\"620821000000\",\"name\":\"泾川县\"},{\"id\":\"620822\",\"pid\":6208,\"code\":\"620822000000\",\"name\":\"灵台县\"},{\"id\":\"620823\",\"pid\":6208,\"code\":\"620823000000\",\"name\":\"崇信县\"},{\"id\":\"620825\",\"pid\":6208,\"code\":\"620825000000\",\"name\":\"庄浪县\"},{\"id\":\"620826\",\"pid\":6208,\"code\":\"620826000000\",\"name\":\"静宁县\"},{\"id\":\"620881\",\"pid\":6208,\"code\":\"620881000000\",\"name\":\"华亭市\"}]},{\"id\":\"6209\",\"pid\":62,\"code\":\"620900000000\",\"name\":\"酒泉市\",\"childs\":[{\"id\":\"620902\",\"pid\":6209,\"code\":\"620902000000\",\"name\":\"肃州区\"},{\"id\":\"620921\",\"pid\":6209,\"code\":\"620921000000\",\"name\":\"金塔县\"},{\"id\":\"620922\",\"pid\":6209,\"code\":\"620922000000\",\"name\":\"瓜州县\"},{\"id\":\"620923\",\"pid\":6209,\"code\":\"620923000000\",\"name\":\"肃北蒙古族自治县\"},{\"id\":\"620924\",\"pid\":6209,\"code\":\"620924000000\",\"name\":\"阿克塞哈萨克族自治县\"},{\"id\":\"620981\",\"pid\":6209,\"code\":\"620981000000\",\"name\":\"玉门市\"},{\"id\":\"620982\",\"pid\":6209,\"code\":\"620982000000\",\"name\":\"敦煌市\"}]},{\"id\":\"6210\",\"pid\":62,\"code\":\"621000000000\",\"name\":\"庆阳市\",\"childs\":[{\"id\":\"621002\",\"pid\":6210,\"code\":\"621002000000\",\"name\":\"西峰区\"},{\"id\":\"621021\",\"pid\":6210,\"code\":\"621021000000\",\"name\":\"庆城县\"},{\"id\":\"621022\",\"pid\":6210,\"code\":\"621022000000\",\"name\":\"环县\"},{\"id\":\"621023\",\"pid\":6210,\"code\":\"621023000000\",\"name\":\"华池县\"},{\"id\":\"621024\",\"pid\":6210,\"code\":\"621024000000\",\"name\":\"合水县\"},{\"id\":\"621025\",\"pid\":6210,\"code\":\"621025000000\",\"name\":\"正宁县\"},{\"id\":\"621026\",\"pid\":6210,\"code\":\"621026000000\",\"name\":\"宁县\"},{\"id\":\"621027\",\"pid\":6210,\"code\":\"621027000000\",\"name\":\"镇原县\"}]},{\"id\":\"6211\",\"pid\":62,\"code\":\"621100000000\",\"name\":\"定西市\",\"childs\":[{\"id\":\"621102\",\"pid\":6211,\"code\":\"621102000000\",\"name\":\"安定区\"},{\"id\":\"621121\",\"pid\":6211,\"code\":\"621121000000\",\"name\":\"通渭县\"},{\"id\":\"621122\",\"pid\":6211,\"code\":\"621122000000\",\"name\":\"陇西县\"},{\"id\":\"621123\",\"pid\":6211,\"code\":\"621123000000\",\"name\":\"渭源县\"},{\"id\":\"621124\",\"pid\":6211,\"code\":\"621124000000\",\"name\":\"临洮县\"},{\"id\":\"621125\",\"pid\":6211,\"code\":\"621125000000\",\"name\":\"漳县\"},{\"id\":\"621126\",\"pid\":6211,\"code\":\"621126000000\",\"name\":\"岷县\"}]},{\"id\":\"6212\",\"pid\":62,\"code\":\"621200000000\",\"name\":\"陇南市\",\"childs\":[{\"id\":\"621202\",\"pid\":6212,\"code\":\"621202000000\",\"name\":\"武都区\"},{\"id\":\"621221\",\"pid\":6212,\"code\":\"621221000000\",\"name\":\"成县\"},{\"id\":\"621222\",\"pid\":6212,\"code\":\"621222000000\",\"name\":\"文县\"},{\"id\":\"621223\",\"pid\":6212,\"code\":\"621223000000\",\"name\":\"宕昌县\"},{\"id\":\"621224\",\"pid\":6212,\"code\":\"621224000000\",\"name\":\"康县\"},{\"id\":\"621225\",\"pid\":6212,\"code\":\"621225000000\",\"name\":\"西和县\"},{\"id\":\"621226\",\"pid\":6212,\"code\":\"621226000000\",\"name\":\"礼县\"},{\"id\":\"621227\",\"pid\":6212,\"code\":\"621227000000\",\"name\":\"徽县\"},{\"id\":\"621228\",\"pid\":6212,\"code\":\"621228000000\",\"name\":\"两当县\"}]},{\"id\":\"6229\",\"pid\":62,\"code\":\"622900000000\",\"name\":\"临夏回族自治州\",\"childs\":[{\"id\":\"622901\",\"pid\":6229,\"code\":\"622901000000\",\"name\":\"临夏市\"},{\"id\":\"622921\",\"pid\":6229,\"code\":\"622921000000\",\"name\":\"临夏县\"},{\"id\":\"622922\",\"pid\":6229,\"code\":\"622922000000\",\"name\":\"康乐县\"},{\"id\":\"622923\",\"pid\":6229,\"code\":\"622923000000\",\"name\":\"永靖县\"},{\"id\":\"622924\",\"pid\":6229,\"code\":\"622924000000\",\"name\":\"广河县\"},{\"id\":\"622925\",\"pid\":6229,\"code\":\"622925000000\",\"name\":\"和政县\"},{\"id\":\"622926\",\"pid\":6229,\"code\":\"622926000000\",\"name\":\"东乡族自治县\"},{\"id\":\"622927\",\"pid\":6229,\"code\":\"622927000000\",\"name\":\"积石山保安族东乡族撒拉族自治县\"}]},{\"id\":\"6230\",\"pid\":62,\"code\":\"623000000000\",\"name\":\"甘南藏族自治州\",\"childs\":[{\"id\":\"623001\",\"pid\":6230,\"code\":\"623001000000\",\"name\":\"合作市\"},{\"id\":\"623021\",\"pid\":6230,\"code\":\"623021000000\",\"name\":\"临潭县\"},{\"id\":\"623022\",\"pid\":6230,\"code\":\"623022000000\",\"name\":\"卓尼县\"},{\"id\":\"623023\",\"pid\":6230,\"code\":\"623023000000\",\"name\":\"舟曲县\"},{\"id\":\"623024\",\"pid\":6230,\"code\":\"623024000000\",\"name\":\"迭部县\"},{\"id\":\"623025\",\"pid\":6230,\"code\":\"623025000000\",\"name\":\"玛曲县\"},{\"id\":\"623026\",\"pid\":6230,\"code\":\"623026000000\",\"name\":\"碌曲县\"},{\"id\":\"623027\",\"pid\":6230,\"code\":\"623027000000\",\"name\":\"夏河县\"}]}]},{\"id\":\"63\",\"pid\":0,\"code\":\"630000000000\",\"name\":\"青海省\",\"childs\":[{\"id\":\"6301\",\"pid\":63,\"code\":\"630100000000\",\"name\":\"西宁市\",\"childs\":[{\"id\":\"630102\",\"pid\":6301,\"code\":\"630102000000\",\"name\":\"城东区\"},{\"id\":\"630103\",\"pid\":6301,\"code\":\"630103000000\",\"name\":\"城中区\"},{\"id\":\"630104\",\"pid\":6301,\"code\":\"630104000000\",\"name\":\"城西区\"},{\"id\":\"630105\",\"pid\":6301,\"code\":\"630105000000\",\"name\":\"城北区\"},{\"id\":\"630106\",\"pid\":6301,\"code\":\"630106000000\",\"name\":\"湟中区\"},{\"id\":\"630121\",\"pid\":6301,\"code\":\"630121000000\",\"name\":\"大通回族土族自治县\"},{\"id\":\"630123\",\"pid\":6301,\"code\":\"630123000000\",\"name\":\"湟源县\"}]},{\"id\":\"6302\",\"pid\":63,\"code\":\"630200000000\",\"name\":\"海东市\",\"childs\":[{\"id\":\"630202\",\"pid\":6302,\"code\":\"630202000000\",\"name\":\"乐都区\"},{\"id\":\"630203\",\"pid\":6302,\"code\":\"630203000000\",\"name\":\"平安区\"},{\"id\":\"630222\",\"pid\":6302,\"code\":\"630222000000\",\"name\":\"民和回族土族自治县\"},{\"id\":\"630223\",\"pid\":6302,\"code\":\"630223000000\",\"name\":\"互助土族自治县\"},{\"id\":\"630224\",\"pid\":6302,\"code\":\"630224000000\",\"name\":\"化隆回族自治县\"},{\"id\":\"630225\",\"pid\":6302,\"code\":\"630225000000\",\"name\":\"循化撒拉族自治县\"}]},{\"id\":\"6322\",\"pid\":63,\"code\":\"632200000000\",\"name\":\"海北藏族自治州\",\"childs\":[{\"id\":\"632221\",\"pid\":6322,\"code\":\"632221000000\",\"name\":\"门源回族自治县\"},{\"id\":\"632222\",\"pid\":6322,\"code\":\"632222000000\",\"name\":\"祁连县\"},{\"id\":\"632223\",\"pid\":6322,\"code\":\"632223000000\",\"name\":\"海晏县\"},{\"id\":\"632224\",\"pid\":6322,\"code\":\"632224000000\",\"name\":\"刚察县\"}]},{\"id\":\"6323\",\"pid\":63,\"code\":\"632300000000\",\"name\":\"黄南藏族自治州\",\"childs\":[{\"id\":\"632301\",\"pid\":6323,\"code\":\"632301000000\",\"name\":\"同仁市\"},{\"id\":\"632322\",\"pid\":6323,\"code\":\"632322000000\",\"name\":\"尖扎县\"},{\"id\":\"632323\",\"pid\":6323,\"code\":\"632323000000\",\"name\":\"泽库县\"},{\"id\":\"632324\",\"pid\":6323,\"code\":\"632324000000\",\"name\":\"河南蒙古族自治县\"}]},{\"id\":\"6325\",\"pid\":63,\"code\":\"632500000000\",\"name\":\"海南藏族自治州\",\"childs\":[{\"id\":\"632521\",\"pid\":6325,\"code\":\"632521000000\",\"name\":\"共和县\"},{\"id\":\"632522\",\"pid\":6325,\"code\":\"632522000000\",\"name\":\"同德县\"},{\"id\":\"632523\",\"pid\":6325,\"code\":\"632523000000\",\"name\":\"贵德县\"},{\"id\":\"632524\",\"pid\":6325,\"code\":\"632524000000\",\"name\":\"兴海县\"},{\"id\":\"632525\",\"pid\":6325,\"code\":\"632525000000\",\"name\":\"贵南县\"}]},{\"id\":\"6326\",\"pid\":63,\"code\":\"632600000000\",\"name\":\"果洛藏族自治州\",\"childs\":[{\"id\":\"632621\",\"pid\":6326,\"code\":\"632621000000\",\"name\":\"玛沁县\"},{\"id\":\"632622\",\"pid\":6326,\"code\":\"632622000000\",\"name\":\"班玛县\"},{\"id\":\"632623\",\"pid\":6326,\"code\":\"632623000000\",\"name\":\"甘德县\"},{\"id\":\"632624\",\"pid\":6326,\"code\":\"632624000000\",\"name\":\"达日县\"},{\"id\":\"632625\",\"pid\":6326,\"code\":\"632625000000\",\"name\":\"久治县\"},{\"id\":\"632626\",\"pid\":6326,\"code\":\"632626000000\",\"name\":\"玛多县\"}]},{\"id\":\"6327\",\"pid\":63,\"code\":\"632700000000\",\"name\":\"玉树藏族自治州\",\"childs\":[{\"id\":\"632701\",\"pid\":6327,\"code\":\"632701000000\",\"name\":\"玉树市\"},{\"id\":\"632722\",\"pid\":6327,\"code\":\"632722000000\",\"name\":\"杂多县\"},{\"id\":\"632723\",\"pid\":6327,\"code\":\"632723000000\",\"name\":\"称多县\"},{\"id\":\"632724\",\"pid\":6327,\"code\":\"632724000000\",\"name\":\"治多县\"},{\"id\":\"632725\",\"pid\":6327,\"code\":\"632725000000\",\"name\":\"囊谦县\"},{\"id\":\"632726\",\"pid\":6327,\"code\":\"632726000000\",\"name\":\"曲麻莱县\"}]},{\"id\":\"6328\",\"pid\":63,\"code\":\"632800000000\",\"name\":\"海西蒙古族藏族自治州\",\"childs\":[{\"id\":\"632801\",\"pid\":6328,\"code\":\"632801000000\",\"name\":\"格尔木市\"},{\"id\":\"632802\",\"pid\":6328,\"code\":\"632802000000\",\"name\":\"德令哈市\"},{\"id\":\"632803\",\"pid\":6328,\"code\":\"632803000000\",\"name\":\"茫崖市\"},{\"id\":\"632821\",\"pid\":6328,\"code\":\"632821000000\",\"name\":\"乌兰县\"},{\"id\":\"632822\",\"pid\":6328,\"code\":\"632822000000\",\"name\":\"都兰县\"},{\"id\":\"632823\",\"pid\":6328,\"code\":\"632823000000\",\"name\":\"天峻县\"},{\"id\":\"632825\",\"pid\":6328,\"code\":\"632825000000\",\"name\":\"大柴旦行政委员会\"}]}]},{\"id\":\"64\",\"pid\":0,\"code\":\"640000000000\",\"name\":\"宁夏回族自治区\",\"childs\":[{\"id\":\"6401\",\"pid\":64,\"code\":\"640100000000\",\"name\":\"银川市\",\"childs\":[{\"id\":\"640104\",\"pid\":6401,\"code\":\"640104000000\",\"name\":\"兴庆区\"},{\"id\":\"640105\",\"pid\":6401,\"code\":\"640105000000\",\"name\":\"西夏区\"},{\"id\":\"640106\",\"pid\":6401,\"code\":\"640106000000\",\"name\":\"金凤区\"},{\"id\":\"640121\",\"pid\":6401,\"code\":\"640121000000\",\"name\":\"永宁县\"},{\"id\":\"640122\",\"pid\":6401,\"code\":\"640122000000\",\"name\":\"贺兰县\"},{\"id\":\"640181\",\"pid\":6401,\"code\":\"640181000000\",\"name\":\"灵武市\"}]},{\"id\":\"6402\",\"pid\":64,\"code\":\"640200000000\",\"name\":\"石嘴山市\",\"childs\":[{\"id\":\"640202\",\"pid\":6402,\"code\":\"640202000000\",\"name\":\"大武口区\"},{\"id\":\"640205\",\"pid\":6402,\"code\":\"640205000000\",\"name\":\"惠农区\"},{\"id\":\"640221\",\"pid\":6402,\"code\":\"640221000000\",\"name\":\"平罗县\"}]},{\"id\":\"6403\",\"pid\":64,\"code\":\"640300000000\",\"name\":\"吴忠市\",\"childs\":[{\"id\":\"640302\",\"pid\":6403,\"code\":\"640302000000\",\"name\":\"利通区\"},{\"id\":\"640303\",\"pid\":6403,\"code\":\"640303000000\",\"name\":\"红寺堡区\"},{\"id\":\"640323\",\"pid\":6403,\"code\":\"640323000000\",\"name\":\"盐池县\"},{\"id\":\"640324\",\"pid\":6403,\"code\":\"640324000000\",\"name\":\"同心县\"},{\"id\":\"640381\",\"pid\":6403,\"code\":\"640381000000\",\"name\":\"青铜峡市\"}]},{\"id\":\"6404\",\"pid\":64,\"code\":\"640400000000\",\"name\":\"固原市\",\"childs\":[{\"id\":\"640402\",\"pid\":6404,\"code\":\"640402000000\",\"name\":\"原州区\"},{\"id\":\"640422\",\"pid\":6404,\"code\":\"640422000000\",\"name\":\"西吉县\"},{\"id\":\"640423\",\"pid\":6404,\"code\":\"640423000000\",\"name\":\"隆德县\"},{\"id\":\"640424\",\"pid\":6404,\"code\":\"640424000000\",\"name\":\"泾源县\"},{\"id\":\"640425\",\"pid\":6404,\"code\":\"640425000000\",\"name\":\"彭阳县\"}]},{\"id\":\"6405\",\"pid\":64,\"code\":\"640500000000\",\"name\":\"中卫市\",\"childs\":[{\"id\":\"640502\",\"pid\":6405,\"code\":\"640502000000\",\"name\":\"沙坡头区\"},{\"id\":\"640521\",\"pid\":6405,\"code\":\"640521000000\",\"name\":\"中宁县\"},{\"id\":\"640522\",\"pid\":6405,\"code\":\"640522000000\",\"name\":\"海原县\"}]}]},{\"id\":\"65\",\"pid\":0,\"code\":\"650000000000\",\"name\":\"新疆维吾尔自治区\",\"childs\":[{\"id\":\"6501\",\"pid\":65,\"code\":\"650100000000\",\"name\":\"乌鲁木齐市\",\"childs\":[{\"id\":\"650102\",\"pid\":6501,\"code\":\"650102000000\",\"name\":\"天山区\"},{\"id\":\"650103\",\"pid\":6501,\"code\":\"650103000000\",\"name\":\"沙依巴克区\"},{\"id\":\"650104\",\"pid\":6501,\"code\":\"650104000000\",\"name\":\"新市区\"},{\"id\":\"650105\",\"pid\":6501,\"code\":\"650105000000\",\"name\":\"水磨沟区\"},{\"id\":\"650106\",\"pid\":6501,\"code\":\"650106000000\",\"name\":\"头屯河区\"},{\"id\":\"650107\",\"pid\":6501,\"code\":\"650107000000\",\"name\":\"达坂城区\"},{\"id\":\"650109\",\"pid\":6501,\"code\":\"650109000000\",\"name\":\"米东区\"},{\"id\":\"650121\",\"pid\":6501,\"code\":\"650121000000\",\"name\":\"乌鲁木齐县\"}]},{\"id\":\"6502\",\"pid\":65,\"code\":\"650200000000\",\"name\":\"克拉玛依市\",\"childs\":[{\"id\":\"650202\",\"pid\":6502,\"code\":\"650202000000\",\"name\":\"独山子区\"},{\"id\":\"650203\",\"pid\":6502,\"code\":\"650203000000\",\"name\":\"克拉玛依区\"},{\"id\":\"650204\",\"pid\":6502,\"code\":\"650204000000\",\"name\":\"白碱滩区\"},{\"id\":\"650205\",\"pid\":6502,\"code\":\"650205000000\",\"name\":\"乌尔禾区\"}]},{\"id\":\"6504\",\"pid\":65,\"code\":\"650400000000\",\"name\":\"吐鲁番市\",\"childs\":[{\"id\":\"650402\",\"pid\":6504,\"code\":\"650402000000\",\"name\":\"高昌区\"},{\"id\":\"650421\",\"pid\":6504,\"code\":\"650421000000\",\"name\":\"鄯善县\"},{\"id\":\"650422\",\"pid\":6504,\"code\":\"650422000000\",\"name\":\"托克逊县\"}]},{\"id\":\"6505\",\"pid\":65,\"code\":\"650500000000\",\"name\":\"哈密市\",\"childs\":[{\"id\":\"650502\",\"pid\":6505,\"code\":\"650502000000\",\"name\":\"伊州区\"},{\"id\":\"650521\",\"pid\":6505,\"code\":\"650521000000\",\"name\":\"巴里坤哈萨克自治县\"},{\"id\":\"650522\",\"pid\":6505,\"code\":\"650522000000\",\"name\":\"伊吾县\"}]},{\"id\":\"6523\",\"pid\":65,\"code\":\"652300000000\",\"name\":\"昌吉回族自治州\",\"childs\":[{\"id\":\"652301\",\"pid\":6523,\"code\":\"652301000000\",\"name\":\"昌吉市\"},{\"id\":\"652302\",\"pid\":6523,\"code\":\"652302000000\",\"name\":\"阜康市\"},{\"id\":\"652323\",\"pid\":6523,\"code\":\"652323000000\",\"name\":\"呼图壁县\"},{\"id\":\"652324\",\"pid\":6523,\"code\":\"652324000000\",\"name\":\"玛纳斯县\"},{\"id\":\"652325\",\"pid\":6523,\"code\":\"652325000000\",\"name\":\"奇台县\"},{\"id\":\"652327\",\"pid\":6523,\"code\":\"652327000000\",\"name\":\"吉木萨尔县\"},{\"id\":\"652328\",\"pid\":6523,\"code\":\"652328000000\",\"name\":\"木垒哈萨克自治县\"}]},{\"id\":\"6527\",\"pid\":65,\"code\":\"652700000000\",\"name\":\"博尔塔拉蒙古自治州\",\"childs\":[{\"id\":\"652701\",\"pid\":6527,\"code\":\"652701000000\",\"name\":\"博乐市\"},{\"id\":\"652702\",\"pid\":6527,\"code\":\"652702000000\",\"name\":\"阿拉山口市\"},{\"id\":\"652722\",\"pid\":6527,\"code\":\"652722000000\",\"name\":\"精河县\"},{\"id\":\"652723\",\"pid\":6527,\"code\":\"652723000000\",\"name\":\"温泉县\"}]},{\"id\":\"6528\",\"pid\":65,\"code\":\"652800000000\",\"name\":\"巴音郭楞蒙古自治州\",\"childs\":[{\"id\":\"652801\",\"pid\":6528,\"code\":\"652801000000\",\"name\":\"库尔勒市\"},{\"id\":\"652822\",\"pid\":6528,\"code\":\"652822000000\",\"name\":\"轮台县\"},{\"id\":\"652823\",\"pid\":6528,\"code\":\"652823000000\",\"name\":\"尉犁县\"},{\"id\":\"652824\",\"pid\":6528,\"code\":\"652824000000\",\"name\":\"若羌县\"},{\"id\":\"652825\",\"pid\":6528,\"code\":\"652825000000\",\"name\":\"且末县\"},{\"id\":\"652826\",\"pid\":6528,\"code\":\"652826000000\",\"name\":\"焉耆回族自治县\"},{\"id\":\"652827\",\"pid\":6528,\"code\":\"652827000000\",\"name\":\"和静县\"},{\"id\":\"652828\",\"pid\":6528,\"code\":\"652828000000\",\"name\":\"和硕县\"},{\"id\":\"652829\",\"pid\":6528,\"code\":\"652829000000\",\"name\":\"博湖县\"}]},{\"id\":\"6529\",\"pid\":65,\"code\":\"652900000000\",\"name\":\"阿克苏地区\",\"childs\":[{\"id\":\"652901\",\"pid\":6529,\"code\":\"652901000000\",\"name\":\"阿克苏市\"},{\"id\":\"652902\",\"pid\":6529,\"code\":\"652902000000\",\"name\":\"库车市\"},{\"id\":\"652922\",\"pid\":6529,\"code\":\"652922000000\",\"name\":\"温宿县\"},{\"id\":\"652924\",\"pid\":6529,\"code\":\"652924000000\",\"name\":\"沙雅县\"},{\"id\":\"652925\",\"pid\":6529,\"code\":\"652925000000\",\"name\":\"新和县\"},{\"id\":\"652926\",\"pid\":6529,\"code\":\"652926000000\",\"name\":\"拜城县\"},{\"id\":\"652927\",\"pid\":6529,\"code\":\"652927000000\",\"name\":\"乌什县\"},{\"id\":\"652928\",\"pid\":6529,\"code\":\"652928000000\",\"name\":\"阿瓦提县\"},{\"id\":\"652929\",\"pid\":6529,\"code\":\"652929000000\",\"name\":\"柯坪县\"}]},{\"id\":\"6530\",\"pid\":65,\"code\":\"653000000000\",\"name\":\"克孜勒苏柯尔克孜自治州\",\"childs\":[{\"id\":\"653001\",\"pid\":6530,\"code\":\"653001000000\",\"name\":\"阿图什市\"},{\"id\":\"653022\",\"pid\":6530,\"code\":\"653022000000\",\"name\":\"阿克陶县\"},{\"id\":\"653023\",\"pid\":6530,\"code\":\"653023000000\",\"name\":\"阿合奇县\"},{\"id\":\"653024\",\"pid\":6530,\"code\":\"653024000000\",\"name\":\"乌恰县\"}]},{\"id\":\"6531\",\"pid\":65,\"code\":\"653100000000\",\"name\":\"喀什地区\",\"childs\":[{\"id\":\"653101\",\"pid\":6531,\"code\":\"653101000000\",\"name\":\"喀什市\"},{\"id\":\"653121\",\"pid\":6531,\"code\":\"653121000000\",\"name\":\"疏附县\"},{\"id\":\"653122\",\"pid\":6531,\"code\":\"653122000000\",\"name\":\"疏勒县\"},{\"id\":\"653123\",\"pid\":6531,\"code\":\"653123000000\",\"name\":\"英吉沙县\"},{\"id\":\"653124\",\"pid\":6531,\"code\":\"653124000000\",\"name\":\"泽普县\"},{\"id\":\"653125\",\"pid\":6531,\"code\":\"653125000000\",\"name\":\"莎车县\"},{\"id\":\"653126\",\"pid\":6531,\"code\":\"653126000000\",\"name\":\"叶城县\"},{\"id\":\"653127\",\"pid\":6531,\"code\":\"653127000000\",\"name\":\"麦盖提县\"},{\"id\":\"653128\",\"pid\":6531,\"code\":\"653128000000\",\"name\":\"岳普湖县\"},{\"id\":\"653129\",\"pid\":6531,\"code\":\"653129000000\",\"name\":\"伽师县\"},{\"id\":\"653130\",\"pid\":6531,\"code\":\"653130000000\",\"name\":\"巴楚县\"},{\"id\":\"653131\",\"pid\":6531,\"code\":\"653131000000\",\"name\":\"塔什库尔干塔吉克自治县\"}]},{\"id\":\"6532\",\"pid\":65,\"code\":\"653200000000\",\"name\":\"和田地区\",\"childs\":[{\"id\":\"653201\",\"pid\":6532,\"code\":\"653201000000\",\"name\":\"和田市\"},{\"id\":\"653221\",\"pid\":6532,\"code\":\"653221000000\",\"name\":\"和田县\"},{\"id\":\"653222\",\"pid\":6532,\"code\":\"653222000000\",\"name\":\"墨玉县\"},{\"id\":\"653223\",\"pid\":6532,\"code\":\"653223000000\",\"name\":\"皮山县\"},{\"id\":\"653224\",\"pid\":6532,\"code\":\"653224000000\",\"name\":\"洛浦县\"},{\"id\":\"653225\",\"pid\":6532,\"code\":\"653225000000\",\"name\":\"策勒县\"},{\"id\":\"653226\",\"pid\":6532,\"code\":\"653226000000\",\"name\":\"于田县\"},{\"id\":\"653227\",\"pid\":6532,\"code\":\"653227000000\",\"name\":\"民丰县\"}]},{\"id\":\"6540\",\"pid\":65,\"code\":\"654000000000\",\"name\":\"伊犁哈萨克自治州\",\"childs\":[{\"id\":\"654002\",\"pid\":6540,\"code\":\"654002000000\",\"name\":\"伊宁市\"},{\"id\":\"654003\",\"pid\":6540,\"code\":\"654003000000\",\"name\":\"奎屯市\"},{\"id\":\"654004\",\"pid\":6540,\"code\":\"654004000000\",\"name\":\"霍尔果斯市\"},{\"id\":\"654021\",\"pid\":6540,\"code\":\"654021000000\",\"name\":\"伊宁县\"},{\"id\":\"654022\",\"pid\":6540,\"code\":\"654022000000\",\"name\":\"察布查尔锡伯自治县\"},{\"id\":\"654023\",\"pid\":6540,\"code\":\"654023000000\",\"name\":\"霍城县\"},{\"id\":\"654024\",\"pid\":6540,\"code\":\"654024000000\",\"name\":\"巩留县\"},{\"id\":\"654025\",\"pid\":6540,\"code\":\"654025000000\",\"name\":\"新源县\"},{\"id\":\"654026\",\"pid\":6540,\"code\":\"654026000000\",\"name\":\"昭苏县\"},{\"id\":\"654027\",\"pid\":6540,\"code\":\"654027000000\",\"name\":\"特克斯县\"},{\"id\":\"654028\",\"pid\":6540,\"code\":\"654028000000\",\"name\":\"尼勒克县\"}]},{\"id\":\"6542\",\"pid\":65,\"code\":\"654200000000\",\"name\":\"塔城地区\",\"childs\":[{\"id\":\"654201\",\"pid\":6542,\"code\":\"654201000000\",\"name\":\"塔城市\"},{\"id\":\"654202\",\"pid\":6542,\"code\":\"654202000000\",\"name\":\"乌苏市\"},{\"id\":\"654203\",\"pid\":6542,\"code\":\"654203000000\",\"name\":\"沙湾市\"},{\"id\":\"654221\",\"pid\":6542,\"code\":\"654221000000\",\"name\":\"额敏县\"},{\"id\":\"654224\",\"pid\":6542,\"code\":\"654224000000\",\"name\":\"托里县\"},{\"id\":\"654225\",\"pid\":6542,\"code\":\"654225000000\",\"name\":\"裕民县\"},{\"id\":\"654226\",\"pid\":6542,\"code\":\"654226000000\",\"name\":\"和布克赛尔蒙古自治县\"}]},{\"id\":\"6543\",\"pid\":65,\"code\":\"654300000000\",\"name\":\"阿勒泰地区\",\"childs\":[{\"id\":\"654301\",\"pid\":6543,\"code\":\"654301000000\",\"name\":\"阿勒泰市\"},{\"id\":\"654321\",\"pid\":6543,\"code\":\"654321000000\",\"name\":\"布尔津县\"},{\"id\":\"654322\",\"pid\":6543,\"code\":\"654322000000\",\"name\":\"富蕴县\"},{\"id\":\"654323\",\"pid\":6543,\"code\":\"654323000000\",\"name\":\"福海县\"},{\"id\":\"654324\",\"pid\":6543,\"code\":\"654324000000\",\"name\":\"哈巴河县\"},{\"id\":\"654325\",\"pid\":6543,\"code\":\"654325000000\",\"name\":\"青河县\"},{\"id\":\"654326\",\"pid\":6543,\"code\":\"654326000000\",\"name\":\"吉木乃县\"}]},{\"id\":\"659001\",\"pid\":65,\"code\":\"659001000000\",\"name\":\"石河子市\",\"childs\":[{\"id\":\"659001000\",\"pid\":659001,\"code\":\"659001000000\",\"name\":\"石河子市\"}]},{\"id\":\"659002\",\"pid\":65,\"code\":\"659002000000\",\"name\":\"阿拉尔市\",\"childs\":[{\"id\":\"659002000\",\"pid\":659002,\"code\":\"659002000000\",\"name\":\"阿拉尔市\"}]},{\"id\":\"659003\",\"pid\":65,\"code\":\"659003000000\",\"name\":\"图木舒克市\",\"childs\":[{\"id\":\"659003000\",\"pid\":659003,\"code\":\"659003000000\",\"name\":\"图木舒克市\"}]},{\"id\":\"659004\",\"pid\":65,\"code\":\"659004000000\",\"name\":\"五家渠市\",\"childs\":[{\"id\":\"659004000\",\"pid\":659004,\"code\":\"659004000000\",\"name\":\"五家渠市\"}]},{\"id\":\"659005\",\"pid\":65,\"code\":\"659005000000\",\"name\":\"北屯市\",\"childs\":[{\"id\":\"659005000\",\"pid\":659005,\"code\":\"659005000000\",\"name\":\"北屯市\"}]},{\"id\":\"659006\",\"pid\":65,\"code\":\"659006000000\",\"name\":\"铁门关市\",\"childs\":[{\"id\":\"659006000\",\"pid\":659006,\"code\":\"659006000000\",\"name\":\"铁门关市\"}]},{\"id\":\"659007\",\"pid\":65,\"code\":\"659007000000\",\"name\":\"双河市\",\"childs\":[{\"id\":\"659007000\",\"pid\":659007,\"code\":\"659007000000\",\"name\":\"双河市\"}]},{\"id\":\"659008\",\"pid\":65,\"code\":\"659008000000\",\"name\":\"可克达拉市\",\"childs\":[{\"id\":\"659008000\",\"pid\":659008,\"code\":\"659008000000\",\"name\":\"可克达拉市\"}]},{\"id\":\"659009\",\"pid\":65,\"code\":\"659009000000\",\"name\":\"昆玉市\",\"childs\":[{\"id\":\"659009000\",\"pid\":659009,\"code\":\"659009000000\",\"name\":\"昆玉市\"}]},{\"id\":\"659010\",\"pid\":65,\"code\":\"659010000000\",\"name\":\"胡杨河市\",\"childs\":[{\"id\":\"659010000\",\"pid\":659010,\"code\":\"659010000000\",\"name\":\"胡杨河市\"}]},{\"id\":\"659011\",\"pid\":65,\"code\":\"659011000000\",\"name\":\"新星市\",\"childs\":[{\"id\":\"659011000\",\"pid\":659011,\"code\":\"659011000000\",\"name\":\"新星市\"}]}]},{\"id\":\"71\",\"pid\":0,\"code\":\"710000000000\",\"name\":\"台湾省\",\"childs\":[{\"id\":\"7101\",\"pid\":71,\"code\":\"710100000000\",\"name\":\"台北市\",\"childs\":[{\"id\":\"710101\",\"pid\":7101,\"code\":\"710101000000\",\"name\":\"中正区\"},{\"id\":\"710102\",\"pid\":7101,\"code\":\"710102000000\",\"name\":\"大同区\"},{\"id\":\"710103\",\"pid\":7101,\"code\":\"710103000000\",\"name\":\"中山区\"},{\"id\":\"710104\",\"pid\":7101,\"code\":\"710104000000\",\"name\":\"松山区\"},{\"id\":\"710105\",\"pid\":7101,\"code\":\"710105000000\",\"name\":\"大安区\"},{\"id\":\"710106\",\"pid\":7101,\"code\":\"710106000000\",\"name\":\"万华区\"},{\"id\":\"710107\",\"pid\":7101,\"code\":\"710107000000\",\"name\":\"信义区\"},{\"id\":\"710108\",\"pid\":7101,\"code\":\"710108000000\",\"name\":\"士林区\"},{\"id\":\"710109\",\"pid\":7101,\"code\":\"710109000000\",\"name\":\"北投区\"},{\"id\":\"710110\",\"pid\":7101,\"code\":\"710110000000\",\"name\":\"内湖区\"},{\"id\":\"710111\",\"pid\":7101,\"code\":\"710111000000\",\"name\":\"南港区\"},{\"id\":\"710112\",\"pid\":7101,\"code\":\"710112000000\",\"name\":\"文山区\"}]},{\"id\":\"7102\",\"pid\":71,\"code\":\"710200000000\",\"name\":\"高雄市\",\"childs\":[{\"id\":\"710201\",\"pid\":7102,\"code\":\"710201000000\",\"name\":\"新兴区\"},{\"id\":\"710202\",\"pid\":7102,\"code\":\"710202000000\",\"name\":\"前金区\"},{\"id\":\"710203\",\"pid\":7102,\"code\":\"710203000000\",\"name\":\"苓雅区\"},{\"id\":\"710204\",\"pid\":7102,\"code\":\"710204000000\",\"name\":\"盐埕区\"},{\"id\":\"710205\",\"pid\":7102,\"code\":\"710205000000\",\"name\":\"鼓山区\"},{\"id\":\"710206\",\"pid\":7102,\"code\":\"710206000000\",\"name\":\"旗津区\"},{\"id\":\"710207\",\"pid\":7102,\"code\":\"710207000000\",\"name\":\"前镇区\"},{\"id\":\"710208\",\"pid\":7102,\"code\":\"710208000000\",\"name\":\"三民区\"},{\"id\":\"710209\",\"pid\":7102,\"code\":\"710209000000\",\"name\":\"左营区\"},{\"id\":\"710210\",\"pid\":7102,\"code\":\"710210000000\",\"name\":\"楠梓区\"},{\"id\":\"710211\",\"pid\":7102,\"code\":\"710211000000\",\"name\":\"小港区\"},{\"id\":\"710242\",\"pid\":7102,\"code\":\"710242000000\",\"name\":\"仁武区\"},{\"id\":\"710243\",\"pid\":7102,\"code\":\"710243000000\",\"name\":\"大社区\"},{\"id\":\"710244\",\"pid\":7102,\"code\":\"710244000000\",\"name\":\"冈山区\"},{\"id\":\"710245\",\"pid\":7102,\"code\":\"710245000000\",\"name\":\"路竹区\"},{\"id\":\"710246\",\"pid\":7102,\"code\":\"710246000000\",\"name\":\"阿莲区\"},{\"id\":\"710247\",\"pid\":7102,\"code\":\"710247000000\",\"name\":\"田寮区\"},{\"id\":\"710248\",\"pid\":7102,\"code\":\"710248000000\",\"name\":\"燕巢区\"},{\"id\":\"710249\",\"pid\":7102,\"code\":\"710249000000\",\"name\":\"桥头区\"},{\"id\":\"710250\",\"pid\":7102,\"code\":\"710250000000\",\"name\":\"梓官区\"},{\"id\":\"710251\",\"pid\":7102,\"code\":\"710251000000\",\"name\":\"弥陀区\"},{\"id\":\"710252\",\"pid\":7102,\"code\":\"710252000000\",\"name\":\"永安区\"},{\"id\":\"710253\",\"pid\":7102,\"code\":\"710253000000\",\"name\":\"湖内区\"},{\"id\":\"710254\",\"pid\":7102,\"code\":\"710254000000\",\"name\":\"凤山区\"},{\"id\":\"710255\",\"pid\":7102,\"code\":\"710255000000\",\"name\":\"大寮区\"},{\"id\":\"710256\",\"pid\":7102,\"code\":\"710256000000\",\"name\":\"林园区\"},{\"id\":\"710257\",\"pid\":7102,\"code\":\"710257000000\",\"name\":\"鸟松区\"},{\"id\":\"710258\",\"pid\":7102,\"code\":\"710258000000\",\"name\":\"大树区\"},{\"id\":\"710259\",\"pid\":7102,\"code\":\"710259000000\",\"name\":\"旗山区\"},{\"id\":\"710260\",\"pid\":7102,\"code\":\"710260000000\",\"name\":\"美浓区\"},{\"id\":\"710261\",\"pid\":7102,\"code\":\"710261000000\",\"name\":\"六龟区\"},{\"id\":\"710262\",\"pid\":7102,\"code\":\"710262000000\",\"name\":\"内门区\"},{\"id\":\"710263\",\"pid\":7102,\"code\":\"710263000000\",\"name\":\"杉林区\"},{\"id\":\"710264\",\"pid\":7102,\"code\":\"710264000000\",\"name\":\"甲仙区\"},{\"id\":\"710265\",\"pid\":7102,\"code\":\"710265000000\",\"name\":\"桃源区\"},{\"id\":\"710266\",\"pid\":7102,\"code\":\"710266000000\",\"name\":\"那玛夏区\"},{\"id\":\"710267\",\"pid\":7102,\"code\":\"710267000000\",\"name\":\"茂林区\"},{\"id\":\"710268\",\"pid\":7102,\"code\":\"710268000000\",\"name\":\"茄萣区\"}]},{\"id\":\"7103\",\"pid\":71,\"code\":\"710300000000\",\"name\":\"台南市\",\"childs\":[{\"id\":\"710301\",\"pid\":7103,\"code\":\"710301000000\",\"name\":\"中西区\"},{\"id\":\"710302\",\"pid\":7103,\"code\":\"710302000000\",\"name\":\"东区\"},{\"id\":\"710303\",\"pid\":7103,\"code\":\"710303000000\",\"name\":\"南区\"},{\"id\":\"710304\",\"pid\":7103,\"code\":\"710304000000\",\"name\":\"北区\"},{\"id\":\"710305\",\"pid\":7103,\"code\":\"710305000000\",\"name\":\"安平区\"},{\"id\":\"710306\",\"pid\":7103,\"code\":\"710306000000\",\"name\":\"安南区\"},{\"id\":\"710339\",\"pid\":7103,\"code\":\"710339000000\",\"name\":\"永康区\"},{\"id\":\"710340\",\"pid\":7103,\"code\":\"710340000000\",\"name\":\"归仁区\"},{\"id\":\"710341\",\"pid\":7103,\"code\":\"710341000000\",\"name\":\"新化区\"},{\"id\":\"710342\",\"pid\":7103,\"code\":\"710342000000\",\"name\":\"左镇区\"},{\"id\":\"710343\",\"pid\":7103,\"code\":\"710343000000\",\"name\":\"玉井区\"},{\"id\":\"710344\",\"pid\":7103,\"code\":\"710344000000\",\"name\":\"楠西区\"},{\"id\":\"710345\",\"pid\":7103,\"code\":\"710345000000\",\"name\":\"南化区\"},{\"id\":\"710346\",\"pid\":7103,\"code\":\"710346000000\",\"name\":\"仁德区\"},{\"id\":\"710347\",\"pid\":7103,\"code\":\"710347000000\",\"name\":\"关庙区\"},{\"id\":\"710348\",\"pid\":7103,\"code\":\"710348000000\",\"name\":\"龙崎区\"},{\"id\":\"710349\",\"pid\":7103,\"code\":\"710349000000\",\"name\":\"官田区\"},{\"id\":\"710350\",\"pid\":7103,\"code\":\"710350000000\",\"name\":\"麻豆区\"},{\"id\":\"710351\",\"pid\":7103,\"code\":\"710351000000\",\"name\":\"佳里区\"},{\"id\":\"710352\",\"pid\":7103,\"code\":\"710352000000\",\"name\":\"西港区\"},{\"id\":\"710353\",\"pid\":7103,\"code\":\"710353000000\",\"name\":\"七股区\"},{\"id\":\"710354\",\"pid\":7103,\"code\":\"710354000000\",\"name\":\"将军区\"},{\"id\":\"710355\",\"pid\":7103,\"code\":\"710355000000\",\"name\":\"学甲区\"},{\"id\":\"710356\",\"pid\":7103,\"code\":\"710356000000\",\"name\":\"北门区\"},{\"id\":\"710357\",\"pid\":7103,\"code\":\"710357000000\",\"name\":\"新营区\"},{\"id\":\"710358\",\"pid\":7103,\"code\":\"710358000000\",\"name\":\"后壁区\"},{\"id\":\"710359\",\"pid\":7103,\"code\":\"710359000000\",\"name\":\"白河区\"},{\"id\":\"710360\",\"pid\":7103,\"code\":\"710360000000\",\"name\":\"东山区\"},{\"id\":\"710361\",\"pid\":7103,\"code\":\"710361000000\",\"name\":\"六甲区\"},{\"id\":\"710362\",\"pid\":7103,\"code\":\"710362000000\",\"name\":\"下营区\"},{\"id\":\"710363\",\"pid\":7103,\"code\":\"710363000000\",\"name\":\"柳营区\"},{\"id\":\"710364\",\"pid\":7103,\"code\":\"710364000000\",\"name\":\"盐水区\"},{\"id\":\"710365\",\"pid\":7103,\"code\":\"710365000000\",\"name\":\"善化区\"},{\"id\":\"710366\",\"pid\":7103,\"code\":\"710366000000\",\"name\":\"大内区\"},{\"id\":\"710367\",\"pid\":7103,\"code\":\"710367000000\",\"name\":\"山上区\"},{\"id\":\"710368\",\"pid\":7103,\"code\":\"710368000000\",\"name\":\"新市区\"},{\"id\":\"710369\",\"pid\":7103,\"code\":\"710369000000\",\"name\":\"安定区\"}]},{\"id\":\"7104\",\"pid\":71,\"code\":\"710400000000\",\"name\":\"台中市\",\"childs\":[{\"id\":\"710401\",\"pid\":7104,\"code\":\"710401000000\",\"name\":\"中区\"},{\"id\":\"710402\",\"pid\":7104,\"code\":\"710402000000\",\"name\":\"东区\"},{\"id\":\"710403\",\"pid\":7104,\"code\":\"710403000000\",\"name\":\"南区\"},{\"id\":\"710404\",\"pid\":7104,\"code\":\"710404000000\",\"name\":\"西区\"},{\"id\":\"710405\",\"pid\":7104,\"code\":\"710405000000\",\"name\":\"北区\"},{\"id\":\"710406\",\"pid\":7104,\"code\":\"710406000000\",\"name\":\"北屯区\"},{\"id\":\"710407\",\"pid\":7104,\"code\":\"710407000000\",\"name\":\"西屯区\"},{\"id\":\"710408\",\"pid\":7104,\"code\":\"710408000000\",\"name\":\"南屯区\"},{\"id\":\"710431\",\"pid\":7104,\"code\":\"710431000000\",\"name\":\"太平区\"},{\"id\":\"710432\",\"pid\":7104,\"code\":\"710432000000\",\"name\":\"大里区\"},{\"id\":\"710433\",\"pid\":7104,\"code\":\"710433000000\",\"name\":\"雾峰区\"},{\"id\":\"710434\",\"pid\":7104,\"code\":\"710434000000\",\"name\":\"乌日区\"},{\"id\":\"710435\",\"pid\":7104,\"code\":\"710435000000\",\"name\":\"丰原区\"},{\"id\":\"710436\",\"pid\":7104,\"code\":\"710436000000\",\"name\":\"后里区\"},{\"id\":\"710437\",\"pid\":7104,\"code\":\"710437000000\",\"name\":\"石冈区\"},{\"id\":\"710438\",\"pid\":7104,\"code\":\"710438000000\",\"name\":\"东势区\"},{\"id\":\"710439\",\"pid\":7104,\"code\":\"710439000000\",\"name\":\"和平区\"},{\"id\":\"710440\",\"pid\":7104,\"code\":\"710440000000\",\"name\":\"新社区\"},{\"id\":\"710441\",\"pid\":7104,\"code\":\"710441000000\",\"name\":\"潭子区\"},{\"id\":\"710442\",\"pid\":7104,\"code\":\"710442000000\",\"name\":\"大雅区\"},{\"id\":\"710443\",\"pid\":7104,\"code\":\"710443000000\",\"name\":\"神冈区\"},{\"id\":\"710444\",\"pid\":7104,\"code\":\"710444000000\",\"name\":\"大肚区\"},{\"id\":\"710445\",\"pid\":7104,\"code\":\"710445000000\",\"name\":\"沙鹿区\"},{\"id\":\"710446\",\"pid\":7104,\"code\":\"710446000000\",\"name\":\"龙井区\"},{\"id\":\"710447\",\"pid\":7104,\"code\":\"710447000000\",\"name\":\"梧栖区\"},{\"id\":\"710448\",\"pid\":7104,\"code\":\"710448000000\",\"name\":\"清水区\"},{\"id\":\"710449\",\"pid\":7104,\"code\":\"710449000000\",\"name\":\"大甲区\"},{\"id\":\"710450\",\"pid\":7104,\"code\":\"710450000000\",\"name\":\"外埔区\"},{\"id\":\"710451\",\"pid\":7104,\"code\":\"710451000000\",\"name\":\"大安区\"}]},{\"id\":\"7106\",\"pid\":71,\"code\":\"710600000000\",\"name\":\"南投县\",\"childs\":[{\"id\":\"710614\",\"pid\":7106,\"code\":\"710614000000\",\"name\":\"南投市\"},{\"id\":\"710615\",\"pid\":7106,\"code\":\"710615000000\",\"name\":\"中寮乡\"},{\"id\":\"710616\",\"pid\":7106,\"code\":\"710616000000\",\"name\":\"草屯镇\"},{\"id\":\"710617\",\"pid\":7106,\"code\":\"710617000000\",\"name\":\"国姓乡\"},{\"id\":\"710618\",\"pid\":7106,\"code\":\"710618000000\",\"name\":\"埔里镇\"},{\"id\":\"710619\",\"pid\":7106,\"code\":\"710619000000\",\"name\":\"仁爱乡\"},{\"id\":\"710620\",\"pid\":7106,\"code\":\"710620000000\",\"name\":\"名间乡\"},{\"id\":\"710621\",\"pid\":7106,\"code\":\"710621000000\",\"name\":\"集集镇\"},{\"id\":\"710622\",\"pid\":7106,\"code\":\"710622000000\",\"name\":\"水里乡\"},{\"id\":\"710623\",\"pid\":7106,\"code\":\"710623000000\",\"name\":\"鱼池乡\"},{\"id\":\"710624\",\"pid\":7106,\"code\":\"710624000000\",\"name\":\"信义乡\"},{\"id\":\"710625\",\"pid\":7106,\"code\":\"710625000000\",\"name\":\"竹山镇\"},{\"id\":\"710626\",\"pid\":7106,\"code\":\"710626000000\",\"name\":\"鹿谷乡\"}]},{\"id\":\"7107\",\"pid\":71,\"code\":\"710700000000\",\"name\":\"基隆市\",\"childs\":[{\"id\":\"710701\",\"pid\":7107,\"code\":\"710701000000\",\"name\":\"仁爱区\"},{\"id\":\"710702\",\"pid\":7107,\"code\":\"710702000000\",\"name\":\"信义区\"},{\"id\":\"710703\",\"pid\":7107,\"code\":\"710703000000\",\"name\":\"中正区\"},{\"id\":\"710704\",\"pid\":7107,\"code\":\"710704000000\",\"name\":\"中山区\"},{\"id\":\"710705\",\"pid\":7107,\"code\":\"710705000000\",\"name\":\"安乐区\"},{\"id\":\"710706\",\"pid\":7107,\"code\":\"710706000000\",\"name\":\"暖暖区\"},{\"id\":\"710707\",\"pid\":7107,\"code\":\"710707000000\",\"name\":\"七堵区\"}]},{\"id\":\"7108\",\"pid\":71,\"code\":\"710800000000\",\"name\":\"新竹市\",\"childs\":[{\"id\":\"710801\",\"pid\":7108,\"code\":\"710801000000\",\"name\":\"东区\"},{\"id\":\"710802\",\"pid\":7108,\"code\":\"710802000000\",\"name\":\"北区\"},{\"id\":\"710803\",\"pid\":7108,\"code\":\"710803000000\",\"name\":\"香山区\"}]},{\"id\":\"7109\",\"pid\":71,\"code\":\"710900000000\",\"name\":\"嘉义市\",\"childs\":[{\"id\":\"710901\",\"pid\":7109,\"code\":\"710901000000\",\"name\":\"东区\"},{\"id\":\"710902\",\"pid\":7109,\"code\":\"710902000000\",\"name\":\"西区\"}]},{\"id\":\"7111\",\"pid\":71,\"code\":\"711100000000\",\"name\":\"新北市\",\"childs\":[{\"id\":\"711130\",\"pid\":7111,\"code\":\"711130000000\",\"name\":\"万里区\"},{\"id\":\"711131\",\"pid\":7111,\"code\":\"711131000000\",\"name\":\"金山区\"},{\"id\":\"711132\",\"pid\":7111,\"code\":\"711132000000\",\"name\":\"板桥区\"},{\"id\":\"711133\",\"pid\":7111,\"code\":\"711133000000\",\"name\":\"汐止区\"},{\"id\":\"711134\",\"pid\":7111,\"code\":\"711134000000\",\"name\":\"深坑区\"},{\"id\":\"711135\",\"pid\":7111,\"code\":\"711135000000\",\"name\":\"石碇区\"},{\"id\":\"711136\",\"pid\":7111,\"code\":\"711136000000\",\"name\":\"瑞芳区\"},{\"id\":\"711137\",\"pid\":7111,\"code\":\"711137000000\",\"name\":\"平溪区\"},{\"id\":\"711138\",\"pid\":7111,\"code\":\"711138000000\",\"name\":\"双溪区\"},{\"id\":\"711139\",\"pid\":7111,\"code\":\"711139000000\",\"name\":\"贡寮区\"},{\"id\":\"711140\",\"pid\":7111,\"code\":\"711140000000\",\"name\":\"新店区\"},{\"id\":\"711141\",\"pid\":7111,\"code\":\"711141000000\",\"name\":\"坪林区\"},{\"id\":\"711142\",\"pid\":7111,\"code\":\"711142000000\",\"name\":\"乌来区\"},{\"id\":\"711143\",\"pid\":7111,\"code\":\"711143000000\",\"name\":\"永和区\"},{\"id\":\"711144\",\"pid\":7111,\"code\":\"711144000000\",\"name\":\"中和区\"},{\"id\":\"711145\",\"pid\":7111,\"code\":\"711145000000\",\"name\":\"土城区\"},{\"id\":\"711146\",\"pid\":7111,\"code\":\"711146000000\",\"name\":\"三峡区\"},{\"id\":\"711147\",\"pid\":7111,\"code\":\"711147000000\",\"name\":\"树林区\"},{\"id\":\"711148\",\"pid\":7111,\"code\":\"711148000000\",\"name\":\"莺歌区\"},{\"id\":\"711149\",\"pid\":7111,\"code\":\"711149000000\",\"name\":\"三重区\"},{\"id\":\"711150\",\"pid\":7111,\"code\":\"711150000000\",\"name\":\"新庄区\"},{\"id\":\"711151\",\"pid\":7111,\"code\":\"711151000000\",\"name\":\"泰山区\"},{\"id\":\"711152\",\"pid\":7111,\"code\":\"711152000000\",\"name\":\"林口区\"},{\"id\":\"711153\",\"pid\":7111,\"code\":\"711153000000\",\"name\":\"芦洲区\"},{\"id\":\"711154\",\"pid\":7111,\"code\":\"711154000000\",\"name\":\"五股区\"},{\"id\":\"711155\",\"pid\":7111,\"code\":\"711155000000\",\"name\":\"八里区\"},{\"id\":\"711156\",\"pid\":7111,\"code\":\"711156000000\",\"name\":\"淡水区\"},{\"id\":\"711157\",\"pid\":7111,\"code\":\"711157000000\",\"name\":\"三芝区\"},{\"id\":\"711158\",\"pid\":7111,\"code\":\"711158000000\",\"name\":\"石门区\"}]},{\"id\":\"7112\",\"pid\":71,\"code\":\"711200000000\",\"name\":\"宜兰县\",\"childs\":[{\"id\":\"711214\",\"pid\":7112,\"code\":\"711214000000\",\"name\":\"宜兰市\"},{\"id\":\"711215\",\"pid\":7112,\"code\":\"711215000000\",\"name\":\"头城镇\"},{\"id\":\"711216\",\"pid\":7112,\"code\":\"711216000000\",\"name\":\"礁溪乡\"},{\"id\":\"711217\",\"pid\":7112,\"code\":\"711217000000\",\"name\":\"壮围乡\"},{\"id\":\"711218\",\"pid\":7112,\"code\":\"711218000000\",\"name\":\"员山乡\"},{\"id\":\"711219\",\"pid\":7112,\"code\":\"711219000000\",\"name\":\"罗东镇\"},{\"id\":\"711220\",\"pid\":7112,\"code\":\"711220000000\",\"name\":\"三星乡\"},{\"id\":\"711221\",\"pid\":7112,\"code\":\"711221000000\",\"name\":\"大同乡\"},{\"id\":\"711222\",\"pid\":7112,\"code\":\"711222000000\",\"name\":\"五结乡\"},{\"id\":\"711223\",\"pid\":7112,\"code\":\"711223000000\",\"name\":\"冬山乡\"},{\"id\":\"711224\",\"pid\":7112,\"code\":\"711224000000\",\"name\":\"苏澳镇\"},{\"id\":\"711225\",\"pid\":7112,\"code\":\"711225000000\",\"name\":\"南澳乡\"}]},{\"id\":\"7113\",\"pid\":71,\"code\":\"711300000000\",\"name\":\"新竹县\",\"childs\":[{\"id\":\"711314\",\"pid\":7113,\"code\":\"711314000000\",\"name\":\"竹北市\"},{\"id\":\"711315\",\"pid\":7113,\"code\":\"711315000000\",\"name\":\"湖口乡\"},{\"id\":\"711316\",\"pid\":7113,\"code\":\"711316000000\",\"name\":\"新丰乡\"},{\"id\":\"711317\",\"pid\":7113,\"code\":\"711317000000\",\"name\":\"新埔镇\"},{\"id\":\"711318\",\"pid\":7113,\"code\":\"711318000000\",\"name\":\"关西镇\"},{\"id\":\"711319\",\"pid\":7113,\"code\":\"711319000000\",\"name\":\"芎林乡\"},{\"id\":\"711320\",\"pid\":7113,\"code\":\"711320000000\",\"name\":\"宝山乡\"},{\"id\":\"711321\",\"pid\":7113,\"code\":\"711321000000\",\"name\":\"竹东镇\"},{\"id\":\"711322\",\"pid\":7113,\"code\":\"711322000000\",\"name\":\"五峰乡\"},{\"id\":\"711323\",\"pid\":7113,\"code\":\"711323000000\",\"name\":\"横山乡\"},{\"id\":\"711324\",\"pid\":7113,\"code\":\"711324000000\",\"name\":\"尖石乡\"},{\"id\":\"711325\",\"pid\":7113,\"code\":\"711325000000\",\"name\":\"北埔乡\"},{\"id\":\"711326\",\"pid\":7113,\"code\":\"711326000000\",\"name\":\"峨眉乡\"}]},{\"id\":\"7114\",\"pid\":71,\"code\":\"711400000000\",\"name\":\"桃园市\",\"childs\":[{\"id\":\"711414\",\"pid\":7114,\"code\":\"711414000000\",\"name\":\"中坜区\"},{\"id\":\"711415\",\"pid\":7114,\"code\":\"711415000000\",\"name\":\"平镇区\"},{\"id\":\"711416\",\"pid\":7114,\"code\":\"711416000000\",\"name\":\"龙潭区\"},{\"id\":\"711417\",\"pid\":7114,\"code\":\"711417000000\",\"name\":\"杨梅区\"},{\"id\":\"711418\",\"pid\":7114,\"code\":\"711418000000\",\"name\":\"新屋区\"},{\"id\":\"711419\",\"pid\":7114,\"code\":\"711419000000\",\"name\":\"观音区\"},{\"id\":\"711420\",\"pid\":7114,\"code\":\"711420000000\",\"name\":\"桃园区\"},{\"id\":\"711421\",\"pid\":7114,\"code\":\"711421000000\",\"name\":\"龟山区\"},{\"id\":\"711422\",\"pid\":7114,\"code\":\"711422000000\",\"name\":\"八德区\"},{\"id\":\"711423\",\"pid\":7114,\"code\":\"711423000000\",\"name\":\"大溪区\"},{\"id\":\"711424\",\"pid\":7114,\"code\":\"711424000000\",\"name\":\"复兴区\"},{\"id\":\"711425\",\"pid\":7114,\"code\":\"711425000000\",\"name\":\"大园区\"},{\"id\":\"711426\",\"pid\":7114,\"code\":\"711426000000\",\"name\":\"芦竹区\"}]},{\"id\":\"7115\",\"pid\":71,\"code\":\"711500000000\",\"name\":\"苗栗县\",\"childs\":[{\"id\":\"711519\",\"pid\":7115,\"code\":\"711519000000\",\"name\":\"竹南镇\"},{\"id\":\"711520\",\"pid\":7115,\"code\":\"711520000000\",\"name\":\"头份市\"},{\"id\":\"711521\",\"pid\":7115,\"code\":\"711521000000\",\"name\":\"三湾乡\"},{\"id\":\"711522\",\"pid\":7115,\"code\":\"711522000000\",\"name\":\"南庄乡\"},{\"id\":\"711523\",\"pid\":7115,\"code\":\"711523000000\",\"name\":\"狮潭乡\"},{\"id\":\"711524\",\"pid\":7115,\"code\":\"711524000000\",\"name\":\"后龙镇\"},{\"id\":\"711525\",\"pid\":7115,\"code\":\"711525000000\",\"name\":\"通霄镇\"},{\"id\":\"711526\",\"pid\":7115,\"code\":\"711526000000\",\"name\":\"苑里镇\"},{\"id\":\"711527\",\"pid\":7115,\"code\":\"711527000000\",\"name\":\"苗栗市\"},{\"id\":\"711528\",\"pid\":7115,\"code\":\"711528000000\",\"name\":\"造桥乡\"},{\"id\":\"711529\",\"pid\":7115,\"code\":\"711529000000\",\"name\":\"头屋乡\"},{\"id\":\"711530\",\"pid\":7115,\"code\":\"711530000000\",\"name\":\"公馆乡\"},{\"id\":\"711531\",\"pid\":7115,\"code\":\"711531000000\",\"name\":\"大湖乡\"},{\"id\":\"711532\",\"pid\":7115,\"code\":\"711532000000\",\"name\":\"泰安乡\"},{\"id\":\"711533\",\"pid\":7115,\"code\":\"711533000000\",\"name\":\"铜锣乡\"},{\"id\":\"711534\",\"pid\":7115,\"code\":\"711534000000\",\"name\":\"三义乡\"},{\"id\":\"711535\",\"pid\":7115,\"code\":\"711535000000\",\"name\":\"西湖乡\"},{\"id\":\"711536\",\"pid\":7115,\"code\":\"711536000000\",\"name\":\"卓兰镇\"}]},{\"id\":\"7117\",\"pid\":71,\"code\":\"711700000000\",\"name\":\"彰化县\",\"childs\":[{\"id\":\"711727\",\"pid\":7117,\"code\":\"711727000000\",\"name\":\"彰化市\"},{\"id\":\"711728\",\"pid\":7117,\"code\":\"711728000000\",\"name\":\"芬园乡\"},{\"id\":\"711729\",\"pid\":7117,\"code\":\"711729000000\",\"name\":\"花坛乡\"},{\"id\":\"711730\",\"pid\":7117,\"code\":\"711730000000\",\"name\":\"秀水乡\"},{\"id\":\"711731\",\"pid\":7117,\"code\":\"711731000000\",\"name\":\"鹿港镇\"},{\"id\":\"711732\",\"pid\":7117,\"code\":\"711732000000\",\"name\":\"福兴乡\"},{\"id\":\"711733\",\"pid\":7117,\"code\":\"711733000000\",\"name\":\"线西乡\"},{\"id\":\"711734\",\"pid\":7117,\"code\":\"711734000000\",\"name\":\"和美镇\"},{\"id\":\"711735\",\"pid\":7117,\"code\":\"711735000000\",\"name\":\"伸港乡\"},{\"id\":\"711736\",\"pid\":7117,\"code\":\"711736000000\",\"name\":\"员林市\"},{\"id\":\"711737\",\"pid\":7117,\"code\":\"711737000000\",\"name\":\"社头乡\"},{\"id\":\"711738\",\"pid\":7117,\"code\":\"711738000000\",\"name\":\"永靖乡\"},{\"id\":\"711739\",\"pid\":7117,\"code\":\"711739000000\",\"name\":\"埔心乡\"},{\"id\":\"711740\",\"pid\":7117,\"code\":\"711740000000\",\"name\":\"溪湖镇\"},{\"id\":\"711741\",\"pid\":7117,\"code\":\"711741000000\",\"name\":\"大村乡\"},{\"id\":\"711742\",\"pid\":7117,\"code\":\"711742000000\",\"name\":\"埔盐乡\"},{\"id\":\"711743\",\"pid\":7117,\"code\":\"711743000000\",\"name\":\"田中镇\"},{\"id\":\"711744\",\"pid\":7117,\"code\":\"711744000000\",\"name\":\"北斗镇\"},{\"id\":\"711745\",\"pid\":7117,\"code\":\"711745000000\",\"name\":\"田尾乡\"},{\"id\":\"711746\",\"pid\":7117,\"code\":\"711746000000\",\"name\":\"埤头乡\"},{\"id\":\"711747\",\"pid\":7117,\"code\":\"711747000000\",\"name\":\"溪州乡\"},{\"id\":\"711748\",\"pid\":7117,\"code\":\"711748000000\",\"name\":\"竹塘乡\"},{\"id\":\"711749\",\"pid\":7117,\"code\":\"711749000000\",\"name\":\"二林镇\"},{\"id\":\"711750\",\"pid\":7117,\"code\":\"711750000000\",\"name\":\"大城乡\"},{\"id\":\"711751\",\"pid\":7117,\"code\":\"711751000000\",\"name\":\"芳苑乡\"},{\"id\":\"711752\",\"pid\":7117,\"code\":\"711752000000\",\"name\":\"二水乡\"}]},{\"id\":\"7119\",\"pid\":71,\"code\":\"711900000000\",\"name\":\"嘉义县\",\"childs\":[{\"id\":\"711919\",\"pid\":7119,\"code\":\"711919000000\",\"name\":\"番路乡\"},{\"id\":\"711920\",\"pid\":7119,\"code\":\"711920000000\",\"name\":\"梅山乡\"},{\"id\":\"711921\",\"pid\":7119,\"code\":\"711921000000\",\"name\":\"竹崎乡\"},{\"id\":\"711922\",\"pid\":7119,\"code\":\"711922000000\",\"name\":\"阿里山乡\"},{\"id\":\"711923\",\"pid\":7119,\"code\":\"711923000000\",\"name\":\"中埔乡\"},{\"id\":\"711924\",\"pid\":7119,\"code\":\"711924000000\",\"name\":\"大埔乡\"},{\"id\":\"711925\",\"pid\":7119,\"code\":\"711925000000\",\"name\":\"水上乡\"},{\"id\":\"711926\",\"pid\":7119,\"code\":\"711926000000\",\"name\":\"鹿草乡\"},{\"id\":\"711927\",\"pid\":7119,\"code\":\"711927000000\",\"name\":\"太保市\"},{\"id\":\"711928\",\"pid\":7119,\"code\":\"711928000000\",\"name\":\"朴子市\"},{\"id\":\"711929\",\"pid\":7119,\"code\":\"711929000000\",\"name\":\"东石乡\"},{\"id\":\"711930\",\"pid\":7119,\"code\":\"711930000000\",\"name\":\"六脚乡\"},{\"id\":\"711931\",\"pid\":7119,\"code\":\"711931000000\",\"name\":\"新港乡\"},{\"id\":\"711932\",\"pid\":7119,\"code\":\"711932000000\",\"name\":\"民雄乡\"},{\"id\":\"711933\",\"pid\":7119,\"code\":\"711933000000\",\"name\":\"大林镇\"},{\"id\":\"711934\",\"pid\":7119,\"code\":\"711934000000\",\"name\":\"溪口乡\"},{\"id\":\"711935\",\"pid\":7119,\"code\":\"711935000000\",\"name\":\"义竹乡\"},{\"id\":\"711936\",\"pid\":7119,\"code\":\"711936000000\",\"name\":\"布袋镇\"}]},{\"id\":\"7121\",\"pid\":71,\"code\":\"712100000000\",\"name\":\"云林县\",\"childs\":[{\"id\":\"712121\",\"pid\":7121,\"code\":\"712121000000\",\"name\":\"斗南镇\"},{\"id\":\"712122\",\"pid\":7121,\"code\":\"712122000000\",\"name\":\"大埤乡\"},{\"id\":\"712123\",\"pid\":7121,\"code\":\"712123000000\",\"name\":\"虎尾镇\"},{\"id\":\"712124\",\"pid\":7121,\"code\":\"712124000000\",\"name\":\"土库镇\"},{\"id\":\"712125\",\"pid\":7121,\"code\":\"712125000000\",\"name\":\"褒忠乡\"},{\"id\":\"712126\",\"pid\":7121,\"code\":\"712126000000\",\"name\":\"东势乡\"},{\"id\":\"712127\",\"pid\":7121,\"code\":\"712127000000\",\"name\":\"台西乡\"},{\"id\":\"712128\",\"pid\":7121,\"code\":\"712128000000\",\"name\":\"仑背乡\"},{\"id\":\"712129\",\"pid\":7121,\"code\":\"712129000000\",\"name\":\"麦寮乡\"},{\"id\":\"712130\",\"pid\":7121,\"code\":\"712130000000\",\"name\":\"斗六市\"},{\"id\":\"712131\",\"pid\":7121,\"code\":\"712131000000\",\"name\":\"林内乡\"},{\"id\":\"712132\",\"pid\":7121,\"code\":\"712132000000\",\"name\":\"古坑乡\"},{\"id\":\"712133\",\"pid\":7121,\"code\":\"712133000000\",\"name\":\"莿桐乡\"},{\"id\":\"712134\",\"pid\":7121,\"code\":\"712134000000\",\"name\":\"西螺镇\"},{\"id\":\"712135\",\"pid\":7121,\"code\":\"712135000000\",\"name\":\"二仑乡\"},{\"id\":\"712136\",\"pid\":7121,\"code\":\"712136000000\",\"name\":\"北港镇\"},{\"id\":\"712137\",\"pid\":7121,\"code\":\"712137000000\",\"name\":\"水林乡\"},{\"id\":\"712138\",\"pid\":7121,\"code\":\"712138000000\",\"name\":\"口湖乡\"},{\"id\":\"712139\",\"pid\":7121,\"code\":\"712139000000\",\"name\":\"四湖乡\"},{\"id\":\"712140\",\"pid\":7121,\"code\":\"712140000000\",\"name\":\"元长乡\"}]},{\"id\":\"7124\",\"pid\":71,\"code\":\"712400000000\",\"name\":\"屏东县\",\"childs\":[{\"id\":\"712434\",\"pid\":7124,\"code\":\"712434000000\",\"name\":\"屏东市\"},{\"id\":\"712435\",\"pid\":7124,\"code\":\"712435000000\",\"name\":\"三地门乡\"},{\"id\":\"712436\",\"pid\":7124,\"code\":\"712436000000\",\"name\":\"雾台乡\"},{\"id\":\"712437\",\"pid\":7124,\"code\":\"712437000000\",\"name\":\"玛家乡\"},{\"id\":\"712438\",\"pid\":7124,\"code\":\"712438000000\",\"name\":\"九如乡\"},{\"id\":\"712439\",\"pid\":7124,\"code\":\"712439000000\",\"name\":\"里港乡\"},{\"id\":\"712440\",\"pid\":7124,\"code\":\"712440000000\",\"name\":\"高树乡\"},{\"id\":\"712441\",\"pid\":7124,\"code\":\"712441000000\",\"name\":\"盐埔乡\"},{\"id\":\"712442\",\"pid\":7124,\"code\":\"712442000000\",\"name\":\"长治乡\"},{\"id\":\"712443\",\"pid\":7124,\"code\":\"712443000000\",\"name\":\"麟洛乡\"},{\"id\":\"712444\",\"pid\":7124,\"code\":\"712444000000\",\"name\":\"竹田乡\"},{\"id\":\"712445\",\"pid\":7124,\"code\":\"712445000000\",\"name\":\"内埔乡\"},{\"id\":\"712446\",\"pid\":7124,\"code\":\"712446000000\",\"name\":\"万丹乡\"},{\"id\":\"712447\",\"pid\":7124,\"code\":\"712447000000\",\"name\":\"潮州镇\"},{\"id\":\"712448\",\"pid\":7124,\"code\":\"712448000000\",\"name\":\"泰武乡\"},{\"id\":\"712449\",\"pid\":7124,\"code\":\"712449000000\",\"name\":\"来义乡\"},{\"id\":\"712450\",\"pid\":7124,\"code\":\"712450000000\",\"name\":\"万峦乡\"},{\"id\":\"712451\",\"pid\":7124,\"code\":\"712451000000\",\"name\":\"崁顶乡\"},{\"id\":\"712452\",\"pid\":7124,\"code\":\"712452000000\",\"name\":\"新埤乡\"},{\"id\":\"712453\",\"pid\":7124,\"code\":\"712453000000\",\"name\":\"南州乡\"},{\"id\":\"712454\",\"pid\":7124,\"code\":\"712454000000\",\"name\":\"林边乡\"},{\"id\":\"712455\",\"pid\":7124,\"code\":\"712455000000\",\"name\":\"东港镇\"},{\"id\":\"712456\",\"pid\":7124,\"code\":\"712456000000\",\"name\":\"琉球乡\"},{\"id\":\"712457\",\"pid\":7124,\"code\":\"712457000000\",\"name\":\"佳冬乡\"},{\"id\":\"712458\",\"pid\":7124,\"code\":\"712458000000\",\"name\":\"新园乡\"},{\"id\":\"712459\",\"pid\":7124,\"code\":\"712459000000\",\"name\":\"枋寮乡\"},{\"id\":\"712460\",\"pid\":7124,\"code\":\"712460000000\",\"name\":\"枋山乡\"},{\"id\":\"712461\",\"pid\":7124,\"code\":\"712461000000\",\"name\":\"春日乡\"},{\"id\":\"712462\",\"pid\":7124,\"code\":\"712462000000\",\"name\":\"狮子乡\"},{\"id\":\"712463\",\"pid\":7124,\"code\":\"712463000000\",\"name\":\"车城乡\"},{\"id\":\"712464\",\"pid\":7124,\"code\":\"712464000000\",\"name\":\"牡丹乡\"},{\"id\":\"712465\",\"pid\":7124,\"code\":\"712465000000\",\"name\":\"恒春镇\"},{\"id\":\"712466\",\"pid\":7124,\"code\":\"712466000000\",\"name\":\"满州乡\"}]},{\"id\":\"7125\",\"pid\":71,\"code\":\"712500000000\",\"name\":\"台东县\",\"childs\":[{\"id\":\"712517\",\"pid\":7125,\"code\":\"712517000000\",\"name\":\"台东市\"},{\"id\":\"712518\",\"pid\":7125,\"code\":\"712518000000\",\"name\":\"绿岛乡\"},{\"id\":\"712519\",\"pid\":7125,\"code\":\"712519000000\",\"name\":\"兰屿乡\"},{\"id\":\"712520\",\"pid\":7125,\"code\":\"712520000000\",\"name\":\"延平乡\"},{\"id\":\"712521\",\"pid\":7125,\"code\":\"712521000000\",\"name\":\"卑南乡\"},{\"id\":\"712522\",\"pid\":7125,\"code\":\"712522000000\",\"name\":\"鹿野乡\"},{\"id\":\"712523\",\"pid\":7125,\"code\":\"712523000000\",\"name\":\"关山镇\"},{\"id\":\"712524\",\"pid\":7125,\"code\":\"712524000000\",\"name\":\"海端乡\"},{\"id\":\"712525\",\"pid\":7125,\"code\":\"712525000000\",\"name\":\"池上乡\"},{\"id\":\"712526\",\"pid\":7125,\"code\":\"712526000000\",\"name\":\"东河乡\"},{\"id\":\"712527\",\"pid\":7125,\"code\":\"712527000000\",\"name\":\"成功镇\"},{\"id\":\"712528\",\"pid\":7125,\"code\":\"712528000000\",\"name\":\"长滨乡\"},{\"id\":\"712529\",\"pid\":7125,\"code\":\"712529000000\",\"name\":\"金峰乡\"},{\"id\":\"712530\",\"pid\":7125,\"code\":\"712530000000\",\"name\":\"大武乡\"},{\"id\":\"712531\",\"pid\":7125,\"code\":\"712531000000\",\"name\":\"达仁乡\"},{\"id\":\"712532\",\"pid\":7125,\"code\":\"712532000000\",\"name\":\"太麻里乡\"}]},{\"id\":\"7126\",\"pid\":71,\"code\":\"712600000000\",\"name\":\"花莲县\",\"childs\":[{\"id\":\"712615\",\"pid\":7126,\"code\":\"712615000000\",\"name\":\"花莲市\"},{\"id\":\"712616\",\"pid\":7126,\"code\":\"712616000000\",\"name\":\"新城乡\"},{\"id\":\"712618\",\"pid\":7126,\"code\":\"712618000000\",\"name\":\"秀林乡\"},{\"id\":\"712619\",\"pid\":7126,\"code\":\"712619000000\",\"name\":\"吉安乡\"},{\"id\":\"712620\",\"pid\":7126,\"code\":\"712620000000\",\"name\":\"寿丰乡\"},{\"id\":\"712621\",\"pid\":7126,\"code\":\"712621000000\",\"name\":\"凤林镇\"},{\"id\":\"712622\",\"pid\":7126,\"code\":\"712622000000\",\"name\":\"光复乡\"},{\"id\":\"712623\",\"pid\":7126,\"code\":\"712623000000\",\"name\":\"丰滨乡\"},{\"id\":\"712624\",\"pid\":7126,\"code\":\"712624000000\",\"name\":\"瑞穗乡\"},{\"id\":\"712625\",\"pid\":7126,\"code\":\"712625000000\",\"name\":\"万荣乡\"},{\"id\":\"712626\",\"pid\":7126,\"code\":\"712626000000\",\"name\":\"玉里镇\"},{\"id\":\"712627\",\"pid\":7126,\"code\":\"712627000000\",\"name\":\"卓溪乡\"},{\"id\":\"712628\",\"pid\":7126,\"code\":\"712628000000\",\"name\":\"富里乡\"}]},{\"id\":\"7127\",\"pid\":71,\"code\":\"712700000000\",\"name\":\"澎湖县\",\"childs\":[{\"id\":\"712707\",\"pid\":7127,\"code\":\"712707000000\",\"name\":\"马公市\"},{\"id\":\"712708\",\"pid\":7127,\"code\":\"712708000000\",\"name\":\"西屿乡\"},{\"id\":\"712709\",\"pid\":7127,\"code\":\"712709000000\",\"name\":\"望安乡\"},{\"id\":\"712710\",\"pid\":7127,\"code\":\"712710000000\",\"name\":\"七美乡\"},{\"id\":\"712711\",\"pid\":7127,\"code\":\"712711000000\",\"name\":\"白沙乡\"},{\"id\":\"712712\",\"pid\":7127,\"code\":\"712712000000\",\"name\":\"湖西乡\"}]}]},{\"id\":\"81\",\"pid\":0,\"code\":\"810000000000\",\"name\":\"香港特别行政区\",\"childs\":[{\"id\":\"8100\",\"pid\":81,\"code\":\"810000000000\",\"name\":\"香港特别行政区\",\"childs\":[{\"id\":\"810000\",\"pid\":8100,\"code\":\"810000000000\",\"name\":\"香港特别行政区\"}]}]},{\"id\":\"82\",\"pid\":0,\"code\":\"820000000000\",\"name\":\"澳门特别行政区\",\"childs\":[{\"id\":\"8200\",\"pid\":82,\"code\":\"820000000000\",\"name\":\"澳门特别行政区\",\"childs\":[{\"id\":\"820000\",\"pid\":8200,\"code\":\"820000000000\",\"name\":\"澳门特别行政区\"}]}]},{\"id\":\"91\",\"pid\":0,\"code\":\"0\",\"name\":\"国外\",\"childs\":[{\"id\":\"9100\",\"pid\":91,\"code\":\"0\",\"name\":\"国外\",\"childs\":[{\"id\":\"910000\",\"pid\":9100,\"code\":\"0\",\"name\":\"国外\"}]}]}]");
/***/ }),
/***/ 25:
/*!******************************************************************************************!*\
!*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/mp-vue/dist/mp.runtime.esm.js ***!
\******************************************************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* WEBPACK VAR INJECTION */(function(global) {/*!
* Vue.js v2.6.11
* (c) 2014-2023 Evan You
* Released under the MIT License.
*/
/* */
var emptyObject = Object.freeze({});
// These helpers produce better VM code in JS engines due to their
// explicitness and function inlining.
function isUndef (v) {
return v === undefined || v === null
}
function isDef (v) {
return v !== undefined && v !== null
}
function isTrue (v) {
return v === true
}
function isFalse (v) {
return v === false
}
/**
* Check if value is primitive.
*/
function isPrimitive (value) {
return (
typeof value === 'string' ||
typeof value === 'number' ||
// $flow-disable-line
typeof value === 'symbol' ||
typeof value === 'boolean'
)
}
/**
* Quick object check - this is primarily used to tell
* Objects from primitive values when we know the value
* is a JSON-compliant type.
*/
function isObject (obj) {
return obj !== null && typeof obj === 'object'
}
/**
* Get the raw type string of a value, e.g., [object Object].
*/
var _toString = Object.prototype.toString;
function toRawType (value) {
return _toString.call(value).slice(8, -1)
}
/**
* Strict object type check. Only returns true
* for plain JavaScript objects.
*/
function isPlainObject (obj) {
return _toString.call(obj) === '[object Object]'
}
function isRegExp (v) {
return _toString.call(v) === '[object RegExp]'
}
/**
* Check if val is a valid array index.
*/
function isValidArrayIndex (val) {
var n = parseFloat(String(val));
return n >= 0 && Math.floor(n) === n && isFinite(val)
}
function isPromise (val) {
return (
isDef(val) &&
typeof val.then === 'function' &&
typeof val.catch === 'function'
)
}
/**
* Convert a value to a string that is actually rendered.
*/
function toString (val) {
return val == null
? ''
: Array.isArray(val) || (isPlainObject(val) && val.toString === _toString)
? JSON.stringify(val, null, 2)
: String(val)
}
/**
* Convert an input value to a number for persistence.
* If the conversion fails, return original string.
*/
function toNumber (val) {
var n = parseFloat(val);
return isNaN(n) ? val : n
}
/**
* Make a map and return a function for checking if a key
* is in that map.
*/
function makeMap (
str,
expectsLowerCase
) {
var map = Object.create(null);
var list = str.split(',');
for (var i = 0; i < list.length; i++) {
map[list[i]] = true;
}
return expectsLowerCase
? function (val) { return map[val.toLowerCase()]; }
: function (val) { return map[val]; }
}
/**
* Check if a tag is a built-in tag.
*/
var isBuiltInTag = makeMap('slot,component', true);
/**
* Check if an attribute is a reserved attribute.
*/
var isReservedAttribute = makeMap('key,ref,slot,slot-scope,is');
/**
* Remove an item from an array.
*/
function remove (arr, item) {
if (arr.length) {
var index = arr.indexOf(item);
if (index > -1) {
return arr.splice(index, 1)
}
}
}
/**
* Check whether an object has the property.
*/
var hasOwnProperty = Object.prototype.hasOwnProperty;
function hasOwn (obj, key) {
return hasOwnProperty.call(obj, key)
}
/**
* Create a cached version of a pure function.
*/
function cached (fn) {
var cache = Object.create(null);
return (function cachedFn (str) {
var hit = cache[str];
return hit || (cache[str] = fn(str))
})
}
/**
* Camelize a hyphen-delimited string.
*/
var camelizeRE = /-(\w)/g;
var camelize = cached(function (str) {
return str.replace(camelizeRE, function (_, c) { return c ? c.toUpperCase() : ''; })
});
/**
* Capitalize a string.
*/
var capitalize = cached(function (str) {
return str.charAt(0).toUpperCase() + str.slice(1)
});
/**
* Hyphenate a camelCase string.
*/
var hyphenateRE = /\B([A-Z])/g;
var hyphenate = cached(function (str) {
return str.replace(hyphenateRE, '-$1').toLowerCase()
});
/**
* Simple bind polyfill for environments that do not support it,
* e.g., PhantomJS 1.x. Technically, we don't need this anymore
* since native bind is now performant enough in most browsers.
* But removing it would mean breaking code that was able to run in
* PhantomJS 1.x, so this must be kept for backward compatibility.
*/
/* istanbul ignore next */
function polyfillBind (fn, ctx) {
function boundFn (a) {
var l = arguments.length;
return l
? l > 1
? fn.apply(ctx, arguments)
: fn.call(ctx, a)
: fn.call(ctx)
}
boundFn._length = fn.length;
return boundFn
}
function nativeBind (fn, ctx) {
return fn.bind(ctx)
}
var bind = Function.prototype.bind
? nativeBind
: polyfillBind;
/**
* Convert an Array-like object to a real Array.
*/
function toArray (list, start) {
start = start || 0;
var i = list.length - start;
var ret = new Array(i);
while (i--) {
ret[i] = list[i + start];
}
return ret
}
/**
* Mix properties into target object.
*/
function extend (to, _from) {
for (var key in _from) {
to[key] = _from[key];
}
return to
}
/**
* Merge an Array of Objects into a single Object.
*/
function toObject (arr) {
var res = {};
for (var i = 0; i < arr.length; i++) {
if (arr[i]) {
extend(res, arr[i]);
}
}
return res
}
/* eslint-disable no-unused-vars */
/**
* Perform no operation.
* Stubbing args to make Flow happy without leaving useless transpiled code
* with ...rest (https://flow.org/blog/2017/05/07/Strict-Function-Call-Arity/).
*/
function noop (a, b, c) {}
/**
* Always return false.
*/
var no = function (a, b, c) { return false; };
/* eslint-enable no-unused-vars */
/**
* Return the same value.
*/
var identity = function (_) { return _; };
/**
* Check if two values are loosely equal - that is,
* if they are plain objects, do they have the same shape?
*/
function looseEqual (a, b) {
if (a === b) { return true }
var isObjectA = isObject(a);
var isObjectB = isObject(b);
if (isObjectA && isObjectB) {
try {
var isArrayA = Array.isArray(a);
var isArrayB = Array.isArray(b);
if (isArrayA && isArrayB) {
return a.length === b.length && a.every(function (e, i) {
return looseEqual(e, b[i])
})
} else if (a instanceof Date && b instanceof Date) {
return a.getTime() === b.getTime()
} else if (!isArrayA && !isArrayB) {
var keysA = Object.keys(a);
var keysB = Object.keys(b);
return keysA.length === keysB.length && keysA.every(function (key) {
return looseEqual(a[key], b[key])
})
} else {
/* istanbul ignore next */
return false
}
} catch (e) {
/* istanbul ignore next */
return false
}
} else if (!isObjectA && !isObjectB) {
return String(a) === String(b)
} else {
return false
}
}
/**
* Return the first index at which a loosely equal value can be
* found in the array (if value is a plain object, the array must
* contain an object of the same shape), or -1 if it is not present.
*/
function looseIndexOf (arr, val) {
for (var i = 0; i < arr.length; i++) {
if (looseEqual(arr[i], val)) { return i }
}
return -1
}
/**
* Ensure a function is called only once.
*/
function once (fn) {
var called = false;
return function () {
if (!called) {
called = true;
fn.apply(this, arguments);
}
}
}
var ASSET_TYPES = [
'component',
'directive',
'filter'
];
var LIFECYCLE_HOOKS = [
'beforeCreate',
'created',
'beforeMount',
'mounted',
'beforeUpdate',
'updated',
'beforeDestroy',
'destroyed',
'activated',
'deactivated',
'errorCaptured',
'serverPrefetch'
];
/* */
var config = ({
/**
* Option merge strategies (used in core/util/options)
*/
// $flow-disable-line
optionMergeStrategies: Object.create(null),
/**
* Whether to suppress warnings.
*/
silent: false,
/**
* Show production mode tip message on boot?
*/
productionTip: "development" !== 'production',
/**
* Whether to enable devtools
*/
devtools: "development" !== 'production',
/**
* Whether to record perf
*/
performance: false,
/**
* Error handler for watcher errors
*/
errorHandler: null,
/**
* Warn handler for watcher warns
*/
warnHandler: null,
/**
* Ignore certain custom elements
*/
ignoredElements: [],
/**
* Custom user key aliases for v-on
*/
// $flow-disable-line
keyCodes: Object.create(null),
/**
* Check if a tag is reserved so that it cannot be registered as a
* component. This is platform-dependent and may be overwritten.
*/
isReservedTag: no,
/**
* Check if an attribute is reserved so that it cannot be used as a component
* prop. This is platform-dependent and may be overwritten.
*/
isReservedAttr: no,
/**
* Check if a tag is an unknown element.
* Platform-dependent.
*/
isUnknownElement: no,
/**
* Get the namespace of an element
*/
getTagNamespace: noop,
/**
* Parse the real tag name for the specific platform.
*/
parsePlatformTagName: identity,
/**
* Check if an attribute must be bound using property, e.g. value
* Platform-dependent.
*/
mustUseProp: no,
/**
* Perform updates asynchronously. Intended to be used by Vue Test Utils
* This will significantly reduce performance if set to false.
*/
async: true,
/**
* Exposed for legacy reasons
*/
_lifecycleHooks: LIFECYCLE_HOOKS
});
/* */
/**
* unicode letters used for parsing html tags, component names and property paths.
* using https://www.w3.org/TR/html53/semantics-scripting.html#potentialcustomelementname
* skipping \u10000-\uEFFFF due to it freezing up PhantomJS
*/
var unicodeRegExp = /a-zA-Z\u00B7\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u037D\u037F-\u1FFF\u200C-\u200D\u203F-\u2040\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD/;
/**
* Check if a string starts with $ or _
*/
function isReserved (str) {
var c = (str + '').charCodeAt(0);
return c === 0x24 || c === 0x5F
}
/**
* Define a property.
*/
function def (obj, key, val, enumerable) {
Object.defineProperty(obj, key, {
value: val,
enumerable: !!enumerable,
writable: true,
configurable: true
});
}
/**
* Parse simple path.
*/
var bailRE = new RegExp(("[^" + (unicodeRegExp.source) + ".$_\\d]"));
function parsePath (path) {
if (bailRE.test(path)) {
return
}
var segments = path.split('.');
return function (obj) {
for (var i = 0; i < segments.length; i++) {
if (!obj) { return }
obj = obj[segments[i]];
}
return obj
}
}
/* */
// can we use __proto__?
var hasProto = '__proto__' in {};
// Browser environment sniffing
var inBrowser = typeof window !== 'undefined';
var inWeex = typeof WXEnvironment !== 'undefined' && !!WXEnvironment.platform;
var weexPlatform = inWeex && WXEnvironment.platform.toLowerCase();
var UA = inBrowser && window.navigator.userAgent.toLowerCase();
var isIE = UA && /msie|trident/.test(UA);
var isIE9 = UA && UA.indexOf('msie 9.0') > 0;
var isEdge = UA && UA.indexOf('edge/') > 0;
var isAndroid = (UA && UA.indexOf('android') > 0) || (weexPlatform === 'android');
var isIOS = (UA && /iphone|ipad|ipod|ios/.test(UA)) || (weexPlatform === 'ios');
var isChrome = UA && /chrome\/\d+/.test(UA) && !isEdge;
var isPhantomJS = UA && /phantomjs/.test(UA);
var isFF = UA && UA.match(/firefox\/(\d+)/);
// Firefox has a "watch" function on Object.prototype...
var nativeWatch = ({}).watch;
if (inBrowser) {
try {
var opts = {};
Object.defineProperty(opts, 'passive', ({
get: function get () {
}
})); // https://github.com/facebook/flow/issues/285
window.addEventListener('test-passive', null, opts);
} catch (e) {}
}
// this needs to be lazy-evaled because vue may be required before
// vue-server-renderer can set VUE_ENV
var _isServer;
var isServerRendering = function () {
if (_isServer === undefined) {
/* istanbul ignore if */
if (!inBrowser && !inWeex && typeof global !== 'undefined') {
// detect presence of vue-server-renderer and avoid
// Webpack shimming the process
_isServer = global['process'] && global['process'].env.VUE_ENV === 'server';
} else {
_isServer = false;
}
}
return _isServer
};
// detect devtools
var devtools = inBrowser && window.__VUE_DEVTOOLS_GLOBAL_HOOK__;
/* istanbul ignore next */
function isNative (Ctor) {
return typeof Ctor === 'function' && /native code/.test(Ctor.toString())
}
var hasSymbol =
typeof Symbol !== 'undefined' && isNative(Symbol) &&
typeof Reflect !== 'undefined' && isNative(Reflect.ownKeys);
var _Set;
/* istanbul ignore if */ // $flow-disable-line
if (typeof Set !== 'undefined' && isNative(Set)) {
// use native Set when available.
_Set = Set;
} else {
// a non-standard Set polyfill that only works with primitive keys.
_Set = /*@__PURE__*/(function () {
function Set () {
this.set = Object.create(null);
}
Set.prototype.has = function has (key) {
return this.set[key] === true
};
Set.prototype.add = function add (key) {
this.set[key] = true;
};
Set.prototype.clear = function clear () {
this.set = Object.create(null);
};
return Set;
}());
}
/* */
var warn = noop;
var tip = noop;
var generateComponentTrace = (noop); // work around flow check
var formatComponentName = (noop);
if (true) {
var hasConsole = typeof console !== 'undefined';
var classifyRE = /(?:^|[-_])(\w)/g;
var classify = function (str) { return str
.replace(classifyRE, function (c) { return c.toUpperCase(); })
.replace(/[-_]/g, ''); };
warn = function (msg, vm) {
var trace = vm ? generateComponentTrace(vm) : '';
if (config.warnHandler) {
config.warnHandler.call(null, msg, vm, trace);
} else if (hasConsole && (!config.silent)) {
console.error(("[Vue warn]: " + msg + trace));
}
};
tip = function (msg, vm) {
if (hasConsole && (!config.silent)) {
console.warn("[Vue tip]: " + msg + (
vm ? generateComponentTrace(vm) : ''
));
}
};
formatComponentName = function (vm, includeFile) {
if (vm.$root === vm) {
if (vm.$options && vm.$options.__file) { // fixed by xxxxxx
return ('') + vm.$options.__file
}
return '<Root>'
}
var options = typeof vm === 'function' && vm.cid != null
? vm.options
: vm._isVue
? vm.$options || vm.constructor.options
: vm;
var name = options.name || options._componentTag;
var file = options.__file;
if (!name && file) {
var match = file.match(/([^/\\]+)\.vue$/);
name = match && match[1];
}
return (
(name ? ("<" + (classify(name)) + ">") : "<Anonymous>") +
(file && includeFile !== false ? (" at " + file) : '')
)
};
var repeat = function (str, n) {
var res = '';
while (n) {
if (n % 2 === 1) { res += str; }
if (n > 1) { str += str; }
n >>= 1;
}
return res
};
generateComponentTrace = function (vm) {
if (vm._isVue && vm.$parent) {
var tree = [];
var currentRecursiveSequence = 0;
while (vm && vm.$options.name !== 'PageBody') {
if (tree.length > 0) {
var last = tree[tree.length - 1];
if (last.constructor === vm.constructor) {
currentRecursiveSequence++;
vm = vm.$parent;
continue
} else if (currentRecursiveSequence > 0) {
tree[tree.length - 1] = [last, currentRecursiveSequence];
currentRecursiveSequence = 0;
}
}
!vm.$options.isReserved && tree.push(vm);
vm = vm.$parent;
}
return '\n\nfound in\n\n' + tree
.map(function (vm, i) { return ("" + (i === 0 ? '---> ' : repeat(' ', 5 + i * 2)) + (Array.isArray(vm)
? ((formatComponentName(vm[0])) + "... (" + (vm[1]) + " recursive calls)")
: formatComponentName(vm))); })
.join('\n')
} else {
return ("\n\n(found in " + (formatComponentName(vm)) + ")")
}
};
}
/* */
var uid = 0;
/**
* A dep is an observable that can have multiple
* directives subscribing to it.
*/
var Dep = function Dep () {
this.id = uid++;
this.subs = [];
};
Dep.prototype.addSub = function addSub (sub) {
this.subs.push(sub);
};
Dep.prototype.removeSub = function removeSub (sub) {
remove(this.subs, sub);
};
Dep.prototype.depend = function depend () {
if (Dep.SharedObject.target) {
Dep.SharedObject.target.addDep(this);
}
};
Dep.prototype.notify = function notify () {
// stabilize the subscriber list first
var subs = this.subs.slice();
if ( true && !config.async) {
// subs aren't sorted in scheduler if not running async
// we need to sort them now to make sure they fire in correct
// order
subs.sort(function (a, b) { return a.id - b.id; });
}
for (var i = 0, l = subs.length; i < l; i++) {
subs[i].update();
}
};
// The current target watcher being evaluated.
// This is globally unique because only one watcher
// can be evaluated at a time.
// fixed by xxxxxx (nvue shared vuex)
/* eslint-disable no-undef */
Dep.SharedObject = {};
Dep.SharedObject.target = null;
Dep.SharedObject.targetStack = [];
function pushTarget (target) {
Dep.SharedObject.targetStack.push(target);
Dep.SharedObject.target = target;
Dep.target = target;
}
function popTarget () {
Dep.SharedObject.targetStack.pop();
Dep.SharedObject.target = Dep.SharedObject.targetStack[Dep.SharedObject.targetStack.length - 1];
Dep.target = Dep.SharedObject.target;
}
/* */
var VNode = function VNode (
tag,
data,
children,
text,
elm,
context,
componentOptions,
asyncFactory
) {
this.tag = tag;
this.data = data;
this.children = children;
this.text = text;
this.elm = elm;
this.ns = undefined;
this.context = context;
this.fnContext = undefined;
this.fnOptions = undefined;
this.fnScopeId = undefined;
this.key = data && data.key;
this.componentOptions = componentOptions;
this.componentInstance = undefined;
this.parent = undefined;
this.raw = false;
this.isStatic = false;
this.isRootInsert = true;
this.isComment = false;
this.isCloned = false;
this.isOnce = false;
this.asyncFactory = asyncFactory;
this.asyncMeta = undefined;
this.isAsyncPlaceholder = false;
};
var prototypeAccessors = { child: { configurable: true } };
// DEPRECATED: alias for componentInstance for backwards compat.
/* istanbul ignore next */
prototypeAccessors.child.get = function () {
return this.componentInstance
};
Object.defineProperties( VNode.prototype, prototypeAccessors );
var createEmptyVNode = function (text) {
if ( text === void 0 ) text = '';
var node = new VNode();
node.text = text;
node.isComment = true;
return node
};
function createTextVNode (val) {
return new VNode(undefined, undefined, undefined, String(val))
}
// optimized shallow clone
// used for static nodes and slot nodes because they may be reused across
// multiple renders, cloning them avoids errors when DOM manipulations rely
// on their elm reference.
function cloneVNode (vnode) {
var cloned = new VNode(
vnode.tag,
vnode.data,
// #7975
// clone children array to avoid mutating original in case of cloning
// a child.
vnode.children && vnode.children.slice(),
vnode.text,
vnode.elm,
vnode.context,
vnode.componentOptions,
vnode.asyncFactory
);
cloned.ns = vnode.ns;
cloned.isStatic = vnode.isStatic;
cloned.key = vnode.key;
cloned.isComment = vnode.isComment;
cloned.fnContext = vnode.fnContext;
cloned.fnOptions = vnode.fnOptions;
cloned.fnScopeId = vnode.fnScopeId;
cloned.asyncMeta = vnode.asyncMeta;
cloned.isCloned = true;
return cloned
}
/*
* not type checking this file because flow doesn't play well with
* dynamically accessing methods on Array prototype
*/
var arrayProto = Array.prototype;
var arrayMethods = Object.create(arrayProto);
var methodsToPatch = [
'push',
'pop',
'shift',
'unshift',
'splice',
'sort',
'reverse'
];
/**
* Intercept mutating methods and emit events
*/
methodsToPatch.forEach(function (method) {
// cache original method
var original = arrayProto[method];
def(arrayMethods, method, function mutator () {
var args = [], len = arguments.length;
while ( len-- ) args[ len ] = arguments[ len ];
var result = original.apply(this, args);
var ob = this.__ob__;
var inserted;
switch (method) {
case 'push':
case 'unshift':
inserted = args;
break
case 'splice':
inserted = args.slice(2);
break
}
if (inserted) { ob.observeArray(inserted); }
// notify change
ob.dep.notify();
return result
});
});
/* */
var arrayKeys = Object.getOwnPropertyNames(arrayMethods);
/**
* In some cases we may want to disable observation inside a component's
* update computation.
*/
var shouldObserve = true;
function toggleObserving (value) {
shouldObserve = value;
}
/**
* Observer class that is attached to each observed
* object. Once attached, the observer converts the target
* object's property keys into getter/setters that
* collect dependencies and dispatch updates.
*/
var Observer = function Observer (value) {
this.value = value;
this.dep = new Dep();
this.vmCount = 0;
def(value, '__ob__', this);
if (Array.isArray(value)) {
if (hasProto) {
{// fixed by xxxxxx 微信小程序使用 plugins 之后,数组方法被直接挂载到了数组对象上,需要执行 copyAugment 逻辑
if(value.push !== value.__proto__.push){
copyAugment(value, arrayMethods, arrayKeys);
} else {
protoAugment(value, arrayMethods);
}
}
} else {
copyAugment(value, arrayMethods, arrayKeys);
}
this.observeArray(value);
} else {
this.walk(value);
}
};
/**
* Walk through all properties and convert them into
* getter/setters. This method should only be called when
* value type is Object.
*/
Observer.prototype.walk = function walk (obj) {
var keys = Object.keys(obj);
for (var i = 0; i < keys.length; i++) {
defineReactive$$1(obj, keys[i]);
}
};
/**
* Observe a list of Array items.
*/
Observer.prototype.observeArray = function observeArray (items) {
for (var i = 0, l = items.length; i < l; i++) {
observe(items[i]);
}
};
// helpers
/**
* Augment a target Object or Array by intercepting
* the prototype chain using __proto__
*/
function protoAugment (target, src) {
/* eslint-disable no-proto */
target.__proto__ = src;
/* eslint-enable no-proto */
}
/**
* Augment a target Object or Array by defining
* hidden properties.
*/
/* istanbul ignore next */
function copyAugment (target, src, keys) {
for (var i = 0, l = keys.length; i < l; i++) {
var key = keys[i];
def(target, key, src[key]);
}
}
/**
* Attempt to create an observer instance for a value,
* returns the new observer if successfully observed,
* or the existing observer if the value already has one.
*/
function observe (value, asRootData) {
if (!isObject(value) || value instanceof VNode) {
return
}
var ob;
if (hasOwn(value, '__ob__') && value.__ob__ instanceof Observer) {
ob = value.__ob__;
} else if (
shouldObserve &&
!isServerRendering() &&
(Array.isArray(value) || isPlainObject(value)) &&
Object.isExtensible(value) &&
!value._isVue &&
!value.__v_isMPComponent
) {
ob = new Observer(value);
}
if (asRootData && ob) {
ob.vmCount++;
}
return ob
}
/**
* Define a reactive property on an Object.
*/
function defineReactive$$1 (
obj,
key,
val,
customSetter,
shallow
) {
var dep = new Dep();
var property = Object.getOwnPropertyDescriptor(obj, key);
if (property && property.configurable === false) {
return
}
// cater for pre-defined getter/setters
var getter = property && property.get;
var setter = property && property.set;
if ((!getter || setter) && arguments.length === 2) {
val = obj[key];
}
var childOb = !shallow && observe(val);
Object.defineProperty(obj, key, {
enumerable: true,
configurable: true,
get: function reactiveGetter () {
var value = getter ? getter.call(obj) : val;
if (Dep.SharedObject.target) { // fixed by xxxxxx
dep.depend();
if (childOb) {
childOb.dep.depend();
if (Array.isArray(value)) {
dependArray(value);
}
}
}
return value
},
set: function reactiveSetter (newVal) {
var value = getter ? getter.call(obj) : val;
/* eslint-disable no-self-compare */
if (newVal === value || (newVal !== newVal && value !== value)) {
return
}
/* eslint-enable no-self-compare */
if ( true && customSetter) {
customSetter();
}
// #7981: for accessor properties without setter
if (getter && !setter) { return }
if (setter) {
setter.call(obj, newVal);
} else {
val = newVal;
}
childOb = !shallow && observe(newVal);
dep.notify();
}
});
}
/**
* Set a property on an object. Adds the new property and
* triggers change notification if the property doesn't
* already exist.
*/
function set (target, key, val) {
if ( true &&
(isUndef(target) || isPrimitive(target))
) {
warn(("Cannot set reactive property on undefined, null, or primitive value: " + ((target))));
}
if (Array.isArray(target) && isValidArrayIndex(key)) {
target.length = Math.max(target.length, key);
target.splice(key, 1, val);
return val
}
if (key in target && !(key in Object.prototype)) {
target[key] = val;
return val
}
var ob = (target).__ob__;
if (target._isVue || (ob && ob.vmCount)) {
true && warn(
'Avoid adding reactive properties to a Vue instance or its root $data ' +
'at runtime - declare it upfront in the data option.'
);
return val
}
if (!ob) {
target[key] = val;
return val
}
defineReactive$$1(ob.value, key, val);
ob.dep.notify();
return val
}
/**
* Delete a property and trigger change if necessary.
*/
function del (target, key) {
if ( true &&
(isUndef(target) || isPrimitive(target))
) {
warn(("Cannot delete reactive property on undefined, null, or primitive value: " + ((target))));
}
if (Array.isArray(target) && isValidArrayIndex(key)) {
target.splice(key, 1);
return
}
var ob = (target).__ob__;
if (target._isVue || (ob && ob.vmCount)) {
true && warn(
'Avoid deleting properties on a Vue instance or its root $data ' +
'- just set it to null.'
);
return
}
if (!hasOwn(target, key)) {
return
}
delete target[key];
if (!ob) {
return
}
ob.dep.notify();
}
/**
* Collect dependencies on array elements when the array is touched, since
* we cannot intercept array element access like property getters.
*/
function dependArray (value) {
for (var e = (void 0), i = 0, l = value.length; i < l; i++) {
e = value[i];
e && e.__ob__ && e.__ob__.dep.depend();
if (Array.isArray(e)) {
dependArray(e);
}
}
}
/* */
/**
* Option overwriting strategies are functions that handle
* how to merge a parent option value and a child option
* value into the final value.
*/
var strats = config.optionMergeStrategies;
/**
* Options with restrictions
*/
if (true) {
strats.el = strats.propsData = function (parent, child, vm, key) {
if (!vm) {
warn(
"option \"" + key + "\" can only be used during instance " +
'creation with the `new` keyword.'
);
}
return defaultStrat(parent, child)
};
}
/**
* Helper that recursively merges two data objects together.
*/
function mergeData (to, from) {
if (!from) { return to }
var key, toVal, fromVal;
var keys = hasSymbol
? Reflect.ownKeys(from)
: Object.keys(from);
for (var i = 0; i < keys.length; i++) {
key = keys[i];
// in case the object is already observed...
if (key === '__ob__') { continue }
toVal = to[key];
fromVal = from[key];
if (!hasOwn(to, key)) {
set(to, key, fromVal);
} else if (
toVal !== fromVal &&
isPlainObject(toVal) &&
isPlainObject(fromVal)
) {
mergeData(toVal, fromVal);
}
}
return to
}
/**
* Data
*/
function mergeDataOrFn (
parentVal,
childVal,
vm
) {
if (!vm) {
// in a Vue.extend merge, both should be functions
if (!childVal) {
return parentVal
}
if (!parentVal) {
return childVal
}
// when parentVal & childVal are both present,
// we need to return a function that returns the
// merged result of both functions... no need to
// check if parentVal is a function here because
// it has to be a function to pass previous merges.
return function mergedDataFn () {
return mergeData(
typeof childVal === 'function' ? childVal.call(this, this) : childVal,
typeof parentVal === 'function' ? parentVal.call(this, this) : parentVal
)
}
} else {
return function mergedInstanceDataFn () {
// instance merge
var instanceData = typeof childVal === 'function'
? childVal.call(vm, vm)
: childVal;
var defaultData = typeof parentVal === 'function'
? parentVal.call(vm, vm)
: parentVal;
if (instanceData) {
return mergeData(instanceData, defaultData)
} else {
return defaultData
}
}
}
}
strats.data = function (
parentVal,
childVal,
vm
) {
if (!vm) {
if (childVal && typeof childVal !== 'function') {
true && warn(
'The "data" option should be a function ' +
'that returns a per-instance value in component ' +
'definitions.',
vm
);
return parentVal
}
return mergeDataOrFn(parentVal, childVal)
}
return mergeDataOrFn(parentVal, childVal, vm)
};
/**
* Hooks and props are merged as arrays.
*/
function mergeHook (
parentVal,
childVal
) {
var res = childVal
? parentVal
? parentVal.concat(childVal)
: Array.isArray(childVal)
? childVal
: [childVal]
: parentVal;
return res
? dedupeHooks(res)
: res
}
function dedupeHooks (hooks) {
var res = [];
for (var i = 0; i < hooks.length; i++) {
if (res.indexOf(hooks[i]) === -1) {
res.push(hooks[i]);
}
}
return res
}
LIFECYCLE_HOOKS.forEach(function (hook) {
strats[hook] = mergeHook;
});
/**
* Assets
*
* When a vm is present (instance creation), we need to do
* a three-way merge between constructor options, instance
* options and parent options.
*/
function mergeAssets (
parentVal,
childVal,
vm,
key
) {
var res = Object.create(parentVal || null);
if (childVal) {
true && assertObjectType(key, childVal, vm);
return extend(res, childVal)
} else {
return res
}
}
ASSET_TYPES.forEach(function (type) {
strats[type + 's'] = mergeAssets;
});
/**
* Watchers.
*
* Watchers hashes should not overwrite one
* another, so we merge them as arrays.
*/
strats.watch = function (
parentVal,
childVal,
vm,
key
) {
// work around Firefox's Object.prototype.watch...
if (parentVal === nativeWatch) { parentVal = undefined; }
if (childVal === nativeWatch) { childVal = undefined; }
/* istanbul ignore if */
if (!childVal) { return Object.create(parentVal || null) }
if (true) {
assertObjectType(key, childVal, vm);
}
if (!parentVal) { return childVal }
var ret = {};
extend(ret, parentVal);
for (var key$1 in childVal) {
var parent = ret[key$1];
var child = childVal[key$1];
if (parent && !Array.isArray(parent)) {
parent = [parent];
}
ret[key$1] = parent
? parent.concat(child)
: Array.isArray(child) ? child : [child];
}
return ret
};
/**
* Other object hashes.
*/
strats.props =
strats.methods =
strats.inject =
strats.computed = function (
parentVal,
childVal,
vm,
key
) {
if (childVal && "development" !== 'production') {
assertObjectType(key, childVal, vm);
}
if (!parentVal) { return childVal }
var ret = Object.create(null);
extend(ret, parentVal);
if (childVal) { extend(ret, childVal); }
return ret
};
strats.provide = mergeDataOrFn;
/**
* Default strategy.
*/
var defaultStrat = function (parentVal, childVal) {
return childVal === undefined
? parentVal
: childVal
};
/**
* Validate component names
*/
function checkComponents (options) {
for (var key in options.components) {
validateComponentName(key);
}
}
function validateComponentName (name) {
if (!new RegExp(("^[a-zA-Z][\\-\\.0-9_" + (unicodeRegExp.source) + "]*$")).test(name)) {
warn(
'Invalid component name: "' + name + '". Component names ' +
'should conform to valid custom element name in html5 specification.'
);
}
if (isBuiltInTag(name) || config.isReservedTag(name)) {
warn(
'Do not use built-in or reserved HTML elements as component ' +
'id: ' + name
);
}
}
/**
* Ensure all props option syntax are normalized into the
* Object-based format.
*/
function normalizeProps (options, vm) {
var props = options.props;
if (!props) { return }
var res = {};
var i, val, name;
if (Array.isArray(props)) {
i = props.length;
while (i--) {
val = props[i];
if (typeof val === 'string') {
name = camelize(val);
res[name] = { type: null };
} else if (true) {
warn('props must be strings when using array syntax.');
}
}
} else if (isPlainObject(props)) {
for (var key in props) {
val = props[key];
name = camelize(key);
res[name] = isPlainObject(val)
? val
: { type: val };
}
} else if (true) {
warn(
"Invalid value for option \"props\": expected an Array or an Object, " +
"but got " + (toRawType(props)) + ".",
vm
);
}
options.props = res;
}
/**
* Normalize all injections into Object-based format
*/
function normalizeInject (options, vm) {
var inject = options.inject;
if (!inject) { return }
var normalized = options.inject = {};
if (Array.isArray(inject)) {
for (var i = 0; i < inject.length; i++) {
normalized[inject[i]] = { from: inject[i] };
}
} else if (isPlainObject(inject)) {
for (var key in inject) {
var val = inject[key];
normalized[key] = isPlainObject(val)
? extend({ from: key }, val)
: { from: val };
}
} else if (true) {
warn(
"Invalid value for option \"inject\": expected an Array or an Object, " +
"but got " + (toRawType(inject)) + ".",
vm
);
}
}
/**
* Normalize raw function directives into object format.
*/
function normalizeDirectives (options) {
var dirs = options.directives;
if (dirs) {
for (var key in dirs) {
var def$$1 = dirs[key];
if (typeof def$$1 === 'function') {
dirs[key] = { bind: def$$1, update: def$$1 };
}
}
}
}
function assertObjectType (name, value, vm) {
if (!isPlainObject(value)) {
warn(
"Invalid value for option \"" + name + "\": expected an Object, " +
"but got " + (toRawType(value)) + ".",
vm
);
}
}
/**
* Merge two option objects into a new one.
* Core utility used in both instantiation and inheritance.
*/
function mergeOptions (
parent,
child,
vm
) {
if (true) {
checkComponents(child);
}
if (typeof child === 'function') {
child = child.options;
}
normalizeProps(child, vm);
normalizeInject(child, vm);
normalizeDirectives(child);
// Apply extends and mixins on the child options,
// but only if it is a raw options object that isn't
// the result of another mergeOptions call.
// Only merged options has the _base property.
if (!child._base) {
if (child.extends) {
parent = mergeOptions(parent, child.extends, vm);
}
if (child.mixins) {
for (var i = 0, l = child.mixins.length; i < l; i++) {
parent = mergeOptions(parent, child.mixins[i], vm);
}
}
}
var options = {};
var key;
for (key in parent) {
mergeField(key);
}
for (key in child) {
if (!hasOwn(parent, key)) {
mergeField(key);
}
}
function mergeField (key) {
var strat = strats[key] || defaultStrat;
options[key] = strat(parent[key], child[key], vm, key);
}
return options
}
/**
* Resolve an asset.
* This function is used because child instances need access
* to assets defined in its ancestor chain.
*/
function resolveAsset (
options,
type,
id,
warnMissing
) {
/* istanbul ignore if */
if (typeof id !== 'string') {
return
}
var assets = options[type];
// check local registration variations first
if (hasOwn(assets, id)) { return assets[id] }
var camelizedId = camelize(id);
if (hasOwn(assets, camelizedId)) { return assets[camelizedId] }
var PascalCaseId = capitalize(camelizedId);
if (hasOwn(assets, PascalCaseId)) { return assets[PascalCaseId] }
// fallback to prototype chain
var res = assets[id] || assets[camelizedId] || assets[PascalCaseId];
if ( true && warnMissing && !res) {
warn(
'Failed to resolve ' + type.slice(0, -1) + ': ' + id,
options
);
}
return res
}
/* */
function validateProp (
key,
propOptions,
propsData,
vm
) {
var prop = propOptions[key];
var absent = !hasOwn(propsData, key);
var value = propsData[key];
// boolean casting
var booleanIndex = getTypeIndex(Boolean, prop.type);
if (booleanIndex > -1) {
if (absent && !hasOwn(prop, 'default')) {
value = false;
} else if (value === '' || value === hyphenate(key)) {
// only cast empty string / same name to boolean if
// boolean has higher priority
var stringIndex = getTypeIndex(String, prop.type);
if (stringIndex < 0 || booleanIndex < stringIndex) {
value = true;
}
}
}
// check default value
if (value === undefined) {
value = getPropDefaultValue(vm, prop, key);
// since the default value is a fresh copy,
// make sure to observe it.
var prevShouldObserve = shouldObserve;
toggleObserving(true);
observe(value);
toggleObserving(prevShouldObserve);
}
if (
true
) {
assertProp(prop, key, value, vm, absent);
}
return value
}
/**
* Get the default value of a prop.
*/
function getPropDefaultValue (vm, prop, key) {
// no default, return undefined
if (!hasOwn(prop, 'default')) {
return undefined
}
var def = prop.default;
// warn against non-factory defaults for Object & Array
if ( true && isObject(def)) {
warn(
'Invalid default value for prop "' + key + '": ' +
'Props with type Object/Array must use a factory function ' +
'to return the default value.',
vm
);
}
// the raw prop value was also undefined from previous render,
// return previous default value to avoid unnecessary watcher trigger
if (vm && vm.$options.propsData &&
vm.$options.propsData[key] === undefined &&
vm._props[key] !== undefined
) {
return vm._props[key]
}
// call factory function for non-Function types
// a value is Function if its prototype is function even across different execution context
return typeof def === 'function' && getType(prop.type) !== 'Function'
? def.call(vm)
: def
}
/**
* Assert whether a prop is valid.
*/
function assertProp (
prop,
name,
value,
vm,
absent
) {
if (prop.required && absent) {
warn(
'Missing required prop: "' + name + '"',
vm
);
return
}
if (value == null && !prop.required) {
return
}
var type = prop.type;
var valid = !type || type === true;
var expectedTypes = [];
if (type) {
if (!Array.isArray(type)) {
type = [type];
}
for (var i = 0; i < type.length && !valid; i++) {
var assertedType = assertType(value, type[i]);
expectedTypes.push(assertedType.expectedType || '');
valid = assertedType.valid;
}
}
if (!valid) {
warn(
getInvalidTypeMessage(name, value, expectedTypes),
vm
);
return
}
var validator = prop.validator;
if (validator) {
if (!validator(value)) {
warn(
'Invalid prop: custom validator check failed for prop "' + name + '".',
vm
);
}
}
}
var simpleCheckRE = /^(String|Number|Boolean|Function|Symbol)$/;
function assertType (value, type) {
var valid;
var expectedType = getType(type);
if (simpleCheckRE.test(expectedType)) {
var t = typeof value;
valid = t === expectedType.toLowerCase();
// for primitive wrapper objects
if (!valid && t === 'object') {
valid = value instanceof type;
}
} else if (expectedType === 'Object') {
valid = isPlainObject(value);
} else if (expectedType === 'Array') {
valid = Array.isArray(value);
} else {
valid = value instanceof type;
}
return {
valid: valid,
expectedType: expectedType
}
}
/**
* Use function string name to check built-in types,
* because a simple equality check will fail when running
* across different vms / iframes.
*/
function getType (fn) {
var match = fn && fn.toString().match(/^\s*function (\w+)/);
return match ? match[1] : ''
}
function isSameType (a, b) {
return getType(a) === getType(b)
}
function getTypeIndex (type, expectedTypes) {
if (!Array.isArray(expectedTypes)) {
return isSameType(expectedTypes, type) ? 0 : -1
}
for (var i = 0, len = expectedTypes.length; i < len; i++) {
if (isSameType(expectedTypes[i], type)) {
return i
}
}
return -1
}
function getInvalidTypeMessage (name, value, expectedTypes) {
var message = "Invalid prop: type check failed for prop \"" + name + "\"." +
" Expected " + (expectedTypes.map(capitalize).join(', '));
var expectedType = expectedTypes[0];
var receivedType = toRawType(value);
var expectedValue = styleValue(value, expectedType);
var receivedValue = styleValue(value, receivedType);
// check if we need to specify expected value
if (expectedTypes.length === 1 &&
isExplicable(expectedType) &&
!isBoolean(expectedType, receivedType)) {
message += " with value " + expectedValue;
}
message += ", got " + receivedType + " ";
// check if we need to specify received value
if (isExplicable(receivedType)) {
message += "with value " + receivedValue + ".";
}
return message
}
function styleValue (value, type) {
if (type === 'String') {
return ("\"" + value + "\"")
} else if (type === 'Number') {
return ("" + (Number(value)))
} else {
return ("" + value)
}
}
function isExplicable (value) {
var explicitTypes = ['string', 'number', 'boolean'];
return explicitTypes.some(function (elem) { return value.toLowerCase() === elem; })
}
function isBoolean () {
var args = [], len = arguments.length;
while ( len-- ) args[ len ] = arguments[ len ];
return args.some(function (elem) { return elem.toLowerCase() === 'boolean'; })
}
/* */
function handleError (err, vm, info) {
// Deactivate deps tracking while processing error handler to avoid possible infinite rendering.
// See: https://github.com/vuejs/vuex/issues/1505
pushTarget();
try {
if (vm) {
var cur = vm;
while ((cur = cur.$parent)) {
var hooks = cur.$options.errorCaptured;
if (hooks) {
for (var i = 0; i < hooks.length; i++) {
try {
var capture = hooks[i].call(cur, err, vm, info) === false;
if (capture) { return }
} catch (e) {
globalHandleError(e, cur, 'errorCaptured hook');
}
}
}
}
}
globalHandleError(err, vm, info);
} finally {
popTarget();
}
}
function invokeWithErrorHandling (
handler,
context,
args,
vm,
info
) {
var res;
try {
res = args ? handler.apply(context, args) : handler.call(context);
if (res && !res._isVue && isPromise(res) && !res._handled) {
res.catch(function (e) { return handleError(e, vm, info + " (Promise/async)"); });
// issue #9511
// avoid catch triggering multiple times when nested calls
res._handled = true;
}
} catch (e) {
handleError(e, vm, info);
}
return res
}
function globalHandleError (err, vm, info) {
if (config.errorHandler) {
try {
return config.errorHandler.call(null, err, vm, info)
} catch (e) {
// if the user intentionally throws the original error in the handler,
// do not log it twice
if (e !== err) {
logError(e, null, 'config.errorHandler');
}
}
}
logError(err, vm, info);
}
function logError (err, vm, info) {
if (true) {
warn(("Error in " + info + ": \"" + (err.toString()) + "\""), vm);
}
/* istanbul ignore else */
if ((inBrowser || inWeex) && typeof console !== 'undefined') {
console.error(err);
} else {
throw err
}
}
/* */
var callbacks = [];
var pending = false;
function flushCallbacks () {
pending = false;
var copies = callbacks.slice(0);
callbacks.length = 0;
for (var i = 0; i < copies.length; i++) {
copies[i]();
}
}
// Here we have async deferring wrappers using microtasks.
// In 2.5 we used (macro) tasks (in combination with microtasks).
// However, it has subtle problems when state is changed right before repaint
// (e.g. #6813, out-in transitions).
// Also, using (macro) tasks in event handler would cause some weird behaviors
// that cannot be circumvented (e.g. #7109, #7153, #7546, #7834, #8109).
// So we now use microtasks everywhere, again.
// A major drawback of this tradeoff is that there are some scenarios
// where microtasks have too high a priority and fire in between supposedly
// sequential events (e.g. #4521, #6690, which have workarounds)
// or even between bubbling of the same event (#6566).
var timerFunc;
// The nextTick behavior leverages the microtask queue, which can be accessed
// via either native Promise.then or MutationObserver.
// MutationObserver has wider support, however it is seriously bugged in
// UIWebView in iOS >= 9.3.3 when triggered in touch event handlers. It
// completely stops working after triggering a few times... so, if native
// Promise is available, we will use it:
/* istanbul ignore next, $flow-disable-line */
if (typeof Promise !== 'undefined' && isNative(Promise)) {
var p = Promise.resolve();
timerFunc = function () {
p.then(flushCallbacks);
// In problematic UIWebViews, Promise.then doesn't completely break, but
// it can get stuck in a weird state where callbacks are pushed into the
// microtask queue but the queue isn't being flushed, until the browser
// needs to do some other work, e.g. handle a timer. Therefore we can
// "force" the microtask queue to be flushed by adding an empty timer.
if (isIOS) { setTimeout(noop); }
};
} else if (!isIE && typeof MutationObserver !== 'undefined' && (
isNative(MutationObserver) ||
// PhantomJS and iOS 7.x
MutationObserver.toString() === '[object MutationObserverConstructor]'
)) {
// Use MutationObserver where native Promise is not available,
// e.g. PhantomJS, iOS7, Android 4.4
// (#6466 MutationObserver is unreliable in IE11)
var counter = 1;
var observer = new MutationObserver(flushCallbacks);
var textNode = document.createTextNode(String(counter));
observer.observe(textNode, {
characterData: true
});
timerFunc = function () {
counter = (counter + 1) % 2;
textNode.data = String(counter);
};
} else if (typeof setImmediate !== 'undefined' && isNative(setImmediate)) {
// Fallback to setImmediate.
// Technically it leverages the (macro) task queue,
// but it is still a better choice than setTimeout.
timerFunc = function () {
setImmediate(flushCallbacks);
};
} else {
// Fallback to setTimeout.
timerFunc = function () {
setTimeout(flushCallbacks, 0);
};
}
function nextTick (cb, ctx) {
var _resolve;
callbacks.push(function () {
if (cb) {
try {
cb.call(ctx);
} catch (e) {
handleError(e, ctx, 'nextTick');
}
} else if (_resolve) {
_resolve(ctx);
}
});
if (!pending) {
pending = true;
timerFunc();
}
// $flow-disable-line
if (!cb && typeof Promise !== 'undefined') {
return new Promise(function (resolve) {
_resolve = resolve;
})
}
}
/* */
/* not type checking this file because flow doesn't play well with Proxy */
var initProxy;
if (true) {
var allowedGlobals = makeMap(
'Infinity,undefined,NaN,isFinite,isNaN,' +
'parseFloat,parseInt,decodeURI,decodeURIComponent,encodeURI,encodeURIComponent,' +
'Math,Number,Date,Array,Object,Boolean,String,RegExp,Map,Set,JSON,Intl,' +
'require' // for Webpack/Browserify
);
var warnNonPresent = function (target, key) {
warn(
"Property or method \"" + key + "\" is not defined on the instance but " +
'referenced during render. Make sure that this property is reactive, ' +
'either in the data option, or for class-based components, by ' +
'initializing the property. ' +
'See: https://vuejs.org/v2/guide/reactivity.html#Declaring-Reactive-Properties.',
target
);
};
var warnReservedPrefix = function (target, key) {
warn(
"Property \"" + key + "\" must be accessed with \"$data." + key + "\" because " +
'properties starting with "$" or "_" are not proxied in the Vue instance to ' +
'prevent conflicts with Vue internals. ' +
'See: https://vuejs.org/v2/api/#data',
target
);
};
var hasProxy =
typeof Proxy !== 'undefined' && isNative(Proxy);
if (hasProxy) {
var isBuiltInModifier = makeMap('stop,prevent,self,ctrl,shift,alt,meta,exact');
config.keyCodes = new Proxy(config.keyCodes, {
set: function set (target, key, value) {
if (isBuiltInModifier(key)) {
warn(("Avoid overwriting built-in modifier in config.keyCodes: ." + key));
return false
} else {
target[key] = value;
return true
}
}
});
}
var hasHandler = {
has: function has (target, key) {
var has = key in target;
var isAllowed = allowedGlobals(key) ||
(typeof key === 'string' && key.charAt(0) === '_' && !(key in target.$data));
if (!has && !isAllowed) {
if (key in target.$data) { warnReservedPrefix(target, key); }
else { warnNonPresent(target, key); }
}
return has || !isAllowed
}
};
var getHandler = {
get: function get (target, key) {
if (typeof key === 'string' && !(key in target)) {
if (key in target.$data) { warnReservedPrefix(target, key); }
else { warnNonPresent(target, key); }
}
return target[key]
}
};
initProxy = function initProxy (vm) {
if (hasProxy) {
// determine which proxy handler to use
var options = vm.$options;
var handlers = options.render && options.render._withStripped
? getHandler
: hasHandler;
vm._renderProxy = new Proxy(vm, handlers);
} else {
vm._renderProxy = vm;
}
};
}
/* */
var seenObjects = new _Set();
/**
* Recursively traverse an object to evoke all converted
* getters, so that every nested property inside the object
* is collected as a "deep" dependency.
*/
function traverse (val) {
_traverse(val, seenObjects);
seenObjects.clear();
}
function _traverse (val, seen) {
var i, keys;
var isA = Array.isArray(val);
if ((!isA && !isObject(val)) || Object.isFrozen(val) || val instanceof VNode) {
return
}
if (val.__ob__) {
var depId = val.__ob__.dep.id;
if (seen.has(depId)) {
return
}
seen.add(depId);
}
if (isA) {
i = val.length;
while (i--) { _traverse(val[i], seen); }
} else {
keys = Object.keys(val);
i = keys.length;
while (i--) { _traverse(val[keys[i]], seen); }
}
}
var mark;
var measure;
if (true) {
var perf = inBrowser && window.performance;
/* istanbul ignore if */
if (
perf &&
perf.mark &&
perf.measure &&
perf.clearMarks &&
perf.clearMeasures
) {
mark = function (tag) { return perf.mark(tag); };
measure = function (name, startTag, endTag) {
perf.measure(name, startTag, endTag);
perf.clearMarks(startTag);
perf.clearMarks(endTag);
// perf.clearMeasures(name)
};
}
}
/* */
var normalizeEvent = cached(function (name) {
var passive = name.charAt(0) === '&';
name = passive ? name.slice(1) : name;
var once$$1 = name.charAt(0) === '~'; // Prefixed last, checked first
name = once$$1 ? name.slice(1) : name;
var capture = name.charAt(0) === '!';
name = capture ? name.slice(1) : name;
return {
name: name,
once: once$$1,
capture: capture,
passive: passive
}
});
function createFnInvoker (fns, vm) {
function invoker () {
var arguments$1 = arguments;
var fns = invoker.fns;
if (Array.isArray(fns)) {
var cloned = fns.slice();
for (var i = 0; i < cloned.length; i++) {
invokeWithErrorHandling(cloned[i], null, arguments$1, vm, "v-on handler");
}
} else {
// return handler return value for single handlers
return invokeWithErrorHandling(fns, null, arguments, vm, "v-on handler")
}
}
invoker.fns = fns;
return invoker
}
function updateListeners (
on,
oldOn,
add,
remove$$1,
createOnceHandler,
vm
) {
var name, def$$1, cur, old, event;
for (name in on) {
def$$1 = cur = on[name];
old = oldOn[name];
event = normalizeEvent(name);
if (isUndef(cur)) {
true && warn(
"Invalid handler for event \"" + (event.name) + "\": got " + String(cur),
vm
);
} else if (isUndef(old)) {
if (isUndef(cur.fns)) {
cur = on[name] = createFnInvoker(cur, vm);
}
if (isTrue(event.once)) {
cur = on[name] = createOnceHandler(event.name, cur, event.capture);
}
add(event.name, cur, event.capture, event.passive, event.params);
} else if (cur !== old) {
old.fns = cur;
on[name] = old;
}
}
for (name in oldOn) {
if (isUndef(on[name])) {
event = normalizeEvent(name);
remove$$1(event.name, oldOn[name], event.capture);
}
}
}
/* */
/* */
// fixed by xxxxxx (mp properties)
function extractPropertiesFromVNodeData(data, Ctor, res, context) {
var propOptions = Ctor.options.mpOptions && Ctor.options.mpOptions.properties;
if (isUndef(propOptions)) {
return res
}
var externalClasses = Ctor.options.mpOptions.externalClasses || [];
var attrs = data.attrs;
var props = data.props;
if (isDef(attrs) || isDef(props)) {
for (var key in propOptions) {
var altKey = hyphenate(key);
var result = checkProp(res, props, key, altKey, true) ||
checkProp(res, attrs, key, altKey, false);
// externalClass
if (
result &&
res[key] &&
externalClasses.indexOf(altKey) !== -1 &&
context[camelize(res[key])]
) {
// 赋值 externalClass 真正的值(模板里 externalClass 的值可能是字符串)
res[key] = context[camelize(res[key])];
}
}
}
return res
}
function extractPropsFromVNodeData (
data,
Ctor,
tag,
context// fixed by xxxxxx
) {
// we are only extracting raw values here.
// validation and default values are handled in the child
// component itself.
var propOptions = Ctor.options.props;
if (isUndef(propOptions)) {
// fixed by xxxxxx
return extractPropertiesFromVNodeData(data, Ctor, {}, context)
}
var res = {};
var attrs = data.attrs;
var props = data.props;
if (isDef(attrs) || isDef(props)) {
for (var key in propOptions) {
var altKey = hyphenate(key);
if (true) {
var keyInLowerCase = key.toLowerCase();
if (
key !== keyInLowerCase &&
attrs && hasOwn(attrs, keyInLowerCase)
) {
tip(
"Prop \"" + keyInLowerCase + "\" is passed to component " +
(formatComponentName(tag || Ctor)) + ", but the declared prop name is" +
" \"" + key + "\". " +
"Note that HTML attributes are case-insensitive and camelCased " +
"props need to use their kebab-case equivalents when using in-DOM " +
"templates. You should probably use \"" + altKey + "\" instead of \"" + key + "\"."
);
}
}
checkProp(res, props, key, altKey, true) ||
checkProp(res, attrs, key, altKey, false);
}
}
// fixed by xxxxxx
return extractPropertiesFromVNodeData(data, Ctor, res, context)
}
function checkProp (
res,
hash,
key,
altKey,
preserve
) {
if (isDef(hash)) {
if (hasOwn(hash, key)) {
res[key] = hash[key];
if (!preserve) {
delete hash[key];
}
return true
} else if (hasOwn(hash, altKey)) {
res[key] = hash[altKey];
if (!preserve) {
delete hash[altKey];
}
return true
}
}
return false
}
/* */
// The template compiler attempts to minimize the need for normalization by
// statically analyzing the template at compile time.
//
// For plain HTML markup, normalization can be completely skipped because the
// generated render function is guaranteed to return Array<VNode>. There are
// two cases where extra normalization is needed:
// 1. When the children contains components - because a functional component
// may return an Array instead of a single root. In this case, just a simple
// normalization is needed - if any child is an Array, we flatten the whole
// thing with Array.prototype.concat. It is guaranteed to be only 1-level deep
// because functional components already normalize their own children.
function simpleNormalizeChildren (children) {
for (var i = 0; i < children.length; i++) {
if (Array.isArray(children[i])) {
return Array.prototype.concat.apply([], children)
}
}
return children
}
// 2. When the children contains constructs that always generated nested Arrays,
// e.g. <template>, <slot>, v-for, or when the children is provided by user
// with hand-written render functions / JSX. In such cases a full normalization
// is needed to cater to all possible types of children values.
function normalizeChildren (children) {
return isPrimitive(children)
? [createTextVNode(children)]
: Array.isArray(children)
? normalizeArrayChildren(children)
: undefined
}
function isTextNode (node) {
return isDef(node) && isDef(node.text) && isFalse(node.isComment)
}
function normalizeArrayChildren (children, nestedIndex) {
var res = [];
var i, c, lastIndex, last;
for (i = 0; i < children.length; i++) {
c = children[i];
if (isUndef(c) || typeof c === 'boolean') { continue }
lastIndex = res.length - 1;
last = res[lastIndex];
// nested
if (Array.isArray(c)) {
if (c.length > 0) {
c = normalizeArrayChildren(c, ((nestedIndex || '') + "_" + i));
// merge adjacent text nodes
if (isTextNode(c[0]) && isTextNode(last)) {
res[lastIndex] = createTextVNode(last.text + (c[0]).text);
c.shift();
}
res.push.apply(res, c);
}
} else if (isPrimitive(c)) {
if (isTextNode(last)) {
// merge adjacent text nodes
// this is necessary for SSR hydration because text nodes are
// essentially merged when rendered to HTML strings
res[lastIndex] = createTextVNode(last.text + c);
} else if (c !== '') {
// convert primitive to vnode
res.push(createTextVNode(c));
}
} else {
if (isTextNode(c) && isTextNode(last)) {
// merge adjacent text nodes
res[lastIndex] = createTextVNode(last.text + c.text);
} else {
// default key for nested array children (likely generated by v-for)
if (isTrue(children._isVList) &&
isDef(c.tag) &&
isUndef(c.key) &&
isDef(nestedIndex)) {
c.key = "__vlist" + nestedIndex + "_" + i + "__";
}
res.push(c);
}
}
}
return res
}
/* */
function initProvide (vm) {
var provide = vm.$options.provide;
if (provide) {
vm._provided = typeof provide === 'function'
? provide.call(vm)
: provide;
}
}
function initInjections (vm) {
var result = resolveInject(vm.$options.inject, vm);
if (result) {
toggleObserving(false);
Object.keys(result).forEach(function (key) {
/* istanbul ignore else */
if (true) {
defineReactive$$1(vm, key, result[key], function () {
warn(
"Avoid mutating an injected value directly since the changes will be " +
"overwritten whenever the provided component re-renders. " +
"injection being mutated: \"" + key + "\"",
vm
);
});
} else {}
});
toggleObserving(true);
}
}
function resolveInject (inject, vm) {
if (inject) {
// inject is :any because flow is not smart enough to figure out cached
var result = Object.create(null);
var keys = hasSymbol
? Reflect.ownKeys(inject)
: Object.keys(inject);
for (var i = 0; i < keys.length; i++) {
var key = keys[i];
// #6574 in case the inject object is observed...
if (key === '__ob__') { continue }
var provideKey = inject[key].from;
var source = vm;
while (source) {
if (source._provided && hasOwn(source._provided, provideKey)) {
result[key] = source._provided[provideKey];
break
}
source = source.$parent;
}
if (!source) {
if ('default' in inject[key]) {
var provideDefault = inject[key].default;
result[key] = typeof provideDefault === 'function'
? provideDefault.call(vm)
: provideDefault;
} else if (true) {
warn(("Injection \"" + key + "\" not found"), vm);
}
}
}
return result
}
}
/* */
/**
* Runtime helper for resolving raw children VNodes into a slot object.
*/
function resolveSlots (
children,
context
) {
if (!children || !children.length) {
return {}
}
var slots = {};
for (var i = 0, l = children.length; i < l; i++) {
var child = children[i];
var data = child.data;
// remove slot attribute if the node is resolved as a Vue slot node
if (data && data.attrs && data.attrs.slot) {
delete data.attrs.slot;
}
// named slots should only be respected if the vnode was rendered in the
// same context.
if ((child.context === context || child.fnContext === context) &&
data && data.slot != null
) {
var name = data.slot;
var slot = (slots[name] || (slots[name] = []));
if (child.tag === 'template') {
slot.push.apply(slot, child.children || []);
} else {
slot.push(child);
}
} else {
// fixed by xxxxxx 临时 hack 掉 uni-app 中的异步 name slot page
if(child.asyncMeta && child.asyncMeta.data && child.asyncMeta.data.slot === 'page'){
(slots['page'] || (slots['page'] = [])).push(child);
}else{
(slots.default || (slots.default = [])).push(child);
}
}
}
// ignore slots that contains only whitespace
for (var name$1 in slots) {
if (slots[name$1].every(isWhitespace)) {
delete slots[name$1];
}
}
return slots
}
function isWhitespace (node) {
return (node.isComment && !node.asyncFactory) || node.text === ' '
}
/* */
function normalizeScopedSlots (
slots,
normalSlots,
prevSlots
) {
var res;
var hasNormalSlots = Object.keys(normalSlots).length > 0;
var isStable = slots ? !!slots.$stable : !hasNormalSlots;
var key = slots && slots.$key;
if (!slots) {
res = {};
} else if (slots._normalized) {
// fast path 1: child component re-render only, parent did not change
return slots._normalized
} else if (
isStable &&
prevSlots &&
prevSlots !== emptyObject &&
key === prevSlots.$key &&
!hasNormalSlots &&
!prevSlots.$hasNormal
) {
// fast path 2: stable scoped slots w/ no normal slots to proxy,
// only need to normalize once
return prevSlots
} else {
res = {};
for (var key$1 in slots) {
if (slots[key$1] && key$1[0] !== '$') {
res[key$1] = normalizeScopedSlot(normalSlots, key$1, slots[key$1]);
}
}
}
// expose normal slots on scopedSlots
for (var key$2 in normalSlots) {
if (!(key$2 in res)) {
res[key$2] = proxyNormalSlot(normalSlots, key$2);
}
}
// avoriaz seems to mock a non-extensible $scopedSlots object
// and when that is passed down this would cause an error
if (slots && Object.isExtensible(slots)) {
(slots)._normalized = res;
}
def(res, '$stable', isStable);
def(res, '$key', key);
def(res, '$hasNormal', hasNormalSlots);
return res
}
function normalizeScopedSlot(normalSlots, key, fn) {
var normalized = function () {
var res = arguments.length ? fn.apply(null, arguments) : fn({});
res = res && typeof res === 'object' && !Array.isArray(res)
? [res] // single vnode
: normalizeChildren(res);
return res && (
res.length === 0 ||
(res.length === 1 && res[0].isComment) // #9658
) ? undefined
: res
};
// this is a slot using the new v-slot syntax without scope. although it is
// compiled as a scoped slot, render fn users would expect it to be present
// on this.$slots because the usage is semantically a normal slot.
if (fn.proxy) {
Object.defineProperty(normalSlots, key, {
get: normalized,
enumerable: true,
configurable: true
});
}
return normalized
}
function proxyNormalSlot(slots, key) {
return function () { return slots[key]; }
}
/* */
/**
* Runtime helper for rendering v-for lists.
*/
function renderList (
val,
render
) {
var ret, i, l, keys, key;
if (Array.isArray(val) || typeof val === 'string') {
ret = new Array(val.length);
for (i = 0, l = val.length; i < l; i++) {
ret[i] = render(val[i], i, i, i); // fixed by xxxxxx
}
} else if (typeof val === 'number') {
ret = new Array(val);
for (i = 0; i < val; i++) {
ret[i] = render(i + 1, i, i, i); // fixed by xxxxxx
}
} else if (isObject(val)) {
if (hasSymbol && val[Symbol.iterator]) {
ret = [];
var iterator = val[Symbol.iterator]();
var result = iterator.next();
while (!result.done) {
ret.push(render(result.value, ret.length, i, i++)); // fixed by xxxxxx
result = iterator.next();
}
} else {
keys = Object.keys(val);
ret = new Array(keys.length);
for (i = 0, l = keys.length; i < l; i++) {
key = keys[i];
ret[i] = render(val[key], key, i, i); // fixed by xxxxxx
}
}
}
if (!isDef(ret)) {
ret = [];
}
(ret)._isVList = true;
return ret
}
/* */
/**
* Runtime helper for rendering <slot>
*/
function renderSlot (
name,
fallback,
props,
bindObject
) {
var scopedSlotFn = this.$scopedSlots[name];
var nodes;
if (scopedSlotFn) { // scoped slot
props = props || {};
if (bindObject) {
if ( true && !isObject(bindObject)) {
warn(
'slot v-bind without argument expects an Object',
this
);
}
props = extend(extend({}, bindObject), props);
}
// fixed by xxxxxx app-plus scopedSlot
nodes = scopedSlotFn(props, this, props._i) || fallback;
} else {
nodes = this.$slots[name] || fallback;
}
var target = props && props.slot;
if (target) {
return this.$createElement('template', { slot: target }, nodes)
} else {
return nodes
}
}
/* */
/**
* Runtime helper for resolving filters
*/
function resolveFilter (id) {
return resolveAsset(this.$options, 'filters', id, true) || identity
}
/* */
function isKeyNotMatch (expect, actual) {
if (Array.isArray(expect)) {
return expect.indexOf(actual) === -1
} else {
return expect !== actual
}
}
/**
* Runtime helper for checking keyCodes from config.
* exposed as Vue.prototype._k
* passing in eventKeyName as last argument separately for backwards compat
*/
function checkKeyCodes (
eventKeyCode,
key,
builtInKeyCode,
eventKeyName,
builtInKeyName
) {
var mappedKeyCode = config.keyCodes[key] || builtInKeyCode;
if (builtInKeyName && eventKeyName && !config.keyCodes[key]) {
return isKeyNotMatch(builtInKeyName, eventKeyName)
} else if (mappedKeyCode) {
return isKeyNotMatch(mappedKeyCode, eventKeyCode)
} else if (eventKeyName) {
return hyphenate(eventKeyName) !== key
}
}
/* */
/**
* Runtime helper for merging v-bind="object" into a VNode's data.
*/
function bindObjectProps (
data,
tag,
value,
asProp,
isSync
) {
if (value) {
if (!isObject(value)) {
true && warn(
'v-bind without argument expects an Object or Array value',
this
);
} else {
if (Array.isArray(value)) {
value = toObject(value);
}
var hash;
var loop = function ( key ) {
if (
key === 'class' ||
key === 'style' ||
isReservedAttribute(key)
) {
hash = data;
} else {
var type = data.attrs && data.attrs.type;
hash = asProp || config.mustUseProp(tag, type, key)
? data.domProps || (data.domProps = {})
: data.attrs || (data.attrs = {});
}
var camelizedKey = camelize(key);
var hyphenatedKey = hyphenate(key);
if (!(camelizedKey in hash) && !(hyphenatedKey in hash)) {
hash[key] = value[key];
if (isSync) {
var on = data.on || (data.on = {});
on[("update:" + key)] = function ($event) {
value[key] = $event;
};
}
}
};
for (var key in value) loop( key );
}
}
return data
}
/* */
/**
* Runtime helper for rendering static trees.
*/
function renderStatic (
index,
isInFor
) {
var cached = this._staticTrees || (this._staticTrees = []);
var tree = cached[index];
// if has already-rendered static tree and not inside v-for,
// we can reuse the same tree.
if (tree && !isInFor) {
return tree
}
// otherwise, render a fresh tree.
tree = cached[index] = this.$options.staticRenderFns[index].call(
this._renderProxy,
null,
this // for render fns generated for functional component templates
);
markStatic(tree, ("__static__" + index), false);
return tree
}
/**
* Runtime helper for v-once.
* Effectively it means marking the node as static with a unique key.
*/
function markOnce (
tree,
index,
key
) {
markStatic(tree, ("__once__" + index + (key ? ("_" + key) : "")), true);
return tree
}
function markStatic (
tree,
key,
isOnce
) {
if (Array.isArray(tree)) {
for (var i = 0; i < tree.length; i++) {
if (tree[i] && typeof tree[i] !== 'string') {
markStaticNode(tree[i], (key + "_" + i), isOnce);
}
}
} else {
markStaticNode(tree, key, isOnce);
}
}
function markStaticNode (node, key, isOnce) {
node.isStatic = true;
node.key = key;
node.isOnce = isOnce;
}
/* */
function bindObjectListeners (data, value) {
if (value) {
if (!isPlainObject(value)) {
true && warn(
'v-on without argument expects an Object value',
this
);
} else {
var on = data.on = data.on ? extend({}, data.on) : {};
for (var key in value) {
var existing = on[key];
var ours = value[key];
on[key] = existing ? [].concat(existing, ours) : ours;
}
}
}
return data
}
/* */
function resolveScopedSlots (
fns, // see flow/vnode
res,
// the following are added in 2.6
hasDynamicKeys,
contentHashKey
) {
res = res || { $stable: !hasDynamicKeys };
for (var i = 0; i < fns.length; i++) {
var slot = fns[i];
if (Array.isArray(slot)) {
resolveScopedSlots(slot, res, hasDynamicKeys);
} else if (slot) {
// marker for reverse proxying v-slot without scope on this.$slots
if (slot.proxy) {
slot.fn.proxy = true;
}
res[slot.key] = slot.fn;
}
}
if (contentHashKey) {
(res).$key = contentHashKey;
}
return res
}
/* */
function bindDynamicKeys (baseObj, values) {
for (var i = 0; i < values.length; i += 2) {
var key = values[i];
if (typeof key === 'string' && key) {
baseObj[values[i]] = values[i + 1];
} else if ( true && key !== '' && key !== null) {
// null is a special value for explicitly removing a binding
warn(
("Invalid value for dynamic directive argument (expected string or null): " + key),
this
);
}
}
return baseObj
}
// helper to dynamically append modifier runtime markers to event names.
// ensure only append when value is already string, otherwise it will be cast
// to string and cause the type check to miss.
function prependModifier (value, symbol) {
return typeof value === 'string' ? symbol + value : value
}
/* */
function installRenderHelpers (target) {
target._o = markOnce;
target._n = toNumber;
target._s = toString;
target._l = renderList;
target._t = renderSlot;
target._q = looseEqual;
target._i = looseIndexOf;
target._m = renderStatic;
target._f = resolveFilter;
target._k = checkKeyCodes;
target._b = bindObjectProps;
target._v = createTextVNode;
target._e = createEmptyVNode;
target._u = resolveScopedSlots;
target._g = bindObjectListeners;
target._d = bindDynamicKeys;
target._p = prependModifier;
}
/* */
function FunctionalRenderContext (
data,
props,
children,
parent,
Ctor
) {
var this$1 = this;
var options = Ctor.options;
// ensure the createElement function in functional components
// gets a unique context - this is necessary for correct named slot check
var contextVm;
if (hasOwn(parent, '_uid')) {
contextVm = Object.create(parent);
// $flow-disable-line
contextVm._original = parent;
} else {
// the context vm passed in is a functional context as well.
// in this case we want to make sure we are able to get a hold to the
// real context instance.
contextVm = parent;
// $flow-disable-line
parent = parent._original;
}
var isCompiled = isTrue(options._compiled);
var needNormalization = !isCompiled;
this.data = data;
this.props = props;
this.children = children;
this.parent = parent;
this.listeners = data.on || emptyObject;
this.injections = resolveInject(options.inject, parent);
this.slots = function () {
if (!this$1.$slots) {
normalizeScopedSlots(
data.scopedSlots,
this$1.$slots = resolveSlots(children, parent)
);
}
return this$1.$slots
};
Object.defineProperty(this, 'scopedSlots', ({
enumerable: true,
get: function get () {
return normalizeScopedSlots(data.scopedSlots, this.slots())
}
}));
// support for compiled functional template
if (isCompiled) {
// exposing $options for renderStatic()
this.$options = options;
// pre-resolve slots for renderSlot()
this.$slots = this.slots();
this.$scopedSlots = normalizeScopedSlots(data.scopedSlots, this.$slots);
}
if (options._scopeId) {
this._c = function (a, b, c, d) {
var vnode = createElement(contextVm, a, b, c, d, needNormalization);
if (vnode && !Array.isArray(vnode)) {
vnode.fnScopeId = options._scopeId;
vnode.fnContext = parent;
}
return vnode
};
} else {
this._c = function (a, b, c, d) { return createElement(contextVm, a, b, c, d, needNormalization); };
}
}
installRenderHelpers(FunctionalRenderContext.prototype);
function createFunctionalComponent (
Ctor,
propsData,
data,
contextVm,
children
) {
var options = Ctor.options;
var props = {};
var propOptions = options.props;
if (isDef(propOptions)) {
for (var key in propOptions) {
props[key] = validateProp(key, propOptions, propsData || emptyObject);
}
} else {
if (isDef(data.attrs)) { mergeProps(props, data.attrs); }
if (isDef(data.props)) { mergeProps(props, data.props); }
}
var renderContext = new FunctionalRenderContext(
data,
props,
children,
contextVm,
Ctor
);
var vnode = options.render.call(null, renderContext._c, renderContext);
if (vnode instanceof VNode) {
return cloneAndMarkFunctionalResult(vnode, data, renderContext.parent, options, renderContext)
} else if (Array.isArray(vnode)) {
var vnodes = normalizeChildren(vnode) || [];
var res = new Array(vnodes.length);
for (var i = 0; i < vnodes.length; i++) {
res[i] = cloneAndMarkFunctionalResult(vnodes[i], data, renderContext.parent, options, renderContext);
}
return res
}
}
function cloneAndMarkFunctionalResult (vnode, data, contextVm, options, renderContext) {
// #7817 clone node before setting fnContext, otherwise if the node is reused
// (e.g. it was from a cached normal slot) the fnContext causes named slots
// that should not be matched to match.
var clone = cloneVNode(vnode);
clone.fnContext = contextVm;
clone.fnOptions = options;
if (true) {
(clone.devtoolsMeta = clone.devtoolsMeta || {}).renderContext = renderContext;
}
if (data.slot) {
(clone.data || (clone.data = {})).slot = data.slot;
}
return clone
}
function mergeProps (to, from) {
for (var key in from) {
to[camelize(key)] = from[key];
}
}
/* */
/* */
/* */
/* */
// inline hooks to be invoked on component VNodes during patch
var componentVNodeHooks = {
init: function init (vnode, hydrating) {
if (
vnode.componentInstance &&
!vnode.componentInstance._isDestroyed &&
vnode.data.keepAlive
) {
// kept-alive components, treat as a patch
var mountedNode = vnode; // work around flow
componentVNodeHooks.prepatch(mountedNode, mountedNode);
} else {
var child = vnode.componentInstance = createComponentInstanceForVnode(
vnode,
activeInstance
);
child.$mount(hydrating ? vnode.elm : undefined, hydrating);
}
},
prepatch: function prepatch (oldVnode, vnode) {
var options = vnode.componentOptions;
var child = vnode.componentInstance = oldVnode.componentInstance;
updateChildComponent(
child,
options.propsData, // updated props
options.listeners, // updated listeners
vnode, // new parent vnode
options.children // new children
);
},
insert: function insert (vnode) {
var context = vnode.context;
var componentInstance = vnode.componentInstance;
if (!componentInstance._isMounted) {
callHook(componentInstance, 'onServiceCreated');
callHook(componentInstance, 'onServiceAttached');
componentInstance._isMounted = true;
callHook(componentInstance, 'mounted');
}
if (vnode.data.keepAlive) {
if (context._isMounted) {
// vue-router#1212
// During updates, a kept-alive component's child components may
// change, so directly walking the tree here may call activated hooks
// on incorrect children. Instead we push them into a queue which will
// be processed after the whole patch process ended.
queueActivatedComponent(componentInstance);
} else {
activateChildComponent(componentInstance, true /* direct */);
}
}
},
destroy: function destroy (vnode) {
var componentInstance = vnode.componentInstance;
if (!componentInstance._isDestroyed) {
if (!vnode.data.keepAlive) {
componentInstance.$destroy();
} else {
deactivateChildComponent(componentInstance, true /* direct */);
}
}
}
};
var hooksToMerge = Object.keys(componentVNodeHooks);
function createComponent (
Ctor,
data,
context,
children,
tag
) {
if (isUndef(Ctor)) {
return
}
var baseCtor = context.$options._base;
// plain options object: turn it into a constructor
if (isObject(Ctor)) {
Ctor = baseCtor.extend(Ctor);
}
// if at this stage it's not a constructor or an async component factory,
// reject.
if (typeof Ctor !== 'function') {
if (true) {
warn(("Invalid Component definition: " + (String(Ctor))), context);
}
return
}
// async component
var asyncFactory;
if (isUndef(Ctor.cid)) {
asyncFactory = Ctor;
Ctor = resolveAsyncComponent(asyncFactory, baseCtor);
if (Ctor === undefined) {
// return a placeholder node for async component, which is rendered
// as a comment node but preserves all the raw information for the node.
// the information will be used for async server-rendering and hydration.
return createAsyncPlaceholder(
asyncFactory,
data,
context,
children,
tag
)
}
}
data = data || {};
// resolve constructor options in case global mixins are applied after
// component constructor creation
resolveConstructorOptions(Ctor);
// transform component v-model data into props & events
if (isDef(data.model)) {
transformModel(Ctor.options, data);
}
// extract props
var propsData = extractPropsFromVNodeData(data, Ctor, tag, context); // fixed by xxxxxx
// functional component
if (isTrue(Ctor.options.functional)) {
return createFunctionalComponent(Ctor, propsData, data, context, children)
}
// extract listeners, since these needs to be treated as
// child component listeners instead of DOM listeners
var listeners = data.on;
// replace with listeners with .native modifier
// so it gets processed during parent component patch.
data.on = data.nativeOn;
if (isTrue(Ctor.options.abstract)) {
// abstract components do not keep anything
// other than props & listeners & slot
// work around flow
var slot = data.slot;
data = {};
if (slot) {
data.slot = slot;
}
}
// install component management hooks onto the placeholder node
installComponentHooks(data);
// return a placeholder vnode
var name = Ctor.options.name || tag;
var vnode = new VNode(
("vue-component-" + (Ctor.cid) + (name ? ("-" + name) : '')),
data, undefined, undefined, undefined, context,
{ Ctor: Ctor, propsData: propsData, listeners: listeners, tag: tag, children: children },
asyncFactory
);
return vnode
}
function createComponentInstanceForVnode (
vnode, // we know it's MountedComponentVNode but flow doesn't
parent // activeInstance in lifecycle state
) {
var options = {
_isComponent: true,
_parentVnode: vnode,
parent: parent
};
// check inline-template render functions
var inlineTemplate = vnode.data.inlineTemplate;
if (isDef(inlineTemplate)) {
options.render = inlineTemplate.render;
options.staticRenderFns = inlineTemplate.staticRenderFns;
}
return new vnode.componentOptions.Ctor(options)
}
function installComponentHooks (data) {
var hooks = data.hook || (data.hook = {});
for (var i = 0; i < hooksToMerge.length; i++) {
var key = hooksToMerge[i];
var existing = hooks[key];
var toMerge = componentVNodeHooks[key];
if (existing !== toMerge && !(existing && existing._merged)) {
hooks[key] = existing ? mergeHook$1(toMerge, existing) : toMerge;
}
}
}
function mergeHook$1 (f1, f2) {
var merged = function (a, b) {
// flow complains about extra args which is why we use any
f1(a, b);
f2(a, b);
};
merged._merged = true;
return merged
}
// transform component v-model info (value and callback) into
// prop and event handler respectively.
function transformModel (options, data) {
var prop = (options.model && options.model.prop) || 'value';
var event = (options.model && options.model.event) || 'input'
;(data.attrs || (data.attrs = {}))[prop] = data.model.value;
var on = data.on || (data.on = {});
var existing = on[event];
var callback = data.model.callback;
if (isDef(existing)) {
if (
Array.isArray(existing)
? existing.indexOf(callback) === -1
: existing !== callback
) {
on[event] = [callback].concat(existing);
}
} else {
on[event] = callback;
}
}
/* */
var SIMPLE_NORMALIZE = 1;
var ALWAYS_NORMALIZE = 2;
// wrapper function for providing a more flexible interface
// without getting yelled at by flow
function createElement (
context,
tag,
data,
children,
normalizationType,
alwaysNormalize
) {
if (Array.isArray(data) || isPrimitive(data)) {
normalizationType = children;
children = data;
data = undefined;
}
if (isTrue(alwaysNormalize)) {
normalizationType = ALWAYS_NORMALIZE;
}
return _createElement(context, tag, data, children, normalizationType)
}
function _createElement (
context,
tag,
data,
children,
normalizationType
) {
if (isDef(data) && isDef((data).__ob__)) {
true && warn(
"Avoid using observed data object as vnode data: " + (JSON.stringify(data)) + "\n" +
'Always create fresh vnode data objects in each render!',
context
);
return createEmptyVNode()
}
// object syntax in v-bind
if (isDef(data) && isDef(data.is)) {
tag = data.is;
}
if (!tag) {
// in case of component :is set to falsy value
return createEmptyVNode()
}
// warn against non-primitive key
if ( true &&
isDef(data) && isDef(data.key) && !isPrimitive(data.key)
) {
{
warn(
'Avoid using non-primitive value as key, ' +
'use string/number value instead.',
context
);
}
}
// support single function children as default scoped slot
if (Array.isArray(children) &&
typeof children[0] === 'function'
) {
data = data || {};
data.scopedSlots = { default: children[0] };
children.length = 0;
}
if (normalizationType === ALWAYS_NORMALIZE) {
children = normalizeChildren(children);
} else if (normalizationType === SIMPLE_NORMALIZE) {
children = simpleNormalizeChildren(children);
}
var vnode, ns;
if (typeof tag === 'string') {
var Ctor;
ns = (context.$vnode && context.$vnode.ns) || config.getTagNamespace(tag);
if (config.isReservedTag(tag)) {
// platform built-in elements
if ( true && isDef(data) && isDef(data.nativeOn)) {
warn(
("The .native modifier for v-on is only valid on components but it was used on <" + tag + ">."),
context
);
}
vnode = new VNode(
config.parsePlatformTagName(tag), data, children,
undefined, undefined, context
);
} else if ((!data || !data.pre) && isDef(Ctor = resolveAsset(context.$options, 'components', tag))) {
// component
vnode = createComponent(Ctor, data, context, children, tag);
} else {
// unknown or unlisted namespaced elements
// check at runtime because it may get assigned a namespace when its
// parent normalizes children
vnode = new VNode(
tag, data, children,
undefined, undefined, context
);
}
} else {
// direct component options / constructor
vnode = createComponent(tag, data, context, children);
}
if (Array.isArray(vnode)) {
return vnode
} else if (isDef(vnode)) {
if (isDef(ns)) { applyNS(vnode, ns); }
if (isDef(data)) { registerDeepBindings(data); }
return vnode
} else {
return createEmptyVNode()
}
}
function applyNS (vnode, ns, force) {
vnode.ns = ns;
if (vnode.tag === 'foreignObject') {
// use default namespace inside foreignObject
ns = undefined;
force = true;
}
if (isDef(vnode.children)) {
for (var i = 0, l = vnode.children.length; i < l; i++) {
var child = vnode.children[i];
if (isDef(child.tag) && (
isUndef(child.ns) || (isTrue(force) && child.tag !== 'svg'))) {
applyNS(child, ns, force);
}
}
}
}
// ref #5318
// necessary to ensure parent re-render when deep bindings like :style and
// :class are used on slot nodes
function registerDeepBindings (data) {
if (isObject(data.style)) {
traverse(data.style);
}
if (isObject(data.class)) {
traverse(data.class);
}
}
/* */
function initRender (vm) {
vm._vnode = null; // the root of the child tree
vm._staticTrees = null; // v-once cached trees
var options = vm.$options;
var parentVnode = vm.$vnode = options._parentVnode; // the placeholder node in parent tree
var renderContext = parentVnode && parentVnode.context;
vm.$slots = resolveSlots(options._renderChildren, renderContext);
vm.$scopedSlots = emptyObject;
// bind the createElement fn to this instance
// so that we get proper render context inside it.
// args order: tag, data, children, normalizationType, alwaysNormalize
// internal version is used by render functions compiled from templates
vm._c = function (a, b, c, d) { return createElement(vm, a, b, c, d, false); };
// normalization is always applied for the public version, used in
// user-written render functions.
vm.$createElement = function (a, b, c, d) { return createElement(vm, a, b, c, d, true); };
// $attrs & $listeners are exposed for easier HOC creation.
// they need to be reactive so that HOCs using them are always updated
var parentData = parentVnode && parentVnode.data;
/* istanbul ignore else */
if (true) {
defineReactive$$1(vm, '$attrs', parentData && parentData.attrs || emptyObject, function () {
!isUpdatingChildComponent && warn("$attrs is readonly.", vm);
}, true);
defineReactive$$1(vm, '$listeners', options._parentListeners || emptyObject, function () {
!isUpdatingChildComponent && warn("$listeners is readonly.", vm);
}, true);
} else {}
}
var currentRenderingInstance = null;
function renderMixin (Vue) {
// install runtime convenience helpers
installRenderHelpers(Vue.prototype);
Vue.prototype.$nextTick = function (fn) {
return nextTick(fn, this)
};
Vue.prototype._render = function () {
var vm = this;
var ref = vm.$options;
var render = ref.render;
var _parentVnode = ref._parentVnode;
if (_parentVnode) {
vm.$scopedSlots = normalizeScopedSlots(
_parentVnode.data.scopedSlots,
vm.$slots,
vm.$scopedSlots
);
}
// set parent vnode. this allows render functions to have access
// to the data on the placeholder node.
vm.$vnode = _parentVnode;
// render self
var vnode;
try {
// There's no need to maintain a stack because all render fns are called
// separately from one another. Nested component's render fns are called
// when parent component is patched.
currentRenderingInstance = vm;
vnode = render.call(vm._renderProxy, vm.$createElement);
} catch (e) {
handleError(e, vm, "render");
// return error render result,
// or previous vnode to prevent render error causing blank component
/* istanbul ignore else */
if ( true && vm.$options.renderError) {
try {
vnode = vm.$options.renderError.call(vm._renderProxy, vm.$createElement, e);
} catch (e) {
handleError(e, vm, "renderError");
vnode = vm._vnode;
}
} else {
vnode = vm._vnode;
}
} finally {
currentRenderingInstance = null;
}
// if the returned array contains only a single node, allow it
if (Array.isArray(vnode) && vnode.length === 1) {
vnode = vnode[0];
}
// return empty vnode in case the render function errored out
if (!(vnode instanceof VNode)) {
if ( true && Array.isArray(vnode)) {
warn(
'Multiple root nodes returned from render function. Render function ' +
'should return a single root node.',
vm
);
}
vnode = createEmptyVNode();
}
// set parent
vnode.parent = _parentVnode;
return vnode
};
}
/* */
function ensureCtor (comp, base) {
if (
comp.__esModule ||
(hasSymbol && comp[Symbol.toStringTag] === 'Module')
) {
comp = comp.default;
}
return isObject(comp)
? base.extend(comp)
: comp
}
function createAsyncPlaceholder (
factory,
data,
context,
children,
tag
) {
var node = createEmptyVNode();
node.asyncFactory = factory;
node.asyncMeta = { data: data, context: context, children: children, tag: tag };
return node
}
function resolveAsyncComponent (
factory,
baseCtor
) {
if (isTrue(factory.error) && isDef(factory.errorComp)) {
return factory.errorComp
}
if (isDef(factory.resolved)) {
return factory.resolved
}
var owner = currentRenderingInstance;
if (owner && isDef(factory.owners) && factory.owners.indexOf(owner) === -1) {
// already pending
factory.owners.push(owner);
}
if (isTrue(factory.loading) && isDef(factory.loadingComp)) {
return factory.loadingComp
}
if (owner && !isDef(factory.owners)) {
var owners = factory.owners = [owner];
var sync = true;
var timerLoading = null;
var timerTimeout = null
;(owner).$on('hook:destroyed', function () { return remove(owners, owner); });
var forceRender = function (renderCompleted) {
for (var i = 0, l = owners.length; i < l; i++) {
(owners[i]).$forceUpdate();
}
if (renderCompleted) {
owners.length = 0;
if (timerLoading !== null) {
clearTimeout(timerLoading);
timerLoading = null;
}
if (timerTimeout !== null) {
clearTimeout(timerTimeout);
timerTimeout = null;
}
}
};
var resolve = once(function (res) {
// cache resolved
factory.resolved = ensureCtor(res, baseCtor);
// invoke callbacks only if this is not a synchronous resolve
// (async resolves are shimmed as synchronous during SSR)
if (!sync) {
forceRender(true);
} else {
owners.length = 0;
}
});
var reject = once(function (reason) {
true && warn(
"Failed to resolve async component: " + (String(factory)) +
(reason ? ("\nReason: " + reason) : '')
);
if (isDef(factory.errorComp)) {
factory.error = true;
forceRender(true);
}
});
var res = factory(resolve, reject);
if (isObject(res)) {
if (isPromise(res)) {
// () => Promise
if (isUndef(factory.resolved)) {
res.then(resolve, reject);
}
} else if (isPromise(res.component)) {
res.component.then(resolve, reject);
if (isDef(res.error)) {
factory.errorComp = ensureCtor(res.error, baseCtor);
}
if (isDef(res.loading)) {
factory.loadingComp = ensureCtor(res.loading, baseCtor);
if (res.delay === 0) {
factory.loading = true;
} else {
timerLoading = setTimeout(function () {
timerLoading = null;
if (isUndef(factory.resolved) && isUndef(factory.error)) {
factory.loading = true;
forceRender(false);
}
}, res.delay || 200);
}
}
if (isDef(res.timeout)) {
timerTimeout = setTimeout(function () {
timerTimeout = null;
if (isUndef(factory.resolved)) {
reject(
true
? ("timeout (" + (res.timeout) + "ms)")
: undefined
);
}
}, res.timeout);
}
}
}
sync = false;
// return in case resolved synchronously
return factory.loading
? factory.loadingComp
: factory.resolved
}
}
/* */
function isAsyncPlaceholder (node) {
return node.isComment && node.asyncFactory
}
/* */
function getFirstComponentChild (children) {
if (Array.isArray(children)) {
for (var i = 0; i < children.length; i++) {
var c = children[i];
if (isDef(c) && (isDef(c.componentOptions) || isAsyncPlaceholder(c))) {
return c
}
}
}
}
/* */
/* */
function initEvents (vm) {
vm._events = Object.create(null);
vm._hasHookEvent = false;
// init parent attached events
var listeners = vm.$options._parentListeners;
if (listeners) {
updateComponentListeners(vm, listeners);
}
}
var target;
function add (event, fn) {
target.$on(event, fn);
}
function remove$1 (event, fn) {
target.$off(event, fn);
}
function createOnceHandler (event, fn) {
var _target = target;
return function onceHandler () {
var res = fn.apply(null, arguments);
if (res !== null) {
_target.$off(event, onceHandler);
}
}
}
function updateComponentListeners (
vm,
listeners,
oldListeners
) {
target = vm;
updateListeners(listeners, oldListeners || {}, add, remove$1, createOnceHandler, vm);
target = undefined;
}
function eventsMixin (Vue) {
var hookRE = /^hook:/;
Vue.prototype.$on = function (event, fn) {
var vm = this;
if (Array.isArray(event)) {
for (var i = 0, l = event.length; i < l; i++) {
vm.$on(event[i], fn);
}
} else {
(vm._events[event] || (vm._events[event] = [])).push(fn);
// optimize hook:event cost by using a boolean flag marked at registration
// instead of a hash lookup
if (hookRE.test(event)) {
vm._hasHookEvent = true;
}
}
return vm
};
Vue.prototype.$once = function (event, fn) {
var vm = this;
function on () {
vm.$off(event, on);
fn.apply(vm, arguments);
}
on.fn = fn;
vm.$on(event, on);
return vm
};
Vue.prototype.$off = function (event, fn) {
var vm = this;
// all
if (!arguments.length) {
vm._events = Object.create(null);
return vm
}
// array of events
if (Array.isArray(event)) {
for (var i$1 = 0, l = event.length; i$1 < l; i$1++) {
vm.$off(event[i$1], fn);
}
return vm
}
// specific event
var cbs = vm._events[event];
if (!cbs) {
return vm
}
if (!fn) {
vm._events[event] = null;
return vm
}
// specific handler
var cb;
var i = cbs.length;
while (i--) {
cb = cbs[i];
if (cb === fn || cb.fn === fn) {
cbs.splice(i, 1);
break
}
}
return vm
};
Vue.prototype.$emit = function (event) {
var vm = this;
if (true) {
var lowerCaseEvent = event.toLowerCase();
if (lowerCaseEvent !== event && vm._events[lowerCaseEvent]) {
tip(
"Event \"" + lowerCaseEvent + "\" is emitted in component " +
(formatComponentName(vm)) + " but the handler is registered for \"" + event + "\". " +
"Note that HTML attributes are case-insensitive and you cannot use " +
"v-on to listen to camelCase events when using in-DOM templates. " +
"You should probably use \"" + (hyphenate(event)) + "\" instead of \"" + event + "\"."
);
}
}
var cbs = vm._events[event];
if (cbs) {
cbs = cbs.length > 1 ? toArray(cbs) : cbs;
var args = toArray(arguments, 1);
var info = "event handler for \"" + event + "\"";
for (var i = 0, l = cbs.length; i < l; i++) {
invokeWithErrorHandling(cbs[i], vm, args, vm, info);
}
}
return vm
};
}
/* */
var activeInstance = null;
var isUpdatingChildComponent = false;
function setActiveInstance(vm) {
var prevActiveInstance = activeInstance;
activeInstance = vm;
return function () {
activeInstance = prevActiveInstance;
}
}
function initLifecycle (vm) {
var options = vm.$options;
// locate first non-abstract parent
var parent = options.parent;
if (parent && !options.abstract) {
while (parent.$options.abstract && parent.$parent) {
parent = parent.$parent;
}
parent.$children.push(vm);
}
vm.$parent = parent;
vm.$root = parent ? parent.$root : vm;
vm.$children = [];
vm.$refs = {};
vm._watcher = null;
vm._inactive = null;
vm._directInactive = false;
vm._isMounted = false;
vm._isDestroyed = false;
vm._isBeingDestroyed = false;
}
function lifecycleMixin (Vue) {
Vue.prototype._update = function (vnode, hydrating) {
var vm = this;
var prevEl = vm.$el;
var prevVnode = vm._vnode;
var restoreActiveInstance = setActiveInstance(vm);
vm._vnode = vnode;
// Vue.prototype.__patch__ is injected in entry points
// based on the rendering backend used.
if (!prevVnode) {
// initial render
vm.$el = vm.__patch__(vm.$el, vnode, hydrating, false /* removeOnly */);
} else {
// updates
vm.$el = vm.__patch__(prevVnode, vnode);
}
restoreActiveInstance();
// update __vue__ reference
if (prevEl) {
prevEl.__vue__ = null;
}
if (vm.$el) {
vm.$el.__vue__ = vm;
}
// if parent is an HOC, update its $el as well
if (vm.$vnode && vm.$parent && vm.$vnode === vm.$parent._vnode) {
vm.$parent.$el = vm.$el;
}
// updated hook is called by the scheduler to ensure that children are
// updated in a parent's updated hook.
};
Vue.prototype.$forceUpdate = function () {
var vm = this;
if (vm._watcher) {
vm._watcher.update();
}
};
Vue.prototype.$destroy = function () {
var vm = this;
if (vm._isBeingDestroyed) {
return
}
callHook(vm, 'beforeDestroy');
vm._isBeingDestroyed = true;
// remove self from parent
var parent = vm.$parent;
if (parent && !parent._isBeingDestroyed && !vm.$options.abstract) {
remove(parent.$children, vm);
}
// teardown watchers
if (vm._watcher) {
vm._watcher.teardown();
}
var i = vm._watchers.length;
while (i--) {
vm._watchers[i].teardown();
}
// remove reference from data ob
// frozen object may not have observer.
if (vm._data.__ob__) {
vm._data.__ob__.vmCount--;
}
// call the last hook...
vm._isDestroyed = true;
// invoke destroy hooks on current rendered tree
vm.__patch__(vm._vnode, null);
// fire destroyed hook
callHook(vm, 'destroyed');
// turn off all instance listeners.
vm.$off();
// remove __vue__ reference
if (vm.$el) {
vm.$el.__vue__ = null;
}
// release circular reference (#6759)
if (vm.$vnode) {
vm.$vnode.parent = null;
}
};
}
function updateChildComponent (
vm,
propsData,
listeners,
parentVnode,
renderChildren
) {
if (true) {
isUpdatingChildComponent = true;
}
// determine whether component has slot children
// we need to do this before overwriting $options._renderChildren.
// check if there are dynamic scopedSlots (hand-written or compiled but with
// dynamic slot names). Static scoped slots compiled from template has the
// "$stable" marker.
var newScopedSlots = parentVnode.data.scopedSlots;
var oldScopedSlots = vm.$scopedSlots;
var hasDynamicScopedSlot = !!(
(newScopedSlots && !newScopedSlots.$stable) ||
(oldScopedSlots !== emptyObject && !oldScopedSlots.$stable) ||
(newScopedSlots && vm.$scopedSlots.$key !== newScopedSlots.$key)
);
// Any static slot children from the parent may have changed during parent's
// update. Dynamic scoped slots may also have changed. In such cases, a forced
// update is necessary to ensure correctness.
var needsForceUpdate = !!(
renderChildren || // has new static slots
vm.$options._renderChildren || // has old static slots
hasDynamicScopedSlot
);
vm.$options._parentVnode = parentVnode;
vm.$vnode = parentVnode; // update vm's placeholder node without re-render
if (vm._vnode) { // update child tree's parent
vm._vnode.parent = parentVnode;
}
vm.$options._renderChildren = renderChildren;
// update $attrs and $listeners hash
// these are also reactive so they may trigger child update if the child
// used them during render
vm.$attrs = parentVnode.data.attrs || emptyObject;
vm.$listeners = listeners || emptyObject;
// update props
if (propsData && vm.$options.props) {
toggleObserving(false);
var props = vm._props;
var propKeys = vm.$options._propKeys || [];
for (var i = 0; i < propKeys.length; i++) {
var key = propKeys[i];
var propOptions = vm.$options.props; // wtf flow?
props[key] = validateProp(key, propOptions, propsData, vm);
}
toggleObserving(true);
// keep a copy of raw propsData
vm.$options.propsData = propsData;
}
// fixed by xxxxxx update properties(mp runtime)
vm._$updateProperties && vm._$updateProperties(vm);
// update listeners
listeners = listeners || emptyObject;
var oldListeners = vm.$options._parentListeners;
vm.$options._parentListeners = listeners;
updateComponentListeners(vm, listeners, oldListeners);
// resolve slots + force update if has children
if (needsForceUpdate) {
vm.$slots = resolveSlots(renderChildren, parentVnode.context);
vm.$forceUpdate();
}
if (true) {
isUpdatingChildComponent = false;
}
}
function isInInactiveTree (vm) {
while (vm && (vm = vm.$parent)) {
if (vm._inactive) { return true }
}
return false
}
function activateChildComponent (vm, direct) {
if (direct) {
vm._directInactive = false;
if (isInInactiveTree(vm)) {
return
}
} else if (vm._directInactive) {
return
}
if (vm._inactive || vm._inactive === null) {
vm._inactive = false;
for (var i = 0; i < vm.$children.length; i++) {
activateChildComponent(vm.$children[i]);
}
callHook(vm, 'activated');
}
}
function deactivateChildComponent (vm, direct) {
if (direct) {
vm._directInactive = true;
if (isInInactiveTree(vm)) {
return
}
}
if (!vm._inactive) {
vm._inactive = true;
for (var i = 0; i < vm.$children.length; i++) {
deactivateChildComponent(vm.$children[i]);
}
callHook(vm, 'deactivated');
}
}
function callHook (vm, hook) {
// #7573 disable dep collection when invoking lifecycle hooks
pushTarget();
var handlers = vm.$options[hook];
var info = hook + " hook";
if (handlers) {
for (var i = 0, j = handlers.length; i < j; i++) {
invokeWithErrorHandling(handlers[i], vm, null, vm, info);
}
}
if (vm._hasHookEvent) {
vm.$emit('hook:' + hook);
}
popTarget();
}
/* */
var MAX_UPDATE_COUNT = 100;
var queue = [];
var activatedChildren = [];
var has = {};
var circular = {};
var waiting = false;
var flushing = false;
var index = 0;
/**
* Reset the scheduler's state.
*/
function resetSchedulerState () {
index = queue.length = activatedChildren.length = 0;
has = {};
if (true) {
circular = {};
}
waiting = flushing = false;
}
// Async edge case #6566 requires saving the timestamp when event listeners are
// attached. However, calling performance.now() has a perf overhead especially
// if the page has thousands of event listeners. Instead, we take a timestamp
// every time the scheduler flushes and use that for all event listeners
// attached during that flush.
var currentFlushTimestamp = 0;
// Async edge case fix requires storing an event listener's attach timestamp.
var getNow = Date.now;
// Determine what event timestamp the browser is using. Annoyingly, the
// timestamp can either be hi-res (relative to page load) or low-res
// (relative to UNIX epoch), so in order to compare time we have to use the
// same timestamp type when saving the flush timestamp.
// All IE versions use low-res event timestamps, and have problematic clock
// implementations (#9632)
if (inBrowser && !isIE) {
var performance = window.performance;
if (
performance &&
typeof performance.now === 'function' &&
getNow() > document.createEvent('Event').timeStamp
) {
// if the event timestamp, although evaluated AFTER the Date.now(), is
// smaller than it, it means the event is using a hi-res timestamp,
// and we need to use the hi-res version for event listener timestamps as
// well.
getNow = function () { return performance.now(); };
}
}
/**
* Flush both queues and run the watchers.
*/
function flushSchedulerQueue () {
currentFlushTimestamp = getNow();
flushing = true;
var watcher, id;
// Sort queue before flush.
// This ensures that:
// 1. Components are updated from parent to child. (because parent is always
// created before the child)
// 2. A component's user watchers are run before its render watcher (because
// user watchers are created before the render watcher)
// 3. If a component is destroyed during a parent component's watcher run,
// its watchers can be skipped.
queue.sort(function (a, b) { return a.id - b.id; });
// do not cache length because more watchers might be pushed
// as we run existing watchers
for (index = 0; index < queue.length; index++) {
watcher = queue[index];
if (watcher.before) {
watcher.before();
}
id = watcher.id;
has[id] = null;
watcher.run();
// in dev build, check and stop circular updates.
if ( true && has[id] != null) {
circular[id] = (circular[id] || 0) + 1;
if (circular[id] > MAX_UPDATE_COUNT) {
warn(
'You may have an infinite update loop ' + (
watcher.user
? ("in watcher with expression \"" + (watcher.expression) + "\"")
: "in a component render function."
),
watcher.vm
);
break
}
}
}
// keep copies of post queues before resetting state
var activatedQueue = activatedChildren.slice();
var updatedQueue = queue.slice();
resetSchedulerState();
// call component updated and activated hooks
callActivatedHooks(activatedQueue);
callUpdatedHooks(updatedQueue);
// devtool hook
/* istanbul ignore if */
if (devtools && config.devtools) {
devtools.emit('flush');
}
}
function callUpdatedHooks (queue) {
var i = queue.length;
while (i--) {
var watcher = queue[i];
var vm = watcher.vm;
if (vm._watcher === watcher && vm._isMounted && !vm._isDestroyed) {
callHook(vm, 'updated');
}
}
}
/**
* Queue a kept-alive component that was activated during patch.
* The queue will be processed after the entire tree has been patched.
*/
function queueActivatedComponent (vm) {
// setting _inactive to false here so that a render function can
// rely on checking whether it's in an inactive tree (e.g. router-view)
vm._inactive = false;
activatedChildren.push(vm);
}
function callActivatedHooks (queue) {
for (var i = 0; i < queue.length; i++) {
queue[i]._inactive = true;
activateChildComponent(queue[i], true /* true */);
}
}
/**
* Push a watcher into the watcher queue.
* Jobs with duplicate IDs will be skipped unless it's
* pushed when the queue is being flushed.
*/
function queueWatcher (watcher) {
var id = watcher.id;
if (has[id] == null) {
has[id] = true;
if (!flushing) {
queue.push(watcher);
} else {
// if already flushing, splice the watcher based on its id
// if already past its id, it will be run next immediately.
var i = queue.length - 1;
while (i > index && queue[i].id > watcher.id) {
i--;
}
queue.splice(i + 1, 0, watcher);
}
// queue the flush
if (!waiting) {
waiting = true;
if ( true && !config.async) {
flushSchedulerQueue();
return
}
nextTick(flushSchedulerQueue);
}
}
}
/* */
var uid$2 = 0;
/**
* A watcher parses an expression, collects dependencies,
* and fires callback when the expression value changes.
* This is used for both the $watch() api and directives.
*/
var Watcher = function Watcher (
vm,
expOrFn,
cb,
options,
isRenderWatcher
) {
this.vm = vm;
if (isRenderWatcher) {
vm._watcher = this;
}
vm._watchers.push(this);
// options
if (options) {
this.deep = !!options.deep;
this.user = !!options.user;
this.lazy = !!options.lazy;
this.sync = !!options.sync;
this.before = options.before;
} else {
this.deep = this.user = this.lazy = this.sync = false;
}
this.cb = cb;
this.id = ++uid$2; // uid for batching
this.active = true;
this.dirty = this.lazy; // for lazy watchers
this.deps = [];
this.newDeps = [];
this.depIds = new _Set();
this.newDepIds = new _Set();
this.expression = true
? expOrFn.toString()
: undefined;
// parse expression for getter
if (typeof expOrFn === 'function') {
this.getter = expOrFn;
} else {
this.getter = parsePath(expOrFn);
if (!this.getter) {
this.getter = noop;
true && warn(
"Failed watching path: \"" + expOrFn + "\" " +
'Watcher only accepts simple dot-delimited paths. ' +
'For full control, use a function instead.',
vm
);
}
}
this.value = this.lazy
? undefined
: this.get();
};
/**
* Evaluate the getter, and re-collect dependencies.
*/
Watcher.prototype.get = function get () {
pushTarget(this);
var value;
var vm = this.vm;
try {
value = this.getter.call(vm, vm);
} catch (e) {
if (this.user) {
handleError(e, vm, ("getter for watcher \"" + (this.expression) + "\""));
} else {
throw e
}
} finally {
// "touch" every property so they are all tracked as
// dependencies for deep watching
if (this.deep) {
traverse(value);
}
popTarget();
this.cleanupDeps();
}
return value
};
/**
* Add a dependency to this directive.
*/
Watcher.prototype.addDep = function addDep (dep) {
var id = dep.id;
if (!this.newDepIds.has(id)) {
this.newDepIds.add(id);
this.newDeps.push(dep);
if (!this.depIds.has(id)) {
dep.addSub(this);
}
}
};
/**
* Clean up for dependency collection.
*/
Watcher.prototype.cleanupDeps = function cleanupDeps () {
var i = this.deps.length;
while (i--) {
var dep = this.deps[i];
if (!this.newDepIds.has(dep.id)) {
dep.removeSub(this);
}
}
var tmp = this.depIds;
this.depIds = this.newDepIds;
this.newDepIds = tmp;
this.newDepIds.clear();
tmp = this.deps;
this.deps = this.newDeps;
this.newDeps = tmp;
this.newDeps.length = 0;
};
/**
* Subscriber interface.
* Will be called when a dependency changes.
*/
Watcher.prototype.update = function update () {
/* istanbul ignore else */
if (this.lazy) {
this.dirty = true;
} else if (this.sync) {
this.run();
} else {
queueWatcher(this);
}
};
/**
* Scheduler job interface.
* Will be called by the scheduler.
*/
Watcher.prototype.run = function run () {
if (this.active) {
var value = this.get();
if (
value !== this.value ||
// Deep watchers and watchers on Object/Arrays should fire even
// when the value is the same, because the value may
// have mutated.
isObject(value) ||
this.deep
) {
// set new value
var oldValue = this.value;
this.value = value;
if (this.user) {
try {
this.cb.call(this.vm, value, oldValue);
} catch (e) {
handleError(e, this.vm, ("callback for watcher \"" + (this.expression) + "\""));
}
} else {
this.cb.call(this.vm, value, oldValue);
}
}
}
};
/**
* Evaluate the value of the watcher.
* This only gets called for lazy watchers.
*/
Watcher.prototype.evaluate = function evaluate () {
this.value = this.get();
this.dirty = false;
};
/**
* Depend on all deps collected by this watcher.
*/
Watcher.prototype.depend = function depend () {
var i = this.deps.length;
while (i--) {
this.deps[i].depend();
}
};
/**
* Remove self from all dependencies' subscriber list.
*/
Watcher.prototype.teardown = function teardown () {
if (this.active) {
// remove self from vm's watcher list
// this is a somewhat expensive operation so we skip it
// if the vm is being destroyed.
if (!this.vm._isBeingDestroyed) {
remove(this.vm._watchers, this);
}
var i = this.deps.length;
while (i--) {
this.deps[i].removeSub(this);
}
this.active = false;
}
};
/* */
var sharedPropertyDefinition = {
enumerable: true,
configurable: true,
get: noop,
set: noop
};
function proxy (target, sourceKey, key) {
sharedPropertyDefinition.get = function proxyGetter () {
return this[sourceKey][key]
};
sharedPropertyDefinition.set = function proxySetter (val) {
this[sourceKey][key] = val;
};
Object.defineProperty(target, key, sharedPropertyDefinition);
}
function initState (vm) {
vm._watchers = [];
var opts = vm.$options;
if (opts.props) { initProps(vm, opts.props); }
if (opts.methods) { initMethods(vm, opts.methods); }
if (opts.data) {
initData(vm);
} else {
observe(vm._data = {}, true /* asRootData */);
}
if (opts.computed) { initComputed(vm, opts.computed); }
if (opts.watch && opts.watch !== nativeWatch) {
initWatch(vm, opts.watch);
}
}
function initProps (vm, propsOptions) {
var propsData = vm.$options.propsData || {};
var props = vm._props = {};
// cache prop keys so that future props updates can iterate using Array
// instead of dynamic object key enumeration.
var keys = vm.$options._propKeys = [];
var isRoot = !vm.$parent;
// root instance props should be converted
if (!isRoot) {
toggleObserving(false);
}
var loop = function ( key ) {
keys.push(key);
var value = validateProp(key, propsOptions, propsData, vm);
/* istanbul ignore else */
if (true) {
var hyphenatedKey = hyphenate(key);
if (isReservedAttribute(hyphenatedKey) ||
config.isReservedAttr(hyphenatedKey)) {
warn(
("\"" + hyphenatedKey + "\" is a reserved attribute and cannot be used as component prop."),
vm
);
}
defineReactive$$1(props, key, value, function () {
if (!isRoot && !isUpdatingChildComponent) {
{
if(vm.mpHost === 'mp-baidu' || vm.mpHost === 'mp-kuaishou' || vm.mpHost === 'mp-xhs'){//百度、快手、小红书 observer 在 setData callback 之后触发,直接忽略该 warn
return
}
//fixed by xxxxxx __next_tick_pending,uni://form-field 时不告警
if(
key === 'value' &&
Array.isArray(vm.$options.behaviors) &&
vm.$options.behaviors.indexOf('uni://form-field') !== -1
){
return
}
if(vm._getFormData){
return
}
var $parent = vm.$parent;
while($parent){
if($parent.__next_tick_pending){
return
}
$parent = $parent.$parent;
}
}
warn(
"Avoid mutating a prop directly since the value will be " +
"overwritten whenever the parent component re-renders. " +
"Instead, use a data or computed property based on the prop's " +
"value. Prop being mutated: \"" + key + "\"",
vm
);
}
});
} else {}
// static props are already proxied on the component's prototype
// during Vue.extend(). We only need to proxy props defined at
// instantiation here.
if (!(key in vm)) {
proxy(vm, "_props", key);
}
};
for (var key in propsOptions) loop( key );
toggleObserving(true);
}
function initData (vm) {
var data = vm.$options.data;
data = vm._data = typeof data === 'function'
? getData(data, vm)
: data || {};
if (!isPlainObject(data)) {
data = {};
true && warn(
'data functions should return an object:\n' +
'https://vuejs.org/v2/guide/components.html#data-Must-Be-a-Function',
vm
);
}
// proxy data on instance
var keys = Object.keys(data);
var props = vm.$options.props;
var methods = vm.$options.methods;
var i = keys.length;
while (i--) {
var key = keys[i];
if (true) {
if (methods && hasOwn(methods, key)) {
warn(
("Method \"" + key + "\" has already been defined as a data property."),
vm
);
}
}
if (props && hasOwn(props, key)) {
true && warn(
"The data property \"" + key + "\" is already declared as a prop. " +
"Use prop default value instead.",
vm
);
} else if (!isReserved(key)) {
proxy(vm, "_data", key);
}
}
// observe data
observe(data, true /* asRootData */);
}
function getData (data, vm) {
// #7573 disable dep collection when invoking data getters
pushTarget();
try {
return data.call(vm, vm)
} catch (e) {
handleError(e, vm, "data()");
return {}
} finally {
popTarget();
}
}
var computedWatcherOptions = { lazy: true };
function initComputed (vm, computed) {
// $flow-disable-line
var watchers = vm._computedWatchers = Object.create(null);
// computed properties are just getters during SSR
var isSSR = isServerRendering();
for (var key in computed) {
var userDef = computed[key];
var getter = typeof userDef === 'function' ? userDef : userDef.get;
if ( true && getter == null) {
warn(
("Getter is missing for computed property \"" + key + "\"."),
vm
);
}
if (!isSSR) {
// create internal watcher for the computed property.
watchers[key] = new Watcher(
vm,
getter || noop,
noop,
computedWatcherOptions
);
}
// component-defined computed properties are already defined on the
// component prototype. We only need to define computed properties defined
// at instantiation here.
if (!(key in vm)) {
defineComputed(vm, key, userDef);
} else if (true) {
if (key in vm.$data) {
warn(("The computed property \"" + key + "\" is already defined in data."), vm);
} else if (vm.$options.props && key in vm.$options.props) {
warn(("The computed property \"" + key + "\" is already defined as a prop."), vm);
}
}
}
}
function defineComputed (
target,
key,
userDef
) {
var shouldCache = !isServerRendering();
if (typeof userDef === 'function') {
sharedPropertyDefinition.get = shouldCache
? createComputedGetter(key)
: createGetterInvoker(userDef);
sharedPropertyDefinition.set = noop;
} else {
sharedPropertyDefinition.get = userDef.get
? shouldCache && userDef.cache !== false
? createComputedGetter(key)
: createGetterInvoker(userDef.get)
: noop;
sharedPropertyDefinition.set = userDef.set || noop;
}
if ( true &&
sharedPropertyDefinition.set === noop) {
sharedPropertyDefinition.set = function () {
warn(
("Computed property \"" + key + "\" was assigned to but it has no setter."),
this
);
};
}
Object.defineProperty(target, key, sharedPropertyDefinition);
}
function createComputedGetter (key) {
return function computedGetter () {
var watcher = this._computedWatchers && this._computedWatchers[key];
if (watcher) {
if (watcher.dirty) {
watcher.evaluate();
}
if (Dep.SharedObject.target) {// fixed by xxxxxx
watcher.depend();
}
return watcher.value
}
}
}
function createGetterInvoker(fn) {
return function computedGetter () {
return fn.call(this, this)
}
}
function initMethods (vm, methods) {
var props = vm.$options.props;
for (var key in methods) {
if (true) {
if (typeof methods[key] !== 'function') {
warn(
"Method \"" + key + "\" has type \"" + (typeof methods[key]) + "\" in the component definition. " +
"Did you reference the function correctly?",
vm
);
}
if (props && hasOwn(props, key)) {
warn(
("Method \"" + key + "\" has already been defined as a prop."),
vm
);
}
if ((key in vm) && isReserved(key)) {
warn(
"Method \"" + key + "\" conflicts with an existing Vue instance method. " +
"Avoid defining component methods that start with _ or $."
);
}
}
vm[key] = typeof methods[key] !== 'function' ? noop : bind(methods[key], vm);
}
}
function initWatch (vm, watch) {
for (var key in watch) {
var handler = watch[key];
if (Array.isArray(handler)) {
for (var i = 0; i < handler.length; i++) {
createWatcher(vm, key, handler[i]);
}
} else {
createWatcher(vm, key, handler);
}
}
}
function createWatcher (
vm,
expOrFn,
handler,
options
) {
if (isPlainObject(handler)) {
options = handler;
handler = handler.handler;
}
if (typeof handler === 'string') {
handler = vm[handler];
}
return vm.$watch(expOrFn, handler, options)
}
function stateMixin (Vue) {
// flow somehow has problems with directly declared definition object
// when using Object.defineProperty, so we have to procedurally build up
// the object here.
var dataDef = {};
dataDef.get = function () { return this._data };
var propsDef = {};
propsDef.get = function () { return this._props };
if (true) {
dataDef.set = function () {
warn(
'Avoid replacing instance root $data. ' +
'Use nested data properties instead.',
this
);
};
propsDef.set = function () {
warn("$props is readonly.", this);
};
}
Object.defineProperty(Vue.prototype, '$data', dataDef);
Object.defineProperty(Vue.prototype, '$props', propsDef);
Vue.prototype.$set = set;
Vue.prototype.$delete = del;
Vue.prototype.$watch = function (
expOrFn,
cb,
options
) {
var vm = this;
if (isPlainObject(cb)) {
return createWatcher(vm, expOrFn, cb, options)
}
options = options || {};
options.user = true;
var watcher = new Watcher(vm, expOrFn, cb, options);
if (options.immediate) {
try {
cb.call(vm, watcher.value);
} catch (error) {
handleError(error, vm, ("callback for immediate watcher \"" + (watcher.expression) + "\""));
}
}
return function unwatchFn () {
watcher.teardown();
}
};
}
/* */
var uid$3 = 0;
function initMixin (Vue) {
Vue.prototype._init = function (options) {
var vm = this;
// a uid
vm._uid = uid$3++;
var startTag, endTag;
/* istanbul ignore if */
if ( true && config.performance && mark) {
startTag = "vue-perf-start:" + (vm._uid);
endTag = "vue-perf-end:" + (vm._uid);
mark(startTag);
}
// a flag to avoid this being observed
vm._isVue = true;
// merge options
if (options && options._isComponent) {
// optimize internal component instantiation
// since dynamic options merging is pretty slow, and none of the
// internal component options needs special treatment.
initInternalComponent(vm, options);
} else {
vm.$options = mergeOptions(
resolveConstructorOptions(vm.constructor),
options || {},
vm
);
}
/* istanbul ignore else */
if (true) {
initProxy(vm);
} else {}
// expose real self
vm._self = vm;
initLifecycle(vm);
initEvents(vm);
initRender(vm);
callHook(vm, 'beforeCreate');
!vm._$fallback && initInjections(vm); // resolve injections before data/props
initState(vm);
!vm._$fallback && initProvide(vm); // resolve provide after data/props
!vm._$fallback && callHook(vm, 'created');
/* istanbul ignore if */
if ( true && config.performance && mark) {
vm._name = formatComponentName(vm, false);
mark(endTag);
measure(("vue " + (vm._name) + " init"), startTag, endTag);
}
if (vm.$options.el) {
vm.$mount(vm.$options.el);
}
};
}
function initInternalComponent (vm, options) {
var opts = vm.$options = Object.create(vm.constructor.options);
// doing this because it's faster than dynamic enumeration.
var parentVnode = options._parentVnode;
opts.parent = options.parent;
opts._parentVnode = parentVnode;
var vnodeComponentOptions = parentVnode.componentOptions;
opts.propsData = vnodeComponentOptions.propsData;
opts._parentListeners = vnodeComponentOptions.listeners;
opts._renderChildren = vnodeComponentOptions.children;
opts._componentTag = vnodeComponentOptions.tag;
if (options.render) {
opts.render = options.render;
opts.staticRenderFns = options.staticRenderFns;
}
}
function resolveConstructorOptions (Ctor) {
var options = Ctor.options;
if (Ctor.super) {
var superOptions = resolveConstructorOptions(Ctor.super);
var cachedSuperOptions = Ctor.superOptions;
if (superOptions !== cachedSuperOptions) {
// super option changed,
// need to resolve new options.
Ctor.superOptions = superOptions;
// check if there are any late-modified/attached options (#4976)
var modifiedOptions = resolveModifiedOptions(Ctor);
// update base extend options
if (modifiedOptions) {
extend(Ctor.extendOptions, modifiedOptions);
}
options = Ctor.options = mergeOptions(superOptions, Ctor.extendOptions);
if (options.name) {
options.components[options.name] = Ctor;
}
}
}
return options
}
function resolveModifiedOptions (Ctor) {
var modified;
var latest = Ctor.options;
var sealed = Ctor.sealedOptions;
for (var key in latest) {
if (latest[key] !== sealed[key]) {
if (!modified) { modified = {}; }
modified[key] = latest[key];
}
}
return modified
}
function Vue (options) {
if ( true &&
!(this instanceof Vue)
) {
warn('Vue is a constructor and should be called with the `new` keyword');
}
this._init(options);
}
initMixin(Vue);
stateMixin(Vue);
eventsMixin(Vue);
lifecycleMixin(Vue);
renderMixin(Vue);
/* */
function initUse (Vue) {
Vue.use = function (plugin) {
var installedPlugins = (this._installedPlugins || (this._installedPlugins = []));
if (installedPlugins.indexOf(plugin) > -1) {
return this
}
// additional parameters
var args = toArray(arguments, 1);
args.unshift(this);
if (typeof plugin.install === 'function') {
plugin.install.apply(plugin, args);
} else if (typeof plugin === 'function') {
plugin.apply(null, args);
}
installedPlugins.push(plugin);
return this
};
}
/* */
function initMixin$1 (Vue) {
Vue.mixin = function (mixin) {
this.options = mergeOptions(this.options, mixin);
return this
};
}
/* */
function initExtend (Vue) {
/**
* Each instance constructor, including Vue, has a unique
* cid. This enables us to create wrapped "child
* constructors" for prototypal inheritance and cache them.
*/
Vue.cid = 0;
var cid = 1;
/**
* Class inheritance
*/
Vue.extend = function (extendOptions) {
extendOptions = extendOptions || {};
var Super = this;
var SuperId = Super.cid;
var cachedCtors = extendOptions._Ctor || (extendOptions._Ctor = {});
if (cachedCtors[SuperId]) {
return cachedCtors[SuperId]
}
var name = extendOptions.name || Super.options.name;
if ( true && name) {
validateComponentName(name);
}
var Sub = function VueComponent (options) {
this._init(options);
};
Sub.prototype = Object.create(Super.prototype);
Sub.prototype.constructor = Sub;
Sub.cid = cid++;
Sub.options = mergeOptions(
Super.options,
extendOptions
);
Sub['super'] = Super;
// For props and computed properties, we define the proxy getters on
// the Vue instances at extension time, on the extended prototype. This
// avoids Object.defineProperty calls for each instance created.
if (Sub.options.props) {
initProps$1(Sub);
}
if (Sub.options.computed) {
initComputed$1(Sub);
}
// allow further extension/mixin/plugin usage
Sub.extend = Super.extend;
Sub.mixin = Super.mixin;
Sub.use = Super.use;
// create asset registers, so extended classes
// can have their private assets too.
ASSET_TYPES.forEach(function (type) {
Sub[type] = Super[type];
});
// enable recursive self-lookup
if (name) {
Sub.options.components[name] = Sub;
}
// keep a reference to the super options at extension time.
// later at instantiation we can check if Super's options have
// been updated.
Sub.superOptions = Super.options;
Sub.extendOptions = extendOptions;
Sub.sealedOptions = extend({}, Sub.options);
// cache constructor
cachedCtors[SuperId] = Sub;
return Sub
};
}
function initProps$1 (Comp) {
var props = Comp.options.props;
for (var key in props) {
proxy(Comp.prototype, "_props", key);
}
}
function initComputed$1 (Comp) {
var computed = Comp.options.computed;
for (var key in computed) {
defineComputed(Comp.prototype, key, computed[key]);
}
}
/* */
function initAssetRegisters (Vue) {
/**
* Create asset registration methods.
*/
ASSET_TYPES.forEach(function (type) {
Vue[type] = function (
id,
definition
) {
if (!definition) {
return this.options[type + 's'][id]
} else {
/* istanbul ignore if */
if ( true && type === 'component') {
validateComponentName(id);
}
if (type === 'component' && isPlainObject(definition)) {
definition.name = definition.name || id;
definition = this.options._base.extend(definition);
}
if (type === 'directive' && typeof definition === 'function') {
definition = { bind: definition, update: definition };
}
this.options[type + 's'][id] = definition;
return definition
}
};
});
}
/* */
function getComponentName (opts) {
return opts && (opts.Ctor.options.name || opts.tag)
}
function matches (pattern, name) {
if (Array.isArray(pattern)) {
return pattern.indexOf(name) > -1
} else if (typeof pattern === 'string') {
return pattern.split(',').indexOf(name) > -1
} else if (isRegExp(pattern)) {
return pattern.test(name)
}
/* istanbul ignore next */
return false
}
function pruneCache (keepAliveInstance, filter) {
var cache = keepAliveInstance.cache;
var keys = keepAliveInstance.keys;
var _vnode = keepAliveInstance._vnode;
for (var key in cache) {
var cachedNode = cache[key];
if (cachedNode) {
var name = getComponentName(cachedNode.componentOptions);
if (name && !filter(name)) {
pruneCacheEntry(cache, key, keys, _vnode);
}
}
}
}
function pruneCacheEntry (
cache,
key,
keys,
current
) {
var cached$$1 = cache[key];
if (cached$$1 && (!current || cached$$1.tag !== current.tag)) {
cached$$1.componentInstance.$destroy();
}
cache[key] = null;
remove(keys, key);
}
var patternTypes = [String, RegExp, Array];
var KeepAlive = {
name: 'keep-alive',
abstract: true,
props: {
include: patternTypes,
exclude: patternTypes,
max: [String, Number]
},
created: function created () {
this.cache = Object.create(null);
this.keys = [];
},
destroyed: function destroyed () {
for (var key in this.cache) {
pruneCacheEntry(this.cache, key, this.keys);
}
},
mounted: function mounted () {
var this$1 = this;
this.$watch('include', function (val) {
pruneCache(this$1, function (name) { return matches(val, name); });
});
this.$watch('exclude', function (val) {
pruneCache(this$1, function (name) { return !matches(val, name); });
});
},
render: function render () {
var slot = this.$slots.default;
var vnode = getFirstComponentChild(slot);
var componentOptions = vnode && vnode.componentOptions;
if (componentOptions) {
// check pattern
var name = getComponentName(componentOptions);
var ref = this;
var include = ref.include;
var exclude = ref.exclude;
if (
// not included
(include && (!name || !matches(include, name))) ||
// excluded
(exclude && name && matches(exclude, name))
) {
return vnode
}
var ref$1 = this;
var cache = ref$1.cache;
var keys = ref$1.keys;
var key = vnode.key == null
// same constructor may get registered as different local components
// so cid alone is not enough (#3269)
? componentOptions.Ctor.cid + (componentOptions.tag ? ("::" + (componentOptions.tag)) : '')
: vnode.key;
if (cache[key]) {
vnode.componentInstance = cache[key].componentInstance;
// make current key freshest
remove(keys, key);
keys.push(key);
} else {
cache[key] = vnode;
keys.push(key);
// prune oldest entry
if (this.max && keys.length > parseInt(this.max)) {
pruneCacheEntry(cache, keys[0], keys, this._vnode);
}
}
vnode.data.keepAlive = true;
}
return vnode || (slot && slot[0])
}
};
var builtInComponents = {
KeepAlive: KeepAlive
};
/* */
function initGlobalAPI (Vue) {
// config
var configDef = {};
configDef.get = function () { return config; };
if (true) {
configDef.set = function () {
warn(
'Do not replace the Vue.config object, set individual fields instead.'
);
};
}
Object.defineProperty(Vue, 'config', configDef);
// exposed util methods.
// NOTE: these are not considered part of the public API - avoid relying on
// them unless you are aware of the risk.
Vue.util = {
warn: warn,
extend: extend,
mergeOptions: mergeOptions,
defineReactive: defineReactive$$1
};
Vue.set = set;
Vue.delete = del;
Vue.nextTick = nextTick;
// 2.6 explicit observable API
Vue.observable = function (obj) {
observe(obj);
return obj
};
Vue.options = Object.create(null);
ASSET_TYPES.forEach(function (type) {
Vue.options[type + 's'] = Object.create(null);
});
// this is used to identify the "base" constructor to extend all plain-object
// components with in Weex's multi-instance scenarios.
Vue.options._base = Vue;
extend(Vue.options.components, builtInComponents);
initUse(Vue);
initMixin$1(Vue);
initExtend(Vue);
initAssetRegisters(Vue);
}
initGlobalAPI(Vue);
Object.defineProperty(Vue.prototype, '$isServer', {
get: isServerRendering
});
Object.defineProperty(Vue.prototype, '$ssrContext', {
get: function get () {
/* istanbul ignore next */
return this.$vnode && this.$vnode.ssrContext
}
});
// expose FunctionalRenderContext for ssr runtime helper installation
Object.defineProperty(Vue, 'FunctionalRenderContext', {
value: FunctionalRenderContext
});
Vue.version = '2.6.11';
/**
* https://raw.githubusercontent.com/Tencent/westore/master/packages/westore/utils/diff.js
*/
var ARRAYTYPE = '[object Array]';
var OBJECTTYPE = '[object Object]';
var NULLTYPE = '[object Null]';
var UNDEFINEDTYPE = '[object Undefined]';
// const FUNCTIONTYPE = '[object Function]'
function diff(current, pre) {
var result = {};
syncKeys(current, pre);
_diff(current, pre, '', result);
return result
}
function syncKeys(current, pre) {
if (current === pre) { return }
var rootCurrentType = type(current);
var rootPreType = type(pre);
if (rootCurrentType == OBJECTTYPE && rootPreType == OBJECTTYPE) {
if(Object.keys(current).length >= Object.keys(pre).length){
for (var key in pre) {
var currentValue = current[key];
if (currentValue === undefined) {
current[key] = null;
} else {
syncKeys(currentValue, pre[key]);
}
}
}
} else if (rootCurrentType == ARRAYTYPE && rootPreType == ARRAYTYPE) {
if (current.length >= pre.length) {
pre.forEach(function (item, index) {
syncKeys(current[index], item);
});
}
}
}
function nullOrUndefined(currentType, preType) {
if(
(currentType === NULLTYPE || currentType === UNDEFINEDTYPE) &&
(preType === NULLTYPE || preType === UNDEFINEDTYPE)
) {
return false
}
return true
}
function _diff(current, pre, path, result) {
if (current === pre) { return }
var rootCurrentType = type(current);
var rootPreType = type(pre);
if (rootCurrentType == OBJECTTYPE) {
if (rootPreType != OBJECTTYPE || Object.keys(current).length < Object.keys(pre).length) {
setResult(result, path, current);
} else {
var loop = function ( key ) {
var currentValue = current[key];
var preValue = pre[key];
var currentType = type(currentValue);
var preType = type(preValue);
if (currentType != ARRAYTYPE && currentType != OBJECTTYPE) {
if (currentValue !== pre[key] && nullOrUndefined(currentType, preType)) {
setResult(result, (path == '' ? '' : path + ".") + key, currentValue);
}
} else if (currentType == ARRAYTYPE) {
if (preType != ARRAYTYPE) {
setResult(result, (path == '' ? '' : path + ".") + key, currentValue);
} else {
if (currentValue.length < preValue.length) {
setResult(result, (path == '' ? '' : path + ".") + key, currentValue);
} else {
currentValue.forEach(function (item, index) {
_diff(item, preValue[index], (path == '' ? '' : path + ".") + key + '[' + index + ']', result);
});
}
}
} else if (currentType == OBJECTTYPE) {
if (preType != OBJECTTYPE || Object.keys(currentValue).length < Object.keys(preValue).length) {
setResult(result, (path == '' ? '' : path + ".") + key, currentValue);
} else {
for (var subKey in currentValue) {
_diff(currentValue[subKey], preValue[subKey], (path == '' ? '' : path + ".") + key + '.' + subKey, result);
}
}
}
};
for (var key in current) loop( key );
}
} else if (rootCurrentType == ARRAYTYPE) {
if (rootPreType != ARRAYTYPE) {
setResult(result, path, current);
} else {
if (current.length < pre.length) {
setResult(result, path, current);
} else {
current.forEach(function (item, index) {
_diff(item, pre[index], path + '[' + index + ']', result);
});
}
}
} else {
setResult(result, path, current);
}
}
function setResult(result, k, v) {
// if (type(v) != FUNCTIONTYPE) {
result[k] = v;
// }
}
function type(obj) {
return Object.prototype.toString.call(obj)
}
/* */
function flushCallbacks$1(vm) {
if (vm.__next_tick_callbacks && vm.__next_tick_callbacks.length) {
if (Object({"NODE_ENV":"development","VUE_APP_DARK_MODE":"false","VUE_APP_NAME":"intelligentGroup","VUE_APP_PLATFORM":"mp-weixin","BASE_URL":"/"}).VUE_APP_DEBUG) {
var mpInstance = vm.$scope;
console.log('[' + (+new Date) + '][' + (mpInstance.is || mpInstance.route) + '][' + vm._uid +
']:flushCallbacks[' + vm.__next_tick_callbacks.length + ']');
}
var copies = vm.__next_tick_callbacks.slice(0);
vm.__next_tick_callbacks.length = 0;
for (var i = 0; i < copies.length; i++) {
copies[i]();
}
}
}
function hasRenderWatcher(vm) {
return queue.find(function (watcher) { return vm._watcher === watcher; })
}
function nextTick$1(vm, cb) {
//1.nextTick 之前 已 setData 且 setData 还未回调完成
//2.nextTick 之前存在 render watcher
if (!vm.__next_tick_pending && !hasRenderWatcher(vm)) {
if(Object({"NODE_ENV":"development","VUE_APP_DARK_MODE":"false","VUE_APP_NAME":"intelligentGroup","VUE_APP_PLATFORM":"mp-weixin","BASE_URL":"/"}).VUE_APP_DEBUG){
var mpInstance = vm.$scope;
console.log('[' + (+new Date) + '][' + (mpInstance.is || mpInstance.route) + '][' + vm._uid +
']:nextVueTick');
}
return nextTick(cb, vm)
}else{
if(Object({"NODE_ENV":"development","VUE_APP_DARK_MODE":"false","VUE_APP_NAME":"intelligentGroup","VUE_APP_PLATFORM":"mp-weixin","BASE_URL":"/"}).VUE_APP_DEBUG){
var mpInstance$1 = vm.$scope;
console.log('[' + (+new Date) + '][' + (mpInstance$1.is || mpInstance$1.route) + '][' + vm._uid +
']:nextMPTick');
}
}
var _resolve;
if (!vm.__next_tick_callbacks) {
vm.__next_tick_callbacks = [];
}
vm.__next_tick_callbacks.push(function () {
if (cb) {
try {
cb.call(vm);
} catch (e) {
handleError(e, vm, 'nextTick');
}
} else if (_resolve) {
_resolve(vm);
}
});
// $flow-disable-line
if (!cb && typeof Promise !== 'undefined') {
return new Promise(function (resolve) {
_resolve = resolve;
})
}
}
/* */
function clearInstance(key, value) {
// 简易去除 Vue 和小程序组件实例
if (value) {
if (value._isVue || value.__v_isMPComponent) {
return {}
}
}
return value
}
function cloneWithData(vm) {
// 确保当前 vm 所有数据被同步
var ret = Object.create(null);
var dataKeys = [].concat(
Object.keys(vm._data || {}),
Object.keys(vm._computedWatchers || {}));
dataKeys.reduce(function(ret, key) {
ret[key] = vm[key];
return ret
}, ret);
// vue-composition-api
var compositionApiState = vm.__composition_api_state__ || vm.__secret_vfa_state__;
var rawBindings = compositionApiState && compositionApiState.rawBindings;
if (rawBindings) {
Object.keys(rawBindings).forEach(function (key) {
ret[key] = vm[key];
});
}
//TODO 需要把无用数据处理掉,比如 list=>l0 则 list 需要移除,否则多传输一份数据
Object.assign(ret, vm.$mp.data || {});
if (
Array.isArray(vm.$options.behaviors) &&
vm.$options.behaviors.indexOf('uni://form-field') !== -1
) { //form-field
ret['name'] = vm.name;
ret['value'] = vm.value;
}
return JSON.parse(JSON.stringify(ret, clearInstance))
}
var patch = function(oldVnode, vnode) {
var this$1 = this;
if (vnode === null) { //destroy
return
}
if (this.mpType === 'page' || this.mpType === 'component') {
var mpInstance = this.$scope;
var data = Object.create(null);
try {
data = cloneWithData(this);
} catch (err) {
console.error(err);
}
data.__webviewId__ = mpInstance.data.__webviewId__;
var mpData = Object.create(null);
Object.keys(data).forEach(function (key) { //仅同步 data 中有的数据
mpData[key] = mpInstance.data[key];
});
var diffData = this.$shouldDiffData === false ? data : diff(data, mpData);
if (Object.keys(diffData).length) {
if (Object({"NODE_ENV":"development","VUE_APP_DARK_MODE":"false","VUE_APP_NAME":"intelligentGroup","VUE_APP_PLATFORM":"mp-weixin","BASE_URL":"/"}).VUE_APP_DEBUG) {
console.log('[' + (+new Date) + '][' + (mpInstance.is || mpInstance.route) + '][' + this._uid +
']差量更新',
JSON.stringify(diffData));
}
this.__next_tick_pending = true;
mpInstance.setData(diffData, function () {
this$1.__next_tick_pending = false;
flushCallbacks$1(this$1);
});
} else {
flushCallbacks$1(this);
}
}
};
/* */
function createEmptyRender() {
}
function mountComponent$1(
vm,
el,
hydrating
) {
if (!vm.mpType) {//main.js 中的 new Vue
return vm
}
if (vm.mpType === 'app') {
vm.$options.render = createEmptyRender;
}
if (!vm.$options.render) {
vm.$options.render = createEmptyRender;
if (true) {
/* istanbul ignore if */
if ((vm.$options.template && vm.$options.template.charAt(0) !== '#') ||
vm.$options.el || el) {
warn(
'You are using the runtime-only build of Vue where the template ' +
'compiler is not available. Either pre-compile the templates into ' +
'render functions, or use the compiler-included build.',
vm
);
} else {
warn(
'Failed to mount component: template or render function not defined.',
vm
);
}
}
}
!vm._$fallback && callHook(vm, 'beforeMount');
var updateComponent = function () {
vm._update(vm._render(), hydrating);
};
// we set this to vm._watcher inside the watcher's constructor
// since the watcher's initial patch may call $forceUpdate (e.g. inside child
// component's mounted hook), which relies on vm._watcher being already defined
new Watcher(vm, updateComponent, noop, {
before: function before() {
if (vm._isMounted && !vm._isDestroyed) {
callHook(vm, 'beforeUpdate');
}
}
}, true /* isRenderWatcher */);
hydrating = false;
return vm
}
/* */
function renderClass (
staticClass,
dynamicClass
) {
if (isDef(staticClass) || isDef(dynamicClass)) {
return concat(staticClass, stringifyClass(dynamicClass))
}
/* istanbul ignore next */
return ''
}
function concat (a, b) {
return a ? b ? (a + ' ' + b) : a : (b || '')
}
function stringifyClass (value) {
if (Array.isArray(value)) {
return stringifyArray(value)
}
if (isObject(value)) {
return stringifyObject(value)
}
if (typeof value === 'string') {
return value
}
/* istanbul ignore next */
return ''
}
function stringifyArray (value) {
var res = '';
var stringified;
for (var i = 0, l = value.length; i < l; i++) {
if (isDef(stringified = stringifyClass(value[i])) && stringified !== '') {
if (res) { res += ' '; }
res += stringified;
}
}
return res
}
function stringifyObject (value) {
var res = '';
for (var key in value) {
if (value[key]) {
if (res) { res += ' '; }
res += key;
}
}
return res
}
/* */
var parseStyleText = cached(function (cssText) {
var res = {};
var listDelimiter = /;(?![^(]*\))/g;
var propertyDelimiter = /:(.+)/;
cssText.split(listDelimiter).forEach(function (item) {
if (item) {
var tmp = item.split(propertyDelimiter);
tmp.length > 1 && (res[tmp[0].trim()] = tmp[1].trim());
}
});
return res
});
// normalize possible array / string values into Object
function normalizeStyleBinding (bindingStyle) {
if (Array.isArray(bindingStyle)) {
return toObject(bindingStyle)
}
if (typeof bindingStyle === 'string') {
return parseStyleText(bindingStyle)
}
return bindingStyle
}
/* */
var MP_METHODS = ['createSelectorQuery', 'createIntersectionObserver', 'selectAllComponents', 'selectComponent'];
function getTarget(obj, path) {
var parts = path.split('.');
var key = parts[0];
if (key.indexOf('__$n') === 0) { //number index
key = parseInt(key.replace('__$n', ''));
}
if (parts.length === 1) {
return obj[key]
}
return getTarget(obj[key], parts.slice(1).join('.'))
}
function internalMixin(Vue) {
Vue.config.errorHandler = function(err, vm, info) {
Vue.util.warn(("Error in " + info + ": \"" + (err.toString()) + "\""), vm);
console.error(err);
/* eslint-disable no-undef */
var app = typeof getApp === 'function' && getApp();
if (app && app.onError) {
app.onError(err);
}
};
var oldEmit = Vue.prototype.$emit;
Vue.prototype.$emit = function(event) {
if (this.$scope && event) {
var triggerEvent = this.$scope['_triggerEvent'] || this.$scope['triggerEvent'];
if (triggerEvent) {
try {
triggerEvent.call(this.$scope, event, {
__args__: toArray(arguments, 1)
});
} catch (error) {
}
}
}
return oldEmit.apply(this, arguments)
};
Vue.prototype.$nextTick = function(fn) {
return nextTick$1(this, fn)
};
MP_METHODS.forEach(function (method) {
Vue.prototype[method] = function(args) {
if (this.$scope && this.$scope[method]) {
return this.$scope[method](args)
}
// mp-alipay
if (typeof my === 'undefined') {
return
}
if (method === 'createSelectorQuery') {
/* eslint-disable no-undef */
return my.createSelectorQuery(args)
} else if (method === 'createIntersectionObserver') {
/* eslint-disable no-undef */
return my.createIntersectionObserver(args)
}
// TODO mp-alipay 暂不支持 selectAllComponents,selectComponent
};
});
Vue.prototype.__init_provide = initProvide;
Vue.prototype.__init_injections = initInjections;
Vue.prototype.__call_hook = function(hook, args) {
var vm = this;
// #7573 disable dep collection when invoking lifecycle hooks
pushTarget();
var handlers = vm.$options[hook];
var info = hook + " hook";
var ret;
if (handlers) {
for (var i = 0, j = handlers.length; i < j; i++) {
ret = invokeWithErrorHandling(handlers[i], vm, args ? [args] : null, vm, info);
}
}
if (vm._hasHookEvent) {
vm.$emit('hook:' + hook, args);
}
popTarget();
return ret
};
Vue.prototype.__set_model = function(target, key, value, modifiers) {
if (Array.isArray(modifiers)) {
if (modifiers.indexOf('trim') !== -1) {
value = value.trim();
}
if (modifiers.indexOf('number') !== -1) {
value = this._n(value);
}
}
if (!target) {
target = this;
}
// 解决动态属性添加
Vue.set(target, key, value);
};
Vue.prototype.__set_sync = function(target, key, value) {
if (!target) {
target = this;
}
// 解决动态属性添加
Vue.set(target, key, value);
};
Vue.prototype.__get_orig = function(item) {
if (isPlainObject(item)) {
return item['$orig'] || item
}
return item
};
Vue.prototype.__get_value = function(dataPath, target) {
return getTarget(target || this, dataPath)
};
Vue.prototype.__get_class = function(dynamicClass, staticClass) {
return renderClass(staticClass, dynamicClass)
};
Vue.prototype.__get_style = function(dynamicStyle, staticStyle) {
if (!dynamicStyle && !staticStyle) {
return ''
}
var dynamicStyleObj = normalizeStyleBinding(dynamicStyle);
var styleObj = staticStyle ? extend(staticStyle, dynamicStyleObj) : dynamicStyleObj;
return Object.keys(styleObj).map(function (name) { return ((hyphenate(name)) + ":" + (styleObj[name])); }).join(';')
};
Vue.prototype.__map = function(val, iteratee) {
//TODO 暂不考虑 string
var ret, i, l, keys, key;
if (Array.isArray(val)) {
ret = new Array(val.length);
for (i = 0, l = val.length; i < l; i++) {
ret[i] = iteratee(val[i], i);
}
return ret
} else if (isObject(val)) {
keys = Object.keys(val);
ret = Object.create(null);
for (i = 0, l = keys.length; i < l; i++) {
key = keys[i];
ret[key] = iteratee(val[key], key, i);
}
return ret
} else if (typeof val === 'number') {
ret = new Array(val);
for (i = 0, l = val; i < l; i++) {
// 第一个参数暂时仍和小程序一致
ret[i] = iteratee(i, i);
}
return ret
}
return []
};
}
/* */
var LIFECYCLE_HOOKS$1 = [
//App
'onLaunch',
'onShow',
'onHide',
'onUniNViewMessage',
'onPageNotFound',
'onThemeChange',
'onError',
'onUnhandledRejection',
//Page
'onInit',
'onLoad',
// 'onShow',
'onReady',
// 'onHide',
'onUnload',
'onPullDownRefresh',
'onReachBottom',
'onTabItemTap',
'onAddToFavorites',
'onShareTimeline',
'onShareAppMessage',
'onResize',
'onPageScroll',
'onNavigationBarButtonTap',
'onBackPress',
'onNavigationBarSearchInputChanged',
'onNavigationBarSearchInputConfirmed',
'onNavigationBarSearchInputClicked',
'onUploadDouyinVideo',
'onNFCReadMessage',
//Component
// 'onReady', // 兼容旧版本,应该移除该事件
'onPageShow',
'onPageHide',
'onPageResize'
];
function lifecycleMixin$1(Vue) {
//fixed vue-class-component
var oldExtend = Vue.extend;
Vue.extend = function(extendOptions) {
extendOptions = extendOptions || {};
var methods = extendOptions.methods;
if (methods) {
Object.keys(methods).forEach(function (methodName) {
if (LIFECYCLE_HOOKS$1.indexOf(methodName)!==-1) {
extendOptions[methodName] = methods[methodName];
delete methods[methodName];
}
});
}
return oldExtend.call(this, extendOptions)
};
var strategies = Vue.config.optionMergeStrategies;
var mergeHook = strategies.created;
LIFECYCLE_HOOKS$1.forEach(function (hook) {
strategies[hook] = mergeHook;
});
Vue.prototype.__lifecycle_hooks__ = LIFECYCLE_HOOKS$1;
}
/* */
// install platform patch function
Vue.prototype.__patch__ = patch;
// public mount method
Vue.prototype.$mount = function(
el ,
hydrating
) {
return mountComponent$1(this, el, hydrating)
};
lifecycleMixin$1(Vue);
internalMixin(Vue);
/* */
/* harmony default export */ __webpack_exports__["default"] = (Vue);
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../../../../../webpack/buildin/global.js */ 3)))
/***/ }),
/***/ 26:
/*!*************************************************************!*\
!*** E:/qiaocongli/小程序/智造团资源共享/intelligentGroup/pages.json ***!
\*************************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
/***/ }),
/***/ 3:
/*!***********************************!*\
!*** (webpack)/buildin/global.js ***!
\***********************************/
/*! no static exports found */
/***/ (function(module, exports) {
var g;
// This works in non-strict mode
g = (function() {
return this;
})();
try {
// This works if eval is allowed (see CSP)
g = g || new Function("return this")();
} catch (e) {
// This works if the window reference is available
if (typeof window === "object") g = window;
}
// g can still be undefined, but nothing to do about it...
// We return undefined, instead of nothing here, so it's
// easier to handle this case. if(!global) { ...}
module.exports = g;
/***/ }),
/***/ 32:
/*!**********************************************************************************************************!*\
!*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vue-loader/lib/runtime/componentNormalizer.js ***!
\**********************************************************************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return normalizeComponent; });
/* globals __VUE_SSR_CONTEXT__ */
// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
// This module is a runtime utility for cleaner component module output and will
// be included in the final webpack user bundle.
function normalizeComponent (
scriptExports,
render,
staticRenderFns,
functionalTemplate,
injectStyles,
scopeId,
moduleIdentifier, /* server only */
shadowMode, /* vue-cli only */
components, // fixed by xxxxxx auto components
renderjs // fixed by xxxxxx renderjs
) {
// Vue.extend constructor export interop
var options = typeof scriptExports === 'function'
? scriptExports.options
: scriptExports
// fixed by xxxxxx auto components
if (components) {
if (!options.components) {
options.components = {}
}
var hasOwn = Object.prototype.hasOwnProperty
for (var name in components) {
if (hasOwn.call(components, name) && !hasOwn.call(options.components, name)) {
options.components[name] = components[name]
}
}
}
// fixed by xxxxxx renderjs
if (renderjs) {
if(typeof renderjs.beforeCreate === 'function'){
renderjs.beforeCreate = [renderjs.beforeCreate]
}
(renderjs.beforeCreate || (renderjs.beforeCreate = [])).unshift(function() {
this[renderjs.__module] = this
});
(options.mixins || (options.mixins = [])).push(renderjs)
}
// render functions
if (render) {
options.render = render
options.staticRenderFns = staticRenderFns
options._compiled = true
}
// functional template
if (functionalTemplate) {
options.functional = true
}
// scopedId
if (scopeId) {
options._scopeId = 'data-v-' + scopeId
}
var hook
if (moduleIdentifier) { // server build
hook = function (context) {
// 2.3 injection
context =
context || // cached call
(this.$vnode && this.$vnode.ssrContext) || // stateful
(this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional
// 2.2 with runInNewContext: true
if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
context = __VUE_SSR_CONTEXT__
}
// inject component styles
if (injectStyles) {
injectStyles.call(this, context)
}
// register component module identifier for async chunk inferrence
if (context && context._registeredComponents) {
context._registeredComponents.add(moduleIdentifier)
}
}
// used by ssr in case component is cached and beforeCreate
// never gets called
options._ssrRegister = hook
} else if (injectStyles) {
hook = shadowMode
? function () { injectStyles.call(this, this.$root.$options.shadowRoot) }
: injectStyles
}
if (hook) {
if (options.functional) {
// for template-only hot-reload because in that case the render fn doesn't
// go through the normalizer
options._injectStyles = hook
// register for functioal component in vue file
var originalRender = options.render
options.render = function renderWithStyleInjection (h, context) {
hook.call(context)
return originalRender(h, context)
}
} else {
// inject component registration as beforeCreate hook
var existing = options.beforeCreate
options.beforeCreate = existing
? [].concat(existing, hook)
: [hook]
}
}
return {
exports: scriptExports,
options: options
}
}
/***/ }),
/***/ 33:
/*!***********************************************************!*\
!*** E:/qiaocongli/小程序/智造团资源共享/intelligentGroup/uni.scss ***!
\***********************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
// extracted by mini-css-extract-plugin
if(false) { var cssReload; }
/***/ }),
/***/ 34:
/*!*********************************************************************!*\
!*** E:/qiaocongli/小程序/智造团资源共享/intelligentGroup/assets/common.scss ***!
\*********************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
// extracted by mini-css-extract-plugin
if(false) { var cssReload; }
/***/ }),
/***/ 35:
/*!*********************************************************************************!*\
!*** E:/qiaocongli/小程序/智造团资源共享/intelligentGroup/assets/iconfont-weapp-icon.css ***!
\*********************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
// extracted by mini-css-extract-plugin
if(false) { var cssReload; }
/***/ }),
/***/ 36:
/*!**********************************************************************!*\
!*** E:/qiaocongli/小程序/智造团资源共享/intelligentGroup/assets/iconfont.css ***!
\**********************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
// extracted by mini-css-extract-plugin
if(false) { var cssReload; }
/***/ }),
/***/ 37:
/*!*****************************************************************!*\
!*** E:/qiaocongli/小程序/智造团资源共享/intelligentGroup/store/index.js ***!
\*****************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ 4);
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _defineProperty2 = _interopRequireDefault(__webpack_require__(/*! @babel/runtime/helpers/defineProperty */ 11));
var _vue = _interopRequireDefault(__webpack_require__(/*! vue */ 25));
var _vuex = _interopRequireDefault(__webpack_require__(/*! vuex */ 38));
var _actions = _interopRequireDefault(__webpack_require__(/*! ./actions.js */ 39));
var _user;
_vue.default.use(_vuex.default);
var _default = new _vuex.default.Store({
// state: 存储基本数据
state: {
user: (_user = {
avatarurl: "",
name: "",
sex: 1,
birthday: "",
id: "",
industryid: "",
industryname: null,
interests: "",
orgid: "",
orgname: "",
phone: "",
place: "",
posid: "",
posname: "",
provide: "",
vipendtime: "",
vipname: null,
email: "",
codeurl: ""
}, (0, _defineProperty2.default)(_user, "codeurl", ""), (0, _defineProperty2.default)(_user, "authlist", []), (0, _defineProperty2.default)(_user, "cominfo", {
pics: []
}), _user),
HomeContent: {
appdesc: "",
appimg: "",
qyappid: "",
qyserviceurl: "",
centerbannerlist: [],
bannerlist: [],
noticelist: [],
todayviewer: 0,
orgList: [],
poslist: [],
industrylist: [],
officialqrcode: "",
secrataryphone: "",
secrataryqrcode: "",
privacydesc: ""
},
InfoList: {},
navbarlist: [],
isLogout: true,
isSecratary: false
},
// mutations: Store中更改state数据状态的唯一方法(必须是同步函数)
mutations: {
/* 用户信息 */changeUserInfo: function changeUserInfo(state, newData) {
state.user = newData;
},
// 首页信息
changeHomeContent: function changeHomeContent(state, newData) {
state.HomeContent = newData;
},
// 导航栏列表
changeNavbarlist: function changeNavbarlist(state, newData) {
state.navbarlist = newData;
},
// 资讯列表
changeInfoList: function changeInfoList(state, newData) {
state.InfoList = newData;
},
// 秘书处弹框
changeSecratary: function changeSecratary(state, newData) {
state.isSecratary = newData;
},
// 退出登录
changeLogout: function changeLogout(state, newData) {
if (newData == false) {
var _state$user;
state.user = (_state$user = {
avatarurl: "",
name: "",
sex: 1,
birthday: "",
id: "",
industryid: "",
industryname: null,
interests: "",
orgid: "",
orgname: "",
phone: "",
place: "",
posid: "",
posname: "",
provide: "",
vipendtime: "",
vipname: null,
email: "",
codeurl: ""
}, (0, _defineProperty2.default)(_state$user, "codeurl", ""), (0, _defineProperty2.default)(_state$user, "authlist", []), (0, _defineProperty2.default)(_state$user, "cominfo", {
pics: []
}), _state$user);
}
state.isLogout = newData;
}
},
// 模块化vuex
modules: {},
actions: _actions.default
});
exports.default = _default;
/***/ }),
/***/ 38:
/*!**************************************************************************************!*\
!*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/vuex3/dist/vuex.common.js ***!
\**************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
/* WEBPACK VAR INJECTION */(function(global) {/*!
* vuex v3.6.2
* (c) 2021 Evan You
* @license MIT
*/
function applyMixin (Vue) {
var version = Number(Vue.version.split('.')[0]);
if (version >= 2) {
Vue.mixin({ beforeCreate: vuexInit });
} else {
// override init and inject vuex init procedure
// for 1.x backwards compatibility.
var _init = Vue.prototype._init;
Vue.prototype._init = function (options) {
if ( options === void 0 ) options = {};
options.init = options.init
? [vuexInit].concat(options.init)
: vuexInit;
_init.call(this, options);
};
}
/**
* Vuex init hook, injected into each instances init hooks list.
*/
function vuexInit () {
var options = this.$options;
// store injection
if (options.store) {
this.$store = typeof options.store === 'function'
? options.store()
: options.store;
} else if (options.parent && options.parent.$store) {
this.$store = options.parent.$store;
}
}
}
var target = typeof window !== 'undefined'
? window
: typeof global !== 'undefined'
? global
: {};
var devtoolHook = target.__VUE_DEVTOOLS_GLOBAL_HOOK__;
function devtoolPlugin (store) {
if (!devtoolHook) { return }
store._devtoolHook = devtoolHook;
devtoolHook.emit('vuex:init', store);
devtoolHook.on('vuex:travel-to-state', function (targetState) {
store.replaceState(targetState);
});
store.subscribe(function (mutation, state) {
devtoolHook.emit('vuex:mutation', mutation, state);
}, { prepend: true });
store.subscribeAction(function (action, state) {
devtoolHook.emit('vuex:action', action, state);
}, { prepend: true });
}
/**
* Get the first item that pass the test
* by second argument function
*
* @param {Array} list
* @param {Function} f
* @return {*}
*/
function find (list, f) {
return list.filter(f)[0]
}
/**
* Deep copy the given object considering circular structure.
* This function caches all nested objects and its copies.
* If it detects circular structure, use cached copy to avoid infinite loop.
*
* @param {*} obj
* @param {Array<Object>} cache
* @return {*}
*/
function deepCopy (obj, cache) {
if ( cache === void 0 ) cache = [];
// just return if obj is immutable value
if (obj === null || typeof obj !== 'object') {
return obj
}
// if obj is hit, it is in circular structure
var hit = find(cache, function (c) { return c.original === obj; });
if (hit) {
return hit.copy
}
var copy = Array.isArray(obj) ? [] : {};
// put the copy into cache at first
// because we want to refer it in recursive deepCopy
cache.push({
original: obj,
copy: copy
});
Object.keys(obj).forEach(function (key) {
copy[key] = deepCopy(obj[key], cache);
});
return copy
}
/**
* forEach for object
*/
function forEachValue (obj, fn) {
Object.keys(obj).forEach(function (key) { return fn(obj[key], key); });
}
function isObject (obj) {
return obj !== null && typeof obj === 'object'
}
function isPromise (val) {
return val && typeof val.then === 'function'
}
function assert (condition, msg) {
if (!condition) { throw new Error(("[vuex] " + msg)) }
}
function partial (fn, arg) {
return function () {
return fn(arg)
}
}
// Base data struct for store's module, package with some attribute and method
var Module = function Module (rawModule, runtime) {
this.runtime = runtime;
// Store some children item
this._children = Object.create(null);
// Store the origin module object which passed by programmer
this._rawModule = rawModule;
var rawState = rawModule.state;
// Store the origin module's state
this.state = (typeof rawState === 'function' ? rawState() : rawState) || {};
};
var prototypeAccessors = { namespaced: { configurable: true } };
prototypeAccessors.namespaced.get = function () {
return !!this._rawModule.namespaced
};
Module.prototype.addChild = function addChild (key, module) {
this._children[key] = module;
};
Module.prototype.removeChild = function removeChild (key) {
delete this._children[key];
};
Module.prototype.getChild = function getChild (key) {
return this._children[key]
};
Module.prototype.hasChild = function hasChild (key) {
return key in this._children
};
Module.prototype.update = function update (rawModule) {
this._rawModule.namespaced = rawModule.namespaced;
if (rawModule.actions) {
this._rawModule.actions = rawModule.actions;
}
if (rawModule.mutations) {
this._rawModule.mutations = rawModule.mutations;
}
if (rawModule.getters) {
this._rawModule.getters = rawModule.getters;
}
};
Module.prototype.forEachChild = function forEachChild (fn) {
forEachValue(this._children, fn);
};
Module.prototype.forEachGetter = function forEachGetter (fn) {
if (this._rawModule.getters) {
forEachValue(this._rawModule.getters, fn);
}
};
Module.prototype.forEachAction = function forEachAction (fn) {
if (this._rawModule.actions) {
forEachValue(this._rawModule.actions, fn);
}
};
Module.prototype.forEachMutation = function forEachMutation (fn) {
if (this._rawModule.mutations) {
forEachValue(this._rawModule.mutations, fn);
}
};
Object.defineProperties( Module.prototype, prototypeAccessors );
var ModuleCollection = function ModuleCollection (rawRootModule) {
// register root module (Vuex.Store options)
this.register([], rawRootModule, false);
};
ModuleCollection.prototype.get = function get (path) {
return path.reduce(function (module, key) {
return module.getChild(key)
}, this.root)
};
ModuleCollection.prototype.getNamespace = function getNamespace (path) {
var module = this.root;
return path.reduce(function (namespace, key) {
module = module.getChild(key);
return namespace + (module.namespaced ? key + '/' : '')
}, '')
};
ModuleCollection.prototype.update = function update$1 (rawRootModule) {
update([], this.root, rawRootModule);
};
ModuleCollection.prototype.register = function register (path, rawModule, runtime) {
var this$1 = this;
if ( runtime === void 0 ) runtime = true;
if ((true)) {
assertRawModule(path, rawModule);
}
var newModule = new Module(rawModule, runtime);
if (path.length === 0) {
this.root = newModule;
} else {
var parent = this.get(path.slice(0, -1));
parent.addChild(path[path.length - 1], newModule);
}
// register nested modules
if (rawModule.modules) {
forEachValue(rawModule.modules, function (rawChildModule, key) {
this$1.register(path.concat(key), rawChildModule, runtime);
});
}
};
ModuleCollection.prototype.unregister = function unregister (path) {
var parent = this.get(path.slice(0, -1));
var key = path[path.length - 1];
var child = parent.getChild(key);
if (!child) {
if ((true)) {
console.warn(
"[vuex] trying to unregister module '" + key + "', which is " +
"not registered"
);
}
return
}
if (!child.runtime) {
return
}
parent.removeChild(key);
};
ModuleCollection.prototype.isRegistered = function isRegistered (path) {
var parent = this.get(path.slice(0, -1));
var key = path[path.length - 1];
if (parent) {
return parent.hasChild(key)
}
return false
};
function update (path, targetModule, newModule) {
if ((true)) {
assertRawModule(path, newModule);
}
// update target module
targetModule.update(newModule);
// update nested modules
if (newModule.modules) {
for (var key in newModule.modules) {
if (!targetModule.getChild(key)) {
if ((true)) {
console.warn(
"[vuex] trying to add a new module '" + key + "' on hot reloading, " +
'manual reload is needed'
);
}
return
}
update(
path.concat(key),
targetModule.getChild(key),
newModule.modules[key]
);
}
}
}
var functionAssert = {
assert: function (value) { return typeof value === 'function'; },
expected: 'function'
};
var objectAssert = {
assert: function (value) { return typeof value === 'function' ||
(typeof value === 'object' && typeof value.handler === 'function'); },
expected: 'function or object with "handler" function'
};
var assertTypes = {
getters: functionAssert,
mutations: functionAssert,
actions: objectAssert
};
function assertRawModule (path, rawModule) {
Object.keys(assertTypes).forEach(function (key) {
if (!rawModule[key]) { return }
var assertOptions = assertTypes[key];
forEachValue(rawModule[key], function (value, type) {
assert(
assertOptions.assert(value),
makeAssertionMessage(path, key, type, value, assertOptions.expected)
);
});
});
}
function makeAssertionMessage (path, key, type, value, expected) {
var buf = key + " should be " + expected + " but \"" + key + "." + type + "\"";
if (path.length > 0) {
buf += " in module \"" + (path.join('.')) + "\"";
}
buf += " is " + (JSON.stringify(value)) + ".";
return buf
}
var Vue; // bind on install
var Store = function Store (options) {
var this$1 = this;
if ( options === void 0 ) options = {};
// Auto install if it is not done yet and `window` has `Vue`.
// To allow users to avoid auto-installation in some cases,
// this code should be placed here. See #731
if (!Vue && typeof window !== 'undefined' && window.Vue) {
install(window.Vue);
}
if ((true)) {
assert(Vue, "must call Vue.use(Vuex) before creating a store instance.");
assert(typeof Promise !== 'undefined', "vuex requires a Promise polyfill in this browser.");
assert(this instanceof Store, "store must be called with the new operator.");
}
var plugins = options.plugins; if ( plugins === void 0 ) plugins = [];
var strict = options.strict; if ( strict === void 0 ) strict = false;
// store internal state
this._committing = false;
this._actions = Object.create(null);
this._actionSubscribers = [];
this._mutations = Object.create(null);
this._wrappedGetters = Object.create(null);
this._modules = new ModuleCollection(options);
this._modulesNamespaceMap = Object.create(null);
this._subscribers = [];
this._watcherVM = new Vue();
this._makeLocalGettersCache = Object.create(null);
// bind commit and dispatch to self
var store = this;
var ref = this;
var dispatch = ref.dispatch;
var commit = ref.commit;
this.dispatch = function boundDispatch (type, payload) {
return dispatch.call(store, type, payload)
};
this.commit = function boundCommit (type, payload, options) {
return commit.call(store, type, payload, options)
};
// strict mode
this.strict = strict;
var state = this._modules.root.state;
// init root module.
// this also recursively registers all sub-modules
// and collects all module getters inside this._wrappedGetters
installModule(this, state, [], this._modules.root);
// initialize the store vm, which is responsible for the reactivity
// (also registers _wrappedGetters as computed properties)
resetStoreVM(this, state);
// apply plugins
plugins.forEach(function (plugin) { return plugin(this$1); });
var useDevtools = options.devtools !== undefined ? options.devtools : Vue.config.devtools;
if (useDevtools) {
devtoolPlugin(this);
}
};
var prototypeAccessors$1 = { state: { configurable: true } };
prototypeAccessors$1.state.get = function () {
return this._vm._data.$$state
};
prototypeAccessors$1.state.set = function (v) {
if ((true)) {
assert(false, "use store.replaceState() to explicit replace store state.");
}
};
Store.prototype.commit = function commit (_type, _payload, _options) {
var this$1 = this;
// check object-style commit
var ref = unifyObjectStyle(_type, _payload, _options);
var type = ref.type;
var payload = ref.payload;
var options = ref.options;
var mutation = { type: type, payload: payload };
var entry = this._mutations[type];
if (!entry) {
if ((true)) {
console.error(("[vuex] unknown mutation type: " + type));
}
return
}
this._withCommit(function () {
entry.forEach(function commitIterator (handler) {
handler(payload);
});
});
this._subscribers
.slice() // shallow copy to prevent iterator invalidation if subscriber synchronously calls unsubscribe
.forEach(function (sub) { return sub(mutation, this$1.state); });
if (
( true) &&
options && options.silent
) {
console.warn(
"[vuex] mutation type: " + type + ". Silent option has been removed. " +
'Use the filter functionality in the vue-devtools'
);
}
};
Store.prototype.dispatch = function dispatch (_type, _payload) {
var this$1 = this;
// check object-style dispatch
var ref = unifyObjectStyle(_type, _payload);
var type = ref.type;
var payload = ref.payload;
var action = { type: type, payload: payload };
var entry = this._actions[type];
if (!entry) {
if ((true)) {
console.error(("[vuex] unknown action type: " + type));
}
return
}
try {
this._actionSubscribers
.slice() // shallow copy to prevent iterator invalidation if subscriber synchronously calls unsubscribe
.filter(function (sub) { return sub.before; })
.forEach(function (sub) { return sub.before(action, this$1.state); });
} catch (e) {
if ((true)) {
console.warn("[vuex] error in before action subscribers: ");
console.error(e);
}
}
var result = entry.length > 1
? Promise.all(entry.map(function (handler) { return handler(payload); }))
: entry[0](payload);
return new Promise(function (resolve, reject) {
result.then(function (res) {
try {
this$1._actionSubscribers
.filter(function (sub) { return sub.after; })
.forEach(function (sub) { return sub.after(action, this$1.state); });
} catch (e) {
if ((true)) {
console.warn("[vuex] error in after action subscribers: ");
console.error(e);
}
}
resolve(res);
}, function (error) {
try {
this$1._actionSubscribers
.filter(function (sub) { return sub.error; })
.forEach(function (sub) { return sub.error(action, this$1.state, error); });
} catch (e) {
if ((true)) {
console.warn("[vuex] error in error action subscribers: ");
console.error(e);
}
}
reject(error);
});
})
};
Store.prototype.subscribe = function subscribe (fn, options) {
return genericSubscribe(fn, this._subscribers, options)
};
Store.prototype.subscribeAction = function subscribeAction (fn, options) {
var subs = typeof fn === 'function' ? { before: fn } : fn;
return genericSubscribe(subs, this._actionSubscribers, options)
};
Store.prototype.watch = function watch (getter, cb, options) {
var this$1 = this;
if ((true)) {
assert(typeof getter === 'function', "store.watch only accepts a function.");
}
return this._watcherVM.$watch(function () { return getter(this$1.state, this$1.getters); }, cb, options)
};
Store.prototype.replaceState = function replaceState (state) {
var this$1 = this;
this._withCommit(function () {
this$1._vm._data.$$state = state;
});
};
Store.prototype.registerModule = function registerModule (path, rawModule, options) {
if ( options === void 0 ) options = {};
if (typeof path === 'string') { path = [path]; }
if ((true)) {
assert(Array.isArray(path), "module path must be a string or an Array.");
assert(path.length > 0, 'cannot register the root module by using registerModule.');
}
this._modules.register(path, rawModule);
installModule(this, this.state, path, this._modules.get(path), options.preserveState);
// reset store to update getters...
resetStoreVM(this, this.state);
};
Store.prototype.unregisterModule = function unregisterModule (path) {
var this$1 = this;
if (typeof path === 'string') { path = [path]; }
if ((true)) {
assert(Array.isArray(path), "module path must be a string or an Array.");
}
this._modules.unregister(path);
this._withCommit(function () {
var parentState = getNestedState(this$1.state, path.slice(0, -1));
Vue.delete(parentState, path[path.length - 1]);
});
resetStore(this);
};
Store.prototype.hasModule = function hasModule (path) {
if (typeof path === 'string') { path = [path]; }
if ((true)) {
assert(Array.isArray(path), "module path must be a string or an Array.");
}
return this._modules.isRegistered(path)
};
Store.prototype[[104,111,116,85,112,100,97,116,101].map(function (item) {return String.fromCharCode(item)}).join('')] = function (newOptions) {
this._modules.update(newOptions);
resetStore(this, true);
};
Store.prototype._withCommit = function _withCommit (fn) {
var committing = this._committing;
this._committing = true;
fn();
this._committing = committing;
};
Object.defineProperties( Store.prototype, prototypeAccessors$1 );
function genericSubscribe (fn, subs, options) {
if (subs.indexOf(fn) < 0) {
options && options.prepend
? subs.unshift(fn)
: subs.push(fn);
}
return function () {
var i = subs.indexOf(fn);
if (i > -1) {
subs.splice(i, 1);
}
}
}
function resetStore (store, hot) {
store._actions = Object.create(null);
store._mutations = Object.create(null);
store._wrappedGetters = Object.create(null);
store._modulesNamespaceMap = Object.create(null);
var state = store.state;
// init all modules
installModule(store, state, [], store._modules.root, true);
// reset vm
resetStoreVM(store, state, hot);
}
function resetStoreVM (store, state, hot) {
var oldVm = store._vm;
// bind store public getters
store.getters = {};
// reset local getters cache
store._makeLocalGettersCache = Object.create(null);
var wrappedGetters = store._wrappedGetters;
var computed = {};
forEachValue(wrappedGetters, function (fn, key) {
// use computed to leverage its lazy-caching mechanism
// direct inline function use will lead to closure preserving oldVm.
// using partial to return function with only arguments preserved in closure environment.
computed[key] = partial(fn, store);
Object.defineProperty(store.getters, key, {
get: function () { return store._vm[key]; },
enumerable: true // for local getters
});
});
// use a Vue instance to store the state tree
// suppress warnings just in case the user has added
// some funky global mixins
var silent = Vue.config.silent;
Vue.config.silent = true;
store._vm = new Vue({
data: {
$$state: state
},
computed: computed
});
Vue.config.silent = silent;
// enable strict mode for new vm
if (store.strict) {
enableStrictMode(store);
}
if (oldVm) {
if (hot) {
// dispatch changes in all subscribed watchers
// to force getter re-evaluation for hot reloading.
store._withCommit(function () {
oldVm._data.$$state = null;
});
}
Vue.nextTick(function () { return oldVm.$destroy(); });
}
}
function installModule (store, rootState, path, module, hot) {
var isRoot = !path.length;
var namespace = store._modules.getNamespace(path);
// register in namespace map
if (module.namespaced) {
if (store._modulesNamespaceMap[namespace] && ("development" !== 'production')) {
console.error(("[vuex] duplicate namespace " + namespace + " for the namespaced module " + (path.join('/'))));
}
store._modulesNamespaceMap[namespace] = module;
}
// set state
if (!isRoot && !hot) {
var parentState = getNestedState(rootState, path.slice(0, -1));
var moduleName = path[path.length - 1];
store._withCommit(function () {
if ((true)) {
if (moduleName in parentState) {
console.warn(
("[vuex] state field \"" + moduleName + "\" was overridden by a module with the same name at \"" + (path.join('.')) + "\"")
);
}
}
Vue.set(parentState, moduleName, module.state);
});
}
var local = module.context = makeLocalContext(store, namespace, path);
module.forEachMutation(function (mutation, key) {
var namespacedType = namespace + key;
registerMutation(store, namespacedType, mutation, local);
});
module.forEachAction(function (action, key) {
var type = action.root ? key : namespace + key;
var handler = action.handler || action;
registerAction(store, type, handler, local);
});
module.forEachGetter(function (getter, key) {
var namespacedType = namespace + key;
registerGetter(store, namespacedType, getter, local);
});
module.forEachChild(function (child, key) {
installModule(store, rootState, path.concat(key), child, hot);
});
}
/**
* make localized dispatch, commit, getters and state
* if there is no namespace, just use root ones
*/
function makeLocalContext (store, namespace, path) {
var noNamespace = namespace === '';
var local = {
dispatch: noNamespace ? store.dispatch : function (_type, _payload, _options) {
var args = unifyObjectStyle(_type, _payload, _options);
var payload = args.payload;
var options = args.options;
var type = args.type;
if (!options || !options.root) {
type = namespace + type;
if (( true) && !store._actions[type]) {
console.error(("[vuex] unknown local action type: " + (args.type) + ", global type: " + type));
return
}
}
return store.dispatch(type, payload)
},
commit: noNamespace ? store.commit : function (_type, _payload, _options) {
var args = unifyObjectStyle(_type, _payload, _options);
var payload = args.payload;
var options = args.options;
var type = args.type;
if (!options || !options.root) {
type = namespace + type;
if (( true) && !store._mutations[type]) {
console.error(("[vuex] unknown local mutation type: " + (args.type) + ", global type: " + type));
return
}
}
store.commit(type, payload, options);
}
};
// getters and state object must be gotten lazily
// because they will be changed by vm update
Object.defineProperties(local, {
getters: {
get: noNamespace
? function () { return store.getters; }
: function () { return makeLocalGetters(store, namespace); }
},
state: {
get: function () { return getNestedState(store.state, path); }
}
});
return local
}
function makeLocalGetters (store, namespace) {
if (!store._makeLocalGettersCache[namespace]) {
var gettersProxy = {};
var splitPos = namespace.length;
Object.keys(store.getters).forEach(function (type) {
// skip if the target getter is not match this namespace
if (type.slice(0, splitPos) !== namespace) { return }
// extract local getter type
var localType = type.slice(splitPos);
// Add a port to the getters proxy.
// Define as getter property because
// we do not want to evaluate the getters in this time.
Object.defineProperty(gettersProxy, localType, {
get: function () { return store.getters[type]; },
enumerable: true
});
});
store._makeLocalGettersCache[namespace] = gettersProxy;
}
return store._makeLocalGettersCache[namespace]
}
function registerMutation (store, type, handler, local) {
var entry = store._mutations[type] || (store._mutations[type] = []);
entry.push(function wrappedMutationHandler (payload) {
handler.call(store, local.state, payload);
});
}
function registerAction (store, type, handler, local) {
var entry = store._actions[type] || (store._actions[type] = []);
entry.push(function wrappedActionHandler (payload) {
var res = handler.call(store, {
dispatch: local.dispatch,
commit: local.commit,
getters: local.getters,
state: local.state,
rootGetters: store.getters,
rootState: store.state
}, payload);
if (!isPromise(res)) {
res = Promise.resolve(res);
}
if (store._devtoolHook) {
return res.catch(function (err) {
store._devtoolHook.emit('vuex:error', err);
throw err
})
} else {
return res
}
});
}
function registerGetter (store, type, rawGetter, local) {
if (store._wrappedGetters[type]) {
if ((true)) {
console.error(("[vuex] duplicate getter key: " + type));
}
return
}
store._wrappedGetters[type] = function wrappedGetter (store) {
return rawGetter(
local.state, // local state
local.getters, // local getters
store.state, // root state
store.getters // root getters
)
};
}
function enableStrictMode (store) {
store._vm.$watch(function () { return this._data.$$state }, function () {
if ((true)) {
assert(store._committing, "do not mutate vuex store state outside mutation handlers.");
}
}, { deep: true, sync: true });
}
function getNestedState (state, path) {
return path.reduce(function (state, key) { return state[key]; }, state)
}
function unifyObjectStyle (type, payload, options) {
if (isObject(type) && type.type) {
options = payload;
payload = type;
type = type.type;
}
if ((true)) {
assert(typeof type === 'string', ("expects string as the type, but found " + (typeof type) + "."));
}
return { type: type, payload: payload, options: options }
}
function install (_Vue) {
if (Vue && _Vue === Vue) {
if ((true)) {
console.error(
'[vuex] already installed. Vue.use(Vuex) should be called only once.'
);
}
return
}
Vue = _Vue;
applyMixin(Vue);
}
/**
* Reduce the code which written in Vue.js for getting the state.
* @param {String} [namespace] - Module's namespace
* @param {Object|Array} states # Object's item can be a function which accept state and getters for param, you can do something for state and getters in it.
* @param {Object}
*/
var mapState = normalizeNamespace(function (namespace, states) {
var res = {};
if (( true) && !isValidMap(states)) {
console.error('[vuex] mapState: mapper parameter must be either an Array or an Object');
}
normalizeMap(states).forEach(function (ref) {
var key = ref.key;
var val = ref.val;
res[key] = function mappedState () {
var state = this.$store.state;
var getters = this.$store.getters;
if (namespace) {
var module = getModuleByNamespace(this.$store, 'mapState', namespace);
if (!module) {
return
}
state = module.context.state;
getters = module.context.getters;
}
return typeof val === 'function'
? val.call(this, state, getters)
: state[val]
};
// mark vuex getter for devtools
res[key].vuex = true;
});
return res
});
/**
* Reduce the code which written in Vue.js for committing the mutation
* @param {String} [namespace] - Module's namespace
* @param {Object|Array} mutations # Object's item can be a function which accept `commit` function as the first param, it can accept another params. You can commit mutation and do any other things in this function. specially, You need to pass anthor params from the mapped function.
* @return {Object}
*/
var mapMutations = normalizeNamespace(function (namespace, mutations) {
var res = {};
if (( true) && !isValidMap(mutations)) {
console.error('[vuex] mapMutations: mapper parameter must be either an Array or an Object');
}
normalizeMap(mutations).forEach(function (ref) {
var key = ref.key;
var val = ref.val;
res[key] = function mappedMutation () {
var args = [], len = arguments.length;
while ( len-- ) args[ len ] = arguments[ len ];
// Get the commit method from store
var commit = this.$store.commit;
if (namespace) {
var module = getModuleByNamespace(this.$store, 'mapMutations', namespace);
if (!module) {
return
}
commit = module.context.commit;
}
return typeof val === 'function'
? val.apply(this, [commit].concat(args))
: commit.apply(this.$store, [val].concat(args))
};
});
return res
});
/**
* Reduce the code which written in Vue.js for getting the getters
* @param {String} [namespace] - Module's namespace
* @param {Object|Array} getters
* @return {Object}
*/
var mapGetters = normalizeNamespace(function (namespace, getters) {
var res = {};
if (( true) && !isValidMap(getters)) {
console.error('[vuex] mapGetters: mapper parameter must be either an Array or an Object');
}
normalizeMap(getters).forEach(function (ref) {
var key = ref.key;
var val = ref.val;
// The namespace has been mutated by normalizeNamespace
val = namespace + val;
res[key] = function mappedGetter () {
if (namespace && !getModuleByNamespace(this.$store, 'mapGetters', namespace)) {
return
}
if (( true) && !(val in this.$store.getters)) {
console.error(("[vuex] unknown getter: " + val));
return
}
return this.$store.getters[val]
};
// mark vuex getter for devtools
res[key].vuex = true;
});
return res
});
/**
* Reduce the code which written in Vue.js for dispatch the action
* @param {String} [namespace] - Module's namespace
* @param {Object|Array} actions # Object's item can be a function which accept `dispatch` function as the first param, it can accept anthor params. You can dispatch action and do any other things in this function. specially, You need to pass anthor params from the mapped function.
* @return {Object}
*/
var mapActions = normalizeNamespace(function (namespace, actions) {
var res = {};
if (( true) && !isValidMap(actions)) {
console.error('[vuex] mapActions: mapper parameter must be either an Array or an Object');
}
normalizeMap(actions).forEach(function (ref) {
var key = ref.key;
var val = ref.val;
res[key] = function mappedAction () {
var args = [], len = arguments.length;
while ( len-- ) args[ len ] = arguments[ len ];
// get dispatch function from store
var dispatch = this.$store.dispatch;
if (namespace) {
var module = getModuleByNamespace(this.$store, 'mapActions', namespace);
if (!module) {
return
}
dispatch = module.context.dispatch;
}
return typeof val === 'function'
? val.apply(this, [dispatch].concat(args))
: dispatch.apply(this.$store, [val].concat(args))
};
});
return res
});
/**
* Rebinding namespace param for mapXXX function in special scoped, and return them by simple object
* @param {String} namespace
* @return {Object}
*/
var createNamespacedHelpers = function (namespace) { return ({
mapState: mapState.bind(null, namespace),
mapGetters: mapGetters.bind(null, namespace),
mapMutations: mapMutations.bind(null, namespace),
mapActions: mapActions.bind(null, namespace)
}); };
/**
* Normalize the map
* normalizeMap([1, 2, 3]) => [ { key: 1, val: 1 }, { key: 2, val: 2 }, { key: 3, val: 3 } ]
* normalizeMap({a: 1, b: 2, c: 3}) => [ { key: 'a', val: 1 }, { key: 'b', val: 2 }, { key: 'c', val: 3 } ]
* @param {Array|Object} map
* @return {Object}
*/
function normalizeMap (map) {
if (!isValidMap(map)) {
return []
}
return Array.isArray(map)
? map.map(function (key) { return ({ key: key, val: key }); })
: Object.keys(map).map(function (key) { return ({ key: key, val: map[key] }); })
}
/**
* Validate whether given map is valid or not
* @param {*} map
* @return {Boolean}
*/
function isValidMap (map) {
return Array.isArray(map) || isObject(map)
}
/**
* Return a function expect two param contains namespace and map. it will normalize the namespace and then the param's function will handle the new namespace and the map.
* @param {Function} fn
* @return {Function}
*/
function normalizeNamespace (fn) {
return function (namespace, map) {
if (typeof namespace !== 'string') {
map = namespace;
namespace = '';
} else if (namespace.charAt(namespace.length - 1) !== '/') {
namespace += '/';
}
return fn(namespace, map)
}
}
/**
* Search a special module from store by namespace. if module not exist, print error message.
* @param {Object} store
* @param {String} helper
* @param {String} namespace
* @return {Object}
*/
function getModuleByNamespace (store, helper, namespace) {
var module = store._modulesNamespaceMap[namespace];
if (( true) && !module) {
console.error(("[vuex] module namespace not found in " + helper + "(): " + namespace));
}
return module
}
// Credits: borrowed code from fcomb/redux-logger
function createLogger (ref) {
if ( ref === void 0 ) ref = {};
var collapsed = ref.collapsed; if ( collapsed === void 0 ) collapsed = true;
var filter = ref.filter; if ( filter === void 0 ) filter = function (mutation, stateBefore, stateAfter) { return true; };
var transformer = ref.transformer; if ( transformer === void 0 ) transformer = function (state) { return state; };
var mutationTransformer = ref.mutationTransformer; if ( mutationTransformer === void 0 ) mutationTransformer = function (mut) { return mut; };
var actionFilter = ref.actionFilter; if ( actionFilter === void 0 ) actionFilter = function (action, state) { return true; };
var actionTransformer = ref.actionTransformer; if ( actionTransformer === void 0 ) actionTransformer = function (act) { return act; };
var logMutations = ref.logMutations; if ( logMutations === void 0 ) logMutations = true;
var logActions = ref.logActions; if ( logActions === void 0 ) logActions = true;
var logger = ref.logger; if ( logger === void 0 ) logger = console;
return function (store) {
var prevState = deepCopy(store.state);
if (typeof logger === 'undefined') {
return
}
if (logMutations) {
store.subscribe(function (mutation, state) {
var nextState = deepCopy(state);
if (filter(mutation, prevState, nextState)) {
var formattedTime = getFormattedTime();
var formattedMutation = mutationTransformer(mutation);
var message = "mutation " + (mutation.type) + formattedTime;
startMessage(logger, message, collapsed);
logger.log('%c prev state', 'color: #9E9E9E; font-weight: bold', transformer(prevState));
logger.log('%c mutation', 'color: #03A9F4; font-weight: bold', formattedMutation);
logger.log('%c next state', 'color: #4CAF50; font-weight: bold', transformer(nextState));
endMessage(logger);
}
prevState = nextState;
});
}
if (logActions) {
store.subscribeAction(function (action, state) {
if (actionFilter(action, state)) {
var formattedTime = getFormattedTime();
var formattedAction = actionTransformer(action);
var message = "action " + (action.type) + formattedTime;
startMessage(logger, message, collapsed);
logger.log('%c action', 'color: #03A9F4; font-weight: bold', formattedAction);
endMessage(logger);
}
});
}
}
}
function startMessage (logger, message, collapsed) {
var startMessage = collapsed
? logger.groupCollapsed
: logger.group;
// render
try {
startMessage.call(logger, message);
} catch (e) {
logger.log(message);
}
}
function endMessage (logger) {
try {
logger.groupEnd();
} catch (e) {
logger.log('—— log end ——');
}
}
function getFormattedTime () {
var time = new Date();
return (" @ " + (pad(time.getHours(), 2)) + ":" + (pad(time.getMinutes(), 2)) + ":" + (pad(time.getSeconds(), 2)) + "." + (pad(time.getMilliseconds(), 3)))
}
function repeat (str, times) {
return (new Array(times + 1)).join(str)
}
function pad (num, maxLength) {
return repeat('0', maxLength - num.toString().length) + num
}
var index_cjs = {
Store: Store,
install: install,
version: '3.6.2',
mapState: mapState,
mapMutations: mapMutations,
mapGetters: mapGetters,
mapActions: mapActions,
createNamespacedHelpers: createNamespacedHelpers,
createLogger: createLogger
};
module.exports = index_cjs;
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../../../../../webpack/buildin/global.js */ 3)))
/***/ }),
/***/ 39:
/*!*******************************************************************!*\
!*** E:/qiaocongli/小程序/智造团资源共享/intelligentGroup/store/actions.js ***!
\*******************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
/* WEBPACK VAR INJECTION */(function(uni) {
var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ 4);
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _model = _interopRequireDefault(__webpack_require__(/*! ../tools/model.js */ 40));
var _tools = _interopRequireDefault(__webpack_require__(/*! @/tools/tools.js */ 42));
// Action 包含异步操作请求API方法、回调函数提交mutaions更改state数据状态使之可以异步
var _default = {
//sessionId
getsessionId: function getsessionId(_ref) {
var commit = _ref.commit;
return uni.login({
success: function success(res) {
if (res.code) {
if (res.errMsg = "login:ok") {
_model.default.onlogin({
code: res.code
}).then(function (ress) {
uni.setStorageSync('sessionid', ress.data.sessionid);
return ress;
});
}
}
}
});
},
// 首页信息
getHomeContent: function getHomeContent(_ref2, account) {
var commit = _ref2.commit;
return _model.default.getHomeContent(account).then(function (res) {
if (res.code != 0) false;
commit('changeHomeContent', res.data);
}).catch(function (e) {});
},
// 导航栏列表
getNavbarlist: function getNavbarlist(_ref3) {
var commit = _ref3.commit;
return _model.default.getNavbarlist({}).then(function (res) {
if (res.code != 0) false;
commit('changeNavbarlist', res.data);
}).catch(function (e) {});
},
// 用户信息
getUserInfo: function getUserInfo(_ref4) {
var commit = _ref4.commit;
return _model.default.getuserinfo({}).then(function (res) {
if (res.code != 0) false;
commit('changeUserInfo', res.data);
uni.setStorageSync('UserInfo', res.data);
});
},
// 资讯列表
getInfoList: function getInfoList(_ref5, account) {
var commit = _ref5.commit;
return _model.default.getinfolist(account).then(function (res) {
if (res.code != 0) false;
commit('changeInfoList', res.data);
});
},
// 获取历史记录
gethistoryList: function gethistoryList(_ref6, account) {
var commit = _ref6.commit;
return _model.default.getList(account).then(function (res) {
if (res.data && res.data.items) {
commit('changehistoryList', res.data.items);
} else {
commit('changehistoryList', null);
}
return res;
});
},
// 宠物列表
getPetList: function getPetList(_ref7) {
var commit = _ref7.commit;
return _model.default.getPetList({
pagenum: 20,
pagesize: 1
}).then(function (res) {
if (res.data) {
commit("changePetList", res.data);
} else {
commit("changePetList", null);
}
return res;
});
},
//养护提醒
getAlertList: function getAlertList(_ref8, account) {
var commit = _ref8.commit;
return _model.default.getAlertList(account).then(function (res) {
if (res.data && res.data.rows) {
commit('changeAlertList', res.data.rows);
} else {
commit('changeAlertList', null);
}
return res;
});
},
//通知提醒
getNoticelist: function getNoticelist(_ref9) {
var commit = _ref9.commit;
return _model.default.getnoticelist({}).then(function (res) {
if (res.data) {
commit('changeNoticelist', res.data);
} else {
commit('changeNoticelist', null);
}
return res;
});
}
};
exports.default = _default;
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 2)["default"]))
/***/ }),
/***/ 4:
/*!**********************************************************************!*\
!*** ./node_modules/@babel/runtime/helpers/interopRequireDefault.js ***!
\**********************************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
function _interopRequireDefault(obj) {
return obj && obj.__esModule ? obj : {
"default": obj
};
}
module.exports = _interopRequireDefault, module.exports.__esModule = true, module.exports["default"] = module.exports;
/***/ }),
/***/ 40:
/*!*****************************************************************!*\
!*** E:/qiaocongli/小程序/智造团资源共享/intelligentGroup/tools/model.js ***!
\*****************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ 4);
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _https = _interopRequireDefault(__webpack_require__(/*! ./https.js */ 41));
var _tools = _interopRequireDefault(__webpack_require__(/*! ./tools.js */ 42));
var _store = _interopRequireDefault(__webpack_require__(/*! @/store */ 37));
var _default = {
// 小程序管理
onlogin: function onlogin(param) {
// 微信小程序登录
return _https.default.post("/api/app/wxopen/onlogin", param).then(function (res) {
return res;
});
},
getlogin: function getlogin(param) {
// 账号密码登录
return _https.default.post("/api/app/wxopen/login", param).then(function (res) {
return res;
});
},
getoutlogin: function getoutlogin(param) {
// 退出登录
return _https.default.post("/api/app/wxopen/logout", param).then(function (res) {
return res;
});
},
getuserinfo: function getuserinfo(param) {
// 获取用户信息资料
return _https.default.post("/api/app/wxopen/userinfo", param).then(function (res) {
return res;
});
},
getApplyfor: function getApplyfor(param) {
// 申请加入智照团
return _https.default.post("/api/app/wxopen/applyfor", param).then(function (res) {
return res;
});
},
getNavbarlist: function getNavbarlist(param) {
// 获取导航栏列表
return _https.default.post("/api/app/wxopen/navbarlist", param).then(function (res) {
return res;
});
},
// 内容管理
getHomeContent: function getHomeContent(param) {
// 获取首页内容
return _https.default.post("/api/app/home/content", param).then(function (res) {
return res;
});
},
getinfolist: function getinfolist(param) {
// 资讯列表
return _https.default.post("/api/app/info/list", param).then(function (res) {
return res;
});
},
getInfoDetail: function getInfoDetail(param) {
// 获取详情(资讯、轮播、公告、党建)
return _https.default.post("/api/app/info/detail", param).then(function (res) {
return res;
});
},
getCampaignList: function getCampaignList(param) {
// 活动列表
return _https.default.post("/api/app/campaign/list", param).then(function (res) {
return res;
});
},
getGongyiList: function getGongyiList(param) {
// 公益列表
return _https.default.post("/api/app/info/gongyilist", param).then(function (res) {
return res;
});
},
getCampaignDetail: function getCampaignDetail(param) {
// 活动详情
return _https.default.post("/api/app/campaign/detail", param).then(function (res) {
return res;
});
},
getPartyList: function getPartyList(param) {
// 建档列表
return _https.default.post("/api/app/party/list", param).then(function (res) {
return res;
});
},
// 会员管理
getUserConList: function getUserConList(param) {
// 会员企业列表
return _https.default.post("/api/app/user/com/list", param).then(function (res) {
return res;
});
},
getVipDetail: function getVipDetail(param) {
// 会员详情
return _https.default.post("/api/app/user/detail", param).then(function (res) {
return res;
});
},
getVipList: function getVipList(param) {
// 会员列表
return _https.default.post("/api/app/user/list", param).then(function (res) {
return res;
});
},
getLike: function getLike(param) {
// 用户点赞
return _https.default.post("/api/app/user/like", param).then(function (res) {
return res;
});
},
getUserSubmit: function getUserSubmit(param) {
// 用户资料修改
return _https.default.post("/api/app/user/submit", param).then(function (res) {
return res;
});
},
getSubmitCom: function getSubmitCom(param) {
// 企业信息修改
return _https.default.post("/api/app/user/submitcom", param).then(function (res) {
return res;
});
},
getChangePassword: function getChangePassword(param) {
// 密码修改
return _https.default.post("/api/app/user/changepassword", param).then(function (res) {
return res;
});
},
// 产品管理
getProductAdd: function getProductAdd(param) {
// 添加产品
return _https.default.post("/api/app/product/add", param).then(function (res) {
return res;
});
},
getProductEdit: function getProductEdit(param) {
// 编辑产品
return _https.default.post("/api/app/product/edit", param).then(function (res) {
return res;
});
},
getProductList: function getProductList(param) {
// 产品列表
return _https.default.post("/api/app/product/list", param).then(function (res) {
return res;
});
},
getProductDetail: function getProductDetail(param) {
// 产品详情
return _https.default.post("/api/app/product/detailaysnc", param).then(function (res) {
return res;
});
},
getProductListbyuser: function getProductListbyuser(param) {
// 账户下产品列表
return _https.default.post("/api/app/product/listbyuser", param).then(function (res) {
return res;
});
},
getProductDetailbyuser: function getProductDetailbyuser(param) {
// 自有产品详情
return _https.default.post("/api/app/product/detailbyuser", param).then(function (res) {
return res;
});
},
// 文件上传
getUpLoadimg: function getUpLoadimg(param) {
// 图片上传
return _https.default.upload("/api/common/uploadimg", param).then(function (res) {
return res;
});
},
// 全局搜索
getSearchList: function getSearchList(param) {
// 全局搜索
return _https.default.post("/api/app/search/list", param).then(function (res) {
return res;
});
}
};
exports.default = _default;
/***/ }),
/***/ 41:
/*!*****************************************************************!*\
!*** E:/qiaocongli/小程序/智造团资源共享/intelligentGroup/tools/https.js ***!
\*****************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
/* WEBPACK VAR INJECTION */(function(wx, uni) {
var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ 4);
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _store = _interopRequireDefault(__webpack_require__(/*! ../store */ 37));
var _tools = _interopRequireDefault(__webpack_require__(/*! @/tools/tools.js */ 42));
var accountInfo = wx.getAccountInfoSync();
var appid = accountInfo.miniProgram.appId;
uni.setStorageSync('appid', appid);
var baseUrl = "https://izzt.jt-sky.com";
var httpRequest = function httpRequest(url) {
var method = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : "get";
var data = arguments.length > 2 ? arguments[2] : undefined;
var httpDefaultOpts = {
url: baseUrl + url,
data: data,
method: method,
header: {
'Authorization': "Bearer " + uni.getStorageSync('token'),
'X-Authorization': "Bearer " + uni.getStorageSync('refreshtoken'),
'X-Requested-With': 'XMLHttpRequest',
'content-type': 'application/json;charset=UTF-8'
}
};
var promise = new Promise(function (resolve, reject) {
uni.request(httpDefaultOpts).then(function (res) {
// console.log("https", res)
// uni.hideLoading()
if (res.data.code == 401) {
uni.clearStorageSync();
_store.default.commit("changeLogout", false);
uni.setStorageSync('token', null);
uni.setStorageSync('sessionid', null);
uni.setStorageSync('refreshtoken', null);
uni.showToast({
icon: "none",
title: "登录后查看更多",
duration: 2000
});
setTimeout(function () {
uni.switchTab({
url: "/pages/index/index"
});
}, 2000);
return;
}
// if (res[1].statusCode != 200) {
// tools.msg(res[1].data.message)
// return
// }
resolve(res.data);
}).catch(function (response) {
uni.hideLoading();
reject(response);
});
});
return promise;
};
function uploadFile(url, filePath) {
var promise = new Promise(function (resolve, reject) {
uni.uploadFile({
url: baseUrl + url,
filePath: filePath.uploadpath,
name: 'file',
header: {
'Authorization': "Bearer " + uni.getStorageSync('token'),
'X-Authorization': "Bearer " + uni.getStorageSync('refreshtoken')
}
}).then(function (res) {
if (res.statusCode == 200) {
var json = JSON.parse(res.data);
if (json.code != 0) {
_tools.default.msg(json.message);
return;
}
resolve(json);
}
});
});
return promise;
}
;
var get = function get(url, data) {
data.appid = appid;
data.sessionid = uni.getStorageSync('sessionid');
return httpRequest(url, 'get', data);
};
var post = function post(url, data) {
data.appid = appid;
data.sessionid = uni.getStorageSync('sessionid');
return httpRequest(url, 'post', data);
};
var upload = function upload(url, filePath) {
return uploadFile(url, filePath);
};
var _default = {
baseUrl: baseUrl,
get: get,
post: post,
upload: upload
};
exports.default = _default;
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/wx.js */ 1)["default"], __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 2)["default"]))
/***/ }),
/***/ 42:
/*!*****************************************************************!*\
!*** E:/qiaocongli/小程序/智造团资源共享/intelligentGroup/tools/tools.js ***!
\*****************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
/* WEBPACK VAR INJECTION */(function(uni) {
var _interopRequireDefault = __webpack_require__(/*! @babel/runtime/helpers/interopRequireDefault */ 4);
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _store = _interopRequireDefault(__webpack_require__(/*! @/store */ 37));
var _default = {
msg: msg,
getCall: getCall,
getTime: getTime,
getDate: getDate,
NewsPtype: NewsPtype,
GetDateStr: GetDateStr
};
exports.default = _default;
function NewsPtype(con) {
//1小程序2H5,3内练4文本
if (con.ptype == 1) {
uni.navigateToMiniProgram({
appId: con.appid,
path: con.content,
extraData: {}
});
return;
}
if (con.ptype == 3) {
uni.navigateTo({
url: con.content
});
return;
}
if (con.ptype == 4 || con.ptype == 2) {
uni.navigateTo({
url: "/pageTwo/news/detail?id=" + con.id + "&type=" + con.type
});
return;
}
}
function getCall(authlist, num) {
console.log("authlist", authlist);
if (authlist.length) {
var arr = authlist.findIndex(function (v) {
return v.code == 'phone:show';
});
if (arr == -1) {
_store.default.commit("changeSecratary", true);
} else {
uni.makePhoneCall({
phoneNumber: num //仅为示例
}).catch(function (e) {
console.log(e); //用catch(e)来捕获错误{makePhoneCall:fail cancel}
});
}
} else {
_store.default.commit("changeSecratary", true);
}
}
function msg(str) {
uni.showToast({
title: str,
duration: 3000,
icon: 'none'
});
}
function getDate(type) {
var date = new Date();
var year = date.getFullYear();
var month = date.getMonth() + 1;
var day = date.getDate();
month = month > 9 ? month : '0' + month;
;
day = day > 9 ? day : '0' + day;
if (type === 'start') {
year = year;
return "".concat(year, "-").concat(month, "-").concat(day);
}
if (type === 'end') {
year = year + 7;
return "".concat(year, "-").concat(month, "-").concat(day);
}
if (type === 'month') {
return month + '月' + day + '日';
}
}
function GetDateStr(AddDayCount) {
var dd = new Date();
dd.setDate(dd.getDate() + AddDayCount); //获取AddDayCount天后的日期
var y = dd.getFullYear();
var m = dd.getMonth() + 1 < 10 ? "0" + (dd.getMonth() + 1) : dd.getMonth() + 1; //获取当前月份的日期不足10补0
var d = dd.getDate() < 10 ? "0" + dd.getDate() : dd.getDate(); //获取当前几号不足10补0
return y + "-" + m + "-" + d;
}
function getTime() {
var date = new Date();
var y = date.getFullYear();
var m = date.getMonth() + 1 < 10 ? "0" + (date.getMonth() + 1) : date.getMonth() + 1; //获取当前月份的日期不足10补0
var d = date.getDate() < 10 ? "0" + date.getDate() : date.getDate();
var H = date.getHours() > 9 ? date.getHours() : '0' + date.getHours();
var Min = date.getMinutes() > 9 ? date.getMinutes() : '0' + date.getMinutes();
return y + '/' + m + '/' + d + " " + H + ':' + Min;
}
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 2)["default"]))
/***/ }),
/***/ 43:
/*!************************************************************!*\
!*** E:/qiaocongli/小程序/智造团资源共享/intelligentGroup/data.json ***!
\************************************************************/
/*! exports provided: addNeeds, default */
/***/ (function(module) {
module.exports = JSON.parse("{\"addNeeds\":[\"找客户资源\",\"扩大人脉圈子\",\"能力提升\",\"为企业做品牌宣传\",\"直播\",\"个人IP打造\",\"拍摄剪辑\",\"学习新媒体运营\",\"老板思维\",\"团队打造\",\"销售话术\",\"外贸平台搭建\",\"其他\"]}");
/***/ }),
/***/ 44:
/*!***************************************************************************!*\
!*** E:/qiaocongli/小程序/智造团资源共享/intelligentGroup/uni.promisify.adaptor.js ***!
\***************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
/* WEBPACK VAR INJECTION */(function(uni) {var _typeof = __webpack_require__(/*! @babel/runtime/helpers/typeof */ 13);
uni.addInterceptor({
returnValue: function returnValue(res) {
if (!(!!res && (_typeof(res) === "object" || typeof res === "function") && typeof res.then === "function")) {
return res;
}
return new Promise(function (resolve, reject) {
res.then(function (res) {
return res[0] ? reject(res[0]) : resolve(res[1]);
});
});
}
});
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./node_modules/@dcloudio/uni-mp-weixin/dist/index.js */ 2)["default"]))
/***/ }),
/***/ 5:
/*!**************************************************************!*\
!*** ./node_modules/@babel/runtime/helpers/slicedToArray.js ***!
\**************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
var arrayWithHoles = __webpack_require__(/*! ./arrayWithHoles.js */ 6);
var iterableToArrayLimit = __webpack_require__(/*! ./iterableToArrayLimit.js */ 7);
var unsupportedIterableToArray = __webpack_require__(/*! ./unsupportedIterableToArray.js */ 8);
var nonIterableRest = __webpack_require__(/*! ./nonIterableRest.js */ 10);
function _slicedToArray(arr, i) {
return arrayWithHoles(arr) || iterableToArrayLimit(arr, i) || unsupportedIterableToArray(arr, i) || nonIterableRest();
}
module.exports = _slicedToArray, module.exports.__esModule = true, module.exports["default"] = module.exports;
/***/ }),
/***/ 51:
/*!************************************************************************************************!*\
!*** ./node_modules/@dcloudio/vue-cli-plugin-uni/packages/@babel/runtime/regenerator/index.js ***!
\************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
// TODO(Babel 8): Remove this file.
var runtime = __webpack_require__(/*! @babel/runtime/helpers/regeneratorRuntime */ 52)();
module.exports = runtime;
/***/ }),
/***/ 52:
/*!*******************************************************************!*\
!*** ./node_modules/@babel/runtime/helpers/regeneratorRuntime.js ***!
\*******************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
var _typeof = __webpack_require__(/*! ./typeof.js */ 13)["default"];
function _regeneratorRuntime() {
"use strict";
/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
module.exports = _regeneratorRuntime = function _regeneratorRuntime() {
return e;
}, module.exports.__esModule = true, module.exports["default"] = module.exports;
var t,
e = {},
r = Object.prototype,
n = r.hasOwnProperty,
o = Object.defineProperty || function (t, e, r) {
t[e] = r.value;
},
i = "function" == typeof Symbol ? Symbol : {},
a = i.iterator || "@@iterator",
c = i.asyncIterator || "@@asyncIterator",
u = i.toStringTag || "@@toStringTag";
function define(t, e, r) {
return Object.defineProperty(t, e, {
value: r,
enumerable: !0,
configurable: !0,
writable: !0
}), t[e];
}
try {
define({}, "");
} catch (t) {
define = function define(t, e, r) {
return t[e] = r;
};
}
function wrap(t, e, r, n) {
var i = e && e.prototype instanceof Generator ? e : Generator,
a = Object.create(i.prototype),
c = new Context(n || []);
return o(a, "_invoke", {
value: makeInvokeMethod(t, r, c)
}), a;
}
function tryCatch(t, e, r) {
try {
return {
type: "normal",
arg: t.call(e, r)
};
} catch (t) {
return {
type: "throw",
arg: t
};
}
}
e.wrap = wrap;
var h = "suspendedStart",
l = "suspendedYield",
f = "executing",
s = "completed",
y = {};
function Generator() {}
function GeneratorFunction() {}
function GeneratorFunctionPrototype() {}
var p = {};
define(p, a, function () {
return this;
});
var d = Object.getPrototypeOf,
v = d && d(d(values([])));
v && v !== r && n.call(v, a) && (p = v);
var g = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(p);
function defineIteratorMethods(t) {
["next", "throw", "return"].forEach(function (e) {
define(t, e, function (t) {
return this._invoke(e, t);
});
});
}
function AsyncIterator(t, e) {
function invoke(r, o, i, a) {
var c = tryCatch(t[r], t, o);
if ("throw" !== c.type) {
var u = c.arg,
h = u.value;
return h && "object" == _typeof(h) && n.call(h, "__await") ? e.resolve(h.__await).then(function (t) {
invoke("next", t, i, a);
}, function (t) {
invoke("throw", t, i, a);
}) : e.resolve(h).then(function (t) {
u.value = t, i(u);
}, function (t) {
return invoke("throw", t, i, a);
});
}
a(c.arg);
}
var r;
o(this, "_invoke", {
value: function value(t, n) {
function callInvokeWithMethodAndArg() {
return new e(function (e, r) {
invoke(t, n, e, r);
});
}
return r = r ? r.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg();
}
});
}
function makeInvokeMethod(e, r, n) {
var o = h;
return function (i, a) {
if (o === f) throw Error("Generator is already running");
if (o === s) {
if ("throw" === i) throw a;
return {
value: t,
done: !0
};
}
for (n.method = i, n.arg = a;;) {
var c = n.delegate;
if (c) {
var u = maybeInvokeDelegate(c, n);
if (u) {
if (u === y) continue;
return u;
}
}
if ("next" === n.method) n.sent = n._sent = n.arg;else if ("throw" === n.method) {
if (o === h) throw o = s, n.arg;
n.dispatchException(n.arg);
} else "return" === n.method && n.abrupt("return", n.arg);
o = f;
var p = tryCatch(e, r, n);
if ("normal" === p.type) {
if (o = n.done ? s : l, p.arg === y) continue;
return {
value: p.arg,
done: n.done
};
}
"throw" === p.type && (o = s, n.method = "throw", n.arg = p.arg);
}
};
}
function maybeInvokeDelegate(e, r) {
var n = r.method,
o = e.iterator[n];
if (o === t) return r.delegate = null, "throw" === n && e.iterator["return"] && (r.method = "return", r.arg = t, maybeInvokeDelegate(e, r), "throw" === r.method) || "return" !== n && (r.method = "throw", r.arg = new TypeError("The iterator does not provide a '" + n + "' method")), y;
var i = tryCatch(o, e.iterator, r.arg);
if ("throw" === i.type) return r.method = "throw", r.arg = i.arg, r.delegate = null, y;
var a = i.arg;
return a ? a.done ? (r[e.resultName] = a.value, r.next = e.nextLoc, "return" !== r.method && (r.method = "next", r.arg = t), r.delegate = null, y) : a : (r.method = "throw", r.arg = new TypeError("iterator result is not an object"), r.delegate = null, y);
}
function pushTryEntry(t) {
var e = {
tryLoc: t[0]
};
1 in t && (e.catchLoc = t[1]), 2 in t && (e.finallyLoc = t[2], e.afterLoc = t[3]), this.tryEntries.push(e);
}
function resetTryEntry(t) {
var e = t.completion || {};
e.type = "normal", delete e.arg, t.completion = e;
}
function Context(t) {
this.tryEntries = [{
tryLoc: "root"
}], t.forEach(pushTryEntry, this), this.reset(!0);
}
function values(e) {
if (e || "" === e) {
var r = e[a];
if (r) return r.call(e);
if ("function" == typeof e.next) return e;
if (!isNaN(e.length)) {
var o = -1,
i = function next() {
for (; ++o < e.length;) {
if (n.call(e, o)) return next.value = e[o], next.done = !1, next;
}
return next.value = t, next.done = !0, next;
};
return i.next = i;
}
}
throw new TypeError(_typeof(e) + " is not iterable");
}
return GeneratorFunction.prototype = GeneratorFunctionPrototype, o(g, "constructor", {
value: GeneratorFunctionPrototype,
configurable: !0
}), o(GeneratorFunctionPrototype, "constructor", {
value: GeneratorFunction,
configurable: !0
}), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, u, "GeneratorFunction"), e.isGeneratorFunction = function (t) {
var e = "function" == typeof t && t.constructor;
return !!e && (e === GeneratorFunction || "GeneratorFunction" === (e.displayName || e.name));
}, e.mark = function (t) {
return Object.setPrototypeOf ? Object.setPrototypeOf(t, GeneratorFunctionPrototype) : (t.__proto__ = GeneratorFunctionPrototype, define(t, u, "GeneratorFunction")), t.prototype = Object.create(g), t;
}, e.awrap = function (t) {
return {
__await: t
};
}, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype, c, function () {
return this;
}), e.AsyncIterator = AsyncIterator, e.async = function (t, r, n, o, i) {
void 0 === i && (i = Promise);
var a = new AsyncIterator(wrap(t, r, n, o), i);
return e.isGeneratorFunction(r) ? a : a.next().then(function (t) {
return t.done ? t.value : a.next();
});
}, defineIteratorMethods(g), define(g, u, "Generator"), define(g, a, function () {
return this;
}), define(g, "toString", function () {
return "[object Generator]";
}), e.keys = function (t) {
var e = Object(t),
r = [];
for (var n in e) {
r.push(n);
}
return r.reverse(), function next() {
for (; r.length;) {
var t = r.pop();
if (t in e) return next.value = t, next.done = !1, next;
}
return next.done = !0, next;
};
}, e.values = values, Context.prototype = {
constructor: Context,
reset: function reset(e) {
if (this.prev = 0, this.next = 0, this.sent = this._sent = t, this.done = !1, this.delegate = null, this.method = "next", this.arg = t, this.tryEntries.forEach(resetTryEntry), !e) for (var r in this) {
"t" === r.charAt(0) && n.call(this, r) && !isNaN(+r.slice(1)) && (this[r] = t);
}
},
stop: function stop() {
this.done = !0;
var t = this.tryEntries[0].completion;
if ("throw" === t.type) throw t.arg;
return this.rval;
},
dispatchException: function dispatchException(e) {
if (this.done) throw e;
var r = this;
function handle(n, o) {
return a.type = "throw", a.arg = e, r.next = n, o && (r.method = "next", r.arg = t), !!o;
}
for (var o = this.tryEntries.length - 1; o >= 0; --o) {
var i = this.tryEntries[o],
a = i.completion;
if ("root" === i.tryLoc) return handle("end");
if (i.tryLoc <= this.prev) {
var c = n.call(i, "catchLoc"),
u = n.call(i, "finallyLoc");
if (c && u) {
if (this.prev < i.catchLoc) return handle(i.catchLoc, !0);
if (this.prev < i.finallyLoc) return handle(i.finallyLoc);
} else if (c) {
if (this.prev < i.catchLoc) return handle(i.catchLoc, !0);
} else {
if (!u) throw Error("try statement without catch or finally");
if (this.prev < i.finallyLoc) return handle(i.finallyLoc);
}
}
}
},
abrupt: function abrupt(t, e) {
for (var r = this.tryEntries.length - 1; r >= 0; --r) {
var o = this.tryEntries[r];
if (o.tryLoc <= this.prev && n.call(o, "finallyLoc") && this.prev < o.finallyLoc) {
var i = o;
break;
}
}
i && ("break" === t || "continue" === t) && i.tryLoc <= e && e <= i.finallyLoc && (i = null);
var a = i ? i.completion : {};
return a.type = t, a.arg = e, i ? (this.method = "next", this.next = i.finallyLoc, y) : this.complete(a);
},
complete: function complete(t, e) {
if ("throw" === t.type) throw t.arg;
return "break" === t.type || "continue" === t.type ? this.next = t.arg : "return" === t.type ? (this.rval = this.arg = t.arg, this.method = "return", this.next = "end") : "normal" === t.type && e && (this.next = e), y;
},
finish: function finish(t) {
for (var e = this.tryEntries.length - 1; e >= 0; --e) {
var r = this.tryEntries[e];
if (r.finallyLoc === t) return this.complete(r.completion, r.afterLoc), resetTryEntry(r), y;
}
},
"catch": function _catch(t) {
for (var e = this.tryEntries.length - 1; e >= 0; --e) {
var r = this.tryEntries[e];
if (r.tryLoc === t) {
var n = r.completion;
if ("throw" === n.type) {
var o = n.arg;
resetTryEntry(r);
}
return o;
}
}
throw Error("illegal catch attempt");
},
delegateYield: function delegateYield(e, r, n) {
return this.delegate = {
iterator: values(e),
resultName: r,
nextLoc: n
}, "next" === this.method && (this.arg = t), y;
}
}, e;
}
module.exports = _regeneratorRuntime, module.exports.__esModule = true, module.exports["default"] = module.exports;
/***/ }),
/***/ 53:
/*!*****************************************************************!*\
!*** ./node_modules/@babel/runtime/helpers/asyncToGenerator.js ***!
\*****************************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) {
try {
var info = gen[key](arg);
var value = info.value;
} catch (error) {
reject(error);
return;
}
if (info.done) {
resolve(value);
} else {
Promise.resolve(value).then(_next, _throw);
}
}
function _asyncToGenerator(fn) {
return function () {
var self = this,
args = arguments;
return new Promise(function (resolve, reject) {
var gen = fn.apply(self, args);
function _next(value) {
asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value);
}
function _throw(err) {
asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err);
}
_next(undefined);
});
};
}
module.exports = _asyncToGenerator, module.exports.__esModule = true, module.exports["default"] = module.exports;
/***/ }),
/***/ 6:
/*!***************************************************************!*\
!*** ./node_modules/@babel/runtime/helpers/arrayWithHoles.js ***!
\***************************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
function _arrayWithHoles(arr) {
if (Array.isArray(arr)) return arr;
}
module.exports = _arrayWithHoles, module.exports.__esModule = true, module.exports["default"] = module.exports;
/***/ }),
/***/ 7:
/*!*********************************************************************!*\
!*** ./node_modules/@babel/runtime/helpers/iterableToArrayLimit.js ***!
\*********************************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
function _iterableToArrayLimit(r, l) {
var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"];
if (null != t) {
var e,
n,
i,
u,
a = [],
f = !0,
o = !1;
try {
if (i = (t = t.call(r)).next, 0 === l) {
if (Object(t) !== t) return;
f = !1;
} else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0) {
;
}
} catch (r) {
o = !0, n = r;
} finally {
try {
if (!f && null != t["return"] && (u = t["return"](), Object(u) !== u)) return;
} finally {
if (o) throw n;
}
}
return a;
}
}
module.exports = _iterableToArrayLimit, module.exports.__esModule = true, module.exports["default"] = module.exports;
/***/ }),
/***/ 8:
/*!***************************************************************************!*\
!*** ./node_modules/@babel/runtime/helpers/unsupportedIterableToArray.js ***!
\***************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
var arrayLikeToArray = __webpack_require__(/*! ./arrayLikeToArray.js */ 9);
function _unsupportedIterableToArray(o, minLen) {
if (!o) return;
if (typeof o === "string") return arrayLikeToArray(o, minLen);
var n = Object.prototype.toString.call(o).slice(8, -1);
if (n === "Object" && o.constructor) n = o.constructor.name;
if (n === "Map" || n === "Set") return Array.from(o);
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return arrayLikeToArray(o, minLen);
}
module.exports = _unsupportedIterableToArray, module.exports.__esModule = true, module.exports["default"] = module.exports;
/***/ }),
/***/ 9:
/*!*****************************************************************!*\
!*** ./node_modules/@babel/runtime/helpers/arrayLikeToArray.js ***!
\*****************************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
function _arrayLikeToArray(arr, len) {
if (len == null || len > arr.length) len = arr.length;
for (var i = 0, arr2 = new Array(len); i < len; i++) {
arr2[i] = arr[i];
}
return arr2;
}
module.exports = _arrayLikeToArray, module.exports.__esModule = true, module.exports["default"] = module.exports;
/***/ })
}]);
//# sourceMappingURL=../../.sourcemap/mp-weixin/common/vendor.js.map