diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/app.js" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/app.js" new file mode 100644 index 0000000000000000000000000000000000000000..93769420ff7d144e1e0505f627787ca89afebef0 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/app.js" @@ -0,0 +1,52 @@ +//app.js +App({ + onLaunch: function () { + // 展示本地存储能力 + var logs = wx.getStorageSync('logs') || [] + logs.unshift(Date.now()) + wx.setStorageSync('logs', logs) + + // 登录 + wx.login({ + success: res => { + // 发送 res.code 到后台换取 openId, sessionKey, unionId + } + }) + // 获取用户信息 + wx.getSetting({ + success: res => { + if (res.authSetting['scope.userInfo']) { + // 已经授权,可以直接调用 getUserInfo 获取头像昵称,不会弹框 + wx.getUserInfo({ + success: res => { + // 可以将 res 发送给后台解码出 unionId + this.globalData.userInfo = res.userInfo + + // 由于 getUserInfo 是网络请求,可能会在 Page.onLoad 之后才返回 + // 所以此处加入 callback 以防止这种情况 + if (this.userInfoReadyCallback) { + this.userInfoReadyCallback(res) + } + } + }) + } + } + }) + }, + getLocal() { + return wx.getStorageSync('history') ? wx.getStorageSync('history') : [] + }, + setLocal(val) { + console.log('历史记录',val) + const arr = this.getLocal() + if (!arr.includes(val)) { + console.log(arr) + arr.push(val) + wx.setStorageSync('history', arr) + } + }, + globalData: { + userInfo: null, + hotCity: ['北京市', '深圳市', '广州市', '上海市', '哈尔滨市'] + } +}) \ No newline at end of file diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/app.json" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/app.json" new file mode 100644 index 0000000000000000000000000000000000000000..46287a66fc25b5904750d201f4220f925e4b42c1 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/app.json" @@ -0,0 +1,18 @@ +{ + "pages": [ + "pages/index/index", + "pages/logs/logs" + ], + "window": { + "backgroundTextStyle": "light", + "navigationBarBackgroundColor": "#fff", + "navigationBarTitleText": "芹菜天气", + "navigationBarTextStyle": "black" + }, + "sitemapLocation": "sitemap.json", + "permission": { + "scope.userLocation": { + "desc": "你的位置信息将用于小程序获取当前位置天气" + } + } +} \ No newline at end of file diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/app.wxss" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/app.wxss" new file mode 100644 index 0000000000000000000000000000000000000000..9c780fd495c300c3af75a2cc381b07c0d4b01829 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/app.wxss" @@ -0,0 +1,35 @@ +@import '/weui/weui.wxss'; +@import './iconfont/iconfont.wxss'; + +.container { + height: 100%; + display: flex; + flex-direction: column; + box-sizing: border-box; +} + +.clear { + zoom:1; +} + +.clear:after { + clear:both; + content:''; + display:block; + width:0; + height:0; + visibility:hidden; +} +.weui-grids{ + border-top: 1rpx solid #f1f1f1; + border-left: 1rpx solid #f1f1f1; +} +.weui-grid{ + border-right: 1rpx solid #f1f1f1; + border-bottom: 1rpx solid #f1f1f1; +} +page { + font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, + Segoe UI, Arial, Roboto, 'PingFang SC', 'miui', 'Hiragino Sans GB', 'Microsoft Yahei', + sans-serif; +} \ No newline at end of file diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/ec-canvas/ec-canvas.js" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/ec-canvas/ec-canvas.js" new file mode 100644 index 0000000000000000000000000000000000000000..aef342a692045bffb4be7566f0e2523bbe025258 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/ec-canvas/ec-canvas.js" @@ -0,0 +1,120 @@ +import WxCanvas from './wx-canvas'; +import * as echarts from './echarts'; + +let ctx; + +Component({ + properties: { + canvasId: { + type: String, + value: 'ec-canvas' + }, + + ec: { + type: Object + } + }, + + data: { + + }, + + ready: function () { + if (!this.data.ec) { + console.warn('组件需绑定 ec 变量,例:'); + return; + } + + if (!this.data.ec.lazyLoad) { + this.init(); + } + }, + + methods: { + init: function (callback) { + const version = wx.version.version.split('.').map(n => parseInt(n, 10)); + const isValid = version[0] > 1 || (version[0] === 1 && version[1] > 9) + || (version[0] === 1 && version[1] === 9 && version[2] >= 91); + if (!isValid) { + console.error('微信基础库版本过低,需大于等于 1.9.91。' + + '参见:https://github.com/ecomfe/echarts-for-weixin' + + '#%E5%BE%AE%E4%BF%A1%E7%89%88%E6%9C%AC%E8%A6%81%E6%B1%82'); + return; + } + + ctx = wx.createCanvasContext(this.data.canvasId, this); + + const canvas = new WxCanvas(ctx, this.data.canvasId); + + echarts.setCanvasCreator(() => { + return canvas; + }); + + var query = wx.createSelectorQuery().in(this); + query.select('.ec-canvas').boundingClientRect(res => { + if (typeof callback === 'function') { + this.chart = callback(canvas, res.width, res.height); + } + else if (this.data.ec && typeof this.data.ec.onInit === 'function') { + this.chart = this.data.ec.onInit(canvas, res.width, res.height); + } + else { + this.triggerEvent('init', { + canvas: canvas, + width: res.width, + height: res.height + }); + } + }).exec(); + }, + + canvasToTempFilePath(opt) { + if (!opt.canvasId) { + opt.canvasId = this.data.canvasId; + } + + ctx.draw(true, () => { + wx.canvasToTempFilePath(opt, this); + }); + }, + + touchStart(e) { + if (this.chart && e.touches.length > 0) { + var touch = e.touches[0]; + this.chart._zr.handler.dispatch('mousedown', { + zrX: touch.x, + zrY: touch.y + }); + this.chart._zr.handler.dispatch('mousemove', { + zrX: touch.x, + zrY: touch.y + }); + } + }, + + touchMove(e) { + if (this.chart && e.touches.length > 0) { + var touch = e.touches[0]; + this.chart._zr.handler.dispatch('mousemove', { + zrX: touch.x, + zrY: touch.y + }); + } + }, + + touchEnd(e) { + if (this.chart) { + const touch = e.changedTouches ? e.changedTouches[0] : {}; + this.chart._zr.handler.dispatch('mouseup', { + zrX: touch.x, + zrY: touch.y + }); + this.chart._zr.handler.dispatch('click', { + zrX: touch.x, + zrY: touch.y + }); + } + } + } +}); diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/ec-canvas/ec-canvas.json" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/ec-canvas/ec-canvas.json" new file mode 100644 index 0000000000000000000000000000000000000000..e8cfaaf80c404eb97d3cf8b6277ec15f37e6905e --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/ec-canvas/ec-canvas.json" @@ -0,0 +1,4 @@ +{ + "component": true, + "usingComponents": {} +} \ No newline at end of file diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/ec-canvas/ec-canvas.wxml" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/ec-canvas/ec-canvas.wxml" new file mode 100644 index 0000000000000000000000000000000000000000..33cfaf76a41fbd9a29104ac8134693013341da64 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/ec-canvas/ec-canvas.wxml" @@ -0,0 +1,4 @@ + + diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/ec-canvas/ec-canvas.wxss" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/ec-canvas/ec-canvas.wxss" new file mode 100644 index 0000000000000000000000000000000000000000..0d64b10c676692e56e164cedc8437ea5d11d2717 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/ec-canvas/ec-canvas.wxss" @@ -0,0 +1,4 @@ +.ec-canvas { + width: 100%; + height: 100%; +} diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/ec-canvas/echarts.js" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/ec-canvas/echarts.js" new file mode 100644 index 0000000000000000000000000000000000000000..07f3bbc7b7a32974abe82c254f484504f26f8a52 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/ec-canvas/echarts.js" @@ -0,0 +1,10 @@ +!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports):"function"==typeof define&&define.amd?define(["exports"],e):e(t.echarts={})}(this,function(t){"use strict";function e(t){var e={},n={},i=t.match(/Firefox\/([\d.]+)/),r=t.match(/MSIE\s([\d.]+)/)||t.match(/Trident\/.+?rv:(([\d.]+))/),a=t.match(/Edge\/([\d.]+)/),o=/micromessenger/i.test(t);return i&&(n.firefox=!0,n.version=i[1]),r&&(n.ie=!0,n.version=r[1]),a&&(n.edge=!0,n.version=a[1]),o&&(n.weChat=!0),{browser:n,os:e,node:!1,canvasSupported:!!document.createElement("canvas").getContext,svgSupported:"undefined"!=typeof SVGRect,touchEventsSupported:"ontouchstart"in window&&!n.ie&&!n.edge,pointerEventsSupported:"onpointerdown"in window&&(n.edge||n.ie&&n.version>=11),domSupported:"undefined"!=typeof document}}function n(t,e){"createCanvas"===t&&(Kc=null),$c[t]=e}function i(t){if(null==t||"object"!=typeof t)return t;var e=t,n=Gc.call(t);if("[object Array]"===n){if(!B(t)){e=[];for(var r=0,a=t.length;a>r;r++)e[r]=i(t[r])}}else if(Hc[n]){if(!B(t)){var o=t.constructor;if(t.constructor.from)e=o.from(t);else{e=new o(t.length);for(var r=0,a=t.length;a>r;r++)e[r]=i(t[r])}}}else if(!Wc[n]&&!B(t)&&!C(t)){e={};for(var s in t)t.hasOwnProperty(s)&&(e[s]=i(t[s]))}return e}function r(t,e,n){if(!S(e)||!S(t))return n?i(e):t;for(var a in e)if(e.hasOwnProperty(a)){var o=t[a],s=e[a];!S(s)||!S(o)||x(s)||x(o)||C(s)||C(o)||M(s)||M(o)||B(s)||B(o)?!n&&a in t||(t[a]=i(e[a],!0)):r(o,s,n)}return t}function a(t,e){for(var n=t[0],i=1,a=t.length;a>i;i++)n=r(n,t[i],e);return n}function o(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n]);return t}function s(t,e,n){for(var i in e)e.hasOwnProperty(i)&&(n?null!=e[i]:null==t[i])&&(t[i]=e[i]);return t}function l(){return Kc||(Kc=Qc().getContext("2d")),Kc}function u(t,e){if(t){if(t.indexOf)return t.indexOf(e);for(var n=0,i=t.length;i>n;n++)if(t[n]===e)return n}return-1}function h(t,e){function n(){}var i=t.prototype;n.prototype=e.prototype,t.prototype=new n;for(var r in i)t.prototype[r]=i[r];t.prototype.constructor=t,t.superClass=e}function c(t,e,n){t="prototype"in t?t.prototype:t,e="prototype"in e?e.prototype:e,s(t,e,n)}function f(t){return t?"string"==typeof t?!1:"number"==typeof t.length:void 0}function d(t,e,n){if(t&&e)if(t.forEach&&t.forEach===Xc)t.forEach(e,n);else if(t.length===+t.length)for(var i=0,r=t.length;r>i;i++)e.call(n,t[i],i,t);else for(var a in t)t.hasOwnProperty(a)&&e.call(n,t[a],a,t)}function p(t,e,n){if(t&&e){if(t.map&&t.map===Yc)return t.map(e,n);for(var i=[],r=0,a=t.length;a>r;r++)i.push(e.call(n,t[r],r,t));return i}}function g(t,e,n,i){if(t&&e){if(t.reduce&&t.reduce===Zc)return t.reduce(e,n,i);for(var r=0,a=t.length;a>r;r++)n=e.call(i,n,t[r],r,t);return n}}function v(t,e,n){if(t&&e){if(t.filter&&t.filter===jc)return t.filter(e,n);for(var i=[],r=0,a=t.length;a>r;r++)e.call(n,t[r],r,t)&&i.push(t[r]);return i}}function m(t,e,n){if(t&&e)for(var i=0,r=t.length;r>i;i++)if(e.call(n,t[i],i,t))return t[i]}function y(t,e){var n=Uc.call(arguments,2);return function(){return t.apply(e,n.concat(Uc.call(arguments)))}}function _(t){var e=Uc.call(arguments,1);return function(){return t.apply(this,e.concat(Uc.call(arguments)))}}function x(t){return"[object Array]"===Gc.call(t)}function w(t){return"function"==typeof t}function b(t){return"[object String]"===Gc.call(t)}function S(t){var e=typeof t;return"function"===e||!!t&&"object"==e}function M(t){return!!Wc[Gc.call(t)]}function T(t){return!!Hc[Gc.call(t)]}function C(t){return"object"==typeof t&&"number"==typeof t.nodeType&&"object"==typeof t.ownerDocument}function k(t){return t!==t}function I(){for(var t=0,e=arguments.length;e>t;t++)if(null!=arguments[t])return arguments[t]}function D(t,e){return null!=t?t:e}function A(t,e,n){return null!=t?t:null!=e?e:n}function P(){return Function.call.apply(Uc,arguments)}function O(t){if("number"==typeof t)return[t,t,t,t];var e=t.length;return 2===e?[t[0],t[1],t[0],t[1]]:3===e?[t[0],t[1],t[2],t[1]]:t}function L(t,e){if(!t)throw new Error(e)}function E(t){return null==t?null:"function"==typeof t.trim?t.trim():t.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,"")}function R(t){t[Jc]=!0}function B(t){return t[Jc]}function z(t){function e(t,e){n?i.set(t,e):i.set(e,t)}var n=x(t);this.data={};var i=this;t instanceof z?t.each(e):t&&d(t,e)}function F(t){return new z(t)}function N(t,e){for(var n=new t.constructor(t.length+e.length),i=0;i=0;if(r){var a="touchend"!=i?e.targetTouches[0]:e.changedTouches[0];a&&fe(t,a,e,n)}else fe(t,e,e,n),e.zrDelta=e.wheelDelta?e.wheelDelta/120:-(e.detail||0)/3;var o=e.button;return null==e.which&&void 0!==o&&cf.test(e.type)&&(e.which=1&o?1:2&o?3:4&o?2:0),e}function ge(t,e,n){hf?t.addEventListener(e,n):t.attachEvent("on"+e,n)}function ve(t,e,n){hf?t.removeEventListener(e,n):t.detachEvent("on"+e,n)}function me(t,e,n){return{type:t,event:n,target:e.target,topTarget:e.topTarget,cancelBubble:!1,offsetX:n.zrX,offsetY:n.zrY,gestureEvent:n.gestureEvent,pinchX:n.pinchX,pinchY:n.pinchY,pinchScale:n.pinchScale,wheelDelta:n.zrDelta,zrByTouch:n.zrByTouch,which:n.which,stop:ye}}function ye(){ff(this.event)}function _e(){}function xe(t,e,n){if(t[t.rectHover?"rectContain":"contain"](e,n)){for(var i,r=t;r;){if(r.clipPath&&!r.clipPath.contain(e,n))return!1;r.silent&&(i=!0),r=r.parent}return i?df:!0}return!1}function we(){var t=new vf(6);return be(t),t}function be(t){return t[0]=1,t[1]=0,t[2]=0,t[3]=1,t[4]=0,t[5]=0,t}function Se(t,e){return t[0]=e[0],t[1]=e[1],t[2]=e[2],t[3]=e[3],t[4]=e[4],t[5]=e[5],t}function Me(t,e,n){var i=e[0]*n[0]+e[2]*n[1],r=e[1]*n[0]+e[3]*n[1],a=e[0]*n[2]+e[2]*n[3],o=e[1]*n[2]+e[3]*n[3],s=e[0]*n[4]+e[2]*n[5]+e[4],l=e[1]*n[4]+e[3]*n[5]+e[5];return t[0]=i,t[1]=r,t[2]=a,t[3]=o,t[4]=s,t[5]=l,t}function Te(t,e,n){return t[0]=e[0],t[1]=e[1],t[2]=e[2],t[3]=e[3],t[4]=e[4]+n[0],t[5]=e[5]+n[1],t}function Ce(t,e,n){var i=e[0],r=e[2],a=e[4],o=e[1],s=e[3],l=e[5],u=Math.sin(n),h=Math.cos(n);return t[0]=i*h+o*u,t[1]=-i*u+o*h,t[2]=r*h+s*u,t[3]=-r*u+h*s,t[4]=h*a+u*l,t[5]=h*l-u*a,t}function ke(t,e,n){var i=n[0],r=n[1];return t[0]=e[0]*i,t[1]=e[1]*r,t[2]=e[2]*i,t[3]=e[3]*r,t[4]=e[4]*i,t[5]=e[5]*r,t}function Ie(t,e){var n=e[0],i=e[2],r=e[4],a=e[1],o=e[3],s=e[5],l=n*o-a*i;return l?(l=1/l,t[0]=o*l,t[1]=-a*l,t[2]=-i*l,t[3]=n*l,t[4]=(i*s-o*r)*l,t[5]=(a*r-n*s)*l,t):null}function De(t){var e=we();return Se(e,t),e}function Ae(t){return t>_f||-_f>t}function Pe(t){this._target=t.target,this._life=t.life||1e3,this._delay=t.delay||0,this._initialized=!1,this.loop=null==t.loop?!1:t.loop,this.gap=t.gap||0,this.easing=t.easing||"Linear",this.onframe=t.onframe,this.ondestroy=t.ondestroy,this.onrestart=t.onrestart,this._pausedTime=0,this._paused=!1}function Oe(t){return t=Math.round(t),0>t?0:t>255?255:t}function Le(t){return t=Math.round(t),0>t?0:t>360?360:t}function Ee(t){return 0>t?0:t>1?1:t}function Re(t){return Oe(t.length&&"%"===t.charAt(t.length-1)?parseFloat(t)/100*255:parseInt(t,10))}function Be(t){return Ee(t.length&&"%"===t.charAt(t.length-1)?parseFloat(t)/100:parseFloat(t))}function ze(t,e,n){return 0>n?n+=1:n>1&&(n-=1),1>6*n?t+(e-t)*n*6:1>2*n?e:2>3*n?t+(e-t)*(2/3-n)*6:t}function Fe(t,e,n){return t+(e-t)*n}function Ne(t,e,n,i,r){return t[0]=e,t[1]=n,t[2]=i,t[3]=r,t}function Ve(t,e){return t[0]=e[0],t[1]=e[1],t[2]=e[2],t[3]=e[3],t}function We(t,e){Lf&&Ve(Lf,e),Lf=Of.put(t,Lf||e.slice())}function He(t,e){if(t){e=e||[];var n=Of.get(t);if(n)return Ve(e,n);t+="";var i=t.replace(/ /g,"").toLowerCase();if(i in Pf)return Ve(e,Pf[i]),We(t,e),e;if("#"!==i.charAt(0)){var r=i.indexOf("("),a=i.indexOf(")");if(-1!==r&&a+1===i.length){var o=i.substr(0,r),s=i.substr(r+1,a-(r+1)).split(","),l=1;switch(o){case"rgba":if(4!==s.length)return void Ne(e,0,0,0,1);l=Be(s.pop());case"rgb":return 3!==s.length?void Ne(e,0,0,0,1):(Ne(e,Re(s[0]),Re(s[1]),Re(s[2]),l),We(t,e),e);case"hsla":return 4!==s.length?void Ne(e,0,0,0,1):(s[3]=Be(s[3]),Ge(s,e),We(t,e),e);case"hsl":return 3!==s.length?void Ne(e,0,0,0,1):(Ge(s,e),We(t,e),e);default:return}}Ne(e,0,0,0,1)}else{if(4===i.length){var u=parseInt(i.substr(1),16);return u>=0&&4095>=u?(Ne(e,(3840&u)>>4|(3840&u)>>8,240&u|(240&u)>>4,15&u|(15&u)<<4,1),We(t,e),e):void Ne(e,0,0,0,1)}if(7===i.length){var u=parseInt(i.substr(1),16);return u>=0&&16777215>=u?(Ne(e,(16711680&u)>>16,(65280&u)>>8,255&u,1),We(t,e),e):void Ne(e,0,0,0,1)}}}}function Ge(t,e){var n=(parseFloat(t[0])%360+360)%360/360,i=Be(t[1]),r=Be(t[2]),a=.5>=r?r*(i+1):r+i-r*i,o=2*r-a;return e=e||[],Ne(e,Oe(255*ze(o,a,n+1/3)),Oe(255*ze(o,a,n)),Oe(255*ze(o,a,n-1/3)),1),4===t.length&&(e[3]=t[3]),e}function qe(t){if(t){var e,n,i=t[0]/255,r=t[1]/255,a=t[2]/255,o=Math.min(i,r,a),s=Math.max(i,r,a),l=s-o,u=(s+o)/2;if(0===l)e=0,n=0;else{n=.5>u?l/(s+o):l/(2-s-o);var h=((s-i)/6+l/2)/l,c=((s-r)/6+l/2)/l,f=((s-a)/6+l/2)/l;i===s?e=f-c:r===s?e=1/3+h-f:a===s&&(e=2/3+c-h),0>e&&(e+=1),e>1&&(e-=1)}var d=[360*e,n,u];return null!=t[3]&&d.push(t[3]),d}}function Xe(t,e){var n=He(t);if(n){for(var i=0;3>i;i++)n[i]=0>e?n[i]*(1-e)|0:(255-n[i])*e+n[i]|0,n[i]>255?n[i]=255:t[i]<0&&(n[i]=0);return Qe(n,4===n.length?"rgba":"rgb")}}function je(t){var e=He(t);return e?((1<<24)+(e[0]<<16)+(e[1]<<8)+ +e[2]).toString(16).slice(1):void 0}function Ue(t,e,n){if(e&&e.length&&t>=0&&1>=t){n=n||[];var i=t*(e.length-1),r=Math.floor(i),a=Math.ceil(i),o=e[r],s=e[a],l=i-r;return n[0]=Oe(Fe(o[0],s[0],l)),n[1]=Oe(Fe(o[1],s[1],l)),n[2]=Oe(Fe(o[2],s[2],l)),n[3]=Ee(Fe(o[3],s[3],l)),n}}function Ye(t,e,n){if(e&&e.length&&t>=0&&1>=t){var i=t*(e.length-1),r=Math.floor(i),a=Math.ceil(i),o=He(e[r]),s=He(e[a]),l=i-r,u=Qe([Oe(Fe(o[0],s[0],l)),Oe(Fe(o[1],s[1],l)),Oe(Fe(o[2],s[2],l)),Ee(Fe(o[3],s[3],l))],"rgba");return n?{color:u,leftIndex:r,rightIndex:a,value:i}:u}}function Ze(t,e,n,i){return t=He(t),t?(t=qe(t),null!=e&&(t[0]=Le(e)),null!=n&&(t[1]=Be(n)),null!=i&&(t[2]=Be(i)),Qe(Ge(t),"rgba")):void 0}function $e(t,e){return t=He(t),t&&null!=e?(t[3]=Ee(e),Qe(t,"rgba")):void 0}function Qe(t,e){if(t&&t.length){var n=t[0]+","+t[1]+","+t[2];return("rgba"===e||"hsva"===e||"hsla"===e)&&(n+=","+t[3]),e+"("+n+")"}}function Ke(t,e){return t[e]}function Je(t,e,n){t[e]=n}function tn(t,e,n){return(e-t)*n+t}function en(t,e,n){return n>.5?e:t}function nn(t,e,n,i,r){var a=t.length;if(1==r)for(var o=0;a>o;o++)i[o]=tn(t[o],e[o],n);else for(var s=a&&t[0].length,o=0;a>o;o++)for(var l=0;s>l;l++)i[o][l]=tn(t[o][l],e[o][l],n)}function rn(t,e,n){var i=t.length,r=e.length;if(i!==r){var a=i>r;if(a)t.length=r;else for(var o=i;r>o;o++)t.push(1===n?e[o]:zf.call(e[o]))}for(var s=t[0]&&t[0].length,o=0;ol;l++)isNaN(t[o][l])&&(t[o][l]=e[o][l])}function an(t,e,n){if(t===e)return!0;var i=t.length;if(i!==e.length)return!1;if(1===n){for(var r=0;i>r;r++)if(t[r]!==e[r])return!1}else for(var a=t[0].length,r=0;i>r;r++)for(var o=0;a>o;o++)if(t[r][o]!==e[r][o])return!1;return!0}function on(t,e,n,i,r,a,o,s,l){var u=t.length;if(1==l)for(var h=0;u>h;h++)s[h]=sn(t[h],e[h],n[h],i[h],r,a,o);else for(var c=t[0].length,h=0;u>h;h++)for(var f=0;c>f;f++)s[h][f]=sn(t[h][f],e[h][f],n[h][f],i[h][f],r,a,o)}function sn(t,e,n,i,r,a,o){var s=.5*(n-t),l=.5*(i-e);return(2*(e-n)+s+l)*o+(-3*(e-n)-2*s-l)*a+s*r+e}function ln(t){if(f(t)){var e=t.length;if(f(t[0])){for(var n=[],i=0;e>i;i++)n.push(zf.call(t[i]));return n}return zf.call(t)}return t}function un(t){return t[0]=Math.floor(t[0]),t[1]=Math.floor(t[1]),t[2]=Math.floor(t[2]),"rgba("+t.join(",")+")"}function hn(t){var e=t[t.length-1].value;return f(e&&e[0])?2:1}function cn(t,e,n,i,r,a){var o=t._getter,s=t._setter,l="spline"===e,u=i.length;if(u){var h,c=i[0].value,d=f(c),p=!1,g=!1,v=d?hn(i):0;i.sort(function(t,e){return t.time-e.time}),h=i[u-1].time;for(var m=[],y=[],_=i[0].value,x=!0,w=0;u>w;w++){m.push(i[w].time/h);var b=i[w].value;if(d&&an(b,_,v)||!d&&b===_||(x=!1),_=b,"string"==typeof b){var S=He(b);S?(b=S,p=!0):g=!0}y.push(b)}if(a||!x){for(var M=y[u-1],w=0;u-1>w;w++)d?rn(y[w],M,v):!isNaN(y[w])||isNaN(M)||g||p||(y[w]=M);d&&rn(o(t._target,r),M,v);var T,C,k,I,D,A,P=0,O=0;if(p)var L=[0,0,0,0];var E=function(t,e){var n;if(0>e)n=0;else if(O>e){for(T=Math.min(P+1,u-1),n=T;n>=0&&!(m[n]<=e);n--);n=Math.min(n,u-2)}else{for(n=P;u>n&&!(m[n]>e);n++);n=Math.min(n-1,u-2)}P=n,O=e;var i=m[n+1]-m[n];if(0!==i)if(C=(e-m[n])/i,l)if(I=y[n],k=y[0===n?n:n-1],D=y[n>u-2?u-1:n+1],A=y[n>u-3?u-1:n+2],d)on(k,I,D,A,C,C*C,C*C*C,o(t,r),v);else{var a;if(p)a=on(k,I,D,A,C,C*C,C*C*C,L,1),a=un(L);else{if(g)return en(I,D,C);a=sn(k,I,D,A,C,C*C,C*C*C)}s(t,r,a)}else if(d)nn(y[n],y[n+1],C,o(t,r),v);else{var a;if(p)nn(y[n],y[n+1],C,L,1),a=un(L);else{if(g)return en(y[n],y[n+1],C);a=tn(y[n],y[n+1],C)}s(t,r,a)}},R=new Pe({target:t._target,life:h,loop:t._loop,delay:t._delay,onframe:E,ondestroy:n});return e&&"spline"!==e&&(R.easing=e),R}}}function fn(t,e,n,i,r,a,o,s){function l(){h--,h||a&&a()}b(i)?(a=r,r=i,i=0):w(r)?(a=r,r="linear",i=0):w(i)?(a=i,i=0):w(n)?(a=n,n=500):n||(n=500),t.stopAnimation(),dn(t,"",t,e,n,i,s);var u=t.animators.slice(),h=u.length;h||a&&a();for(var c=0;c0&&t.animate(e,!1).when(null==r?500:r,s).delay(a||0)}function pn(t,e,n,i){if(e){var r={};r[e]={},r[e][n]=i,t.attr(r)}else t.attr(n,i)}function gn(t,e,n,i){0>n&&(t+=n,n=-n),0>i&&(e+=i,i=-i),this.x=t,this.y=e,this.width=n,this.height=i}function vn(t){for(var e=0;t>=$f;)e|=1&t,t>>=1;return t+e}function mn(t,e,n,i){var r=e+1;if(r===n)return 1;if(i(t[r++],t[e])<0){for(;n>r&&i(t[r],t[r-1])<0;)r++;yn(t,e,r)}else for(;n>r&&i(t[r],t[r-1])>=0;)r++;return r-e}function yn(t,e,n){for(n--;n>e;){var i=t[e];t[e++]=t[n],t[n--]=i}}function _n(t,e,n,i,r){for(i===e&&i++;n>i;i++){for(var a,o=t[i],s=e,l=i;l>s;)a=s+l>>>1,r(o,t[a])<0?l=a:s=a+1;var u=i-s;switch(u){case 3:t[s+3]=t[s+2];case 2:t[s+2]=t[s+1];case 1:t[s+1]=t[s];break;default:for(;u>0;)t[s+u]=t[s+u-1],u--}t[s]=o}}function xn(t,e,n,i,r,a){var o=0,s=0,l=1;if(a(t,e[n+r])>0){for(s=i-r;s>l&&a(t,e[n+r+l])>0;)o=l,l=(l<<1)+1,0>=l&&(l=s);l>s&&(l=s),o+=r,l+=r}else{for(s=r+1;s>l&&a(t,e[n+r-l])<=0;)o=l,l=(l<<1)+1,0>=l&&(l=s);l>s&&(l=s);var u=o;o=r-l,l=r-u}for(o++;l>o;){var h=o+(l-o>>>1);a(t,e[n+h])>0?o=h+1:l=h}return l}function wn(t,e,n,i,r,a){var o=0,s=0,l=1;if(a(t,e[n+r])<0){for(s=r+1;s>l&&a(t,e[n+r-l])<0;)o=l,l=(l<<1)+1,0>=l&&(l=s);l>s&&(l=s);var u=o;o=r-l,l=r-u}else{for(s=i-r;s>l&&a(t,e[n+r+l])>=0;)o=l,l=(l<<1)+1,0>=l&&(l=s);l>s&&(l=s),o+=r,l+=r}for(o++;l>o;){var h=o+(l-o>>>1);a(t,e[n+h])<0?l=h:o=h+1}return l}function bn(t,e){function n(t,e){l[c]=t,u[c]=e,c+=1}function i(){for(;c>1;){var t=c-2;if(t>=1&&u[t-1]<=u[t]+u[t+1]||t>=2&&u[t-2]<=u[t]+u[t-1])u[t-1]u[t+1])break;a(t)}}function r(){for(;c>1;){var t=c-2;t>0&&u[t-1]=r?o(i,r,a,h):s(i,r,a,h)))}function o(n,i,r,a){var o=0;for(o=0;i>o;o++)f[o]=t[n+o];var s=0,l=r,u=n;if(t[u++]=t[l++],0!==--a){if(1===i){for(o=0;a>o;o++)t[u+o]=t[l+o];return void(t[u+a]=f[s])}for(var c,d,p,g=h;;){c=0,d=0,p=!1;do if(e(t[l],f[s])<0){if(t[u++]=t[l++],d++,c=0,0===--a){p=!0;break}}else if(t[u++]=f[s++],c++,d=0,1===--i){p=!0;break}while(g>(c|d));if(p)break;do{if(c=wn(t[l],f,s,i,0,e),0!==c){for(o=0;c>o;o++)t[u+o]=f[s+o];if(u+=c,s+=c,i-=c,1>=i){p=!0;break}}if(t[u++]=t[l++],0===--a){p=!0;break}if(d=xn(f[s],t,l,a,0,e),0!==d){for(o=0;d>o;o++)t[u+o]=t[l+o];if(u+=d,l+=d,a-=d,0===a){p=!0;break}}if(t[u++]=f[s++],1===--i){p=!0;break}g--}while(c>=Qf||d>=Qf);if(p)break;0>g&&(g=0),g+=2}if(h=g,1>h&&(h=1),1===i){for(o=0;a>o;o++)t[u+o]=t[l+o];t[u+a]=f[s]}else{if(0===i)throw new Error;for(o=0;i>o;o++)t[u+o]=f[s+o]}}else for(o=0;i>o;o++)t[u+o]=f[s+o]}function s(n,i,r,a){var o=0;for(o=0;a>o;o++)f[o]=t[r+o];var s=n+i-1,l=a-1,u=r+a-1,c=0,d=0;if(t[u--]=t[s--],0!==--i){if(1===a){for(u-=i,s-=i,d=u+1,c=s+1,o=i-1;o>=0;o--)t[d+o]=t[c+o];return void(t[u]=f[l])}for(var p=h;;){var g=0,v=0,m=!1;do if(e(f[l],t[s])<0){if(t[u--]=t[s--],g++,v=0,0===--i){m=!0;break}}else if(t[u--]=f[l--],v++,g=0,1===--a){m=!0;break}while(p>(g|v));if(m)break;do{if(g=i-wn(f[l],t,n,i,i-1,e),0!==g){for(u-=g,s-=g,i-=g,d=u+1,c=s+1,o=g-1;o>=0;o--)t[d+o]=t[c+o];if(0===i){m=!0;break}}if(t[u--]=f[l--],1===--a){m=!0;break}if(v=a-xn(t[s],f,0,a,a-1,e),0!==v){for(u-=v,l-=v,a-=v,d=u+1,c=l+1,o=0;v>o;o++)t[d+o]=f[c+o];if(1>=a){m=!0;break}}if(t[u--]=t[s--],0===--i){m=!0;break}p--}while(g>=Qf||v>=Qf);if(m)break;0>p&&(p=0),p+=2}if(h=p,1>h&&(h=1),1===a){for(u-=i,s-=i,d=u+1,c=s+1,o=i-1;o>=0;o--)t[d+o]=t[c+o];t[u]=f[l]}else{if(0===a)throw new Error;for(c=u-(a-1),o=0;a>o;o++)t[c+o]=f[o]}}else for(c=u-(a-1),o=0;a>o;o++)t[c+o]=f[o]}var l,u,h=Qf,c=0,f=[];l=[],u=[],this.mergeRuns=i,this.forceMergeRuns=r,this.pushRun=n}function Sn(t,e,n,i){n||(n=0),i||(i=t.length);var r=i-n;if(!(2>r)){var a=0;if($f>r)return a=mn(t,n,i,e),void _n(t,n,i,n+a,e);var o=new bn(t,e),s=vn(r);do{if(a=mn(t,n,i,e),s>a){var l=r;l>s&&(l=s),_n(t,n,n+l,n+a,e),a=l}o.pushRun(n,a),o.mergeRuns(),r-=a,n+=a}while(0!==r);o.forceMergeRuns()}}function Mn(t,e){return t.zlevel===e.zlevel?t.z===e.z?t.z2-e.z2:t.z-e.z:t.zlevel-e.zlevel}function Tn(t,e,n){var i=null==e.x?0:e.x,r=null==e.x2?1:e.x2,a=null==e.y?0:e.y,o=null==e.y2?0:e.y2;e.global||(i=i*n.width+n.x,r=r*n.width+n.x,a=a*n.height+n.y,o=o*n.height+n.y),i=isNaN(i)?0:i,r=isNaN(r)?1:r,a=isNaN(a)?0:a,o=isNaN(o)?0:o;var s=t.createLinearGradient(i,a,r,o);return s}function Cn(t,e,n){var i=n.width,r=n.height,a=Math.min(i,r),o=null==e.x?.5:e.x,s=null==e.y?.5:e.y,l=null==e.r?.5:e.r;e.global||(o=o*i+n.x,s=s*r+n.y,l*=a);var u=t.createRadialGradient(o,s,0,o,s,l);return u}function kn(){return!1}function In(t,e,n){var i=Qc(),r=e.getWidth(),a=e.getHeight(),o=i.style;return o&&(o.position="absolute",o.left=0,o.top=0,o.width=r+"px",o.height=a+"px",i.setAttribute("data-zr-dom-id",t)),i.width=r*n,i.height=a*n,i}function Dn(t){if("string"==typeof t){var e=ud.get(t);return e&&e.image}return t}function An(t,e,n,i,r){if(t){if("string"==typeof t){if(e&&e.__zrImageSrc===t||!n)return e;var a=ud.get(t),o={hostEl:n,cb:i,cbPayload:r};return a?(e=a.image,!On(e)&&a.pending.push(o)):(!e&&(e=new Image),e.onload=e.onerror=Pn,ud.put(t,e.__cachedImgObj={image:e,pending:[o]}),e.src=e.__zrImageSrc=t),e}return t}return e}function Pn(){var t=this.__cachedImgObj;this.onload=this.onerror=this.__cachedImgObj=null;for(var e=0;ea;a++)r=Math.max(Xn(i[a],e).width,r);return cd>fd&&(cd=0,hd={}),cd++,hd[n]=r,r}function En(t,e,n,i,r,a,o){return a?Bn(t,e,n,i,r,a,o):Rn(t,e,n,i,r,o)}function Rn(t,e,n,i,r,a){var o=jn(t,e,r,a),s=Ln(t,e);r&&(s+=r[1]+r[3]);var l=o.outerHeight,u=zn(0,s,n),h=Fn(0,l,i),c=new gn(u,h,s,l);return c.lineHeight=o.lineHeight,c}function Bn(t,e,n,i,r,a,o){var s=Un(t,{rich:a,truncate:o,font:e,textAlign:n,textPadding:r}),l=s.outerWidth,u=s.outerHeight,h=zn(0,l,n),c=Fn(0,u,i);return new gn(h,c,l,u)}function zn(t,e,n){return"right"===n?t-=e:"center"===n&&(t-=e/2),t}function Fn(t,e,n){return"middle"===n?t-=e/2:"bottom"===n&&(t-=e),t}function Nn(t,e,n){var i=e.x,r=e.y,a=e.height,o=e.width,s=a/2,l="left",u="top";switch(t){case"left":i-=n,r+=s,l="right",u="middle";break;case"right":i+=n+o,r+=s,u="middle";break;case"top":i+=o/2,r-=n,l="center",u="bottom";break;case"bottom":i+=o/2,r+=a+n,l="center";break;case"inside":i+=o/2,r+=s,l="center",u="middle";break;case"insideLeft":i+=n,r+=s,u="middle";break;case"insideRight":i+=o-n,r+=s,l="right",u="middle";break;case"insideTop":i+=o/2,r+=n,l="center";break;case"insideBottom":i+=o/2,r+=a-n,l="center",u="bottom";break;case"insideTopLeft":i+=n,r+=n;break;case"insideTopRight":i+=o-n,r+=n,l="right";break;case"insideBottomLeft":i+=n,r+=a-n,u="bottom";break;case"insideBottomRight":i+=o-n,r+=a-n,l="right",u="bottom"}return{x:i,y:r,textAlign:l,textVerticalAlign:u}}function Vn(t,e,n,i,r){if(!e)return"";var a=(t+"").split("\n");r=Wn(e,n,i,r);for(var o=0,s=a.length;s>o;o++)a[o]=Hn(a[o],r);return a.join("\n")}function Wn(t,e,n,i){i=o({},i),i.font=e;var n=D(n,"...");i.maxIterations=D(i.maxIterations,2);var r=i.minChar=D(i.minChar,0);i.cnCharWidth=Ln("国",e);var a=i.ascCharWidth=Ln("a",e);i.placeholder=D(i.placeholder,"");for(var s=t=Math.max(0,t-1),l=0;r>l&&s>=a;l++)s-=a;var u=Ln(n);return u>s&&(n="",u=0),s=t-u,i.ellipsis=n,i.ellipsisWidth=u,i.contentWidth=s,i.containerWidth=t,i}function Hn(t,e){var n=e.containerWidth,i=e.font,r=e.contentWidth;if(!n)return"";var a=Ln(t,i);if(n>=a)return t;for(var o=0;;o++){if(r>=a||o>=e.maxIterations){t+=e.ellipsis;break}var s=0===o?Gn(t,r,e.ascCharWidth,e.cnCharWidth):a>0?Math.floor(t.length*r/a):0;t=t.substr(0,s),a=Ln(t,i)}return""===t&&(t=e.placeholder),t}function Gn(t,e,n,i){for(var r=0,a=0,o=t.length;o>a&&e>r;a++){var s=t.charCodeAt(a);r+=s>=0&&127>=s?n:i}return a}function qn(t){return Ln("国",t)}function Xn(t,e){return gd.measureText(t,e)}function jn(t,e,n,i){null!=t&&(t+="");var r=qn(e),a=t?t.split("\n"):[],o=a.length*r,s=o;if(n&&(s+=n[0]+n[2]),t&&i){var l=i.outerHeight,u=i.outerWidth;if(null!=l&&s>l)t="",a=[];else if(null!=u)for(var h=Wn(u-(n?n[1]+n[3]:0),e,i.ellipsis,{minChar:i.minChar,placeholder:i.placeholder}),c=0,f=a.length;f>c;c++)a[c]=Hn(a[c],h)}return{lines:a,height:o,outerHeight:s,lineHeight:r}}function Un(t,e){var n={lines:[],width:0,height:0};if(null!=t&&(t+=""),!t)return n;for(var i,r=dd.lastIndex=0;null!=(i=dd.exec(t));){var a=i.index;a>r&&Yn(n,t.substring(r,a)),Yn(n,i[2],i[1]),r=dd.lastIndex}rd)return{lines:[],width:0,height:0};_.textWidth=Ln(_.text,b);var M=x.textWidth,T=null==M||"auto"===M;if("string"==typeof M&&"%"===M.charAt(M.length-1))_.percentWidth=M,u.push(_),M=0;else{if(T){M=_.textWidth;var C=x.textBackgroundColor,k=C&&C.image;k&&(k=Dn(k),On(k)&&(M=Math.max(M,k.width*S/k.height)))}var I=w?w[1]+w[3]:0;M+=I;var P=null!=f?f-m:null;null!=P&&M>P&&(!T||I>P?(_.text="",_.textWidth=M=0):(_.text=Vn(_.text,P-I,b,c.ellipsis,{minChar:c.minChar}),_.textWidth=Ln(_.text,b),M=_.textWidth+I))}m+=_.width=M,x&&(v=Math.max(v,_.lineHeight))}g.width=m,g.lineHeight=v,s+=v,l=Math.max(l,m)}n.outerWidth=n.width=D(e.textWidth,l),n.outerHeight=n.height=D(e.textHeight,s),h&&(n.outerWidth+=h[1]+h[3],n.outerHeight+=h[0]+h[2]);for(var p=0;pl&&(o+=l,l=-l),0>u&&(s+=u,u=-u),"number"==typeof h?n=i=r=a=h:h instanceof Array?1===h.length?n=i=r=a=h[0]:2===h.length?(n=r=h[0],i=a=h[1]):3===h.length?(n=h[0],i=a=h[1],r=h[2]):(n=h[0],i=h[1],r=h[2],a=h[3]):n=i=r=a=0;var c;n+i>l&&(c=n+i,n*=l/c,i*=l/c),r+a>l&&(c=r+a,r*=l/c,a*=l/c),i+r>u&&(c=i+r,i*=u/c,r*=u/c),n+a>u&&(c=n+a,n*=u/c,a*=u/c),t.moveTo(o+n,s),t.lineTo(o+l-i,s),0!==i&&t.arc(o+l-i,s+i,i,-Math.PI/2,0),t.lineTo(o+l,s+u-r),0!==r&&t.arc(o+l-r,s+u-r,r,0,Math.PI/2),t.lineTo(o+a,s+u),0!==a&&t.arc(o+a,s+u-a,a,Math.PI/2,Math.PI),t.lineTo(o,s+n),0!==n&&t.arc(o+n,s+n,n,Math.PI,1.5*Math.PI)}function Qn(t){return Kn(t),d(t.rich,Kn),t}function Kn(t){if(t){t.font=Zn(t);var e=t.textAlign;"middle"===e&&(e="center"),t.textAlign=null==e||vd[e]?e:"left";var n=t.textVerticalAlign||t.textBaseline;"center"===n&&(n="middle"),t.textVerticalAlign=null==n||md[n]?n:"top";var i=t.textPadding;i&&(t.textPadding=O(t.textPadding))}}function Jn(t,e,n,i,r,a){i.rich?ei(t,e,n,i,r):ti(t,e,n,i,r,a)}function ti(t,e,n,i,r,a){var o=a&&a.style,s=o&&"text"===a.type,l=i.font||pd;s&&l===(o.font||pd)||(e.font=l);var u=t.__computedFont;t.__styleFont!==l&&(t.__styleFont=l,u=t.__computedFont=e.font);var h=i.textPadding,c=t.__textCotentBlock;(!c||t.__dirtyText)&&(c=t.__textCotentBlock=jn(n,u,h,i.truncate));var f=c.outerHeight,d=c.lines,p=c.lineHeight,g=li(f,i,r),v=g.baseX,m=g.baseY,y=g.textAlign||"left",_=g.textVerticalAlign;ii(e,i,r,v,m);var x=Fn(m,f,_),w=v,b=x,S=ai(i);if(S||h){var M=Ln(n,u),T=M;h&&(T+=h[1]+h[3]);var C=zn(v,T,y);S&&oi(t,e,i,C,x,T,f),h&&(w=di(v,y,h),b+=h[0])}e.textAlign=y,e.textBaseline="middle";for(var k=0;kC&&(x=b[C],!x.textAlign||"left"===x.textAlign);)ri(t,e,x,i,M,m,k,"left"),T-=x.width,k+=x.width,C++;for(;D>=0&&(x=b[D],"right"===x.textAlign);)ri(t,e,x,i,M,m,I,"right"),T-=x.width,I-=x.width,D--;for(k+=(a-(k-v)-(y-I)-T)/2;D>=C;)x=b[C],ri(t,e,x,i,M,m,k+x.width/2,"center"),k+=x.width,C++;m+=M}}function ii(t,e,n,i,r){if(n&&e.textRotation){var a=e.textOrigin;"center"===a?(i=n.width/2+n.x,r=n.height/2+n.y):a&&(i=a[0]+n.x,r=a[1]+n.y),t.translate(i,r),t.rotate(-e.textRotation),t.translate(-i,-r)}}function ri(t,e,n,i,r,a,o,s){var l=i.rich[n.styleName]||{};l.text=n.text;var u=n.textVerticalAlign,h=a+r/2;"top"===u?h=a+n.height/2:"bottom"===u&&(h=a+r-n.height/2),!n.isLineHolder&&ai(l)&&oi(t,e,l,"right"===s?o-n.width:"center"===s?o-n.width/2:o,h-n.height/2,n.width,n.height);var c=n.textPadding;c&&(o=di(o,s,c),h-=n.height/2-c[2]-n.textHeight/2),ui(e,"shadowBlur",A(l.textShadowBlur,i.textShadowBlur,0)),ui(e,"shadowColor",l.textShadowColor||i.textShadowColor||"transparent"),ui(e,"shadowOffsetX",A(l.textShadowOffsetX,i.textShadowOffsetX,0)),ui(e,"shadowOffsetY",A(l.textShadowOffsetY,i.textShadowOffsetY,0)),ui(e,"textAlign",s),ui(e,"textBaseline","middle"),ui(e,"font",n.font||pd);var f=hi(l.textStroke||i.textStroke,p),d=ci(l.textFill||i.textFill),p=D(l.textStrokeWidth,i.textStrokeWidth);f&&(ui(e,"lineWidth",p),ui(e,"strokeStyle",f),e.strokeText(n.text,o,h)),d&&(ui(e,"fillStyle",d),e.fillText(n.text,o,h))}function ai(t){return t.textBackgroundColor||t.textBorderWidth&&t.textBorderColor}function oi(t,e,n,i,r,a,o){var s=n.textBackgroundColor,l=n.textBorderWidth,u=n.textBorderColor,h=b(s);if(ui(e,"shadowBlur",n.textBoxShadowBlur||0),ui(e,"shadowColor",n.textBoxShadowColor||"transparent"),ui(e,"shadowOffsetX",n.textBoxShadowOffsetX||0),ui(e,"shadowOffsetY",n.textBoxShadowOffsetY||0),h||l&&u){e.beginPath();var c=n.textBorderRadius;c?$n(e,{x:i,y:r,width:a,height:o,r:c}):e.rect(i,r,a,o),e.closePath()}if(h)if(ui(e,"fillStyle",s),null!=n.fillOpacity){var f=e.globalAlpha;e.globalAlpha=n.fillOpacity*n.opacity,e.fill(),e.globalAlpha=f}else e.fill();else if(w(s))ui(e,"fillStyle",s(n)),e.fill();else if(S(s)){var d=s.image;d=An(d,null,t,si,s),d&&On(d)&&e.drawImage(d,i,r,a,o)}if(l&&u)if(ui(e,"lineWidth",l),ui(e,"strokeStyle",u),null!=n.strokeOpacity){var f=e.globalAlpha;e.globalAlpha=n.strokeOpacity*n.opacity,e.stroke(),e.globalAlpha=f}else e.stroke()}function si(t,e){e.image=t}function li(t,e,n){var i=e.x||0,r=e.y||0,a=e.textAlign,o=e.textVerticalAlign;if(n){var s=e.textPosition;if(s instanceof Array)i=n.x+fi(s[0],n.width),r=n.y+fi(s[1],n.height);else{var l=Nn(s,n,e.textDistance);i=l.x,r=l.y,a=a||l.textAlign,o=o||l.textVerticalAlign}var u=e.textOffset;u&&(i+=u[0],r+=u[1])}return{baseX:i,baseY:r,textAlign:a,textVerticalAlign:o}}function ui(t,e,n){return t[e]=td(t,e,n),t[e]}function hi(t,e){return null==t||0>=e||"transparent"===t||"none"===t?null:t.image||t.colorStops?"#000":t}function ci(t){return null==t||"none"===t?null:t.image||t.colorStops?"#000":t}function fi(t,e){return"string"==typeof t?t.lastIndexOf("%")>=0?parseFloat(t)/100*e:parseFloat(t):t}function di(t,e,n){return"right"===e?t-n[1]:"center"===e?t+n[3]/2-n[1]/2:t+n[3]}function pi(t,e){return null!=t&&(t||e.textBackgroundColor||e.textBorderWidth&&e.textBorderColor||e.textPadding)}function gi(t){t=t||{},Xf.call(this,t);for(var e in t)t.hasOwnProperty(e)&&"style"!==e&&(this[e]=t[e]);this.style=new nd(t.style,this),this._rect=null,this.__clipPaths=[]}function vi(t){gi.call(this,t)}function mi(t){return parseInt(t,10) +}function yi(t){return t?t.__builtin__?!0:"function"!=typeof t.resize||"function"!=typeof t.refresh?!1:!0:!1}function _i(t,e,n){return Td.copy(t.getBoundingRect()),t.transform&&Td.applyTransform(t.transform),Cd.width=e,Cd.height=n,!Td.intersect(Cd)}function xi(t,e){if(t==e)return!1;if(!t||!e||t.length!==e.length)return!0;for(var n=0;ni;i++){var a=n[i];!t.emphasis[e].hasOwnProperty(a)&&t[e].hasOwnProperty(a)&&(t.emphasis[e][a]=t[e][a])}}}function Fi(t){return!Xd(t)||jd(t)||t instanceof Date?t:t.value}function Ni(t){return Xd(t)&&!(t instanceof Array)}function Vi(t,e){e=(e||[]).slice();var n=p(t||[],function(t){return{exist:t}});return qd(e,function(t,i){if(Xd(t)){for(var r=0;r=n.length&&n.push({option:t})}}),n}function Wi(t){var e=F();qd(t,function(t){var n=t.exist;n&&e.set(n.id,t)}),qd(t,function(t){var n=t.option;L(!n||null==n.id||!e.get(n.id)||e.get(n.id)===t,"id duplicates: "+(n&&n.id)),n&&null!=n.id&&e.set(n.id,t),!t.keyInfo&&(t.keyInfo={})}),qd(t,function(t,n){var i=t.exist,r=t.option,a=t.keyInfo;if(Xd(r)){if(a.name=null!=r.name?r.name+"":i?i.name:Ud+n,i)a.id=i.id;else if(null!=r.id)a.id=r.id+"";else{var o=0;do a.id="\x00"+a.name+"\x00"+o++;while(e.get(a.id))}e.set(a.id,t)}})}function Hi(t){var e=t.name;return!(!e||!e.indexOf(Ud))}function Gi(t){return Xd(t)&&t.id&&0===(t.id+"").indexOf("\x00_ec_\x00")}function qi(t,e){return null!=e.dataIndexInside?e.dataIndexInside:null!=e.dataIndex?x(e.dataIndex)?p(e.dataIndex,function(e){return t.indexOfRawIndex(e)}):t.indexOfRawIndex(e.dataIndex):null!=e.name?x(e.name)?p(e.name,function(e){return t.indexOfName(e)}):t.indexOfName(e.name):void 0}function Xi(){var t="__\x00ec_inner_"+Zd++ +"_"+Math.random().toFixed(5);return function(e){return e[t]||(e[t]={})}}function ji(t,e,n){if(b(e)){var i={};i[e+"Index"]=0,e=i}var r=n&&n.defaultMainType;!r||Ui(e,r+"Index")||Ui(e,r+"Id")||Ui(e,r+"Name")||(e[r+"Index"]=0);var a={};return qd(e,function(i,r){var i=e[r];if("dataIndex"===r||"dataIndexInside"===r)return void(a[r]=i);var o=r.match(/^(\w+)(Index|Id|Name)$/)||[],s=o[1],l=(o[2]||"").toLowerCase();if(!(!s||!l||null==i||"index"===l&&"none"===i||n&&n.includeMainTypes&&u(n.includeMainTypes,s)<0)){var h={mainType:s};("index"!==l||"all"!==i)&&(h[l]=i);var c=t.queryComponents(h);a[s+"Models"]=c,a[s+"Model"]=c[0]}}),a}function Ui(t,e){return t&&t.hasOwnProperty(e)}function Yi(t,e,n){t.setAttribute?t.setAttribute(e,n):t[e]=n}function Zi(t,e){return t.getAttribute?t.getAttribute(e):t[e]}function $i(t){return"auto"===t?Vc.domSupported?"html":"richText":t||"html"}function Qi(t){var e={main:"",sub:""};return t&&(t=t.split($d),e.main=t[0]||"",e.sub=t[1]||""),e}function Ki(t){L(/^[a-zA-Z0-9_]+([.][a-zA-Z0-9_]+)?$/.test(t),'componentType "'+t+'" illegal')}function Ji(t){t.$constructor=t,t.extend=function(t){var e=this,n=function(){t.$constructor?t.$constructor.apply(this,arguments):e.apply(this,arguments)};return o(n.prototype,t),n.extend=this.extend,n.superCall=er,n.superApply=nr,h(n,this),n.superClass=e,n}}function tr(t){var e=["__\x00is_clz",Kd++,Math.random().toFixed(3)].join("_");t.prototype[e]=!0,t.isInstance=function(t){return!(!t||!t[e])}}function er(t,e){var n=P(arguments,2);return this.superClass.prototype[e].apply(t,n)}function nr(t,e,n){return this.superClass.prototype[e].apply(t,n)}function ir(t,e){function n(t){var e=i[t.main];return e&&e[Qd]||(e=i[t.main]={},e[Qd]=!0),e}e=e||{};var i={};if(t.registerClass=function(t,e){if(e)if(Ki(e),e=Qi(e),e.sub){if(e.sub!==Qd){var r=n(e);r[e.sub]=t}}else i[e.main]=t;return t},t.getClass=function(t,e,n){var r=i[t];if(r&&r[Qd]&&(r=e?r[e]:null),n&&!r)throw new Error(e?"Component "+t+"."+(e||"")+" not exists. Load it first.":t+".type should be specified.");return r},t.getClassesByMainType=function(t){t=Qi(t);var e=[],n=i[t.main];return n&&n[Qd]?d(n,function(t,n){n!==Qd&&e.push(t)}):e.push(n),e},t.hasClass=function(t){return t=Qi(t),!!i[t.main]},t.getAllClassMainTypes=function(){var t=[];return d(i,function(e,n){t.push(n)}),t},t.hasSubTypes=function(t){t=Qi(t);var e=i[t.main];return e&&e[Qd]},t.parseClassType=Qi,e.registerWhenExtend){var r=t.extend;r&&(t.extend=function(e){var n=r.call(this,e);return t.registerClass(n,e.type)})}return t}function rr(t){return t>-op&&op>t}function ar(t){return t>op||-op>t}function or(t,e,n,i,r){var a=1-r;return a*a*(a*t+3*r*e)+r*r*(r*i+3*a*n)}function sr(t,e,n,i,r){var a=1-r;return 3*(((e-t)*a+2*(n-e)*r)*a+(i-n)*r*r)}function lr(t,e,n,i,r,a){var o=i+3*(e-n)-t,s=3*(n-2*e+t),l=3*(e-t),u=t-r,h=s*s-3*o*l,c=s*l-9*o*u,f=l*l-3*s*u,d=0;if(rr(h)&&rr(c))if(rr(s))a[0]=0;else{var p=-l/s;p>=0&&1>=p&&(a[d++]=p)}else{var g=c*c-4*h*f;if(rr(g)){var v=c/h,p=-s/o+v,m=-v/2;p>=0&&1>=p&&(a[d++]=p),m>=0&&1>=m&&(a[d++]=m)}else if(g>0){var y=ap(g),_=h*s+1.5*o*(-c+y),x=h*s+1.5*o*(-c-y);_=0>_?-rp(-_,up):rp(_,up),x=0>x?-rp(-x,up):rp(x,up);var p=(-s-(_+x))/(3*o);p>=0&&1>=p&&(a[d++]=p)}else{var w=(2*h*s-3*o*c)/(2*ap(h*h*h)),b=Math.acos(w)/3,S=ap(h),M=Math.cos(b),p=(-s-2*S*M)/(3*o),m=(-s+S*(M+lp*Math.sin(b)))/(3*o),T=(-s+S*(M-lp*Math.sin(b)))/(3*o);p>=0&&1>=p&&(a[d++]=p),m>=0&&1>=m&&(a[d++]=m),T>=0&&1>=T&&(a[d++]=T)}}return d}function ur(t,e,n,i,r){var a=6*n-12*e+6*t,o=9*e+3*i-3*t-9*n,s=3*e-3*t,l=0;if(rr(o)){if(ar(a)){var u=-s/a;u>=0&&1>=u&&(r[l++]=u)}}else{var h=a*a-4*o*s;if(rr(h))r[0]=-a/(2*o);else if(h>0){var c=ap(h),u=(-a+c)/(2*o),f=(-a-c)/(2*o);u>=0&&1>=u&&(r[l++]=u),f>=0&&1>=f&&(r[l++]=f)}}return l}function hr(t,e,n,i,r,a){var o=(e-t)*r+t,s=(n-e)*r+e,l=(i-n)*r+n,u=(s-o)*r+o,h=(l-s)*r+s,c=(h-u)*r+u;a[0]=t,a[1]=o,a[2]=u,a[3]=c,a[4]=c,a[5]=h,a[6]=l,a[7]=i}function cr(t,e,n,i,r,a,o,s,l,u,h){var c,f,d,p,g,v=.005,m=1/0;hp[0]=l,hp[1]=u;for(var y=0;1>y;y+=.05)cp[0]=or(t,n,r,o,y),cp[1]=or(e,i,a,s,y),p=of(hp,cp),m>p&&(c=y,m=p);m=1/0;for(var _=0;32>_&&!(sp>v);_++)f=c-v,d=c+v,cp[0]=or(t,n,r,o,f),cp[1]=or(e,i,a,s,f),p=of(cp,hp),f>=0&&m>p?(c=f,m=p):(fp[0]=or(t,n,r,o,d),fp[1]=or(e,i,a,s,d),g=of(fp,hp),1>=d&&m>g?(c=d,m=g):v*=.5);return h&&(h[0]=or(t,n,r,o,c),h[1]=or(e,i,a,s,c)),ap(m)}function fr(t,e,n,i){var r=1-i;return r*(r*t+2*i*e)+i*i*n}function dr(t,e,n,i){return 2*((1-i)*(e-t)+i*(n-e))}function pr(t,e,n,i,r){var a=t-2*e+n,o=2*(e-t),s=t-i,l=0;if(rr(a)){if(ar(o)){var u=-s/o;u>=0&&1>=u&&(r[l++]=u)}}else{var h=o*o-4*a*s;if(rr(h)){var u=-o/(2*a);u>=0&&1>=u&&(r[l++]=u)}else if(h>0){var c=ap(h),u=(-o+c)/(2*a),f=(-o-c)/(2*a);u>=0&&1>=u&&(r[l++]=u),f>=0&&1>=f&&(r[l++]=f)}}return l}function gr(t,e,n){var i=t+n-2*e;return 0===i?.5:(t-e)/i}function vr(t,e,n,i,r){var a=(e-t)*i+t,o=(n-e)*i+e,s=(o-a)*i+a;r[0]=t,r[1]=a,r[2]=s,r[3]=s,r[4]=o,r[5]=n}function mr(t,e,n,i,r,a,o,s,l){var u,h=.005,c=1/0;hp[0]=o,hp[1]=s;for(var f=0;1>f;f+=.05){cp[0]=fr(t,n,r,f),cp[1]=fr(e,i,a,f);var d=of(hp,cp);c>d&&(u=f,c=d)}c=1/0;for(var p=0;32>p&&!(sp>h);p++){var g=u-h,v=u+h;cp[0]=fr(t,n,r,g),cp[1]=fr(e,i,a,g);var d=of(cp,hp);if(g>=0&&c>d)u=g,c=d;else{fp[0]=fr(t,n,r,v),fp[1]=fr(e,i,a,v);var m=of(fp,hp);1>=v&&c>m?(u=v,c=m):h*=.5}}return l&&(l[0]=fr(t,n,r,u),l[1]=fr(e,i,a,u)),ap(c)}function yr(t,e,n){if(0!==t.length){var i,r=t[0],a=r[0],o=r[0],s=r[1],l=r[1];for(i=1;ih;h++){var p=f(t,n,r,o,wp[h]);l[0]=dp(p,l[0]),u[0]=pp(p,u[0])}for(d=c(e,i,a,s,bp),h=0;d>h;h++){var g=f(e,i,a,s,bp[h]);l[1]=dp(g,l[1]),u[1]=pp(g,u[1])}l[0]=dp(t,l[0]),u[0]=pp(t,u[0]),l[0]=dp(o,l[0]),u[0]=pp(o,u[0]),l[1]=dp(e,l[1]),u[1]=pp(e,u[1]),l[1]=dp(s,l[1]),u[1]=pp(s,u[1])}function wr(t,e,n,i,r,a,o,s){var l=gr,u=fr,h=pp(dp(l(t,n,r),1),0),c=pp(dp(l(e,i,a),1),0),f=u(t,n,r,h),d=u(e,i,a,c);o[0]=dp(t,r,f),o[1]=dp(e,a,d),s[0]=pp(t,r,f),s[1]=pp(e,a,d)}function br(t,e,n,i,r,a,o,s,l){var u=oe,h=se,c=Math.abs(r-a);if(1e-4>c%mp&&c>1e-4)return s[0]=t-n,s[1]=e-i,l[0]=t+n,void(l[1]=e+i);if(yp[0]=vp(r)*n+t,yp[1]=gp(r)*i+e,_p[0]=vp(a)*n+t,_p[1]=gp(a)*i+e,u(s,yp,_p),h(l,yp,_p),r%=mp,0>r&&(r+=mp),a%=mp,0>a&&(a+=mp),r>a&&!o?a+=mp:a>r&&o&&(r+=mp),o){var f=a;a=r,r=f}for(var d=0;a>d;d+=Math.PI/2)d>r&&(xp[0]=vp(d)*n+t,xp[1]=gp(d)*i+e,u(s,xp,s),h(l,xp,l))}function Sr(t,e,n,i,r,a,o){if(0===r)return!1;var s=r,l=0,u=t;if(o>e+s&&o>i+s||e-s>o&&i-s>o||a>t+s&&a>n+s||t-s>a&&n-s>a)return!1;if(t===n)return Math.abs(a-t)<=s/2;l=(e-i)/(t-n),u=(t*i-n*e)/(t-n);var h=l*a-o+u,c=h*h/(l*l+1);return s/2*s/2>=c}function Mr(t,e,n,i,r,a,o,s,l,u,h){if(0===l)return!1;var c=l;if(h>e+c&&h>i+c&&h>a+c&&h>s+c||e-c>h&&i-c>h&&a-c>h&&s-c>h||u>t+c&&u>n+c&&u>r+c&&u>o+c||t-c>u&&n-c>u&&r-c>u&&o-c>u)return!1;var f=cr(t,e,n,i,r,a,o,s,u,h,null);return c/2>=f}function Tr(t,e,n,i,r,a,o,s,l){if(0===o)return!1;var u=o;if(l>e+u&&l>i+u&&l>a+u||e-u>l&&i-u>l&&a-u>l||s>t+u&&s>n+u&&s>r+u||t-u>s&&n-u>s&&r-u>s)return!1;var h=mr(t,e,n,i,r,a,s,l,null);return u/2>=h}function Cr(t){return t%=Bp,0>t&&(t+=Bp),t}function kr(t,e,n,i,r,a,o,s,l){if(0===o)return!1;var u=o;s-=t,l-=e;var h=Math.sqrt(s*s+l*l);if(h-u>n||n>h+u)return!1;if(Math.abs(i-r)%zp<1e-4)return!0;if(a){var c=i;i=Cr(r),r=Cr(c)}else i=Cr(i),r=Cr(r);i>r&&(r+=zp);var f=Math.atan2(l,s);return 0>f&&(f+=zp),f>=i&&r>=f||f+zp>=i&&r>=f+zp}function Ir(t,e,n,i,r,a){if(a>e&&a>i||e>a&&i>a)return 0;if(i===e)return 0;var o=e>i?1:-1,s=(a-e)/(i-e);(1===s||0===s)&&(o=e>i?.5:-.5);var l=s*(n-t)+t;return l===r?1/0:l>r?o:0}function Dr(t,e){return Math.abs(t-e)e&&u>i&&u>a&&u>s||e>u&&i>u&&a>u&&s>u)return 0;var h=lr(e,i,a,s,u,Wp);if(0===h)return 0;for(var c,f,d=0,p=-1,g=0;h>g;g++){var v=Wp[g],m=0===v||1===v?.5:1,y=or(t,n,r,o,v);l>y||(0>p&&(p=ur(e,i,a,s,Hp),Hp[1]1&&Ar(),c=or(e,i,a,s,Hp[0]),p>1&&(f=or(e,i,a,s,Hp[1]))),d+=2==p?vc?m:-m:vf?m:-m:f>s?m:-m:vc?m:-m:c>s?m:-m)}return d}function Or(t,e,n,i,r,a,o,s){if(s>e&&s>i&&s>a||e>s&&i>s&&a>s)return 0;var l=pr(e,i,a,s,Wp);if(0===l)return 0;var u=gr(e,i,a);if(u>=0&&1>=u){for(var h=0,c=fr(e,i,a,u),f=0;l>f;f++){var d=0===Wp[f]||1===Wp[f]?.5:1,p=fr(t,n,r,Wp[f]);o>p||(h+=Wp[f]c?d:-d:c>a?d:-d)}return h}var d=0===Wp[0]||1===Wp[0]?.5:1,p=fr(t,n,r,Wp[0]);return o>p?0:e>a?d:-d}function Lr(t,e,n,i,r,a,o,s){if(s-=e,s>n||-n>s)return 0;var l=Math.sqrt(n*n-s*s);Wp[0]=-l,Wp[1]=l;var u=Math.abs(i-r);if(1e-4>u)return 0;if(1e-4>u%Np){i=0,r=Np;var h=a?1:-1;return o>=Wp[0]+t&&o<=Wp[1]+t?h:0}if(a){var l=i;i=Cr(r),r=Cr(l)}else i=Cr(i),r=Cr(r);i>r&&(r+=Np);for(var c=0,f=0;2>f;f++){var d=Wp[f];if(d+t>o){var p=Math.atan2(s,d),h=a?1:-1;0>p&&(p=Np+p),(p>=i&&r>=p||p+Np>=i&&r>=p+Np)&&(p>Math.PI/2&&p<1.5*Math.PI&&(h=-h),c+=h)}}return c}function Er(t,e,n,i,r){for(var a=0,o=0,s=0,l=0,u=0,h=0;h1&&(n||(a+=Ir(o,s,l,u,i,r))),1==h&&(o=t[h],s=t[h+1],l=o,u=s),c){case Fp.M:l=t[h++],u=t[h++],o=l,s=u;break;case Fp.L:if(n){if(Sr(o,s,t[h],t[h+1],e,i,r))return!0}else a+=Ir(o,s,t[h],t[h+1],i,r)||0;o=t[h++],s=t[h++];break;case Fp.C:if(n){if(Mr(o,s,t[h++],t[h++],t[h++],t[h++],t[h],t[h+1],e,i,r))return!0}else a+=Pr(o,s,t[h++],t[h++],t[h++],t[h++],t[h],t[h+1],i,r)||0;o=t[h++],s=t[h++];break;case Fp.Q:if(n){if(Tr(o,s,t[h++],t[h++],t[h],t[h+1],e,i,r))return!0}else a+=Or(o,s,t[h++],t[h++],t[h],t[h+1],i,r)||0;o=t[h++],s=t[h++];break;case Fp.A:var f=t[h++],d=t[h++],p=t[h++],g=t[h++],v=t[h++],m=t[h++],y=(t[h++],1-t[h++]),_=Math.cos(v)*p+f,x=Math.sin(v)*g+d;h>1?a+=Ir(o,s,_,x,i,r):(l=_,u=x);var w=(i-f)*g/p+f;if(n){if(kr(f,d,g,v,v+m,y,e,w,r))return!0}else a+=Lr(f,d,g,v,v+m,y,w,r);o=Math.cos(v+m)*p+f,s=Math.sin(v+m)*g+d;break;case Fp.R:l=o=t[h++],u=s=t[h++];var b=t[h++],S=t[h++],_=l+b,x=u+S;if(n){if(Sr(l,u,_,u,e,i,r)||Sr(_,u,_,x,e,i,r)||Sr(_,x,l,x,e,i,r)||Sr(l,x,l,u,e,i,r))return!0}else a+=Ir(_,u,_,x,i,r),a+=Ir(l,x,l,u,i,r);break;case Fp.Z:if(n){if(Sr(o,s,l,u,e,i,r))return!0}else a+=Ir(o,s,l,u,i,r);o=l,s=u}}return n||Dr(s,u)||(a+=Ir(o,s,l,u,i,r)||0),0!==a}function Rr(t,e,n){return Er(t,0,!1,e,n)}function Br(t,e,n,i){return Er(t,e,!0,n,i)}function zr(t){gi.call(this,t),this.path=null}function Fr(t,e,n,i,r,a,o,s,l,u,h){var c=l*(tg/180),f=Jp(c)*(t-n)/2+Kp(c)*(e-i)/2,d=-1*Kp(c)*(t-n)/2+Jp(c)*(e-i)/2,p=f*f/(o*o)+d*d/(s*s);p>1&&(o*=Qp(p),s*=Qp(p));var g=(r===a?-1:1)*Qp((o*o*s*s-o*o*d*d-s*s*f*f)/(o*o*d*d+s*s*f*f))||0,v=g*o*d/s,m=g*-s*f/o,y=(t+n)/2+Jp(c)*v-Kp(c)*m,_=(e+i)/2+Kp(c)*v+Jp(c)*m,x=ig([1,0],[(f-v)/o,(d-m)/s]),w=[(f-v)/o,(d-m)/s],b=[(-1*f-v)/o,(-1*d-m)/s],S=ig(w,b);ng(w,b)<=-1&&(S=tg),ng(w,b)>=1&&(S=0),0===a&&S>0&&(S-=2*tg),1===a&&0>S&&(S+=2*tg),h.addData(u,y,_,o,s,x,S,c,a)}function Nr(t){if(!t)return new Rp;for(var e,n=0,i=0,r=n,a=i,o=new Rp,s=Rp.CMD,l=t.match(rg),u=0;ug;g++)d[g]=parseFloat(d[g]);for(var v=0;p>v;){var m,y,_,x,w,b,S,M=n,T=i;switch(f){case"l":n+=d[v++],i+=d[v++],h=s.L,o.addData(h,n,i);break;case"L":n=d[v++],i=d[v++],h=s.L,o.addData(h,n,i);break;case"m":n+=d[v++],i+=d[v++],h=s.M,o.addData(h,n,i),r=n,a=i,f="l";break;case"M":n=d[v++],i=d[v++],h=s.M,o.addData(h,n,i),r=n,a=i,f="L";break;case"h":n+=d[v++],h=s.L,o.addData(h,n,i);break;case"H":n=d[v++],h=s.L,o.addData(h,n,i);break;case"v":i+=d[v++],h=s.L,o.addData(h,n,i);break;case"V":i=d[v++],h=s.L,o.addData(h,n,i);break;case"C":h=s.C,o.addData(h,d[v++],d[v++],d[v++],d[v++],d[v++],d[v++]),n=d[v-2],i=d[v-1];break;case"c":h=s.C,o.addData(h,d[v++]+n,d[v++]+i,d[v++]+n,d[v++]+i,d[v++]+n,d[v++]+i),n+=d[v-2],i+=d[v-1];break;case"S":m=n,y=i;var C=o.len(),k=o.data;e===s.C&&(m+=n-k[C-4],y+=i-k[C-3]),h=s.C,M=d[v++],T=d[v++],n=d[v++],i=d[v++],o.addData(h,m,y,M,T,n,i);break;case"s":m=n,y=i;var C=o.len(),k=o.data;e===s.C&&(m+=n-k[C-4],y+=i-k[C-3]),h=s.C,M=n+d[v++],T=i+d[v++],n+=d[v++],i+=d[v++],o.addData(h,m,y,M,T,n,i);break;case"Q":M=d[v++],T=d[v++],n=d[v++],i=d[v++],h=s.Q,o.addData(h,M,T,n,i);break;case"q":M=d[v++]+n,T=d[v++]+i,n+=d[v++],i+=d[v++],h=s.Q,o.addData(h,M,T,n,i);break;case"T":m=n,y=i;var C=o.len(),k=o.data;e===s.Q&&(m+=n-k[C-4],y+=i-k[C-3]),n=d[v++],i=d[v++],h=s.Q,o.addData(h,m,y,n,i);break;case"t":m=n,y=i;var C=o.len(),k=o.data;e===s.Q&&(m+=n-k[C-4],y+=i-k[C-3]),n+=d[v++],i+=d[v++],h=s.Q,o.addData(h,m,y,n,i);break;case"A":_=d[v++],x=d[v++],w=d[v++],b=d[v++],S=d[v++],M=n,T=i,n=d[v++],i=d[v++],h=s.A,Fr(M,T,n,i,b,S,_,x,w,h,o);break;case"a":_=d[v++],x=d[v++],w=d[v++],b=d[v++],S=d[v++],M=n,T=i,n+=d[v++],i+=d[v++],h=s.A,Fr(M,T,n,i,b,S,_,x,w,h,o)}}("z"===f||"Z"===f)&&(h=s.Z,o.addData(h),n=r,i=a),e=h}return o.toStatic(),o}function Vr(t,e){var n=Nr(t);return e=e||{},e.buildPath=function(t){if(t.setData){t.setData(n.data);var e=t.getContext();e&&t.rebuildPath(e)}else{var e=t;n.rebuildPath(e)}},e.applyTransform=function(t){$p(n,t),this.dirty(!0)},e}function Wr(t,e){return new zr(Vr(t,e))}function Hr(t,e){return zr.extend(Vr(t,e))}function Gr(t,e){for(var n=[],i=t.length,r=0;i>r;r++){var a=t[r];a.path||a.createPathProxy(),a.__dirtyPath&&a.buildPath(a.path,a.shape,!0),n.push(a.path)}var o=new zr(e);return o.createPathProxy(),o.buildPath=function(t){t.appendPath(n);var e=t.getContext();e&&t.rebuildPath(e)},o}function qr(t,e,n,i,r,a,o){var s=.5*(n-t),l=.5*(i-e);return(2*(e-n)+s+l)*o+(-3*(e-n)-2*s-l)*a+s*r+e}function Xr(t,e,n){var i=e.points,r=e.smooth;if(i&&i.length>=2){if(r&&"spline"!==r){var a=dg(i,r,n,e.smoothConstraint);t.moveTo(i[0][0],i[0][1]);for(var o=i.length,s=0;(n?o:o-1)>s;s++){var l=a[2*s],u=a[2*s+1],h=i[(s+1)%o];t.bezierCurveTo(l[0],l[1],u[0],u[1],h[0],h[1])}}else{"spline"===r&&(i=fg(i,n)),t.moveTo(i[0][0],i[0][1]);for(var s=1,c=i.length;c>s;s++)t.lineTo(i[s][0],i[s][1])}n&&t.closePath()}}function jr(t,e,n){var i=t.cpx2,r=t.cpy2;return null===i||null===r?[(n?sr:or)(t.x1,t.cpx1,t.cpx2,t.x2,e),(n?sr:or)(t.y1,t.cpy1,t.cpy2,t.y2,e)]:[(n?dr:fr)(t.x1,t.cpx1,t.x2,e),(n?dr:fr)(t.y1,t.cpy1,t.y2,e)]}function Ur(t){gi.call(this,t),this._displayables=[],this._temporaryDisplayables=[],this._cursor=0,this.notClear=!0}function Yr(t){return zr.extend(t)}function Zr(t,e){return Hr(t,e)}function $r(t,e,n,i){var r=Wr(t,e);return n&&("center"===i&&(n=Kr(n,r.getBoundingRect())),Jr(r,n)),r}function Qr(t,e,n){var i=new vi({style:{image:t,x:e.x,y:e.y,width:e.width,height:e.height},onload:function(t){if("center"===n){var r={width:t.width,height:t.height};i.setStyle(Kr(e,r))}}});return i}function Kr(t,e){var n,i=e.width/e.height,r=t.height*i;r<=t.width?n=t.height:(r=t.width,n=r/i);var a=t.x+t.width/2,o=t.y+t.height/2;return{x:a-r/2,y:o-n/2,width:r,height:n}}function Jr(t,e){if(t.applyTransform){var n=t.getBoundingRect(),i=n.calculateTransform(e);t.applyTransform(i)}}function ta(t){var e=t.shape,n=t.style.lineWidth;return Cg(2*e.x1)===Cg(2*e.x2)&&(e.x1=e.x2=na(e.x1,n,!0)),Cg(2*e.y1)===Cg(2*e.y2)&&(e.y1=e.y2=na(e.y1,n,!0)),t}function ea(t){var e=t.shape,n=t.style.lineWidth,i=e.x,r=e.y,a=e.width,o=e.height;return e.x=na(e.x,n,!0),e.y=na(e.y,n,!0),e.width=Math.max(na(i+a,n,!1)-e.x,0===a?0:1),e.height=Math.max(na(r+o,n,!1)-e.y,0===o?0:1),t}function na(t,e,n){var i=Cg(2*t);return(i+Cg(e))%2===0?i/2:(i+(n?1:-1))/2}function ia(t){return null!=t&&"none"!==t}function ra(t){if("string"!=typeof t)return t;var e=Pg.get(t);return e||(e=Xe(t,-.1),1e4>Og&&(Pg.set(t,e),Og++)),e}function aa(t){if(t.__hoverStlDirty){t.__hoverStlDirty=!1;var e=t.__hoverStl;if(!e)return void(t.__normalStl=null);var n=t.__normalStl={},i=t.style;for(var r in e)null!=e[r]&&(n[r]=i[r]);n.fill=i.fill,n.stroke=i.stroke}}function oa(t){var e=t.__hoverStl;if(e&&!t.__highlighted){var n=t.useHoverLayer;t.__highlighted=n?"layer":"plain";var i=t.__zr;if(i||!n){var r=t,a=t.style;n&&(r=i.addHover(t),a=r.style),ka(a),n||aa(r),a.extendFrom(e),sa(a,e,"fill"),sa(a,e,"stroke"),Ca(a),n||(t.dirty(!1),t.z2+=1)}}}function sa(t,e,n){!ia(e[n])&&ia(t[n])&&(t[n]=ra(t[n]))}function la(t){t.__highlighted&&(ua(t),t.__highlighted=!1)}function ua(t){var e=t.__highlighted;if("layer"===e)t.__zr&&t.__zr.removeHover(t);else if(e){var n=t.style,i=t.__normalStl;i&&(ka(n),t.setStyle(i),Ca(n),t.z2-=1)}}function ha(t,e){t.isGroup?t.traverse(function(t){!t.isGroup&&e(t)}):e(t)}function ca(t,e){e=t.__hoverStl=e!==!1&&(e||{}),t.__hoverStlDirty=!0,t.__highlighted&&(la(t),oa(t))}function fa(t){return t&&t.__isEmphasisEntered}function da(t){this.__hoverSilentOnTouch&&t.zrByTouch||!this.__isEmphasisEntered&&ha(this,oa)}function pa(t){this.__hoverSilentOnTouch&&t.zrByTouch||!this.__isEmphasisEntered&&ha(this,la)}function ga(){this.__isEmphasisEntered=!0,ha(this,oa)}function va(){this.__isEmphasisEntered=!1,ha(this,la)}function ma(t,e,n){t.isGroup?t.traverse(function(t){!t.isGroup&&ca(t,t.hoverStyle||e)}):ca(t,t.hoverStyle||e),ya(t,n)}function ya(t,e){var n=e===!1;if(t.__hoverSilentOnTouch=null!=e&&e.hoverSilentOnTouch,!n||t.__hoverStyleTrigger){var i=n?"off":"on";t[i]("mouseover",da)[i]("mouseout",pa),t[i]("emphasis",ga)[i]("normal",va),t.__hoverStyleTrigger=!n}}function _a(t,e,n,i,r,a,o){r=r||Dg;var s,l=r.labelFetcher,u=r.labelDataIndex,h=r.labelDimIndex,c=n.getShallow("show"),f=i.getShallow("show");(c||f)&&(l&&(s=l.getFormattedLabel(u,"normal",null,h)),null==s&&(s=w(r.defaultText)?r.defaultText(u,r):r.defaultText));var d=c?s:null,p=f?D(l?l.getFormattedLabel(u,"emphasis",null,h):null,s):null;(null!=d||null!=p)&&(xa(t,n,a,r),xa(e,i,o,r,!0)),t.text=d,e.text=p}function xa(t,e,n,i,r){return ba(t,e,i,r),n&&o(t,n),t}function wa(t,e,n){var i,r={isRectText:!0};n===!1?i=!0:r.autoColor=n,ba(t,e,r,i)}function ba(t,e,n,i){if(n=n||Dg,n.isRectText){var r=e.getShallow("position")||(i?null:"inside");"outside"===r&&(r="top"),t.textPosition=r,t.textOffset=e.getShallow("offset");var a=e.getShallow("rotate");null!=a&&(a*=Math.PI/180),t.textRotation=a,t.textDistance=D(e.getShallow("distance"),i?null:5)}var o,s=e.ecModel,l=s&&s.option.textStyle,u=Sa(e);if(u){o={};for(var h in u)if(u.hasOwnProperty(h)){var c=e.getModel(["rich",h]);Ma(o[h]={},c,l,n,i)}}return t.rich=o,Ma(t,e,l,n,i,!0),n.forceRich&&!n.textStyle&&(n.textStyle={}),t}function Sa(t){for(var e;t&&t!==t.ecModel;){var n=(t.option||Dg).rich;if(n){e=e||{};for(var i in n)n.hasOwnProperty(i)&&(e[i]=1)}t=t.parentModel}return e}function Ma(t,e,n,i,r,a){n=!r&&n||Dg,t.textFill=Ta(e.getShallow("color"),i)||n.color,t.textStroke=Ta(e.getShallow("textBorderColor"),i)||n.textBorderColor,t.textStrokeWidth=D(e.getShallow("textBorderWidth"),n.textBorderWidth),t.insideRawTextPosition=t.textPosition,r||(a&&(t.insideRollbackOpt=i,Ca(t)),null==t.textFill&&(t.textFill=i.autoColor)),t.fontStyle=e.getShallow("fontStyle")||n.fontStyle,t.fontWeight=e.getShallow("fontWeight")||n.fontWeight,t.fontSize=e.getShallow("fontSize")||n.fontSize,t.fontFamily=e.getShallow("fontFamily")||n.fontFamily,t.textAlign=e.getShallow("align"),t.textVerticalAlign=e.getShallow("verticalAlign")||e.getShallow("baseline"),t.textLineHeight=e.getShallow("lineHeight"),t.textWidth=e.getShallow("width"),t.textHeight=e.getShallow("height"),t.textTag=e.getShallow("tag"),a&&i.disableBox||(t.textBackgroundColor=Ta(e.getShallow("backgroundColor"),i),t.textPadding=e.getShallow("padding"),t.textBorderColor=Ta(e.getShallow("borderColor"),i),t.textBorderWidth=e.getShallow("borderWidth"),t.textBorderRadius=e.getShallow("borderRadius"),t.textBoxShadowColor=e.getShallow("shadowColor"),t.textBoxShadowBlur=e.getShallow("shadowBlur"),t.textBoxShadowOffsetX=e.getShallow("shadowOffsetX"),t.textBoxShadowOffsetY=e.getShallow("shadowOffsetY")),t.textShadowColor=e.getShallow("textShadowColor")||n.textShadowColor,t.textShadowBlur=e.getShallow("textShadowBlur")||n.textShadowBlur,t.textShadowOffsetX=e.getShallow("textShadowOffsetX")||n.textShadowOffsetX,t.textShadowOffsetY=e.getShallow("textShadowOffsetY")||n.textShadowOffsetY}function Ta(t,e){return"auto"!==t?t:e&&e.autoColor?e.autoColor:null}function Ca(t){var e=t.insideRollbackOpt;if(e&&null==t.textFill){var n,i=e.useInsideStyle,r=t.insideRawTextPosition,a=e.autoColor;i!==!1&&(i===!0||e.isRectText&&r&&"string"==typeof r&&r.indexOf("inside")>=0)?(n={textFill:null,textStroke:t.textStroke,textStrokeWidth:t.textStrokeWidth},t.textFill="#fff",null==t.textStroke&&(t.textStroke=a,null==t.textStrokeWidth&&(t.textStrokeWidth=2))):null!=a&&(n={textFill:null},t.textFill=a),n&&(t.insideRollback=n)}}function ka(t){var e=t.insideRollback;e&&(t.textFill=e.textFill,t.textStroke=e.textStroke,t.textStrokeWidth=e.textStrokeWidth,t.insideRollback=null)}function Ia(t,e){var n=e||e.getModel("textStyle");return E([t.fontStyle||n&&n.getShallow("fontStyle")||"",t.fontWeight||n&&n.getShallow("fontWeight")||"",(t.fontSize||n&&n.getShallow("fontSize")||12)+"px",t.fontFamily||n&&n.getShallow("fontFamily")||"sans-serif"].join(" "))}function Da(t,e,n,i,r,a){"function"==typeof r&&(a=r,r=null);var o=i&&i.isAnimationEnabled();if(o){var s=t?"Update":"",l=i.getShallow("animationDuration"+s),u=i.getShallow("animationEasing"+s),h=i.getShallow("animationDelay"+s);"function"==typeof h&&(h=h(r,i.getAnimationDelayParams?i.getAnimationDelayParams(e,r):null)),"function"==typeof l&&(l=l(r)),l>0?e.animateTo(n,l,h||0,u,a,!!a):(e.stopAnimation(),e.attr(n),a&&a())}else e.stopAnimation(),e.attr(n),a&&a()}function Aa(t,e,n,i,r){Da(!0,t,e,n,i,r)}function Pa(t,e,n,i,r){Da(!1,t,e,n,i,r)}function Oa(t,e){for(var n=be([]);t&&t!==e;)Me(n,t.getLocalTransform(),n),t=t.parent;return n}function La(t,e,n){return e&&!f(e)&&(e=xf.getLocalTransform(e)),n&&(e=Ie([],e)),ae([],t,e)}function Ea(t,e,n){var i=0===e[4]||0===e[5]||0===e[0]?1:Math.abs(2*e[4]/e[0]),r=0===e[4]||0===e[5]||0===e[2]?1:Math.abs(2*e[4]/e[2]),a=["left"===t?-i:"right"===t?i:0,"top"===t?-r:"bottom"===t?r:0];return a=La(a,e,n),Math.abs(a[0])>Math.abs(a[1])?a[0]>0?"right":"left":a[1]>0?"bottom":"top"}function Ra(t,e,n){function i(t){var e={};return t.traverse(function(t){!t.isGroup&&t.anid&&(e[t.anid]=t)}),e}function r(t){var e={position:G(t.position),rotation:t.rotation};return t.shape&&(e.shape=o({},t.shape)),e}if(t&&e){var a=i(t);e.traverse(function(t){if(!t.isGroup&&t.anid){var e=a[t.anid];if(e){var i=r(t);t.attr(r(e)),Aa(t,i,n,t.dataIndex)}}})}}function Ba(t,e){return p(t,function(t){var n=t[0];n=kg(n,e.x),n=Ig(n,e.x+e.width);var i=t[1];return i=kg(i,e.y),i=Ig(i,e.y+e.height),[n,i]})}function za(t,e){var n=kg(t.x,e.x),i=Ig(t.x+t.width,e.x+e.width),r=kg(t.y,e.y),a=Ig(t.y+t.height,e.y+e.height);return i>=n&&a>=r?{x:n,y:r,width:i-n,height:a-r}:void 0}function Fa(t,e,n){e=o({rectHover:!0},e);var i=e.style={strokeNoScale:!0};return n=n||{x:-1,y:-1,width:2,height:2},t?0===t.indexOf("image://")?(i.image=t.slice(8),s(i,n),new vi(e)):$r(t.replace("path://",""),e,n,"center"):void 0}function Na(t,e,n){this.parentModel=e,this.ecModel=n,this.option=t}function Va(t,e,n){for(var i=0;i=0&&n.push(t)}),n}t.topologicalTravel=function(t,e,i,r){function a(t){l[t].entryCount--,0===l[t].entryCount&&u.push(t)}function o(t){h[t]=!0,a(t)}if(t.length){var s=n(e),l=s.graph,u=s.noEntryList,h={};for(d(t,function(t){h[t]=!0});u.length;){var c=u.pop(),f=l[c],p=!!h[c];p&&(i.call(r,c,f.originalDeps.slice()),delete h[c]),d(f.successor,p?o:a)}d(h,function(){throw new Error("Circle dependency may exists")})}}}function Xa(t){return t.replace(/^\s+/,"").replace(/\s+$/,"")}function ja(t,e,n,i){var r=e[1]-e[0],a=n[1]-n[0];if(0===r)return 0===a?n[0]:(n[0]+n[1])/2;if(i)if(r>0){if(t<=e[0])return n[0];if(t>=e[1])return n[1]}else{if(t>=e[0])return n[0];if(t<=e[1])return n[1]}else{if(t===e[0])return n[0];if(t===e[1])return n[1]}return(t-e[0])/r*a+n[0]}function Ua(t,e){switch(t){case"center":case"middle":t="50%";break;case"left":case"top":t="0%";break;case"right":case"bottom":t="100%"}return"string"==typeof t?Xa(t).match(/%$/)?parseFloat(t)/100*e:parseFloat(t):null==t?0/0:+t}function Ya(t,e,n){return null==e&&(e=10),e=Math.min(Math.max(0,e),20),t=(+t).toFixed(e),n?t:+t}function Za(t){return t.sort(function(t,e){return t-e}),t}function $a(t){if(t=+t,isNaN(t))return 0;for(var e=1,n=0;Math.round(t*e)/e!==t;)e*=10,n++;return n}function Qa(t){var e=t.toString(),n=e.indexOf("e");if(n>0){var i=+e.slice(n+1);return 0>i?-i:0}var r=e.indexOf(".");return 0>r?0:e.length-1-r}function Ka(t,e){var n=Math.log,i=Math.LN10,r=Math.floor(n(t[1]-t[0])/i),a=Math.round(n(Math.abs(e[1]-e[0]))/i),o=Math.min(Math.max(-r+a,0),20);return isFinite(o)?o:20}function Ja(t,e,n){if(!t[e])return 0;var i=g(t,function(t,e){return t+(isNaN(e)?0:e)},0);if(0===i)return 0;for(var r=Math.pow(10,n),a=p(t,function(t){return(isNaN(t)?0:t)/i*r*100}),o=100*r,s=p(a,function(t){return Math.floor(t)}),l=g(s,function(t,e){return t+e},0),u=p(a,function(t,e){return t-s[e]});o>l;){for(var h=Number.NEGATIVE_INFINITY,c=null,f=0,d=u.length;d>f;++f)u[f]>h&&(h=u[f],c=f);++s[c],u[c]=0,++l}return s[e]/r}function to(t){var e=2*Math.PI;return(t%e+e)%e}function eo(t){return t>-Wg&&Wg>t}function no(t){if(t instanceof Date)return t;if("string"==typeof t){var e=Gg.exec(t);if(!e)return new Date(0/0);if(e[8]){var n=+e[4]||0;return"Z"!==e[8].toUpperCase()&&(n-=e[8].slice(0,3)),new Date(Date.UTC(+e[1],+(e[2]||1)-1,+e[3]||1,n,+(e[5]||0),+e[6]||0,+e[7]||0))}return new Date(+e[1],+(e[2]||1)-1,+e[3]||1,+e[4]||0,+(e[5]||0),+e[6]||0,+e[7]||0)}return new Date(null==t?0/0:Math.round(t))}function io(t){return Math.pow(10,ro(t))}function ro(t){return Math.floor(Math.log(t)/Math.LN10)}function ao(t,e){var n,i=ro(t),r=Math.pow(10,i),a=t/r;return n=e?1.5>a?1:2.5>a?2:4>a?3:7>a?5:10:1>a?1:2>a?2:3>a?3:5>a?5:10,t=n*r,i>=-20?+t.toFixed(0>i?-i:0):t}function oo(t,e){var n=(t.length-1)*e+1,i=Math.floor(n),r=+t[i-1],a=n-i;return a?r+a*(t[i]-r):r}function so(t){function e(t,n,i){return t.interval[i]s;s++)a[s]<=n&&(a[s]=n,o[s]=s?1:1-i),n=a[s],i=o[s];a[0]===a[1]&&o[0]*o[1]!==1?t.splice(r,1):r++}return t}function lo(t){return t-parseFloat(t)>=0}function uo(t){return isNaN(t)?"-":(t=(t+"").split("."),t[0].replace(/(\d{1,3})(?=(?:\d{3})+(?!\d))/g,"$1,")+(t.length>1?"."+t[1]:""))}function ho(t,e){return t=(t||"").toLowerCase().replace(/-(.)/g,function(t,e){return e.toUpperCase()}),e&&t&&(t=t.charAt(0).toUpperCase()+t.slice(1)),t}function co(t){return null==t?"":(t+"").replace(jg,function(t,e){return Ug[e]})}function fo(t,e,n){x(e)||(e=[e]);var i=e.length;if(!i)return"";for(var r=e[0].$vars||[],a=0;as;s++)for(var l=0;l':'':{renderMode:r,content:"{marker"+a+"|} ",style:{color:n}}:"" +}function vo(t,e){return t+="","0000".substr(0,e-t.length)+t}function mo(t,e,n){("week"===t||"month"===t||"quarter"===t||"half-year"===t||"year"===t)&&(t="MM-dd\nyyyy");var i=no(e),r=n?"UTC":"",a=i["get"+r+"FullYear"](),o=i["get"+r+"Month"]()+1,s=i["get"+r+"Date"](),l=i["get"+r+"Hours"](),u=i["get"+r+"Minutes"](),h=i["get"+r+"Seconds"](),c=i["get"+r+"Milliseconds"]();return t=t.replace("MM",vo(o,2)).replace("M",o).replace("yyyy",a).replace("yy",a%100).replace("dd",vo(s,2)).replace("d",s).replace("hh",vo(l,2)).replace("h",l).replace("mm",vo(u,2)).replace("m",u).replace("ss",vo(h,2)).replace("s",h).replace("SSS",vo(c,3))}function yo(t){return t?t.charAt(0).toUpperCase()+t.substr(1):t}function _o(t,e,n,i,r){var a=0,o=0;null==i&&(i=1/0),null==r&&(r=1/0);var s=0;e.eachChild(function(l,u){var h,c,f=l.position,d=l.getBoundingRect(),p=e.childAt(u+1),g=p&&p.getBoundingRect();if("horizontal"===t){var v=d.width+(g?-g.x+d.x:0);h=a+v,h>i||l.newline?(a=0,h=v,o+=s+n,s=d.height):s=Math.max(s,d.height)}else{var m=d.height+(g?-g.y+d.y:0);c=o+m,c>r||l.newline?(a+=s+n,o=0,c=m,s=d.width):s=Math.max(s,d.width)}l.newline||(f[0]=a,f[1]=o,"horizontal"===t?a=h+n:o=c+n)})}function xo(t,e,n){n=Xg(n||0);var i=e.width,r=e.height,a=Ua(t.left,i),o=Ua(t.top,r),s=Ua(t.right,i),l=Ua(t.bottom,r),u=Ua(t.width,i),h=Ua(t.height,r),c=n[2]+n[0],f=n[1]+n[3],d=t.aspect;switch(isNaN(u)&&(u=i-s-f-a),isNaN(h)&&(h=r-l-c-o),null!=d&&(isNaN(u)&&isNaN(h)&&(d>i/r?u=.8*i:h=.8*r),isNaN(u)&&(u=d*h),isNaN(h)&&(h=u/d)),isNaN(a)&&(a=i-s-u-f),isNaN(o)&&(o=r-l-h-c),t.left||t.right){case"center":a=i/2-u/2-n[3];break;case"right":a=i-u-f}switch(t.top||t.bottom){case"middle":case"center":o=r/2-h/2-n[0];break;case"bottom":o=r-h-c}a=a||0,o=o||0,isNaN(u)&&(u=i-f-a-(s||0)),isNaN(h)&&(h=r-c-o-(l||0));var p=new gn(a+n[3],o+n[0],u,h);return p.margin=n,p}function wo(t,e,n){function i(n,i){var o={},l=0,u={},h=0,c=2;if(Jg(n,function(e){u[e]=t[e]}),Jg(n,function(t){r(e,t)&&(o[t]=u[t]=e[t]),a(o,t)&&l++,a(u,t)&&h++}),s[i])return a(e,n[1])?u[n[2]]=null:a(e,n[2])&&(u[n[1]]=null),u;if(h!==c&&l){if(l>=c)return o;for(var f=0;fi;i++)if(t[i].length>e)return t[i];return t[n-1]}function Co(t){var e=t.get("coordinateSystem"),n={coordSysName:e,coordSysDims:[],axisMap:F(),categoryAxisMap:F()},i=uv[e];return i?(i(t,n,n.axisMap,n.categoryAxisMap),n):void 0}function ko(t){return"category"===t.get("type")}function Io(t){this.fromDataset=t.fromDataset,this.data=t.data||(t.sourceFormat===dv?{}:[]),this.sourceFormat=t.sourceFormat||pv,this.seriesLayoutBy=t.seriesLayoutBy||vv,this.dimensionsDefine=t.dimensionsDefine,this.encodeDefine=t.encodeDefine&&F(t.encodeDefine),this.startIndex=t.startIndex||0,this.dimensionsDetectCount=t.dimensionsDetectCount}function Do(t){var e=t.option.source,n=pv;if(T(e))n=gv;else if(x(e)){0===e.length&&(n=cv);for(var i=0,r=e.length;r>i;i++){var a=e[i];if(null!=a){if(x(a)){n=cv;break}if(S(a)){n=fv;break}}}}else if(S(e)){for(var o in e)if(e.hasOwnProperty(o)&&f(e[o])){n=dv;break}}else if(null!=e)throw new Error("Invalid data");yv(t).sourceFormat=n}function Ao(t){return yv(t).source}function Po(t){yv(t).datasetMap=F()}function Oo(t){var e=t.option,n=e.data,i=T(n)?gv:hv,r=!1,a=e.seriesLayoutBy,o=e.sourceHeader,s=e.dimensions,l=Fo(t);if(l){var u=l.option;n=u.source,i=yv(l).sourceFormat,r=!0,a=a||u.seriesLayoutBy,null==o&&(o=u.sourceHeader),s=s||u.dimensions}var h=Lo(n,i,a,o,s),c=e.encode;!c&&l&&(c=zo(t,l,n,i,a,h)),yv(t).source=new Io({data:n,fromDataset:r,seriesLayoutBy:a,sourceFormat:i,dimensionsDefine:h.dimensionsDefine,startIndex:h.startIndex,dimensionsDetectCount:h.dimensionsDetectCount,encodeDefine:c})}function Lo(t,e,n,i,r){if(!t)return{dimensionsDefine:Eo(r)};var a,o,s;if(e===cv)"auto"===i||null==i?Ro(function(t){null!=t&&"-"!==t&&(b(t)?null==o&&(o=1):o=0)},n,t,10):o=i?1:0,r||1!==o||(r=[],Ro(function(t,e){r[e]=null!=t?t:""},n,t)),a=r?r.length:n===mv?t.length:t[0]?t[0].length:null;else if(e===fv)r||(r=Bo(t),s=!0);else if(e===dv)r||(r=[],s=!0,d(t,function(t,e){r.push(e)}));else if(e===hv){var l=Fi(t[0]);a=x(l)&&l.length||1}var u;return s&&d(r,function(t,e){"name"===(S(t)?t.name:t)&&(u=e)}),{startIndex:o,dimensionsDefine:Eo(r),dimensionsDetectCount:a,potentialNameDimIndex:u}}function Eo(t){if(t){var e=F();return p(t,function(t){if(t=o({},S(t)?t:{name:t}),null==t.name)return t;t.name+="",null==t.displayName&&(t.displayName=t.name);var n=e.get(t.name);return n?t.name+="-"+n.count++:e.set(t.name,{count:1}),t})}}function Ro(t,e,n,i){if(null==i&&(i=1/0),e===mv)for(var r=0;rr;r++)t(n[r]?n[r][0]:null,r);else for(var a=n[0]||[],r=0;rr;r++)t(a[r],r)}function Bo(t){for(var e,n=0;n_&&null==y;_++)Vo(n,i,r,a.dimensionsDefine,a.startIndex,_)||(y=_);if(null!=y){s.value=y;var x=a.potentialNameDimIndex||Math.max(y-1,0);u.push(x),l.push(x)}}return l.length&&(s.itemName=l),u.length&&(s.seriesName=u),s}function Fo(t){var e=t.option,n=e.data;return n?void 0:t.ecModel.getComponent("dataset",e.datasetIndex||0)}function No(t,e){return Vo(t.data,t.sourceFormat,t.seriesLayoutBy,t.dimensionsDefine,t.startIndex,e)}function Vo(t,e,n,i,r,a){function o(t){return null!=t&&isFinite(t)&&""!==t?!1:b(t)&&"-"!==t?!0:void 0}var s,l=5;if(T(t))return!1;var u;if(i&&(u=i[a],u=S(u)?u.name:u),e===cv)if(n===mv){for(var h=t[a],c=0;c<(h||[]).length&&l>c;c++)if(null!=(s=o(h[r+c])))return s}else for(var c=0;cc;c++){var f=t[r+c];if(f&&null!=(s=o(f[a])))return s}else if(e===fv){if(!u)return;for(var c=0;cc;c++){var d=t[c];if(d&&null!=(s=o(d[u])))return s}}else if(e===dv){if(!u)return;var h=t[u];if(!h||T(h))return!1;for(var c=0;cc;c++)if(null!=(s=o(h[c])))return s}else if(e===hv)for(var c=0;cc;c++){var d=t[c],p=Fi(d);if(!x(p))return!1;if(null!=(s=o(p[a])))return s}return!1}function Wo(t,e){if(e){var n=e.seiresIndex,i=e.seriesId,r=e.seriesName;return null!=n&&t.componentIndex!==n||null!=i&&t.id!==i||null!=r&&t.name!==r}}function Ho(t,e){var n=t.color&&!t.colorLayer;d(e,function(e,a){"colorLayer"===a&&n||rv.hasClass(a)||("object"==typeof e?t[a]=t[a]?r(t[a],e,!1):i(e):null==t[a]&&(t[a]=e))})}function Go(t){t=t,this.option={},this.option[_v]=1,this._componentsMap=F({series:[]}),this._seriesIndices,this._seriesIndicesMap,Ho(t,this._theme.option),r(t,ov,!1),this.mergeOption(t)}function qo(t,e){x(e)||(e=e?[e]:[]);var n={};return d(e,function(e){n[e]=(t.get(e)||[]).slice()}),n}function Xo(t,e,n){var i=e.type?e.type:n?n.subType:rv.determineSubType(t,e);return i}function jo(t,e){t._seriesIndicesMap=F(t._seriesIndices=p(e,function(t){return t.componentIndex})||[])}function Uo(t,e){return e.hasOwnProperty("subType")?v(t,function(t){return t.subType===e.subType}):t}function Yo(t){d(wv,function(e){this[e]=y(t[e],t)},this)}function Zo(){this._coordinateSystems=[]}function $o(t){this._api=t,this._timelineOptions=[],this._mediaList=[],this._mediaDefault,this._currentMediaIndices=[],this._optionBackup,this._newBaseOption}function Qo(t,e,n){var i,r,a=[],o=[],s=t.timeline;if(t.baseOption&&(r=t.baseOption),(s||t.options)&&(r=r||{},a=(t.options||[]).slice()),t.media){r=r||{};var l=t.media;Sv(l,function(t){t&&t.option&&(t.query?o.push(t):i||(i=t))})}return r||(r=t),r.timeline||(r.timeline=s),Sv([r].concat(a).concat(p(o,function(t){return t.option})),function(t){Sv(e,function(e){e(t,n)})}),{baseOption:r,timelineOptions:a,mediaDefault:i,mediaList:o}}function Ko(t,e,n){var i={width:e,height:n,aspectratio:e/n},r=!0;return d(t,function(t,e){var n=e.match(kv);if(n&&n[1]&&n[2]){var a=n[1],o=n[2].toLowerCase();Jo(i[o],t,a)||(r=!1)}}),r}function Jo(t,e,n){return"min"===n?t>=e:"max"===n?e>=t:t===e}function ts(t,e){return t.join(",")===e.join(",")}function es(t,e){e=e||{},Sv(e,function(e,n){if(null!=e){var i=t[n];if(rv.hasClass(n)){e=Bi(e),i=Bi(i);var r=Vi(i,e);t[n]=Tv(r,function(t){return t.option&&t.exist?Cv(t.exist,t.option,!0):t.exist||t.option})}else t[n]=Cv(i,e,!0)}})}function ns(t){var e=t&&t.itemStyle;if(e)for(var n=0,i=Av.length;i>n;n++){var a=Av[n],o=e.normal,s=e.emphasis;o&&o[a]&&(t[a]=t[a]||{},t[a].normal?r(t[a].normal,o[a]):t[a].normal=o[a],o[a]=null),s&&s[a]&&(t[a]=t[a]||{},t[a].emphasis?r(t[a].emphasis,s[a]):t[a].emphasis=s[a],s[a]=null)}}function is(t,e,n){if(t&&t[e]&&(t[e].normal||t[e].emphasis)){var i=t[e].normal,r=t[e].emphasis;i&&(n?(t[e].normal=t[e].emphasis=null,s(t[e],i)):t[e]=i),r&&(t.emphasis=t.emphasis||{},t.emphasis[e]=r)}}function rs(t){is(t,"itemStyle"),is(t,"lineStyle"),is(t,"areaStyle"),is(t,"label"),is(t,"labelLine"),is(t,"upperLabel"),is(t,"edgeLabel")}function as(t,e){var n=Dv(t)&&t[e],i=Dv(n)&&n.textStyle;if(i)for(var r=0,a=Yd.length;a>r;r++){var e=Yd[r];i.hasOwnProperty(e)&&(n[e]=i[e])}}function os(t){t&&(rs(t),as(t,"label"),t.emphasis&&as(t.emphasis,"label"))}function ss(t){if(Dv(t)){ns(t),rs(t),as(t,"label"),as(t,"upperLabel"),as(t,"edgeLabel"),t.emphasis&&(as(t.emphasis,"label"),as(t.emphasis,"upperLabel"),as(t.emphasis,"edgeLabel"));var e=t.markPoint;e&&(ns(e),os(e));var n=t.markLine;n&&(ns(n),os(n));var i=t.markArea;i&&os(i);var r=t.data;if("graph"===t.type){r=r||t.nodes;var a=t.links||t.edges;if(a&&!T(a))for(var o=0;o=0;p--){var g=t[p];if(s||(f=g.data.rawIndexOf(g.stackedByDimension,c)),f>=0){var v=g.data.getByRawIndex(g.stackResultDimension,f);if(h>=0&&v>0||0>=h&&0>v){h+=v,d=v;break}}}return i[0]=h,i[1]=d,i});o.hostModel.setData(l),e.data=l})}function ps(t,e){Io.isInstance(t)||(t=Io.seriesDataToSource(t)),this._source=t;var n=this._data=t.data,i=t.sourceFormat;i===gv&&(this._offset=0,this._dimSize=e,this._data=n);var r=zv[i===cv?i+"_"+t.seriesLayoutBy:i];o(this,r)}function gs(){return this._data.length}function vs(t){return this._data[t]}function ms(t){for(var e=0;ee.outputData.count()&&e.model.getRawData().cloneShallow(e.outputData)}function Ps(t,e){d(t.CHANGABLE_METHODS,function(n){t.wrapMethod(n,_(Os,e))})}function Os(t){var e=Ls(t);e&&e.setOutputEnd(this.count())}function Ls(t){var e=(t.ecModel||{}).scheduler,n=e&&e.getPipeline(t.uid);if(n){var i=n.currentTask;if(i){var r=i.agentStubMap;r&&(i=r.get(t.uid))}return i}}function Es(){this.group=new Zf,this.uid=Ha("viewChart"),this.renderTask=bs({plan:zs,reset:Fs}),this.renderTask.context={view:this}}function Rs(t,e){if(t&&(t.trigger(e),"group"===t.type))for(var n=0;n=0?i():c=setTimeout(i,-a),u=r};return f.clear=function(){c&&(clearTimeout(c),c=null)},f.debounceNextCall=function(t){l=t},f}function Vs(t,e,n,i){this.ecInstance=t,this.api=e,this.unfinished;var n=this._dataProcessorHandlers=n.slice(),i=this._visualHandlers=i.slice();this._allHandlers=n.concat(i),this._stageTaskMap=F()}function Ws(t,e,n,i,r){function a(t,e){return t.setDirty&&(!t.dirtyMap||t.dirtyMap.get(e.__pipeline.id))}r=r||{};var o;d(e,function(e){if(!r.visualType||r.visualType===e.visualType){var s=t._stageTaskMap.get(e.uid),l=s.seriesTaskMap,u=s.overallTask;if(u){var h,c=u.agentStubMap;c.each(function(t){a(r,t)&&(t.dirty(),h=!0)}),h&&u.dirty(),am(u,i);var f=t.getPerformArgs(u,r.block);c.each(function(t){t.perform(f)}),o|=u.perform(f)}else l&&l.each(function(s){a(r,s)&&s.dirty();var l=t.getPerformArgs(s,r.block);l.skip=!e.performRawSeries&&n.isSeriesFiltered(s.context.model),am(s,i),o|=s.perform(l)})}}),t.unfinished|=o}function Hs(t,e,n,i,r){function a(n){var a=n.uid,s=o.get(a)||o.set(a,bs({plan:Ys,reset:Zs,count:Qs}));s.context={model:n,ecModel:i,api:r,useClearVisual:e.isVisual&&!e.isLayout,plan:e.plan,reset:e.reset,scheduler:t},Ks(t,n,s)}var o=n.seriesTaskMap||(n.seriesTaskMap=F()),s=e.seriesType,l=e.getTargetSeries;e.createOnAllSeries?i.eachRawSeries(a):s?i.eachRawSeriesByType(s,a):l&&l(i,r).each(a);var u=t._pipelineMap;o.each(function(t,e){u.get(e)||(t.dispose(),o.removeKey(e))})}function Gs(t,e,n,i,r){function a(e){var n=e.uid,i=s.get(n);i||(i=s.set(n,bs({reset:Xs,onDirty:Us})),o.dirty()),i.context={model:e,overallProgress:h,modifyOutputEnd:c},i.agent=o,i.__block=h,Ks(t,e,i)}var o=n.overallTask=n.overallTask||bs({reset:qs});o.context={ecModel:i,api:r,overallReset:e.overallReset,scheduler:t};var s=o.agentStubMap=o.agentStubMap||F(),l=e.seriesType,u=e.getTargetSeries,h=!0,c=e.modifyOutputEnd;l?i.eachRawSeriesByType(l,a):u?u(i,r).each(a):(h=!1,d(i.getSeries(),a));var f=t._pipelineMap;s.each(function(t,e){f.get(e)||(t.dispose(),o.dirty(),s.removeKey(e))})}function qs(t){t.overallReset(t.ecModel,t.api,t.payload)}function Xs(t){return t.overallProgress&&js}function js(){this.agent.dirty(),this.getDownstream().dirty()}function Us(){this.agent&&this.agent.dirty()}function Ys(t){return t.plan&&t.plan(t.model,t.ecModel,t.api,t.payload)}function Zs(t){t.useClearVisual&&t.data.clearAllVisual();var e=t.resetDefines=Bi(t.reset(t.model,t.ecModel,t.api,t.payload));return e.length>1?p(e,function(t,e){return $s(e)}):om}function $s(t){return function(e,n){var i=n.data,r=n.resetDefines[t];if(r&&r.dataEach)for(var a=e.start;a0?parseInt(i,10)/100:i?parseFloat(i):0;var r=n.getAttribute("stop-color")||"#000000";e.addColorStop(i,r)}n=n.nextSibling}}function rl(t,e){t&&t.__inheritedStyle&&(e.__inheritedStyle||(e.__inheritedStyle={}),s(e.__inheritedStyle,t.__inheritedStyle))}function al(t){for(var e=E(t).split(mm),n=[],i=0;i0;a-=2){var o=r[a],s=r[a-1];switch(i=i||we(),s){case"translate":o=E(o).split(mm),Te(i,i,[parseFloat(o[0]),parseFloat(o[1]||0)]);break;case"scale":o=E(o).split(mm),ke(i,i,[parseFloat(o[0]),parseFloat(o[1]||o[0])]);break;case"rotate":o=E(o).split(mm),Ce(i,i,parseFloat(o[0]));break;case"skew":o=E(o).split(mm),console.warn("Skew transform is not supported yet");break;case"matrix":var o=E(o).split(mm);i[0]=parseFloat(o[0]),i[1]=parseFloat(o[1]),i[2]=parseFloat(o[2]),i[3]=parseFloat(o[3]),i[4]=parseFloat(o[4]),i[5]=parseFloat(o[5])}}}e.setLocalTransform(i)}function ul(t){var e=t.getAttribute("style"),n={};if(!e)return n;var i={};Sm.lastIndex=0;for(var r;null!=(r=Sm.exec(e));)i[r[1]]=r[2];for(var a in xm)xm.hasOwnProperty(a)&&null!=i[a]&&(n[xm[a]]=i[a]);return n}function hl(t,e,n){var i=e/t.width,r=n/t.height,a=Math.min(i,r),o=[a,a],s=[-(t.x+t.width/2)*a+e/2,-(t.y+t.height/2)*a+n/2];return{scale:o,position:s}}function cl(t){return function(e,n,i){e=e&&e.toLowerCase(),uf.prototype[t].call(this,e,n,i)}}function fl(){uf.call(this)}function dl(t,e,n){function r(t,e){return t.__prio-e.__prio}n=n||{},"string"==typeof e&&(e=ey[e]),this.id,this.group,this._dom=t;var a="canvas",o=this._zr=Pi(t,{renderer:n.renderer||a,devicePixelRatio:n.devicePixelRatio,width:n.width,height:n.height});this._throttledZrFlush=Ns(y(o.flush,o),17);var e=i(e);e&&Ev(e,!0),this._theme=e,this._chartsViews=[],this._chartsMap={},this._componentsViews=[],this._componentsMap={},this._coordSysMgr=new Zo;var s=this._api=Pl(this);Sn(ty,r),Sn(Qm,r),this._scheduler=new Vs(this,s,Qm,ty),uf.call(this,this._ecEventProcessor=new Ol),this._messageCenter=new fl,this._initEvents(),this.resize=y(this.resize,this),this._pendingActions=[],o.animation.on("frame",this._onframe,this),wl(o,this),R(this)}function pl(t,e,n){var i,r=this._model,a=this._coordSysMgr.getCoordinateSystems();e=ji(r,e);for(var o=0;oe.get("hoverLayerThreshold")&&!Vc.node&&n.traverse(function(t){t.isGroup||(t.useHoverLayer=!0)})}function Dl(t,e){var n=t.get("blendMode")||null;e.group.traverse(function(t){t.isGroup||t.style.blend!==n&&t.setStyle("blend",n),t.eachPendingDisplayable&&t.eachPendingDisplayable(function(t){t.setStyle("blend",n)})})}function Al(t,e){var n=t.get("z"),i=t.get("zlevel");e.group.traverse(function(t){"group"!==t.type&&(null!=n&&(t.z=n),null!=i&&(t.zlevel=i))})}function Pl(t){var e=t._coordSysMgr;return o(new Yo(t),{getCoordinateSystems:y(e.getCoordinateSystems,e),getComponentByElement:function(e){for(;e;){var n=e.__ecComponentInfo;if(null!=n)return t._model.getComponent(n.mainType,n.index);e=e.parent}}})}function Ol(){this.eventInfo}function Ll(t){function e(t,e){for(var n=0;n65535?gy:vy}function cu(t){var e=t.constructor;return e===Array?t.slice():new e(t)}function fu(t,e){d(my.concat(e.__wrappedMethods||[]),function(n){e.hasOwnProperty(n)&&(t[n]=e[n])}),t.__wrappedMethods=e.__wrappedMethods,d(yy,function(n){t[n]=i(e[n])}),t._calculationInfo=o(e._calculationInfo)}function du(t){var e=t._invertedIndicesMap;d(e,function(n,i){var r=t._dimensionInfos[i],a=r.ordinalMeta;if(a){n=e[i]=new gy(a.categories.length);for(var o=0;o=0?this._indices[t]:-1}function mu(t,e){var n=t._idList[e];return null==n&&(n=pu(t,t._idDimIdx,e)),null==n&&(n=dy+e),n}function yu(t){return x(t)||(t=[t]),t}function _u(t,e){var n=t.dimensions,i=new _y(p(n,t.getDimensionInfo,t),t.hostModel);fu(i,t);for(var r=i._storage={},a=t._storage,o=0;o=0?(r[s]=xu(a[s]),i._rawExtent[s]=wu(),i._extent[s]=null):r[s]=a[s])}return i}function xu(t){for(var e=new Array(t.length),n=0;np;p++){var g=a[p]=o({},S(a[p])?a[p]:{name:a[p]}),v=g.name,m=c[p]={otherDims:{}};null!=v&&null==u.get(v)&&(m.name=m.displayName=v,u.set(v,p)),null!=g.type&&(m.type=g.type),null!=g.displayName&&(m.displayName=g.displayName)}l.each(function(t,e){if(t=Bi(t).slice(),1===t.length&&t[0]<0)return void l.set(e,!1);var n=l.set(e,[]);d(t,function(t,i){b(t)&&(t=u.get(t)),null!=t&&f>t&&(n[i]=t,r(c[t],e,i))})});var y=0;d(t,function(t){var e,t,n,a;if(b(t))e=t,t={};else{e=t.name;var o=t.ordinalMeta;t.ordinalMeta=null,t=i(t),t.ordinalMeta=o,n=t.dimsDef,a=t.otherDims,t.name=t.coordDim=t.coordDimIndex=t.dimsDef=t.otherDims=null}var u=l.get(e);if(u!==!1){var u=Bi(u);if(!u.length)for(var h=0;h<(n&&n.length||1);h++){for(;yT;T++){var m=c[T]=c[T]||{},C=m.coordDim;null==C&&(m.coordDim=Mu(M,h,w),m.coordDimIndex=0,(!_||0>=x)&&(m.isExtraCoord=!0),x--),null==m.name&&(m.name=Mu(m.coordDim,u)),null==m.type&&No(e,T,m.name)&&(m.type="ordinal")}return c}function Su(t,e,n,i){var r=Math.max(t.dimensionsDetectCount||1,e.length,n.length,i||0);return d(e,function(t){var e=t.dimsDef;e&&(r=Math.max(r,e.length))}),r}function Mu(t,e,n){if(n||null!=e.get(t)){for(var i=0;null!=e.get(t+i);)i++;t+=i}return e.set(t,!0),t}function Tu(t,e,n){n=n||{};var i,r,a,o,s=n.byIndex,l=n.stackedCoordDimension,u=!(!t||!t.get("stack"));if(d(e,function(t,n){b(t)&&(e[n]=t={name:t}),u&&!t.isExtraCoord&&(s||i||!t.ordinalMeta||(i=t),r||"ordinal"===t.type||"time"===t.type||l&&l!==t.coordDim||(r=t))}),!r||s||i||(s=!0),r){a="__\x00ecstackresult",o="__\x00ecstackedover",i&&(i.createInvertedIndices=!0); +var h=r.coordDim,c=r.type,f=0;d(e,function(t){t.coordDim===h&&f++}),e.push({name:a,coordDim:h,coordDimIndex:f,type:c,isExtraCoord:!0,isCalculationCoord:!0}),f++,e.push({name:o,coordDim:o,coordDimIndex:f,type:c,isExtraCoord:!0,isCalculationCoord:!0})}return{stackedDimension:r&&r.name,stackedByDimension:i&&i.name,isStackedByIndex:s,stackedOverDimension:o,stackResultDimension:a}}function Cu(t,e){return!!e&&e===t.getCalculationInfo("stackedDimension")}function ku(t,e){return Cu(t,e)?t.getCalculationInfo("stackResultDimension"):e}function Iu(t,e,n){n=n||{},Io.isInstance(t)||(t=Io.seriesDataToSource(t));var i,r=e.get("coordinateSystem"),a=Zo.get(r),o=Co(e);o&&(i=p(o.coordSysDims,function(t){var e={name:t},n=o.axisMap.get(t);if(n){var i=n.get("type");e.type=lu(i)}return e})),i||(i=a&&(a.getDimensionsInfo?a.getDimensionsInfo():a.dimensions.slice())||["x","y"]);var s,l,u=by(t,{coordDimensions:i,generateCoord:n.generateCoord});o&&d(u,function(t,e){var n=t.coordDim,i=o.categoryAxisMap.get(n);i&&(null==s&&(s=e),t.ordinalMeta=i.getOrdinalMeta()),null!=t.otherDims.itemName&&(l=!0)}),l||null==s||(u[s].otherDims.itemName=0);var h=Tu(e,u),c=new _y(u,e);c.setCalculationInfo(h);var f=null!=s&&Du(t)?function(t,e,n,i){return i===s?n:this.defaultDimValueGetter(t,e,n,i)}:null;return c.hasItemOption=!1,c.initData(t,null,f),c}function Du(t){if(t.sourceFormat===hv){var e=Au(t.data||[]);return null!=e&&!x(Fi(e))}}function Au(t){for(var e=0;eo&&(o=r.interval=n),null!=i&&o>i&&(o=r.interval=i);var s=r.intervalPrecision=Bu(o),l=r.niceTickExtent=[Cy(Math.ceil(t[0]/o)*o,s),Cy(Math.floor(t[1]/o)*o,s)];return Fu(l,t),r}function Bu(t){return Qa(t)+2}function zu(t,e,n){t[e]=Math.max(Math.min(t[e],n[1]),n[0])}function Fu(t,e){!isFinite(t[0])&&(t[0]=e[0]),!isFinite(t[1])&&(t[1]=e[1]),zu(t,0,e),zu(t,1,e),t[0]>t[1]&&(t[0]=t[1])}function Nu(t,e,n,i){var r=[];if(!t)return r;var a=1e4;e[0]a)return[];return e[1]>(r.length?r[r.length-1]:n[1])&&r.push(e[1]),r}function Vu(t){return t.get("stack")||Dy+t.seriesIndex}function Wu(t){return t.dim+t.index}function Hu(t,e){var n=[];return e.eachSeriesByType(t,function(t){ju(t)&&!Uu(t)&&n.push(t)}),n}function Gu(t){var e=[];return d(t,function(t){var n=t.getData(),i=t.coordinateSystem,r=i.getBaseAxis(),a=r.getExtent(),o="category"===r.type?r.getBandWidth():Math.abs(a[1]-a[0])/n.count(),s=Ua(t.get("barWidth"),o),l=Ua(t.get("barMaxWidth"),o),u=t.get("barGap"),h=t.get("barCategoryGap");e.push({bandWidth:o,barWidth:s,barMaxWidth:l,barGap:u,barCategoryGap:h,axisKey:Wu(r),stackId:Vu(t)})}),qu(e)}function qu(t){var e={};d(t,function(t){var n=t.axisKey,i=t.bandWidth,r=e[n]||{bandWidth:i,remainedWidth:i,autoWidthCount:0,categoryGap:"20%",gap:"30%",stacks:{}},a=r.stacks;e[n]=r;var o=t.stackId;a[o]||r.autoWidthCount++,a[o]=a[o]||{width:0,maxWidth:0};var s=t.barWidth;s&&!a[o].width&&(a[o].width=s,s=Math.min(r.remainedWidth,s),r.remainedWidth-=s);var l=t.barMaxWidth;l&&(a[o].maxWidth=l);var u=t.barGap;null!=u&&(r.gap=u);var h=t.barCategoryGap;null!=h&&(r.categoryGap=h)});var n={};return d(e,function(t,e){n[e]={};var i=t.stacks,r=t.bandWidth,a=Ua(t.categoryGap,r),o=Ua(t.gap,1),s=t.remainedWidth,l=t.autoWidthCount,u=(s-a)/(l+(l-1)*o);u=Math.max(u,0),d(i,function(t){var e=t.maxWidth;e&&u>e&&(e=Math.min(e,s),t.width&&(e=Math.min(e,t.width)),s-=e,t.width=e,l--)}),u=(s-a)/(l+(l-1)*o),u=Math.max(u,0);var h,c=0;d(i,function(t){t.width||(t.width=u),h=t,c+=t.width*(1+o)}),h&&(c-=h.width*o);var f=-c/2;d(i,function(t,i){n[e][i]=n[e][i]||{offset:f,width:t.width},f+=t.width*(1+o)})}),n}function Xu(t,e,n){if(t&&e){var i=t[Wu(e)];return null!=i&&null!=n&&(i=i[Vu(n)]),i}}function ju(t){return t.coordinateSystem&&"cartesian2d"===t.coordinateSystem.type}function Uu(t){return t.pipelineContext&&t.pipelineContext.large}function Yu(t,e){var n,i,r=e.getGlobalExtent();r[0]>r[1]?(n=r[1],i=r[0]):(n=r[0],i=r[1]);var a=e.toGlobalCoord(e.dataToCoord(0));return n>a&&(a=n),a>i&&(a=i),a}function Zu(t,e){return Xy(t,qy(e))}function $u(t,e){var n,i,r,a=t.type,o=e.getMin(),s=e.getMax(),l=null!=o,u=null!=s,h=t.getExtent();"ordinal"===a?n=e.getCategories().length:(i=e.get("boundaryGap"),x(i)||(i=[i||0,i||0]),"boolean"==typeof i[0]&&(i=[0,0]),i[0]=Ua(i[0],1),i[1]=Ua(i[1],1),r=h[1]-h[0]||Math.abs(h[0])),null==o&&(o="ordinal"===a?n?0:0/0:h[0]-i[0]*r),null==s&&(s="ordinal"===a?n?n-1:0/0:h[1]+i[1]*r),"dataMin"===o?o=h[0]:"function"==typeof o&&(o=o({min:h[0],max:h[1]})),"dataMax"===s?s=h[1]:"function"==typeof s&&(s=s({min:h[0],max:h[1]})),(null==o||!isFinite(o))&&(o=0/0),(null==s||!isFinite(s))&&(s=0/0),t.setBlank(k(o)||k(s)||"ordinal"===a&&!t.getOrdinalMeta().categories.length),e.getNeedCrossZero()&&(o>0&&s>0&&!l&&(o=0),0>o&&0>s&&!u&&(s=0));var c=e.ecModel;if(c&&"time"===a){var f,p=Hu("bar",c);if(d(p,function(t){f|=t.getBaseAxis()===e.axis}),f){var g=Gu(p),v=Qu(o,s,e,g);o=v.min,s=v.max}}return[o,s]}function Qu(t,e,n,i){var r=n.axis.getExtent(),a=r[1]-r[0],o=Xu(i,n.axis);if(void 0===o)return{min:t,max:e};var s=1/0;d(o,function(t){s=Math.min(t.offset,s)});var l=-1/0;d(o,function(t){l=Math.max(t.offset+t.width,l)}),s=Math.abs(s),l=Math.abs(l);var u=s+l,h=e-t,c=1-(s+l)/a,f=h/c-h;return e+=f*(l/u),t-=f*(s/u),{min:t,max:e}}function Ku(t,e){var n=$u(t,e),i=null!=e.getMin(),r=null!=e.getMax(),a=e.get("splitNumber");"log"===t.type&&(t.base=e.get("logBase"));var o=t.type;t.setExtent(n[0],n[1]),t.niceExtent({splitNumber:a,fixMin:i,fixMax:r,minInterval:"interval"===o||"time"===o?e.get("minInterval"):null,maxInterval:"interval"===o||"time"===o?e.get("maxInterval"):null});var s=e.get("interval");null!=s&&t.setInterval&&t.setInterval(s)}function Ju(t,e){if(e=e||t.get("type"))switch(e){case"category":return new Ty(t.getOrdinalMeta?t.getOrdinalMeta():t.getCategories(),[1/0,-1/0]);case"value":return new Iy;default:return(Pu.getClass(e)||Iy).create(t)}}function th(t){var e=t.scale.getExtent(),n=e[0],i=e[1];return!(n>0&&i>0||0>n&&0>i)}function eh(t){var e=t.getLabelModel().get("formatter"),n="category"===t.type?t.scale.getExtent()[0]:null;return"string"==typeof e?e=function(e){return function(n){return n=t.scale.getLabel(n),e.replace("{value}",null!=n?n:"")}}(e):"function"==typeof e?function(i,r){return null!=n&&(r=i-n),e(nh(t,i),r)}:function(e){return t.scale.getLabel(e)}}function nh(t,e){return"category"===t.type?t.scale.getLabel(e):e}function ih(t){var e=t.model,n=t.scale;if(e.get("axisLabel.show")&&!n.isBlank()){var i,r,a="category"===t.type,o=n.getExtent();a?r=n.count():(i=n.getTicks(),r=i.length);var s,l=t.getLabelModel(),u=eh(t),h=1;r>40&&(h=Math.ceil(r/40));for(var c=0;r>c;c+=h){var f=i?i[c]:o[0]+c,d=u(f),p=l.getTextRect(d),g=rh(p,l.get("rotate")||0);s?s.union(g):s=g}return s}}function rh(t,e){var n=e*Math.PI/180,i=t.plain(),r=i.width,a=i.height,o=r*Math.cos(n)+a*Math.sin(n),s=r*Math.sin(n)+a*Math.cos(n),l=new gn(i.x,i.y,o,s);return l}function ah(t,e){if("image"!==this.type){var n=this.style,i=this.shape;i&&"line"===i.symbolType?n.stroke=t:this.__isEmptyBrush?(n.stroke=t,n.fill=e||"#fff"):(n.fill&&(n.fill=t),n.stroke&&(n.stroke=t)),this.dirty(!1)}}function oh(t,e,n,i,r,a,o){var s=0===t.indexOf("empty");s&&(t=t.substr(5,1).toLowerCase()+t.substr(6));var l;return l=0===t.indexOf("image://")?Qr(t.slice(8),new gn(e,n,i,r),o?"center":"cover"):0===t.indexOf("path://")?$r(t.slice(7),{},new gn(e,n,i,r),o?"center":"cover"):new a_({shape:{symbolType:t,x:e,y:n,width:i,height:r}}),l.__isEmptyBrush=s,l.setColor=ah,l.setColor(a),l}function sh(t){return Iu(t.getSource(),t)}function lh(t,e){var n=e;Na.isInstance(e)||(n=new Na(e),c(n,Qy));var i=Ju(n);return i.setExtent(t[0],t[1]),Ku(i,n),i}function uh(t){c(t,Qy)}function hh(t,e){return Math.abs(t-e)>1^-(1&s),l=l>>1^-(1&l),s+=r,l+=a,r=s,a=l,i.push([s/n,l/n])}return i}function gh(t){return"category"===t.type?mh(t):xh(t)}function vh(t,e){return"category"===t.type?_h(t,e):{ticks:t.scale.getTicks()}}function mh(t){var e=t.getLabelModel(),n=yh(t,e);return!e.get("show")||t.scale.isBlank()?{labels:[],labelCategoryInterval:n.labelCategoryInterval}:n}function yh(t,e){var n=wh(t,"labels"),i=Dh(e),r=bh(n,i);if(r)return r;var a,o;return w(i)?a=Ih(t,i):(o="auto"===i?Mh(t):i,a=kh(t,o)),Sh(n,i,{labels:a,labelCategoryInterval:o})}function _h(t,e){var n=wh(t,"ticks"),i=Dh(e),r=bh(n,i);if(r)return r;var a,o;if((!e.get("show")||t.scale.isBlank())&&(a=[]),w(i))a=Ih(t,i,!0);else if("auto"===i){var s=yh(t,t.getLabelModel());o=s.labelCategoryInterval,a=p(s.labels,function(t){return t.tickValue})}else o=i,a=kh(t,o,!0);return Sh(n,i,{ticks:a,tickCategoryInterval:o})}function xh(t){var e=t.scale.getTicks(),n=eh(t);return{labels:p(e,function(e,i){return{formattedLabel:n(e,i),rawLabel:t.scale.getLabel(e),tickValue:e}})}}function wh(t,e){return h_(t)[e]||(h_(t)[e]=[])}function bh(t,e){for(var n=0;n40&&(s=Math.max(1,Math.floor(o/40)));for(var l=a[0],u=t.dataToCoord(l+1)-t.dataToCoord(l),h=Math.abs(u*Math.cos(i)),c=Math.abs(u*Math.sin(i)),f=0,d=0;l<=a[1];l+=s){var p=0,g=0,v=En(n(l),e.font,"center","top");p=1.3*v.width,g=1.3*v.height,f=Math.max(f,p,7),d=Math.max(d,g,7)}var m=f/h,y=d/c;isNaN(m)&&(m=1/0),isNaN(y)&&(y=1/0);var _=Math.max(0,Math.floor(Math.min(m,y))),x=h_(t.model),w=x.lastAutoInterval,b=x.lastTickCount;return null!=w&&null!=b&&Math.abs(w-_)<=1&&Math.abs(b-o)<=1&&w>_?_=w:(x.lastTickCount=o,x.lastAutoInterval=_),_}function Ch(t){var e=t.getLabelModel();return{axisRotate:t.getRotate?t.getRotate():t.isHorizontal&&!t.isHorizontal()?90:0,labelRotate:e.get("rotate")||0,font:e.getFont()}}function kh(t,e,n){function i(t){l.push(n?t:{formattedLabel:r(t),rawLabel:a.getLabel(t),tickValue:t})}var r=eh(t),a=t.scale,o=a.getExtent(),s=t.getLabelModel(),l=[],u=Math.max((e||0)+1,1),h=o[0],c=a.count();0!==h&&u>1&&c/u>2&&(h=Math.round(Math.ceil(h/u)*u));var f={min:s.get("showMinLabel"),max:s.get("showMaxLabel")};f.min&&h!==o[0]&&i(o[0]);for(var d=h;d<=o[1];d+=u)i(d);return f.max&&d!==o[1]&&i(o[1]),l}function Ih(t,e,n){var i=t.scale,r=eh(t),a=[];return d(i.getTicks(),function(t){var o=i.getLabel(t);e(t,o)&&a.push(n?t:{formattedLabel:r(t),rawLabel:o,tickValue:t})}),a}function Dh(t){var e=t.get("interval");return null==e?"auto":e}function Ah(t,e){var n=t[1]-t[0],i=e,r=n/i/2;t[0]+=r,t[1]-=r}function Ph(t,e,n,i,r){function a(t,e){return h?t>e:e>t}var o=e.length;if(t.onBand&&!i&&o){var s,l=t.getExtent();if(1===o)e[0].coord=l[0],s=e[1]={coord:l[0]};else{var u=e[1].coord-e[0].coord;d(e,function(t){t.coord-=u/2;var e=e||0;e%2>0&&(t.coord-=u/(2*(e+1)))}),s={coord:e[o-1].coord+u},e.push(s)}var h=l[0]>l[1];a(e[0].coord,l[0])&&(r?e[0].coord=l[0]:e.shift()),r&&a(l[0],e[0].coord)&&e.unshift({coord:l[0]}),a(l[1],s.coord)&&(r?s.coord=l[1]:e.pop()),r&&a(s.coord,l[1])&&e.push({coord:l[1]})}}function Oh(t,e){var n=t.mapDimension("defaultedLabel",!0),i=n.length;if(1===i)return ws(t,e,n[0]);if(i){for(var r=[],a=0;a0?n=i[0]:i[1]<0&&(n=i[1]),n}function jh(t,e,n,i){var r=0/0;t.stacked&&(r=n.get(n.getCalculationInfo("stackedOverDimension"),i)),isNaN(r)&&(r=t.valueStart);var a=t.baseDataOffset,o=[];return o[a]=n.get(t.baseDim,i),o[1-a]=r,e.dataToPoint(o)}function Uh(t,e){var n=[];return e.diff(t).add(function(t){n.push({cmd:"+",idx:t})}).update(function(t,e){n.push({cmd:"=",idx:e,idx1:t})}).remove(function(t){n.push({cmd:"-",idx:t})}).execute(),n}function Yh(t){return isNaN(t[0])||isNaN(t[1])}function Zh(t,e,n,i,r,a,o,s,l,u){return"none"!==u&&u?$h.apply(this,arguments):Qh.apply(this,arguments)}function $h(t,e,n,i,r,a,o,s,l,u,h){for(var c=0,f=n,d=0;i>d;d++){var p=e[f];if(f>=r||0>f)break;if(Yh(p)){if(h){f+=a;continue}break}if(f===n)t[a>0?"moveTo":"lineTo"](p[0],p[1]);else if(l>0){var g=e[c],v="y"===u?1:0,m=(p[v]-g[v])*l;k_(D_,g),D_[v]=g[v]+m,k_(A_,p),A_[v]=p[v]-m,t.bezierCurveTo(D_[0],D_[1],A_[0],A_[1],p[0],p[1])}else t.lineTo(p[0],p[1]);c=f,f+=a}return d}function Qh(t,e,n,i,r,a,o,s,l,u,h){for(var c=0,f=n,d=0;i>d;d++){var p=e[f];if(f>=r||0>f)break;if(Yh(p)){if(h){f+=a;continue}break}if(f===n)t[a>0?"moveTo":"lineTo"](p[0],p[1]),k_(D_,p);else if(l>0){var g=f+a,v=e[g];if(h)for(;v&&Yh(e[g]);)g+=a,v=e[g];var m=.5,y=e[c],v=e[g];if(!v||Yh(v))k_(A_,p);else{Yh(v)&&!h&&(v=p),U(I_,v,y);var _,x;if("x"===u||"y"===u){var w="x"===u?0:1;_=Math.abs(p[w]-y[w]),x=Math.abs(p[w]-v[w])}else _=af(p,y),x=af(p,v);m=x/(x+_),C_(A_,p,I_,-l*(1-m))}M_(D_,D_,s),T_(D_,D_,o),M_(A_,A_,s),T_(A_,A_,o),t.bezierCurveTo(D_[0],D_[1],A_[0],A_[1],p[0],p[1]),C_(D_,p,I_,l*m)}else t.lineTo(p[0],p[1]);c=f,f+=a}return d}function Kh(t,e){var n=[1/0,1/0],i=[-1/0,-1/0];if(e)for(var r=0;ri[0]&&(i[0]=a[0]),a[1]>i[1]&&(i[1]=a[1])}return{min:e?n:i,max:e?i:n}}function Jh(t,e){if(t.length===e.length){for(var n=0;ne[0]?1:-1;e[0]+=i*n,e[1]-=i*n}return e}function nc(t,e,n){if(!n.valueDim)return[];for(var i=[],r=0,a=e.count();a>r;r++)i.push(jh(n,t,e,r));return i}function ic(t,e,n,i){var r=ec(t.getAxis("x")),a=ec(t.getAxis("y")),o=t.getBaseAxis().isHorizontal(),s=Math.min(r[0],r[1]),l=Math.min(a[0],a[1]),u=Math.max(r[0],r[1])-s,h=Math.max(a[0],a[1])-l;if(n)s-=.5,u+=.5,l-=.5,h+=.5;else{var c=i.get("lineStyle.width")||2,f=i.get("clipOverflow")?c/2:Math.max(u,h);o?(l-=f,h+=2*f):(s-=f,u+=2*f)}var d=new vg({shape:{x:s,y:l,width:u,height:h}});return e&&(d.shape[o?"width":"height"]=0,Pa(d,{shape:{width:u,height:h}},i)),d}function rc(t,e,n,i){var r=t.getAngleAxis(),a=t.getRadiusAxis(),o=a.getExtent().slice();o[0]>o[1]&&o.reverse();var s=r.getExtent(),l=Math.PI/180;n&&(o[0]-=.5,o[1]+=.5);var u=new hg({shape:{cx:Ya(t.cx,1),cy:Ya(t.cy,1),r0:Ya(o[0],1),r:Ya(o[1],1),startAngle:-s[0]*l,endAngle:-s[1]*l,clockwise:r.inverse}});return e&&(u.shape.endAngle=-s[0]*l,Pa(u,{shape:{endAngle:-s[1]*l}},i)),u}function ac(t,e,n,i){return"polar"===t.type?rc(t,e,n,i):ic(t,e,n,i)}function oc(t,e,n){for(var i=e.getBaseAxis(),r="x"===i.dim||"radius"===i.dim?0:1,a=[],o=0;o=0;a--){var o=n[a].dimension,s=t.dimensions[o],l=t.getDimensionInfo(s);if(i=l&&l.coordDim,"x"===i||"y"===i){r=n[a];break}}if(r){var u=e.getAxis(i),h=p(r.stops,function(t){return{coord:u.toGlobalCoord(u.dataToCoord(t.value)),color:t.color}}),c=h.length,f=r.outerColors.slice();c&&h[0].coord>h[c-1].coord&&(h.reverse(),f.reverse());var g=10,v=h[0].coord-g,m=h[c-1].coord+g,y=m-v;if(.001>y)return"transparent";d(h,function(t){t.offset=(t.coord-v)/y}),h.push({offset:c?h[c-1].offset:.5,color:f[1]||"transparent"}),h.unshift({offset:c?h[0].offset:.5,color:f[0]||"transparent"});var _=new Sg(0,0,0,0,h,!0);return _[i]=v,_[i+"2"]=m,_}}}function lc(t,e,n){var i=t.get("showAllSymbol"),r="auto"===i;if(!i||r){var a=n.getAxesByScale("ordinal")[0];if(a&&(!r||!uc(a,e))){var o=e.mapDimension(a.dim),s={};return d(a.getViewLabels(),function(t){s[t.tickValue]=1}),function(t){return!s.hasOwnProperty(e.get(o,t))}}}}function uc(t,e){var n=t.getExtent(),i=Math.abs(n[1]-n[0])/t.scale.count();isNaN(i)&&(i=0);for(var r=e.count(),a=Math.max(1,Math.round(r/5)),o=0;r>o;o+=a)if(1.5*Lh.getSymbolSize(e,o)[t.isHorizontal()?1:0]>i)return!1;return!0}function hc(t){return this._axes[t]}function cc(t){F_.call(this,t)}function fc(t,e){return e.type||(e.data?"category":"value")}function dc(t,e){return t.getCoordSysModel()===e}function pc(t,e,n){this._coordsMap={},this._coordsList=[],this._axesMap={},this._axesList=[],this._initCartesian(t,e,n),this.model=t}function gc(t,e,n,i){function r(t){return t.dim+"_"+t.index}n.getAxesOnZeroOf=function(){return a?[a]:[]};var a,o=t[e],s=n.model,l=s.get("axisLine.onZero"),u=s.get("axisLine.onZeroAxisIndex");if(l){if(null!=u)vc(o[u])&&(a=o[u]);else for(var h in o)if(o.hasOwnProperty(h)&&vc(o[h])&&!i[r(o[h])]){a=o[h];break}a&&(i[r(a)]=!0)}}function vc(t){return t&&"category"!==t.type&&"time"!==t.type&&th(t)}function mc(t,e){var n=t.getExtent(),i=n[0]+n[1];t.toGlobalCoord="x"===t.dim?function(t){return t+e}:function(t){return i-t+e},t.toLocalCoord="x"===t.dim?function(t){return t-e}:function(t){return i-t+e}}function yc(t){return p(U_,function(e){var n=t.getReferringComponents(e)[0];return n})}function _c(t){return"cartesian2d"===t.get("coordinateSystem")}function xc(t){var e={componentType:t.mainType,componentIndex:t.componentIndex};return e[t.mainType+"Index"]=t.componentIndex,e}function wc(t,e,n,i){var r,a,o=to(n-t.rotation),s=i[0]>i[1],l="start"===e&&!s||"start"!==e&&s;return eo(o-Y_/2)?(a=l?"bottom":"top",r="center"):eo(o-1.5*Y_)?(a=l?"top":"bottom",r="center"):(a="middle",r=1.5*Y_>o&&o>Y_/2?l?"left":"right":l?"right":"left"),{rotation:o,textAlign:r,textVerticalAlign:a}}function bc(t){var e=t.get("tooltip");return t.get("silent")||!(t.get("triggerEvent")||e&&e.show)}function Sc(t,e,n){var i=t.get("axisLabel.showMinLabel"),r=t.get("axisLabel.showMaxLabel");e=e||[],n=n||[];var a=e[0],o=e[1],s=e[e.length-1],l=e[e.length-2],u=n[0],h=n[1],c=n[n.length-1],f=n[n.length-2];i===!1?(Mc(a),Mc(u)):Tc(a,o)&&(i?(Mc(o),Mc(h)):(Mc(a),Mc(u))),r===!1?(Mc(s),Mc(c)):Tc(l,s)&&(r?(Mc(l),Mc(f)):(Mc(s),Mc(c)))}function Mc(t){t&&(t.ignore=!0)}function Tc(t,e){var n=t&&t.getBoundingRect().clone(),i=e&&e.getBoundingRect().clone();if(n&&i){var r=be([]);return Ce(r,r,-t.rotation),n.applyTransform(Me([],r,t.getLocalTransform())),i.applyTransform(Me([],r,e.getLocalTransform())),n.intersect(i)}}function Cc(t){return"middle"===t||"center"===t}function kc(t,e,n){var i=e.axis;if(e.get("axisTick.show")&&!i.scale.isBlank()){for(var r=e.getModel("axisTick"),a=r.getModel("lineStyle"),o=r.get("length"),l=i.getTicksCoords(),u=[],h=[],c=t._transform,f=[],d=0;dl[1]&&l.reverse(),(null==o||o>l[1])&&(o=l[1]),or;r++)n[t][r].h!==e&&i.push(n[t][r]);n[t]=i}n[t]&&0===n[t].length&&delete n[t]}else delete n[t];return this},trigger:function(t){var e=this._$handlers[t],n=this._$eventProcessor;if(e){var i=arguments,r=i.length;r>3&&(i=lf.call(i,1));for(var a=e.length,o=0;a>o;){var s=e[o];if(n&&n.filter&&null!=s.query&&!n.filter(t,s.query))o++;else{switch(r){case 1:s.h.call(s.ctx);break;case 2:s.h.call(s.ctx,i[1]);break;case 3:s.h.call(s.ctx,i[1],i[2]);break;default:s.h.apply(s.ctx,i)}s.one?(e.splice(o,1),a--):o++}}}return n&&n.afterTrigger&&n.afterTrigger(t),this},triggerWithContext:function(t){var e=this._$handlers[t],n=this._$eventProcessor;if(e){var i=arguments,r=i.length;r>4&&(i=lf.call(i,1,i.length-1));for(var a=i[i.length-1],o=e.length,s=0;o>s;){var l=e[s];if(n&&n.filter&&null!=l.query&&!n.filter(t,l.query))s++;else{switch(r){case 1:l.h.call(a);break;case 2:l.h.call(a,i[1]);break;case 3:l.h.call(a,i[1],i[2]);break;default:l.h.apply(a,i)}l.one?(e.splice(s,1),o--):s++}}}return n&&n.afterTrigger&&n.afterTrigger(t),this}};var hf="undefined"!=typeof window&&!!window.addEventListener,cf=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,ff=hf?function(t){t.preventDefault(),t.stopPropagation(),t.cancelBubble=!0}:function(t){t.returnValue=!1,t.cancelBubble=!0},df="silent";_e.prototype.dispose=function(){};var pf=["click","dblclick","mousewheel","mouseout","mouseup","mousedown","mousemove","contextmenu"],gf=function(t,e,n,i){uf.call(this),this.storage=t,this.painter=e,this.painterRoot=i,n=n||new _e,this.proxy=null,this._hovered={},this._lastTouchMoment,this._lastX,this._lastY,le.call(this),this.setHandlerProxy(n)};gf.prototype={constructor:gf,setHandlerProxy:function(t){this.proxy&&this.proxy.dispose(),t&&(d(pf,function(e){t.on&&t.on(e,this[e],this)},this),t.handler=this),this.proxy=t},mousemove:function(t){var e=t.zrX,n=t.zrY,i=this._hovered,r=i.target;r&&!r.__zr&&(i=this.findHover(i.x,i.y),r=i.target);var a=this._hovered=this.findHover(e,n),o=a.target,s=this.proxy;s.setCursor&&s.setCursor(o?o.cursor:"default"),r&&o!==r&&this.dispatchToElement(i,"mouseout",t),this.dispatchToElement(a,"mousemove",t),o&&o!==r&&this.dispatchToElement(a,"mouseover",t)},mouseout:function(t){this.dispatchToElement(this._hovered,"mouseout",t);var e,n=t.toElement||t.relatedTarget;do n=n&&n.parentNode;while(n&&9!=n.nodeType&&!(e=n===this.painterRoot));!e&&this.trigger("globalout",{event:t})},resize:function(){this._hovered={}},dispatch:function(t,e){var n=this[t];n&&n.call(this,e)},dispose:function(){this.proxy.dispose(),this.storage=this.proxy=this.painter=null},setCursorStyle:function(t){var e=this.proxy;e.setCursor&&e.setCursor(t)},dispatchToElement:function(t,e,n){t=t||{};var i=t.target;if(!i||!i.silent){for(var r="on"+e,a=me(e,t,n);i&&(i[r]&&(a.cancelBubble=i[r].call(i,a)),i.trigger(e,a),i=i.parent,!a.cancelBubble););a.cancelBubble||(this.trigger(e,a),this.painter&&this.painter.eachOtherLayer(function(t){"function"==typeof t[r]&&t[r].call(t,a),t.trigger&&t.trigger(e,a)}))}},findHover:function(t,e,n){for(var i=this.storage.getDisplayList(),r={x:t,y:e},a=i.length-1;a>=0;a--){var o;if(i[a]!==n&&!i[a].ignore&&(o=xe(i[a],t,e))&&(!r.topTarget&&(r.topTarget=i[a]),o!==df)){r.target=i[a];break}}return r}},d(["click","mousedown","mouseup","mousewheel","dblclick","contextmenu"],function(t){gf.prototype[t]=function(e){var n=this.findHover(e.zrX,e.zrY),i=n.target;if("mousedown"===t)this._downEl=i,this._downPoint=[e.zrX,e.zrY],this._upEl=i;else if("mouseup"===t)this._upEl=i;else if("click"===t){if(this._downEl!==this._upEl||!this._downPoint||af(this._downPoint,[e.zrX,e.zrY])>4)return; +this._downPoint=null}this.dispatchToElement(n,t,e)}}),c(gf,uf),c(gf,le);var vf="undefined"==typeof Float32Array?Array:Float32Array,mf=(Object.freeze||Object)({create:we,identity:be,copy:Se,mul:Me,translate:Te,rotate:Ce,scale:ke,invert:Ie,clone:De}),yf=be,_f=5e-5,xf=function(t){t=t||{},t.position||(this.position=[0,0]),null==t.rotation&&(this.rotation=0),t.scale||(this.scale=[1,1]),this.origin=this.origin||null},wf=xf.prototype;wf.transform=null,wf.needLocalTransform=function(){return Ae(this.rotation)||Ae(this.position[0])||Ae(this.position[1])||Ae(this.scale[0]-1)||Ae(this.scale[1]-1)};var bf=[];wf.updateTransform=function(){var t=this.parent,e=t&&t.transform,n=this.needLocalTransform(),i=this.transform;if(!n&&!e)return void(i&&yf(i));i=i||we(),n?this.getLocalTransform(i):yf(i),e&&(n?Me(i,t.transform,i):Se(i,t.transform)),this.transform=i;var r=this.globalScaleRatio;if(null!=r&&1!==r){this.getGlobalScale(bf);var a=bf[0]<0?-1:1,o=bf[1]<0?-1:1,s=((bf[0]-a)*r+a)/bf[0]||0,l=((bf[1]-o)*r+o)/bf[1]||0;i[0]*=s,i[1]*=s,i[2]*=l,i[3]*=l}this.invTransform=this.invTransform||we(),Ie(this.invTransform,i)},wf.getLocalTransform=function(t){return xf.getLocalTransform(this,t)},wf.setTransform=function(t){var e=this.transform,n=t.dpr||1;e?t.setTransform(n*e[0],n*e[1],n*e[2],n*e[3],n*e[4],n*e[5]):t.setTransform(n,0,0,n,0,0)},wf.restoreTransform=function(t){var e=t.dpr||1;t.setTransform(e,0,0,e,0,0)};var Sf=[],Mf=we();wf.setLocalTransform=function(t){if(t){var e=t[0]*t[0]+t[1]*t[1],n=t[2]*t[2]+t[3]*t[3],i=this.position,r=this.scale;Ae(e-1)&&(e=Math.sqrt(e)),Ae(n-1)&&(n=Math.sqrt(n)),t[0]<0&&(e=-e),t[3]<0&&(n=-n),i[0]=t[4],i[1]=t[5],r[0]=e,r[1]=n,this.rotation=Math.atan2(-t[1]/n,t[0]/e)}},wf.decomposeTransform=function(){if(this.transform){var t=this.parent,e=this.transform;t&&t.transform&&(Me(Sf,t.invTransform,e),e=Sf);var n=this.origin;n&&(n[0]||n[1])&&(Mf[4]=n[0],Mf[5]=n[1],Me(Sf,e,Mf),Sf[4]-=n[0],Sf[5]-=n[1],e=Sf),this.setLocalTransform(e)}},wf.getGlobalScale=function(t){var e=this.transform;return t=t||[],e?(t[0]=Math.sqrt(e[0]*e[0]+e[1]*e[1]),t[1]=Math.sqrt(e[2]*e[2]+e[3]*e[3]),e[0]<0&&(t[0]=-t[0]),e[3]<0&&(t[1]=-t[1]),t):(t[0]=1,t[1]=1,t)},wf.transformCoordToLocal=function(t,e){var n=[t,e],i=this.invTransform;return i&&ae(n,n,i),n},wf.transformCoordToGlobal=function(t,e){var n=[t,e],i=this.transform;return i&&ae(n,n,i),n},xf.getLocalTransform=function(t,e){e=e||[],yf(e);var n=t.origin,i=t.scale||[1,1],r=t.rotation||0,a=t.position||[0,0];return n&&(e[4]-=n[0],e[5]-=n[1]),ke(e,e,i),r&&Ce(e,e,r),n&&(e[4]+=n[0],e[5]+=n[1]),e[4]+=a[0],e[5]+=a[1],e};var Tf={linear:function(t){return t},quadraticIn:function(t){return t*t},quadraticOut:function(t){return t*(2-t)},quadraticInOut:function(t){return(t*=2)<1?.5*t*t:-.5*(--t*(t-2)-1)},cubicIn:function(t){return t*t*t},cubicOut:function(t){return--t*t*t+1},cubicInOut:function(t){return(t*=2)<1?.5*t*t*t:.5*((t-=2)*t*t+2)},quarticIn:function(t){return t*t*t*t},quarticOut:function(t){return 1- --t*t*t*t},quarticInOut:function(t){return(t*=2)<1?.5*t*t*t*t:-.5*((t-=2)*t*t*t-2)},quinticIn:function(t){return t*t*t*t*t},quinticOut:function(t){return--t*t*t*t*t+1},quinticInOut:function(t){return(t*=2)<1?.5*t*t*t*t*t:.5*((t-=2)*t*t*t*t+2)},sinusoidalIn:function(t){return 1-Math.cos(t*Math.PI/2)},sinusoidalOut:function(t){return Math.sin(t*Math.PI/2)},sinusoidalInOut:function(t){return.5*(1-Math.cos(Math.PI*t))},exponentialIn:function(t){return 0===t?0:Math.pow(1024,t-1)},exponentialOut:function(t){return 1===t?1:1-Math.pow(2,-10*t)},exponentialInOut:function(t){return 0===t?0:1===t?1:(t*=2)<1?.5*Math.pow(1024,t-1):.5*(-Math.pow(2,-10*(t-1))+2)},circularIn:function(t){return 1-Math.sqrt(1-t*t)},circularOut:function(t){return Math.sqrt(1- --t*t)},circularInOut:function(t){return(t*=2)<1?-.5*(Math.sqrt(1-t*t)-1):.5*(Math.sqrt(1-(t-=2)*t)+1)},elasticIn:function(t){var e,n=.1,i=.4;return 0===t?0:1===t?1:(!n||1>n?(n=1,e=i/4):e=i*Math.asin(1/n)/(2*Math.PI),-(n*Math.pow(2,10*(t-=1))*Math.sin(2*(t-e)*Math.PI/i)))},elasticOut:function(t){var e,n=.1,i=.4;return 0===t?0:1===t?1:(!n||1>n?(n=1,e=i/4):e=i*Math.asin(1/n)/(2*Math.PI),n*Math.pow(2,-10*t)*Math.sin(2*(t-e)*Math.PI/i)+1)},elasticInOut:function(t){var e,n=.1,i=.4;return 0===t?0:1===t?1:(!n||1>n?(n=1,e=i/4):e=i*Math.asin(1/n)/(2*Math.PI),(t*=2)<1?-.5*n*Math.pow(2,10*(t-=1))*Math.sin(2*(t-e)*Math.PI/i):n*Math.pow(2,-10*(t-=1))*Math.sin(2*(t-e)*Math.PI/i)*.5+1)},backIn:function(t){var e=1.70158;return t*t*((e+1)*t-e)},backOut:function(t){var e=1.70158;return--t*t*((e+1)*t+e)+1},backInOut:function(t){var e=2.5949095;return(t*=2)<1?.5*t*t*((e+1)*t-e):.5*((t-=2)*t*((e+1)*t+e)+2)},bounceIn:function(t){return 1-Tf.bounceOut(1-t)},bounceOut:function(t){return 1/2.75>t?7.5625*t*t:2/2.75>t?7.5625*(t-=1.5/2.75)*t+.75:2.5/2.75>t?7.5625*(t-=2.25/2.75)*t+.9375:7.5625*(t-=2.625/2.75)*t+.984375},bounceInOut:function(t){return.5>t?.5*Tf.bounceIn(2*t):.5*Tf.bounceOut(2*t-1)+.5}};Pe.prototype={constructor:Pe,step:function(t,e){if(this._initialized||(this._startTime=t+this._delay,this._initialized=!0),this._paused)return void(this._pausedTime+=e);var n=(t-this._startTime-this._pausedTime)/this._life;if(!(0>n)){n=Math.min(n,1);var i=this.easing,r="string"==typeof i?Tf[i]:i,a="function"==typeof r?r(n):n;return this.fire("frame",a),1==n?this.loop?(this.restart(t),"restart"):(this._needsRemove=!0,"destroy"):null}},restart:function(t){var e=(t-this._startTime-this._pausedTime)%this._life;this._startTime=t-e+this.gap,this._pausedTime=0,this._needsRemove=!1},fire:function(t,e){t="on"+t,this[t]&&this[t](this._target,e)},pause:function(){this._paused=!0},resume:function(){this._paused=!1}};var Cf=function(){this.head=null,this.tail=null,this._len=0},kf=Cf.prototype;kf.insert=function(t){var e=new If(t);return this.insertEntry(e),e},kf.insertEntry=function(t){this.head?(this.tail.next=t,t.prev=this.tail,t.next=null,this.tail=t):this.head=this.tail=t,this._len++},kf.remove=function(t){var e=t.prev,n=t.next;e?e.next=n:this.head=n,n?n.prev=e:this.tail=e,t.next=t.prev=null,this._len--},kf.len=function(){return this._len},kf.clear=function(){this.head=this.tail=null,this._len=0};var If=function(t){this.value=t,this.next,this.prev},Df=function(t){this._list=new Cf,this._map={},this._maxSize=t||10,this._lastRemovedEntry=null},Af=Df.prototype;Af.put=function(t,e){var n=this._list,i=this._map,r=null;if(null==i[t]){var a=n.len(),o=this._lastRemovedEntry;if(a>=this._maxSize&&a>0){var s=n.head;n.remove(s),delete i[s.key],r=s.value,this._lastRemovedEntry=s}o?o.value=e:o=new If(e),o.key=t,n.insertEntry(o),i[t]=o}return r},Af.get=function(t){var e=this._map[t],n=this._list;return null!=e?(e!==n.tail&&(n.remove(e),n.insertEntry(e)),e.value):void 0},Af.clear=function(){this._list.clear(),this._map={}};var Pf={transparent:[0,0,0,0],aliceblue:[240,248,255,1],antiquewhite:[250,235,215,1],aqua:[0,255,255,1],aquamarine:[127,255,212,1],azure:[240,255,255,1],beige:[245,245,220,1],bisque:[255,228,196,1],black:[0,0,0,1],blanchedalmond:[255,235,205,1],blue:[0,0,255,1],blueviolet:[138,43,226,1],brown:[165,42,42,1],burlywood:[222,184,135,1],cadetblue:[95,158,160,1],chartreuse:[127,255,0,1],chocolate:[210,105,30,1],coral:[255,127,80,1],cornflowerblue:[100,149,237,1],cornsilk:[255,248,220,1],crimson:[220,20,60,1],cyan:[0,255,255,1],darkblue:[0,0,139,1],darkcyan:[0,139,139,1],darkgoldenrod:[184,134,11,1],darkgray:[169,169,169,1],darkgreen:[0,100,0,1],darkgrey:[169,169,169,1],darkkhaki:[189,183,107,1],darkmagenta:[139,0,139,1],darkolivegreen:[85,107,47,1],darkorange:[255,140,0,1],darkorchid:[153,50,204,1],darkred:[139,0,0,1],darksalmon:[233,150,122,1],darkseagreen:[143,188,143,1],darkslateblue:[72,61,139,1],darkslategray:[47,79,79,1],darkslategrey:[47,79,79,1],darkturquoise:[0,206,209,1],darkviolet:[148,0,211,1],deeppink:[255,20,147,1],deepskyblue:[0,191,255,1],dimgray:[105,105,105,1],dimgrey:[105,105,105,1],dodgerblue:[30,144,255,1],firebrick:[178,34,34,1],floralwhite:[255,250,240,1],forestgreen:[34,139,34,1],fuchsia:[255,0,255,1],gainsboro:[220,220,220,1],ghostwhite:[248,248,255,1],gold:[255,215,0,1],goldenrod:[218,165,32,1],gray:[128,128,128,1],green:[0,128,0,1],greenyellow:[173,255,47,1],grey:[128,128,128,1],honeydew:[240,255,240,1],hotpink:[255,105,180,1],indianred:[205,92,92,1],indigo:[75,0,130,1],ivory:[255,255,240,1],khaki:[240,230,140,1],lavender:[230,230,250,1],lavenderblush:[255,240,245,1],lawngreen:[124,252,0,1],lemonchiffon:[255,250,205,1],lightblue:[173,216,230,1],lightcoral:[240,128,128,1],lightcyan:[224,255,255,1],lightgoldenrodyellow:[250,250,210,1],lightgray:[211,211,211,1],lightgreen:[144,238,144,1],lightgrey:[211,211,211,1],lightpink:[255,182,193,1],lightsalmon:[255,160,122,1],lightseagreen:[32,178,170,1],lightskyblue:[135,206,250,1],lightslategray:[119,136,153,1],lightslategrey:[119,136,153,1],lightsteelblue:[176,196,222,1],lightyellow:[255,255,224,1],lime:[0,255,0,1],limegreen:[50,205,50,1],linen:[250,240,230,1],magenta:[255,0,255,1],maroon:[128,0,0,1],mediumaquamarine:[102,205,170,1],mediumblue:[0,0,205,1],mediumorchid:[186,85,211,1],mediumpurple:[147,112,219,1],mediumseagreen:[60,179,113,1],mediumslateblue:[123,104,238,1],mediumspringgreen:[0,250,154,1],mediumturquoise:[72,209,204,1],mediumvioletred:[199,21,133,1],midnightblue:[25,25,112,1],mintcream:[245,255,250,1],mistyrose:[255,228,225,1],moccasin:[255,228,181,1],navajowhite:[255,222,173,1],navy:[0,0,128,1],oldlace:[253,245,230,1],olive:[128,128,0,1],olivedrab:[107,142,35,1],orange:[255,165,0,1],orangered:[255,69,0,1],orchid:[218,112,214,1],palegoldenrod:[238,232,170,1],palegreen:[152,251,152,1],paleturquoise:[175,238,238,1],palevioletred:[219,112,147,1],papayawhip:[255,239,213,1],peachpuff:[255,218,185,1],peru:[205,133,63,1],pink:[255,192,203,1],plum:[221,160,221,1],powderblue:[176,224,230,1],purple:[128,0,128,1],red:[255,0,0,1],rosybrown:[188,143,143,1],royalblue:[65,105,225,1],saddlebrown:[139,69,19,1],salmon:[250,128,114,1],sandybrown:[244,164,96,1],seagreen:[46,139,87,1],seashell:[255,245,238,1],sienna:[160,82,45,1],silver:[192,192,192,1],skyblue:[135,206,235,1],slateblue:[106,90,205,1],slategray:[112,128,144,1],slategrey:[112,128,144,1],snow:[255,250,250,1],springgreen:[0,255,127,1],steelblue:[70,130,180,1],tan:[210,180,140,1],teal:[0,128,128,1],thistle:[216,191,216,1],tomato:[255,99,71,1],turquoise:[64,224,208,1],violet:[238,130,238,1],wheat:[245,222,179,1],white:[255,255,255,1],whitesmoke:[245,245,245,1],yellow:[255,255,0,1],yellowgreen:[154,205,50,1]},Of=new Df(20),Lf=null,Ef=Ue,Rf=Ye,Bf=(Object.freeze||Object)({parse:He,lift:Xe,toHex:je,fastLerp:Ue,fastMapToColor:Ef,lerp:Ye,mapToColor:Rf,modifyHSL:Ze,modifyAlpha:$e,stringify:Qe}),zf=Array.prototype.slice,Ff=function(t,e,n,i){this._tracks={},this._target=t,this._loop=e||!1,this._getter=n||Ke,this._setter=i||Je,this._clipCount=0,this._delay=0,this._doneList=[],this._onframeList=[],this._clipList=[]};Ff.prototype={when:function(t,e){var n=this._tracks;for(var i in e)if(e.hasOwnProperty(i)){if(!n[i]){n[i]=[];var r=this._getter(this._target,i);if(null==r)continue;0!==t&&n[i].push({time:0,value:ln(r)})}n[i].push({time:t,value:e[i]})}return this},during:function(t){return this._onframeList.push(t),this},pause:function(){for(var t=0;tn;n++)t[n].call(this)},start:function(t,e){var n,i=this,r=0,a=function(){r--,r||i._doneCallback()};for(var o in this._tracks)if(this._tracks.hasOwnProperty(o)){var s=cn(this,t,a,this._tracks[o],o,e);s&&(this._clipList.push(s),r++,this.animation&&this.animation.addClip(s),n=s)}if(n){var l=n.onframe;n.onframe=function(t,e){l(t,e);for(var n=0;n1&&(Hf=function(){for(var t in arguments)console.log(arguments[t])});var Gf=Hf,qf=function(){this.animators=[]};qf.prototype={constructor:qf,animate:function(t,e){var n,i=!1,r=this,a=this.__zr;if(t){var o=t.split("."),s=r;i="shape"===o[0];for(var l=0,h=o.length;h>l;l++)s&&(s=s[o[l]]);s&&(n=s)}else n=r;if(!n)return void Gf('Property "'+t+'" is not existed in element '+r.id);var c=r.animators,f=new Ff(n,e);return f.during(function(){r.dirty(i)}).done(function(){c.splice(u(c,f),1)}),c.push(f),a&&a.animation.addAnimator(f),f},stopAnimation:function(t){for(var e=this.animators,n=e.length,i=0;n>i;i++)e[i].stop(t);return e.length=0,this},animateTo:function(t,e,n,i,r,a){fn(this,t,e,n,i,r,a)},animateFrom:function(t,e,n,i,r,a){fn(this,t,e,n,i,r,a,!0)}};var Xf=function(t){xf.call(this,t),uf.call(this,t),qf.call(this,t),this.id=t.id||Fc()};Xf.prototype={type:"element",name:"",__zr:null,ignore:!1,clipPath:null,isGroup:!1,drift:function(t,e){switch(this.draggable){case"horizontal":e=0;break;case"vertical":t=0}var n=this.transform;n||(n=this.transform=[1,0,0,1,0,0]),n[4]+=t,n[5]+=e,this.decomposeTransform(),this.dirty(!1)},beforeUpdate:function(){},afterUpdate:function(){},update:function(){this.updateTransform()},traverse:function(){},attrKV:function(t,e){if("position"===t||"scale"===t||"origin"===t){if(e){var n=this[t];n||(n=this[t]=[]),n[0]=e[0],n[1]=e[1]}}else this[t]=e},hide:function(){this.ignore=!0,this.__zr&&this.__zr.refresh()},show:function(){this.ignore=!1,this.__zr&&this.__zr.refresh()},attr:function(t,e){if("string"==typeof t)this.attrKV(t,e);else if(S(t))for(var n in t)t.hasOwnProperty(n)&&this.attrKV(n,t[n]);return this.dirty(!1),this},setClipPath:function(t){var e=this.__zr;e&&t.addSelfToZr(e),this.clipPath&&this.clipPath!==t&&this.removeClipPath(),this.clipPath=t,t.__zr=e,t.__clipTarget=this,this.dirty(!1)},removeClipPath:function(){var t=this.clipPath;t&&(t.__zr&&t.removeSelfFromZr(t.__zr),t.__zr=null,t.__clipTarget=null,this.clipPath=null,this.dirty(!1))},addSelfToZr:function(t){this.__zr=t;var e=this.animators;if(e)for(var n=0;ni||n>s||l>a||r>u)},contain:function(t,e){var n=this;return t>=n.x&&t<=n.x+n.width&&e>=n.y&&e<=n.y+n.height},clone:function(){return new gn(this.x,this.y,this.width,this.height)},copy:function(t){this.x=t.x,this.y=t.y,this.width=t.width,this.height=t.height},plain:function(){return{x:this.x,y:this.y,width:this.width,height:this.height}}},gn.create=function(t){return new gn(t.x,t.y,t.width,t.height)};var Zf=function(t){t=t||{},Xf.call(this,t);for(var e in t)t.hasOwnProperty(e)&&(this[e]=t[e]);this._children=[],this.__storage=null,this.__dirty=!0};Zf.prototype={constructor:Zf,isGroup:!0,type:"group",silent:!1,children:function(){return this._children.slice()},childAt:function(t){return this._children[t]},childOfName:function(t){for(var e=this._children,n=0;n=0&&(n.splice(i,0,t),this._doAdd(t))}return this},_doAdd:function(t){t.parent&&t.parent.remove(t),t.parent=this;var e=this.__storage,n=this.__zr;e&&e!==t.__storage&&(e.addToStorage(t),t instanceof Zf&&t.addChildrenToStorage(e)),n&&n.refresh()},remove:function(t){var e=this.__zr,n=this.__storage,i=this._children,r=u(i,t);return 0>r?this:(i.splice(r,1),t.parent=null,n&&(n.delFromStorage(t),t instanceof Zf&&t.delChildrenFromStorage(n)),e&&e.refresh(),this)},removeAll:function(){var t,e,n=this._children,i=this.__storage;for(e=0;ei;i++)this._updateAndAddDisplayable(e[i],null,t);n.length=this._displayListLen,Vc.canvasSupported&&Sn(n,Mn)},_updateAndAddDisplayable:function(t,e,n){if(!t.ignore||n){t.beforeUpdate(),t.__dirty&&t.update(),t.afterUpdate();var i=t.clipPath;if(i){e=e?e.slice():[];for(var r=i,a=t;r;)r.parent=a,r.updateTransform(),e.push(r),a=r,r=r.clipPath}if(t.isGroup){for(var o=t._children,s=0;se;e++)this.delRoot(t[e]);else{var r=u(this._roots,t);r>=0&&(this.delFromStorage(t),this._roots.splice(r,1),t instanceof Zf&&t.delChildrenFromStorage(this))}},addToStorage:function(t){return t&&(t.__storage=this,t.dirty(!1)),this},delFromStorage:function(t){return t&&(t.__storage=null),this},dispose:function(){this._renderList=this._roots=null},displayableSortFunc:Mn};var Jf={shadowBlur:1,shadowOffsetX:1,shadowOffsetY:1,textShadowBlur:1,textShadowOffsetX:1,textShadowOffsetY:1,textBoxShadowBlur:1,textBoxShadowOffsetX:1,textBoxShadowOffsetY:1},td=function(t,e,n){return Jf.hasOwnProperty(e)?n*=t.dpr:n},ed=[["shadowBlur",0],["shadowOffsetX",0],["shadowOffsetY",0],["shadowColor","#000"],["lineCap","butt"],["lineJoin","miter"],["miterLimit",10]],nd=function(t){this.extendFrom(t,!1)};nd.prototype={constructor:nd,fill:"#000",stroke:null,opacity:1,fillOpacity:null,strokeOpacity:null,lineDash:null,lineDashOffset:0,shadowBlur:0,shadowOffsetX:0,shadowOffsetY:0,lineWidth:1,strokeNoScale:!1,text:null,font:null,textFont:null,fontStyle:null,fontWeight:null,fontSize:null,fontFamily:null,textTag:null,textFill:"#000",textStroke:null,textWidth:null,textHeight:null,textStrokeWidth:0,textLineHeight:null,textPosition:"inside",textRect:null,textOffset:null,textAlign:null,textVerticalAlign:null,textDistance:5,textShadowColor:"transparent",textShadowBlur:0,textShadowOffsetX:0,textShadowOffsetY:0,textBoxShadowColor:"transparent",textBoxShadowBlur:0,textBoxShadowOffsetX:0,textBoxShadowOffsetY:0,transformText:!1,textRotation:0,textOrigin:null,textBackgroundColor:null,textBorderColor:null,textBorderWidth:0,textBorderRadius:0,textPadding:null,rich:null,truncate:null,blend:null,bind:function(t,e,n){for(var i=this,r=n&&n.style,a=!r,o=0;o0},extendFrom:function(t,e){if(t)for(var n in t)!t.hasOwnProperty(n)||e!==!0&&(e===!1?this.hasOwnProperty(n):null==t[n])||(this[n]=t[n])},set:function(t,e){"string"==typeof t?this[t]=e:this.extendFrom(t,!0)},clone:function(){var t=new this.constructor;return t.extendFrom(this,!0),t},getGradient:function(t,e,n){for(var i="radial"===e.type?Cn:Tn,r=i(t,e,n),a=e.colorStops,o=0;o=0&&n.splice(i,1),t.__hoverMir=null},clearHover:function(){for(var t=this._hoverElements,e=0;er;){var a=t[r],o=a.__from;o&&o.__zr?(r++,o.invisible||(a.transform=o.transform,a.invTransform=o.invTransform,a.__clipPaths=o.__clipPaths,this._doPaintEl(a,n,!0,i))):(t.splice(r,1),o.__hoverMir=null,e--)}n.ctx.restore()}},getHoverLayer:function(){return this.getLayer(wd)},_paintList:function(t,e,n){if(this._redrawId===n){e=e||!1,this._updateLayerStatus(t);var i=this._doPaintList(t,e);if(this._needsManuallyCompositing&&this._compositeManually(),!i){var r=this;ld(function(){r._paintList(t,e,n)})}}},_compositeManually:function(){var t=this.getLayer(bd).ctx,e=this._domRoot.width,n=this._domRoot.height;t.clearRect(0,0,e,n),this.eachBuiltinLayer(function(i){i.virtual&&t.drawImage(i.dom,0,0,e,n)})},_doPaintList:function(t,e){for(var n=[],i=0;i15)break}}a.__drawIndex=v,a.__drawIndex0&&t>i[0]){for(o=0;r-1>o&&!(i[o]t);o++);a=n[i[o]]}if(i.splice(o+1,0,t),n[t]=e,!e.virtual)if(a){var l=a.dom;l.nextSibling?s.insertBefore(e.dom,l.nextSibling):s.appendChild(e.dom)}else s.firstChild?s.insertBefore(e.dom,s.firstChild):s.appendChild(e.dom)},eachLayer:function(t,e){var n,i,r=this._zlevelList;for(i=0;i0?Sd:0),this._needsManuallyCompositing),o.__builtin__||Gf("ZLevel "+s+" has been used by unkown layer "+o.id),o!==r&&(o.__used=!0,o.__startIndex!==n&&(o.__dirty=!0),o.__startIndex=n,o.__drawIndex=o.incremental?-1:n,e(n),r=o),i.__dirty&&(o.__dirty=!0,o.incremental&&o.__drawIndex<0&&(o.__drawIndex=n))}e(n),this.eachBuiltinLayer(function(t){!t.__used&&t.getElementCount()>0&&(t.__dirty=!0,t.__startIndex=t.__endIndex=t.__drawIndex=0),t.__dirty&&t.__drawIndex<0&&(t.__drawIndex=t.__startIndex)})},clear:function(){return this.eachBuiltinLayer(this._clearLayer),this},_clearLayer:function(t){t.clear()},setBackgroundColor:function(t){this._backgroundColor=t},configLayer:function(t,e){if(e){var n=this._layerConfig;n[t]?r(n[t],e,!0):n[t]=e;for(var i=0;i=0&&this._clips.splice(e,1)},removeAnimator:function(t){for(var e=t.getClips(),n=0;no;o++){var s=n[o],l=s.step(t,e);l&&(r.push(l),a.push(s))}for(var o=0;i>o;)n[o]._needsRemove?(n[o]=n[i-1],n.pop(),i--):o++;i=r.length;for(var o=0;i>o;o++)a[o].fire(r[o]);this._time=t,this.onframe(e),this.trigger("frame",e),this.stage.update&&this.stage.update()},_startLoop:function(){function t(){e._running&&(ld(t),!e._paused&&e._update())}var e=this;this._running=!0,ld(t)},start:function(){this._time=(new Date).getTime(),this._pausedTime=0,this._startLoop()},stop:function(){this._running=!1},pause:function(){this._paused||(this._pauseStart=(new Date).getTime(),this._paused=!0)},resume:function(){this._paused&&(this._pausedTime+=(new Date).getTime()-this._pauseStart,this._paused=!1)},clear:function(){this._clips=[]},isFinished:function(){return!this._clips.length},animate:function(t,e){e=e||{};var n=new Ff(t,e.loop,e.getter,e.setter);return this.addAnimator(n),n}},c(Id,uf);var Dd=function(){this._track=[]};Dd.prototype={constructor:Dd,recognize:function(t,e,n){return this._doTrack(t,e,n),this._recognize(t)},clear:function(){return this._track.length=0,this},_doTrack:function(t,e,n){var i=t.touches;if(i){for(var r={points:[],touches:[],target:e,event:t},a=0,o=i.length;o>a;a++){var s=i[a],l=fe(n,s,{});r.points.push([l.zrX,l.zrY]),r.touches.push(s)}this._track.push(r)}},_recognize:function(t){for(var e in Ad)if(Ad.hasOwnProperty(e)){var n=Ad[e](this._track,t);if(n)return n}}};var Ad={pinch:function(t,e){var n=t.length;if(n){var i=(t[n-1]||{}).points,r=(t[n-2]||{}).points||i;if(r&&r.length>1&&i&&i.length>1){var a=Si(i)/Si(r);!isFinite(a)&&(a=1),e.pinchScale=a;var o=Mi(i);return e.pinchX=o[0],e.pinchY=o[1],{type:"pinch",target:t[0].target,event:e}}}}},Pd=300,Od=["click","dblclick","mousewheel","mouseout","mouseup","mousedown","mousemove","contextmenu"],Ld=["touchstart","touchend","touchmove"],Ed={pointerdown:1,pointerup:1,pointermove:1,pointerout:1},Rd=p(Od,function(t){var e=t.replace("mouse","pointer");return Ed[e]?e:t}),Bd={mousemove:function(t){t=pe(this.dom,t),this.trigger("mousemove",t)},mouseout:function(t){t=pe(this.dom,t);var e=t.toElement||t.relatedTarget;if(e!=this.dom)for(;e&&9!=e.nodeType;){if(e===this.dom)return;e=e.parentNode}this.trigger("mouseout",t)},touchstart:function(t){t=pe(this.dom,t),t.zrByTouch=!0,this._lastTouchMoment=new Date,Ci(this,t,"start"),Bd.mousemove.call(this,t),Bd.mousedown.call(this,t),ki(this)},touchmove:function(t){t=pe(this.dom,t),t.zrByTouch=!0,Ci(this,t,"change"),Bd.mousemove.call(this,t),ki(this)},touchend:function(t){t=pe(this.dom,t),t.zrByTouch=!0,Ci(this,t,"end"),Bd.mouseup.call(this,t),+new Date-this._lastTouchMoment=0||i&&u(i,o)<0)){var s=e.getShallow(o);null!=s&&(r[t[a][0]]=s)}}return r}},tp=Jd([["lineWidth","width"],["stroke","color"],["opacity"],["shadowBlur"],["shadowOffsetX"],["shadowOffsetY"],["shadowColor"]]),ep={getLineStyle:function(t){var e=tp(this,t),n=this.getLineDash(e.lineWidth);return n&&(e.lineDash=n),e},getLineDash:function(t){null==t&&(t=1);var e=this.get("type"),n=Math.max(t,2),i=4*t;return"solid"===e||null==e?null:"dashed"===e?[i,i]:[n,n]}},np=Jd([["fill","color"],["shadowBlur"],["shadowOffsetX"],["shadowOffsetY"],["opacity"],["shadowColor"]]),ip={getAreaStyle:function(t,e){return np(this,t,e)}},rp=Math.pow,ap=Math.sqrt,op=1e-8,sp=1e-4,lp=ap(3),up=1/3,hp=W(),cp=W(),fp=W(),dp=Math.min,pp=Math.max,gp=Math.sin,vp=Math.cos,mp=2*Math.PI,yp=W(),_p=W(),xp=W(),wp=[],bp=[],Sp={M:1,L:2,C:3,Q:4,A:5,Z:6,R:7},Mp=[],Tp=[],Cp=[],kp=[],Ip=Math.min,Dp=Math.max,Ap=Math.cos,Pp=Math.sin,Op=Math.sqrt,Lp=Math.abs,Ep="undefined"!=typeof Float32Array,Rp=function(t){this._saveData=!t,this._saveData&&(this.data=[]),this._ctx=null};Rp.prototype={constructor:Rp,_xi:0,_yi:0,_x0:0,_y0:0,_ux:0,_uy:0,_len:0,_lineDash:null,_dashOffset:0,_dashIdx:0,_dashSum:0,setScale:function(t,e){this._ux=Lp(1/Wf/t)||0,this._uy=Lp(1/Wf/e)||0},getContext:function(){return this._ctx},beginPath:function(t){return this._ctx=t,t&&t.beginPath(),t&&(this.dpr=t.dpr),this._saveData&&(this._len=0),this._lineDash&&(this._lineDash=null,this._dashOffset=0),this},moveTo:function(t,e){return this.addData(Sp.M,t,e),this._ctx&&this._ctx.moveTo(t,e),this._x0=t,this._y0=e,this._xi=t,this._yi=e,this},lineTo:function(t,e){var n=Lp(t-this._xi)>this._ux||Lp(e-this._yi)>this._uy||this._len<5;return this.addData(Sp.L,t,e),this._ctx&&n&&(this._needsDash()?this._dashedLineTo(t,e):this._ctx.lineTo(t,e)),n&&(this._xi=t,this._yi=e),this},bezierCurveTo:function(t,e,n,i,r,a){return this.addData(Sp.C,t,e,n,i,r,a),this._ctx&&(this._needsDash()?this._dashedBezierTo(t,e,n,i,r,a):this._ctx.bezierCurveTo(t,e,n,i,r,a)),this._xi=r,this._yi=a,this},quadraticCurveTo:function(t,e,n,i){return this.addData(Sp.Q,t,e,n,i),this._ctx&&(this._needsDash()?this._dashedQuadraticTo(t,e,n,i):this._ctx.quadraticCurveTo(t,e,n,i)),this._xi=n,this._yi=i,this},arc:function(t,e,n,i,r,a){return this.addData(Sp.A,t,e,n,n,i,r-i,0,a?0:1),this._ctx&&this._ctx.arc(t,e,n,i,r,a),this._xi=Ap(r)*n+t,this._yi=Pp(r)*n+e,this},arcTo:function(t,e,n,i,r){return this._ctx&&this._ctx.arcTo(t,e,n,i,r),this},rect:function(t,e,n,i){return this._ctx&&this._ctx.rect(t,e,n,i),this.addData(Sp.R,t,e,n,i),this},closePath:function(){this.addData(Sp.Z);var t=this._ctx,e=this._x0,n=this._y0;return t&&(this._needsDash()&&this._dashedLineTo(e,n),t.closePath()),this._xi=e,this._yi=n,this},fill:function(t){t&&t.fill(),this.toStatic()},stroke:function(t){t&&t.stroke(),this.toStatic()},setLineDash:function(t){if(t instanceof Array){this._lineDash=t,this._dashIdx=0;for(var e=0,n=0;nn;n++)this.data[n]=t[n];this._len=e},appendPath:function(t){t instanceof Array||(t=[t]);for(var e=t.length,n=0,i=this._len,r=0;e>r;r++)n+=t[r].len();Ep&&this.data instanceof Float32Array&&(this.data=new Float32Array(i+n));for(var r=0;e>r;r++)for(var a=t[r].data,o=0;oe.length&&(this._expandData(),e=this.data);for(var n=0;na&&(a=r+a),a%=r,d-=a*h,p-=a*c;h>0&&t>=d||0>h&&d>=t||0==h&&(c>0&&e>=p||0>c&&p>=e);)i=this._dashIdx,n=o[i],d+=h*n,p+=c*n,this._dashIdx=(i+1)%g,h>0&&l>d||0>h&&d>l||c>0&&u>p||0>c&&p>u||s[i%2?"moveTo":"lineTo"](h>=0?Ip(d,t):Dp(d,t),c>=0?Ip(p,e):Dp(p,e));h=d-t,c=p-e,this._dashOffset=-Op(h*h+c*c)},_dashedBezierTo:function(t,e,n,i,r,a){var o,s,l,u,h,c=this._dashSum,f=this._dashOffset,d=this._lineDash,p=this._ctx,g=this._xi,v=this._yi,m=or,y=0,_=this._dashIdx,x=d.length,w=0;for(0>f&&(f=c+f),f%=c,o=0;1>o;o+=.1)s=m(g,t,n,r,o+.1)-m(g,t,n,r,o),l=m(v,e,i,a,o+.1)-m(v,e,i,a,o),y+=Op(s*s+l*l);for(;x>_&&(w+=d[_],!(w>f));_++);for(o=(w-f)/y;1>=o;)u=m(g,t,n,r,o),h=m(v,e,i,a,o),_%2?p.moveTo(u,h):p.lineTo(u,h),o+=d[_]/y,_=(_+1)%x;_%2!==0&&p.lineTo(r,a),s=r-u,l=a-h,this._dashOffset=-Op(s*s+l*l)},_dashedQuadraticTo:function(t,e,n,i){var r=n,a=i;n=(n+2*t)/3,i=(i+2*e)/3,t=(this._xi+2*t)/3,e=(this._yi+2*e)/3,this._dashedBezierTo(t,e,n,i,r,a)},toStatic:function(){var t=this.data;t instanceof Array&&(t.length=this._len,Ep&&(this.data=new Float32Array(t)))},getBoundingRect:function(){Mp[0]=Mp[1]=Cp[0]=Cp[1]=Number.MAX_VALUE,Tp[0]=Tp[1]=kp[0]=kp[1]=-Number.MAX_VALUE;for(var t=this.data,e=0,n=0,i=0,r=0,a=0;ac;){var f=s[c++];switch(1==c&&(i=s[c],r=s[c+1],e=i,n=r),f){case Sp.M:e=i=s[c++],n=r=s[c++],t.moveTo(i,r);break;case Sp.L:a=s[c++],o=s[c++],(Lp(a-i)>l||Lp(o-r)>u||c===h-1)&&(t.lineTo(a,o),i=a,r=o);break;case Sp.C:t.bezierCurveTo(s[c++],s[c++],s[c++],s[c++],s[c++],s[c++]),i=s[c-2],r=s[c-1];break;case Sp.Q:t.quadraticCurveTo(s[c++],s[c++],s[c++],s[c++]),i=s[c-2],r=s[c-1];break;case Sp.A:var d=s[c++],p=s[c++],g=s[c++],v=s[c++],m=s[c++],y=s[c++],_=s[c++],x=s[c++],w=g>v?g:v,b=g>v?1:g/v,S=g>v?v/g:1,M=Math.abs(g-v)>.001,T=m+y;M?(t.translate(d,p),t.rotate(_),t.scale(b,S),t.arc(0,0,w,m,T,1-x),t.scale(1/b,1/S),t.rotate(-_),t.translate(-d,-p)):t.arc(d,p,w,m,T,1-x),1==c&&(e=Ap(m)*g+d,n=Pp(m)*v+p),i=Ap(T)*g+d,r=Pp(T)*v+p;break;case Sp.R:e=i=s[c],n=r=s[c+1],t.rect(s[c++],s[c++],s[c++],s[c++]);break;case Sp.Z:t.closePath(),i=e,r=n}}}},Rp.CMD=Sp;var Bp=2*Math.PI,zp=2*Math.PI,Fp=Rp.CMD,Np=2*Math.PI,Vp=1e-4,Wp=[-1,-1,-1],Hp=[-1,-1],Gp=od.prototype.getCanvasPattern,qp=Math.abs,Xp=new Rp(!0);zr.prototype={constructor:zr,type:"path",__dirtyPath:!0,strokeContainThreshold:5,brush:function(t,e){var n=this.style,i=this.path||Xp,r=n.hasStroke(),a=n.hasFill(),o=n.fill,s=n.stroke,l=a&&!!o.colorStops,u=r&&!!s.colorStops,h=a&&!!o.image,c=r&&!!s.image;if(n.bind(t,this,e),this.setTransform(t),this.__dirty){var f;l&&(f=f||this.getBoundingRect(),this._fillGradient=n.getGradient(t,o,f)),u&&(f=f||this.getBoundingRect(),this._strokeGradient=n.getGradient(t,s,f))}l?t.fillStyle=this._fillGradient:h&&(t.fillStyle=Gp.call(o,t)),u?t.strokeStyle=this._strokeGradient:c&&(t.strokeStyle=Gp.call(s,t));var d=n.lineDash,p=n.lineDashOffset,g=!!t.setLineDash,v=this.getGlobalScale();if(i.setScale(v[0],v[1]),this.__dirtyPath||d&&!g&&r?(i.beginPath(t),d&&!g&&(i.setLineDash(d),i.setLineDashOffset(p)),this.buildPath(i,this.shape,!1),this.path&&(this.__dirtyPath=!1)):(t.beginPath(),this.path.rebuildPath(t)),a)if(null!=n.fillOpacity){var m=t.globalAlpha;t.globalAlpha=n.fillOpacity*n.opacity,i.fill(t),t.globalAlpha=m}else i.fill(t);if(d&&g&&(t.setLineDash(d),t.lineDashOffset=p),r)if(null!=n.strokeOpacity){var m=t.globalAlpha;t.globalAlpha=n.strokeOpacity*n.opacity,i.stroke(t),t.globalAlpha=m}else i.stroke(t);d&&g&&t.setLineDash([]),null!=n.text&&(this.restoreTransform(t),this.drawRectText(t,this.getBoundingRect()))},buildPath:function(){},createPathProxy:function(){this.path=new Rp},getBoundingRect:function(){var t=this._rect,e=this.style,n=!t;if(n){var i=this.path;i||(i=this.path=new Rp),this.__dirtyPath&&(i.beginPath(),this.buildPath(i,this.shape,!1)),t=i.getBoundingRect()}if(this._rect=t,e.hasStroke()){var r=this._rectWithStroke||(this._rectWithStroke=t.clone());if(this.__dirty||n){r.copy(t);var a=e.lineWidth,o=e.strokeNoScale?this.getLineScale():1;e.hasFill()||(a=Math.max(a,this.strokeContainThreshold||4)),o>1e-10&&(r.width+=a/o,r.height+=a/o,r.x-=a/o/2,r.y-=a/o/2)}return r}return t},contain:function(t,e){var n=this.transformCoordToLocal(t,e),i=this.getBoundingRect(),r=this.style;if(t=n[0],e=n[1],i.contain(t,e)){var a=this.path.data;if(r.hasStroke()){var o=r.lineWidth,s=r.strokeNoScale?this.getLineScale():1;if(s>1e-10&&(r.hasFill()||(o=Math.max(o,this.strokeContainThreshold)),Br(a,o/s,t,e)))return!0}if(r.hasFill())return Rr(a,t,e)}return!1},dirty:function(t){null==t&&(t=!0),t&&(this.__dirtyPath=t,this._rect=null),this.__dirty=this.__dirtyText=!0,this.__zr&&this.__zr.refresh(),this.__clipTarget&&this.__clipTarget.dirty()},animateShape:function(t){return this.animate("shape",t)},attrKV:function(t,e){"shape"===t?(this.setShape(e),this.__dirtyPath=!0,this._rect=null):gi.prototype.attrKV.call(this,t,e)},setShape:function(t,e){var n=this.shape;if(n){if(S(t))for(var i in t)t.hasOwnProperty(i)&&(n[i]=t[i]);else n[t]=e;this.dirty(!0)}return this},getLineScale:function(){var t=this.transform;return t&&qp(t[0]-1)>1e-10&&qp(t[3]-1)>1e-10?Math.sqrt(qp(t[0]*t[3]-t[2]*t[1])):1}},zr.extend=function(t){var e=function(e){zr.call(this,e),t.style&&this.style.extendFrom(t.style,!1);var n=t.shape;if(n){this.shape=this.shape||{};var i=this.shape;for(var r in n)!i.hasOwnProperty(r)&&n.hasOwnProperty(r)&&(i[r]=n[r])}t.init&&t.init.call(this,e)};h(e,zr);for(var n in t)"style"!==n&&"shape"!==n&&(e.prototype[n]=t[n]);return e},h(zr,gi);var jp=Rp.CMD,Up=[[],[],[]],Yp=Math.sqrt,Zp=Math.atan2,$p=function(t,e){var n,i,r,a,o,s,l=t.data,u=jp.M,h=jp.C,c=jp.L,f=jp.R,d=jp.A,p=jp.Q;for(r=0,a=0;ro;o++){var s=Up[o];s[0]=l[r++],s[1]=l[r++],ae(s,s,e),l[a++]=s[0],l[a++]=s[1]}}},Qp=Math.sqrt,Kp=Math.sin,Jp=Math.cos,tg=Math.PI,eg=function(t){return Math.sqrt(t[0]*t[0]+t[1]*t[1])},ng=function(t,e){return(t[0]*e[0]+t[1]*e[1])/(eg(t)*eg(e))},ig=function(t,e){return(t[0]*e[1]=11?function(){var e,n=this.__clipPaths,i=this.style;if(n)for(var r=0;ra;a++)r+=ee(t[a-1],t[a]);var o=r/2;o=n>o?n:o;for(var a=0;o>a;a++){var s,l,u,h=a/(o-1)*(e?n:n-1),c=Math.floor(h),f=h-c,d=t[c%n];e?(s=t[(c-1+n)%n],l=t[(c+1)%n],u=t[(c+2)%n]):(s=t[0===c?c:c-1],l=t[c>n-2?n-1:c+1],u=t[c>n-3?n-1:c+2]);var p=f*f,g=f*p;i.push([qr(s[0],d[0],l[0],u[0],f,p,g),qr(s[1],d[1],l[1],u[1],f,p,g)])}return i},dg=function(t,e,n,i){var r,a,o,s,l=[],u=[],h=[],c=[];if(i){o=[1/0,1/0],s=[-1/0,-1/0];for(var f=0,d=t.length;d>f;f++)oe(o,o,t[f]),se(s,s,t[f]);oe(o,o,i[0]),se(s,s,i[1])}for(var f=0,d=t.length;d>f;f++){var p=t[f];if(n)r=t[f?f-1:d-1],a=t[(f+1)%d];else{if(0===f||f===d-1){l.push(G(t[f]));continue}r=t[f-1],a=t[f+1]}U(u,a,r),J(u,u,e);var g=ee(p,r),v=ee(p,a),m=g+v;0!==m&&(g/=m,v/=m),J(h,u,-g),J(c,u,v);var y=X([],p,h),_=X([],p,c);i&&(se(y,y,o),oe(y,y,s),se(_,_,o),oe(_,_,s)),l.push(y),l.push(_)}return n&&l.push(l.shift()),l},pg=zr.extend({type:"polygon",shape:{points:null,smooth:!1,smoothConstraint:null},buildPath:function(t,e){Xr(t,e,!0)}}),gg=zr.extend({type:"polyline",shape:{points:null,smooth:!1,smoothConstraint:null},style:{stroke:"#000",fill:null},buildPath:function(t,e){Xr(t,e,!1)}}),vg=zr.extend({type:"rect",shape:{r:0,x:0,y:0,width:0,height:0},buildPath:function(t,e){var n=e.x,i=e.y,r=e.width,a=e.height;e.r?$n(t,e):t.rect(n,i,r,a),t.closePath()}}),mg=zr.extend({type:"line",shape:{x1:0,y1:0,x2:0,y2:0,percent:1},style:{stroke:"#000",fill:null},buildPath:function(t,e){var n=e.x1,i=e.y1,r=e.x2,a=e.y2,o=e.percent;0!==o&&(t.moveTo(n,i),1>o&&(r=n*(1-o)+r*o,a=i*(1-o)+a*o),t.lineTo(r,a))},pointAt:function(t){var e=this.shape;return[e.x1*(1-t)+e.x2*t,e.y1*(1-t)+e.y2*t]}}),yg=[],_g=zr.extend({type:"bezier-curve",shape:{x1:0,y1:0,x2:0,y2:0,cpx1:0,cpy1:0,percent:1},style:{stroke:"#000",fill:null},buildPath:function(t,e){var n=e.x1,i=e.y1,r=e.x2,a=e.y2,o=e.cpx1,s=e.cpy1,l=e.cpx2,u=e.cpy2,h=e.percent;0!==h&&(t.moveTo(n,i),null==l||null==u?(1>h&&(vr(n,o,r,h,yg),o=yg[1],r=yg[2],vr(i,s,a,h,yg),s=yg[1],a=yg[2]),t.quadraticCurveTo(o,s,r,a)):(1>h&&(hr(n,o,l,r,h,yg),o=yg[1],l=yg[2],r=yg[3],hr(i,s,u,a,h,yg),s=yg[1],u=yg[2],a=yg[3]),t.bezierCurveTo(o,s,l,u,r,a)))},pointAt:function(t){return jr(this.shape,t,!1)},tangentAt:function(t){var e=jr(this.shape,t,!0);return te(e,e)}}),xg=zr.extend({type:"arc",shape:{cx:0,cy:0,r:0,startAngle:0,endAngle:2*Math.PI,clockwise:!0},style:{stroke:"#000",fill:null},buildPath:function(t,e){var n=e.cx,i=e.cy,r=Math.max(e.r,0),a=e.startAngle,o=e.endAngle,s=e.clockwise,l=Math.cos(a),u=Math.sin(a);t.moveTo(l*r+n,u*r+i),t.arc(n,i,r,a,o,!s)}}),wg=zr.extend({type:"compound",shape:{paths:null},_updatePathDirty:function(){for(var t=this.__dirtyPath,e=this.shape.paths,n=0;n"'])/g,Ug={"&":"&","<":"<",">":">",'"':""","'":"'"},Yg=["a","b","c","d","e","f","g"],Zg=function(t,e){return"{"+t+(null==e?"":e)+"}"},$g=Vn,Qg=En,Kg=(Object.freeze||Object)({addCommas:uo,toCamelCase:ho,normalizeCssArray:Xg,encodeHTML:co,formatTpl:fo,formatTplSimple:po,getTooltipMarker:go,formatTime:mo,capitalFirst:yo,truncateText:$g,getTextRect:Qg}),Jg=d,tv=["left","right","top","bottom","width","height"],ev=[["width","left","right"],["height","top","bottom"]],nv=(_(_o,"vertical"),_(_o,"horizontal"),{getBoxLayoutParams:function(){return{left:this.get("left"),top:this.get("top"),right:this.get("right"),bottom:this.get("bottom"),width:this.get("width"),height:this.get("height")}}}),iv=Xi(),rv=Na.extend({type:"component",id:"",name:"",mainType:"",subType:"",componentIndex:0,defaultOption:null,ecModel:null,dependentModels:[],uid:null,layoutMode:null,$constructor:function(t,e,n,i){Na.call(this,t,e,n,i),this.uid=Ha("ec_cpt_model")},init:function(t,e,n){this.mergeDefaultAndTheme(t,n)},mergeDefaultAndTheme:function(t,e){var n=this.layoutMode,i=n?bo(t):{},a=e.getTheme();r(t,a.get(this.mainType)),r(t,this.getDefaultOption()),n&&wo(t,i,n)},mergeOption:function(t){r(this.option,t,!0);var e=this.layoutMode;e&&wo(this.option,t,e)},optionUpdated:function(){},getDefaultOption:function(){var t=iv(this);if(!t.defaultOption){for(var e=[],n=this.constructor;n;){var i=n.prototype.defaultOption;i&&e.push(i),n=n.superClass}for(var a={},o=e.length-1;o>=0;o--)a=r(a,e[o],!0);t.defaultOption=a}return t.defaultOption},getReferringComponents:function(t){return this.ecModel.queryComponents({mainType:t,index:this.get(t+"Index",!0),id:this.get(t+"Id",!0)})}});ir(rv,{registerWhenExtend:!0}),Ga(rv),qa(rv,Mo),c(rv,nv);var av="";"undefined"!=typeof navigator&&(av=navigator.platform||"");var ov={color:["#c23531","#2f4554","#61a0a8","#d48265","#91c7ae","#749f83","#ca8622","#bda29a","#6e7074","#546570","#c4ccd3"],gradientColor:["#f6efa6","#d88273","#bf444c"],textStyle:{fontFamily:av.match(/^Win/)?"Microsoft YaHei":"sans-serif",fontSize:12,fontStyle:"normal",fontWeight:"normal"},blendMode:null,animation:"auto",animationDuration:1e3,animationDurationUpdate:300,animationEasing:"exponentialOut",animationEasingUpdate:"cubicOut",animationThreshold:2e3,progressiveThreshold:3e3,progressive:400,hoverLayerThreshold:3e3,useUTC:!1},sv=Xi(),lv={clearColorPalette:function(){sv(this).colorIdx=0,sv(this).colorNameMap={}},getColorFromPalette:function(t,e,n){e=e||this;var i=sv(e),r=i.colorIdx||0,a=i.colorNameMap=i.colorNameMap||{};if(a.hasOwnProperty(t))return a[t];var o=Bi(this.get("color",!0)),s=this.get("colorLayer",!0),l=null!=n&&s?To(s,n):o;if(l=l||o,l&&l.length){var u=l[r];return t&&(a[t]=u),i.colorIdx=(r+1)%l.length,u}}},uv={cartesian2d:function(t,e,n,i){var r=t.getReferringComponents("xAxis")[0],a=t.getReferringComponents("yAxis")[0];e.coordSysDims=["x","y"],n.set("x",r),n.set("y",a),ko(r)&&(i.set("x",r),e.firstCategoryDimIndex=0),ko(a)&&(i.set("y",a),e.firstCategoryDimIndex=1)},singleAxis:function(t,e,n,i){var r=t.getReferringComponents("singleAxis")[0];e.coordSysDims=["single"],n.set("single",r),ko(r)&&(i.set("single",r),e.firstCategoryDimIndex=0)},polar:function(t,e,n,i){var r=t.getReferringComponents("polar")[0],a=r.findAxisModel("radiusAxis"),o=r.findAxisModel("angleAxis");e.coordSysDims=["radius","angle"],n.set("radius",a),n.set("angle",o),ko(a)&&(i.set("radius",a),e.firstCategoryDimIndex=0),ko(o)&&(i.set("angle",o),e.firstCategoryDimIndex=1)},geo:function(t,e){e.coordSysDims=["lng","lat"]},parallel:function(t,e,n,i){var r=t.ecModel,a=r.getComponent("parallel",t.get("parallelIndex")),o=e.coordSysDims=a.dimensions.slice();d(a.parallelAxisIndex,function(t,a){var s=r.getComponent("parallelAxis",t),l=o[a];n.set(l,s),ko(s)&&null==e.firstCategoryDimIndex&&(i.set(l,s),e.firstCategoryDimIndex=a)})}},hv="original",cv="arrayRows",fv="objectRows",dv="keyedColumns",pv="unknown",gv="typedArray",vv="column",mv="row";Io.seriesDataToSource=function(t){return new Io({data:t,sourceFormat:T(t)?gv:hv,fromDataset:!1})},tr(Io);var yv=Xi(),_v="\x00_ec_inner",xv=Na.extend({init:function(t,e,n,i){n=n||{},this.option=null,this._theme=new Na(n),this._optionManager=i},setOption:function(t,e){L(!(_v in t),"please use chart.getOption()"),this._optionManager.setOption(t,e),this.resetOption(null)},resetOption:function(t){var e=!1,n=this._optionManager;if(!t||"recreate"===t){var i=n.mountOption("recreate"===t);this.option&&"recreate"!==t?(this.restoreData(),this.mergeOption(i)):Go.call(this,i),e=!0}if(("timeline"===t||"media"===t)&&this.restoreData(),!t||"recreate"===t||"timeline"===t){var r=n.getTimelineOption(this);r&&(this.mergeOption(r),e=!0)}if(!t||"recreate"===t||"media"===t){var a=n.getMediaOption(this,this._api);a.length&&d(a,function(t){this.mergeOption(t,e=!0)},this)}return e},mergeOption:function(t){function e(e,i){var r=Bi(t[e]),s=Vi(a.get(e),r);Wi(s),d(s,function(t){var n=t.option;S(n)&&(t.keyInfo.mainType=e,t.keyInfo.subType=Xo(e,n,t.exist))});var l=qo(a,i);n[e]=[],a.set(e,[]),d(s,function(t,i){var r=t.exist,s=t.option;if(L(S(s)||r,"Empty component definition"),s){var u=rv.getClass(e,t.keyInfo.subType,!0);if(r&&r instanceof u)r.name=t.keyInfo.name,r.mergeOption(s,this),r.optionUpdated(s,!1);else{var h=o({dependentModels:l,componentIndex:i},t.keyInfo);r=new u(s,this,this,h),o(r,h),r.init(s,this,this,h),r.optionUpdated(null,!0)}}else r.mergeOption({},this),r.optionUpdated({},!1);a.get(e)[i]=r,n[e][i]=r.option},this),"series"===e&&jo(this,a.get("series"))}var n=this.option,a=this._componentsMap,s=[];Po(this),d(t,function(t,e){null!=t&&(rv.hasClass(e)?e&&s.push(e):n[e]=null==n[e]?i(t):r(n[e],t,!0))}),rv.topologicalTravel(s,rv.getAllClassMainTypes(),e,this),this._seriesIndicesMap=F(this._seriesIndices=this._seriesIndices||[])},getOption:function(){var t=i(this.option);return d(t,function(e,n){if(rv.hasClass(n)){for(var e=Bi(e),i=e.length-1;i>=0;i--)Gi(e[i])&&e.splice(i,1);t[n]=e}}),delete t[_v],t},getTheme:function(){return this._theme},getComponent:function(t,e){var n=this._componentsMap.get(t);return n?n[e||0]:void 0},queryComponents:function(t){var e=t.mainType;if(!e)return[];var n=t.index,i=t.id,r=t.name,a=this._componentsMap.get(e);if(!a||!a.length)return[];var o;if(null!=n)x(n)||(n=[n]),o=v(p(n,function(t){return a[t]}),function(t){return!!t});else if(null!=i){var s=x(i);o=v(a,function(t){return s&&u(i,t.id)>=0||!s&&t.id===i})}else if(null!=r){var l=x(r);o=v(a,function(t){return l&&u(r,t.name)>=0||!l&&t.name===r})}else o=a.slice();return Uo(o,t)},findComponents:function(t){function e(t){var e=r+"Index",n=r+"Id",i=r+"Name";return!t||null==t[e]&&null==t[n]&&null==t[i]?null:{mainType:r,index:t[e],id:t[n],name:t[i]}}function n(e){return t.filter?v(e,t.filter):e}var i=t.query,r=t.mainType,a=e(i),o=a?this.queryComponents(a):this._componentsMap.get(r);return n(Uo(o,t))},eachComponent:function(t,e,n){var i=this._componentsMap;if("function"==typeof t)n=e,e=t,i.each(function(t,i){d(t,function(t,r){e.call(n,i,t,r)})});else if(b(t))d(i.get(t),e,n);else if(S(t)){var r=this.findComponents(t);d(r,e,n)}},getSeriesByName:function(t){var e=this._componentsMap.get("series");return v(e,function(e){return e.name===t})},getSeriesByIndex:function(t){return this._componentsMap.get("series")[t]},getSeriesByType:function(t){var e=this._componentsMap.get("series");return v(e,function(e){return e.subType===t})},getSeries:function(){return this._componentsMap.get("series").slice()},getSeriesCount:function(){return this._componentsMap.get("series").length},eachSeries:function(t,e){d(this._seriesIndices,function(n){var i=this._componentsMap.get("series")[n];t.call(e,i,n)},this)},eachRawSeries:function(t,e){d(this._componentsMap.get("series"),t,e)},eachSeriesByType:function(t,e,n){d(this._seriesIndices,function(i){var r=this._componentsMap.get("series")[i];r.subType===t&&e.call(n,r,i)},this)},eachRawSeriesByType:function(t,e,n){return d(this.getSeriesByType(t),e,n)},isSeriesFiltered:function(t){return null==this._seriesIndicesMap.get(t.componentIndex)},getCurrentSeriesIndices:function(){return(this._seriesIndices||[]).slice()},filterSeries:function(t,e){var n=v(this._componentsMap.get("series"),t,e);jo(this,n)},restoreData:function(t){var e=this._componentsMap;jo(this,e.get("series"));var n=[];e.each(function(t,e){n.push(e)}),rv.topologicalTravel(n,rv.getAllClassMainTypes(),function(n){d(e.get(n),function(e){("series"!==n||!Wo(e,t))&&e.restoreData()})})}});c(xv,lv);var wv=["getDom","getZr","getWidth","getHeight","getDevicePixelRatio","dispatchAction","isDisposed","on","off","getDataURL","getConnectedDataURL","getModel","getOption","getViewOfComponentModel","getViewOfSeriesModel"],bv={};Zo.prototype={constructor:Zo,create:function(t,e){var n=[];d(bv,function(i){var r=i.create(t,e);n=n.concat(r||[])}),this._coordinateSystems=n},update:function(t,e){d(this._coordinateSystems,function(n){n.update&&n.update(t,e)})},getCoordinateSystems:function(){return this._coordinateSystems.slice()}},Zo.register=function(t,e){bv[t]=e},Zo.get=function(t){return bv[t]};var Sv=d,Mv=i,Tv=p,Cv=r,kv=/^(min|max)?(.+)$/;$o.prototype={constructor:$o,setOption:function(t,e){t&&d(Bi(t.series),function(t){t&&t.data&&T(t.data)&&R(t.data)}),t=Mv(t,!0);var n=this._optionBackup,i=Qo.call(this,t,e,!n);this._newBaseOption=i.baseOption,n?(es(n.baseOption,i.baseOption),i.timelineOptions.length&&(n.timelineOptions=i.timelineOptions),i.mediaList.length&&(n.mediaList=i.mediaList),i.mediaDefault&&(n.mediaDefault=i.mediaDefault)):this._optionBackup=i},mountOption:function(t){var e=this._optionBackup;return this._timelineOptions=Tv(e.timelineOptions,Mv),this._mediaList=Tv(e.mediaList,Mv),this._mediaDefault=Mv(e.mediaDefault),this._currentMediaIndices=[],Mv(t?e.baseOption:this._newBaseOption)},getTimelineOption:function(t){var e,n=this._timelineOptions;if(n.length){var i=t.getComponent("timeline");i&&(e=Mv(n[i.getCurrentIndex()],!0))}return e},getMediaOption:function(){var t=this._api.getWidth(),e=this._api.getHeight(),n=this._mediaList,i=this._mediaDefault,r=[],a=[];if(!n.length&&!i)return a;for(var o=0,s=n.length;s>o;o++)Ko(n[o].query,t,e)&&r.push(o);return!r.length&&i&&(r=[-1]),r.length&&!ts(r,this._currentMediaIndices)&&(a=Tv(r,function(t){return Mv(-1===t?i.option:n[t].option)})),this._currentMediaIndices=r,a}};var Iv=d,Dv=S,Av=["areaStyle","lineStyle","nodeStyle","linkStyle","chordStyle","label","labelLine"],Pv=function(t,e){Iv(ls(t.series),function(t){Dv(t)&&ss(t)});var n=["xAxis","yAxis","radiusAxis","angleAxis","singleAxis","parallelAxis","radar"];e&&n.push("valueAxis","categoryAxis","logAxis","timeAxis"),Iv(n,function(e){Iv(ls(t[e]),function(t){t&&(as(t,"axisLabel"),as(t.axisPointer,"label"))})}),Iv(ls(t.parallel),function(t){var e=t&&t.parallelAxisDefault;as(e,"axisLabel"),as(e&&e.axisPointer,"label")}),Iv(ls(t.calendar),function(t){is(t,"itemStyle"),as(t,"dayLabel"),as(t,"monthLabel"),as(t,"yearLabel")}),Iv(ls(t.radar),function(t){as(t,"name")}),Iv(ls(t.geo),function(t){Dv(t)&&(os(t),Iv(ls(t.regions),function(t){os(t)}))}),Iv(ls(t.timeline),function(t){os(t),is(t,"label"),is(t,"itemStyle"),is(t,"controlStyle",!0);var e=t.data;x(e)&&d(e,function(t){S(t)&&(is(t,"label"),is(t,"itemStyle"))})}),Iv(ls(t.toolbox),function(t){is(t,"iconStyle"),Iv(t.feature,function(t){is(t,"iconStyle")})}),as(us(t.axisPointer),"label"),as(us(t.tooltip).axisPointer,"label")},Ov=[["x","left"],["y","top"],["x2","right"],["y2","bottom"]],Lv=["grid","geo","parallel","legend","toolbox","title","visualMap","dataZoom","timeline"],Ev=function(t,e){Pv(t,e),t.series=Bi(t.series),d(t.series,function(t){if(S(t)){var e=t.type;if(("pie"===e||"gauge"===e)&&null!=t.clockWise&&(t.clockwise=t.clockWise),"gauge"===e){var n=hs(t,"pointer.color");null!=n&&cs(t,"itemStyle.normal.color",n)}fs(t)}}),t.dataRange&&(t.visualMap=t.dataRange),d(Lv,function(e){var n=t[e];n&&(x(n)||(n=[n]),d(n,function(t){fs(t)}))})},Rv=function(t){var e=F();t.eachSeries(function(t){var n=t.get("stack");if(n){var i=e.get(n)||e.set(n,[]),r=t.getData(),a={stackResultDimension:r.getCalculationInfo("stackResultDimension"),stackedOverDimension:r.getCalculationInfo("stackedOverDimension"),stackedDimension:r.getCalculationInfo("stackedDimension"),stackedByDimension:r.getCalculationInfo("stackedByDimension"),isStackedByIndex:r.getCalculationInfo("isStackedByIndex"),data:r,seriesModel:t};if(!a.stackedDimension||!a.isStackedByIndex&&!a.stackedByDimension)return;i.length&&r.setCalculationInfo("stackedOnSeries",i[i.length-1].seriesModel),i.push(a)}}),e.each(ds)},Bv=ps.prototype;Bv.pure=!1,Bv.persistent=!0,Bv.getSource=function(){return this._source};var zv={arrayRows_column:{pure:!0,count:function(){return Math.max(0,this._data.length-this._source.startIndex)},getItem:function(t){return this._data[t+this._source.startIndex]},appendData:ms},arrayRows_row:{pure:!0,count:function(){var t=this._data[0];return t?Math.max(0,t.length-this._source.startIndex):0},getItem:function(t){t+=this._source.startIndex;for(var e=[],n=this._data,i=0;i=1)&&(t=1),t}var n=this._upstream,i=t&&t.skip;if(this._dirty&&n){var r=this.context;r.data=r.outputData=n.context.outputData}this.__pipeline&&(this.__pipeline.currentTask=this);var a;this._plan&&!i&&(a=this._plan(this.context));var o=e(this._modBy),s=this._modDataCount||0,l=e(t&&t.modBy),u=t&&t.modDataCount||0;(o!==l||s!==u)&&(a="reset");var h;(this._dirty||"reset"===a)&&(this._dirty=!1,h=Ts(this,i)),this._modBy=l,this._modDataCount=u;var c=t&&t.step;if(this._dueEnd=n?n._outputDueEnd:this._count?this._count(this.context):1/0,this._progress){var f=this._dueIndex,d=Math.min(null!=c?this._dueIndex+c:1/0,this._dueEnd);if(!i&&(h||d>f)){var p=this._progress;if(x(p))for(var g=0;gi?i++:null}function e(){var t=i%o*r+Math.ceil(i/o),e=i>=n?null:a>t?t:i;return i++,e}var n,i,r,a,o,s={reset:function(l,u,h,c){i=l,n=u,r=h,a=c,o=Math.ceil(a/r),s.next=r>1&&a>0?e:t}};return s}();Hv.dirty=function(){this._dirty=!0,this._onDirty&&this._onDirty(this.context)},Hv.unfinished=function(){return this._progress&&this._dueIndex":"",v=p+s.join(p||", ");return{renderMode:i,content:v,style:u}}function a(t){return{renderMode:i,content:co(uo(t)),style:u}}var o=this;i=i||"html";var s="html"===i?"
":"\n",l="richText"===i,u={},h=0,c=this.getData(),f=c.mapDimension("defaultedTooltip",!0),p=f.length,v=this.getRawValue(t),m=x(v),y=c.getItemVisual(t,"color");S(y)&&y.colorStops&&(y=(y.colorStops[0]||{}).color),y=y||"transparent";var _=p>1||m&&!p?r(v):a(p?ws(c,t,f[0]):m?v[0]:v),w=_.content,b=o.seriesIndex+"at"+h,M=go({color:y,type:"item",renderMode:i,markerId:b});u[b]=y,++h;var T=c.getName(t),C=this.name;Hi(this)||(C=""),C=C?co(C)+(e?": ":s):"";var k="string"==typeof M?M:M.content,I=e?k+C+w:C+k+(T?co(T)+": "+w:w);return{html:I,markers:u}},isAnimationEnabled:function(){if(Vc.node)return!1;var t=this.getShallow("animation");return t&&this.getData().count()>this.getShallow("animationThreshold")&&(t=!1),t},restoreData:function(){this.dataTask.dirty()},getColorFromPalette:function(t,e,n){var i=this.ecModel,r=lv.getColorFromPalette.call(this,t,e,n);return r||(r=i.getColorFromPalette(t,e,n)),r},coordDimToDataDim:function(t){return this.getRawData().mapDimension(t,!0)},getProgressive:function(){return this.get("progressive")},getProgressiveThreshold:function(){return this.get("progressiveThreshold")},getAxisTooltipData:null,getTooltipPosition:null,pipeTask:null,preventIncremental:null,pipelineContext:null});c(Xv,Wv),c(Xv,lv);var jv=function(){this.group=new Zf,this.uid=Ha("viewComponent")};jv.prototype={constructor:jv,init:function(){},render:function(){},dispose:function(){},filterForExposedEvent:null};var Uv=jv.prototype;Uv.updateView=Uv.updateLayout=Uv.updateVisual=function(){},Ji(jv),ir(jv,{registerWhenExtend:!0});var Yv=function(){var t=Xi();return function(e){var n=t(e),i=e.pipelineContext,r=n.large,a=n.progressiveRender,o=n.large=i.large,s=n.progressiveRender=i.progressiveRender;return!!(r^o||a^s)&&"reset"}},Zv=Xi(),$v=Yv();Es.prototype={type:"chart",init:function(){},render:function(){},highlight:function(t,e,n,i){Bs(t.getData(),i,"emphasis")},downplay:function(t,e,n,i){Bs(t.getData(),i,"normal")},remove:function(){this.group.removeAll()},dispose:function(){},incrementalPrepareRender:null,incrementalRender:null,updateTransform:null,filterForExposedEvent:null};var Qv=Es.prototype;Qv.updateView=Qv.updateLayout=Qv.updateVisual=function(t,e,n,i){this.render(t,e,n,i)},Ji(Es,["dispose"]),ir(Es,{registerWhenExtend:!0}),Es.markUpdateMethod=function(t,e){Zv(t).updateMethod=e};var Kv={incrementalPrepareRender:{progress:function(t,e){e.view.incrementalRender(t,e.model,e.ecModel,e.api,e.payload)}},render:{forceFirstProgress:!0,progress:function(t,e){e.view.render(e.model,e.ecModel,e.api,e.payload)}}},Jv={createOnAllSeries:!0,performRawSeries:!0,reset:function(t,e){var n=t.getData(),i=(t.visualColorAccessPath||"itemStyle.color").split("."),r=t.get(i)||t.getColorFromPalette(t.name,null,e.getSeriesCount());if(n.setVisual("color",r),!e.isSeriesFiltered(t)){"function"!=typeof r||r instanceof bg||n.each(function(e){n.setItemVisual(e,"color",r(t.getDataParams(e)))});var a=function(t,e){var n=t.getItemModel(e),r=n.get(i,!0);null!=r&&t.setItemVisual(e,"color",r)};return{dataEach:n.hasItemOption?a:null}}}},tm={toolbox:{brush:{title:{rect:"矩形选择",polygon:"圈选",lineX:"横向选择",lineY:"纵向选择",keep:"保持选择",clear:"清除选择"}},dataView:{title:"数据视图",lang:["数据视图","关闭","刷新"]},dataZoom:{title:{zoom:"区域缩放",back:"区域缩放还原"}},magicType:{title:{line:"切换为折线图",bar:"切换为柱状图",stack:"切换为堆叠",tiled:"切换为平铺"}},restore:{title:"还原"},saveAsImage:{title:"保存为图片",lang:["右键另存为图片"]}},series:{typeNames:{pie:"饼图",bar:"柱状图",line:"折线图",scatter:"散点图",effectScatter:"涟漪散点图",radar:"雷达图",tree:"树图",treemap:"矩形树图",boxplot:"箱型图",candlestick:"K线图",k:"K线图",heatmap:"热力图",map:"地图",parallel:"平行坐标图",lines:"线图",graph:"关系图",sankey:"桑基图",funnel:"漏斗图",gauge:"仪表盘图",pictorialBar:"象形柱图",themeRiver:"主题河流图",sunburst:"旭日图"}},aria:{general:{withTitle:"这是一个关于“{title}”的图表。",withoutTitle:"这是一个图表,"},series:{single:{prefix:"",withName:"图表类型是{seriesType},表示{seriesName}。",withoutName:"图表类型是{seriesType}。"},multiple:{prefix:"它由{seriesCount}个图表系列组成。",withName:"第{seriesId}个系列是一个表示{seriesName}的{seriesType},",withoutName:"第{seriesId}个系列是一个{seriesType},",separator:{middle:";",end:"。"}}},data:{allData:"其数据是——",partialData:"其中,前{displayCnt}项是——",withName:"{name}的数据是{value}",withoutName:"{value}",separator:{middle:",",end:""}}}},em=function(t,e){function n(t,e){if("string"!=typeof t)return t;var n=t;return d(e,function(t,e){n=n.replace(new RegExp("\\{\\s*"+e+"\\s*\\}","g"),t)}),n}function i(t){var e=o.get(t);if(null==e){for(var n=t.split("."),i=tm.aria,r=0;rs)){var f=r();l=f?n(i("general.withTitle"),{title:f}):i("general.withoutTitle");var p=[],g=s>1?"series.multiple.prefix":"series.single.prefix";l+=n(i(g),{seriesCount:s}),e.eachSeries(function(t,e){if(c>e){var r,o=t.get("name"),l="series."+(s>1?"multiple":"single")+".";r=i(o?l+"withName":l+"withoutName"),r=n(r,{seriesId:t.seriesIndex,seriesName:t.get("name"),seriesType:a(t.subType)});var h=t.getData();window.data=h,r+=h.count()>u?n(i("data.partialData"),{displayCnt:u}):i("data.allData");for(var f=[],d=0;dd){var g=h.getName(d),v=ws(h,d);f.push(n(i(g?"data.withName":"data.withoutName"),{name:g,value:v}))}r+=f.join(i("data.separator.middle"))+i("data.separator.end"),p.push(r)}}),l+=p.join(i("series.multiple.separator.middle"))+i("series.multiple.separator.end"),t.setAttribute("aria-label",l)}}},nm=Math.PI,im=function(t,e){e=e||{},s(e,{text:"loading",color:"#c23531",textColor:"#000",maskColor:"rgba(255, 255, 255, 0.8)",zlevel:0});var n=new vg({style:{fill:e.maskColor},zlevel:e.zlevel,z:1e4}),i=new xg({shape:{startAngle:-nm/2,endAngle:-nm/2+.1,r:10},style:{stroke:e.color,lineCap:"round",lineWidth:5},zlevel:e.zlevel,z:10001}),r=new vg({style:{fill:"none",text:e.text,textPosition:"right",textDistance:10,textFill:e.textColor},zlevel:e.zlevel,z:10001});i.animateShape(!0).when(1e3,{endAngle:3*nm/2}).start("circularInOut"),i.animateShape(!0).when(1e3,{startAngle:3*nm/2}).delay(300).start("circularInOut");var a=new Zf;return a.add(i),a.add(r),a.add(n),a.resize=function(){var e=t.getWidth()/2,a=t.getHeight()/2;i.setShape({cx:e,cy:a});var o=i.shape.r;r.setShape({x:e-o,y:a-o,width:2*o,height:2*o}),n.setShape({x:0,y:0,width:t.getWidth(),height:t.getHeight()})},a.resize(),a},rm=Vs.prototype;rm.restoreData=function(t,e){t.restoreData(e),this._stageTaskMap.each(function(t){var e=t.overallTask;e&&e.dirty()})},rm.getPerformArgs=function(t,e){if(t.__pipeline){var n=this._pipelineMap.get(t.__pipeline.id),i=n.context,r=!e&&n.progressiveEnabled&&(!i||i.progressiveRender)&&t.__idxInPipeline>n.blockIndex,a=r?n.step:null,o=i&&i.modDataCount,s=null!=o?Math.ceil(o/a):null;return{step:a,modBy:s,modDataCount:o}}},rm.getPipeline=function(t){return this._pipelineMap.get(t)},rm.updateStreamModes=function(t,e){var n=this._pipelineMap.get(t.uid),i=t.getData(),r=i.count(),a=n.progressiveEnabled&&e.incrementalPrepareRender&&r>=n.threshold,o=t.get("large")&&r>=t.get("largeThreshold"),s="mod"===t.get("progressiveChunkMode")?r:null;t.pipelineContext=n.context={progressiveRender:a,modDataCount:s,large:o}},rm.restorePipelines=function(t){var e=this,n=e._pipelineMap=F();t.eachSeries(function(t){var i=t.getProgressive(),r=t.uid;n.set(r,{id:r,head:null,tail:null,threshold:t.getProgressiveThreshold(),progressiveEnabled:i&&!(t.preventIncremental&&t.preventIncremental()),blockIndex:-1,step:Math.round(i||700),count:0}),Ks(e,t,t.dataTask)})},rm.prepareStageTasks=function(){var t=this._stageTaskMap,e=this.ecInstance.getModel(),n=this.api;d(this._allHandlers,function(i){var r=t.get(i.uid)||t.set(i.uid,[]);i.reset&&Hs(this,i,r,e,n),i.overallReset&&Gs(this,i,r,e,n)},this)},rm.prepareView=function(t,e,n,i){var r=t.renderTask,a=r.context;a.model=e,a.ecModel=n,a.api=i,r.__block=!t.incrementalPrepareRender,Ks(this,e,r)},rm.performDataProcessorTasks=function(t,e){Ws(this,this._dataProcessorHandlers,t,e,{block:!0})},rm.performVisualTasks=function(t,e,n){Ws(this,this._visualHandlers,t,e,n)},rm.performSeriesTasks=function(t){var e;t.eachSeries(function(t){e|=t.dataTask.perform()}),this.unfinished|=e},rm.plan=function(){this._pipelineMap.each(function(t){var e=t.tail;do{if(e.__block){t.blockIndex=e.__idxInPipeline;break}e=e.getUpstream()}while(e)})};var am=rm.updatePayload=function(t,e){"remain"!==e&&(t.context.payload=e)},om=$s(0);Vs.wrapStageHandler=function(t,e){return w(t)&&(t={overallReset:t,seriesType:Js(t)}),t.uid=Ha("stageHandler"),e&&(t.visualType=e),t};var sm,lm={},um={};tl(lm,xv),tl(um,Yo),lm.eachSeriesByType=lm.eachRawSeriesByType=function(t){sm=t},lm.eachComponent=function(t){"series"===t.mainType&&t.subType&&(sm=t.subType)};var hm=["#37A2DA","#32C5E9","#67E0E3","#9FE6B8","#FFDB5C","#ff9f7f","#fb7293","#E062AE","#E690D1","#e7bcf3","#9d96f5","#8378EA","#96BFFF"],cm={color:hm,colorLayer:[["#37A2DA","#ffd85c","#fd7b5f"],["#37A2DA","#67E0E3","#FFDB5C","#ff9f7f","#E062AE","#9d96f5"],["#37A2DA","#32C5E9","#9FE6B8","#FFDB5C","#ff9f7f","#fb7293","#e7bcf3","#8378EA","#96BFFF"],hm]},fm="#eee",dm=function(){return{axisLine:{lineStyle:{color:fm}},axisTick:{lineStyle:{color:fm}},axisLabel:{textStyle:{color:fm}},splitLine:{lineStyle:{type:"dashed",color:"#aaa"}},splitArea:{areaStyle:{color:fm}}}},pm=["#dd6b66","#759aa0","#e69d87","#8dc1a9","#ea7e53","#eedd78","#73a373","#73b9bc","#7289ab","#91ca8c","#f49f42"],gm={color:pm,backgroundColor:"#333",tooltip:{axisPointer:{lineStyle:{color:fm},crossStyle:{color:fm}}},legend:{textStyle:{color:fm}},textStyle:{color:fm},title:{textStyle:{color:fm}},toolbox:{iconStyle:{normal:{borderColor:fm}}},dataZoom:{textStyle:{color:fm}},visualMap:{textStyle:{color:fm}},timeline:{lineStyle:{color:fm},itemStyle:{normal:{color:pm[1]}},label:{normal:{textStyle:{color:fm}}},controlStyle:{normal:{color:fm,borderColor:fm}}},timeAxis:dm(),logAxis:dm(),valueAxis:dm(),categoryAxis:dm(),line:{symbol:"circle"},graph:{color:pm},gauge:{title:{textStyle:{color:fm}}},candlestick:{itemStyle:{normal:{color:"#FD1050",color0:"#0CF49B",borderColor:"#FD1050",borderColor0:"#0CF49B"}}}}; +gm.categoryAxis.splitLine.show=!1,rv.extend({type:"dataset",defaultOption:{seriesLayoutBy:vv,sourceHeader:null,dimensions:null,source:null},optionUpdated:function(){Do(this)}}),jv.extend({type:"dataset"});var vm=zr.extend({type:"ellipse",shape:{cx:0,cy:0,rx:0,ry:0},buildPath:function(t,e){var n=.5522848,i=e.cx,r=e.cy,a=e.rx,o=e.ry,s=a*n,l=o*n;t.moveTo(i-a,r),t.bezierCurveTo(i-a,r-l,i-s,r-o,i,r-o),t.bezierCurveTo(i+s,r-o,i+a,r-l,i+a,r),t.bezierCurveTo(i+a,r+l,i+s,r+o,i,r+o),t.bezierCurveTo(i-s,r+o,i-a,r+l,i-a,r),t.closePath()}}),mm=/[\s,]+/;nl.prototype.parse=function(t,e){e=e||{};var n=el(t);if(!n)throw new Error("Illegal svg");var i=new Zf;this._root=i;var r=n.getAttribute("viewBox")||"",a=parseFloat(n.getAttribute("width")||e.width),o=parseFloat(n.getAttribute("height")||e.height);isNaN(a)&&(a=null),isNaN(o)&&(o=null),ol(n,i,null,!0);for(var s=n.firstChild;s;)this._parseNode(s,i),s=s.nextSibling;var l,u;if(r){var h=E(r).split(mm);h.length>=4&&(l={x:parseFloat(h[0]||0),y:parseFloat(h[1]||0),width:parseFloat(h[2]),height:parseFloat(h[3])})}if(l&&null!=a&&null!=o&&(u=hl(l,a,o),!e.ignoreViewBox)){var c=i;i=new Zf,i.add(c),c.scale=u.scale.slice(),c.position=u.position.slice()}return e.ignoreRootClip||null==a||null==o||i.setClipPath(new vg({shape:{x:0,y:0,width:a,height:o}})),{root:i,width:a,height:o,viewBoxRect:l,viewBoxTransform:u}},nl.prototype._parseNode=function(t,e){var n=t.nodeName.toLowerCase();"defs"===n?this._isDefine=!0:"text"===n&&(this._isText=!0);var i;if(this._isDefine){var r=_m[n];if(r){var a=r.call(this,t),o=t.getAttribute("id");o&&(this._defs[o]=a)}}else{var r=ym[n];r&&(i=r.call(this,t,e),e.add(i))}for(var s=t.firstChild;s;)1===s.nodeType&&this._parseNode(s,i),3===s.nodeType&&this._isText&&this._parseText(s,i),s=s.nextSibling;"defs"===n?this._isDefine=!1:"text"===n&&(this._isText=!1)},nl.prototype._parseText=function(t,e){if(1===t.nodeType){var n=t.getAttribute("dx")||0,i=t.getAttribute("dy")||0;this._textX+=parseFloat(n),this._textY+=parseFloat(i)}var r=new og({style:{text:t.textContent,transformText:!0},position:[this._textX||0,this._textY||0]});rl(e,r),ol(t,r,this._defs);var a=r.style.fontSize;a&&9>a&&(r.style.fontSize=9,r.scale=r.scale||[1,1],r.scale[0]*=a/9,r.scale[1]*=a/9);var o=r.getBoundingRect();return this._textX+=o.width,e.add(r),r};var ym={g:function(t,e){var n=new Zf;return rl(e,n),ol(t,n,this._defs),n},rect:function(t,e){var n=new vg;return rl(e,n),ol(t,n,this._defs),n.setShape({x:parseFloat(t.getAttribute("x")||0),y:parseFloat(t.getAttribute("y")||0),width:parseFloat(t.getAttribute("width")||0),height:parseFloat(t.getAttribute("height")||0)}),n},circle:function(t,e){var n=new sg;return rl(e,n),ol(t,n,this._defs),n.setShape({cx:parseFloat(t.getAttribute("cx")||0),cy:parseFloat(t.getAttribute("cy")||0),r:parseFloat(t.getAttribute("r")||0)}),n},line:function(t,e){var n=new mg;return rl(e,n),ol(t,n,this._defs),n.setShape({x1:parseFloat(t.getAttribute("x1")||0),y1:parseFloat(t.getAttribute("y1")||0),x2:parseFloat(t.getAttribute("x2")||0),y2:parseFloat(t.getAttribute("y2")||0)}),n},ellipse:function(t,e){var n=new vm;return rl(e,n),ol(t,n,this._defs),n.setShape({cx:parseFloat(t.getAttribute("cx")||0),cy:parseFloat(t.getAttribute("cy")||0),rx:parseFloat(t.getAttribute("rx")||0),ry:parseFloat(t.getAttribute("ry")||0)}),n},polygon:function(t,e){var n=t.getAttribute("points");n&&(n=al(n));var i=new pg({shape:{points:n||[]}});return rl(e,i),ol(t,i,this._defs),i},polyline:function(t,e){var n=new zr;rl(e,n),ol(t,n,this._defs);var i=t.getAttribute("points");i&&(i=al(i));var r=new gg({shape:{points:i||[]}});return r},image:function(t,e){var n=new vi;return rl(e,n),ol(t,n,this._defs),n.setStyle({image:t.getAttribute("xlink:href"),x:t.getAttribute("x"),y:t.getAttribute("y"),width:t.getAttribute("width"),height:t.getAttribute("height")}),n},text:function(t,e){var n=t.getAttribute("x")||0,i=t.getAttribute("y")||0,r=t.getAttribute("dx")||0,a=t.getAttribute("dy")||0;this._textX=parseFloat(n)+parseFloat(r),this._textY=parseFloat(i)+parseFloat(a);var o=new Zf;return rl(e,o),ol(t,o,this._defs),o},tspan:function(t,e){var n=t.getAttribute("x"),i=t.getAttribute("y");null!=n&&(this._textX=parseFloat(n)),null!=i&&(this._textY=parseFloat(i));var r=t.getAttribute("dx")||0,a=t.getAttribute("dy")||0,o=new Zf;return rl(e,o),ol(t,o,this._defs),this._textX+=r,this._textY+=a,o},path:function(t,e){var n=t.getAttribute("d")||"",i=Wr(n);return rl(e,i),ol(t,i,this._defs),i}},_m={lineargradient:function(t){var e=parseInt(t.getAttribute("x1")||0,10),n=parseInt(t.getAttribute("y1")||0,10),i=parseInt(t.getAttribute("x2")||10,10),r=parseInt(t.getAttribute("y2")||0,10),a=new Sg(e,n,i,r);return il(t,a),a},radialgradient:function(){}},xm={fill:"fill",stroke:"stroke","stroke-width":"lineWidth",opacity:"opacity","fill-opacity":"fillOpacity","stroke-opacity":"strokeOpacity","stroke-dasharray":"lineDash","stroke-dashoffset":"lineDashOffset","stroke-linecap":"lineCap","stroke-linejoin":"lineJoin","stroke-miterlimit":"miterLimit","font-family":"fontFamily","font-size":"fontSize","font-style":"fontStyle","font-weight":"fontWeight","text-align":"textAlign","alignment-baseline":"textBaseline"},wm=/url\(\s*#(.*?)\)/,bm=/(translate|scale|rotate|skewX|skewY|matrix)\(([\-\s0-9\.e,]*)\)/g,Sm=/([^\s:;]+)\s*:\s*([^:;]+)/g,Mm=F(),Tm={registerMap:function(t,e,n){var i;return x(e)?i=e:e.svg?i=[{type:"svg",source:e.svg,specialAreas:e.specialAreas}]:(e.geoJson&&!e.features&&(n=e.specialAreas,e=e.geoJson),i=[{type:"geoJSON",source:e,specialAreas:n}]),d(i,function(t){var e=t.type;"geoJson"===e&&(e=t.type="geoJSON");var n=Cm[e];n(t)}),Mm.set(t,i)},retrieveMap:function(t){return Mm.get(t)}},Cm={geoJSON:function(t){var e=t.source;t.geoJSON=b(e)?"undefined"!=typeof JSON&&JSON.parse?JSON.parse(e):new Function("return ("+e+");")():e},svg:function(t){t.svgXML=el(t.source)}},km=L,Im=d,Dm=w,Am=S,Pm=rv.parseClassType,Om="4.2.0",Lm={zrender:"4.0.5"},Em=1,Rm=1e3,Bm=5e3,zm=1e3,Fm=2e3,Nm=3e3,Vm=4e3,Wm=5e3,Hm={PROCESSOR:{FILTER:Rm,STATISTIC:Bm},VISUAL:{LAYOUT:zm,GLOBAL:Fm,CHART:Nm,COMPONENT:Vm,BRUSH:Wm}},Gm="__flagInMainProcess",qm="__optionUpdated",Xm=/^[a-zA-Z0-9_]+$/;fl.prototype.on=cl("on"),fl.prototype.off=cl("off"),fl.prototype.one=cl("one"),c(fl,uf);var jm=dl.prototype;jm._onframe=function(){if(!this._disposed){var t=this._scheduler;if(this[qm]){var e=this[qm].silent;this[Gm]=!0,gl(this),Um.update.call(this),this[Gm]=!1,this[qm]=!1,_l.call(this,e),xl.call(this,e)}else if(t.unfinished){var n=Em,i=this._model,r=this._api;t.unfinished=!1;do{var a=+new Date;t.performSeriesTasks(i),t.performDataProcessorTasks(i),ml(this,i),t.performVisualTasks(i),Cl(this,this._model,r,"remain"),n-=+new Date-a}while(n>0&&t.unfinished);t.unfinished||this._zr.flush()}}},jm.getDom=function(){return this._dom},jm.getZr=function(){return this._zr},jm.setOption=function(t,e,n){var i;if(Am(e)&&(n=e.lazyUpdate,i=e.silent,e=e.notMerge),this[Gm]=!0,!this._model||e){var r=new $o(this._api),a=this._theme,o=this._model=new xv(null,null,a,r);o.scheduler=this._scheduler,o.init(null,null,a,r)}this._model.setOption(t,Km),n?(this[qm]={silent:i},this[Gm]=!1):(gl(this),Um.update.call(this),this._zr.flush(),this[qm]=!1,this[Gm]=!1,_l.call(this,i),xl.call(this,i))},jm.setTheme=function(){console.error("ECharts#setTheme() is DEPRECATED in ECharts 3.0")},jm.getModel=function(){return this._model},jm.getOption=function(){return this._model&&this._model.getOption()},jm.getWidth=function(){return this._zr.getWidth()},jm.getHeight=function(){return this._zr.getHeight()},jm.getDevicePixelRatio=function(){return this._zr.painter.dpr||window.devicePixelRatio||1},jm.getRenderedCanvas=function(t){if(Vc.canvasSupported){t=t||{},t.pixelRatio=t.pixelRatio||1,t.backgroundColor=t.backgroundColor||this._model.get("backgroundColor");var e=this._zr;return e.painter.getRenderedCanvas(t)}},jm.getSvgDataUrl=function(){if(Vc.svgSupported){var t=this._zr,e=t.storage.getDisplayList();return d(e,function(t){t.stopAnimation(!0)}),t.painter.pathToDataUrl()}},jm.getDataURL=function(t){t=t||{};var e=t.excludeComponents,n=this._model,i=[],r=this;Im(e,function(t){n.eachComponent({mainType:t},function(t){var e=r._componentsMap[t.__viewId];e.group.ignore||(i.push(e),e.group.ignore=!0)})});var a="svg"===this._zr.painter.getType()?this.getSvgDataUrl():this.getRenderedCanvas(t).toDataURL("image/"+(t&&t.type||"png"));return Im(i,function(t){t.group.ignore=!1}),a},jm.getConnectedDataURL=function(t){if(Vc.canvasSupported){var e=this.group,n=Math.min,r=Math.max,a=1/0;if(ry[e]){var o=a,s=a,l=-a,u=-a,h=[],c=t&&t.pixelRatio||1;d(iy,function(a){if(a.group===e){var c=a.getRenderedCanvas(i(t)),f=a.getDom().getBoundingClientRect();o=n(f.left,o),s=n(f.top,s),l=r(f.right,l),u=r(f.bottom,u),h.push({dom:c,left:f.left,top:f.top})}}),o*=c,s*=c,l*=c,u*=c;var f=l-o,p=u-s,g=Qc();g.width=f,g.height=p;var v=Pi(g);return Im(h,function(t){var e=new vi({style:{x:t.left*c-o,y:t.top*c-s,image:t.dom}});v.add(e)}),v.refreshImmediately(),g.toDataURL("image/"+(t&&t.type||"png"))}return this.getDataURL(t)}},jm.convertToPixel=_(pl,"convertToPixel"),jm.convertFromPixel=_(pl,"convertFromPixel"),jm.containPixel=function(t,e){var n,i=this._model;return t=ji(i,t),d(t,function(t,i){i.indexOf("Models")>=0&&d(t,function(t){var r=t.coordinateSystem;if(r&&r.containPoint)n|=!!r.containPoint(e);else if("seriesModels"===i){var a=this._chartsMap[t.__viewId];a&&a.containPoint&&(n|=a.containPoint(e,t))}},this)},this),!!n},jm.getVisual=function(t,e){var n=this._model;t=ji(n,t,{defaultMainType:"series"});var i=t.seriesModel,r=i.getData(),a=t.hasOwnProperty("dataIndexInside")?t.dataIndexInside:t.hasOwnProperty("dataIndex")?r.indexOfRawIndex(t.dataIndex):null;return null!=a?r.getItemVisual(a,e):r.getVisual(e)},jm.getViewOfComponentModel=function(t){return this._componentsMap[t.__viewId]},jm.getViewOfSeriesModel=function(t){return this._chartsMap[t.__viewId]};var Um={prepareAndUpdate:function(t){gl(this),Um.update.call(this,t)},update:function(t){var e=this._model,n=this._api,i=this._zr,r=this._coordSysMgr,a=this._scheduler;if(e){a.restoreData(e,t),a.performSeriesTasks(e),r.create(e,n),a.performDataProcessorTasks(e,t),ml(this,e),r.update(e,n),Sl(e),a.performVisualTasks(e,t),Ml(this,e,n,t);var o=e.get("backgroundColor")||"transparent";if(Vc.canvasSupported)i.setBackgroundColor(o);else{var s=He(o);o=Qe(s,"rgb"),0===s[3]&&(o="transparent")}kl(e,n)}},updateTransform:function(t){var e=this._model,n=this,i=this._api;if(e){var r=[];e.eachComponent(function(a,o){var s=n.getViewOfComponentModel(o);if(s&&s.__alive)if(s.updateTransform){var l=s.updateTransform(o,e,i,t);l&&l.update&&r.push(s)}else r.push(s)});var a=F();e.eachSeries(function(r){var o=n._chartsMap[r.__viewId];if(o.updateTransform){var s=o.updateTransform(r,e,i,t);s&&s.update&&a.set(r.uid,1)}else a.set(r.uid,1)}),Sl(e),this._scheduler.performVisualTasks(e,t,{setDirty:!0,dirtyMap:a}),Cl(n,e,i,t,a),kl(e,this._api)}},updateView:function(t){var e=this._model;e&&(Es.markUpdateMethod(t,"updateView"),Sl(e),this._scheduler.performVisualTasks(e,t,{setDirty:!0}),Ml(this,this._model,this._api,t),kl(e,this._api))},updateVisual:function(t){Um.update.call(this,t)},updateLayout:function(t){Um.update.call(this,t)}};jm.resize=function(t){this._zr.resize(t);var e=this._model;if(this._loadingFX&&this._loadingFX.resize(),e){var n=e.resetOption("media"),i=t&&t.silent;this[Gm]=!0,n&&gl(this),Um.update.call(this),this[Gm]=!1,_l.call(this,i),xl.call(this,i)}},jm.showLoading=function(t,e){if(Am(t)&&(e=t,t=""),t=t||"default",this.hideLoading(),ny[t]){var n=ny[t](this._api,e),i=this._zr;this._loadingFX=n,i.add(n)}},jm.hideLoading=function(){this._loadingFX&&this._zr.remove(this._loadingFX),this._loadingFX=null},jm.makeActionFromEvent=function(t){var e=o({},t);return e.type=$m[t.type],e},jm.dispatchAction=function(t,e){if(Am(e)||(e={silent:!!e}),Zm[t.type]&&this._model){if(this[Gm])return void this._pendingActions.push(t);yl.call(this,t,e.silent),e.flush?this._zr.flush(!0):e.flush!==!1&&Vc.browser.weChat&&this._throttledZrFlush(),_l.call(this,e.silent),xl.call(this,e.silent)}},jm.appendData=function(t){var e=t.seriesIndex,n=this.getModel(),i=n.getSeriesByIndex(e);i.appendData(t),this._scheduler.unfinished=!0},jm.on=cl("on"),jm.off=cl("off"),jm.one=cl("one");var Ym=["click","dblclick","mouseover","mouseout","mousemove","mousedown","mouseup","globalout","contextmenu"];jm._initEvents=function(){Im(Ym,function(t){this._zr.on(t,function(e){var n,i=this.getModel(),r=e.target,a="globalout"===t;if(a)n={};else if(r&&null!=r.dataIndex){var s=r.dataModel||i.getSeriesByIndex(r.seriesIndex);n=s&&s.getDataParams(r.dataIndex,r.dataType,r)||{}}else r&&r.eventData&&(n=o({},r.eventData));if(n){var l=n.componentType,u=n.componentIndex;("markLine"===l||"markPoint"===l||"markArea"===l)&&(l="series",u=n.seriesIndex);var h=l&&null!=u&&i.getComponent(l,u),c=h&&this["series"===h.mainType?"_chartsMap":"_componentsMap"][h.__viewId];n.event=e,n.type=t,this._ecEventProcessor.eventInfo={targetEl:r,packedEvent:n,model:h,view:c},this.trigger(t,n)}},this)},this),Im($m,function(t,e){this._messageCenter.on(e,function(t){this.trigger(e,t)},this)},this)},jm.isDisposed=function(){return this._disposed},jm.clear=function(){this.setOption({series:[]},!0)},jm.dispose=function(){if(!this._disposed){this._disposed=!0,Yi(this.getDom(),sy,"");var t=this._api,e=this._model;Im(this._componentsViews,function(n){n.dispose(e,t)}),Im(this._chartsViews,function(n){n.dispose(e,t)}),this._zr.dispose(),delete iy[this.id]}},c(dl,uf),Ol.prototype={constructor:Ol,normalizeQuery:function(t){var e={},n={},i={};if(b(t)){var r=Pm(t);e.mainType=r.main||null,e.subType=r.sub||null}else{var a=["Index","Name","Id"],o={name:1,dataIndex:1,dataType:1};d(t,function(t,r){for(var s=!1,l=0;l0&&h===r.length-u.length){var c=r.slice(0,h);"data"!==c&&(e.mainType=c,e[u.toLowerCase()]=t,s=!0)}}o.hasOwnProperty(r)&&(n[r]=t,s=!0),s||(i[r]=t)})}return{cptQuery:e,dataQuery:n,otherQuery:i}},filter:function(t,e){function n(t,e,n,i){return null==t[n]||e[i||n]===t[n]}var i=this.eventInfo;if(!i)return!0;var r=i.targetEl,a=i.packedEvent,o=i.model,s=i.view;if(!o||!s)return!0;var l=e.cptQuery,u=e.dataQuery;return n(l,o,"mainType")&&n(l,o,"subType")&&n(l,o,"index","componentIndex")&&n(l,o,"name")&&n(l,o,"id")&&n(u,a,"name")&&n(u,a,"dataIndex")&&n(u,a,"dataType")&&(!s.filterForExposedEvent||s.filterForExposedEvent(t,e.otherQuery,r,a))},afterTrigger:function(){this.eventInfo=null}};var Zm={},$m={},Qm=[],Km=[],Jm=[],ty=[],ey={},ny={},iy={},ry={},ay=new Date-0,oy=new Date-0,sy="_echarts_instance_",ly=Bl;Yl(Fm,Jv),Wl(Ev),Hl(Bm,Rv),$l("default",im),ql({type:"highlight",event:"highlight",update:"highlight"},V),ql({type:"downplay",event:"downplay",update:"downplay"},V),Vl("light",cm),Vl("dark",gm);var uy={};au.prototype={constructor:au,add:function(t){return this._add=t,this},update:function(t){return this._update=t,this},remove:function(t){return this._remove=t,this},execute:function(){var t,e=this._old,n=this._new,i={},r={},a=[],o=[];for(ou(e,i,a,"_oldKeyGetter",this),ou(n,r,o,"_newKeyGetter",this),t=0;th;h++)this._add&&this._add(l[h]);else this._add&&this._add(l)}}}};var hy=F(["tooltip","label","itemName","itemId","seriesName"]),cy=S,fy="undefined",dy="e\x00\x00",py={"float":typeof Float64Array===fy?Array:Float64Array,"int":typeof Int32Array===fy?Array:Int32Array,ordinal:Array,number:Array,time:Array},gy=typeof Uint32Array===fy?Array:Uint32Array,vy=typeof Uint16Array===fy?Array:Uint16Array,my=["hasItemOption","_nameList","_idList","_invertedIndicesMap","_rawData","_chunkSize","_chunkCount","_dimValueGetter","_count","_rawCount","_nameDimIdx","_idDimIdx"],yy=["_extent","_approximateExtent","_rawExtent"],_y=function(t,e){t=t||["x","y"];for(var n={},i=[],r={},a=0;a=e)){for(var n,i=this._chunkSize,r=this._rawData,a=this._storage,o=this.dimensions,s=o.length,l=this._dimensionInfos,u=this._nameList,h=this._idList,c=this._rawExtent,f=this._nameRepeatCount={},d=this._chunkCount,p=d-1,g=0;s>g;g++){var v=o[g];c[v]||(c[v]=wu());var m=l[v];0===m.otherDims.itemName&&(n=this._nameDimIdx=g),0===m.otherDims.itemId&&(this._idDimIdx=g);var y=py[m.type];a[v]||(a[v]=[]);var _=a[v][p];if(_&&_.lengthb;b+=i)a[v].push(new y(Math.min(e-b,i)));this._chunkCount=a[v].length}for(var S=new Array(s),M=t;e>M;M++){S=r.getItem(M,S);for(var T=Math.floor(M/i),C=M%i,b=0;s>b;b++){var v=o[b],k=a[v][T],I=this._dimValueGetter(S,v,M,b);k[C]=I;var D=c[v];ID[1]&&(D[1]=I)}if(!r.pure){var A=u[M];if(S&&null==A)if(null!=S.name)u[M]=A=S.name;else if(null!=n){var P=o[n],O=a[P][T];if(O){A=O[C];var L=l[P].ordinalMeta;L&&L.categories.length&&(A=L.categories[A])}}var E=null==S?null:S.id;null==E&&null!=A&&(f[A]=f[A]||0,E=A,f[A]>0&&(E+="__ec__"+f[A]),f[A]++),null!=E&&(h[M]=E)}}!r.persistent&&r.clean&&r.clean(),this._rawCount=this._count=e,this._extent={},du(this)}},xy.count=function(){return this._count},xy.getIndices=function(){var t,e=this._indices;if(e){var n=e.constructor,i=this._count;if(n===Array){t=new n(i);for(var r=0;i>r;r++)t[r]=e[r]}else t=new n(e.buffer,0,i)}else for(var n=hu(this),t=new n(this.count()),r=0;r=0&&e=0&&ei;i++)n.push(this.get(t[i],e));return n},xy.hasValue=function(t){for(var e=this._dimensionsSummary.dataDimsOnCoord,n=this._dimensionInfos,i=0,r=e.length;r>i;i++)if("ordinal"!==n[e[i]].type&&isNaN(this.get(e[i],t)))return!1;return!0},xy.getDataExtent=function(t){t=this.getDimension(t);var e=this._storage[t],n=wu();if(!e)return n;var i,r=this.count(),a=!this._indices;if(a)return this._rawExtent[t].slice();if(i=this._extent[t])return i.slice();i=n;for(var o=i[0],s=i[1],l=0;r>l;l++){var u=this._getFast(t,this.getRawIndex(l));o>u&&(o=u),u>s&&(s=u)}return i=[o,s],this._extent[t]=i,i},xy.getApproximateExtent=function(t){return t=this.getDimension(t),this._approximateExtent[t]||this.getDataExtent(t)},xy.setApproximateExtent=function(t,e){e=this.getDimension(e),this._approximateExtent[e]=t.slice()},xy.getCalculationInfo=function(t){return this._calculationInfo[t]},xy.setCalculationInfo=function(t,e){cy(t)?o(this._calculationInfo,t):this._calculationInfo[t]=e},xy.getSum=function(t){var e=this._storage[t],n=0;if(e)for(var i=0,r=this.count();r>i;i++){var a=this.get(t,i);isNaN(a)||(n+=a)}return n},xy.getMedian=function(t){var e=[];this.each(t,function(t){isNaN(t)||e.push(t)});var n=[].concat(e).sort(function(t,e){return t-e}),i=this.count();return 0===i?0:i%2===1?n[(i-1)/2]:(n[i/2]+n[i/2-1])/2},xy.rawIndexOf=function(t,e){var n=t&&this._invertedIndicesMap[t],i=n[e];return null==i||isNaN(i)?-1:i},xy.indexOfName=function(t){for(var e=0,n=this.count();n>e;e++)if(this.getName(e)===t)return e;return-1},xy.indexOfRawIndex=function(t){if(!this._indices)return t;if(t>=this._rawCount||0>t)return-1;var e=this._indices,n=e[t];if(null!=n&&n=i;){var a=(i+r)/2|0;if(e[a]t))return a;r=a-1}}return-1},xy.indicesOfNearest=function(t,e,n){var i=this._storage,r=i[t],a=[];if(!r)return a;null==n&&(n=1/0);for(var o=Number.MAX_VALUE,s=-1,l=0,u=this.count();u>l;l++){var h=e-this.get(t,l),c=Math.abs(h);n>=h&&o>=c&&((o>c||h>=0&&0>s)&&(o=c,s=h,a.length=0),a.push(l))}return a},xy.getRawIndex=gu,xy.getRawDataItem=function(t){if(this._rawData.persistent)return this._rawData.getItem(this.getRawIndex(t));for(var e=[],n=0;no;o++)s[o]=this.get(t[o],a);s[o]=a,e.apply(n,s)}}},xy.filterSelf=function(t,e,n,i){if(this._count){"function"==typeof t&&(i=n,n=e,e=t,t=[]),n=n||i||this,t=p(yu(t),this.getDimension,this);for(var r=this.count(),a=hu(this),o=new a(r),s=[],l=t.length,u=0,h=t[0],c=0;r>c;c++){var f,d=this.getRawIndex(c);if(0===l)f=e.call(n,c);else if(1===l){var g=this._getFast(h,d);f=e.call(n,g,c)}else{for(var v=0;l>v;v++)s[v]=this._getFast(h,d);s[v]=c,f=e.apply(n,s)}f&&(o[u++]=d)}return r>u&&(this._indices=o),this._count=u,this._extent={},this.getRawIndex=this._indices?vu:gu,this}},xy.selectRange=function(t){if(this._count){var e=[];for(var n in t)t.hasOwnProperty(n)&&e.push(n);var i=e.length;if(i){var r=this.count(),a=hu(this),o=new a(r),s=0,l=e[0],u=t[l][0],h=t[l][1],c=!1;if(!this._indices){var f=0;if(1===i){for(var d=this._storage[e[0]],p=0;pm;m++){var y=g[m];(y>=u&&h>=y||isNaN(y))&&(o[s++]=f),f++}c=!0}else if(2===i){for(var d=this._storage[l],_=this._storage[e[1]],x=t[e[1]][0],w=t[e[1]][1],p=0;pm;m++){var y=g[m],S=b[m];(y>=u&&h>=y||isNaN(y))&&(S>=x&&w>=S||isNaN(S))&&(o[s++]=f),f++}c=!0}}if(!c)if(1===i)for(var m=0;r>m;m++){var M=this.getRawIndex(m),y=this._getFast(l,M);(y>=u&&h>=y||isNaN(y))&&(o[s++]=M)}else for(var m=0;r>m;m++){for(var T=!0,M=this.getRawIndex(m),p=0;i>p;p++){var C=e[p],y=this._getFast(n,M);(yt[C][1])&&(T=!1)}T&&(o[s++]=this.getRawIndex(m))}return r>s&&(this._indices=o),this._count=s,this._extent={},this.getRawIndex=this._indices?vu:gu,this}}},xy.mapArray=function(t,e,n,i){"function"==typeof t&&(i=n,n=e,e=t,t=[]),n=n||i||this;var r=[];return this.each(t,function(){r.push(e&&e.apply(this,arguments))},n),r},xy.map=function(t,e,n,i){n=n||i||this,t=p(yu(t),this.getDimension,this);var r=_u(this,t);r._indices=this._indices,r.getRawIndex=r._indices?vu:gu;for(var a=r._storage,o=[],s=this._chunkSize,l=t.length,u=this.count(),h=[],c=r._rawExtent,f=0;u>f;f++){for(var d=0;l>d;d++)h[d]=this.get(t[d],f);h[l]=f;var g=e&&e.apply(n,h);if(null!=g){"object"!=typeof g&&(o[0]=g,g=o);for(var v=this.getRawIndex(f),m=Math.floor(v/s),y=v%s,_=0;_b[1]&&(b[1]=w)}}}return r},xy.downSample=function(t,e,n,i){for(var r=_u(this,[t]),a=r._storage,o=[],s=Math.floor(1/e),l=a[t],u=this.count(),h=this._chunkSize,c=r._rawExtent[t],f=new(hu(this))(u),d=0,p=0;u>p;p+=s){s>u-p&&(s=u-p,o.length=s);for(var g=0;s>g;g++){var v=this.getRawIndex(p+g),m=Math.floor(v/h),y=v%h;o[g]=l[m][y]}var _=n(o),x=this.getRawIndex(Math.min(p+i(o,_)||0,u-1)),w=Math.floor(x/h),b=x%h;l[w][b]=_,_c[1]&&(c[1]=_),f[d++]=x}return r._count=d,r._indices=f,r.getRawIndex=vu,r},xy.getItemModel=function(t){var e=this.hostModel;return new Na(this.getRawDataItem(t),e,e&&e.ecModel)},xy.diff=function(t){var e=this;return new au(t?t.getIndices():[],this.getIndices(),function(e){return mu(t,e)},function(t){return mu(e,t)})},xy.getVisual=function(t){var e=this._visual;return e&&e[t]},xy.setVisual=function(t,e){if(cy(t))for(var n in t)t.hasOwnProperty(n)&&this.setVisual(n,t[n]);else this._visual=this._visual||{},this._visual[t]=e},xy.setLayout=function(t,e){if(cy(t))for(var n in t)t.hasOwnProperty(n)&&this.setLayout(n,t[n]);else this._layout[t]=e},xy.getLayout=function(t){return this._layout[t]},xy.getItemLayout=function(t){return this._itemLayouts[t]},xy.setItemLayout=function(t,e,n){this._itemLayouts[t]=n?o(this._itemLayouts[t]||{},e):e},xy.clearItemLayouts=function(){this._itemLayouts.length=0},xy.getItemVisual=function(t,e,n){var i=this._itemVisuals[t],r=i&&i[e];return null!=r||n?r:this.getVisual(e)},xy.setItemVisual=function(t,e,n){var i=this._itemVisuals[t]||{},r=this.hasItemVisual;if(this._itemVisuals[t]=i,cy(e))for(var a in e)e.hasOwnProperty(a)&&(i[a]=e[a],r[a]=!0);else i[e]=n,r[e]=!0},xy.clearAllVisual=function(){this._visual={},this._itemVisuals=[],this.hasItemVisual={}};var wy=function(t){t.seriesIndex=this.seriesIndex,t.dataIndex=this.dataIndex,t.dataType=this.dataType};xy.setItemGraphicEl=function(t,e){var n=this.hostModel;e&&(e.dataIndex=t,e.dataType=this.dataType,e.seriesIndex=n&&n.seriesIndex,"group"===e.type&&e.traverse(wy,e)),this._graphicEls[t]=e},xy.getItemGraphicEl=function(t){return this._graphicEls[t]},xy.eachItemGraphicEl=function(t,e){d(this._graphicEls,function(n,i){n&&t&&t.call(e,n,i)})},xy.cloneShallow=function(t){if(!t){var e=p(this.dimensions,this.getDimensionInfo,this);t=new _y(e,this.hostModel)}if(t._storage=this._storage,fu(t,this),this._indices){var n=this._indices.constructor;t._indices=new n(this._indices)}else t._indices=null;return t.getRawIndex=t._indices?vu:gu,t},xy.wrapMethod=function(t,e){var n=this[t];"function"==typeof n&&(this.__wrappedMethods=this.__wrappedMethods||[],this.__wrappedMethods.push(t),this[t]=function(){var t=n.apply(this,arguments);return e.apply(this,[t].concat(P(arguments)))})},xy.TRANSFERABLE_METHODS=["cloneShallow","downSample","map"],xy.CHANGABLE_METHODS=["filterSelf","selectRange"];var by=function(t,e){return e=e||{},bu(e.coordDimensions||[],t,{dimsDef:e.dimensionsDefine||t.dimensionsDefine,encodeDef:e.encodeDefine||t.encodeDefine,dimCount:e.dimensionsCount,generateCoord:e.generateCoord,generateCoordCount:e.generateCoordCount})};Pu.prototype.parse=function(t){return t},Pu.prototype.getSetting=function(t){return this._setting[t]},Pu.prototype.contain=function(t){var e=this._extent;return t>=e[0]&&t<=e[1]},Pu.prototype.normalize=function(t){var e=this._extent;return e[1]===e[0]?.5:(t-e[0])/(e[1]-e[0])},Pu.prototype.scale=function(t){var e=this._extent;return t*(e[1]-e[0])+e[0]},Pu.prototype.unionExtent=function(t){var e=this._extent;t[0]e[1]&&(e[1]=t[1])},Pu.prototype.unionExtentFromData=function(t,e){this.unionExtent(t.getApproximateExtent(e))},Pu.prototype.getExtent=function(){return this._extent.slice()},Pu.prototype.setExtent=function(t,e){var n=this._extent;isNaN(t)||(n[0]=t),isNaN(e)||(n[1]=e)},Pu.prototype.isBlank=function(){return this._isBlank},Pu.prototype.setBlank=function(t){this._isBlank=t},Pu.prototype.getLabel=null,Ji(Pu),ir(Pu,{registerWhenExtend:!0}),Ou.createByAxisModel=function(t){var e=t.option,n=e.data,i=n&&p(n,Eu);return new Ou({categories:i,needCollect:!i,deduplication:e.dedplication!==!1})};var Sy=Ou.prototype;Sy.getOrdinal=function(t){return Lu(this).get(t)},Sy.parseAndCollect=function(t){var e,n=this._needCollect;if("string"!=typeof t&&!n)return t;if(n&&!this._deduplication)return e=this.categories.length,this.categories[e]=t,e;var i=Lu(this);return e=i.get(t),null==e&&(n?(e=this.categories.length,this.categories[e]=t,i.set(t,e)):e=0/0),e};var My=Pu.prototype,Ty=Pu.extend({type:"ordinal",init:function(t,e){(!t||x(t))&&(t=new Ou({categories:t})),this._ordinalMeta=t,this._extent=e||[0,t.categories.length-1]},parse:function(t){return"string"==typeof t?this._ordinalMeta.getOrdinal(t):Math.round(t)},contain:function(t){return t=this.parse(t),My.contain.call(this,t)&&null!=this._ordinalMeta.categories[t]},normalize:function(t){return My.normalize.call(this,this.parse(t))},scale:function(t){return Math.round(My.scale.call(this,t))},getTicks:function(){for(var t=[],e=this._extent,n=e[0];n<=e[1];)t.push(n),n++;return t},getLabel:function(t){return this.isBlank()?void 0:this._ordinalMeta.categories[t]},count:function(){return this._extent[1]-this._extent[0]+1},unionExtentFromData:function(t,e){this.unionExtent(t.getApproximateExtent(e))},getOrdinalMeta:function(){return this._ordinalMeta},niceTicks:V,niceExtent:V});Ty.create=function(){return new Ty};var Cy=Ya,ky=Ya,Iy=Pu.extend({type:"interval",_interval:0,_intervalPrecision:2,setExtent:function(t,e){var n=this._extent;isNaN(t)||(n[0]=parseFloat(t)),isNaN(e)||(n[1]=parseFloat(e))},unionExtent:function(t){var e=this._extent;t[0]e[1]&&(e[1]=t[1]),Iy.prototype.setExtent.call(this,e[0],e[1])},getInterval:function(){return this._interval},setInterval:function(t){this._interval=t,this._niceExtent=this._extent.slice(),this._intervalPrecision=Bu(t)},getTicks:function(){return Nu(this._interval,this._extent,this._niceExtent,this._intervalPrecision)},getLabel:function(t,e){if(null==t)return"";var n=e&&e.precision;return null==n?n=Qa(t)||0:"auto"===n&&(n=this._intervalPrecision),t=ky(t,n,!0),uo(t)},niceTicks:function(t,e,n){t=t||5;var i=this._extent,r=i[1]-i[0];if(isFinite(r)){0>r&&(r=-r,i.reverse());var a=Ru(i,t,e,n);this._intervalPrecision=a.intervalPrecision,this._interval=a.interval,this._niceExtent=a.niceTickExtent}},niceExtent:function(t){var e=this._extent;if(e[0]===e[1])if(0!==e[0]){var n=e[0];t.fixMax?e[0]-=n/2:(e[1]+=n/2,e[0]-=n/2)}else e[1]=1;var i=e[1]-e[0];isFinite(i)||(e[0]=0,e[1]=1),this.niceTicks(t.splitNumber,t.minInterval,t.maxInterval);var r=this._interval;t.fixMin||(e[0]=ky(Math.floor(e[0]/r)*r)),t.fixMax||(e[1]=ky(Math.ceil(e[1]/r)*r))}});Iy.create=function(){return new Iy};var Dy="__ec_stack_",Ay=.5,Py="undefined"!=typeof Float32Array?Float32Array:Array,Oy=({seriesType:"bar",plan:Yv(),reset:function(t){function e(t,e){for(var n,c=new Py(2*t.count),f=[],d=[],p=0;null!=(n=t.next());)d[u]=e.get(o,n),d[1-u]=e.get(s,n),f=i.dataToPoint(d,null,f),c[p++]=f[0],c[p++]=f[1]; +e.setLayout({largePoints:c,barWidth:h,valueAxisStart:Yu(r,a,!1),valueAxisHorizontal:l})}if(ju(t)&&Uu(t)){var n=t.getData(),i=t.coordinateSystem,r=i.getBaseAxis(),a=i.getOtherAxis(r),o=n.mapDimension(a.dim),s=n.mapDimension(r.dim),l=a.isHorizontal(),u=l?0:1,h=Xu(Gu([t]),r,t).width;return h>Ay||(h=Ay),{progress:e}}}},Iy.prototype),Ly=Math.ceil,Ey=Math.floor,Ry=1e3,By=60*Ry,zy=60*By,Fy=24*zy,Ny=function(t,e,n,i){for(;i>n;){var r=n+i>>>1;t[r][1]a&&(a=e),null!=n&&a>n&&(a=n);var o=Wy.length,s=Ny(Wy,a,0,o),l=Wy[Math.min(s,o-1)],u=l[1];if("year"===l[0]){var h=r/u,c=ao(h/t,!0);u*=c}var f=this.getSetting("useUTC")?0:60*new Date(+i[0]||+i[1]).getTimezoneOffset()*1e3,d=[Math.round(Ly((i[0]-f)/u)*u+f),Math.round(Ey((i[1]-f)/u)*u+f)];Fu(d,i),this._stepLvl=l,this._interval=u,this._niceExtent=d},parse:function(t){return+no(t)}});d(["contain","normalize"],function(t){Vy.prototype[t]=function(e){return Oy[t].call(this,this.parse(e))}});var Wy=[["hh:mm:ss",Ry],["hh:mm:ss",5*Ry],["hh:mm:ss",10*Ry],["hh:mm:ss",15*Ry],["hh:mm:ss",30*Ry],["hh:mm\nMM-dd",By],["hh:mm\nMM-dd",5*By],["hh:mm\nMM-dd",10*By],["hh:mm\nMM-dd",15*By],["hh:mm\nMM-dd",30*By],["hh:mm\nMM-dd",zy],["hh:mm\nMM-dd",2*zy],["hh:mm\nMM-dd",6*zy],["hh:mm\nMM-dd",12*zy],["MM-dd\nyyyy",Fy],["MM-dd\nyyyy",2*Fy],["MM-dd\nyyyy",3*Fy],["MM-dd\nyyyy",4*Fy],["MM-dd\nyyyy",5*Fy],["MM-dd\nyyyy",6*Fy],["week",7*Fy],["MM-dd\nyyyy",10*Fy],["week",14*Fy],["week",21*Fy],["month",31*Fy],["week",42*Fy],["month",62*Fy],["week",70*Fy],["quarter",95*Fy],["month",31*Fy*4],["month",31*Fy*5],["half-year",380*Fy/2],["month",31*Fy*8],["month",31*Fy*10],["year",380*Fy]];Vy.create=function(t){return new Vy({useUTC:t.ecModel.get("useUTC")})};var Hy=Pu.prototype,Gy=Iy.prototype,qy=Qa,Xy=Ya,jy=Math.floor,Uy=Math.ceil,Yy=Math.pow,Zy=Math.log,$y=Pu.extend({type:"log",base:10,$constructor:function(){Pu.apply(this,arguments),this._originalScale=new Iy},getTicks:function(){var t=this._originalScale,e=this._extent,n=t.getExtent();return p(Gy.getTicks.call(this),function(i){var r=Ya(Yy(this.base,i));return r=i===e[0]&&t.__fixMin?Zu(r,n[0]):r,r=i===e[1]&&t.__fixMax?Zu(r,n[1]):r},this)},getLabel:Gy.getLabel,scale:function(t){return t=Hy.scale.call(this,t),Yy(this.base,t)},setExtent:function(t,e){var n=this.base;t=Zy(t)/Zy(n),e=Zy(e)/Zy(n),Gy.setExtent.call(this,t,e)},getExtent:function(){var t=this.base,e=Hy.getExtent.call(this);e[0]=Yy(t,e[0]),e[1]=Yy(t,e[1]);var n=this._originalScale,i=n.getExtent();return n.__fixMin&&(e[0]=Zu(e[0],i[0])),n.__fixMax&&(e[1]=Zu(e[1],i[1])),e},unionExtent:function(t){this._originalScale.unionExtent(t);var e=this.base;t[0]=Zy(t[0])/Zy(e),t[1]=Zy(t[1])/Zy(e),Hy.unionExtent.call(this,t)},unionExtentFromData:function(t,e){this.unionExtent(t.getApproximateExtent(e))},niceTicks:function(t){t=t||10;var e=this._extent,n=e[1]-e[0];if(!(1/0===n||0>=n)){var i=io(n),r=t/n*i;for(.5>=r&&(i*=10);!isNaN(i)&&Math.abs(i)<1&&Math.abs(i)>0;)i*=10;var a=[Ya(Uy(e[0]/i)*i),Ya(jy(e[1]/i)*i)];this._interval=i,this._niceExtent=a}},niceExtent:function(t){Gy.niceExtent.call(this,t);var e=this._originalScale;e.__fixMin=t.fixMin,e.__fixMax=t.fixMax}});d(["contain","normalize"],function(t){$y.prototype[t]=function(e){return e=Zy(e)/Zy(this.base),Hy[t].call(this,e)}}),$y.create=function(){return new $y};var Qy={getMin:function(t){var e=this.option,n=t||null==e.rangeStart?e.min:e.rangeStart;return this.axis&&null!=n&&"dataMin"!==n&&"function"!=typeof n&&!k(n)&&(n=this.axis.scale.parse(n)),n},getMax:function(t){var e=this.option,n=t||null==e.rangeEnd?e.max:e.rangeEnd;return this.axis&&null!=n&&"dataMax"!==n&&"function"!=typeof n&&!k(n)&&(n=this.axis.scale.parse(n)),n},getNeedCrossZero:function(){var t=this.option;return null!=t.rangeStart||null!=t.rangeEnd?!1:!t.scale},getCoordSysModel:V,setRange:function(t,e){this.option.rangeStart=t,this.option.rangeEnd=e},resetRange:function(){this.option.rangeStart=this.option.rangeEnd=null}},Ky=Yr({type:"triangle",shape:{cx:0,cy:0,width:0,height:0},buildPath:function(t,e){var n=e.cx,i=e.cy,r=e.width/2,a=e.height/2;t.moveTo(n,i-a),t.lineTo(n+r,i+a),t.lineTo(n-r,i+a),t.closePath()}}),Jy=Yr({type:"diamond",shape:{cx:0,cy:0,width:0,height:0},buildPath:function(t,e){var n=e.cx,i=e.cy,r=e.width/2,a=e.height/2;t.moveTo(n,i-a),t.lineTo(n+r,i),t.lineTo(n,i+a),t.lineTo(n-r,i),t.closePath()}}),t_=Yr({type:"pin",shape:{x:0,y:0,width:0,height:0},buildPath:function(t,e){var n=e.x,i=e.y,r=e.width/5*3,a=Math.max(r,e.height),o=r/2,s=o*o/(a-o),l=i-a+o+s,u=Math.asin(s/o),h=Math.cos(u)*o,c=Math.sin(u),f=Math.cos(u),d=.6*o,p=.7*o;t.moveTo(n-h,l+s),t.arc(n,l,o,Math.PI-u,2*Math.PI+u),t.bezierCurveTo(n+h-c*d,l+s+f*d,n,i-p,n,i),t.bezierCurveTo(n,i-p,n-h+c*d,l+s+f*d,n-h,l+s),t.closePath()}}),e_=Yr({type:"arrow",shape:{x:0,y:0,width:0,height:0},buildPath:function(t,e){var n=e.height,i=e.width,r=e.x,a=e.y,o=i/3*2;t.moveTo(r,a),t.lineTo(r+o,a+n),t.lineTo(r,a+n/4*3),t.lineTo(r-o,a+n),t.lineTo(r,a),t.closePath()}}),n_={line:mg,rect:vg,roundRect:vg,square:vg,circle:sg,diamond:Jy,pin:t_,arrow:e_,triangle:Ky},i_={line:function(t,e,n,i,r){r.x1=t,r.y1=e+i/2,r.x2=t+n,r.y2=e+i/2},rect:function(t,e,n,i,r){r.x=t,r.y=e,r.width=n,r.height=i},roundRect:function(t,e,n,i,r){r.x=t,r.y=e,r.width=n,r.height=i,r.r=Math.min(n,i)/4},square:function(t,e,n,i,r){var a=Math.min(n,i);r.x=t,r.y=e,r.width=a,r.height=a},circle:function(t,e,n,i,r){r.cx=t+n/2,r.cy=e+i/2,r.r=Math.min(n,i)/2},diamond:function(t,e,n,i,r){r.cx=t+n/2,r.cy=e+i/2,r.width=n,r.height=i},pin:function(t,e,n,i,r){r.x=t+n/2,r.y=e+i/2,r.width=n,r.height=i},arrow:function(t,e,n,i,r){r.x=t+n/2,r.y=e+i/2,r.width=n,r.height=i},triangle:function(t,e,n,i,r){r.cx=t+n/2,r.cy=e+i/2,r.width=n,r.height=i}},r_={};d(n_,function(t,e){r_[e]=new t});var a_=Yr({type:"symbol",shape:{symbolType:"",x:0,y:0,width:0,height:0},beforeBrush:function(){var t=this.style,e=this.shape;"pin"===e.symbolType&&"inside"===t.textPosition&&(t.textPosition=["50%","40%"],t.textAlign="center",t.textVerticalAlign="middle")},buildPath:function(t,e,n){var i=e.symbolType,r=r_[i];"none"!==e.symbolType&&(r||(i="rect",r=r_[i]),i_[i](e.x,e.y,e.width,e.height,r.shape),r.buildPath(t,r.shape,n))}}),o_={isDimensionStacked:Cu,enableDataStack:Tu,getStackedDimension:ku},s_=(Object.freeze||Object)({createList:sh,getLayoutRect:xo,dataStack:o_,createScale:lh,mixinAxisModelCommonMethods:uh,completeDimensions:bu,createDimensions:by,createSymbol:oh}),l_=1e-8;fh.prototype={constructor:fh,properties:null,getBoundingRect:function(){var t=this._rect;if(t)return t;for(var e=Number.MAX_VALUE,n=[e,e],i=[-e,-e],r=[],a=[],o=this.geometries,s=0;si;i++)if("polygon"===n[i].type){var a=n[i].exterior,o=n[i].interiors;if(ch(a,t[0],t[1])){for(var s=0;s<(o?o.length:0);s++)if(ch(o[s]))continue t;return!0}}return!1},transformTo:function(t,e,n,i){var r=this.getBoundingRect(),a=r.width/r.height;n?i||(i=n/a):n=a*i;for(var o=new gn(t,e,n,i),s=r.calculateTransform(o),l=this.geometries,u=0;u0}),function(t){var e=t.properties,n=t.geometry,i=n.coordinates,r=[];"Polygon"===n.type&&r.push({type:"polygon",exterior:i[0],interiors:i.slice(1)}),"MultiPolygon"===n.type&&d(i,function(t){t[0]&&r.push({type:"polygon",exterior:t[0],interiors:t.slice(1)})});var a=new fh(e.name,r,e.cp);return a.properties=e,a})},h_=Xi(),c_=[0,1],f_=function(t,e,n){this.dim=t,this.scale=e,this._extent=n||[0,0],this.inverse=!1,this.onBand=!1};f_.prototype={constructor:f_,contain:function(t){var e=this._extent,n=Math.min(e[0],e[1]),i=Math.max(e[0],e[1]);return t>=n&&i>=t},containData:function(t){return this.contain(this.dataToCoord(t))},getExtent:function(){return this._extent.slice()},getPixelPrecision:function(t){return Ka(t||this.scale.getExtent(),this._extent)},setExtent:function(t,e){var n=this._extent;n[0]=t,n[1]=e},dataToCoord:function(t,e){var n=this._extent,i=this.scale;return t=i.normalize(t),this.onBand&&"ordinal"===i.type&&(n=n.slice(),Ah(n,i.count())),ja(t,c_,n,e)},coordToData:function(t,e){var n=this._extent,i=this.scale;this.onBand&&"ordinal"===i.type&&(n=n.slice(),Ah(n,i.count()));var r=ja(t,n,c_,e);return this.scale.scale(r)},pointToData:function(){},getTicksCoords:function(t){t=t||{};var e=t.tickModel||this.getTickModel(),n=vh(this,e),i=n.ticks,r=p(i,function(t){return{coord:this.dataToCoord(t),tickValue:t}},this),a=e.get("alignWithLabel");return Ph(this,r,n.tickCategoryInterval,a,t.clamp),r},getViewLabels:function(){return gh(this).labels},getLabelModel:function(){return this.model.getModel("axisLabel")},getTickModel:function(){return this.model.getModel("axisTick")},getBandWidth:function(){var t=this._extent,e=this.scale.getExtent(),n=e[1]-e[0]+(this.onBand?1:0);0===n&&(n=1);var i=Math.abs(t[1]-t[0]);return Math.abs(i)/n},isHorizontal:null,getRotate:null,calculateCategoryInterval:function(){return Th(this)}};var d_=u_,p_={};d(["map","each","filter","indexOf","inherits","reduce","filter","bind","curry","isArray","isString","isObject","isFunction","extend","defaults","clone","merge"],function(t){p_[t]=tf[t]});var g_={};d(["extendShape","extendPath","makePath","makeImage","mergePath","resizePath","createIcon","setHoverStyle","setLabelStyle","setTextStyle","setText","getFont","updateProps","initProps","getTransform","clipPointsByRect","clipRectByRect","Group","Image","Text","Circle","Sector","Ring","Polygon","Polyline","Rect","Line","BezierCurve","Arc","IncrementalDisplayable","CompoundPath","LinearGradient","RadialGradient","BoundingRect"],function(t){g_[t]=Lg[t]}),Xv.extend({type:"series.line",dependencies:["grid","polar"],getInitialData:function(){return Iu(this.getSource(),this)},defaultOption:{zlevel:0,z:2,coordinateSystem:"cartesian2d",legendHoverLink:!0,hoverAnimation:!0,clipOverflow:!0,label:{position:"top"},lineStyle:{width:2,type:"solid"},step:!1,smooth:!1,smoothMonotone:null,symbol:"emptyCircle",symbolSize:4,symbolRotate:null,showSymbol:!0,showAllSymbol:"auto",connectNulls:!1,sampling:"none",animationEasing:"linear",progressive:0,hoverLayerThreshold:1/0}});var v_=Lh.prototype,m_=Lh.getSymbolSize=function(t,e){var n=t.getItemVisual(e,"symbolSize");return n instanceof Array?n.slice():[+n,+n]};v_._createSymbol=function(t,e,n,i,r){this.removeAll();var a=e.getItemVisual(n,"color"),o=oh(t,-1,-1,2,2,a,r);o.attr({z2:100,culling:!0,scale:Eh(i)}),o.drift=Rh,this._symbolType=t,this.add(o)},v_.stopSymbolAnimation=function(t){this.childAt(0).stopAnimation(t)},v_.getSymbolPath=function(){return this.childAt(0)},v_.getScale=function(){return this.childAt(0).scale},v_.highlight=function(){this.childAt(0).trigger("emphasis")},v_.downplay=function(){this.childAt(0).trigger("normal")},v_.setZ=function(t,e){var n=this.childAt(0);n.zlevel=t,n.z=e},v_.setDraggable=function(t){var e=this.childAt(0);e.draggable=t,e.cursor=t?"move":"pointer"},v_.updateData=function(t,e,n){this.silent=!1;var i=t.getItemVisual(e,"symbol")||"circle",r=t.hostModel,a=m_(t,e),o=i!==this._symbolType;if(o){var s=t.getItemVisual(e,"symbolKeepAspect");this._createSymbol(i,t,e,a,s)}else{var l=this.childAt(0);l.silent=!1,Aa(l,{scale:Eh(a)},r,e)}if(this._updateCommon(t,e,a,n),o){var l=this.childAt(0),u=n&&n.fadeIn,h={scale:l.scale.slice()};u&&(h.style={opacity:l.style.opacity}),l.scale=[0,0],u&&(l.style.opacity=0),Pa(l,h,r,e)}this._seriesModel=r};var y_=["itemStyle"],__=["emphasis","itemStyle"],x_=["label"],w_=["emphasis","label"];v_._updateCommon=function(t,e,n,i){function r(e){return b?t.getName(e):Oh(t,e)}var a=this.childAt(0),s=t.hostModel,l=t.getItemVisual(e,"color");"image"!==a.type&&a.useStyle({strokeNoScale:!0});var u=i&&i.itemStyle,h=i&&i.hoverItemStyle,c=i&&i.symbolRotate,f=i&&i.symbolOffset,d=i&&i.labelModel,p=i&&i.hoverLabelModel,g=i&&i.hoverAnimation,v=i&&i.cursorStyle;if(!i||t.hasItemOption){var m=i&&i.itemModel?i.itemModel:t.getItemModel(e);u=m.getModel(y_).getItemStyle(["color"]),h=m.getModel(__).getItemStyle(),c=m.getShallow("symbolRotate"),f=m.getShallow("symbolOffset"),d=m.getModel(x_),p=m.getModel(w_),g=m.getShallow("hoverAnimation"),v=m.getShallow("cursor")}else h=o({},h);var y=a.style;a.attr("rotation",(c||0)*Math.PI/180||0),f&&a.attr("position",[Ua(f[0],n[0]),Ua(f[1],n[1])]),v&&a.attr("cursor",v),a.setColor(l,i&&i.symbolInnerColor),a.setStyle(u);var _=t.getItemVisual(e,"opacity");null!=_&&(y.opacity=_);var x=t.getItemVisual(e,"liftZ"),w=a.__z2Origin;null!=x?null==w&&(a.__z2Origin=a.z2,a.z2+=x):null!=w&&(a.z2=w,a.__z2Origin=null);var b=i&&i.useNameLabel;_a(y,h,d,p,{labelFetcher:s,labelDataIndex:e,defaultText:r,isRectText:!0,autoColor:l}),a.off("mouseover").off("mouseout").off("emphasis").off("normal"),a.hoverStyle=h,ma(a),a.__symbolOriginalScale=Eh(n),g&&s.isAnimationEnabled()&&a.on("mouseover",Bh).on("mouseout",zh).on("emphasis",Fh).on("normal",Nh)},v_.fadeOut=function(t,e){var n=this.childAt(0);this.silent=n.silent=!0,!(e&&e.keepLabel)&&(n.style.text=null),Aa(n,{style:{opacity:0},scale:[0,0]},this._seriesModel,this.dataIndex,t)},h(Lh,Zf);var b_=Vh.prototype;b_.updateData=function(t,e){e=Hh(e);var n=this.group,i=t.hostModel,r=this._data,a=this._symbolCtor,o=Gh(t);r||n.removeAll(),t.diff(r).add(function(i){var r=t.getItemLayout(i);if(Wh(t,r,i,e)){var s=new a(t,i,o);s.attr("position",r),t.setItemGraphicEl(i,s),n.add(s)}}).update(function(s,l){var u=r.getItemGraphicEl(l),h=t.getItemLayout(s);return Wh(t,h,s,e)?(u?(u.updateData(t,s,o),Aa(u,{position:h},i)):(u=new a(t,s),u.attr("position",h)),n.add(u),void t.setItemGraphicEl(s,u)):void n.remove(u)}).remove(function(t){var e=r.getItemGraphicEl(t);e&&e.fadeOut(function(){n.remove(e)})}).execute(),this._data=t},b_.isPersistent=function(){return!0},b_.updateLayout=function(){var t=this._data;t&&t.eachItemGraphicEl(function(e,n){var i=t.getItemLayout(n);e.attr("position",i)})},b_.incrementalPrepareUpdate=function(t){this._seriesScope=Gh(t),this._data=null,this.group.removeAll()},b_.incrementalUpdate=function(t,e,n){function i(t){t.isGroup||(t.incremental=t.useHoverLayer=!0)}n=Hh(n);for(var r=t.start;r0&&Yh(n[r-1]);r--);for(;r>i&&Yh(n[i]);i++);}for(;r>i;)i+=Zh(t,n,i,r,r,1,a.min,a.max,e.smooth,e.smoothMonotone,e.connectNulls)+1}}),O_=zr.extend({type:"ec-polygon",shape:{points:[],stackedOnPoints:[],smooth:0,stackedOnSmooth:0,smoothConstraint:!0,smoothMonotone:null,connectNulls:!1},brush:ug(zr.prototype.brush),buildPath:function(t,e){var n=e.points,i=e.stackedOnPoints,r=0,a=n.length,o=e.smoothMonotone,s=Kh(n,e.smoothConstraint),l=Kh(i,e.smoothConstraint);if(e.connectNulls){for(;a>0&&Yh(n[a-1]);a--);for(;a>r&&Yh(n[r]);r++);}for(;a>r;){var u=Zh(t,n,r,a,a,1,s.min,s.max,e.smooth,o,e.connectNulls);Zh(t,i,r+u-1,u,a,-1,l.min,l.max,e.stackedOnSmooth,o,e.connectNulls),r+=u+1,t.closePath()}}});Es.extend({type:"line",init:function(){var t=new Zf,e=new Vh;this.group.add(e.group),this._symbolDraw=e,this._lineGroup=t},render:function(t,e,n){var i=t.coordinateSystem,r=this.group,a=t.getData(),o=t.getModel("lineStyle"),l=t.getModel("areaStyle"),u=a.mapArray(a.getItemLayout),h="polar"===i.type,c=this._coordSys,f=this._symbolDraw,d=this._polyline,p=this._polygon,g=this._lineGroup,v=t.get("animation"),m=!l.isEmpty(),y=l.get("origin"),_=qh(i,a,y),x=nc(i,a,_),w=t.get("showSymbol"),b=w&&!h&&lc(t,a,i),S=this._data;S&&S.eachItemGraphicEl(function(t,e){t.__temp&&(r.remove(t),S.setItemGraphicEl(e,null))}),w||f.remove(),r.add(g);var M=!h&&t.get("step");d&&c.type===i.type&&M===this._step?(m&&!p?p=this._newPolygon(u,x,i,v):p&&!m&&(g.remove(p),p=this._polygon=null),g.setClipPath(ac(i,!1,!1,t)),w&&f.updateData(a,{isIgnore:b,clipShape:ac(i,!1,!0,t)}),a.eachItemGraphicEl(function(t){t.stopAnimation(!0)}),Jh(this._stackedOnPoints,x)&&Jh(this._points,u)||(v?this._updateAnimation(a,x,i,n,M,y):(M&&(u=oc(u,i,M),x=oc(x,i,M)),d.setShape({points:u}),p&&p.setShape({points:u,stackedOnPoints:x})))):(w&&f.updateData(a,{isIgnore:b,clipShape:ac(i,!1,!0,t)}),M&&(u=oc(u,i,M),x=oc(x,i,M)),d=this._newPolyline(u,i,v),m&&(p=this._newPolygon(u,x,i,v)),g.setClipPath(ac(i,!0,!1,t)));var T=sc(a,i)||a.getVisual("color");d.useStyle(s(o.getLineStyle(),{fill:"none",stroke:T,lineJoin:"bevel"}));var C=t.get("smooth");if(C=tc(t.get("smooth")),d.setShape({smooth:C,smoothMonotone:t.get("smoothMonotone"),connectNulls:t.get("connectNulls")}),p){var k=a.getCalculationInfo("stackedOnSeries"),I=0;p.useStyle(s(l.getAreaStyle(),{fill:T,opacity:.7,lineJoin:"bevel"})),k&&(I=tc(k.get("smooth"))),p.setShape({smooth:C,stackedOnSmooth:I,smoothMonotone:t.get("smoothMonotone"),connectNulls:t.get("connectNulls")})}this._data=a,this._coordSys=i,this._stackedOnPoints=x,this._points=u,this._step=M,this._valueOrigin=y},dispose:function(){},highlight:function(t,e,n,i){var r=t.getData(),a=qi(r,i);if(!(a instanceof Array)&&null!=a&&a>=0){var o=r.getItemGraphicEl(a);if(!o){var s=r.getItemLayout(a);if(!s)return;o=new Lh(r,a),o.position=s,o.setZ(t.get("zlevel"),t.get("z")),o.ignore=isNaN(s[0])||isNaN(s[1]),o.__temp=!0,r.setItemGraphicEl(a,o),o.stopSymbolAnimation(!0),this.group.add(o)}o.highlight()}else Es.prototype.highlight.call(this,t,e,n,i)},downplay:function(t,e,n,i){var r=t.getData(),a=qi(r,i);if(null!=a&&a>=0){var o=r.getItemGraphicEl(a);o&&(o.__temp?(r.setItemGraphicEl(a,null),this.group.remove(o)):o.downplay())}else Es.prototype.downplay.call(this,t,e,n,i)},_newPolyline:function(t){var e=this._polyline;return e&&this._lineGroup.remove(e),e=new P_({shape:{points:t},silent:!0,z2:10}),this._lineGroup.add(e),this._polyline=e,e},_newPolygon:function(t,e){var n=this._polygon;return n&&this._lineGroup.remove(n),n=new O_({shape:{points:t,stackedOnPoints:e},silent:!0}),this._lineGroup.add(n),this._polygon=n,n},_updateAnimation:function(t,e,n,i,r,a){var o=this._polyline,s=this._polygon,l=t.hostModel,u=S_(this._data,t,this._stackedOnPoints,e,this._coordSys,n,this._valueOrigin,a),h=u.current,c=u.stackedOnCurrent,f=u.next,d=u.stackedOnNext;r&&(h=oc(u.current,n,r),c=oc(u.stackedOnCurrent,n,r),f=oc(u.next,n,r),d=oc(u.stackedOnNext,n,r)),o.shape.__points=u.current,o.shape.points=h,Aa(o,{shape:{points:f}},l),s&&(s.setShape({points:h,stackedOnPoints:c}),Aa(s,{shape:{points:f,stackedOnPoints:d}},l));for(var p=[],g=u.status,v=0;ve&&(e=t[n]);return isFinite(e)?e:0/0},min:function(t){for(var e=1/0,n=0;n1){var u;"string"==typeof n?u=R_[n]:"function"==typeof n&&(u=n),u&&t.setData(e.downSample(e.mapDimension(a.dim),1/l,u,B_))}}}}},F_=function(t){this._axes={},this._dimList=[],this.name=t||""};F_.prototype={constructor:F_,type:"cartesian",getAxis:function(t){return this._axes[t]},getAxes:function(){return p(this._dimList,hc,this)},getAxesByScale:function(t){return t=t.toLowerCase(),v(this.getAxes(),function(e){return e.scale.type===t})},addAxis:function(t){var e=t.dim;this._axes[e]=t,this._dimList.push(e)},dataToCoord:function(t){return this._dataCoordConvert(t,"dataToCoord")},coordToData:function(t){return this._dataCoordConvert(t,"coordToData")},_dataCoordConvert:function(t,e){for(var n=this._dimList,i=t instanceof Array?[]:{},r=0;re[1]&&e.reverse(),e},getOtherAxis:function(){this.grid.getOtherAxis()},pointToData:function(t,e){return this.coordToData(this.toLocalCoord(t["x"===this.dim?0:1]),e)},toLocalCoord:null,toGlobalCoord:null},h(N_,f_);var V_={show:!0,zlevel:0,z:0,inverse:!1,name:"",nameLocation:"end",nameRotate:null,nameTruncate:{maxWidth:null,ellipsis:"...",placeholder:"."},nameTextStyle:{},nameGap:15,silent:!1,triggerEvent:!1,tooltip:{show:!1},axisPointer:{},axisLine:{show:!0,onZero:!0,onZeroAxisIndex:null,lineStyle:{color:"#333",width:1,type:"solid"},symbol:["none","none"],symbolSize:[10,15]},axisTick:{show:!0,inside:!1,length:5,lineStyle:{width:1}},axisLabel:{show:!0,inside:!1,rotate:0,showMinLabel:null,showMaxLabel:null,margin:8,fontSize:12},splitLine:{show:!0,lineStyle:{color:["#ccc"],width:1,type:"solid"}},splitArea:{show:!1,areaStyle:{color:["rgba(250,250,250,0.3)","rgba(200,200,200,0.3)"]}}},W_={};W_.categoryAxis=r({boundaryGap:!0,deduplication:null,splitLine:{show:!1},axisTick:{alignWithLabel:!1,interval:"auto"},axisLabel:{interval:"auto"}},V_),W_.valueAxis=r({boundaryGap:[0,0],splitNumber:5},V_),W_.timeAxis=s({scale:!0,min:"dataMin",max:"dataMax"},W_.valueAxis),W_.logAxis=s({scale:!0,logBase:10},W_.valueAxis);var H_=["value","category","time","log"],G_=function(t,e,n,i){d(H_,function(o){e.extend({type:t+"Axis."+o,mergeDefaultAndTheme:function(e,i){var a=this.layoutMode,s=a?bo(e):{},l=i.getTheme();r(e,l.get(o+"Axis")),r(e,this.getDefaultOption()),e.type=n(t,e),a&&wo(e,s,a)},optionUpdated:function(){var t=this.option;"category"===t.type&&(this.__ordinalMeta=Ou.createByAxisModel(this))},getCategories:function(t){var e=this.option;return"category"===e.type?t?e.data:this.__ordinalMeta.categories:void 0},getOrdinalMeta:function(){return this.__ordinalMeta},defaultOption:a([{},W_[o+"Axis"],i],!0)})}),rv.registerSubTypeDefaulter(t+"Axis",_(n,t))},q_=rv.extend({type:"cartesian2dAxis",axis:null,init:function(){q_.superApply(this,"init",arguments),this.resetRange()},mergeOption:function(){q_.superApply(this,"mergeOption",arguments),this.resetRange()},restoreData:function(){q_.superApply(this,"restoreData",arguments),this.resetRange()},getCoordSysModel:function(){return this.ecModel.queryComponents({mainType:"grid",index:this.option.gridIndex,id:this.option.gridId})[0]}});r(q_.prototype,Qy);var X_={offset:0};G_("x",q_,fc,X_),G_("y",q_,fc,X_),rv.extend({type:"grid",dependencies:["xAxis","yAxis"],layoutMode:"box",coordinateSystem:null,defaultOption:{show:!1,zlevel:0,z:0,left:"10%",top:60,right:"10%",bottom:60,containLabel:!1,backgroundColor:"rgba(0,0,0,0)",borderWidth:1,borderColor:"#ccc"}});var j_=pc.prototype;j_.type="grid",j_.axisPointerEnabled=!0,j_.getRect=function(){return this._rect},j_.update=function(t,e){var n=this._axesMap;this._updateScale(t,this.model),d(n.x,function(t){Ku(t.scale,t.model)}),d(n.y,function(t){Ku(t.scale,t.model)});var i={};d(n.x,function(t){gc(n,"y",t,i)}),d(n.y,function(t){gc(n,"x",t,i)}),this.resize(this.model,e)},j_.resize=function(t,e,n){function i(){d(a,function(t){var e=t.isHorizontal(),n=e?[0,r.width]:[0,r.height],i=t.inverse?1:0;t.setExtent(n[i],n[1-i]),mc(t,e?r.x:r.y)})}var r=xo(t.getBoxLayoutParams(),{width:e.getWidth(),height:e.getHeight()});this._rect=r;var a=this._axesList;i(),!n&&t.get("containLabel")&&(d(a,function(t){if(!t.model.get("axisLabel.inside")){var e=ih(t);if(e){var n=t.isHorizontal()?"height":"width",i=t.model.get("axisLabel.margin");r[n]-=e[n]+i,"top"===t.position?r.y+=e.height+i:"left"===t.position&&(r.x+=e.width+i)}}}),i())},j_.getAxis=function(t,e){var n=this._axesMap[t];if(null!=n){if(null==e)for(var i in n)if(n.hasOwnProperty(i))return n[i];return n[e]}},j_.getAxes=function(){return this._axesList.slice()},j_.getCartesian=function(t,e){if(null!=t&&null!=e){var n="x"+t+"y"+e;return this._coordsMap[n]}S(t)&&(e=t.yAxisIndex,t=t.xAxisIndex);for(var i=0,r=this._coordsList;iu[1]?-1:1,c=["start"===r?u[0]-h*l:"end"===r?u[1]+h*l:(u[0]+u[1])/2,Cc(r)?t.labelOffset+a*l:0],f=e.get("nameRotate");null!=f&&(f=f*Y_/180);var d;Cc(r)?i=Q_(t.rotation,null!=f?f:t.rotation,a):(i=wc(t,r,f||0,u),d=t.axisNameAvailableWidth,null!=d&&(d=Math.abs(d/Math.sin(i.rotation)),!isFinite(d)&&(d=null)));var p=s.getFont(),g=e.get("nameTruncate",!0)||{},v=g.ellipsis,m=I(t.nameTruncateMaxWidth,g.maxWidth,d),y=null!=v&&null!=m?$g(n,m,p,v,{minChar:2,placeholder:g.placeholder}):n,_=e.get("tooltip",!0),x=e.mainType,w={componentType:x,name:n,$vars:["name"]};w[x+"Index"]=e.componentIndex;var b=new og({anid:"name",__fullText:n,__truncatedText:y,position:c,rotation:i.rotation,silent:bc(e),z2:1,tooltip:_&&_.show?o({content:n,formatter:function(){return n},formatterParams:w},_):null});xa(b.style,s,{text:y,textFont:p,textFill:s.getTextColor()||e.get("axisLine.lineStyle.color"),textAlign:i.textAlign,textVerticalAlign:i.textVerticalAlign}),e.get("triggerEvent")&&(b.eventData=xc(e),b.eventData.targetType="axisName",b.eventData.name=n),this._dumbGroup.add(b),b.updateTransform(),this.group.add(b),b.decomposeTransform()}}},Q_=Z_.innerTextLayout=function(t,e,n){var i,r,a=to(e-t);return eo(a)?(r=n>0?"top":"bottom",i="center"):eo(a-Y_)?(r=n>0?"bottom":"top",i="center"):(r="middle",i=a>0&&Y_>a?n>0?"right":"left":n>0?"left":"right"),{rotation:a,textAlign:i,textVerticalAlign:r}},K_=Kl({type:"axis",_axisPointer:null,axisPointerClass:null,render:function(t,e,n,i){this.axisPointerClass&&Dc(t),K_.superApply(this,"render",arguments),Ec(this,t,e,n,i,!0)},updateAxisPointer:function(t,e,n,i){Ec(this,t,e,n,i,!1)},remove:function(t,e){var n=this._axisPointer;n&&n.remove(e),K_.superApply(this,"remove",arguments)},dispose:function(t,e){Rc(this,e),K_.superApply(this,"dispose",arguments)}}),J_=[];K_.registerAxisPointerClass=function(t,e){J_[t]=e},K_.getAxisPointerClass=function(t){return t&&J_[t]};var tx=["axisLine","axisTickLabel","axisName"],ex=["splitArea","splitLine"],nx=K_.extend({type:"cartesianAxis",axisPointerClass:"CartesianAxisPointer",render:function(t,e,n,i){this.group.removeAll();var r=this._axisGroup;if(this._axisGroup=new Zf,this.group.add(this._axisGroup),t.get("show")){var a=t.getCoordSysModel(),o=Bc(a,t),s=new Z_(t,o);d(tx,s.add,s),this._axisGroup.add(s.getGroup()),d(ex,function(e){t.get(e+".show")&&this["_"+e](t,a)},this),Ra(r,this._axisGroup,t),nx.superCall(this,"render",t,e,n,i)}},remove:function(){this._splitAreaColors=null},_splitLine:function(t,e){var n=t.axis;if(!n.scale.isBlank()){var i=t.getModel("splitLine"),r=i.getModel("lineStyle"),a=r.get("color");a=x(a)?a:[a];for(var o=e.coordinateSystem.getRect(),l=n.isHorizontal(),u=0,h=n.getTicksCoords({tickModel:i}),c=[],f=[],d=r.getLineStyle(),p=0;p { + Object.defineProperty(ctx, style, { + set: value => { + if (style !== 'fillStyle' && style !== 'strokeStyle' + || value !== 'none' && value !== null + ) { + ctx['set' + style.charAt(0).toUpperCase() + style.slice(1)](value); + } + } + }); + }); + + ctx.createRadialGradient = () => { + return ctx.createCircularGradient(arguments); + }; + } + + _initEvent() { + this.event = {}; + const eventNames = [{ + wxName: 'touchStart', + ecName: 'mousedown' + }, { + wxName: 'touchMove', + ecName: 'mousemove' + }, { + wxName: 'touchEnd', + ecName: 'mouseup' + }, { + wxName: 'touchEnd', + ecName: 'click' + }]; + + eventNames.forEach(name => { + this.event[name.wxName] = e => { + const touch = e.touches[0]; + this.chart._zr.handler.dispatch(name.ecName, { + zrX: name.wxName === 'tap' ? touch.clientX : touch.x, + zrY: name.wxName === 'tap' ? touch.clientY : touch.y + }); + }; + }); + } +} diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/gif/home.gif" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/gif/home.gif" new file mode 100644 index 0000000000000000000000000000000000000000..d3a65c3c4d1f100f73c264dd7ee9ff10949312da Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/gif/home.gif" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/gif/search.gif" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/gif/search.gif" new file mode 100644 index 0000000000000000000000000000000000000000..d79fd2c66a5fde06d3472e05be3d35d772333043 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/gif/search.gif" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/gif/search2.gif" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/gif/search2.gif" new file mode 100644 index 0000000000000000000000000000000000000000..8a4a5fe0db46e5fc8a6b3d9c6180f0e0ebcb777c Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/gif/search2.gif" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/iconfont/iconfont.eot" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/iconfont/iconfont.eot" new file mode 100644 index 0000000000000000000000000000000000000000..bf05d4bb5ef7eb55e34a769b97ac2559e59455b3 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/iconfont/iconfont.eot" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/iconfont/iconfont.ttf" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/iconfont/iconfont.ttf" new file mode 100644 index 0000000000000000000000000000000000000000..f3424779f5275be6f28c17347201affaaa6058c0 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/iconfont/iconfont.ttf" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/iconfont/iconfont.woff" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/iconfont/iconfont.woff" new file mode 100644 index 0000000000000000000000000000000000000000..db16bcfb6da14895f94f4c6b1acd6267219e6986 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/iconfont/iconfont.woff" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/iconfont/iconfont.wxss" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/iconfont/iconfont.wxss" new file mode 100644 index 0000000000000000000000000000000000000000..488d2f386208c6e0b69e8e3d8e5505e019aa8fbb --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/iconfont/iconfont.wxss" @@ -0,0 +1,39 @@ + +@font-face {font-family: "iconfont"; + src: url('iconfont.eot?t=1546416554331'); /* IE9*/ + src: url('iconfont.eot?t=1546416554331#iefix') format('embedded-opentype'), /* IE6-IE8 */ + url('data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAAAqMAAsAAAAADygAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADMAAABCsP6z7U9TLzIAAAE8AAAARAAAAFY8iErmY21hcAAAAYAAAACrAAACTOwtxRJnbHlmAAACLAAABhgAAAfIY01EsGhlYWQAAAhEAAAALwAAADYTz2lFaGhlYQAACHQAAAAgAAAAJAfqA4JobXR4AAAIlAAAAA8AAAAwMAAAAGxvY2EAAAikAAAAGgAAABoMsAq6bWF4cAAACMAAAAAfAAAAIAEfAIZuYW1lAAAI4AAAAUUAAAJtPlT+fXBvc3QAAAooAAAAYgAAAIPMTnE6eJxjYGRgYOBikGPQYWB0cfMJYeBgYGGAAJAMY05meiJQDMoDyrGAaQ4gZoOIAgCKIwNPAHicY2BkYWCcwMDKwMHUyXSGgYGhH0IzvmYwYuRgYGBiYGVmwAoC0lxTGByesb34wtzwv4EhhrmBoQcozAiSAwDwUwzreJzlksERgyAQRT9RiYEccnCcFJGxAKqwHRvIxWsqySkVfSnAu9llc9QKssyD4e+wMJ8F0ACohIdQA+4DB423qK7oFULRazxlf8dNlJaegR17DkycOC9jTnndNuA4sxtOKu4NwEvujBNaXOTuprwjygF/UOmf4lrm128X1XUDugZD/4+dIU6CvSGegoMh7oLJEJ/BydBe4Gxojyyjob2Sk6F9kVcD8Qth9D2/AHicXVVbbBRVGD7/OTNntjuzs5fuzmxnL+3MtrOlpcXutrMUSGkVi3LfFhIuD5aLglqVIqQlXCwXqwgPYIAmRS5P+Eq4PJkYIwhEwQejD0RjAKPxQSpETCCyg/9sqRA3k3//c84/3/nP9//nG0IJ/lia3icy0QkBFSQtojuRQjOwZsh2QCENugqUbT3FIg8i4QcRdmpoxgJKF8xo9yy9z04M7na/UlWYuXvwhNsHC9ufLC/0oKGM/zMDEiakzqFZW5BsLnFN1xydCuxcY33nT+51PnK4OlTFrP5NfrryxR2QXPLdHmNZsL66nVXXNbpHXi3DEPK4xAzGyrlmEA8ztC0JM8y1Mk49BxO2qZc5HgEPgpmTeesomECHVoTDU26r7OTg4Emm3p6yYT9TrycS11W2fz1dOz8UWjlILXo84H5+fOgkYyeHjsPzpQZ2sH8f1CmK++O+/oOYQwXm8Dv7g7VjDlHSSBzSSRaQV0g/2YqHzThtrdl8GqI8k7WzBSenRSWGk5gPEhvVM3bbBKNRCdDLaSmwrSAeotXJVQMPAoZYOCjkeUzk02BivowTBJ4VTQ9aMpsBQ3QTZ3nG9OLz7OKwADvCuh7+LF5TDJhxZclSH+3vKfZT3zKRHtu8+Rjj7jegZ/RoQ/Rmr1JVEyjWxGeLwxFdj2wH6A0p3bKeUpqa5LQmdytBt59FPLxH457dT0PheDxcuutZyBhJrDdiPTATRQ/KvWAke/opbpg0jOSWMcbGtiQN2L7RQ9/I2N7eQE2VUkyYXyYNfA1UdRXIL8jJmH/qVH8siS7Ug2ZpUDYndFPHp8z1b2ycTScxUk3qSQuZRV4iS5HtAUIq80+5zP/HMLS12haXYk5OdArYGzyqiwWn1SNZ0zNaDGM7oNVmJq5oeTOHSwVThUm/rrWQ8Vb0vF1nI+NRLTcbdA2XsBb3kdG3ij1lRvF8yCjM9A4TbXBvVdX0KGaVQtdPMFv9/Q4QhpG4S6W7HgU0hPa1R3c8n1XifCkJ273BsAhLg/IcfywlT22UUzH/HBlMIzXBZcpITHIJazd6ZdhIP/AYj5uB3l6vyMXE1YCaTHilcC9OsHbCoxCf99WAl1xiOcidciLmb2jwxxLoYg8L5cu0l/5KNJInS8ga7FzLzk5QqKI7SSzHnmumHUzT0ygMGKAynE4DZ06hA9IMw3kzoE+bGffcSkvK2ipo2MuxNHiM0oc+GeiuvtW7KMghmR3dNHCUyW6HT5rdk04t237kUKfE/EGpfffIOwuMxMvt3ohKXR8fHlqk1S7vkkI+QZqx2IzOfXPv3hm+oO/bsLqBq37g6zlY+UwGFso+BKe7Vvtk2TcwytjogE92b4DQuO3ooZ29qVSDGFSZYBvGvIE9I2/bOKLvSmIW0ffgLllBUINCLaJvwV0yoqC6X/uWi6Co4nIlYFi4h0cX6uTjzYLMhrEXTUJEexogSROUTcgOaE7dM4rJ/mp6fbAlD+KdC+fuCML4+cUH2sFnZUvHRq8IwpXR0auCcHVO4xtD0z9afG5c5ONnz/0pQluL+4/ZcEO4OjoZ9UT3TrGbrA81p55MwWpxImlEd0jBJoxb07AMqAKzJ3XkiV7oKD6UXHPviSIEr12DoCi696ic8I+N+RPRirGxiuhTX1FYHy5feya8tKrif0GTvjyp66vpOsyJVAC3smA7BdQnNt/9O16Mu/djxlRaaDTgoft+KgXbzG7Guss84nvrmEpU1E9SJ/FsncjtArKpg9YEji4CWwV+2b3sXlYqRegU4yJ0C6UDUFnhh7B7Oww+fuYsDyv0ph/kkiU3HRfFMboHi1LGPkN/IVWkAZV5DvY2QW4ava8a9qOeR3K0fM4phFuxmStRojNYMa/b83jPUde8uz+z3Lcsi1+pFo6drHWAzbDdmyGIOGmA8WPVtQtbugDmtq2orRlRo4la8Idy/pFmZ4VhASRjiwrTPoGdX6iRiOqZxGnZ4JIknw7EA/z8pwoPxuWypT+sqYSu5261zYXKnoraJJ0VCelK6b1iEsAybsWSkFpdugQdkWQEH/duH4IE4hz/tDh82OeL61zqk6o0ifwLmTR7lHicY2BkYGAAYukXPPHx/DZfGbhZGEDgRtCkVQj6fwkLN3MDkMvBwAQSBQAWYgn6AHicY2BkYGBu+N/AEMPCwMDw/ysLNwNQBAXwAABx5gR0eJxjYWBgYCEBAwAFEAAxAAAAAAAAMABWAJgBTgH6ApQC0gMcAzgDZgPkAAB4nGNgZGBg4GGoYuBkAAEmIOYCQgaG/2A+AwAWRwGmAHicZY9NTsMwEIVf+gekEqqoYIfkBWIBKP0Rq25YVGr3XXTfpk6bKokjx63UA3AejsAJOALcgDvwSCebNpbH37x5Y08A3OAHHo7fLfeRPVwyO3INF7gXrlN/EG6QX4SbaONVuEX9TdjHM6bCbXRheYPXuGL2hHdhDx18CNdwjU/hOvUv4Qb5W7iJO/wKt9Dx6sI+5l5XuI1HL/bHVi+cXqnlQcWhySKTOb+CmV7vkoWt0uqca1vEJlODoF9JU51pW91T7NdD5yIVWZOqCas6SYzKrdnq0AUb5/JRrxeJHoQm5Vhj/rbGAo5xBYUlDowxQhhkiMro6DtVZvSvsUPCXntWPc3ndFsU1P9zhQEC9M9cU7qy0nk6T4E9XxtSdXQrbsuelDSRXs1JErJCXta2VELqATZlV44RelzRiT8oZ0j/AAlabsgAAAB4nG3KQQ6DMAwFUX9InELpIS3iikgoSHaqXB8qtrzNbIYGus30bMGAEQERjIQXJsx4Y8GHkuRs6h52lW/s0tTYf9W1pStWXNnbf2BXsXUbs+5RzI4eeqmZ69HKqkQn1XUZtAAA') format('woff'), + url('iconfont.ttf?t=1546416554331') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+*/ + url('iconfont.svg?t=1546416554331#iconfont') format('svg'); /* iOS 4.1- */ +} + +.iconfont { + font-family:"iconfont" !important; + font-size:16px; + font-style:normal; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.icon-address:before { content: "\e60a"; } + +.icon-leaf:before { content: "\e616"; } + +.icon-water:before { content: "\e750"; } + +.icon-sunset:before { content: "\e679"; } + +.icon-sunrise:before { content: "\e68b"; } + +.icon-stress:before { content: "\e606"; } + +.icon-search:before { content: "\e614"; } + +.icon-del:before { content: "\e62e"; } + +.icon-arrow:before { content: "\e63a"; } + +.icon-wind:before { content: "\e83a"; } + +.icon-notice:before { content: "\e8f4"; } + diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/ac.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/ac.png" new file mode 100644 index 0000000000000000000000000000000000000000..5df48e5396c1507c4fecca5dddee17abdb2627d2 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/ac.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/ag.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/ag.png" new file mode 100644 index 0000000000000000000000000000000000000000..f234d42077b9f15f891657bf7c1018ba76e40644 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/ag.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/bl.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/bl.png" new file mode 100644 index 0000000000000000000000000000000000000000..5ef92e77e834390e260b6c5ea6113a16d0d4cfcf Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/bl.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/cl.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/cl.png" new file mode 100644 index 0000000000000000000000000000000000000000..3ec27faba956e157b36b1f82f4d85771bd5f16c5 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/cl.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/co.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/co.png" new file mode 100644 index 0000000000000000000000000000000000000000..4f505b413369c99c586ae358e05d056be76bceb0 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/co.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/ct.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/ct.png" new file mode 100644 index 0000000000000000000000000000000000000000..8b4894a4f8aa866e7e035a4a1a86006a02f912f7 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/ct.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/dy.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/dy.png" new file mode 100644 index 0000000000000000000000000000000000000000..886abf7cb2bfe48ee7f22ec5dc932568fd208a00 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/dy.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/fs.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/fs.png" new file mode 100644 index 0000000000000000000000000000000000000000..ab5d6f5e3795d030be3c7a59daf4907161d9c7ac Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/fs.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/gj.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/gj.png" new file mode 100644 index 0000000000000000000000000000000000000000..781f33e6a5b0d32f7f30205a7b4dff3e5bc17189 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/gj.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/gl.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/gl.png" new file mode 100644 index 0000000000000000000000000000000000000000..e7ad4121816480543d0c7f277cad13c760b1b6f9 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/gl.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/gm.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/gm.png" new file mode 100644 index 0000000000000000000000000000000000000000..2ed79e4c082f773e1faff73da9e267ecdea16a31 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/gm.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/hc.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/hc.png" new file mode 100644 index 0000000000000000000000000000000000000000..65b8b4e79e18f46d836b6254bc532e13523947c1 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/hc.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/jt.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/jt.png" new file mode 100644 index 0000000000000000000000000000000000000000..58593dcb1dfd2ed8375c2964305db96797e2cc33 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/jt.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/lk.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/lk.png" new file mode 100644 index 0000000000000000000000000000000000000000..df916a113326fbfe3f106f742a4e475b32f30d8c Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/lk.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/ls.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/ls.png" new file mode 100644 index 0000000000000000000000000000000000000000..aad69bc796d4b77b6280454b21000ba21029f7c9 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/ls.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/mf.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/mf.png" new file mode 100644 index 0000000000000000000000000000000000000000..8d57f7018b506452058e2b65bd753a962e9c6d3a Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/mf.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/nl.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/nl.png" new file mode 100644 index 0000000000000000000000000000000000000000..842f2ab6ffde1f6c2d07315643c48019a80570a8 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/nl.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/pj.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/pj.png" new file mode 100644 index 0000000000000000000000000000000000000000..d8728b83bbd5a741e3475d5dfce5e6d697a4dc5d Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/pj.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/pk.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/pk.png" new file mode 100644 index 0000000000000000000000000000000000000000..25215420f355be53f7b97aef255c05b10c996660 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/pk.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/pl.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/pl.png" new file mode 100644 index 0000000000000000000000000000000000000000..2c10d20c8410adae0a484d45d58d55e79db296ae Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/pl.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/pp.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/pp.png" new file mode 100644 index 0000000000000000000000000000000000000000..13b07f0ab3ad83dbbe9ea29a548c5411ecc23c5e Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/pp.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/rw.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/rw.png" new file mode 100644 index 0000000000000000000000000000000000000000..5e16c937ace6d9c5d2d06d45f3148821b24c850c Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/rw.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/tr.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/tr.png" new file mode 100644 index 0000000000000000000000000000000000000000..3e8a01a3d197eac332fe44e07f2fc38739a1c57c Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/tr.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/uv.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/uv.png" new file mode 100644 index 0000000000000000000000000000000000000000..10ab80a7112f6d56591db9f22b7757bd02fb7302 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/uv.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/wc.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/wc.png" new file mode 100644 index 0000000000000000000000000000000000000000..dfc00400885193f56c6ba0f1e17a2e0427b527ca Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/wc.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/wnl.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/wnl.png" new file mode 100644 index 0000000000000000000000000000000000000000..58f7c93d2cebe6991be7ab8ca1e36a84b21ebdd0 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/wnl.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/xc.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/xc.png" new file mode 100644 index 0000000000000000000000000000000000000000..2ea5d08f48e3a035d585278e5300b3cf1195eada Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/xc.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/xq.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/xq.png" new file mode 100644 index 0000000000000000000000000000000000000000..90c19bbc976a1c524a93b5a769a55835fd744712 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/xq.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/yd.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/yd.png" new file mode 100644 index 0000000000000000000000000000000000000000..63ba41b916d501f0e3ccd2a945da3f2ae8296023 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/yd.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/yh.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/yh.png" new file mode 100644 index 0000000000000000000000000000000000000000..505c094524f41a3052c8c14b8a6b9510279a6c93 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/yh.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/ys.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/ys.png" new file mode 100644 index 0000000000000000000000000000000000000000..feb5693b232c102e6a21787079307da57aeb9537 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/ys.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/zs.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/zs.png" new file mode 100644 index 0000000000000000000000000000000000000000..d02d5e22d1c851f3369916ecd571e9cf5d37694d Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/index/zs.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/bx.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/bx.png" new file mode 100644 index 0000000000000000000000000000000000000000..3a3945e5b5a6c2d2d9e751162e7590d3d15d3bbb Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/bx.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/by.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/by.png" new file mode 100644 index 0000000000000000000000000000000000000000..2d70bd600660ea0cc1b52415097ff79af89f3f22 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/by.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/d-dy.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/d-dy.png" new file mode 100644 index 0000000000000000000000000000000000000000..954d873a12cdf53ba62bd63420e7436dfd00d408 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/d-dy.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/d-dyzq.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/d-dyzq.png" new file mode 100644 index 0000000000000000000000000000000000000000..954d873a12cdf53ba62bd63420e7436dfd00d408 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/d-dyzq.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/d-q.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/d-q.png" new file mode 100644 index 0000000000000000000000000000000000000000..b7aedb848d62e2af3338d3337641fc075af49142 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/d-q.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/d-qzdy.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/d-qzdy.png" new file mode 100644 index 0000000000000000000000000000000000000000..87a7836a6c2373ea80cf87854431c4c060d6d78c Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/d-qzdy.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/d-qzy.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/d-qzy.png" new file mode 100644 index 0000000000000000000000000000000000000000..137c07868e8937fbefd9a9067f6a6f5d26d0d1f3 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/d-qzy.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/d-xxzq.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/d-xxzq.png" new file mode 100644 index 0000000000000000000000000000000000000000..548f1b3168fb0cb0fe28f9a53a93379f0a7867b4 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/d-xxzq.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/d-zy.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/d-zy.png" new file mode 100644 index 0000000000000000000000000000000000000000..853659363b84bd702ccf2535f77b678980089714 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/d-zy.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/dby.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/dby.png" new file mode 100644 index 0000000000000000000000000000000000000000..9e517be10e868e3e4eaffcd8a636daec503331e0 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/dby.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/dx.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/dx.png" new file mode 100644 index 0000000000000000000000000000000000000000..36d79c2b09a93a02cb2b29901cb4a42e5867ba67 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/dx.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/dy.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/dy.png" new file mode 100644 index 0000000000000000000000000000000000000000..1442a6efec9f9436ef43caa0e2be4daeee5b1de3 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/dy.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/dyzq.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/dyzq.png" new file mode 100644 index 0000000000000000000000000000000000000000..b948f5b31b1ec32821c469bf790fec6f00549910 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/dyzq.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/dyzxx.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/dyzxx.png" new file mode 100644 index 0000000000000000000000000000000000000000..187f1c9483d96e5b98a52580eccbebdd32a8f560 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/dyzxx.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/fc.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/fc.png" new file mode 100644 index 0000000000000000000000000000000000000000..ea27c104129119d1ffb1860186a86afb7601989b Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/fc.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/lzy.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/lzy.png" new file mode 100644 index 0000000000000000000000000000000000000000..cf55a934920c480851d654b6bd487ae014f43553 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/lzy.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/m.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/m.png" new file mode 100644 index 0000000000000000000000000000000000000000..7ab4d785deedcd6dd7d0d8f9b2423c12b4861afe Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/m.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/n-dy.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/n-dy.png" new file mode 100644 index 0000000000000000000000000000000000000000..d6f9d5c9733ed11c6eb9633092d369bd19cfc622 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/n-dy.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/n-dyzq.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/n-dyzq.png" new file mode 100644 index 0000000000000000000000000000000000000000..d6f9d5c9733ed11c6eb9633092d369bd19cfc622 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/n-dyzq.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/n-q.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/n-q.png" new file mode 100644 index 0000000000000000000000000000000000000000..d5a5fe4f64fd95ca25d69d023bfa7ca1612ea0c0 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/n-q.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/n-qzdy.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/n-qzdy.png" new file mode 100644 index 0000000000000000000000000000000000000000..326ff4a5d041709d09ea85d80601741ef4b384c0 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/n-qzdy.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/n-xxzq.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/n-xxzq.png" new file mode 100644 index 0000000000000000000000000000000000000000..1c5f62e7d84af0d97314a838d3ca5f84d62a4362 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/n-xxzq.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/n-zy.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/n-zy.png" new file mode 100644 index 0000000000000000000000000000000000000000..c229dd14267ae0ccf0e0861226ff5182c3a26efd Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/n-zy.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/qzzx.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/qzzx.png" new file mode 100644 index 0000000000000000000000000000000000000000..603c6b433d47da3ee3af0d5ca089b22ae67196a9 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/qzzx.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/w.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/w.png" new file mode 100644 index 0000000000000000000000000000000000000000..733444e18539ed9d2b20096224c5246a9b93bcb0 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/w.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/xx.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/xx.png" new file mode 100644 index 0000000000000000000000000000000000000000..05fb3c48a2da2886d9e73a742eb0e25541d4f023 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/xx.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/xxzdy.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/xxzdy.png" new file mode 100644 index 0000000000000000000000000000000000000000..d085f0c4b30801cf512b91e5ab07b47b85df0051 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/xxzdy.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/xy.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/xy.png" new file mode 100644 index 0000000000000000000000000000000000000000..43dd885e957facc8568391526d3044499f86c8b5 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/xy.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/y.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/y.png" new file mode 100644 index 0000000000000000000000000000000000000000..216fe9b5c74d22d799964ef75c9c007616facc92 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/y.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/ys.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/ys.png" new file mode 100644 index 0000000000000000000000000000000000000000..3670a634bcfcde83f8aaa3c4b78c519a3b8b0349 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/ys.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/yzdy.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/yzdy.png" new file mode 100644 index 0000000000000000000000000000000000000000..b948f5b31b1ec32821c469bf790fec6f00549910 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/yzdy.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/yzx.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/yzx.png" new file mode 100644 index 0000000000000000000000000000000000000000..e6d24c4bb76c7b27847048d41cf68c0cd8d6405a Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/yzx.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/zx.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/zx.png" new file mode 100644 index 0000000000000000000000000000000000000000..0ff7b66a7e248c8dfb2263d0a653f6f1c7dc4db2 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/zx.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/zxzq.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/zxzq.png" new file mode 100644 index 0000000000000000000000000000000000000000..603c6b433d47da3ee3af0d5ca089b22ae67196a9 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/zxzq.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/zy.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/zy.png" new file mode 100644 index 0000000000000000000000000000000000000000..088f65f5911d4f6a5b4407ec579ef83c442c1dcb Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/images/weather/zy.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/img/bingbao.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/img/bingbao.png" new file mode 100644 index 0000000000000000000000000000000000000000..7cc0a3290ba1129600aff54b76bd663d84a57ddb Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/img/bingbao.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/img/humidity.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/img/humidity.png" new file mode 100644 index 0000000000000000000000000000000000000000..4d2e7710b19a7bb2eddf03502c390a9bec1e3f69 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/img/humidity.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/img/icon3.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/img/icon3.png" new file mode 100644 index 0000000000000000000000000000000000000000..2199b87cdeaa1b6eee3e6e44b384d39e2fb33242 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/img/icon3.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/img/icon6.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/img/icon6.png" new file mode 100644 index 0000000000000000000000000000000000000000..8f9422fbf28f84aa598c507484a6bea46baf332c Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/img/icon6.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/img/icon7.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/img/icon7.png" new file mode 100644 index 0000000000000000000000000000000000000000..e96e4ae09126afc34fbc160ed1d09c1f94bf4ff1 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/img/icon7.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/img/icon8.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/img/icon8.png" new file mode 100644 index 0000000000000000000000000000000000000000..dc492d0d325f606bb02310fa3064b8c0de1ecac6 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/img/icon8.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/img/lei.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/img/lei.png" new file mode 100644 index 0000000000000000000000000000000000000000..3dc9c85ee46498ef6e277c38d3b4d2683ab79240 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/img/lei.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/img/location.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/img/location.png" new file mode 100644 index 0000000000000000000000000000000000000000..2fa4650bdc4954a7fc9776190ecb3b1a2f8d2141 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/img/location.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/img/qing.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/img/qing.png" new file mode 100644 index 0000000000000000000000000000000000000000..8898c1f5bbc0f646f963f443d366e253d64f368b Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/img/qing.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/img/rain.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/img/rain.png" new file mode 100644 index 0000000000000000000000000000000000000000..edef84ce0c6fb4fea0a975ead2d73e4d8a1c629f Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/img/rain.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/img/shachen.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/img/shachen.png" new file mode 100644 index 0000000000000000000000000000000000000000..135f9d14c8164b239bbe39e0aba957dbf21df087 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/img/shachen.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/img/sunrise.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/img/sunrise.png" new file mode 100644 index 0000000000000000000000000000000000000000..5bc760c4b53dab7ea9c5753011716782914e8189 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/img/sunrise.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/img/sunset.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/img/sunset.png" new file mode 100644 index 0000000000000000000000000000000000000000..866856d9c6016dbf0b925cbe140721618a19c2be Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/img/sunset.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/img/win_speed.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/img/win_speed.png" new file mode 100644 index 0000000000000000000000000000000000000000..db195a6e9f28a4ab0e55a1b2d784c1e971c77bd5 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/img/win_speed.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/img/wu.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/img/wu.png" new file mode 100644 index 0000000000000000000000000000000000000000..7a2492800f5e55f1397d65c7dd1ccf574c62f1bb Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/img/wu.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/img/xue.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/img/xue.png" new file mode 100644 index 0000000000000000000000000000000000000000..1be9c3a63ed130fd65896f616a870dce8e1c0b4c Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/img/xue.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/img/yin.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/img/yin.png" new file mode 100644 index 0000000000000000000000000000000000000000..df0b5da19cf43afcbab223d19d9e9c356cd4752d Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/img/yin.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/img/yu.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/img/yu.png" new file mode 100644 index 0000000000000000000000000000000000000000..9e1b1ada9430c787515f55a93e14fa2ad15c4319 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/img/yu.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/img/yun.png" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/img/yun.png" new file mode 100644 index 0000000000000000000000000000000000000000..c896284836cddfeef98bda6a453497f7a714ee28 Binary files /dev/null and "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/img/yun.png" differ diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/libs/city-code.js" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/libs/city-code.js" new file mode 100644 index 0000000000000000000000000000000000000000..2556f722b9bc3f5c3f15c669992bf7db8adc5f9e --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/libs/city-code.js" @@ -0,0 +1,12725 @@ +export default [{ + "id": "CN101010100", + "cityEn": "beijing", + "cityZh": "\u5317\u4eac" +}, { + "id": "CN101010200", + "cityEn": "haidian", + "cityZh": "\u6d77\u6dc0" +}, { + "id": "CN101010300", + "cityEn": "chaoyang", + "cityZh": "\u671d\u9633" +}, { + "id": "CN101010400", + "cityEn": "shunyi", + "cityZh": "\u987a\u4e49" +}, { + "id": "CN101010500", + "cityEn": "huairou", + "cityZh": "\u6000\u67d4" +}, { + "id": "CN101010600", + "cityEn": "tongzhou", + "cityZh": "\u901a\u5dde" +}, { + "id": "CN101010700", + "cityEn": "changping", + "cityZh": "\u660c\u5e73" +}, { + "id": "CN101010800", + "cityEn": "yanqing", + "cityZh": "\u5ef6\u5e86" +}, { + "id": "CN101010900", + "cityEn": "fengtai", + "cityZh": "\u4e30\u53f0" +}, { + "id": "CN101011000", + "cityEn": "shijingshan", + "cityZh": "\u77f3\u666f\u5c71" +}, { + "id": "CN101011100", + "cityEn": "daxing", + "cityZh": "\u5927\u5174" +}, { + "id": "CN101011200", + "cityEn": "fangshan", + "cityZh": "\u623f\u5c71" +}, { + "id": "CN101011300", + "cityEn": "miyun", + "cityZh": "\u5bc6\u4e91" +}, { + "id": "CN101011400", + "cityEn": "mentougou", + "cityZh": "\u95e8\u5934\u6c9f" +}, { + "id": "CN101011500", + "cityEn": "pinggu", + "cityZh": "\u5e73\u8c37" +}, { + "id": "CN101011600", + "cityEn": "dongcheng", + "cityZh": "\u4e1c\u57ce" +}, { + "id": "CN101011700", + "cityEn": "xicheng", + "cityZh": "\u897f\u57ce" +}, { + "id": "CN101020100", + "cityEn": "shanghai", + "cityZh": "\u4e0a\u6d77" +}, { + "id": "CN101020200", + "cityEn": "minhang", + "cityZh": "\u95f5\u884c" +}, { + "id": "CN101020300", + "cityEn": "baoshan", + "cityZh": "\u5b9d\u5c71" +}, { + "id": "CN101020400", + "cityEn": "huangpu", + "cityZh": "\u9ec4\u6d66" +}, { + "id": "CN101020500", + "cityEn": "jiading", + "cityZh": "\u5609\u5b9a" +}, { + "id": "CN101020600", + "cityEn": "pudongxinqu", + "cityZh": "\u6d66\u4e1c\u65b0\u533a" +}, { + "id": "CN101020700", + "cityEn": "jinshan", + "cityZh": "\u91d1\u5c71" +}, { + "id": "CN101020800", + "cityEn": "qingpu", + "cityZh": "\u9752\u6d66" +}, { + "id": "CN101020900", + "cityEn": "songjiang", + "cityZh": "\u677e\u6c5f" +}, { + "id": "CN101021000", + "cityEn": "fengxian", + "cityZh": "\u5949\u8d24" +}, { + "id": "CN101021100", + "cityEn": "chongming", + "cityZh": "\u5d07\u660e" +}, { + "id": "CN101021200", + "cityEn": "xuhui", + "cityZh": "\u5f90\u6c47" +}, { + "id": "CN101021300", + "cityEn": "changning", + "cityZh": "\u957f\u5b81" +}, { + "id": "CN101021400", + "cityEn": "jingan", + "cityZh": "\u9759\u5b89" +}, { + "id": "CN101021500", + "cityEn": "putuo", + "cityZh": "\u666e\u9640" +}, { + "id": "CN101021600", + "cityEn": "hongkou", + "cityZh": "\u8679\u53e3" +}, { + "id": "CN101021700", + "cityEn": "yangpu", + "cityZh": "\u6768\u6d66" +}, { + "id": "CN101030100", + "cityEn": "tianjin", + "cityZh": "\u5929\u6d25" +}, { + "id": "CN101030200", + "cityEn": "wuqing", + "cityZh": "\u6b66\u6e05" +}, { + "id": "CN101030300", + "cityEn": "baodi", + "cityZh": "\u5b9d\u577b" +}, { + "id": "CN101030400", + "cityEn": "dongli", + "cityZh": "\u4e1c\u4e3d" +}, { + "id": "CN101030500", + "cityEn": "xiqing", + "cityZh": "\u897f\u9752" +}, { + "id": "CN101030600", + "cityEn": "beichen", + "cityZh": "\u5317\u8fb0" +}, { + "id": "CN101030700", + "cityEn": "ninghe", + "cityZh": "\u5b81\u6cb3" +}, { + "id": "CN101030800", + "cityEn": "heping", + "cityZh": "\u548c\u5e73" +}, { + "id": "CN101030900", + "cityEn": "jinghai", + "cityZh": "\u9759\u6d77" +}, { + "id": "CN101031000", + "cityEn": "jinnan", + "cityZh": "\u6d25\u5357" +}, { + "id": "CN101031100", + "cityEn": "binhaixinqu", + "cityZh": "\u6ee8\u6d77\u65b0\u533a" +}, { + "id": "CN101031200", + "cityEn": "hedong", + "cityZh": "\u6cb3\u4e1c" +}, { + "id": "CN101031300", + "cityEn": "hexi", + "cityZh": "\u6cb3\u897f" +}, { + "id": "CN101031400", + "cityEn": "jizhou", + "cityZh": "\u84df\u5dde" +}, { + "id": "CN101031500", + "cityEn": "nankai", + "cityZh": "\u5357\u5f00" +}, { + "id": "CN101031600", + "cityEn": "hebei", + "cityZh": "\u6cb3\u5317" +}, { + "id": "CN101031700", + "cityEn": "hongqiao", + "cityZh": "\u7ea2\u6865" +}, { + "id": "CN101040100", + "cityEn": "chongqing", + "cityZh": "\u91cd\u5e86" +}, { + "id": "CN101040200", + "cityEn": "yongchuan", + "cityZh": "\u6c38\u5ddd" +}, { + "id": "CN101040300", + "cityEn": "hechuan", + "cityZh": "\u5408\u5ddd" +}, { + "id": "CN101040400", + "cityEn": "nanchuan", + "cityZh": "\u5357\u5ddd" +}, { + "id": "CN101040500", + "cityEn": "jiangjin", + "cityZh": "\u6c5f\u6d25" +}, { + "id": "CN101040700", + "cityEn": "yubei", + "cityZh": "\u6e1d\u5317" +}, { + "id": "CN101040800", + "cityEn": "beibei", + "cityZh": "\u5317\u789a" +}, { + "id": "CN101040900", + "cityEn": "banan", + "cityZh": "\u5df4\u5357" +}, { + "id": "CN101041000", + "cityEn": "changshou", + "cityZh": "\u957f\u5bff" +}, { + "id": "CN101041100", + "cityEn": "qianjiang", + "cityZh": "\u9ed4\u6c5f" +}, { + "id": "CN101041200", + "cityEn": "yuzhong", + "cityZh": "\u6e1d\u4e2d" +}, { + "id": "CN101041300", + "cityEn": "wanzhou", + "cityZh": "\u4e07\u5dde" +}, { + "id": "CN101041400", + "cityEn": "fuling", + "cityZh": "\u6daa\u9675" +}, { + "id": "CN101041500", + "cityEn": "kaixian", + "cityZh": "\u5f00\u53bf" +}, { + "id": "CN101041600", + "cityEn": "chengkou", + "cityZh": "\u57ce\u53e3" +}, { + "id": "CN101041700", + "cityEn": "yunyang", + "cityZh": "\u4e91\u9633" +}, { + "id": "CN101041800", + "cityEn": "wuxi", + "cityZh": "\u5deb\u6eaa" +}, { + "id": "CN101041900", + "cityEn": "fengjie", + "cityZh": "\u5949\u8282" +}, { + "id": "CN101042000", + "cityEn": "wushan", + "cityZh": "\u5deb\u5c71" +}, { + "id": "CN101042100", + "cityEn": "tongnan", + "cityZh": "\u6f7c\u5357" +}, { + "id": "CN101042200", + "cityEn": "dianjiang", + "cityZh": "\u57ab\u6c5f" +}, { + "id": "CN101042300", + "cityEn": "liangping", + "cityZh": "\u6881\u5e73" +}, { + "id": "CN101042400", + "cityEn": "zhongxian", + "cityZh": "\u5fe0\u53bf" +}, { + "id": "CN101042500", + "cityEn": "shizhu", + "cityZh": "\u77f3\u67f1" +}, { + "id": "CN101042600", + "cityEn": "dazu", + "cityZh": "\u5927\u8db3" +}, { + "id": "CN101042700", + "cityEn": "rongchang", + "cityZh": "\u8363\u660c" +}, { + "id": "CN101042800", + "cityEn": "tongliang", + "cityZh": "\u94dc\u6881" +}, { + "id": "CN101042900", + "cityEn": "bishan", + "cityZh": "\u74a7\u5c71" +}, { + "id": "CN101043000", + "cityEn": "fengdu", + "cityZh": "\u4e30\u90fd" +}, { + "id": "CN101043100", + "cityEn": "wulong", + "cityZh": "\u6b66\u9686" +}, { + "id": "CN101043200", + "cityEn": "pengshui", + "cityZh": "\u5f6d\u6c34" +}, { + "id": "CN101043300", + "cityEn": "qijiang", + "cityZh": "\u7da6\u6c5f" +}, { + "id": "CN101043400", + "cityEn": "youyang", + "cityZh": "\u9149\u9633" +}, { + "id": "CN101043500", + "cityEn": "dadukou", + "cityZh": "\u5927\u6e21\u53e3" +}, { + "id": "CN101043600", + "cityEn": "xiushan", + "cityZh": "\u79c0\u5c71" +}, { + "id": "CN101043700", + "cityEn": "jiangbei", + "cityZh": "\u6c5f\u5317" +}, { + "id": "CN101043800", + "cityEn": "shapingba", + "cityZh": "\u6c99\u576a\u575d" +}, { + "id": "CN101043900", + "cityEn": "jiulongpo", + "cityZh": "\u4e5d\u9f99\u5761" +}, { + "id": "CN101044000", + "cityEn": "nanan", + "cityZh": "\u5357\u5cb8" +}, { + "id": "CN101044100", + "cityEn": "kaizhou", + "cityZh": "\u5f00\u5dde" +}, { + "id": "CN101050101", + "cityEn": "haerbin", + "cityZh": "\u54c8\u5c14\u6ee8" +}, { + "id": "CN101050102", + "cityEn": "shuangcheng", + "cityZh": "\u53cc\u57ce" +}, { + "id": "CN101050103", + "cityEn": "hulan", + "cityZh": "\u547c\u5170" +}, { + "id": "CN101050104", + "cityEn": "acheng", + "cityZh": "\u963f\u57ce" +}, { + "id": "CN101050105", + "cityEn": "binxian", + "cityZh": "\u5bbe\u53bf" +}, { + "id": "CN101050106", + "cityEn": "yilan", + "cityZh": "\u4f9d\u5170" +}, { + "id": "CN101050107", + "cityEn": "bayan", + "cityZh": "\u5df4\u5f66" +}, { + "id": "CN101050108", + "cityEn": "tonghe", + "cityZh": "\u901a\u6cb3" +}, { + "id": "CN101050109", + "cityEn": "fangzheng", + "cityZh": "\u65b9\u6b63" +}, { + "id": "CN101050110", + "cityEn": "yanshou", + "cityZh": "\u5ef6\u5bff" +}, { + "id": "CN101050111", + "cityEn": "shangzhi", + "cityZh": "\u5c1a\u5fd7" +}, { + "id": "CN101050112", + "cityEn": "wuchang", + "cityZh": "\u4e94\u5e38" +}, { + "id": "CN101050113", + "cityEn": "mulan", + "cityZh": "\u6728\u5170" +}, { + "id": "CN101050114", + "cityEn": "daoli", + "cityZh": "\u9053\u91cc" +}, { + "id": "CN101050115", + "cityEn": "nangang", + "cityZh": "\u5357\u5c97" +}, { + "id": "CN101050116", + "cityEn": "daowai", + "cityZh": "\u9053\u5916" +}, { + "id": "CN101050117", + "cityEn": "pingfang", + "cityZh": "\u5e73\u623f" +}, { + "id": "CN101050118", + "cityEn": "songbei", + "cityZh": "\u677e\u5317" +}, { + "id": "CN101050119", + "cityEn": "xiangfang", + "cityZh": "\u9999\u574a" +}, { + "id": "CN101050201", + "cityEn": "qiqihaer", + "cityZh": "\u9f50\u9f50\u54c8\u5c14" +}, { + "id": "CN101050202", + "cityEn": "nehe", + "cityZh": "\u8bb7\u6cb3" +}, { + "id": "CN101050203", + "cityEn": "longjiang", + "cityZh": "\u9f99\u6c5f" +}, { + "id": "CN101050204", + "cityEn": "gannan", + "cityZh": "\u7518\u5357" +}, { + "id": "CN101050205", + "cityEn": "fuyu", + "cityZh": "\u5bcc\u88d5" +}, { + "id": "CN101050206", + "cityEn": "yian", + "cityZh": "\u4f9d\u5b89" +}, { + "id": "CN101050207", + "cityEn": "baiquan", + "cityZh": "\u62dc\u6cc9" +}, { + "id": "CN101050208", + "cityEn": "keshan", + "cityZh": "\u514b\u5c71" +}, { + "id": "CN101050209", + "cityEn": "kedong", + "cityZh": "\u514b\u4e1c" +}, { + "id": "CN101050210", + "cityEn": "tailai", + "cityZh": "\u6cf0\u6765" +}, { + "id": "CN101050211", + "cityEn": "longsha", + "cityZh": "\u9f99\u6c99" +}, { + "id": "CN101050212", + "cityEn": "jianhua", + "cityZh": "\u5efa\u534e" +}, { + "id": "CN101050213", + "cityEn": "tiefeng", + "cityZh": "\u94c1\u950b" +}, { + "id": "CN101050214", + "cityEn": "angangxi", + "cityZh": "\u6602\u6602\u6eaa" +}, { + "id": "CN101050215", + "cityEn": "fulaerji", + "cityZh": "\u5bcc\u62c9\u5c14\u57fa" +}, { + "id": "CN101050216", + "cityEn": "nianzishan", + "cityZh": "\u78be\u5b50\u5c71" +}, { + "id": "CN101050217", + "cityEn": "meilisi", + "cityZh": "\u6885\u91cc\u65af" +}, { + "id": "CN101050301", + "cityEn": "mudanjiang", + "cityZh": "\u7261\u4e39\u6c5f" +}, { + "id": "CN101050302", + "cityEn": "hailin", + "cityZh": "\u6d77\u6797" +}, { + "id": "CN101050303", + "cityEn": "muling", + "cityZh": "\u7a46\u68f1" +}, { + "id": "CN101050304", + "cityEn": "linkou", + "cityZh": "\u6797\u53e3" +}, { + "id": "CN101050305", + "cityEn": "suifenhe", + "cityZh": "\u7ee5\u82ac\u6cb3" +}, { + "id": "CN101050306", + "cityEn": "ningan", + "cityZh": "\u5b81\u5b89" +}, { + "id": "CN101050307", + "cityEn": "dongning", + "cityZh": "\u4e1c\u5b81" +}, { + "id": "CN101050308", + "cityEn": "dongan", + "cityZh": "\u4e1c\u5b89" +}, { + "id": "CN101050309", + "cityEn": "yangming", + "cityZh": "\u9633\u660e" +}, { + "id": "CN101050310", + "cityEn": "aimin", + "cityZh": "\u7231\u6c11" +}, { + "id": "CN101050311", + "cityEn": "xian", + "cityZh": "\u897f\u5b89" +}, { + "id": "CN101050401", + "cityEn": "jiamusi", + "cityZh": "\u4f73\u6728\u65af" +}, { + "id": "CN101050402", + "cityEn": "tangyuan", + "cityZh": "\u6c64\u539f" +}, { + "id": "CN101050403", + "cityEn": "fuyuan", + "cityZh": "\u629a\u8fdc" +}, { + "id": "CN101050404", + "cityEn": "huachuan", + "cityZh": "\u6866\u5ddd" +}, { + "id": "CN101050405", + "cityEn": "huanan", + "cityZh": "\u6866\u5357" +}, { + "id": "CN101050406", + "cityEn": "tongjiang", + "cityZh": "\u540c\u6c5f" +}, { + "id": "CN101050407", + "cityEn": "fujin", + "cityZh": "\u5bcc\u9526" +}, { + "id": "CN101050408", + "cityEn": "xiangyang", + "cityZh": "\u5411\u9633" +}, { + "id": "CN101050409", + "cityEn": "qianjin", + "cityZh": "\u524d\u8fdb" +}, { + "id": "CN101050410", + "cityEn": "dongfeng", + "cityZh": "\u4e1c\u98ce" +}, { + "id": "CN101050411", + "cityEn": "jiaoqu", + "cityZh": "\u90ca\u533a" +}, { + "id": "CN101050501", + "cityEn": "suihua", + "cityZh": "\u7ee5\u5316" +}, { + "id": "CN101050502", + "cityEn": "zhaodong", + "cityZh": "\u8087\u4e1c" +}, { + "id": "CN101050503", + "cityEn": "anda", + "cityZh": "\u5b89\u8fbe" +}, { + "id": "CN101050504", + "cityEn": "hailun", + "cityZh": "\u6d77\u4f26" +}, { + "id": "CN101050505", + "cityEn": "mingshui", + "cityZh": "\u660e\u6c34" +}, { + "id": "CN101050506", + "cityEn": "wangkui", + "cityZh": "\u671b\u594e" +}, { + "id": "CN101050507", + "cityEn": "lanxi", + "cityZh": "\u5170\u897f" +}, { + "id": "CN101050508", + "cityEn": "qinggang", + "cityZh": "\u9752\u5188" +}, { + "id": "CN101050509", + "cityEn": "qingan", + "cityZh": "\u5e86\u5b89" +}, { + "id": "CN101050510", + "cityEn": "suiling", + "cityZh": "\u7ee5\u68f1" +}, { + "id": "CN101050511", + "cityEn": "beilin", + "cityZh": "\u5317\u6797" +}, { + "id": "CN101050601", + "cityEn": "heihe", + "cityZh": "\u9ed1\u6cb3" +}, { + "id": "CN101050602", + "cityEn": "nenjiang", + "cityZh": "\u5ae9\u6c5f" +}, { + "id": "CN101050603", + "cityEn": "sunwu", + "cityZh": "\u5b59\u5434" +}, { + "id": "CN101050604", + "cityEn": "xunke", + "cityZh": "\u900a\u514b" +}, { + "id": "CN101050605", + "cityEn": "wudalianchi", + "cityZh": "\u4e94\u5927\u8fde\u6c60" +}, { + "id": "CN101050606", + "cityEn": "beian", + "cityZh": "\u5317\u5b89" +}, { + "id": "CN101050607", + "cityEn": "aihui", + "cityZh": "\u7231\u8f89" +}, { + "id": "CN101050701", + "cityEn": "daxinganling", + "cityZh": "\u5927\u5174\u5b89\u5cad" +}, { + "id": "CN101050702", + "cityEn": "tahe", + "cityZh": "\u5854\u6cb3" +}, { + "id": "CN101050703", + "cityEn": "mohe", + "cityZh": "\u6f20\u6cb3" +}, { + "id": "CN101050704", + "cityEn": "huma", + "cityZh": "\u547c\u739b" +}, { + "id": "CN101050801", + "cityEn": "yichun", + "cityZh": "\u4f0a\u6625" +}, { + "id": "CN101050802", + "cityEn": "wuyiling", + "cityZh": "\u4e4c\u4f0a\u5cad" +}, { + "id": "CN101050803", + "cityEn": "wuying", + "cityZh": "\u4e94\u8425" +}, { + "id": "CN101050804", + "cityEn": "tieli", + "cityZh": "\u94c1\u529b" +}, { + "id": "CN101050805", + "cityEn": "jiayin", + "cityZh": "\u5609\u836b" +}, { + "id": "CN101050806", + "cityEn": "nancha", + "cityZh": "\u5357\u5c94" +}, { + "id": "CN101050807", + "cityEn": "youhao", + "cityZh": "\u53cb\u597d" +}, { + "id": "CN101050808", + "cityEn": "xilin", + "cityZh": "\u897f\u6797" +}, { + "id": "CN101050809", + "cityEn": "cuiluan", + "cityZh": "\u7fe0\u5ce6" +}, { + "id": "CN101050810", + "cityEn": "xinqing", + "cityZh": "\u65b0\u9752" +}, { + "id": "CN101050811", + "cityEn": "meixi", + "cityZh": "\u7f8e\u6eaa" +}, { + "id": "CN101050812", + "cityEn": "jinshantun", + "cityZh": "\u91d1\u5c71\u5c6f" +}, { + "id": "CN101050813", + "cityEn": "wumahe", + "cityZh": "\u4e4c\u9a6c\u6cb3" +}, { + "id": "CN101050814", + "cityEn": "tangwanghe", + "cityZh": "\u6c64\u65fa\u6cb3" +}, { + "id": "CN101050815", + "cityEn": "dailing", + "cityZh": "\u5e26\u5cad" +}, { + "id": "CN101050816", + "cityEn": "hongxing", + "cityZh": "\u7ea2\u661f" +}, { + "id": "CN101050817", + "cityEn": "shangganling", + "cityZh": "\u4e0a\u7518\u5cad" +}, { + "id": "CN101050901", + "cityEn": "daqing", + "cityZh": "\u5927\u5e86" +}, { + "id": "CN101050902", + "cityEn": "lindian", + "cityZh": "\u6797\u7538" +}, { + "id": "CN101050903", + "cityEn": "zhaozhou", + "cityZh": "\u8087\u5dde" +}, { + "id": "CN101050904", + "cityEn": "zhaoyuan", + "cityZh": "\u8087\u6e90" +}, { + "id": "CN101050905", + "cityEn": "duerbote", + "cityZh": "\u675c\u5c14\u4f2f\u7279" +}, { + "id": "CN101050906", + "cityEn": "saertu", + "cityZh": "\u8428\u5c14\u56fe" +}, { + "id": "CN101050907", + "cityEn": "longfeng", + "cityZh": "\u9f99\u51e4" +}, { + "id": "CN101050908", + "cityEn": "ranghulu", + "cityZh": "\u8ba9\u80e1\u8def" +}, { + "id": "CN101050909", + "cityEn": "honggang", + "cityZh": "\u7ea2\u5c97" +}, { + "id": "CN101050910", + "cityEn": "datong", + "cityZh": "\u5927\u540c" +}, { + "id": "CN101051001", + "cityEn": "xinxing", + "cityZh": "\u65b0\u5174" +}, { + "id": "CN101051002", + "cityEn": "qitaihe", + "cityZh": "\u4e03\u53f0\u6cb3" +}, { + "id": "CN101051003", + "cityEn": "boli", + "cityZh": "\u52c3\u5229" +}, { + "id": "CN101051004", + "cityEn": "taoshan", + "cityZh": "\u6843\u5c71" +}, { + "id": "CN101051005", + "cityEn": "qiezihe", + "cityZh": "\u8304\u5b50\u6cb3" +}, { + "id": "CN101051101", + "cityEn": "jixi", + "cityZh": "\u9e21\u897f" +}, { + "id": "CN101051102", + "cityEn": "hulin", + "cityZh": "\u864e\u6797" +}, { + "id": "CN101051103", + "cityEn": "mishan", + "cityZh": "\u5bc6\u5c71" +}, { + "id": "CN101051104", + "cityEn": "jidong", + "cityZh": "\u9e21\u4e1c" +}, { + "id": "CN101051105", + "cityEn": "jiguan", + "cityZh": "\u9e21\u51a0" +}, { + "id": "CN101051106", + "cityEn": "hengshan", + "cityZh": "\u6052\u5c71" +}, { + "id": "CN101051107", + "cityEn": "didao", + "cityZh": "\u6ef4\u9053" +}, { + "id": "CN101051108", + "cityEn": "lishu", + "cityZh": "\u68a8\u6811" +}, { + "id": "CN101051109", + "cityEn": "chengzihe", + "cityZh": "\u57ce\u5b50\u6cb3" +}, { + "id": "CN101051110", + "cityEn": "mashan", + "cityZh": "\u9ebb\u5c71" +}, { + "id": "CN101051201", + "cityEn": "hegang", + "cityZh": "\u9e64\u5c97" +}, { + "id": "CN101051202", + "cityEn": "suibin", + "cityZh": "\u7ee5\u6ee8" +}, { + "id": "CN101051203", + "cityEn": "luobei", + "cityZh": "\u841d\u5317" +}, { + "id": "CN101051204", + "cityEn": "xiangyang", + "cityZh": "\u5411\u9633" +}, { + "id": "CN101051205", + "cityEn": "gongnong", + "cityZh": "\u5de5\u519c" +}, { + "id": "CN101051206", + "cityEn": "nanshan", + "cityZh": "\u5357\u5c71" +}, { + "id": "CN101051207", + "cityEn": "xingan", + "cityZh": "\u5174\u5b89" +}, { + "id": "CN101051208", + "cityEn": "dongshan", + "cityZh": "\u4e1c\u5c71" +}, { + "id": "CN101051209", + "cityEn": "xingshan", + "cityZh": "\u5174\u5c71" +}, { + "id": "CN101051301", + "cityEn": "shuangyashan", + "cityZh": "\u53cc\u9e2d\u5c71" +}, { + "id": "CN101051302", + "cityEn": "jixian", + "cityZh": "\u96c6\u8d24" +}, { + "id": "CN101051303", + "cityEn": "baoqing", + "cityZh": "\u5b9d\u6e05" +}, { + "id": "CN101051304", + "cityEn": "raohe", + "cityZh": "\u9976\u6cb3" +}, { + "id": "CN101051305", + "cityEn": "youyi", + "cityZh": "\u53cb\u8c0a" +}, { + "id": "CN101051306", + "cityEn": "jianshan", + "cityZh": "\u5c16\u5c71" +}, { + "id": "CN101051307", + "cityEn": "lingdong", + "cityZh": "\u5cad\u4e1c" +}, { + "id": "CN101051308", + "cityEn": "sifangtai", + "cityZh": "\u56db\u65b9\u53f0" +}, { + "id": "CN101051309", + "cityEn": "baoshan", + "cityZh": "\u5b9d\u5c71" +}, { + "id": "CN101060101", + "cityEn": "changchun", + "cityZh": "\u957f\u6625" +}, { + "id": "CN101060102", + "cityEn": "nongan", + "cityZh": "\u519c\u5b89" +}, { + "id": "CN101060103", + "cityEn": "dehui", + "cityZh": "\u5fb7\u60e0" +}, { + "id": "CN101060104", + "cityEn": "jiutai", + "cityZh": "\u4e5d\u53f0" +}, { + "id": "CN101060105", + "cityEn": "yushu", + "cityZh": "\u6986\u6811" +}, { + "id": "CN101060106", + "cityEn": "shuangyang", + "cityZh": "\u53cc\u9633" +}, { + "id": "CN101060107", + "cityEn": "erdao", + "cityZh": "\u4e8c\u9053" +}, { + "id": "CN101060108", + "cityEn": "nanguan", + "cityZh": "\u5357\u5173" +}, { + "id": "CN101060109", + "cityEn": "kuancheng", + "cityZh": "\u5bbd\u57ce" +}, { + "id": "CN101060110", + "cityEn": "chaoyang", + "cityZh": "\u671d\u9633" +}, { + "id": "CN101060111", + "cityEn": "lvyuan", + "cityZh": "\u7eff\u56ed" +}, { + "id": "CN101060201", + "cityEn": "jilin", + "cityZh": "\u5409\u6797" +}, { + "id": "CN101060202", + "cityEn": "shulan", + "cityZh": "\u8212\u5170" +}, { + "id": "CN101060203", + "cityEn": "yongji", + "cityZh": "\u6c38\u5409" +}, { + "id": "CN101060204", + "cityEn": "jiaohe", + "cityZh": "\u86df\u6cb3" +}, { + "id": "CN101060205", + "cityEn": "panshi", + "cityZh": "\u78d0\u77f3" +}, { + "id": "CN101060206", + "cityEn": "huadian", + "cityZh": "\u6866\u7538" +}, { + "id": "CN101060207", + "cityEn": "changyi", + "cityZh": "\u660c\u9091" +}, { + "id": "CN101060208", + "cityEn": "longtan", + "cityZh": "\u9f99\u6f6d" +}, { + "id": "CN101060209", + "cityEn": "chuanying", + "cityZh": "\u8239\u8425" +}, { + "id": "CN101060210", + "cityEn": "fengman", + "cityZh": "\u4e30\u6ee1" +}, { + "id": "CN101060301", + "cityEn": "yanji", + "cityZh": "\u5ef6\u5409" +}, { + "id": "CN101060302", + "cityEn": "dunhua", + "cityZh": "\u6566\u5316" +}, { + "id": "CN101060303", + "cityEn": "antu", + "cityZh": "\u5b89\u56fe" +}, { + "id": "CN101060304", + "cityEn": "wangqing", + "cityZh": "\u6c6a\u6e05" +}, { + "id": "CN101060305", + "cityEn": "helong", + "cityZh": "\u548c\u9f99" +}, { + "id": "CN101060306", + "cityEn": "yanbian", + "cityZh": "\u5ef6\u8fb9" +}, { + "id": "CN101060307", + "cityEn": "longjing", + "cityZh": "\u9f99\u4e95" +}, { + "id": "CN101060308", + "cityEn": "hunchun", + "cityZh": "\u73f2\u6625" +}, { + "id": "CN101060309", + "cityEn": "tumen", + "cityZh": "\u56fe\u4eec" +}, { + "id": "CN101060401", + "cityEn": "siping", + "cityZh": "\u56db\u5e73" +}, { + "id": "CN101060402", + "cityEn": "shuangliao", + "cityZh": "\u53cc\u8fbd" +}, { + "id": "CN101060403", + "cityEn": "lishu", + "cityZh": "\u68a8\u6811" +}, { + "id": "CN101060404", + "cityEn": "gongzhuling", + "cityZh": "\u516c\u4e3b\u5cad" +}, { + "id": "CN101060405", + "cityEn": "yitong", + "cityZh": "\u4f0a\u901a" +}, { + "id": "CN101060406", + "cityEn": "tiexi", + "cityZh": "\u94c1\u897f" +}, { + "id": "CN101060407", + "cityEn": "tiedong", + "cityZh": "\u94c1\u4e1c" +}, { + "id": "CN101060501", + "cityEn": "tonghua", + "cityZh": "\u901a\u5316" +}, { + "id": "CN101060502", + "cityEn": "meihekou", + "cityZh": "\u6885\u6cb3\u53e3" +}, { + "id": "CN101060503", + "cityEn": "liuhe", + "cityZh": "\u67f3\u6cb3" +}, { + "id": "CN101060504", + "cityEn": "huinan", + "cityZh": "\u8f89\u5357" +}, { + "id": "CN101060505", + "cityEn": "jian", + "cityZh": "\u96c6\u5b89" +}, { + "id": "CN101060506", + "cityEn": "tonghuaxian", + "cityZh": "\u901a\u5316\u53bf" +}, { + "id": "CN101060507", + "cityEn": "dongchang", + "cityZh": "\u4e1c\u660c" +}, { + "id": "CN101060508", + "cityEn": "erdaojiang", + "cityZh": "\u4e8c\u9053\u6c5f" +}, { + "id": "CN101060601", + "cityEn": "baicheng", + "cityZh": "\u767d\u57ce" +}, { + "id": "CN101060602", + "cityEn": "taonan", + "cityZh": "\u6d2e\u5357" +}, { + "id": "CN101060603", + "cityEn": "daan", + "cityZh": "\u5927\u5b89" +}, { + "id": "CN101060604", + "cityEn": "zhenlai", + "cityZh": "\u9547\u8d49" +}, { + "id": "CN101060605", + "cityEn": "tongyu", + "cityZh": "\u901a\u6986" +}, { + "id": "CN101060606", + "cityEn": "taobei", + "cityZh": "\u6d2e\u5317" +}, { + "id": "CN101060701", + "cityEn": "liaoyuan", + "cityZh": "\u8fbd\u6e90" +}, { + "id": "CN101060702", + "cityEn": "dongfeng", + "cityZh": "\u4e1c\u4e30" +}, { + "id": "CN101060703", + "cityEn": "dongliao", + "cityZh": "\u4e1c\u8fbd" +}, { + "id": "CN101060704", + "cityEn": "longshan", + "cityZh": "\u9f99\u5c71" +}, { + "id": "CN101060705", + "cityEn": "xian", + "cityZh": "\u897f\u5b89" +}, { + "id": "CN101060801", + "cityEn": "songyuan", + "cityZh": "\u677e\u539f" +}, { + "id": "CN101060802", + "cityEn": "qianan", + "cityZh": "\u4e7e\u5b89" +}, { + "id": "CN101060803", + "cityEn": "qianguo", + "cityZh": "\u524d\u90ed" +}, { + "id": "CN101060804", + "cityEn": "changling", + "cityZh": "\u957f\u5cad" +}, { + "id": "CN101060805", + "cityEn": "fuyu", + "cityZh": "\u6276\u4f59" +}, { + "id": "CN101060806", + "cityEn": "ningjiang", + "cityZh": "\u5b81\u6c5f" +}, { + "id": "CN101060901", + "cityEn": "baishan", + "cityZh": "\u767d\u5c71" +}, { + "id": "CN101060902", + "cityEn": "jingyu", + "cityZh": "\u9756\u5b87" +}, { + "id": "CN101060903", + "cityEn": "linjiang", + "cityZh": "\u4e34\u6c5f" +}, { + "id": "CN101060905", + "cityEn": "changbai", + "cityZh": "\u957f\u767d" +}, { + "id": "CN101060906", + "cityEn": "fusong", + "cityZh": "\u629a\u677e" +}, { + "id": "CN101060907", + "cityEn": "jiangyuan", + "cityZh": "\u6c5f\u6e90" +}, { + "id": "CN101060908", + "cityEn": "hunjiang", + "cityZh": "\u6d51\u6c5f" +}, { + "id": "CN101070101", + "cityEn": "shenyang", + "cityZh": "\u6c88\u9633" +}, { + "id": "CN101070102", + "cityEn": "hunnan", + "cityZh": "\u6d51\u5357" +}, { + "id": "CN101070103", + "cityEn": "liaozhong", + "cityZh": "\u8fbd\u4e2d" +}, { + "id": "CN101070104", + "cityEn": "kangping", + "cityZh": "\u5eb7\u5e73" +}, { + "id": "CN101070105", + "cityEn": "faku", + "cityZh": "\u6cd5\u5e93" +}, { + "id": "CN101070106", + "cityEn": "xinmin", + "cityZh": "\u65b0\u6c11" +}, { + "id": "CN101070107", + "cityEn": "heping", + "cityZh": "\u548c\u5e73" +}, { + "id": "CN101070108", + "cityEn": "shenhe", + "cityZh": "\u6c88\u6cb3" +}, { + "id": "CN101070109", + "cityEn": "dadong", + "cityZh": "\u5927\u4e1c" +}, { + "id": "CN101070110", + "cityEn": "huanggu", + "cityZh": "\u7687\u59d1" +}, { + "id": "CN101070111", + "cityEn": "tiexi", + "cityZh": "\u94c1\u897f" +}, { + "id": "CN101070112", + "cityEn": "sujiatun", + "cityZh": "\u82cf\u5bb6\u5c6f" +}, { + "id": "CN101070113", + "cityEn": "shenbeixinqu", + "cityZh": "\u6c88\u5317\u65b0\u533a" +}, { + "id": "CN101070114", + "cityEn": "yuhong", + "cityZh": "\u4e8e\u6d2a" +}, { + "id": "CN101070115", + "cityEn": "dongling", + "cityZh": "\u4e1c\u9675" +}, { + "id": "CN101070201", + "cityEn": "dalian", + "cityZh": "\u5927\u8fde" +}, { + "id": "CN101070202", + "cityEn": "wafangdian", + "cityZh": "\u74e6\u623f\u5e97" +}, { + "id": "CN101070203", + "cityEn": "jinzhou", + "cityZh": "\u91d1\u5dde" +}, { + "id": "CN101070204", + "cityEn": "pulandian", + "cityZh": "\u666e\u5170\u5e97" +}, { + "id": "CN101070205", + "cityEn": "lvshun", + "cityZh": "\u65c5\u987a" +}, { + "id": "CN101070206", + "cityEn": "changhai", + "cityZh": "\u957f\u6d77" +}, { + "id": "CN101070207", + "cityEn": "zhuanghe", + "cityZh": "\u5e84\u6cb3" +}, { + "id": "CN101070208", + "cityEn": "zhongshan", + "cityZh": "\u4e2d\u5c71" +}, { + "id": "CN101070209", + "cityEn": "xigang", + "cityZh": "\u897f\u5c97" +}, { + "id": "CN101070210", + "cityEn": "shahekou", + "cityZh": "\u6c99\u6cb3\u53e3" +}, { + "id": "CN101070211", + "cityEn": "ganjingzi", + "cityZh": "\u7518\u4e95\u5b50" +}, { + "id": "CN101070301", + "cityEn": "anshan", + "cityZh": "\u978d\u5c71" +}, { + "id": "CN101070302", + "cityEn": "taian", + "cityZh": "\u53f0\u5b89" +}, { + "id": "CN101070303", + "cityEn": "xiuyan", + "cityZh": "\u5cab\u5ca9" +}, { + "id": "CN101070304", + "cityEn": "haicheng", + "cityZh": "\u6d77\u57ce" +}, { + "id": "CN101070305", + "cityEn": "tiedong", + "cityZh": "\u94c1\u4e1c" +}, { + "id": "CN101070306", + "cityEn": "tiexi", + "cityZh": "\u94c1\u897f" +}, { + "id": "CN101070307", + "cityEn": "lishan", + "cityZh": "\u7acb\u5c71" +}, { + "id": "CN101070308", + "cityEn": "qianshan", + "cityZh": "\u5343\u5c71" +}, { + "id": "CN101070401", + "cityEn": "fushun", + "cityZh": "\u629a\u987a" +}, { + "id": "CN101070402", + "cityEn": "xinbin", + "cityZh": "\u65b0\u5bbe" +}, { + "id": "CN101070403", + "cityEn": "qingyuan", + "cityZh": "\u6e05\u539f" +}, { + "id": "CN101070405", + "cityEn": "xinfu", + "cityZh": "\u65b0\u629a" +}, { + "id": "CN101070406", + "cityEn": "dongzhou", + "cityZh": "\u4e1c\u6d32" +}, { + "id": "CN101070407", + "cityEn": "wanghua", + "cityZh": "\u671b\u82b1" +}, { + "id": "CN101070408", + "cityEn": "shuncheng", + "cityZh": "\u987a\u57ce" +}, { + "id": "CN101070501", + "cityEn": "benxi", + "cityZh": "\u672c\u6eaa" +}, { + "id": "CN101070502", + "cityEn": "benxixian", + "cityZh": "\u672c\u6eaa\u53bf" +}, { + "id": "CN101070503", + "cityEn": "pingshan", + "cityZh": "\u5e73\u5c71" +}, { + "id": "CN101070504", + "cityEn": "huanren", + "cityZh": "\u6853\u4ec1" +}, { + "id": "CN101070505", + "cityEn": "xihu", + "cityZh": "\u6eaa\u6e56" +}, { + "id": "CN101070506", + "cityEn": "mingshan", + "cityZh": "\u660e\u5c71" +}, { + "id": "CN101070507", + "cityEn": "nanfen", + "cityZh": "\u5357\u82ac" +}, { + "id": "CN101070601", + "cityEn": "dandong", + "cityZh": "\u4e39\u4e1c" +}, { + "id": "CN101070602", + "cityEn": "fengcheng", + "cityZh": "\u51e4\u57ce" +}, { + "id": "CN101070603", + "cityEn": "kuandian", + "cityZh": "\u5bbd\u7538" +}, { + "id": "CN101070604", + "cityEn": "donggang", + "cityZh": "\u4e1c\u6e2f" +}, { + "id": "CN101070605", + "cityEn": "yuanbao", + "cityZh": "\u5143\u5b9d" +}, { + "id": "CN101070606", + "cityEn": "zhenxing", + "cityZh": "\u632f\u5174" +}, { + "id": "CN101070607", + "cityEn": "zhenan", + "cityZh": "\u632f\u5b89" +}, { + "id": "CN101070701", + "cityEn": "jinzhou", + "cityZh": "\u9526\u5dde" +}, { + "id": "CN101070702", + "cityEn": "linghai", + "cityZh": "\u51cc\u6d77" +}, { + "id": "CN101070703", + "cityEn": "guta", + "cityZh": "\u53e4\u5854" +}, { + "id": "CN101070704", + "cityEn": "yixian", + "cityZh": "\u4e49\u53bf" +}, { + "id": "CN101070705", + "cityEn": "heishan", + "cityZh": "\u9ed1\u5c71" +}, { + "id": "CN101070706", + "cityEn": "beizhen", + "cityZh": "\u5317\u9547" +}, { + "id": "CN101070707", + "cityEn": "linghe", + "cityZh": "\u51cc\u6cb3" +}, { + "id": "CN101070708", + "cityEn": "taihe", + "cityZh": "\u592a\u548c" +}, { + "id": "CN101070801", + "cityEn": "yingkou", + "cityZh": "\u8425\u53e3" +}, { + "id": "CN101070802", + "cityEn": "dashiqiao", + "cityZh": "\u5927\u77f3\u6865" +}, { + "id": "CN101070803", + "cityEn": "gaizhou", + "cityZh": "\u76d6\u5dde" +}, { + "id": "CN101070804", + "cityEn": "zhanqian", + "cityZh": "\u7ad9\u524d" +}, { + "id": "CN101070805", + "cityEn": "xishi", + "cityZh": "\u897f\u5e02" +}, { + "id": "CN101070806", + "cityEn": "bayuquan", + "cityZh": "\u9c85\u9c7c\u5708" +}, { + "id": "CN101070807", + "cityEn": "laobian", + "cityZh": "\u8001\u8fb9" +}, { + "id": "CN101070901", + "cityEn": "fuxin", + "cityZh": "\u961c\u65b0" +}, { + "id": "CN101070902", + "cityEn": "zhangwu", + "cityZh": "\u5f70\u6b66" +}, { + "id": "CN101070903", + "cityEn": "haizhou", + "cityZh": "\u6d77\u5dde" +}, { + "id": "CN101070904", + "cityEn": "xinqiu", + "cityZh": "\u65b0\u90b1" +}, { + "id": "CN101070905", + "cityEn": "taiping", + "cityZh": "\u592a\u5e73" +}, { + "id": "CN101070906", + "cityEn": "qinghemen", + "cityZh": "\u6e05\u6cb3\u95e8" +}, { + "id": "CN101070907", + "cityEn": "xihe", + "cityZh": "\u7ec6\u6cb3" +}, { + "id": "CN101071001", + "cityEn": "liaoyang", + "cityZh": "\u8fbd\u9633" +}, { + "id": "CN101071002", + "cityEn": "liaoyangxian", + "cityZh": "\u8fbd\u9633\u53bf" +}, { + "id": "CN101071003", + "cityEn": "dengta", + "cityZh": "\u706f\u5854" +}, { + "id": "CN101071004", + "cityEn": "gongchangling", + "cityZh": "\u5f13\u957f\u5cad" +}, { + "id": "CN101071005", + "cityEn": "baita", + "cityZh": "\u767d\u5854" +}, { + "id": "CN101071006", + "cityEn": "wensheng", + "cityZh": "\u6587\u5723" +}, { + "id": "CN101071007", + "cityEn": "hongwei", + "cityZh": "\u5b8f\u4f1f" +}, { + "id": "CN101071008", + "cityEn": "taizihe", + "cityZh": "\u592a\u5b50\u6cb3" +}, { + "id": "CN101071101", + "cityEn": "tieling", + "cityZh": "\u94c1\u5cad" +}, { + "id": "CN101071102", + "cityEn": "kaiyuan", + "cityZh": "\u5f00\u539f" +}, { + "id": "CN101071103", + "cityEn": "changtu", + "cityZh": "\u660c\u56fe" +}, { + "id": "CN101071104", + "cityEn": "xifeng", + "cityZh": "\u897f\u4e30" +}, { + "id": "CN101071105", + "cityEn": "tiefa", + "cityZh": "\u8c03\u5175\u5c71" +}, { + "id": "CN101071106", + "cityEn": "yinzhou", + "cityZh": "\u94f6\u5dde" +}, { + "id": "CN101071107", + "cityEn": "qinghe", + "cityZh": "\u6e05\u6cb3" +}, { + "id": "CN101071201", + "cityEn": "chaoyang", + "cityZh": "\u671d\u9633" +}, { + "id": "CN101071202", + "cityEn": "shuangta", + "cityZh": "\u53cc\u5854" +}, { + "id": "CN101071203", + "cityEn": "lingyuan", + "cityZh": "\u51cc\u6e90" +}, { + "id": "CN101071204", + "cityEn": "kazuo", + "cityZh": "\u5580\u5de6" +}, { + "id": "CN101071205", + "cityEn": "beipiao", + "cityZh": "\u5317\u7968" +}, { + "id": "CN101071206", + "cityEn": "longcheng", + "cityZh": "\u9f99\u57ce" +}, { + "id": "CN101071207", + "cityEn": "jianpingxian", + "cityZh": "\u5efa\u5e73\u53bf" +}, { + "id": "CN101071301", + "cityEn": "panjin", + "cityZh": "\u76d8\u9526" +}, { + "id": "CN101071302", + "cityEn": "dawa", + "cityZh": "\u5927\u6d3c" +}, { + "id": "CN101071303", + "cityEn": "panshan", + "cityZh": "\u76d8\u5c71" +}, { + "id": "CN101071304", + "cityEn": "shuangtaizi", + "cityZh": "\u53cc\u53f0\u5b50" +}, { + "id": "CN101071305", + "cityEn": "xinglongtai", + "cityZh": "\u5174\u9686\u53f0" +}, { + "id": "CN101071401", + "cityEn": "huludao", + "cityZh": "\u846b\u82a6\u5c9b" +}, { + "id": "CN101071402", + "cityEn": "jianchang", + "cityZh": "\u5efa\u660c" +}, { + "id": "CN101071403", + "cityEn": "suizhong", + "cityZh": "\u7ee5\u4e2d" +}, { + "id": "CN101071404", + "cityEn": "xingcheng", + "cityZh": "\u5174\u57ce" +}, { + "id": "CN101071405", + "cityEn": "lianshan", + "cityZh": "\u8fde\u5c71" +}, { + "id": "CN101071406", + "cityEn": "longgang", + "cityZh": "\u9f99\u6e2f" +}, { + "id": "CN101071407", + "cityEn": "nanpiao", + "cityZh": "\u5357\u7968" +}, { + "id": "CN101080101", + "cityEn": "huhehaote", + "cityZh": "\u547c\u548c\u6d69\u7279" +}, { + "id": "CN101080102", + "cityEn": "tuzuoqi", + "cityZh": "\u571f\u5de6\u65d7" +}, { + "id": "CN101080103", + "cityEn": "tuoxian", + "cityZh": "\u6258\u53bf" +}, { + "id": "CN101080104", + "cityEn": "helin", + "cityZh": "\u548c\u6797" +}, { + "id": "CN101080105", + "cityEn": "qingshuihe", + "cityZh": "\u6e05\u6c34\u6cb3" +}, { + "id": "CN101080106", + "cityEn": "saihan", + "cityZh": "\u8d5b\u7f55" +}, { + "id": "CN101080107", + "cityEn": "wuchuan", + "cityZh": "\u6b66\u5ddd" +}, { + "id": "CN101080108", + "cityEn": "xincheng", + "cityZh": "\u65b0\u57ce" +}, { + "id": "CN101080109", + "cityEn": "huimin", + "cityZh": "\u56de\u6c11" +}, { + "id": "CN101080110", + "cityEn": "yuquan", + "cityZh": "\u7389\u6cc9" +}, { + "id": "CN101080201", + "cityEn": "baotou", + "cityZh": "\u5305\u5934" +}, { + "id": "CN101080202", + "cityEn": "baiyunebo", + "cityZh": "\u767d\u4e91\u9102\u535a" +}, { + "id": "CN101080204", + "cityEn": "tuyouqi", + "cityZh": "\u571f\u53f3\u65d7" +}, { + "id": "CN101080205", + "cityEn": "guyang", + "cityZh": "\u56fa\u9633" +}, { + "id": "CN101080206", + "cityEn": "damaoqi", + "cityZh": "\u8fbe\u8302\u65d7" +}, { + "id": "CN101080208", + "cityEn": "donghe", + "cityZh": "\u4e1c\u6cb3" +}, { + "id": "CN101080209", + "cityEn": "kundoulun", + "cityZh": "\u6606\u90fd\u4ed1" +}, { + "id": "CN101080210", + "cityEn": "qingshan", + "cityZh": "\u9752\u5c71" +}, { + "id": "CN101080211", + "cityEn": "shiguai", + "cityZh": "\u77f3\u62d0" +}, { + "id": "CN101080212", + "cityEn": "jiuyuan", + "cityZh": "\u4e5d\u539f" +}, { + "id": "CN101080301", + "cityEn": "wuhai", + "cityZh": "\u4e4c\u6d77" +}, { + "id": "CN101080302", + "cityEn": "haibowan", + "cityZh": "\u6d77\u52c3\u6e7e" +}, { + "id": "CN101080303", + "cityEn": "hainan", + "cityZh": "\u6d77\u5357" +}, { + "id": "CN101080304", + "cityEn": "wuda", + "cityZh": "\u4e4c\u8fbe" +}, { + "id": "CN101080401", + "cityEn": "jining", + "cityZh": "\u96c6\u5b81" +}, { + "id": "CN101080402", + "cityEn": "zhuozi", + "cityZh": "\u5353\u8d44" +}, { + "id": "CN101080403", + "cityEn": "huade", + "cityZh": "\u5316\u5fb7" +}, { + "id": "CN101080404", + "cityEn": "shangdu", + "cityZh": "\u5546\u90fd" +}, { + "id": "CN101080405", + "cityEn": "wulanchabu", + "cityZh": "\u4e4c\u5170\u5bdf\u5e03" +}, { + "id": "CN101080406", + "cityEn": "xinghe", + "cityZh": "\u5174\u548c" +}, { + "id": "CN101080407", + "cityEn": "liangcheng", + "cityZh": "\u51c9\u57ce" +}, { + "id": "CN101080408", + "cityEn": "chayouqianqi", + "cityZh": "\u5bdf\u53f3\u524d\u65d7" +}, { + "id": "CN101080409", + "cityEn": "chayouzhongqi", + "cityZh": "\u5bdf\u53f3\u4e2d\u65d7" +}, { + "id": "CN101080410", + "cityEn": "chayouhouqi", + "cityZh": "\u5bdf\u53f3\u540e\u65d7" +}, { + "id": "CN101080411", + "cityEn": "siziwangqi", + "cityZh": "\u56db\u5b50\u738b\u65d7" +}, { + "id": "CN101080412", + "cityEn": "fengzhen", + "cityZh": "\u4e30\u9547" +}, { + "id": "CN101080501", + "cityEn": "tongliao", + "cityZh": "\u901a\u8fbd" +}, { + "id": "CN101080503", + "cityEn": "kezuozhongqi", + "cityZh": "\u79d1\u5de6\u4e2d\u65d7" +}, { + "id": "CN101080504", + "cityEn": "kezuohouqi", + "cityZh": "\u79d1\u5de6\u540e\u65d7" +}, { + "id": "CN101080506", + "cityEn": "kailu", + "cityZh": "\u5f00\u9c81" +}, { + "id": "CN101080507", + "cityEn": "kulun", + "cityZh": "\u5e93\u4f26" +}, { + "id": "CN101080508", + "cityEn": "naiman", + "cityZh": "\u5948\u66fc" +}, { + "id": "CN101080509", + "cityEn": "zhalute", + "cityZh": "\u624e\u9c81\u7279" +}, { + "id": "CN101080510", + "cityEn": "keerqin", + "cityZh": "\u79d1\u5c14\u6c81" +}, { + "id": "CN101080512", + "cityEn": "huolinguole", + "cityZh": "\u970d\u6797\u90ed\u52d2" +}, { + "id": "CN101080601", + "cityEn": "chifeng", + "cityZh": "\u8d64\u5cf0" +}, { + "id": "CN101080602", + "cityEn": "hongshan", + "cityZh": "\u7ea2\u5c71" +}, { + "id": "CN101080603", + "cityEn": "aluqi", + "cityZh": "\u963f\u9c81\u65d7" +}, { + "id": "CN101080605", + "cityEn": "balinzuoqi", + "cityZh": "\u5df4\u6797\u5de6\u65d7" +}, { + "id": "CN101080606", + "cityEn": "balinyouqi", + "cityZh": "\u5df4\u6797\u53f3\u65d7" +}, { + "id": "CN101080607", + "cityEn": "linxi", + "cityZh": "\u6797\u897f" +}, { + "id": "CN101080608", + "cityEn": "keshiketeng", + "cityZh": "\u514b\u4ec0\u514b\u817e" +}, { + "id": "CN101080609", + "cityEn": "wengniute", + "cityZh": "\u7fc1\u725b\u7279" +}, { + "id": "CN101080611", + "cityEn": "kalaqin", + "cityZh": "\u5580\u5587\u6c81" +}, { + "id": "CN101080613", + "cityEn": "ningcheng", + "cityZh": "\u5b81\u57ce" +}, { + "id": "CN101080614", + "cityEn": "aohan", + "cityZh": "\u6556\u6c49" +}, { + "id": "CN101080616", + "cityEn": "yuanbaoshan", + "cityZh": "\u5143\u5b9d\u5c71" +}, { + "id": "CN101080617", + "cityEn": "songshan", + "cityZh": "\u677e\u5c71" +}, { + "id": "CN101080701", + "cityEn": "eerduosi", + "cityZh": "\u9102\u5c14\u591a\u65af" +}, { + "id": "CN101080703", + "cityEn": "dalate", + "cityZh": "\u8fbe\u62c9\u7279" +}, { + "id": "CN101080704", + "cityEn": "zhungeer", + "cityZh": "\u51c6\u683c\u5c14" +}, { + "id": "CN101080705", + "cityEn": "eqianqi", + "cityZh": "\u9102\u524d\u65d7" +}, { + "id": "CN101080708", + "cityEn": "etuoke", + "cityZh": "\u9102\u6258\u514b" +}, { + "id": "CN101080709", + "cityEn": "hangjinqi", + "cityZh": "\u676d\u9526\u65d7" +}, { + "id": "CN101080710", + "cityEn": "wushenqi", + "cityZh": "\u4e4c\u5ba1\u65d7" +}, { + "id": "CN101080711", + "cityEn": "yijinhuoluo", + "cityZh": "\u4f0a\u91d1\u970d\u6d1b" +}, { + "id": "CN101080713", + "cityEn": "dongsheng", + "cityZh": "\u4e1c\u80dc" +}, { + "id": "CN101080801", + "cityEn": "linhe", + "cityZh": "\u4e34\u6cb3" +}, { + "id": "CN101080802", + "cityEn": "wuyuan", + "cityZh": "\u4e94\u539f" +}, { + "id": "CN101080803", + "cityEn": "dengkou", + "cityZh": "\u78f4\u53e3" +}, { + "id": "CN101080804", + "cityEn": "wuqianqi", + "cityZh": "\u4e4c\u524d\u65d7" +}, { + "id": "CN101080806", + "cityEn": "wuzhongqi", + "cityZh": "\u4e4c\u4e2d\u65d7" +}, { + "id": "CN101080807", + "cityEn": "wuhouqi", + "cityZh": "\u4e4c\u540e\u65d7" +}, { + "id": "CN101080810", + "cityEn": "hangjinhouqi", + "cityZh": "\u676d\u9526\u540e\u65d7" +}, { + "id": "CN101080811", + "cityEn": "bayannaoer", + "cityZh": "\u5df4\u5f66\u6dd6\u5c14" +}, { + "id": "CN101080901", + "cityEn": "xilinhaote", + "cityZh": "\u9521\u6797\u6d69\u7279" +}, { + "id": "CN101080902", + "cityEn": "xilinguole", + "cityZh": "\u9521\u6797\u90ed\u52d2" +}, { + "id": "CN101080903", + "cityEn": "erlianhaote", + "cityZh": "\u4e8c\u8fde\u6d69\u7279" +}, { + "id": "CN101080904", + "cityEn": "abaga", + "cityZh": "\u963f\u5df4\u560e" +}, { + "id": "CN101080906", + "cityEn": "suzuoqi", + "cityZh": "\u82cf\u5de6\u65d7" +}, { + "id": "CN101080907", + "cityEn": "suyouqi", + "cityZh": "\u82cf\u53f3\u65d7" +}, { + "id": "CN101080909", + "cityEn": "dongwuqi", + "cityZh": "\u4e1c\u4e4c\u65d7" +}, { + "id": "CN101080910", + "cityEn": "xiwuqi", + "cityZh": "\u897f\u4e4c\u65d7" +}, { + "id": "CN101080911", + "cityEn": "taipusiqi", + "cityZh": "\u592a\u4ec6\u5bfa" +}, { + "id": "CN101080912", + "cityEn": "xianghuang", + "cityZh": "\u9576\u9ec4\u65d7" +}, { + "id": "CN101080913", + "cityEn": "zhengxiangbaiqi", + "cityZh": "\u6b63\u9576\u767d\u65d7" +}, { + "id": "CN101080914", + "cityEn": "zhenglanqi", + "cityZh": "\u6b63\u84dd\u65d7" +}, { + "id": "CN101080915", + "cityEn": "duolun", + "cityZh": "\u591a\u4f26" +}, { + "id": "CN101081001", + "cityEn": "hailaer", + "cityZh": "\u6d77\u62c9\u5c14" +}, { + "id": "CN101081003", + "cityEn": "arongqi", + "cityZh": "\u963f\u8363\u65d7" +}, { + "id": "CN101081004", + "cityEn": "molidawa", + "cityZh": "\u83ab\u529b\u8fbe\u74e6" +}, { + "id": "CN101081005", + "cityEn": "elunchunqi", + "cityZh": "\u9102\u4f26\u6625\u65d7" +}, { + "id": "CN101081006", + "cityEn": "ewenkeqi", + "cityZh": "\u9102\u6e29\u514b\u65d7" +}, { + "id": "CN101081007", + "cityEn": "chenqi", + "cityZh": "\u9648\u65d7" +}, { + "id": "CN101081008", + "cityEn": "xinzuoqi", + "cityZh": "\u65b0\u5de6\u65d7" +}, { + "id": "CN101081009", + "cityEn": "xinyouqi", + "cityZh": "\u65b0\u53f3\u65d7" +}, { + "id": "CN101081010", + "cityEn": "manzhouli", + "cityZh": "\u6ee1\u6d32\u91cc" +}, { + "id": "CN101081011", + "cityEn": "yakeshi", + "cityZh": "\u7259\u514b\u77f3" +}, { + "id": "CN101081012", + "cityEn": "zhalantun", + "cityZh": "\u624e\u5170\u5c6f" +}, { + "id": "CN101081013", + "cityEn": "hulunbeier", + "cityZh": "\u547c\u4f26\u8d1d\u5c14" +}, { + "id": "CN101081014", + "cityEn": "eerguna", + "cityZh": "\u989d\u5c14\u53e4\u7eb3" +}, { + "id": "CN101081015", + "cityEn": "genhe", + "cityZh": "\u6839\u6cb3" +}, { + "id": "CN101081017", + "cityEn": "zhalainuoer", + "cityZh": "\u624e\u8d49\u8bfa\u5c14" +}, { + "id": "CN101081101", + "cityEn": "wulanhaote", + "cityZh": "\u4e4c\u5170\u6d69\u7279" +}, { + "id": "CN101081102", + "cityEn": "aershan", + "cityZh": "\u963f\u5c14\u5c71" +}, { + "id": "CN101081103", + "cityEn": "keyouzhongqi", + "cityZh": "\u79d1\u53f3\u4e2d\u65d7" +}, { + "id": "CN101081105", + "cityEn": "zhanlaite", + "cityZh": "\u624e\u8d49\u7279" +}, { + "id": "CN101081107", + "cityEn": "tuquan", + "cityZh": "\u7a81\u6cc9" +}, { + "id": "CN101081108", + "cityEn": "xinganmeng", + "cityZh": "\u5174\u5b89\u76df" +}, { + "id": "CN101081109", + "cityEn": "keyouqianqi", + "cityZh": "\u79d1\u53f3\u524d\u65d7" +}, { + "id": "CN101081201", + "cityEn": "azuoqi", + "cityZh": "\u963f\u5de6\u65d7" +}, { + "id": "CN101081202", + "cityEn": "ayouqi", + "cityZh": "\u963f\u53f3\u65d7" +}, { + "id": "CN101081203", + "cityEn": "ejina", + "cityZh": "\u989d\u6d4e\u7eb3" +}, { + "id": "CN101081213", + "cityEn": "alashanmeng", + "cityZh": "\u963f\u62c9\u5584\u76df" +}, { + "id": "CN101090101", + "cityEn": "shijiazhuang", + "cityZh": "\u77f3\u5bb6\u5e84" +}, { + "id": "CN101090102", + "cityEn": "jingxing", + "cityZh": "\u4e95\u9649" +}, { + "id": "CN101090103", + "cityEn": "zhengding", + "cityZh": "\u6b63\u5b9a" +}, { + "id": "CN101090104", + "cityEn": "luancheng", + "cityZh": "\u683e\u57ce" +}, { + "id": "CN101090105", + "cityEn": "xingtang", + "cityZh": "\u884c\u5510" +}, { + "id": "CN101090106", + "cityEn": "lingshou", + "cityZh": "\u7075\u5bff" +}, { + "id": "CN101090107", + "cityEn": "gaoyi", + "cityZh": "\u9ad8\u9091" +}, { + "id": "CN101090108", + "cityEn": "shenze", + "cityZh": "\u6df1\u6cfd" +}, { + "id": "CN101090109", + "cityEn": "zanhuang", + "cityZh": "\u8d5e\u7687" +}, { + "id": "CN101090110", + "cityEn": "wuji", + "cityZh": "\u65e0\u6781" +}, { + "id": "CN101090111", + "cityEn": "pingshan", + "cityZh": "\u5e73\u5c71" +}, { + "id": "CN101090112", + "cityEn": "yuanshi", + "cityZh": "\u5143\u6c0f" +}, { + "id": "CN101090113", + "cityEn": "zhaoxian", + "cityZh": "\u8d75\u53bf" +}, { + "id": "CN101090114", + "cityEn": "xinji", + "cityZh": "\u8f9b\u96c6" +}, { + "id": "CN101090115", + "cityEn": "gaocheng", + "cityZh": "\u85c1\u57ce" +}, { + "id": "CN101090116", + "cityEn": "jinzhou", + "cityZh": "\u664b\u5dde" +}, { + "id": "CN101090117", + "cityEn": "xinle", + "cityZh": "\u65b0\u4e50" +}, { + "id": "CN101090118", + "cityEn": "luquan", + "cityZh": "\u9e7f\u6cc9" +}, { + "id": "CN101090119", + "cityEn": "changan", + "cityZh": "\u957f\u5b89" +}, { + "id": "CN101090120", + "cityEn": "qiaoxi", + "cityZh": "\u6865\u897f" +}, { + "id": "CN101090121", + "cityEn": "xinhua", + "cityZh": "\u65b0\u534e" +}, { + "id": "CN101090122", + "cityEn": "jingxingkuangqu", + "cityZh": "\u4e95\u9649\u77ff\u533a" +}, { + "id": "CN101090123", + "cityEn": "yuhua", + "cityZh": "\u88d5\u534e" +}, { + "id": "CN101090201", + "cityEn": "baoding", + "cityZh": "\u4fdd\u5b9a" +}, { + "id": "CN101090202", + "cityEn": "mancheng", + "cityZh": "\u6ee1\u57ce" +}, { + "id": "CN101090203", + "cityEn": "fuping", + "cityZh": "\u961c\u5e73" +}, { + "id": "CN101090204", + "cityEn": "xushui", + "cityZh": "\u5f90\u6c34" +}, { + "id": "CN101090205", + "cityEn": "tangxian", + "cityZh": "\u5510\u53bf" +}, { + "id": "CN101090206", + "cityEn": "gaoyang", + "cityZh": "\u9ad8\u9633" +}, { + "id": "CN101090207", + "cityEn": "rongcheng", + "cityZh": "\u5bb9\u57ce" +}, { + "id": "CN101090208", + "cityEn": "jingxiu", + "cityZh": "\u7ade\u79c0" +}, { + "id": "CN101090209", + "cityEn": "laiyuan", + "cityZh": "\u6d9e\u6e90" +}, { + "id": "CN101090210", + "cityEn": "wangdu", + "cityZh": "\u671b\u90fd" +}, { + "id": "CN101090211", + "cityEn": "anxin", + "cityZh": "\u5b89\u65b0" +}, { + "id": "CN101090212", + "cityEn": "yixian", + "cityZh": "\u6613\u53bf" +}, { + "id": "CN101090213", + "cityEn": "lianchi", + "cityZh": "\u83b2\u6c60" +}, { + "id": "CN101090214", + "cityEn": "quyang", + "cityZh": "\u66f2\u9633" +}, { + "id": "CN101090215", + "cityEn": "lixian", + "cityZh": "\u8821\u53bf" +}, { + "id": "CN101090216", + "cityEn": "shunping", + "cityZh": "\u987a\u5e73" +}, { + "id": "CN101090217", + "cityEn": "xiongxian", + "cityZh": "\u96c4\u53bf" +}, { + "id": "CN101090218", + "cityEn": "zhuozhou", + "cityZh": "\u6dbf\u5dde" +}, { + "id": "CN101090219", + "cityEn": "dingzhou", + "cityZh": "\u5b9a\u5dde" +}, { + "id": "CN101090220", + "cityEn": "anguo", + "cityZh": "\u5b89\u56fd" +}, { + "id": "CN101090221", + "cityEn": "gaobeidian", + "cityZh": "\u9ad8\u7891\u5e97" +}, { + "id": "CN101090222", + "cityEn": "laishui", + "cityZh": "\u6d9e\u6c34" +}, { + "id": "CN101090223", + "cityEn": "dingxing", + "cityZh": "\u5b9a\u5174" +}, { + "id": "CN101090224", + "cityEn": "qingyuan", + "cityZh": "\u6e05\u82d1" +}, { + "id": "CN101090225", + "cityEn": "boye", + "cityZh": "\u535a\u91ce" +}, { + "id": "CN101090226", + "cityEn": "nanshi", + "cityZh": "\u5357\u5e02" +}, { + "id": "CN101090301", + "cityEn": "zhangjiakou", + "cityZh": "\u5f20\u5bb6\u53e3" +}, { + "id": "CN101090302", + "cityEn": "xuanhua", + "cityZh": "\u5ba3\u5316" +}, { + "id": "CN101090303", + "cityEn": "zhangbei", + "cityZh": "\u5f20\u5317" +}, { + "id": "CN101090304", + "cityEn": "kangbao", + "cityZh": "\u5eb7\u4fdd" +}, { + "id": "CN101090305", + "cityEn": "guyuan", + "cityZh": "\u6cbd\u6e90" +}, { + "id": "CN101090306", + "cityEn": "shangyi", + "cityZh": "\u5c1a\u4e49" +}, { + "id": "CN101090307", + "cityEn": "yuxian", + "cityZh": "\u851a\u53bf" +}, { + "id": "CN101090308", + "cityEn": "yangyuan", + "cityZh": "\u9633\u539f" +}, { + "id": "CN101090309", + "cityEn": "huaian", + "cityZh": "\u6000\u5b89" +}, { + "id": "CN101090310", + "cityEn": "wanquan", + "cityZh": "\u4e07\u5168" +}, { + "id": "CN101090311", + "cityEn": "huailai", + "cityZh": "\u6000\u6765" +}, { + "id": "CN101090312", + "cityEn": "zhuolu", + "cityZh": "\u6dbf\u9e7f" +}, { + "id": "CN101090313", + "cityEn": "chicheng", + "cityZh": "\u8d64\u57ce" +}, { + "id": "CN101090314", + "cityEn": "chongli", + "cityZh": "\u5d07\u793c" +}, { + "id": "CN101090315", + "cityEn": "qiaodong", + "cityZh": "\u6865\u4e1c" +}, { + "id": "CN101090316", + "cityEn": "qiaoxi", + "cityZh": "\u6865\u897f" +}, { + "id": "CN101090317", + "cityEn": "xiahuayuan", + "cityZh": "\u4e0b\u82b1\u56ed" +}, { + "id": "CN101090401", + "cityEn": "shuangqiao", + "cityZh": "\u53cc\u6865" +}, { + "id": "CN101090402", + "cityEn": "chengde", + "cityZh": "\u627f\u5fb7" +}, { + "id": "CN101090403", + "cityEn": "chengdexian", + "cityZh": "\u627f\u5fb7\u53bf" +}, { + "id": "CN101090404", + "cityEn": "xinglong", + "cityZh": "\u5174\u9686" +}, { + "id": "CN101090405", + "cityEn": "pingquan", + "cityZh": "\u5e73\u6cc9" +}, { + "id": "CN101090406", + "cityEn": "luanping", + "cityZh": "\u6ee6\u5e73" +}, { + "id": "CN101090407", + "cityEn": "longhua", + "cityZh": "\u9686\u5316" +}, { + "id": "CN101090408", + "cityEn": "fengning", + "cityZh": "\u4e30\u5b81" +}, { + "id": "CN101090409", + "cityEn": "kuancheng", + "cityZh": "\u5bbd\u57ce" +}, { + "id": "CN101090410", + "cityEn": "weichang", + "cityZh": "\u56f4\u573a" +}, { + "id": "CN101090411", + "cityEn": "shuangluan", + "cityZh": "\u53cc\u6ee6" +}, { + "id": "CN101090412", + "cityEn": "yingshouyingzikuang", + "cityZh": "\u9e70\u624b\u8425\u5b50\u77ff" +}, { + "id": "CN101090501", + "cityEn": "tangshan", + "cityZh": "\u5510\u5c71" +}, { + "id": "CN101090502", + "cityEn": "fengnan", + "cityZh": "\u4e30\u5357" +}, { + "id": "CN101090503", + "cityEn": "fengrun", + "cityZh": "\u4e30\u6da6" +}, { + "id": "CN101090504", + "cityEn": "luanxian", + "cityZh": "\u6ee6\u53bf" +}, { + "id": "CN101090505", + "cityEn": "luannan", + "cityZh": "\u6ee6\u5357" +}, { + "id": "CN101090506", + "cityEn": "leting", + "cityZh": "\u4e50\u4ead" +}, { + "id": "CN101090507", + "cityEn": "qianxi", + "cityZh": "\u8fc1\u897f" +}, { + "id": "CN101090508", + "cityEn": "yutian", + "cityZh": "\u7389\u7530" +}, { + "id": "CN101090509", + "cityEn": "caofeidian", + "cityZh": "\u66f9\u5983\u7538" +}, { + "id": "CN101090510", + "cityEn": "zunhua", + "cityZh": "\u9075\u5316" +}, { + "id": "CN101090511", + "cityEn": "qianan", + "cityZh": "\u8fc1\u5b89" +}, { + "id": "CN101090513", + "cityEn": "lunan", + "cityZh": "\u8def\u5357" +}, { + "id": "CN101090514", + "cityEn": "lubei", + "cityZh": "\u8def\u5317" +}, { + "id": "CN101090515", + "cityEn": "guye", + "cityZh": "\u53e4\u51b6" +}, { + "id": "CN101090516", + "cityEn": "kaiping", + "cityZh": "\u5f00\u5e73" +}, { + "id": "CN101090601", + "cityEn": "langfang", + "cityZh": "\u5eca\u574a" +}, { + "id": "CN101090602", + "cityEn": "guan", + "cityZh": "\u56fa\u5b89" +}, { + "id": "CN101090603", + "cityEn": "yongqing", + "cityZh": "\u6c38\u6e05" +}, { + "id": "CN101090604", + "cityEn": "xianghe", + "cityZh": "\u9999\u6cb3" +}, { + "id": "CN101090605", + "cityEn": "dacheng", + "cityZh": "\u5927\u57ce" +}, { + "id": "CN101090606", + "cityEn": "wenan", + "cityZh": "\u6587\u5b89" +}, { + "id": "CN101090607", + "cityEn": "dachang", + "cityZh": "\u5927\u5382" +}, { + "id": "CN101090608", + "cityEn": "bazhou", + "cityZh": "\u9738\u5dde" +}, { + "id": "CN101090609", + "cityEn": "sanhe", + "cityZh": "\u4e09\u6cb3" +}, { + "id": "CN101090610", + "cityEn": "anci", + "cityZh": "\u5b89\u6b21" +}, { + "id": "CN101090611", + "cityEn": "guangyang", + "cityZh": "\u5e7f\u9633" +}, { + "id": "CN101090701", + "cityEn": "cangzhou", + "cityZh": "\u6ca7\u5dde" +}, { + "id": "CN101090702", + "cityEn": "qingxian", + "cityZh": "\u9752\u53bf" +}, { + "id": "CN101090703", + "cityEn": "dongguang", + "cityZh": "\u4e1c\u5149" +}, { + "id": "CN101090704", + "cityEn": "haixing", + "cityZh": "\u6d77\u5174" +}, { + "id": "CN101090705", + "cityEn": "yanshan", + "cityZh": "\u76d0\u5c71" +}, { + "id": "CN101090706", + "cityEn": "suning", + "cityZh": "\u8083\u5b81" +}, { + "id": "CN101090707", + "cityEn": "nanpi", + "cityZh": "\u5357\u76ae" +}, { + "id": "CN101090708", + "cityEn": "wuqiao", + "cityZh": "\u5434\u6865" +}, { + "id": "CN101090709", + "cityEn": "xianxian", + "cityZh": "\u732e\u53bf" +}, { + "id": "CN101090710", + "cityEn": "mengcun", + "cityZh": "\u5b5f\u6751" +}, { + "id": "CN101090711", + "cityEn": "botou", + "cityZh": "\u6cca\u5934" +}, { + "id": "CN101090712", + "cityEn": "renqiu", + "cityZh": "\u4efb\u4e18" +}, { + "id": "CN101090713", + "cityEn": "huanghua", + "cityZh": "\u9ec4\u9a85" +}, { + "id": "CN101090714", + "cityEn": "hejian", + "cityZh": "\u6cb3\u95f4" +}, { + "id": "CN101090715", + "cityEn": "xinhua", + "cityZh": "\u65b0\u534e" +}, { + "id": "CN101090716", + "cityEn": "cangxian", + "cityZh": "\u6ca7\u53bf" +}, { + "id": "CN101090717", + "cityEn": "yunhe", + "cityZh": "\u8fd0\u6cb3" +}, { + "id": "CN101090801", + "cityEn": "hengshui", + "cityZh": "\u8861\u6c34" +}, { + "id": "CN101090802", + "cityEn": "zaoqiang", + "cityZh": "\u67a3\u5f3a" +}, { + "id": "CN101090803", + "cityEn": "wuyi", + "cityZh": "\u6b66\u9091" +}, { + "id": "CN101090804", + "cityEn": "wuqiang", + "cityZh": "\u6b66\u5f3a" +}, { + "id": "CN101090805", + "cityEn": "raoyang", + "cityZh": "\u9976\u9633" +}, { + "id": "CN101090806", + "cityEn": "anping", + "cityZh": "\u5b89\u5e73" +}, { + "id": "CN101090807", + "cityEn": "gucheng", + "cityZh": "\u6545\u57ce" +}, { + "id": "CN101090808", + "cityEn": "jingxian", + "cityZh": "\u666f\u53bf" +}, { + "id": "CN101090809", + "cityEn": "fucheng", + "cityZh": "\u961c\u57ce" +}, { + "id": "CN101090810", + "cityEn": "jizhou", + "cityZh": "\u5180\u5dde" +}, { + "id": "CN101090811", + "cityEn": "shenzhou", + "cityZh": "\u6df1\u5dde" +}, { + "id": "CN101090812", + "cityEn": "taocheng", + "cityZh": "\u6843\u57ce" +}, { + "id": "CN101090901", + "cityEn": "xingtai", + "cityZh": "\u90a2\u53f0" +}, { + "id": "CN101090902", + "cityEn": "lincheng", + "cityZh": "\u4e34\u57ce" +}, { + "id": "CN101090903", + "cityEn": "qiaodong", + "cityZh": "\u6865\u4e1c" +}, { + "id": "CN101090904", + "cityEn": "neiqiu", + "cityZh": "\u5185\u4e18" +}, { + "id": "CN101090905", + "cityEn": "baixiang", + "cityZh": "\u67cf\u4e61" +}, { + "id": "CN101090906", + "cityEn": "longyao", + "cityZh": "\u9686\u5c27" +}, { + "id": "CN101090907", + "cityEn": "nanhe", + "cityZh": "\u5357\u548c" +}, { + "id": "CN101090908", + "cityEn": "ningjin", + "cityZh": "\u5b81\u664b" +}, { + "id": "CN101090909", + "cityEn": "julu", + "cityZh": "\u5de8\u9e7f" +}, { + "id": "CN101090910", + "cityEn": "xinhe", + "cityZh": "\u65b0\u6cb3" +}, { + "id": "CN101090911", + "cityEn": "guangzong", + "cityZh": "\u5e7f\u5b97" +}, { + "id": "CN101090912", + "cityEn": "pingxiang", + "cityZh": "\u5e73\u4e61" +}, { + "id": "CN101090913", + "cityEn": "weixian", + "cityZh": "\u5a01\u53bf" +}, { + "id": "CN101090914", + "cityEn": "qinghe", + "cityZh": "\u6e05\u6cb3" +}, { + "id": "CN101090915", + "cityEn": "linxi", + "cityZh": "\u4e34\u897f" +}, { + "id": "CN101090916", + "cityEn": "nangong", + "cityZh": "\u5357\u5bab" +}, { + "id": "CN101090917", + "cityEn": "shahe", + "cityZh": "\u6c99\u6cb3" +}, { + "id": "CN101090918", + "cityEn": "renxian", + "cityZh": "\u4efb\u53bf" +}, { + "id": "CN101090919", + "cityEn": "qiaoxi", + "cityZh": "\u6865\u897f" +}, { + "id": "CN101091001", + "cityEn": "handan", + "cityZh": "\u90af\u90f8" +}, { + "id": "CN101091002", + "cityEn": "fengfeng", + "cityZh": "\u5cf0\u5cf0" +}, { + "id": "CN101091003", + "cityEn": "linzhang", + "cityZh": "\u4e34\u6f33" +}, { + "id": "CN101091004", + "cityEn": "chengan", + "cityZh": "\u6210\u5b89" +}, { + "id": "CN101091005", + "cityEn": "daming", + "cityZh": "\u5927\u540d" +}, { + "id": "CN101091006", + "cityEn": "shexian", + "cityZh": "\u6d89\u53bf" +}, { + "id": "CN101091007", + "cityEn": "cixian", + "cityZh": "\u78c1\u53bf" +}, { + "id": "CN101091008", + "cityEn": "feixiang", + "cityZh": "\u80a5\u4e61" +}, { + "id": "CN101091009", + "cityEn": "yongnian", + "cityZh": "\u6c38\u5e74" +}, { + "id": "CN101091010", + "cityEn": "qiuxian", + "cityZh": "\u90b1\u53bf" +}, { + "id": "CN101091011", + "cityEn": "jize", + "cityZh": "\u9e21\u6cfd" +}, { + "id": "CN101091012", + "cityEn": "guangping", + "cityZh": "\u5e7f\u5e73" +}, { + "id": "CN101091013", + "cityEn": "guantao", + "cityZh": "\u9986\u9676" +}, { + "id": "CN101091014", + "cityEn": "weixian", + "cityZh": "\u9b4f\u53bf" +}, { + "id": "CN101091015", + "cityEn": "quzhou", + "cityZh": "\u66f2\u5468" +}, { + "id": "CN101091016", + "cityEn": "wuan", + "cityZh": "\u6b66\u5b89" +}, { + "id": "CN101091017", + "cityEn": "hanshan", + "cityZh": "\u90af\u5c71" +}, { + "id": "CN101091018", + "cityEn": "congtai", + "cityZh": "\u4e1b\u53f0" +}, { + "id": "CN101091019", + "cityEn": "fuxing", + "cityZh": "\u590d\u5174" +}, { + "id": "CN101091101", + "cityEn": "qinhuangdao", + "cityZh": "\u79e6\u7687\u5c9b" +}, { + "id": "CN101091102", + "cityEn": "qinglong", + "cityZh": "\u9752\u9f99" +}, { + "id": "CN101091103", + "cityEn": "changli", + "cityZh": "\u660c\u9ece" +}, { + "id": "CN101091104", + "cityEn": "funing", + "cityZh": "\u629a\u5b81" +}, { + "id": "CN101091105", + "cityEn": "lulong", + "cityZh": "\u5362\u9f99" +}, { + "id": "CN101091106", + "cityEn": "beidaihe", + "cityZh": "\u5317\u6234\u6cb3" +}, { + "id": "CN101091107", + "cityEn": "haigang", + "cityZh": "\u6d77\u6e2f" +}, { + "id": "CN101091108", + "cityEn": "shanhaiguan", + "cityZh": "\u5c71\u6d77\u5173" +}, { + "id": "CN101100101", + "cityEn": "taiyuan", + "cityZh": "\u592a\u539f" +}, { + "id": "CN101100102", + "cityEn": "qingxu", + "cityZh": "\u6e05\u5f90" +}, { + "id": "CN101100103", + "cityEn": "yangqu", + "cityZh": "\u9633\u66f2" +}, { + "id": "CN101100104", + "cityEn": "loufan", + "cityZh": "\u5a04\u70e6" +}, { + "id": "CN101100105", + "cityEn": "gujiao", + "cityZh": "\u53e4\u4ea4" +}, { + "id": "CN101100106", + "cityEn": "jiancaopingqu", + "cityZh": "\u5c16\u8349\u576a\u533a" +}, { + "id": "CN101100107", + "cityEn": "xiaodianqu", + "cityZh": "\u5c0f\u5e97\u533a" +}, { + "id": "CN101100108", + "cityEn": "yingze", + "cityZh": "\u8fce\u6cfd" +}, { + "id": "CN101100109", + "cityEn": "xinghualing", + "cityZh": "\u674f\u82b1\u5cad" +}, { + "id": "CN101100110", + "cityEn": "wanbailin", + "cityZh": "\u4e07\u67cf\u6797" +}, { + "id": "CN101100111", + "cityEn": "jinyuan", + "cityZh": "\u664b\u6e90" +}, { + "id": "CN101100201", + "cityEn": "datong", + "cityZh": "\u5927\u540c" +}, { + "id": "CN101100202", + "cityEn": "yanggao", + "cityZh": "\u9633\u9ad8" +}, { + "id": "CN101100203", + "cityEn": "datongxian", + "cityZh": "\u5927\u540c\u53bf" +}, { + "id": "CN101100204", + "cityEn": "tianzhen", + "cityZh": "\u5929\u9547" +}, { + "id": "CN101100205", + "cityEn": "guangling", + "cityZh": "\u5e7f\u7075" +}, { + "id": "CN101100206", + "cityEn": "lingqiu", + "cityZh": "\u7075\u4e18" +}, { + "id": "CN101100207", + "cityEn": "hunyuan", + "cityZh": "\u6d51\u6e90" +}, { + "id": "CN101100208", + "cityEn": "zuoyun", + "cityZh": "\u5de6\u4e91" +}, { + "id": "CN101100209", + "cityEn": "kuangqu", + "cityZh": "\u77ff\u533a" +}, { + "id": "CN101100210", + "cityEn": "nanjiao", + "cityZh": "\u5357\u90ca" +}, { + "id": "CN101100211", + "cityEn": "xinrong", + "cityZh": "\u65b0\u8363" +}, { + "id": "CN101100301", + "cityEn": "yangquan", + "cityZh": "\u9633\u6cc9" +}, { + "id": "CN101100302", + "cityEn": "yuxian", + "cityZh": "\u76c2\u53bf" +}, { + "id": "CN101100303", + "cityEn": "pingding", + "cityZh": "\u5e73\u5b9a" +}, { + "id": "CN101100304", + "cityEn": "kuangqu", + "cityZh": "\u77ff\u533a" +}, { + "id": "CN101100305", + "cityEn": "jiaoqu", + "cityZh": "\u90ca\u533a" +}, { + "id": "CN101100401", + "cityEn": "jinzhong", + "cityZh": "\u664b\u4e2d" +}, { + "id": "CN101100402", + "cityEn": "yuci", + "cityZh": "\u6986\u6b21" +}, { + "id": "CN101100403", + "cityEn": "yushe", + "cityZh": "\u6986\u793e" +}, { + "id": "CN101100404", + "cityEn": "zuoquan", + "cityZh": "\u5de6\u6743" +}, { + "id": "CN101100405", + "cityEn": "heshun", + "cityZh": "\u548c\u987a" +}, { + "id": "CN101100406", + "cityEn": "xiyang", + "cityZh": "\u6614\u9633" +}, { + "id": "CN101100407", + "cityEn": "shouyang", + "cityZh": "\u5bff\u9633" +}, { + "id": "CN101100408", + "cityEn": "taigu", + "cityZh": "\u592a\u8c37" +}, { + "id": "CN101100409", + "cityEn": "qixian", + "cityZh": "\u7941\u53bf" +}, { + "id": "CN101100410", + "cityEn": "pingyao", + "cityZh": "\u5e73\u9065" +}, { + "id": "CN101100411", + "cityEn": "lingshi", + "cityZh": "\u7075\u77f3" +}, { + "id": "CN101100412", + "cityEn": "jiexiu", + "cityZh": "\u4ecb\u4f11" +}, { + "id": "CN101100501", + "cityEn": "changzhi", + "cityZh": "\u957f\u6cbb" +}, { + "id": "CN101100502", + "cityEn": "licheng", + "cityZh": "\u9ece\u57ce" +}, { + "id": "CN101100503", + "cityEn": "tunliu", + "cityZh": "\u5c6f\u7559" +}, { + "id": "CN101100504", + "cityEn": "lucheng", + "cityZh": "\u6f5e\u57ce" +}, { + "id": "CN101100505", + "cityEn": "xiangyuan", + "cityZh": "\u8944\u57a3" +}, { + "id": "CN101100506", + "cityEn": "pingshun", + "cityZh": "\u5e73\u987a" +}, { + "id": "CN101100507", + "cityEn": "wuxiang", + "cityZh": "\u6b66\u4e61" +}, { + "id": "CN101100508", + "cityEn": "qinxian", + "cityZh": "\u6c81\u53bf" +}, { + "id": "CN101100509", + "cityEn": "zhangzi", + "cityZh": "\u957f\u5b50" +}, { + "id": "CN101100510", + "cityEn": "qinyuan", + "cityZh": "\u6c81\u6e90" +}, { + "id": "CN101100511", + "cityEn": "huguan", + "cityZh": "\u58f6\u5173" +}, { + "id": "CN101100512", + "cityEn": "jiaoqu", + "cityZh": "\u90ca\u533a" +}, { + "id": "CN101100601", + "cityEn": "jincheng", + "cityZh": "\u664b\u57ce" +}, { + "id": "CN101100602", + "cityEn": "qinshui", + "cityZh": "\u6c81\u6c34" +}, { + "id": "CN101100603", + "cityEn": "yangcheng", + "cityZh": "\u9633\u57ce" +}, { + "id": "CN101100604", + "cityEn": "lingchuan", + "cityZh": "\u9675\u5ddd" +}, { + "id": "CN101100605", + "cityEn": "gaoping", + "cityZh": "\u9ad8\u5e73" +}, { + "id": "CN101100606", + "cityEn": "zezhou", + "cityZh": "\u6cfd\u5dde" +}, { + "id": "CN101100701", + "cityEn": "linfen", + "cityZh": "\u4e34\u6c7e" +}, { + "id": "CN101100702", + "cityEn": "quwo", + "cityZh": "\u66f2\u6c83" +}, { + "id": "CN101100703", + "cityEn": "yonghe", + "cityZh": "\u6c38\u548c" +}, { + "id": "CN101100704", + "cityEn": "xixian", + "cityZh": "\u96b0\u53bf" +}, { + "id": "CN101100705", + "cityEn": "daning", + "cityZh": "\u5927\u5b81" +}, { + "id": "CN101100706", + "cityEn": "jixian", + "cityZh": "\u5409\u53bf" +}, { + "id": "CN101100707", + "cityEn": "xiangfen", + "cityZh": "\u8944\u6c7e" +}, { + "id": "CN101100708", + "cityEn": "puxian", + "cityZh": "\u84b2\u53bf" +}, { + "id": "CN101100709", + "cityEn": "fenxi", + "cityZh": "\u6c7e\u897f" +}, { + "id": "CN101100710", + "cityEn": "hongtong", + "cityZh": "\u6d2a\u6d1e" +}, { + "id": "CN101100711", + "cityEn": "huozhou", + "cityZh": "\u970d\u5dde" +}, { + "id": "CN101100712", + "cityEn": "xiangning", + "cityZh": "\u4e61\u5b81" +}, { + "id": "CN101100713", + "cityEn": "yicheng", + "cityZh": "\u7ffc\u57ce" +}, { + "id": "CN101100714", + "cityEn": "houma", + "cityZh": "\u4faf\u9a6c" +}, { + "id": "CN101100715", + "cityEn": "fushan", + "cityZh": "\u6d6e\u5c71" +}, { + "id": "CN101100716", + "cityEn": "anze", + "cityZh": "\u5b89\u6cfd" +}, { + "id": "CN101100717", + "cityEn": "guxian", + "cityZh": "\u53e4\u53bf" +}, { + "id": "CN101100718", + "cityEn": "yaodou", + "cityZh": "\u5c27\u90fd" +}, { + "id": "CN101100801", + "cityEn": "yuncheng", + "cityZh": "\u8fd0\u57ce" +}, { + "id": "CN101100802", + "cityEn": "linyi", + "cityZh": "\u4e34\u7317" +}, { + "id": "CN101100803", + "cityEn": "jishan", + "cityZh": "\u7a37\u5c71" +}, { + "id": "CN101100804", + "cityEn": "wanrong", + "cityZh": "\u4e07\u8363" +}, { + "id": "CN101100805", + "cityEn": "hejin", + "cityZh": "\u6cb3\u6d25" +}, { + "id": "CN101100806", + "cityEn": "xinjiang", + "cityZh": "\u65b0\u7edb" +}, { + "id": "CN101100807", + "cityEn": "jiangxian", + "cityZh": "\u7edb\u53bf" +}, { + "id": "CN101100808", + "cityEn": "wenxi", + "cityZh": "\u95fb\u559c" +}, { + "id": "CN101100809", + "cityEn": "yuanqu", + "cityZh": "\u57a3\u66f2" +}, { + "id": "CN101100810", + "cityEn": "yongji", + "cityZh": "\u6c38\u6d4e" +}, { + "id": "CN101100811", + "cityEn": "ruicheng", + "cityZh": "\u82ae\u57ce" +}, { + "id": "CN101100812", + "cityEn": "xiaxian", + "cityZh": "\u590f\u53bf" +}, { + "id": "CN101100813", + "cityEn": "pinglu", + "cityZh": "\u5e73\u9646" +}, { + "id": "CN101100814", + "cityEn": "yanhu", + "cityZh": "\u76d0\u6e56" +}, { + "id": "CN101100901", + "cityEn": "shuozhou", + "cityZh": "\u6714\u5dde" +}, { + "id": "CN101100902", + "cityEn": "pinglu", + "cityZh": "\u5e73\u9c81" +}, { + "id": "CN101100903", + "cityEn": "shanyin", + "cityZh": "\u5c71\u9634" +}, { + "id": "CN101100904", + "cityEn": "youyu", + "cityZh": "\u53f3\u7389" +}, { + "id": "CN101100905", + "cityEn": "yingxian", + "cityZh": "\u5e94\u53bf" +}, { + "id": "CN101100906", + "cityEn": "huairen", + "cityZh": "\u6000\u4ec1" +}, { + "id": "CN101100907", + "cityEn": "shuocheng", + "cityZh": "\u6714\u57ce" +}, { + "id": "CN101101001", + "cityEn": "xinzhou", + "cityZh": "\u5ffb\u5dde" +}, { + "id": "CN101101002", + "cityEn": "dingxiang", + "cityZh": "\u5b9a\u8944" +}, { + "id": "CN101101003", + "cityEn": "wutaixian", + "cityZh": "\u4e94\u53f0\u53bf" +}, { + "id": "CN101101004", + "cityEn": "hequ", + "cityZh": "\u6cb3\u66f2" +}, { + "id": "CN101101005", + "cityEn": "pianguan", + "cityZh": "\u504f\u5173" +}, { + "id": "CN101101006", + "cityEn": "shenchi", + "cityZh": "\u795e\u6c60" +}, { + "id": "CN101101007", + "cityEn": "ningwu", + "cityZh": "\u5b81\u6b66" +}, { + "id": "CN101101008", + "cityEn": "daixian", + "cityZh": "\u4ee3\u53bf" +}, { + "id": "CN101101009", + "cityEn": "fanshi", + "cityZh": "\u7e41\u5cd9" +}, { + "id": "CN101101011", + "cityEn": "bode", + "cityZh": "\u4fdd\u5fb7" +}, { + "id": "CN101101012", + "cityEn": "jingle", + "cityZh": "\u9759\u4e50" +}, { + "id": "CN101101013", + "cityEn": "kelan", + "cityZh": "\u5ca2\u5c9a" +}, { + "id": "CN101101014", + "cityEn": "wuzhai", + "cityZh": "\u4e94\u5be8" +}, { + "id": "CN101101015", + "cityEn": "yuanping", + "cityZh": "\u539f\u5e73" +}, { + "id": "CN101101016", + "cityEn": "xinfu", + "cityZh": "\u5ffb\u5e9c" +}, { + "id": "CN101101100", + "cityEn": "lvliang", + "cityZh": "\u5415\u6881" +}, { + "id": "CN101101101", + "cityEn": "lishi", + "cityZh": "\u79bb\u77f3" +}, { + "id": "CN101101102", + "cityEn": "linxian", + "cityZh": "\u4e34\u53bf" +}, { + "id": "CN101101103", + "cityEn": "xingxian", + "cityZh": "\u5174\u53bf" +}, { + "id": "CN101101104", + "cityEn": "lanxian", + "cityZh": "\u5c9a\u53bf" +}, { + "id": "CN101101105", + "cityEn": "liulin", + "cityZh": "\u67f3\u6797" +}, { + "id": "CN101101106", + "cityEn": "shilou", + "cityZh": "\u77f3\u697c" +}, { + "id": "CN101101107", + "cityEn": "fangshan", + "cityZh": "\u65b9\u5c71" +}, { + "id": "CN101101108", + "cityEn": "jiaokou", + "cityZh": "\u4ea4\u53e3" +}, { + "id": "CN101101109", + "cityEn": "zhongyang", + "cityZh": "\u4e2d\u9633" +}, { + "id": "CN101101110", + "cityEn": "xiaoyi", + "cityZh": "\u5b5d\u4e49" +}, { + "id": "CN101101111", + "cityEn": "fenyang", + "cityZh": "\u6c7e\u9633" +}, { + "id": "CN101101112", + "cityEn": "wenshui", + "cityZh": "\u6587\u6c34" +}, { + "id": "CN101101113", + "cityEn": "jiaocheng", + "cityZh": "\u4ea4\u57ce" +}, { + "id": "CN101110101", + "cityEn": "xian", + "cityZh": "\u897f\u5b89" +}, { + "id": "CN101110102", + "cityEn": "changan", + "cityZh": "\u957f\u5b89" +}, { + "id": "CN101110103", + "cityEn": "lintong", + "cityZh": "\u4e34\u6f7c" +}, { + "id": "CN101110104", + "cityEn": "lantian", + "cityZh": "\u84dd\u7530" +}, { + "id": "CN101110105", + "cityEn": "zhouzhi", + "cityZh": "\u5468\u81f3" +}, { + "id": "CN101110106", + "cityEn": "huxian", + "cityZh": "\u6237\u53bf" +}, { + "id": "CN101110107", + "cityEn": "gaoling", + "cityZh": "\u9ad8\u9675" +}, { + "id": "CN101110108", + "cityEn": "xincheng", + "cityZh": "\u65b0\u57ce" +}, { + "id": "CN101110109", + "cityEn": "beilin", + "cityZh": "\u7891\u6797" +}, { + "id": "CN101110110", + "cityEn": "lianhu", + "cityZh": "\u83b2\u6e56" +}, { + "id": "CN101110111", + "cityEn": "baqiao", + "cityZh": "\u705e\u6865" +}, { + "id": "CN101110112", + "cityEn": "weiyang", + "cityZh": "\u672a\u592e" +}, { + "id": "CN101110113", + "cityEn": "yanta", + "cityZh": "\u96c1\u5854" +}, { + "id": "CN101110114", + "cityEn": "yanliang", + "cityZh": "\u960e\u826f" +}, { + "id": "CN101110200", + "cityEn": "xianyang", + "cityZh": "\u54b8\u9633" +}, { + "id": "CN101110201", + "cityEn": "sanyuan", + "cityZh": "\u4e09\u539f" +}, { + "id": "CN101110202", + "cityEn": "liquan", + "cityZh": "\u793c\u6cc9" +}, { + "id": "CN101110203", + "cityEn": "yongshou", + "cityZh": "\u6c38\u5bff" +}, { + "id": "CN101110204", + "cityEn": "chunhua", + "cityZh": "\u6df3\u5316" +}, { + "id": "CN101110205", + "cityEn": "jingyang", + "cityZh": "\u6cfe\u9633" +}, { + "id": "CN101110206", + "cityEn": "wugong", + "cityZh": "\u6b66\u529f" +}, { + "id": "CN101110207", + "cityEn": "qianxian", + "cityZh": "\u4e7e\u53bf" +}, { + "id": "CN101110208", + "cityEn": "binxian", + "cityZh": "\u5f6c\u53bf" +}, { + "id": "CN101110209", + "cityEn": "changwu", + "cityZh": "\u957f\u6b66" +}, { + "id": "CN101110210", + "cityEn": "xunyi", + "cityZh": "\u65ec\u9091" +}, { + "id": "CN101110211", + "cityEn": "xingping", + "cityZh": "\u5174\u5e73" +}, { + "id": "CN101110212", + "cityEn": "qindou", + "cityZh": "\u79e6\u90fd" +}, { + "id": "CN101110213", + "cityEn": "weicheng", + "cityZh": "\u6e2d\u57ce" +}, { + "id": "CN101110300", + "cityEn": "yanan", + "cityZh": "\u5ef6\u5b89" +}, { + "id": "CN101110301", + "cityEn": "yanchang", + "cityZh": "\u5ef6\u957f" +}, { + "id": "CN101110302", + "cityEn": "yanchuan", + "cityZh": "\u5ef6\u5ddd" +}, { + "id": "CN101110303", + "cityEn": "zichang", + "cityZh": "\u5b50\u957f" +}, { + "id": "CN101110304", + "cityEn": "yichuan", + "cityZh": "\u5b9c\u5ddd" +}, { + "id": "CN101110305", + "cityEn": "fuxian", + "cityZh": "\u5bcc\u53bf" +}, { + "id": "CN101110306", + "cityEn": "zhidan", + "cityZh": "\u5fd7\u4e39" +}, { + "id": "CN101110307", + "cityEn": "ansai", + "cityZh": "\u5b89\u585e" +}, { + "id": "CN101110308", + "cityEn": "ganquan", + "cityZh": "\u7518\u6cc9" +}, { + "id": "CN101110309", + "cityEn": "luochuan", + "cityZh": "\u6d1b\u5ddd" +}, { + "id": "CN101110310", + "cityEn": "huangling", + "cityZh": "\u9ec4\u9675" +}, { + "id": "CN101110311", + "cityEn": "huanglong", + "cityZh": "\u9ec4\u9f99" +}, { + "id": "CN101110312", + "cityEn": "wuqi", + "cityZh": "\u5434\u8d77" +}, { + "id": "CN101110313", + "cityEn": "baota", + "cityZh": "\u5b9d\u5854" +}, { + "id": "CN101110401", + "cityEn": "yulin", + "cityZh": "\u6986\u6797" +}, { + "id": "CN101110402", + "cityEn": "fugu", + "cityZh": "\u5e9c\u8c37" +}, { + "id": "CN101110403", + "cityEn": "shenmu", + "cityZh": "\u795e\u6728" +}, { + "id": "CN101110404", + "cityEn": "jiaxian", + "cityZh": "\u4f73\u53bf" +}, { + "id": "CN101110405", + "cityEn": "dingbian", + "cityZh": "\u5b9a\u8fb9" +}, { + "id": "CN101110406", + "cityEn": "jingbian", + "cityZh": "\u9756\u8fb9" +}, { + "id": "CN101110407", + "cityEn": "hengshan", + "cityZh": "\u6a2a\u5c71" +}, { + "id": "CN101110408", + "cityEn": "mizhi", + "cityZh": "\u7c73\u8102" +}, { + "id": "CN101110409", + "cityEn": "zizhou", + "cityZh": "\u5b50\u6d32" +}, { + "id": "CN101110410", + "cityEn": "suide", + "cityZh": "\u7ee5\u5fb7" +}, { + "id": "CN101110411", + "cityEn": "wubu", + "cityZh": "\u5434\u5821" +}, { + "id": "CN101110412", + "cityEn": "qingjian", + "cityZh": "\u6e05\u6da7" +}, { + "id": "CN101110413", + "cityEn": "yuyang", + "cityZh": "\u6986\u9633" +}, { + "id": "CN101110501", + "cityEn": "weinan", + "cityZh": "\u6e2d\u5357" +}, { + "id": "CN101110502", + "cityEn": "huaxian", + "cityZh": "\u534e\u53bf" +}, { + "id": "CN101110503", + "cityEn": "tongguan", + "cityZh": "\u6f7c\u5173" +}, { + "id": "CN101110504", + "cityEn": "dali", + "cityZh": "\u5927\u8354" +}, { + "id": "CN101110505", + "cityEn": "baishui", + "cityZh": "\u767d\u6c34" +}, { + "id": "CN101110506", + "cityEn": "fuping", + "cityZh": "\u5bcc\u5e73" +}, { + "id": "CN101110507", + "cityEn": "pucheng", + "cityZh": "\u84b2\u57ce" +}, { + "id": "CN101110508", + "cityEn": "chengcheng", + "cityZh": "\u6f84\u57ce" +}, { + "id": "CN101110509", + "cityEn": "heyang", + "cityZh": "\u5408\u9633" +}, { + "id": "CN101110510", + "cityEn": "hancheng", + "cityZh": "\u97e9\u57ce" +}, { + "id": "CN101110511", + "cityEn": "huayin", + "cityZh": "\u534e\u9634" +}, { + "id": "CN101110512", + "cityEn": "linwei", + "cityZh": "\u4e34\u6e2d" +}, { + "id": "CN101110513", + "cityEn": "huazhou", + "cityZh": "\u534e\u5dde" +}, { + "id": "CN101110601", + "cityEn": "shangluo", + "cityZh": "\u5546\u6d1b" +}, { + "id": "CN101110602", + "cityEn": "luonan", + "cityZh": "\u6d1b\u5357" +}, { + "id": "CN101110603", + "cityEn": "zhashui", + "cityZh": "\u67de\u6c34" +}, { + "id": "CN101110604", + "cityEn": "shangzhou", + "cityZh": "\u5546\u5dde" +}, { + "id": "CN101110605", + "cityEn": "zhenan", + "cityZh": "\u9547\u5b89" +}, { + "id": "CN101110606", + "cityEn": "danfeng", + "cityZh": "\u4e39\u51e4" +}, { + "id": "CN101110607", + "cityEn": "shangnan", + "cityZh": "\u5546\u5357" +}, { + "id": "CN101110608", + "cityEn": "shanyang", + "cityZh": "\u5c71\u9633" +}, { + "id": "CN101110701", + "cityEn": "ankang", + "cityZh": "\u5b89\u5eb7" +}, { + "id": "CN101110702", + "cityEn": "ziyang", + "cityZh": "\u7d2b\u9633" +}, { + "id": "CN101110703", + "cityEn": "shiquan", + "cityZh": "\u77f3\u6cc9" +}, { + "id": "CN101110704", + "cityEn": "hanyin", + "cityZh": "\u6c49\u9634" +}, { + "id": "CN101110705", + "cityEn": "xunyang", + "cityZh": "\u65ec\u9633" +}, { + "id": "CN101110706", + "cityEn": "langao", + "cityZh": "\u5c9a\u768b" +}, { + "id": "CN101110707", + "cityEn": "pingli", + "cityZh": "\u5e73\u5229" +}, { + "id": "CN101110708", + "cityEn": "baihe", + "cityZh": "\u767d\u6cb3" +}, { + "id": "CN101110709", + "cityEn": "zhenping", + "cityZh": "\u9547\u576a" +}, { + "id": "CN101110710", + "cityEn": "ningshan", + "cityZh": "\u5b81\u9655" +}, { + "id": "CN101110711", + "cityEn": "hanbin", + "cityZh": "\u6c49\u6ee8" +}, { + "id": "CN101110801", + "cityEn": "hanzhong", + "cityZh": "\u6c49\u4e2d" +}, { + "id": "CN101110802", + "cityEn": "lueyang", + "cityZh": "\u7565\u9633" +}, { + "id": "CN101110803", + "cityEn": "mianxian", + "cityZh": "\u52c9\u53bf" +}, { + "id": "CN101110804", + "cityEn": "liuba", + "cityZh": "\u7559\u575d" +}, { + "id": "CN101110805", + "cityEn": "yangxian", + "cityZh": "\u6d0b\u53bf" +}, { + "id": "CN101110806", + "cityEn": "chenggu", + "cityZh": "\u57ce\u56fa" +}, { + "id": "CN101110807", + "cityEn": "xixiang", + "cityZh": "\u897f\u4e61" +}, { + "id": "CN101110808", + "cityEn": "fuoping", + "cityZh": "\u4f5b\u576a" +}, { + "id": "CN101110809", + "cityEn": "ningqiang", + "cityZh": "\u5b81\u5f3a" +}, { + "id": "CN101110810", + "cityEn": "nanzheng", + "cityZh": "\u5357\u90d1" +}, { + "id": "CN101110811", + "cityEn": "zhenba", + "cityZh": "\u9547\u5df4" +}, { + "id": "CN101110812", + "cityEn": "hantai", + "cityZh": "\u6c49\u53f0" +}, { + "id": "CN101110901", + "cityEn": "baoji", + "cityZh": "\u5b9d\u9e21" +}, { + "id": "CN101110902", + "cityEn": "weibin", + "cityZh": "\u6e2d\u6ee8" +}, { + "id": "CN101110903", + "cityEn": "qianyang", + "cityZh": "\u5343\u9633" +}, { + "id": "CN101110904", + "cityEn": "linyou", + "cityZh": "\u9e9f\u6e38" +}, { + "id": "CN101110905", + "cityEn": "qishan", + "cityZh": "\u5c90\u5c71" +}, { + "id": "CN101110906", + "cityEn": "fengxiang", + "cityZh": "\u51e4\u7fd4" +}, { + "id": "CN101110907", + "cityEn": "fufeng", + "cityZh": "\u6276\u98ce" +}, { + "id": "CN101110908", + "cityEn": "meixian", + "cityZh": "\u7709\u53bf" +}, { + "id": "CN101110909", + "cityEn": "taibai", + "cityZh": "\u592a\u767d" +}, { + "id": "CN101110910", + "cityEn": "fengxian", + "cityZh": "\u51e4\u53bf" +}, { + "id": "CN101110911", + "cityEn": "longxian", + "cityZh": "\u9647\u53bf" +}, { + "id": "CN101110912", + "cityEn": "chencang", + "cityZh": "\u9648\u4ed3" +}, { + "id": "CN101110913", + "cityEn": "jintai", + "cityZh": "\u91d1\u53f0" +}, { + "id": "CN101111001", + "cityEn": "tongchuan", + "cityZh": "\u94dc\u5ddd" +}, { + "id": "CN101111003", + "cityEn": "yijun", + "cityZh": "\u5b9c\u541b" +}, { + "id": "CN101111004", + "cityEn": "yaozhou", + "cityZh": "\u8000\u5dde" +}, { + "id": "CN101111005", + "cityEn": "wangyi", + "cityZh": "\u738b\u76ca" +}, { + "id": "CN101111006", + "cityEn": "yintai", + "cityZh": "\u5370\u53f0" +}, { + "id": "CN101111101", + "cityEn": "yangling", + "cityZh": "\u6768\u51cc" +}, { + "id": "CN101111102", + "cityEn": "yangling", + "cityZh": "\u6768\u9675" +}, { + "id": "CN101120101", + "cityEn": "jinan", + "cityZh": "\u6d4e\u5357" +}, { + "id": "CN101120102", + "cityEn": "changqing", + "cityZh": "\u957f\u6e05" +}, { + "id": "CN101120103", + "cityEn": "shanghe", + "cityZh": "\u5546\u6cb3" +}, { + "id": "CN101120104", + "cityEn": "zhangqiu", + "cityZh": "\u7ae0\u4e18" +}, { + "id": "CN101120105", + "cityEn": "pingyin", + "cityZh": "\u5e73\u9634" +}, { + "id": "CN101120106", + "cityEn": "jiyang", + "cityZh": "\u6d4e\u9633" +}, { + "id": "CN101120107", + "cityEn": "lixia", + "cityZh": "\u5386\u4e0b" +}, { + "id": "CN101120108", + "cityEn": "shizhong", + "cityZh": "\u5e02\u4e2d" +}, { + "id": "CN101120109", + "cityEn": "huaiyin", + "cityZh": "\u69d0\u836b" +}, { + "id": "CN101120110", + "cityEn": "tianqiao", + "cityZh": "\u5929\u6865" +}, { + "id": "CN101120111", + "cityEn": "licheng", + "cityZh": "\u5386\u57ce" +}, { + "id": "CN101120201", + "cityEn": "qingdao", + "cityZh": "\u9752\u5c9b" +}, { + "id": "CN101120202", + "cityEn": "laoshan", + "cityZh": "\u5d02\u5c71" +}, { + "id": "CN101120203", + "cityEn": "shinan", + "cityZh": "\u5e02\u5357" +}, { + "id": "CN101120204", + "cityEn": "jimo", + "cityZh": "\u5373\u58a8" +}, { + "id": "CN101120205", + "cityEn": "jiaozhou", + "cityZh": "\u80f6\u5dde" +}, { + "id": "CN101120206", + "cityEn": "huangdao", + "cityZh": "\u9ec4\u5c9b" +}, { + "id": "CN101120207", + "cityEn": "laixi", + "cityZh": "\u83b1\u897f" +}, { + "id": "CN101120208", + "cityEn": "pingdu", + "cityZh": "\u5e73\u5ea6" +}, { + "id": "CN101120209", + "cityEn": "shibei", + "cityZh": "\u5e02\u5317" +}, { + "id": "CN101120210", + "cityEn": "licang", + "cityZh": "\u674e\u6ca7" +}, { + "id": "CN101120211", + "cityEn": "chengyang", + "cityZh": "\u57ce\u9633" +}, { + "id": "CN101120301", + "cityEn": "zibo", + "cityZh": "\u6dc4\u535a" +}, { + "id": "CN101120302", + "cityEn": "zichuan", + "cityZh": "\u6dc4\u5ddd" +}, { + "id": "CN101120303", + "cityEn": "boshan", + "cityZh": "\u535a\u5c71" +}, { + "id": "CN101120304", + "cityEn": "gaoqing", + "cityZh": "\u9ad8\u9752" +}, { + "id": "CN101120305", + "cityEn": "zhoucun", + "cityZh": "\u5468\u6751" +}, { + "id": "CN101120306", + "cityEn": "yiyuan", + "cityZh": "\u6c82\u6e90" +}, { + "id": "CN101120307", + "cityEn": "huantai", + "cityZh": "\u6853\u53f0" +}, { + "id": "CN101120308", + "cityEn": "linzi", + "cityZh": "\u4e34\u6dc4" +}, { + "id": "CN101120309", + "cityEn": "zhangdian", + "cityZh": "\u5f20\u5e97" +}, { + "id": "CN101120401", + "cityEn": "dezhou", + "cityZh": "\u5fb7\u5dde" +}, { + "id": "CN101120402", + "cityEn": "wucheng", + "cityZh": "\u6b66\u57ce" +}, { + "id": "CN101120403", + "cityEn": "linyi", + "cityZh": "\u4e34\u9091" +}, { + "id": "CN101120405", + "cityEn": "qihe", + "cityZh": "\u9f50\u6cb3" +}, { + "id": "CN101120406", + "cityEn": "leling", + "cityZh": "\u4e50\u9675" +}, { + "id": "CN101120407", + "cityEn": "qingyun", + "cityZh": "\u5e86\u4e91" +}, { + "id": "CN101120408", + "cityEn": "pingyuan", + "cityZh": "\u5e73\u539f" +}, { + "id": "CN101120409", + "cityEn": "ningjin", + "cityZh": "\u5b81\u6d25" +}, { + "id": "CN101120410", + "cityEn": "xiajin", + "cityZh": "\u590f\u6d25" +}, { + "id": "CN101120411", + "cityEn": "yucheng", + "cityZh": "\u79b9\u57ce" +}, { + "id": "CN101120412", + "cityEn": "decheng", + "cityZh": "\u5fb7\u57ce" +}, { + "id": "CN101120413", + "cityEn": "lingcheng", + "cityZh": "\u9675\u57ce" +}, { + "id": "CN101120501", + "cityEn": "yantai", + "cityZh": "\u70df\u53f0" +}, { + "id": "CN101120502", + "cityEn": "laizhou", + "cityZh": "\u83b1\u5dde" +}, { + "id": "CN101120503", + "cityEn": "changdao", + "cityZh": "\u957f\u5c9b" +}, { + "id": "CN101120504", + "cityEn": "penglai", + "cityZh": "\u84ec\u83b1" +}, { + "id": "CN101120505", + "cityEn": "longkou", + "cityZh": "\u9f99\u53e3" +}, { + "id": "CN101120506", + "cityEn": "zhaoyuan", + "cityZh": "\u62db\u8fdc" +}, { + "id": "CN101120507", + "cityEn": "qixia", + "cityZh": "\u6816\u971e" +}, { + "id": "CN101120508", + "cityEn": "fushan", + "cityZh": "\u798f\u5c71" +}, { + "id": "CN101120509", + "cityEn": "moup", + "cityZh": "\u725f\u5e73" +}, { + "id": "CN101120510", + "cityEn": "laiyang", + "cityZh": "\u83b1\u9633" +}, { + "id": "CN101120511", + "cityEn": "haiyang", + "cityZh": "\u6d77\u9633" +}, { + "id": "CN101120512", + "cityEn": "zhifu", + "cityZh": "\u829d\u7f58" +}, { + "id": "CN101120513", + "cityEn": "laishan", + "cityZh": "\u83b1\u5c71" +}, { + "id": "CN101120601", + "cityEn": "weifang", + "cityZh": "\u6f4d\u574a" +}, { + "id": "CN101120602", + "cityEn": "qingzhou", + "cityZh": "\u9752\u5dde" +}, { + "id": "CN101120603", + "cityEn": "shouguang", + "cityZh": "\u5bff\u5149" +}, { + "id": "CN101120604", + "cityEn": "linqu", + "cityZh": "\u4e34\u6710" +}, { + "id": "CN101120605", + "cityEn": "changle", + "cityZh": "\u660c\u4e50" +}, { + "id": "CN101120606", + "cityEn": "changyi", + "cityZh": "\u660c\u9091" +}, { + "id": "CN101120607", + "cityEn": "anqiu", + "cityZh": "\u5b89\u4e18" +}, { + "id": "CN101120608", + "cityEn": "gaomi", + "cityZh": "\u9ad8\u5bc6" +}, { + "id": "CN101120609", + "cityEn": "zhucheng", + "cityZh": "\u8bf8\u57ce" +}, { + "id": "CN101120610", + "cityEn": "weicheng", + "cityZh": "\u6f4d\u57ce" +}, { + "id": "CN101120611", + "cityEn": "hanting", + "cityZh": "\u5bd2\u4ead" +}, { + "id": "CN101120612", + "cityEn": "fangzi", + "cityZh": "\u574a\u5b50" +}, { + "id": "CN101120613", + "cityEn": "kuiwen", + "cityZh": "\u594e\u6587" +}, { + "id": "CN101120701", + "cityEn": "jining", + "cityZh": "\u6d4e\u5b81" +}, { + "id": "CN101120702", + "cityEn": "jiaxiang", + "cityZh": "\u5609\u7965" +}, { + "id": "CN101120703", + "cityEn": "weishan", + "cityZh": "\u5fae\u5c71" +}, { + "id": "CN101120704", + "cityEn": "yutai", + "cityZh": "\u9c7c\u53f0" +}, { + "id": "CN101120705", + "cityEn": "yanzhou", + "cityZh": "\u5156\u5dde" +}, { + "id": "CN101120706", + "cityEn": "jinxiang", + "cityZh": "\u91d1\u4e61" +}, { + "id": "CN101120707", + "cityEn": "wenshang", + "cityZh": "\u6c76\u4e0a" +}, { + "id": "CN101120708", + "cityEn": "sishui", + "cityZh": "\u6cd7\u6c34" +}, { + "id": "CN101120709", + "cityEn": "liangshan", + "cityZh": "\u6881\u5c71" +}, { + "id": "CN101120710", + "cityEn": "qufu", + "cityZh": "\u66f2\u961c" +}, { + "id": "CN101120711", + "cityEn": "zoucheng", + "cityZh": "\u90b9\u57ce" +}, { + "id": "CN101120712", + "cityEn": "rencheng", + "cityZh": "\u4efb\u57ce" +}, { + "id": "CN101120801", + "cityEn": "taian", + "cityZh": "\u6cf0\u5b89" +}, { + "id": "CN101120802", + "cityEn": "xintai", + "cityZh": "\u65b0\u6cf0" +}, { + "id": "CN101120803", + "cityEn": "taishan", + "cityZh": "\u6cf0\u5c71" +}, { + "id": "CN101120804", + "cityEn": "feicheng", + "cityZh": "\u80a5\u57ce" +}, { + "id": "CN101120805", + "cityEn": "dongping", + "cityZh": "\u4e1c\u5e73" +}, { + "id": "CN101120806", + "cityEn": "ningyang", + "cityZh": "\u5b81\u9633" +}, { + "id": "CN101120807", + "cityEn": "daiyue", + "cityZh": "\u5cb1\u5cb3" +}, { + "id": "CN101120901", + "cityEn": "linyi", + "cityZh": "\u4e34\u6c82" +}, { + "id": "CN101120902", + "cityEn": "junan", + "cityZh": "\u8392\u5357" +}, { + "id": "CN101120903", + "cityEn": "yinan", + "cityZh": "\u6c82\u5357" +}, { + "id": "CN101120904", + "cityEn": "lanling", + "cityZh": "\u5170\u9675" +}, { + "id": "CN101120905", + "cityEn": "linshu", + "cityZh": "\u4e34\u6cad" +}, { + "id": "CN101120906", + "cityEn": "tancheng", + "cityZh": "\u90ef\u57ce" +}, { + "id": "CN101120907", + "cityEn": "mengyin", + "cityZh": "\u8499\u9634" +}, { + "id": "CN101120908", + "cityEn": "pingyi", + "cityZh": "\u5e73\u9091" +}, { + "id": "CN101120909", + "cityEn": "feixian", + "cityZh": "\u8d39\u53bf" +}, { + "id": "CN101120910", + "cityEn": "yishui", + "cityZh": "\u6c82\u6c34" +}, { + "id": "CN101120911", + "cityEn": "lanshan", + "cityZh": "\u5170\u5c71" +}, { + "id": "CN101120912", + "cityEn": "luozhuang", + "cityZh": "\u7f57\u5e84" +}, { + "id": "CN101120913", + "cityEn": "hedong", + "cityZh": "\u6cb3\u4e1c" +}, { + "id": "CN101121001", + "cityEn": "heze", + "cityZh": "\u83cf\u6cfd" +}, { + "id": "CN101121002", + "cityEn": "juancheng", + "cityZh": "\u9104\u57ce" +}, { + "id": "CN101121003", + "cityEn": "yuncheng", + "cityZh": "\u90d3\u57ce" +}, { + "id": "CN101121004", + "cityEn": "dongming", + "cityZh": "\u4e1c\u660e" +}, { + "id": "CN101121005", + "cityEn": "dingtao", + "cityZh": "\u5b9a\u9676" +}, { + "id": "CN101121006", + "cityEn": "juye", + "cityZh": "\u5de8\u91ce" +}, { + "id": "CN101121007", + "cityEn": "caoxian", + "cityZh": "\u66f9\u53bf" +}, { + "id": "CN101121008", + "cityEn": "chengwu", + "cityZh": "\u6210\u6b66" +}, { + "id": "CN101121009", + "cityEn": "shanxian", + "cityZh": "\u5355\u53bf" +}, { + "id": "CN101121010", + "cityEn": "mudan", + "cityZh": "\u7261\u4e39" +}, { + "id": "CN101121101", + "cityEn": "binzhou", + "cityZh": "\u6ee8\u5dde" +}, { + "id": "CN101121102", + "cityEn": "boxing", + "cityZh": "\u535a\u5174" +}, { + "id": "CN101121103", + "cityEn": "wudi", + "cityZh": "\u65e0\u68e3" +}, { + "id": "CN101121104", + "cityEn": "yangxin", + "cityZh": "\u9633\u4fe1" +}, { + "id": "CN101121105", + "cityEn": "huimin", + "cityZh": "\u60e0\u6c11" +}, { + "id": "CN101121106", + "cityEn": "zhanhua", + "cityZh": "\u6cbe\u5316" +}, { + "id": "CN101121107", + "cityEn": "zouping", + "cityZh": "\u90b9\u5e73" +}, { + "id": "CN101121108", + "cityEn": "bincheng", + "cityZh": "\u6ee8\u57ce" +}, { + "id": "CN101121201", + "cityEn": "dongying", + "cityZh": "\u4e1c\u8425" +}, { + "id": "CN101121202", + "cityEn": "hekou", + "cityZh": "\u6cb3\u53e3" +}, { + "id": "CN101121203", + "cityEn": "kenli", + "cityZh": "\u57a6\u5229" +}, { + "id": "CN101121204", + "cityEn": "lijin", + "cityZh": "\u5229\u6d25" +}, { + "id": "CN101121205", + "cityEn": "guangrao", + "cityZh": "\u5e7f\u9976" +}, { + "id": "CN101121301", + "cityEn": "weihai", + "cityZh": "\u5a01\u6d77" +}, { + "id": "CN101121302", + "cityEn": "wendeng", + "cityZh": "\u6587\u767b" +}, { + "id": "CN101121303", + "cityEn": "rongcheng", + "cityZh": "\u8363\u6210" +}, { + "id": "CN101121304", + "cityEn": "rushan", + "cityZh": "\u4e73\u5c71" +}, { + "id": "CN101121307", + "cityEn": "huancui", + "cityZh": "\u73af\u7fe0" +}, { + "id": "CN101121401", + "cityEn": "zaozhuang", + "cityZh": "\u67a3\u5e84" +}, { + "id": "CN101121402", + "cityEn": "xuecheng", + "cityZh": "\u859b\u57ce" +}, { + "id": "CN101121403", + "cityEn": "yicheng", + "cityZh": "\u5cc4\u57ce" +}, { + "id": "CN101121404", + "cityEn": "taierzhuang", + "cityZh": "\u53f0\u513f\u5e84" +}, { + "id": "CN101121405", + "cityEn": "tengzhou", + "cityZh": "\u6ed5\u5dde" +}, { + "id": "CN101121406", + "cityEn": "shizhong", + "cityZh": "\u5e02\u4e2d" +}, { + "id": "CN101121407", + "cityEn": "shanting", + "cityZh": "\u5c71\u4ead" +}, { + "id": "CN101121501", + "cityEn": "rizhao", + "cityZh": "\u65e5\u7167" +}, { + "id": "CN101121502", + "cityEn": "wulian", + "cityZh": "\u4e94\u83b2" +}, { + "id": "CN101121503", + "cityEn": "juxian", + "cityZh": "\u8392\u53bf" +}, { + "id": "CN101121504", + "cityEn": "donggang", + "cityZh": "\u4e1c\u6e2f" +}, { + "id": "CN101121505", + "cityEn": "lanshan", + "cityZh": "\u5c9a\u5c71" +}, { + "id": "CN101121601", + "cityEn": "laiwu", + "cityZh": "\u83b1\u829c" +}, { + "id": "CN101121602", + "cityEn": "laicheng", + "cityZh": "\u83b1\u57ce" +}, { + "id": "CN101121603", + "cityEn": "gangcheng", + "cityZh": "\u94a2\u57ce" +}, { + "id": "CN101121701", + "cityEn": "liaocheng", + "cityZh": "\u804a\u57ce" +}, { + "id": "CN101121702", + "cityEn": "guanxian", + "cityZh": "\u51a0\u53bf" +}, { + "id": "CN101121703", + "cityEn": "yanggu", + "cityZh": "\u9633\u8c37" +}, { + "id": "CN101121704", + "cityEn": "gaotang", + "cityZh": "\u9ad8\u5510" +}, { + "id": "CN101121705", + "cityEn": "chiping", + "cityZh": "\u830c\u5e73" +}, { + "id": "CN101121706", + "cityEn": "donge", + "cityZh": "\u4e1c\u963f" +}, { + "id": "CN101121707", + "cityEn": "linqing", + "cityZh": "\u4e34\u6e05" +}, { + "id": "CN101121708", + "cityEn": "dongchangfu", + "cityZh": "\u4e1c\u660c\u5e9c" +}, { + "id": "CN101121709", + "cityEn": "shenxian", + "cityZh": "\u8398\u53bf" +}, { + "id": "CN101130101", + "cityEn": "wulumuqi", + "cityZh": "\u4e4c\u9c81\u6728\u9f50" +}, { + "id": "CN101130102", + "cityEn": "tianshan", + "cityZh": "\u5929\u5c71" +}, { + "id": "CN101130104", + "cityEn": "shayibake", + "cityZh": "\u6c99\u4f9d\u5df4\u514b" +}, { + "id": "CN101130105", + "cityEn": "dabancheng", + "cityZh": "\u8fbe\u5742\u57ce" +}, { + "id": "CN101130106", + "cityEn": "xinshi", + "cityZh": "\u65b0\u5e02" +}, { + "id": "CN101130107", + "cityEn": "shuimogou", + "cityZh": "\u6c34\u78e8\u6c9f" +}, { + "id": "CN101130111", + "cityEn": "toutunhe", + "cityZh": "\u5934\u5c6f\u6cb3" +}, { + "id": "CN101130112", + "cityEn": "midong", + "cityZh": "\u7c73\u4e1c" +}, { + "id": "CN101130113", + "cityEn": "wulumuqixian", + "cityZh": "\u4e4c\u9c81\u6728\u9f50\u53bf" +}, { + "id": "CN101130201", + "cityEn": "kelamayi", + "cityZh": "\u514b\u62c9\u739b\u4f9d" +}, { + "id": "CN101130202", + "cityEn": "wuerhe", + "cityZh": "\u4e4c\u5c14\u79be" +}, { + "id": "CN101130203", + "cityEn": "baijiantan", + "cityZh": "\u767d\u78b1\u6ee9" +}, { + "id": "CN101130204", + "cityEn": "dushanzi", + "cityZh": "\u72ec\u5c71\u5b50" +}, { + "id": "CN101130301", + "cityEn": "shihezi", + "cityZh": "\u77f3\u6cb3\u5b50" +}, { + "id": "CN101130401", + "cityEn": "changji", + "cityZh": "\u660c\u5409" +}, { + "id": "CN101130402", + "cityEn": "hutubi", + "cityZh": "\u547c\u56fe\u58c1" +}, { + "id": "CN101130404", + "cityEn": "fukang", + "cityZh": "\u961c\u5eb7" +}, { + "id": "CN101130405", + "cityEn": "jimusaer", + "cityZh": "\u5409\u6728\u8428\u5c14" +}, { + "id": "CN101130406", + "cityEn": "qitai", + "cityZh": "\u5947\u53f0" +}, { + "id": "CN101130407", + "cityEn": "manasi", + "cityZh": "\u739b\u7eb3\u65af" +}, { + "id": "CN101130408", + "cityEn": "mulei", + "cityZh": "\u6728\u5792" +}, { + "id": "CN101130501", + "cityEn": "tulufan", + "cityZh": "\u5410\u9c81\u756a" +}, { + "id": "CN101130502", + "cityEn": "tuokexun", + "cityZh": "\u6258\u514b\u900a" +}, { + "id": "CN101130503", + "cityEn": "gaochang", + "cityZh": "\u9ad8\u660c" +}, { + "id": "CN101130504", + "cityEn": "shanshan", + "cityZh": "\u912f\u5584" +}, { + "id": "CN101130601", + "cityEn": "kuerle", + "cityZh": "\u5e93\u5c14\u52d2" +}, { + "id": "CN101130602", + "cityEn": "luntai", + "cityZh": "\u8f6e\u53f0" +}, { + "id": "CN101130603", + "cityEn": "yuli", + "cityZh": "\u5c09\u7281" +}, { + "id": "CN101130604", + "cityEn": "ruoqiang", + "cityZh": "\u82e5\u7f8c" +}, { + "id": "CN101130605", + "cityEn": "qiemo", + "cityZh": "\u4e14\u672b" +}, { + "id": "CN101130606", + "cityEn": "hejing", + "cityZh": "\u548c\u9759" +}, { + "id": "CN101130607", + "cityEn": "yanqi", + "cityZh": "\u7109\u8006" +}, { + "id": "CN101130608", + "cityEn": "shuo", + "cityZh": "\u548c\u7855" +}, { + "id": "CN101130609", + "cityEn": "bayinguoleng", + "cityZh": "\u5df4\u97f3\u90ed\u695e" +}, { + "id": "CN101130612", + "cityEn": "bohu", + "cityZh": "\u535a\u6e56" +}, { + "id": "CN101130701", + "cityEn": "alaer", + "cityZh": "\u963f\u62c9\u5c14" +}, { + "id": "CN101130801", + "cityEn": "akesu", + "cityZh": "\u963f\u514b\u82cf" +}, { + "id": "CN101130802", + "cityEn": "wushi", + "cityZh": "\u4e4c\u4ec0" +}, { + "id": "CN101130803", + "cityEn": "wensu", + "cityZh": "\u6e29\u5bbf" +}, { + "id": "CN101130804", + "cityEn": "baicheng", + "cityZh": "\u62dc\u57ce" +}, { + "id": "CN101130805", + "cityEn": "xinhe", + "cityZh": "\u65b0\u548c" +}, { + "id": "CN101130806", + "cityEn": "shaya", + "cityZh": "\u6c99\u96c5" +}, { + "id": "CN101130807", + "cityEn": "kuche", + "cityZh": "\u5e93\u8f66" +}, { + "id": "CN101130808", + "cityEn": "keping", + "cityZh": "\u67ef\u576a" +}, { + "id": "CN101130809", + "cityEn": "awati", + "cityZh": "\u963f\u74e6\u63d0" +}, { + "id": "CN101130901", + "cityEn": "kashi", + "cityZh": "\u5580\u4ec0" +}, { + "id": "CN101130902", + "cityEn": "yingjisha", + "cityZh": "\u82f1\u5409\u6c99" +}, { + "id": "CN101130903", + "cityEn": "tashikuergan", + "cityZh": "\u5854\u4ec0\u5e93\u5c14\u5e72" +}, { + "id": "CN101130904", + "cityEn": "maigaiti", + "cityZh": "\u9ea6\u76d6\u63d0" +}, { + "id": "CN101130905", + "cityEn": "shache", + "cityZh": "\u838e\u8f66" +}, { + "id": "CN101130906", + "cityEn": "yecheng", + "cityZh": "\u53f6\u57ce" +}, { + "id": "CN101130907", + "cityEn": "zepu", + "cityZh": "\u6cfd\u666e" +}, { + "id": "CN101130908", + "cityEn": "bachu", + "cityZh": "\u5df4\u695a" +}, { + "id": "CN101130909", + "cityEn": "yuepuhu", + "cityZh": "\u5cb3\u666e\u6e56" +}, { + "id": "CN101130910", + "cityEn": "jiashi", + "cityZh": "\u4f3d\u5e08" +}, { + "id": "CN101130911", + "cityEn": "shufu", + "cityZh": "\u758f\u9644" +}, { + "id": "CN101130912", + "cityEn": "shule", + "cityZh": "\u758f\u52d2" +}, { + "id": "CN101131001", + "cityEn": "yining", + "cityZh": "\u4f0a\u5b81" +}, { + "id": "CN101131002", + "cityEn": "chabuchaer", + "cityZh": "\u5bdf\u5e03\u67e5\u5c14" +}, { + "id": "CN101131003", + "cityEn": "nileke", + "cityZh": "\u5c3c\u52d2\u514b" +}, { + "id": "CN101131004", + "cityEn": "yiningxian", + "cityZh": "\u4f0a\u5b81\u53bf" +}, { + "id": "CN101131005", + "cityEn": "gongliu", + "cityZh": "\u5de9\u7559" +}, { + "id": "CN101131006", + "cityEn": "xinyuan", + "cityZh": "\u65b0\u6e90" +}, { + "id": "CN101131007", + "cityEn": "zhaosu", + "cityZh": "\u662d\u82cf" +}, { + "id": "CN101131008", + "cityEn": "tekesi", + "cityZh": "\u7279\u514b\u65af" +}, { + "id": "CN101131009", + "cityEn": "huocheng", + "cityZh": "\u970d\u57ce" +}, { + "id": "CN101131010", + "cityEn": "huoerguosi", + "cityZh": "\u970d\u5c14\u679c\u65af" +}, { + "id": "CN101131011", + "cityEn": "kuitunshi", + "cityZh": "\u594e\u5c6f" +}, { + "id": "CN101131012", + "cityEn": "yili", + "cityZh": "\u4f0a\u7281" +}, { + "id": "CN101131101", + "cityEn": "tacheng", + "cityZh": "\u5854\u57ce" +}, { + "id": "CN101131102", + "cityEn": "yumin", + "cityZh": "\u88d5\u6c11" +}, { + "id": "CN101131103", + "cityEn": "emin", + "cityZh": "\u989d\u654f" +}, { + "id": "CN101131104", + "cityEn": "hebukesaier", + "cityZh": "\u548c\u5e03\u514b\u8d5b\u5c14" +}, { + "id": "CN101131105", + "cityEn": "tuoli", + "cityZh": "\u6258\u91cc" +}, { + "id": "CN101131106", + "cityEn": "wusu", + "cityZh": "\u4e4c\u82cf" +}, { + "id": "CN101131107", + "cityEn": "shawan", + "cityZh": "\u6c99\u6e7e" +}, { + "id": "CN101131201", + "cityEn": "hami", + "cityZh": "\u54c8\u5bc6" +}, { + "id": "CN101131202", + "cityEn": "yizhou", + "cityZh": "\u4f0a\u5dde" +}, { + "id": "CN101131203", + "cityEn": "balikun", + "cityZh": "\u5df4\u91cc\u5764" +}, { + "id": "CN101131204", + "cityEn": "yiwu", + "cityZh": "\u4f0a\u543e" +}, { + "id": "CN101131301", + "cityEn": "hetian", + "cityZh": "\u548c\u7530" +}, { + "id": "CN101131302", + "cityEn": "pishan", + "cityZh": "\u76ae\u5c71" +}, { + "id": "CN101131303", + "cityEn": "cele", + "cityZh": "\u7b56\u52d2" +}, { + "id": "CN101131304", + "cityEn": "moyu", + "cityZh": "\u58a8\u7389" +}, { + "id": "CN101131305", + "cityEn": "luopu", + "cityZh": "\u6d1b\u6d66" +}, { + "id": "CN101131306", + "cityEn": "minfeng", + "cityZh": "\u6c11\u4e30" +}, { + "id": "CN101131307", + "cityEn": "yutian", + "cityZh": "\u4e8e\u7530" +}, { + "id": "CN101131401", + "cityEn": "aletai", + "cityZh": "\u963f\u52d2\u6cf0" +}, { + "id": "CN101131402", + "cityEn": "habahe", + "cityZh": "\u54c8\u5df4\u6cb3" +}, { + "id": "CN101131405", + "cityEn": "jimunai", + "cityZh": "\u5409\u6728\u4e43" +}, { + "id": "CN101131406", + "cityEn": "buerjin", + "cityZh": "\u5e03\u5c14\u6d25" +}, { + "id": "CN101131407", + "cityEn": "fuhai", + "cityZh": "\u798f\u6d77" +}, { + "id": "CN101131408", + "cityEn": "fuyun", + "cityZh": "\u5bcc\u8574" +}, { + "id": "CN101131409", + "cityEn": "qinghe", + "cityZh": "\u9752\u6cb3" +}, { + "id": "CN101131410", + "cityEn": "beitun", + "cityZh": "\u5317\u5c6f" +}, { + "id": "CN101131412", + "cityEn": "shuanghe", + "cityZh": "\u53cc\u6cb3" +}, { + "id": "CN101131413", + "cityEn": "kekedala", + "cityZh": "\u53ef\u514b\u8fbe\u62c9" +}, { + "id": "CN101131501", + "cityEn": "atushi", + "cityZh": "\u963f\u56fe\u4ec0" +}, { + "id": "CN101131502", + "cityEn": "wuqia", + "cityZh": "\u4e4c\u6070" +}, { + "id": "CN101131503", + "cityEn": "aketao", + "cityZh": "\u963f\u514b\u9676" +}, { + "id": "CN101131504", + "cityEn": "aheqi", + "cityZh": "\u963f\u5408\u5947" +}, { + "id": "CN101131505", + "cityEn": "kezhou", + "cityZh": "\u514b\u5dde" +}, { + "id": "CN101131601", + "cityEn": "bole", + "cityZh": "\u535a\u4e50" +}, { + "id": "CN101131602", + "cityEn": "wenquan", + "cityZh": "\u6e29\u6cc9" +}, { + "id": "CN101131603", + "cityEn": "jinghe", + "cityZh": "\u7cbe\u6cb3" +}, { + "id": "CN101131604", + "cityEn": "boertala", + "cityZh": "\u535a\u5c14\u5854\u62c9" +}, { + "id": "CN101131606", + "cityEn": "alashankou", + "cityZh": "\u963f\u62c9\u5c71\u53e3" +}, { + "id": "CN101131701", + "cityEn": "tumushuke", + "cityZh": "\u56fe\u6728\u8212\u514b" +}, { + "id": "CN101131801", + "cityEn": "wujiaqu", + "cityZh": "\u4e94\u5bb6\u6e20" +}, { + "id": "CN101131901", + "cityEn": "tiemenguan", + "cityZh": "\u94c1\u95e8\u5173" +}, { + "id": "CN101140101", + "cityEn": "lasa", + "cityZh": "\u62c9\u8428" +}, { + "id": "CN101140102", + "cityEn": "dangxiong", + "cityZh": "\u5f53\u96c4" +}, { + "id": "CN101140103", + "cityEn": "nimu", + "cityZh": "\u5c3c\u6728" +}, { + "id": "CN101140104", + "cityEn": "linzhou", + "cityZh": "\u6797\u5468" +}, { + "id": "CN101140105", + "cityEn": "duilongdeqing", + "cityZh": "\u5806\u9f99\u5fb7\u5e86" +}, { + "id": "CN101140106", + "cityEn": "qushui", + "cityZh": "\u66f2\u6c34" +}, { + "id": "CN101140107", + "cityEn": "dazi", + "cityZh": "\u8fbe\u5b5c" +}, { + "id": "CN101140108", + "cityEn": "mozhugongka", + "cityZh": "\u58a8\u7af9\u5de5\u5361" +}, { + "id": "CN101140109", + "cityEn": "chengguan", + "cityZh": "\u57ce\u5173" +}, { + "id": "CN101140201", + "cityEn": "rikaze", + "cityZh": "\u65e5\u5580\u5219" +}, { + "id": "CN101140202", + "cityEn": "lazi", + "cityZh": "\u62c9\u5b5c" +}, { + "id": "CN101140203", + "cityEn": "nanmulin", + "cityZh": "\u5357\u6728\u6797" +}, { + "id": "CN101140204", + "cityEn": "nielamu", + "cityZh": "\u8042\u62c9\u6728" +}, { + "id": "CN101140205", + "cityEn": "anri", + "cityZh": "\u5b9a\u65e5" +}, { + "id": "CN101140206", + "cityEn": "jiangzi", + "cityZh": "\u6c5f\u5b5c" +}, { + "id": "CN101140208", + "cityEn": "zhongba", + "cityZh": "\u4ef2\u5df4" +}, { + "id": "CN101140209", + "cityEn": "saga", + "cityZh": "\u8428\u560e" +}, { + "id": "CN101140210", + "cityEn": "jilong", + "cityZh": "\u5409\u9686" +}, { + "id": "CN101140211", + "cityEn": "angren", + "cityZh": "\u6602\u4ec1" +}, { + "id": "CN101140212", + "cityEn": "dingjie", + "cityZh": "\u5b9a\u7ed3" +}, { + "id": "CN101140213", + "cityEn": "sajia", + "cityZh": "\u8428\u8fe6" +}, { + "id": "CN101140214", + "cityEn": "xietongmen", + "cityZh": "\u8c22\u901a\u95e8" +}, { + "id": "CN101140215", + "cityEn": "sangzhuzi", + "cityZh": "\u6851\u73e0\u5b5c" +}, { + "id": "CN101140216", + "cityEn": "gangba", + "cityZh": "\u5c97\u5df4" +}, { + "id": "CN101140217", + "cityEn": "bailang", + "cityZh": "\u767d\u6717" +}, { + "id": "CN101140218", + "cityEn": "yadong", + "cityZh": "\u4e9a\u4e1c" +}, { + "id": "CN101140219", + "cityEn": "kangma", + "cityZh": "\u5eb7\u9a6c" +}, { + "id": "CN101140220", + "cityEn": "renbu", + "cityZh": "\u4ec1\u5e03" +}, { + "id": "CN101140301", + "cityEn": "shannan", + "cityZh": "\u5c71\u5357" +}, { + "id": "CN101140302", + "cityEn": "gongga", + "cityZh": "\u8d21\u560e" +}, { + "id": "CN101140303", + "cityEn": "zhanang", + "cityZh": "\u624e\u56ca" +}, { + "id": "CN101140304", + "cityEn": "jiacha", + "cityZh": "\u52a0\u67e5" +}, { + "id": "CN101140305", + "cityEn": "langkazi", + "cityZh": "\u6d6a\u5361\u5b50" +}, { + "id": "CN101140306", + "cityEn": "cuona", + "cityZh": "\u9519\u90a3" +}, { + "id": "CN101140307", + "cityEn": "longzi", + "cityZh": "\u9686\u5b50" +}, { + "id": "CN101140309", + "cityEn": "naidong", + "cityZh": "\u4e43\u4e1c" +}, { + "id": "CN101140310", + "cityEn": "sangri", + "cityZh": "\u6851\u65e5" +}, { + "id": "CN101140311", + "cityEn": "luozha", + "cityZh": "\u6d1b\u624e" +}, { + "id": "CN101140312", + "cityEn": "cuomei", + "cityZh": "\u63aa\u7f8e" +}, { + "id": "CN101140313", + "cityEn": "qiongjie", + "cityZh": "\u743c\u7ed3" +}, { + "id": "CN101140314", + "cityEn": "qusong", + "cityZh": "\u66f2\u677e" +}, { + "id": "CN101140401", + "cityEn": "linzhi", + "cityZh": "\u6797\u829d" +}, { + "id": "CN101140402", + "cityEn": "bomi", + "cityZh": "\u6ce2\u5bc6" +}, { + "id": "CN101140403", + "cityEn": "milin", + "cityZh": "\u7c73\u6797" +}, { + "id": "CN101140404", + "cityEn": "chayu", + "cityZh": "\u5bdf\u9685" +}, { + "id": "CN101140405", + "cityEn": "gongbujiangda", + "cityZh": "\u5de5\u5e03\u6c5f\u8fbe" +}, { + "id": "CN101140406", + "cityEn": "langxian", + "cityZh": "\u6717\u53bf" +}, { + "id": "CN101140407", + "cityEn": "motuo", + "cityZh": "\u58a8\u8131" +}, { + "id": "CN101140408", + "cityEn": "bayi", + "cityZh": "\u5df4\u5b9c" +}, { + "id": "CN101140501", + "cityEn": "changdu", + "cityZh": "\u660c\u90fd" +}, { + "id": "CN101140502", + "cityEn": "dingqing", + "cityZh": "\u4e01\u9752" +}, { + "id": "CN101140503", + "cityEn": "bianba", + "cityZh": "\u8fb9\u575d" +}, { + "id": "CN101140504", + "cityEn": "luolong", + "cityZh": "\u6d1b\u9686" +}, { + "id": "CN101140505", + "cityEn": "zuogong", + "cityZh": "\u5de6\u8d21" +}, { + "id": "CN101140506", + "cityEn": "mangkang", + "cityZh": "\u8292\u5eb7" +}, { + "id": "CN101140507", + "cityEn": "leiwuqi", + "cityZh": "\u7c7b\u4e4c\u9f50" +}, { + "id": "CN101140508", + "cityEn": "basu", + "cityZh": "\u516b\u5bbf" +}, { + "id": "CN101140509", + "cityEn": "jiangda", + "cityZh": "\u6c5f\u8fbe" +}, { + "id": "CN101140510", + "cityEn": "chaya", + "cityZh": "\u5bdf\u96c5" +}, { + "id": "CN101140511", + "cityEn": "gongjue", + "cityZh": "\u8d21\u89c9" +}, { + "id": "CN101140512", + "cityEn": "karuo", + "cityZh": "\u5361\u82e5" +}, { + "id": "CN101140601", + "cityEn": "naqu", + "cityZh": "\u90a3\u66f2" +}, { + "id": "CN101140602", + "cityEn": "nima", + "cityZh": "\u5c3c\u739b" +}, { + "id": "CN101140603", + "cityEn": "jiali", + "cityZh": "\u5609\u9ece" +}, { + "id": "CN101140604", + "cityEn": "bange", + "cityZh": "\u73ed\u6208" +}, { + "id": "CN101140605", + "cityEn": "anduo", + "cityZh": "\u5b89\u591a" +}, { + "id": "CN101140606", + "cityEn": "suoxian", + "cityZh": "\u7d22\u53bf" +}, { + "id": "CN101140607", + "cityEn": "nierong", + "cityZh": "\u8042\u8363" +}, { + "id": "CN101140608", + "cityEn": "baqing", + "cityZh": "\u5df4\u9752" +}, { + "id": "CN101140609", + "cityEn": "biru", + "cityZh": "\u6bd4\u5982" +}, { + "id": "CN101140610", + "cityEn": "shuanghu", + "cityZh": "\u53cc\u6e56" +}, { + "id": "CN101140611", + "cityEn": "shenza", + "cityZh": "\u7533\u624e" +}, { + "id": "CN101140701", + "cityEn": "ali", + "cityZh": "\u963f\u91cc" +}, { + "id": "CN101140702", + "cityEn": "gaize", + "cityZh": "\u6539\u5219" +}, { + "id": "CN101140705", + "cityEn": "pulan", + "cityZh": "\u666e\u5170" +}, { + "id": "CN101140706", + "cityEn": "zhada", + "cityZh": "\u672d\u8fbe" +}, { + "id": "CN101140707", + "cityEn": "gaer", + "cityZh": "\u5676\u5c14" +}, { + "id": "CN101140708", + "cityEn": "ritu", + "cityZh": "\u65e5\u571f" +}, { + "id": "CN101140709", + "cityEn": "geji", + "cityZh": "\u9769\u5409" +}, { + "id": "CN101140710", + "cityEn": "cuoqin", + "cityZh": "\u63aa\u52e4" +}, { + "id": "CN101150101", + "cityEn": "xining", + "cityZh": "\u897f\u5b81" +}, { + "id": "CN101150102", + "cityEn": "datong", + "cityZh": "\u5927\u901a" +}, { + "id": "CN101150103", + "cityEn": "huangyuan", + "cityZh": "\u6e5f\u6e90" +}, { + "id": "CN101150104", + "cityEn": "huangzhong", + "cityZh": "\u6e5f\u4e2d" +}, { + "id": "CN101150105", + "cityEn": "chengdong", + "cityZh": "\u57ce\u4e1c" +}, { + "id": "CN101150106", + "cityEn": "chengzhong", + "cityZh": "\u57ce\u4e2d" +}, { + "id": "CN101150107", + "cityEn": "chengxi", + "cityZh": "\u57ce\u897f" +}, { + "id": "CN101150108", + "cityEn": "chengbei", + "cityZh": "\u57ce\u5317" +}, { + "id": "CN101150201", + "cityEn": "pingan", + "cityZh": "\u5e73\u5b89" +}, { + "id": "CN101150202", + "cityEn": "ledu", + "cityZh": "\u4e50\u90fd" +}, { + "id": "CN101150203", + "cityEn": "minhe", + "cityZh": "\u6c11\u548c" +}, { + "id": "CN101150204", + "cityEn": "huzhu", + "cityZh": "\u4e92\u52a9" +}, { + "id": "CN101150205", + "cityEn": "hualong", + "cityZh": "\u5316\u9686" +}, { + "id": "CN101150206", + "cityEn": "xunhua", + "cityZh": "\u5faa\u5316" +}, { + "id": "CN101150207", + "cityEn": "haidong", + "cityZh": "\u6d77\u4e1c" +}, { + "id": "CN101150301", + "cityEn": "tongren", + "cityZh": "\u540c\u4ec1" +}, { + "id": "CN101150302", + "cityEn": "jianzha", + "cityZh": "\u5c16\u624e" +}, { + "id": "CN101150303", + "cityEn": "zeku", + "cityZh": "\u6cfd\u5e93" +}, { + "id": "CN101150304", + "cityEn": "henan", + "cityZh": "\u6cb3\u5357" +}, { + "id": "CN101150305", + "cityEn": "huangnan", + "cityZh": "\u9ec4\u5357" +}, { + "id": "CN101150401", + "cityEn": "gonghe", + "cityZh": "\u5171\u548c" +}, { + "id": "CN101150402", + "cityEn": "hainan", + "cityZh": "\u6d77\u5357" +}, { + "id": "CN101150404", + "cityEn": "guide", + "cityZh": "\u8d35\u5fb7" +}, { + "id": "CN101150406", + "cityEn": "xinghai", + "cityZh": "\u5174\u6d77" +}, { + "id": "CN101150407", + "cityEn": "guinan", + "cityZh": "\u8d35\u5357" +}, { + "id": "CN101150408", + "cityEn": "tongde", + "cityZh": "\u540c\u5fb7" +}, { + "id": "CN101150501", + "cityEn": "maqin", + "cityZh": "\u739b\u6c81" +}, { + "id": "CN101150502", + "cityEn": "banma", + "cityZh": "\u73ed\u739b" +}, { + "id": "CN101150503", + "cityEn": "gande", + "cityZh": "\u7518\u5fb7" +}, { + "id": "CN101150504", + "cityEn": "dari", + "cityZh": "\u8fbe\u65e5" +}, { + "id": "CN101150505", + "cityEn": "jiuzhi", + "cityZh": "\u4e45\u6cbb" +}, { + "id": "CN101150506", + "cityEn": "madu", + "cityZh": "\u739b\u591a" +}, { + "id": "CN101150507", + "cityEn": "guoluo", + "cityZh": "\u679c\u6d1b" +}, { + "id": "CN101150601", + "cityEn": "yushu", + "cityZh": "\u7389\u6811" +}, { + "id": "CN101150602", + "cityEn": "chenduo", + "cityZh": "\u79f0\u591a" +}, { + "id": "CN101150603", + "cityEn": "zhiduo", + "cityZh": "\u6cbb\u591a" +}, { + "id": "CN101150604", + "cityEn": "zaduo", + "cityZh": "\u6742\u591a" +}, { + "id": "CN101150605", + "cityEn": "nangqian", + "cityZh": "\u56ca\u8c26" +}, { + "id": "CN101150606", + "cityEn": "qumacai", + "cityZh": "\u66f2\u9ebb\u83b1" +}, { + "id": "CN101150701", + "cityEn": "delingha", + "cityZh": "\u5fb7\u4ee4\u54c8" +}, { + "id": "CN101150702", + "cityEn": "haixi", + "cityZh": "\u6d77\u897f" +}, { + "id": "CN101150708", + "cityEn": "tianjun", + "cityZh": "\u5929\u5cfb" +}, { + "id": "CN101150709", + "cityEn": "wulan", + "cityZh": "\u4e4c\u5170" +}, { + "id": "CN101150712", + "cityEn": "mangai", + "cityZh": "\u832b\u5d16" +}, { + "id": "CN101150713", + "cityEn": "dachaidan", + "cityZh": "\u5927\u67f4\u65e6" +}, { + "id": "CN101150714", + "cityEn": "geermu", + "cityZh": "\u683c\u5c14\u6728" +}, { + "id": "CN101150715", + "cityEn": "dulan", + "cityZh": "\u90fd\u5170" +}, { + "id": "CN101150716", + "cityEn": "lenghu", + "cityZh": "\u51b7\u6e56" +}, { + "id": "CN101150801", + "cityEn": "haiyan", + "cityZh": "\u6d77\u664f" +}, { + "id": "CN101150802", + "cityEn": "menyuan", + "cityZh": "\u95e8\u6e90" +}, { + "id": "CN101150803", + "cityEn": "qilian", + "cityZh": "\u7941\u8fde" +}, { + "id": "CN101150804", + "cityEn": "haibei", + "cityZh": "\u6d77\u5317" +}, { + "id": "CN101150806", + "cityEn": "gangcha", + "cityZh": "\u521a\u5bdf" +}, { + "id": "CN101160101", + "cityEn": "lanzhou", + "cityZh": "\u5170\u5dde" +}, { + "id": "CN101160102", + "cityEn": "gaolan", + "cityZh": "\u768b\u5170" +}, { + "id": "CN101160103", + "cityEn": "yongdeng", + "cityZh": "\u6c38\u767b" +}, { + "id": "CN101160104", + "cityEn": "yuzhong", + "cityZh": "\u6986\u4e2d" +}, { + "id": "CN101160105", + "cityEn": "chengguan", + "cityZh": "\u57ce\u5173" +}, { + "id": "CN101160106", + "cityEn": "qilihe", + "cityZh": "\u4e03\u91cc\u6cb3" +}, { + "id": "CN101160107", + "cityEn": "xigu", + "cityZh": "\u897f\u56fa" +}, { + "id": "CN101160108", + "cityEn": "anning", + "cityZh": "\u5b89\u5b81" +}, { + "id": "CN101160109", + "cityEn": "honggu", + "cityZh": "\u7ea2\u53e4" +}, { + "id": "CN101160201", + "cityEn": "dingxi", + "cityZh": "\u5b9a\u897f" +}, { + "id": "CN101160202", + "cityEn": "tongwei", + "cityZh": "\u901a\u6e2d" +}, { + "id": "CN101160203", + "cityEn": "longxi", + "cityZh": "\u9647\u897f" +}, { + "id": "CN101160204", + "cityEn": "weiyuan", + "cityZh": "\u6e2d\u6e90" +}, { + "id": "CN101160205", + "cityEn": "lintao", + "cityZh": "\u4e34\u6d2e" +}, { + "id": "CN101160206", + "cityEn": "zhangxian", + "cityZh": "\u6f33\u53bf" +}, { + "id": "CN101160207", + "cityEn": "minxian", + "cityZh": "\u5cb7\u53bf" +}, { + "id": "CN101160208", + "cityEn": "anding", + "cityZh": "\u5b89\u5b9a" +}, { + "id": "CN101160301", + "cityEn": "pingliang", + "cityZh": "\u5e73\u51c9" +}, { + "id": "CN101160302", + "cityEn": "jingchuan", + "cityZh": "\u6cfe\u5ddd" +}, { + "id": "CN101160303", + "cityEn": "lingtai", + "cityZh": "\u7075\u53f0" +}, { + "id": "CN101160304", + "cityEn": "chongxin", + "cityZh": "\u5d07\u4fe1" +}, { + "id": "CN101160305", + "cityEn": "huating", + "cityZh": "\u534e\u4ead" +}, { + "id": "CN101160306", + "cityEn": "zhuanglang", + "cityZh": "\u5e84\u6d6a" +}, { + "id": "CN101160307", + "cityEn": "jingning", + "cityZh": "\u9759\u5b81" +}, { + "id": "CN101160308", + "cityEn": "kongtong", + "cityZh": "\u5d06\u5cd2" +}, { + "id": "CN101160401", + "cityEn": "qingyang", + "cityZh": "\u5e86\u9633" +}, { + "id": "CN101160402", + "cityEn": "xifeng", + "cityZh": "\u897f\u5cf0" +}, { + "id": "CN101160403", + "cityEn": "huanxian", + "cityZh": "\u73af\u53bf" +}, { + "id": "CN101160404", + "cityEn": "huachi", + "cityZh": "\u534e\u6c60" +}, { + "id": "CN101160405", + "cityEn": "heshui", + "cityZh": "\u5408\u6c34" +}, { + "id": "CN101160406", + "cityEn": "zhengning", + "cityZh": "\u6b63\u5b81" +}, { + "id": "CN101160407", + "cityEn": "ningxian", + "cityZh": "\u5b81\u53bf" +}, { + "id": "CN101160408", + "cityEn": "zhenyuan", + "cityZh": "\u9547\u539f" +}, { + "id": "CN101160409", + "cityEn": "qingcheng", + "cityZh": "\u5e86\u57ce" +}, { + "id": "CN101160501", + "cityEn": "wuwei", + "cityZh": "\u6b66\u5a01" +}, { + "id": "CN101160502", + "cityEn": "minqin", + "cityZh": "\u6c11\u52e4" +}, { + "id": "CN101160503", + "cityEn": "gulang", + "cityZh": "\u53e4\u6d6a" +}, { + "id": "CN101160504", + "cityEn": "liangzhou", + "cityZh": "\u51c9\u5dde" +}, { + "id": "CN101160505", + "cityEn": "tianzhu", + "cityZh": "\u5929\u795d" +}, { + "id": "CN101160601", + "cityEn": "jinchang", + "cityZh": "\u91d1\u660c" +}, { + "id": "CN101160602", + "cityEn": "yongchang", + "cityZh": "\u6c38\u660c" +}, { + "id": "CN101160603", + "cityEn": "jinchuan", + "cityZh": "\u91d1\u5ddd" +}, { + "id": "CN101160701", + "cityEn": "zhangye", + "cityZh": "\u5f20\u6396" +}, { + "id": "CN101160702", + "cityEn": "sunan", + "cityZh": "\u8083\u5357" +}, { + "id": "CN101160703", + "cityEn": "minle", + "cityZh": "\u6c11\u4e50" +}, { + "id": "CN101160704", + "cityEn": "linze", + "cityZh": "\u4e34\u6cfd" +}, { + "id": "CN101160705", + "cityEn": "gaotai", + "cityZh": "\u9ad8\u53f0" +}, { + "id": "CN101160706", + "cityEn": "shandan", + "cityZh": "\u5c71\u4e39" +}, { + "id": "CN101160707", + "cityEn": "ganzhou", + "cityZh": "\u7518\u5dde" +}, { + "id": "CN101160801", + "cityEn": "jiuquan", + "cityZh": "\u9152\u6cc9" +}, { + "id": "CN101160802", + "cityEn": "suzhou", + "cityZh": "\u8083\u5dde" +}, { + "id": "CN101160803", + "cityEn": "jinta", + "cityZh": "\u91d1\u5854" +}, { + "id": "CN101160804", + "cityEn": "akesai", + "cityZh": "\u963f\u514b\u585e" +}, { + "id": "CN101160805", + "cityEn": "guazhou", + "cityZh": "\u74dc\u5dde" +}, { + "id": "CN101160806", + "cityEn": "subei", + "cityZh": "\u8083\u5317" +}, { + "id": "CN101160807", + "cityEn": "yumen", + "cityZh": "\u7389\u95e8" +}, { + "id": "CN101160808", + "cityEn": "dunhuang", + "cityZh": "\u6566\u714c" +}, { + "id": "CN101160901", + "cityEn": "tianshui", + "cityZh": "\u5929\u6c34" +}, { + "id": "CN101160902", + "cityEn": "qinzhou", + "cityZh": "\u79e6\u5dde" +}, { + "id": "CN101160903", + "cityEn": "qingshui", + "cityZh": "\u6e05\u6c34" +}, { + "id": "CN101160904", + "cityEn": "qinan", + "cityZh": "\u79e6\u5b89" +}, { + "id": "CN101160905", + "cityEn": "gangu", + "cityZh": "\u7518\u8c37" +}, { + "id": "CN101160906", + "cityEn": "wushan", + "cityZh": "\u6b66\u5c71" +}, { + "id": "CN101160907", + "cityEn": "zhangjiachuan", + "cityZh": "\u5f20\u5bb6\u5ddd" +}, { + "id": "CN101160908", + "cityEn": "maiji", + "cityZh": "\u9ea6\u79ef" +}, { + "id": "CN101161001", + "cityEn": "wudu", + "cityZh": "\u6b66\u90fd" +}, { + "id": "CN101161002", + "cityEn": "chengxian", + "cityZh": "\u6210\u53bf" +}, { + "id": "CN101161003", + "cityEn": "wenxian", + "cityZh": "\u6587\u53bf" +}, { + "id": "CN101161004", + "cityEn": "dangchang", + "cityZh": "\u5b95\u660c" +}, { + "id": "CN101161005", + "cityEn": "kangxian", + "cityZh": "\u5eb7\u53bf" +}, { + "id": "CN101161006", + "cityEn": "xihe", + "cityZh": "\u897f\u548c" +}, { + "id": "CN101161007", + "cityEn": "lixian", + "cityZh": "\u793c\u53bf" +}, { + "id": "CN101161008", + "cityEn": "huixian", + "cityZh": "\u5fbd\u53bf" +}, { + "id": "CN101161009", + "cityEn": "liangdang", + "cityZh": "\u4e24\u5f53" +}, { + "id": "CN101161010", + "cityEn": "longnan", + "cityZh": "\u9647\u5357" +}, { + "id": "CN101161101", + "cityEn": "linxia", + "cityZh": "\u4e34\u590f" +}, { + "id": "CN101161102", + "cityEn": "kangle", + "cityZh": "\u5eb7\u4e50" +}, { + "id": "CN101161103", + "cityEn": "yongjing", + "cityZh": "\u6c38\u9756" +}, { + "id": "CN101161104", + "cityEn": "guanghe", + "cityZh": "\u5e7f\u6cb3" +}, { + "id": "CN101161105", + "cityEn": "hezheng", + "cityZh": "\u548c\u653f" +}, { + "id": "CN101161106", + "cityEn": "dongxiang", + "cityZh": "\u4e1c\u4e61" +}, { + "id": "CN101161107", + "cityEn": "jishishan", + "cityZh": "\u79ef\u77f3\u5c71" +}, { + "id": "CN101161201", + "cityEn": "hezuo", + "cityZh": "\u5408\u4f5c" +}, { + "id": "CN101161202", + "cityEn": "lintan", + "cityZh": "\u4e34\u6f6d" +}, { + "id": "CN101161203", + "cityEn": "zhuoni", + "cityZh": "\u5353\u5c3c" +}, { + "id": "CN101161204", + "cityEn": "zhouqu", + "cityZh": "\u821f\u66f2" +}, { + "id": "CN101161205", + "cityEn": "diebu", + "cityZh": "\u8fed\u90e8" +}, { + "id": "CN101161206", + "cityEn": "maqu", + "cityZh": "\u739b\u66f2" +}, { + "id": "CN101161207", + "cityEn": "luqu", + "cityZh": "\u788c\u66f2" +}, { + "id": "CN101161208", + "cityEn": "xiahe", + "cityZh": "\u590f\u6cb3" +}, { + "id": "CN101161209", + "cityEn": "gannan", + "cityZh": "\u7518\u5357" +}, { + "id": "CN101161301", + "cityEn": "baiyin", + "cityZh": "\u767d\u94f6" +}, { + "id": "CN101161302", + "cityEn": "jingyuan", + "cityZh": "\u9756\u8fdc" +}, { + "id": "CN101161303", + "cityEn": "huining", + "cityZh": "\u4f1a\u5b81" +}, { + "id": "CN101161304", + "cityEn": "pingchuan", + "cityZh": "\u5e73\u5ddd" +}, { + "id": "CN101161305", + "cityEn": "jingtai", + "cityZh": "\u666f\u6cf0" +}, { + "id": "CN101161401", + "cityEn": "jiayuguan", + "cityZh": "\u5609\u5cea\u5173" +}, { + "id": "CN101170101", + "cityEn": "yinchuan", + "cityZh": "\u94f6\u5ddd" +}, { + "id": "CN101170102", + "cityEn": "yongning", + "cityZh": "\u6c38\u5b81" +}, { + "id": "CN101170103", + "cityEn": "lingwu", + "cityZh": "\u7075\u6b66" +}, { + "id": "CN101170104", + "cityEn": "helan", + "cityZh": "\u8d3a\u5170" +}, { + "id": "CN101170105", + "cityEn": "xingqing", + "cityZh": "\u5174\u5e86" +}, { + "id": "CN101170106", + "cityEn": "xixia", + "cityZh": "\u897f\u590f" +}, { + "id": "CN101170107", + "cityEn": "jinfeng", + "cityZh": "\u91d1\u51e4" +}, { + "id": "CN101170201", + "cityEn": "shizuishan", + "cityZh": "\u77f3\u5634\u5c71" +}, { + "id": "CN101170202", + "cityEn": "huinong", + "cityZh": "\u60e0\u519c" +}, { + "id": "CN101170203", + "cityEn": "pingluo", + "cityZh": "\u5e73\u7f57" +}, { + "id": "CN101170205", + "cityEn": "dawukou", + "cityZh": "\u5927\u6b66\u53e3" +}, { + "id": "CN101170301", + "cityEn": "wuzhong", + "cityZh": "\u5434\u5fe0" +}, { + "id": "CN101170302", + "cityEn": "tongxin", + "cityZh": "\u540c\u5fc3" +}, { + "id": "CN101170303", + "cityEn": "yanchi", + "cityZh": "\u76d0\u6c60" +}, { + "id": "CN101170304", + "cityEn": "litong", + "cityZh": "\u5229\u901a" +}, { + "id": "CN101170305", + "cityEn": "hongsibao", + "cityZh": "\u7ea2\u5bfa\u5821" +}, { + "id": "CN101170306", + "cityEn": "qingtongxia", + "cityZh": "\u9752\u94dc\u5ce1" +}, { + "id": "CN101170401", + "cityEn": "guyuan", + "cityZh": "\u56fa\u539f" +}, { + "id": "CN101170402", + "cityEn": "xiji", + "cityZh": "\u897f\u5409" +}, { + "id": "CN101170403", + "cityEn": "longde", + "cityZh": "\u9686\u5fb7" +}, { + "id": "CN101170404", + "cityEn": "jinyuan", + "cityZh": "\u6cfe\u6e90" +}, { + "id": "CN101170405", + "cityEn": "yuanzhou", + "cityZh": "\u539f\u5dde" +}, { + "id": "CN101170406", + "cityEn": "pengyang", + "cityZh": "\u5f6d\u9633" +}, { + "id": "CN101170501", + "cityEn": "zhongwei", + "cityZh": "\u4e2d\u536b" +}, { + "id": "CN101170502", + "cityEn": "zhongning", + "cityZh": "\u4e2d\u5b81" +}, { + "id": "CN101170503", + "cityEn": "shapotou", + "cityZh": "\u6c99\u5761\u5934" +}, { + "id": "CN101170504", + "cityEn": "haiyuan", + "cityZh": "\u6d77\u539f" +}, { + "id": "CN101180101", + "cityEn": "zhengzhou", + "cityZh": "\u90d1\u5dde" +}, { + "id": "CN101180102", + "cityEn": "gongyi", + "cityZh": "\u5de9\u4e49" +}, { + "id": "CN101180103", + "cityEn": "xingyang", + "cityZh": "\u8365\u9633" +}, { + "id": "CN101180104", + "cityEn": "dengfeng", + "cityZh": "\u767b\u5c01" +}, { + "id": "CN101180105", + "cityEn": "xinmi", + "cityZh": "\u65b0\u5bc6" +}, { + "id": "CN101180106", + "cityEn": "xinzheng", + "cityZh": "\u65b0\u90d1" +}, { + "id": "CN101180107", + "cityEn": "zhongmou", + "cityZh": "\u4e2d\u725f" +}, { + "id": "CN101180108", + "cityEn": "shangjie", + "cityZh": "\u4e0a\u8857" +}, { + "id": "CN101180109", + "cityEn": "zhongyuan", + "cityZh": "\u4e2d\u539f" +}, { + "id": "CN101180110", + "cityEn": "erqi", + "cityZh": "\u4e8c\u4e03" +}, { + "id": "CN101180111", + "cityEn": "guancheng", + "cityZh": "\u7ba1\u57ce" +}, { + "id": "CN101180112", + "cityEn": "jinshui", + "cityZh": "\u91d1\u6c34" +}, { + "id": "CN101180113", + "cityEn": "huiji", + "cityZh": "\u60e0\u6d4e" +}, { + "id": "CN101180201", + "cityEn": "anyang", + "cityZh": "\u5b89\u9633" +}, { + "id": "CN101180202", + "cityEn": "tangyin", + "cityZh": "\u6c64\u9634" +}, { + "id": "CN101180203", + "cityEn": "huaxian", + "cityZh": "\u6ed1\u53bf" +}, { + "id": "CN101180204", + "cityEn": "neihuang", + "cityZh": "\u5185\u9ec4" +}, { + "id": "CN101180205", + "cityEn": "linzhou", + "cityZh": "\u6797\u5dde" +}, { + "id": "CN101180206", + "cityEn": "wenfeng", + "cityZh": "\u6587\u5cf0" +}, { + "id": "CN101180207", + "cityEn": "beiguan", + "cityZh": "\u5317\u5173" +}, { + "id": "CN101180208", + "cityEn": "yindou", + "cityZh": "\u6bb7\u90fd" +}, { + "id": "CN101180209", + "cityEn": "longan", + "cityZh": "\u9f99\u5b89" +}, { + "id": "CN101180301", + "cityEn": "xinxiang", + "cityZh": "\u65b0\u4e61" +}, { + "id": "CN101180302", + "cityEn": "huojia", + "cityZh": "\u83b7\u5609" +}, { + "id": "CN101180303", + "cityEn": "yuanyang", + "cityZh": "\u539f\u9633" +}, { + "id": "CN101180304", + "cityEn": "huixian", + "cityZh": "\u8f89\u53bf" +}, { + "id": "CN101180305", + "cityEn": "weihui", + "cityZh": "\u536b\u8f89" +}, { + "id": "CN101180306", + "cityEn": "yanjin", + "cityZh": "\u5ef6\u6d25" +}, { + "id": "CN101180307", + "cityEn": "fengqiu", + "cityZh": "\u5c01\u4e18" +}, { + "id": "CN101180308", + "cityEn": "changyuan", + "cityZh": "\u957f\u57a3" +}, { + "id": "CN101180309", + "cityEn": "hongqi", + "cityZh": "\u7ea2\u65d7" +}, { + "id": "CN101180310", + "cityEn": "weibin", + "cityZh": "\u536b\u6ee8" +}, { + "id": "CN101180311", + "cityEn": "fengquan", + "cityZh": "\u51e4\u6cc9" +}, { + "id": "CN101180312", + "cityEn": "muye", + "cityZh": "\u7267\u91ce" +}, { + "id": "CN101180401", + "cityEn": "xuchang", + "cityZh": "\u8bb8\u660c" +}, { + "id": "CN101180402", + "cityEn": "yanling", + "cityZh": "\u9122\u9675" +}, { + "id": "CN101180403", + "cityEn": "xiangcheng", + "cityZh": "\u8944\u57ce" +}, { + "id": "CN101180404", + "cityEn": "changge", + "cityZh": "\u957f\u845b" +}, { + "id": "CN101180405", + "cityEn": "yuzhou", + "cityZh": "\u79b9\u5dde" +}, { + "id": "CN101180406", + "cityEn": "weidou", + "cityZh": "\u9b4f\u90fd" +}, { + "id": "CN101180501", + "cityEn": "pingdingshan", + "cityZh": "\u5e73\u9876\u5c71" +}, { + "id": "CN101180502", + "cityEn": "jiaxian", + "cityZh": "\u90cf\u53bf" +}, { + "id": "CN101180503", + "cityEn": "baofeng", + "cityZh": "\u5b9d\u4e30" +}, { + "id": "CN101180504", + "cityEn": "ruzhou", + "cityZh": "\u6c5d\u5dde" +}, { + "id": "CN101180505", + "cityEn": "yexian", + "cityZh": "\u53f6\u53bf" +}, { + "id": "CN101180506", + "cityEn": "wugang", + "cityZh": "\u821e\u94a2" +}, { + "id": "CN101180507", + "cityEn": "lushan", + "cityZh": "\u9c81\u5c71" +}, { + "id": "CN101180508", + "cityEn": "shilong", + "cityZh": "\u77f3\u9f99" +}, { + "id": "CN101180509", + "cityEn": "xinhua", + "cityZh": "\u65b0\u534e" +}, { + "id": "CN101180510", + "cityEn": "weidong", + "cityZh": "\u536b\u4e1c" +}, { + "id": "CN101180511", + "cityEn": "zhanhe", + "cityZh": "\u6e5b\u6cb3" +}, { + "id": "CN101180601", + "cityEn": "xinyang", + "cityZh": "\u4fe1\u9633" +}, { + "id": "CN101180602", + "cityEn": "xixian", + "cityZh": "\u606f\u53bf" +}, { + "id": "CN101180603", + "cityEn": "luoshan", + "cityZh": "\u7f57\u5c71" +}, { + "id": "CN101180604", + "cityEn": "guangshan", + "cityZh": "\u5149\u5c71" +}, { + "id": "CN101180605", + "cityEn": "xinxian", + "cityZh": "\u65b0\u53bf" +}, { + "id": "CN101180606", + "cityEn": "huaibin", + "cityZh": "\u6dee\u6ee8" +}, { + "id": "CN101180607", + "cityEn": "huangchuan", + "cityZh": "\u6f62\u5ddd" +}, { + "id": "CN101180608", + "cityEn": "gushi", + "cityZh": "\u56fa\u59cb" +}, { + "id": "CN101180609", + "cityEn": "shangcheng", + "cityZh": "\u5546\u57ce" +}, { + "id": "CN101180610", + "cityEn": "shihe", + "cityZh": "\u6d49\u6cb3" +}, { + "id": "CN101180611", + "cityEn": "pingqiao", + "cityZh": "\u5e73\u6865" +}, { + "id": "CN101180701", + "cityEn": "nanyang", + "cityZh": "\u5357\u9633" +}, { + "id": "CN101180702", + "cityEn": "nanzhao", + "cityZh": "\u5357\u53ec" +}, { + "id": "CN101180703", + "cityEn": "fangcheng", + "cityZh": "\u65b9\u57ce" +}, { + "id": "CN101180704", + "cityEn": "sheqi", + "cityZh": "\u793e\u65d7" +}, { + "id": "CN101180705", + "cityEn": "xixia", + "cityZh": "\u897f\u5ce1" +}, { + "id": "CN101180706", + "cityEn": "neixiang", + "cityZh": "\u5185\u4e61" +}, { + "id": "CN101180707", + "cityEn": "zhenping", + "cityZh": "\u9547\u5e73" +}, { + "id": "CN101180708", + "cityEn": "xichuan", + "cityZh": "\u6dc5\u5ddd" +}, { + "id": "CN101180709", + "cityEn": "xinye", + "cityZh": "\u65b0\u91ce" +}, { + "id": "CN101180710", + "cityEn": "tanghe", + "cityZh": "\u5510\u6cb3" +}, { + "id": "CN101180711", + "cityEn": "dengzhou", + "cityZh": "\u9093\u5dde" +}, { + "id": "CN101180712", + "cityEn": "tongbai", + "cityZh": "\u6850\u67cf" +}, { + "id": "CN101180713", + "cityEn": "wancheng", + "cityZh": "\u5b9b\u57ce" +}, { + "id": "CN101180714", + "cityEn": "wolong", + "cityZh": "\u5367\u9f99" +}, { + "id": "CN101180801", + "cityEn": "kaifeng", + "cityZh": "\u5f00\u5c01" +}, { + "id": "CN101180802", + "cityEn": "qixian", + "cityZh": "\u675e\u53bf" +}, { + "id": "CN101180803", + "cityEn": "weishi", + "cityZh": "\u5c09\u6c0f" +}, { + "id": "CN101180804", + "cityEn": "tongxu", + "cityZh": "\u901a\u8bb8" +}, { + "id": "CN101180805", + "cityEn": "lankao", + "cityZh": "\u5170\u8003" +}, { + "id": "CN101180806", + "cityEn": "longting", + "cityZh": "\u9f99\u4ead" +}, { + "id": "CN101180807", + "cityEn": "shunhe", + "cityZh": "\u987a\u6cb3" +}, { + "id": "CN101180808", + "cityEn": "gulou", + "cityZh": "\u9f13\u697c" +}, { + "id": "CN101180809", + "cityEn": "yuwangtai", + "cityZh": "\u79b9\u738b\u53f0" +}, { + "id": "CN101180810", + "cityEn": "xiangfu", + "cityZh": "\u7965\u7b26" +}, { + "id": "CN101180901", + "cityEn": "luoyang", + "cityZh": "\u6d1b\u9633" +}, { + "id": "CN101180902", + "cityEn": "xinan", + "cityZh": "\u65b0\u5b89" +}, { + "id": "CN101180903", + "cityEn": "mengjin", + "cityZh": "\u5b5f\u6d25" +}, { + "id": "CN101180904", + "cityEn": "yiyang", + "cityZh": "\u5b9c\u9633" +}, { + "id": "CN101180905", + "cityEn": "luoning", + "cityZh": "\u6d1b\u5b81" +}, { + "id": "CN101180906", + "cityEn": "yichuan", + "cityZh": "\u4f0a\u5ddd" +}, { + "id": "CN101180907", + "cityEn": "songxian", + "cityZh": "\u5d69\u53bf" +}, { + "id": "CN101180908", + "cityEn": "yanshi", + "cityZh": "\u5043\u5e08" +}, { + "id": "CN101180909", + "cityEn": "luanchuan", + "cityZh": "\u683e\u5ddd" +}, { + "id": "CN101180910", + "cityEn": "ruyang", + "cityZh": "\u6c5d\u9633" +}, { + "id": "CN101180911", + "cityEn": "jili", + "cityZh": "\u5409\u5229" +}, { + "id": "CN101180912", + "cityEn": "laocheng", + "cityZh": "\u8001\u57ce" +}, { + "id": "CN101180913", + "cityEn": "xigong", + "cityZh": "\u897f\u5de5" +}, { + "id": "CN101180914", + "cityEn": "chanhe", + "cityZh": "\u700d\u6cb3" +}, { + "id": "CN101180915", + "cityEn": "jianxi", + "cityZh": "\u6da7\u897f" +}, { + "id": "CN101180916", + "cityEn": "luolong", + "cityZh": "\u6d1b\u9f99" +}, { + "id": "CN101181001", + "cityEn": "shangqiu", + "cityZh": "\u5546\u4e18" +}, { + "id": "CN101181002", + "cityEn": "liangyuan", + "cityZh": "\u6881\u56ed" +}, { + "id": "CN101181003", + "cityEn": "suixian", + "cityZh": "\u7762\u53bf" +}, { + "id": "CN101181004", + "cityEn": "minquan", + "cityZh": "\u6c11\u6743" +}, { + "id": "CN101181005", + "cityEn": "yucheng", + "cityZh": "\u865e\u57ce" +}, { + "id": "CN101181006", + "cityEn": "zhecheng", + "cityZh": "\u67d8\u57ce" +}, { + "id": "CN101181007", + "cityEn": "ningling", + "cityZh": "\u5b81\u9675" +}, { + "id": "CN101181008", + "cityEn": "xiayi", + "cityZh": "\u590f\u9091" +}, { + "id": "CN101181009", + "cityEn": "yongcheng", + "cityZh": "\u6c38\u57ce" +}, { + "id": "CN101181010", + "cityEn": "suiyang", + "cityZh": "\u7762\u9633" +}, { + "id": "CN101181101", + "cityEn": "jiaozuo", + "cityZh": "\u7126\u4f5c" +}, { + "id": "CN101181102", + "cityEn": "xiuwu", + "cityZh": "\u4fee\u6b66" +}, { + "id": "CN101181103", + "cityEn": "wuzhi", + "cityZh": "\u6b66\u965f" +}, { + "id": "CN101181104", + "cityEn": "qinyang", + "cityZh": "\u6c81\u9633" +}, { + "id": "CN101181105", + "cityEn": "jiefang", + "cityZh": "\u89e3\u653e" +}, { + "id": "CN101181106", + "cityEn": "boai", + "cityZh": "\u535a\u7231" +}, { + "id": "CN101181107", + "cityEn": "wenxian", + "cityZh": "\u6e29\u53bf" +}, { + "id": "CN101181108", + "cityEn": "mengzhou", + "cityZh": "\u5b5f\u5dde" +}, { + "id": "CN101181109", + "cityEn": "zhongzhan", + "cityZh": "\u4e2d\u7ad9" +}, { + "id": "CN101181110", + "cityEn": "macun", + "cityZh": "\u9a6c\u6751" +}, { + "id": "CN101181111", + "cityEn": "shanyang", + "cityZh": "\u5c71\u9633" +}, { + "id": "CN101181201", + "cityEn": "hebi", + "cityZh": "\u9e64\u58c1" +}, { + "id": "CN101181202", + "cityEn": "xunxian", + "cityZh": "\u6d5a\u53bf" +}, { + "id": "CN101181203", + "cityEn": "qixian", + "cityZh": "\u6dc7\u53bf" +}, { + "id": "CN101181204", + "cityEn": "heshan", + "cityZh": "\u9e64\u5c71" +}, { + "id": "CN101181205", + "cityEn": "shancheng", + "cityZh": "\u5c71\u57ce" +}, { + "id": "CN101181206", + "cityEn": "qibin", + "cityZh": "\u6dc7\u6ee8" +}, { + "id": "CN101181301", + "cityEn": "puyang", + "cityZh": "\u6fee\u9633" +}, { + "id": "CN101181302", + "cityEn": "taiqian", + "cityZh": "\u53f0\u524d" +}, { + "id": "CN101181303", + "cityEn": "nanle", + "cityZh": "\u5357\u4e50" +}, { + "id": "CN101181304", + "cityEn": "qingfeng", + "cityZh": "\u6e05\u4e30" +}, { + "id": "CN101181305", + "cityEn": "fanxian", + "cityZh": "\u8303\u53bf" +}, { + "id": "CN101181306", + "cityEn": "hualong", + "cityZh": "\u534e\u9f99" +}, { + "id": "CN101181401", + "cityEn": "zhoukou", + "cityZh": "\u5468\u53e3" +}, { + "id": "CN101181402", + "cityEn": "fugou", + "cityZh": "\u6276\u6c9f" +}, { + "id": "CN101181403", + "cityEn": "taikang", + "cityZh": "\u592a\u5eb7" +}, { + "id": "CN101181404", + "cityEn": "huaiyang", + "cityZh": "\u6dee\u9633" +}, { + "id": "CN101181405", + "cityEn": "xihua", + "cityZh": "\u897f\u534e" +}, { + "id": "CN101181406", + "cityEn": "shangshui", + "cityZh": "\u5546\u6c34" +}, { + "id": "CN101181407", + "cityEn": "xiangcheng", + "cityZh": "\u9879\u57ce" +}, { + "id": "CN101181408", + "cityEn": "dancheng", + "cityZh": "\u90f8\u57ce" +}, { + "id": "CN101181409", + "cityEn": "luyi", + "cityZh": "\u9e7f\u9091" +}, { + "id": "CN101181410", + "cityEn": "shenqiu", + "cityZh": "\u6c88\u4e18" +}, { + "id": "CN101181411", + "cityEn": "chuanhui", + "cityZh": "\u5ddd\u6c47" +}, { + "id": "CN101181501", + "cityEn": "luohe", + "cityZh": "\u6f2f\u6cb3" +}, { + "id": "CN101181502", + "cityEn": "linying", + "cityZh": "\u4e34\u988d" +}, { + "id": "CN101181503", + "cityEn": "wuyang", + "cityZh": "\u821e\u9633" +}, { + "id": "CN101181504", + "cityEn": "yuanhui", + "cityZh": "\u6e90\u6c47" +}, { + "id": "CN101181505", + "cityEn": "yancheng", + "cityZh": "\u90fe\u57ce" +}, { + "id": "CN101181506", + "cityEn": "zhaoling", + "cityZh": "\u53ec\u9675" +}, { + "id": "CN101181601", + "cityEn": "zhumadian", + "cityZh": "\u9a7b\u9a6c\u5e97" +}, { + "id": "CN101181602", + "cityEn": "xiping", + "cityZh": "\u897f\u5e73" +}, { + "id": "CN101181603", + "cityEn": "suiping", + "cityZh": "\u9042\u5e73" +}, { + "id": "CN101181604", + "cityEn": "shangcai", + "cityZh": "\u4e0a\u8521" +}, { + "id": "CN101181605", + "cityEn": "runan", + "cityZh": "\u6c5d\u5357" +}, { + "id": "CN101181606", + "cityEn": "biyang", + "cityZh": "\u6ccc\u9633" +}, { + "id": "CN101181607", + "cityEn": "pingyu", + "cityZh": "\u5e73\u8206" +}, { + "id": "CN101181608", + "cityEn": "xincai", + "cityZh": "\u65b0\u8521" +}, { + "id": "CN101181609", + "cityEn": "queshan", + "cityZh": "\u786e\u5c71" +}, { + "id": "CN101181610", + "cityEn": "zhengyang", + "cityZh": "\u6b63\u9633" +}, { + "id": "CN101181611", + "cityEn": "yicheng", + "cityZh": "\u9a7f\u57ce" +}, { + "id": "CN101181701", + "cityEn": "sanmenxia", + "cityZh": "\u4e09\u95e8\u5ce1" +}, { + "id": "CN101181702", + "cityEn": "lingbao", + "cityZh": "\u7075\u5b9d" +}, { + "id": "CN101181703", + "cityEn": "mianchi", + "cityZh": "\u6e11\u6c60" +}, { + "id": "CN101181704", + "cityEn": "lushi", + "cityZh": "\u5362\u6c0f" +}, { + "id": "CN101181705", + "cityEn": "yima", + "cityZh": "\u4e49\u9a6c" +}, { + "id": "CN101181706", + "cityEn": "shanxian", + "cityZh": "\u9655\u53bf" +}, { + "id": "CN101181707", + "cityEn": "hubin", + "cityZh": "\u6e56\u6ee8" +}, { + "id": "CN101181708", + "cityEn": "shanzhou", + "cityZh": "\u9655\u5dde" +}, { + "id": "CN101181801", + "cityEn": "jiyuan", + "cityZh": "\u6d4e\u6e90" +}, { + "id": "CN101190101", + "cityEn": "nanjing", + "cityZh": "\u5357\u4eac" +}, { + "id": "CN101190102", + "cityEn": "lishui", + "cityZh": "\u6ea7\u6c34" +}, { + "id": "CN101190103", + "cityEn": "gaochun", + "cityZh": "\u9ad8\u6df3" +}, { + "id": "CN101190104", + "cityEn": "jiangning", + "cityZh": "\u6c5f\u5b81" +}, { + "id": "CN101190105", + "cityEn": "luhe", + "cityZh": "\u516d\u5408" +}, { + "id": "CN101190107", + "cityEn": "pukou", + "cityZh": "\u6d66\u53e3" +}, { + "id": "CN101190108", + "cityEn": "xuanwu", + "cityZh": "\u7384\u6b66" +}, { + "id": "CN101190109", + "cityEn": "qinhuai", + "cityZh": "\u79e6\u6dee" +}, { + "id": "CN101190110", + "cityEn": "jianye", + "cityZh": "\u5efa\u90ba" +}, { + "id": "CN101190111", + "cityEn": "gulou", + "cityZh": "\u9f13\u697c" +}, { + "id": "CN101190112", + "cityEn": "qixia", + "cityZh": "\u6816\u971e" +}, { + "id": "CN101190113", + "cityEn": "yuhuatai", + "cityZh": "\u96e8\u82b1\u53f0" +}, { + "id": "CN101190201", + "cityEn": "wuxi", + "cityZh": "\u65e0\u9521" +}, { + "id": "CN101190202", + "cityEn": "jiangyin", + "cityZh": "\u6c5f\u9634" +}, { + "id": "CN101190203", + "cityEn": "yixing", + "cityZh": "\u5b9c\u5174" +}, { + "id": "CN101190204", + "cityEn": "xishan", + "cityZh": "\u9521\u5c71" +}, { + "id": "CN101190205", + "cityEn": "huishan", + "cityZh": "\u60e0\u5c71" +}, { + "id": "CN101190206", + "cityEn": "binhu", + "cityZh": "\u6ee8\u6e56" +}, { + "id": "CN101190207", + "cityEn": "liangxi", + "cityZh": "\u6881\u6eaa" +}, { + "id": "CN101190208", + "cityEn": "xinwu", + "cityZh": "\u65b0\u5434" +}, { + "id": "CN101190301", + "cityEn": "zhenjiang", + "cityZh": "\u9547\u6c5f" +}, { + "id": "CN101190302", + "cityEn": "danyang", + "cityZh": "\u4e39\u9633" +}, { + "id": "CN101190303", + "cityEn": "yangzhong", + "cityZh": "\u626c\u4e2d" +}, { + "id": "CN101190304", + "cityEn": "jurong", + "cityZh": "\u53e5\u5bb9" +}, { + "id": "CN101190305", + "cityEn": "dantu", + "cityZh": "\u4e39\u5f92" +}, { + "id": "CN101190306", + "cityEn": "jingkou", + "cityZh": "\u4eac\u53e3" +}, { + "id": "CN101190307", + "cityEn": "runzhou", + "cityZh": "\u6da6\u5dde" +}, { + "id": "CN101190401", + "cityEn": "suzhou", + "cityZh": "\u82cf\u5dde" +}, { + "id": "CN101190402", + "cityEn": "changshu", + "cityZh": "\u5e38\u719f" +}, { + "id": "CN101190403", + "cityEn": "zhangjiagang", + "cityZh": "\u5f20\u5bb6\u6e2f" +}, { + "id": "CN101190404", + "cityEn": "kunshan", + "cityZh": "\u6606\u5c71" +}, { + "id": "CN101190405", + "cityEn": "wuzhong", + "cityZh": "\u5434\u4e2d" +}, { + "id": "CN101190406", + "cityEn": "huqiu", + "cityZh": "\u864e\u4e18" +}, { + "id": "CN101190407", + "cityEn": "wujiang", + "cityZh": "\u5434\u6c5f" +}, { + "id": "CN101190408", + "cityEn": "taicang", + "cityZh": "\u592a\u4ed3" +}, { + "id": "CN101190409", + "cityEn": "xiangcheng", + "cityZh": "\u76f8\u57ce" +}, { + "id": "CN101190410", + "cityEn": "gusu", + "cityZh": "\u59d1\u82cf" +}, { + "id": "CN101190501", + "cityEn": "nantong", + "cityZh": "\u5357\u901a" +}, { + "id": "CN101190502", + "cityEn": "haian", + "cityZh": "\u6d77\u5b89" +}, { + "id": "CN101190503", + "cityEn": "rugao", + "cityZh": "\u5982\u768b" +}, { + "id": "CN101190504", + "cityEn": "rudong", + "cityZh": "\u5982\u4e1c" +}, { + "id": "CN101190505", + "cityEn": "chongchuan", + "cityZh": "\u5d07\u5ddd" +}, { + "id": "CN101190506", + "cityEn": "gangzha", + "cityZh": "\u6e2f\u95f8" +}, { + "id": "CN101190507", + "cityEn": "qidong", + "cityZh": "\u542f\u4e1c" +}, { + "id": "CN101190508", + "cityEn": "haimen", + "cityZh": "\u6d77\u95e8" +}, { + "id": "CN101190509", + "cityEn": "tongzhou", + "cityZh": "\u901a\u5dde" +}, { + "id": "CN101190601", + "cityEn": "yangzhou", + "cityZh": "\u626c\u5dde" +}, { + "id": "CN101190602", + "cityEn": "baoying", + "cityZh": "\u5b9d\u5e94" +}, { + "id": "CN101190603", + "cityEn": "yizheng", + "cityZh": "\u4eea\u5f81" +}, { + "id": "CN101190604", + "cityEn": "gaoyou", + "cityZh": "\u9ad8\u90ae" +}, { + "id": "CN101190605", + "cityEn": "jiangdu", + "cityZh": "\u6c5f\u90fd" +}, { + "id": "CN101190606", + "cityEn": "hanjiang", + "cityZh": "\u9097\u6c5f" +}, { + "id": "CN101190607", + "cityEn": "guangling", + "cityZh": "\u5e7f\u9675" +}, { + "id": "CN101190701", + "cityEn": "yancheng", + "cityZh": "\u76d0\u57ce" +}, { + "id": "CN101190702", + "cityEn": "xiangshui", + "cityZh": "\u54cd\u6c34" +}, { + "id": "CN101190703", + "cityEn": "binhai", + "cityZh": "\u6ee8\u6d77" +}, { + "id": "CN101190704", + "cityEn": "funing", + "cityZh": "\u961c\u5b81" +}, { + "id": "CN101190705", + "cityEn": "sheyang", + "cityZh": "\u5c04\u9633" +}, { + "id": "CN101190706", + "cityEn": "jianhu", + "cityZh": "\u5efa\u6e56" +}, { + "id": "CN101190707", + "cityEn": "dongtai", + "cityZh": "\u4e1c\u53f0" +}, { + "id": "CN101190708", + "cityEn": "dafeng", + "cityZh": "\u5927\u4e30" +}, { + "id": "CN101190709", + "cityEn": "yandu", + "cityZh": "\u76d0\u90fd" +}, { + "id": "CN101190710", + "cityEn": "tinghu", + "cityZh": "\u4ead\u6e56" +}, { + "id": "CN101190801", + "cityEn": "xuzhou", + "cityZh": "\u5f90\u5dde" +}, { + "id": "CN101190802", + "cityEn": "tongshan", + "cityZh": "\u94dc\u5c71" +}, { + "id": "CN101190803", + "cityEn": "fengxian", + "cityZh": "\u4e30\u53bf" +}, { + "id": "CN101190804", + "cityEn": "peixian", + "cityZh": "\u6c9b\u53bf" +}, { + "id": "CN101190805", + "cityEn": "pizhou", + "cityZh": "\u90b3\u5dde" +}, { + "id": "CN101190806", + "cityEn": "suining", + "cityZh": "\u7762\u5b81" +}, { + "id": "CN101190807", + "cityEn": "xinyi", + "cityZh": "\u65b0\u6c82" +}, { + "id": "CN101190808", + "cityEn": "gulou", + "cityZh": "\u9f13\u697c" +}, { + "id": "CN101190809", + "cityEn": "yunlong", + "cityZh": "\u4e91\u9f99" +}, { + "id": "CN101190810", + "cityEn": "jiawang", + "cityZh": "\u8d3e\u6c6a" +}, { + "id": "CN101190811", + "cityEn": "quanshan", + "cityZh": "\u6cc9\u5c71" +}, { + "id": "CN101190901", + "cityEn": "huaian", + "cityZh": "\u6dee\u5b89" +}, { + "id": "CN101190902", + "cityEn": "jinhu", + "cityZh": "\u91d1\u6e56" +}, { + "id": "CN101190903", + "cityEn": "xuyi", + "cityZh": "\u76f1\u7719" +}, { + "id": "CN101190904", + "cityEn": "hongze", + "cityZh": "\u6d2a\u6cfd" +}, { + "id": "CN101190905", + "cityEn": "lianshui", + "cityZh": "\u6d9f\u6c34" +}, { + "id": "CN101190906", + "cityEn": "huaiyinqu", + "cityZh": "\u6dee\u9634\u533a" +}, { + "id": "CN101190907", + "cityEn": "qinghe", + "cityZh": "\u6e05\u6cb3" +}, { + "id": "CN101190908", + "cityEn": "huaianqu", + "cityZh": "\u6dee\u5b89\u533a" +}, { + "id": "CN101190909", + "cityEn": "qingpu", + "cityZh": "\u6e05\u6d66" +}, { + "id": "CN101191001", + "cityEn": "lianyungang", + "cityZh": "\u8fde\u4e91\u6e2f" +}, { + "id": "CN101191002", + "cityEn": "donghai", + "cityZh": "\u4e1c\u6d77" +}, { + "id": "CN101191003", + "cityEn": "ganyu", + "cityZh": "\u8d63\u6986" +}, { + "id": "CN101191004", + "cityEn": "guanyun", + "cityZh": "\u704c\u4e91" +}, { + "id": "CN101191005", + "cityEn": "guannan", + "cityZh": "\u704c\u5357" +}, { + "id": "CN101191006", + "cityEn": "haizhou", + "cityZh": "\u6d77\u5dde" +}, { + "id": "CN101191101", + "cityEn": "changzhou", + "cityZh": "\u5e38\u5dde" +}, { + "id": "CN101191102", + "cityEn": "liyang", + "cityZh": "\u6ea7\u9633" +}, { + "id": "CN101191103", + "cityEn": "jintan", + "cityZh": "\u91d1\u575b" +}, { + "id": "CN101191104", + "cityEn": "wujin", + "cityZh": "\u6b66\u8fdb" +}, { + "id": "CN101191105", + "cityEn": "tianning", + "cityZh": "\u5929\u5b81" +}, { + "id": "CN101191106", + "cityEn": "zhonglou", + "cityZh": "\u949f\u697c" +}, { + "id": "CN101191107", + "cityEn": "xinbei", + "cityZh": "\u65b0\u5317" +}, { + "id": "CN101191201", + "cityEn": "taizhou", + "cityZh": "\u6cf0\u5dde" +}, { + "id": "CN101191202", + "cityEn": "xinghua", + "cityZh": "\u5174\u5316" +}, { + "id": "CN101191203", + "cityEn": "taixing", + "cityZh": "\u6cf0\u5174" +}, { + "id": "CN101191204", + "cityEn": "jiangyan", + "cityZh": "\u59dc\u5830" +}, { + "id": "CN101191205", + "cityEn": "jingjiang", + "cityZh": "\u9756\u6c5f" +}, { + "id": "CN101191206", + "cityEn": "hailing", + "cityZh": "\u6d77\u9675" +}, { + "id": "CN101191207", + "cityEn": "gaogang", + "cityZh": "\u9ad8\u6e2f" +}, { + "id": "CN101191301", + "cityEn": "suqian", + "cityZh": "\u5bbf\u8fc1" +}, { + "id": "CN101191302", + "cityEn": "shuyang", + "cityZh": "\u6cad\u9633" +}, { + "id": "CN101191303", + "cityEn": "siyang", + "cityZh": "\u6cd7\u9633" +}, { + "id": "CN101191304", + "cityEn": "sihong", + "cityZh": "\u6cd7\u6d2a" +}, { + "id": "CN101191305", + "cityEn": "suyu", + "cityZh": "\u5bbf\u8c6b" +}, { + "id": "CN101191306", + "cityEn": "sucheng", + "cityZh": "\u5bbf\u57ce" +}, { + "id": "CN101200101", + "cityEn": "wuhan", + "cityZh": "\u6b66\u6c49" +}, { + "id": "CN101200102", + "cityEn": "caidian", + "cityZh": "\u8521\u7538" +}, { + "id": "CN101200103", + "cityEn": "huangpi", + "cityZh": "\u9ec4\u9642" +}, { + "id": "CN101200104", + "cityEn": "xinzhou", + "cityZh": "\u65b0\u6d32" +}, { + "id": "CN101200105", + "cityEn": "jiangxia", + "cityZh": "\u6c5f\u590f" +}, { + "id": "CN101200106", + "cityEn": "dongxihu", + "cityZh": "\u4e1c\u897f\u6e56" +}, { + "id": "CN101200107", + "cityEn": "jiangan", + "cityZh": "\u6c5f\u5cb8" +}, { + "id": "CN101200108", + "cityEn": "jianghan", + "cityZh": "\u6c5f\u6c49" +}, { + "id": "CN101200109", + "cityEn": "qiaokou", + "cityZh": "\u785a\u53e3" +}, { + "id": "CN101200110", + "cityEn": "hanyang", + "cityZh": "\u6c49\u9633" +}, { + "id": "CN101200111", + "cityEn": "wuchang", + "cityZh": "\u6b66\u660c" +}, { + "id": "CN101200112", + "cityEn": "qingshan", + "cityZh": "\u9752\u5c71" +}, { + "id": "CN101200113", + "cityEn": "hongshan", + "cityZh": "\u6d2a\u5c71" +}, { + "id": "CN101200114", + "cityEn": "hannan", + "cityZh": "\u6c49\u5357" +}, { + "id": "CN101200201", + "cityEn": "xiangyang", + "cityZh": "\u8944\u9633" +}, { + "id": "CN101200202", + "cityEn": "xiangzhou", + "cityZh": "\u8944\u5dde" +}, { + "id": "CN101200203", + "cityEn": "baokang", + "cityZh": "\u4fdd\u5eb7" +}, { + "id": "CN101200204", + "cityEn": "nanzhang", + "cityZh": "\u5357\u6f33" +}, { + "id": "CN101200205", + "cityEn": "yicheng", + "cityZh": "\u5b9c\u57ce" +}, { + "id": "CN101200206", + "cityEn": "laohekou", + "cityZh": "\u8001\u6cb3\u53e3" +}, { + "id": "CN101200207", + "cityEn": "gucheng", + "cityZh": "\u8c37\u57ce" +}, { + "id": "CN101200208", + "cityEn": "zaoyang", + "cityZh": "\u67a3\u9633" +}, { + "id": "CN101200209", + "cityEn": "xiangcheng", + "cityZh": "\u8944\u57ce" +}, { + "id": "CN101200210", + "cityEn": "fancheng", + "cityZh": "\u6a0a\u57ce" +}, { + "id": "CN101200301", + "cityEn": "ezhou", + "cityZh": "\u9102\u5dde" +}, { + "id": "CN101200302", + "cityEn": "liangzihu", + "cityZh": "\u6881\u5b50\u6e56" +}, { + "id": "CN101200303", + "cityEn": "huarong", + "cityZh": "\u534e\u5bb9" +}, { + "id": "CN101200304", + "cityEn": "echeng", + "cityZh": "\u9102\u57ce" +}, { + "id": "CN101200401", + "cityEn": "xiaogan", + "cityZh": "\u5b5d\u611f" +}, { + "id": "CN101200402", + "cityEn": "anlu", + "cityZh": "\u5b89\u9646" +}, { + "id": "CN101200403", + "cityEn": "yunmeng", + "cityZh": "\u4e91\u68a6" +}, { + "id": "CN101200404", + "cityEn": "dawu", + "cityZh": "\u5927\u609f" +}, { + "id": "CN101200405", + "cityEn": "yingcheng", + "cityZh": "\u5e94\u57ce" +}, { + "id": "CN101200406", + "cityEn": "hanchuan", + "cityZh": "\u6c49\u5ddd" +}, { + "id": "CN101200407", + "cityEn": "xiaochang", + "cityZh": "\u5b5d\u660c" +}, { + "id": "CN101200408", + "cityEn": "xiaonan", + "cityZh": "\u5b5d\u5357" +}, { + "id": "CN101200501", + "cityEn": "huanggang", + "cityZh": "\u9ec4\u5188" +}, { + "id": "CN101200502", + "cityEn": "hongan", + "cityZh": "\u7ea2\u5b89" +}, { + "id": "CN101200503", + "cityEn": "macheng", + "cityZh": "\u9ebb\u57ce" +}, { + "id": "CN101200504", + "cityEn": "luotian", + "cityZh": "\u7f57\u7530" +}, { + "id": "CN101200505", + "cityEn": "yingshan", + "cityZh": "\u82f1\u5c71" +}, { + "id": "CN101200506", + "cityEn": "xishui", + "cityZh": "\u6d60\u6c34" +}, { + "id": "CN101200507", + "cityEn": "qichun", + "cityZh": "\u8572\u6625" +}, { + "id": "CN101200508", + "cityEn": "huangmei", + "cityZh": "\u9ec4\u6885" +}, { + "id": "CN101200509", + "cityEn": "wuxue", + "cityZh": "\u6b66\u7a74" +}, { + "id": "CN101200510", + "cityEn": "tuanfeng", + "cityZh": "\u56e2\u98ce" +}, { + "id": "CN101200511", + "cityEn": "huangzhou", + "cityZh": "\u9ec4\u5dde" +}, { + "id": "CN101200601", + "cityEn": "huangshi", + "cityZh": "\u9ec4\u77f3" +}, { + "id": "CN101200602", + "cityEn": "daye", + "cityZh": "\u5927\u51b6" +}, { + "id": "CN101200603", + "cityEn": "yangxin", + "cityZh": "\u9633\u65b0" +}, { + "id": "CN101200604", + "cityEn": "tieshan", + "cityZh": "\u94c1\u5c71" +}, { + "id": "CN101200605", + "cityEn": "xialu", + "cityZh": "\u4e0b\u9646" +}, { + "id": "CN101200606", + "cityEn": "xisaishan", + "cityZh": "\u897f\u585e\u5c71" +}, { + "id": "CN101200607", + "cityEn": "huangshigang", + "cityZh": "\u9ec4\u77f3\u6e2f" +}, { + "id": "CN101200701", + "cityEn": "xianning", + "cityZh": "\u54b8\u5b81" +}, { + "id": "CN101200702", + "cityEn": "chibi", + "cityZh": "\u8d64\u58c1" +}, { + "id": "CN101200703", + "cityEn": "jiayu", + "cityZh": "\u5609\u9c7c" +}, { + "id": "CN101200704", + "cityEn": "chongyang", + "cityZh": "\u5d07\u9633" +}, { + "id": "CN101200705", + "cityEn": "tongcheng", + "cityZh": "\u901a\u57ce" +}, { + "id": "CN101200706", + "cityEn": "tongshan", + "cityZh": "\u901a\u5c71" +}, { + "id": "CN101200707", + "cityEn": "xianan", + "cityZh": "\u54b8\u5b89" +}, { + "id": "CN101200801", + "cityEn": "jingzhou", + "cityZh": "\u8346\u5dde" +}, { + "id": "CN101200802", + "cityEn": "jiangling", + "cityZh": "\u6c5f\u9675" +}, { + "id": "CN101200803", + "cityEn": "gongan", + "cityZh": "\u516c\u5b89" +}, { + "id": "CN101200804", + "cityEn": "shishou", + "cityZh": "\u77f3\u9996" +}, { + "id": "CN101200805", + "cityEn": "jianli", + "cityZh": "\u76d1\u5229" +}, { + "id": "CN101200806", + "cityEn": "honghu", + "cityZh": "\u6d2a\u6e56" +}, { + "id": "CN101200807", + "cityEn": "songzi", + "cityZh": "\u677e\u6ecb" +}, { + "id": "CN101200808", + "cityEn": "shashi", + "cityZh": "\u6c99\u5e02" +}, { + "id": "CN101200901", + "cityEn": "yichang", + "cityZh": "\u5b9c\u660c" +}, { + "id": "CN101200902", + "cityEn": "yuanan", + "cityZh": "\u8fdc\u5b89" +}, { + "id": "CN101200903", + "cityEn": "zigui", + "cityZh": "\u79ed\u5f52" +}, { + "id": "CN101200904", + "cityEn": "xingshan", + "cityZh": "\u5174\u5c71" +}, { + "id": "CN101200905", + "cityEn": "xiling", + "cityZh": "\u897f\u9675" +}, { + "id": "CN101200906", + "cityEn": "wufeng", + "cityZh": "\u4e94\u5cf0" +}, { + "id": "CN101200907", + "cityEn": "dangyang", + "cityZh": "\u5f53\u9633" +}, { + "id": "CN101200908", + "cityEn": "changyang", + "cityZh": "\u957f\u9633" +}, { + "id": "CN101200909", + "cityEn": "yidu", + "cityZh": "\u5b9c\u90fd" +}, { + "id": "CN101200910", + "cityEn": "zhijiang", + "cityZh": "\u679d\u6c5f" +}, { + "id": "CN101200912", + "cityEn": "yiling", + "cityZh": "\u5937\u9675" +}, { + "id": "CN101200913", + "cityEn": "wujiagang", + "cityZh": "\u4f0d\u5bb6\u5c97" +}, { + "id": "CN101200914", + "cityEn": "dianjun", + "cityZh": "\u70b9\u519b" +}, { + "id": "CN101200915", + "cityEn": "xiaoting", + "cityZh": "\u7307\u4ead" +}, { + "id": "CN101201001", + "cityEn": "enshi", + "cityZh": "\u6069\u65bd" +}, { + "id": "CN101201002", + "cityEn": "lichuan", + "cityZh": "\u5229\u5ddd" +}, { + "id": "CN101201003", + "cityEn": "jianshi", + "cityZh": "\u5efa\u59cb" +}, { + "id": "CN101201004", + "cityEn": "xianfeng", + "cityZh": "\u54b8\u4e30" +}, { + "id": "CN101201005", + "cityEn": "xuanen", + "cityZh": "\u5ba3\u6069" +}, { + "id": "CN101201006", + "cityEn": "hefeng", + "cityZh": "\u9e64\u5cf0" +}, { + "id": "CN101201007", + "cityEn": "laifeng", + "cityZh": "\u6765\u51e4" +}, { + "id": "CN101201008", + "cityEn": "badong", + "cityZh": "\u5df4\u4e1c" +}, { + "id": "CN101201101", + "cityEn": "shiyan", + "cityZh": "\u5341\u5830" +}, { + "id": "CN101201102", + "cityEn": "zhuxi", + "cityZh": "\u7af9\u6eaa" +}, { + "id": "CN101201103", + "cityEn": "yunxi", + "cityZh": "\u90e7\u897f" +}, { + "id": "CN101201104", + "cityEn": "yunyang", + "cityZh": "\u90e7\u9633" +}, { + "id": "CN101201105", + "cityEn": "zhushan", + "cityZh": "\u7af9\u5c71" +}, { + "id": "CN101201106", + "cityEn": "fangxian", + "cityZh": "\u623f\u53bf" +}, { + "id": "CN101201107", + "cityEn": "danjiangkou", + "cityZh": "\u4e39\u6c5f\u53e3" +}, { + "id": "CN101201108", + "cityEn": "maojian", + "cityZh": "\u8305\u7bad" +}, { + "id": "CN101201109", + "cityEn": "zhangwan", + "cityZh": "\u5f20\u6e7e" +}, { + "id": "CN101201201", + "cityEn": "shennongjia", + "cityZh": "\u795e\u519c\u67b6" +}, { + "id": "CN101201301", + "cityEn": "suizhou", + "cityZh": "\u968f\u5dde" +}, { + "id": "CN101201302", + "cityEn": "guangshui", + "cityZh": "\u5e7f\u6c34" +}, { + "id": "CN101201303", + "cityEn": "zengdou", + "cityZh": "\u66fe\u90fd" +}, { + "id": "CN101201304", + "cityEn": "suixian", + "cityZh": "\u968f\u53bf" +}, { + "id": "CN101201401", + "cityEn": "jingmen", + "cityZh": "\u8346\u95e8" +}, { + "id": "CN101201402", + "cityEn": "zhongxiang", + "cityZh": "\u949f\u7965" +}, { + "id": "CN101201403", + "cityEn": "jingshan", + "cityZh": "\u4eac\u5c71" +}, { + "id": "CN101201404", + "cityEn": "duodao", + "cityZh": "\u6387\u5200" +}, { + "id": "CN101201405", + "cityEn": "shayang", + "cityZh": "\u6c99\u6d0b" +}, { + "id": "CN101201406", + "cityEn": "dongbao", + "cityZh": "\u4e1c\u5b9d" +}, { + "id": "CN101201501", + "cityEn": "tianmen", + "cityZh": "\u5929\u95e8" +}, { + "id": "CN101201601", + "cityEn": "xiantao", + "cityZh": "\u4ed9\u6843" +}, { + "id": "CN101201701", + "cityEn": "qianjiang", + "cityZh": "\u6f5c\u6c5f" +}, { + "id": "CN101210101", + "cityEn": "hangzhou", + "cityZh": "\u676d\u5dde" +}, { + "id": "CN101210102", + "cityEn": "xiaoshan", + "cityZh": "\u8427\u5c71" +}, { + "id": "CN101210103", + "cityEn": "tonglu", + "cityZh": "\u6850\u5e90" +}, { + "id": "CN101210104", + "cityEn": "chunan", + "cityZh": "\u6df3\u5b89" +}, { + "id": "CN101210105", + "cityEn": "jiande", + "cityZh": "\u5efa\u5fb7" +}, { + "id": "CN101210106", + "cityEn": "yuhang", + "cityZh": "\u4f59\u676d" +}, { + "id": "CN101210107", + "cityEn": "linan", + "cityZh": "\u4e34\u5b89" +}, { + "id": "CN101210108", + "cityEn": "fuyang", + "cityZh": "\u5bcc\u9633" +}, { + "id": "CN101210109", + "cityEn": "shangcheng", + "cityZh": "\u4e0a\u57ce" +}, { + "id": "CN101210110", + "cityEn": "xiacheng", + "cityZh": "\u4e0b\u57ce" +}, { + "id": "CN101210111", + "cityEn": "jianggan", + "cityZh": "\u6c5f\u5e72" +}, { + "id": "CN101210112", + "cityEn": "gongshu", + "cityZh": "\u62f1\u5885" +}, { + "id": "CN101210113", + "cityEn": "xihu", + "cityZh": "\u897f\u6e56" +}, { + "id": "CN101210114", + "cityEn": "binjiang", + "cityZh": "\u6ee8\u6c5f" +}, { + "id": "CN101210201", + "cityEn": "huzhou", + "cityZh": "\u6e56\u5dde" +}, { + "id": "CN101210202", + "cityEn": "changxing", + "cityZh": "\u957f\u5174" +}, { + "id": "CN101210203", + "cityEn": "anji", + "cityZh": "\u5b89\u5409" +}, { + "id": "CN101210204", + "cityEn": "deqing", + "cityZh": "\u5fb7\u6e05" +}, { + "id": "CN101210205", + "cityEn": "wuxing", + "cityZh": "\u5434\u5174" +}, { + "id": "CN101210206", + "cityEn": "nanxun", + "cityZh": "\u5357\u6d54" +}, { + "id": "CN101210301", + "cityEn": "jiaxing", + "cityZh": "\u5609\u5174" +}, { + "id": "CN101210302", + "cityEn": "jiashan", + "cityZh": "\u5609\u5584" +}, { + "id": "CN101210303", + "cityEn": "haining", + "cityZh": "\u6d77\u5b81" +}, { + "id": "CN101210304", + "cityEn": "tongxiang", + "cityZh": "\u6850\u4e61" +}, { + "id": "CN101210305", + "cityEn": "pinghu", + "cityZh": "\u5e73\u6e56" +}, { + "id": "CN101210306", + "cityEn": "haiyan", + "cityZh": "\u6d77\u76d0" +}, { + "id": "CN101210307", + "cityEn": "nanhu", + "cityZh": "\u5357\u6e56" +}, { + "id": "CN101210308", + "cityEn": "xiuzhou", + "cityZh": "\u79c0\u6d32" +}, { + "id": "CN101210401", + "cityEn": "ningbo", + "cityZh": "\u5b81\u6ce2" +}, { + "id": "CN101210402", + "cityEn": "haishu", + "cityZh": "\u6d77\u66d9" +}, { + "id": "CN101210403", + "cityEn": "cixi", + "cityZh": "\u6148\u6eaa" +}, { + "id": "CN101210404", + "cityEn": "yuyao", + "cityZh": "\u4f59\u59da" +}, { + "id": "CN101210405", + "cityEn": "fenghua", + "cityZh": "\u5949\u5316" +}, { + "id": "CN101210406", + "cityEn": "xiangshan", + "cityZh": "\u8c61\u5c71" +}, { + "id": "CN101210407", + "cityEn": "jiangdong", + "cityZh": "\u6c5f\u4e1c" +}, { + "id": "CN101210408", + "cityEn": "ninghai", + "cityZh": "\u5b81\u6d77" +}, { + "id": "CN101210409", + "cityEn": "jiangbei", + "cityZh": "\u6c5f\u5317" +}, { + "id": "CN101210410", + "cityEn": "beilun", + "cityZh": "\u5317\u4ed1" +}, { + "id": "CN101210411", + "cityEn": "yinzhou", + "cityZh": "\u911e\u5dde" +}, { + "id": "CN101210412", + "cityEn": "zhenhai", + "cityZh": "\u9547\u6d77" +}, { + "id": "CN101210501", + "cityEn": "yuecheng", + "cityZh": "\u8d8a\u57ce" +}, { + "id": "CN101210502", + "cityEn": "zhuji", + "cityZh": "\u8bf8\u66a8" +}, { + "id": "CN101210503", + "cityEn": "shangyu", + "cityZh": "\u4e0a\u865e" +}, { + "id": "CN101210504", + "cityEn": "xinchang", + "cityZh": "\u65b0\u660c" +}, { + "id": "CN101210505", + "cityEn": "shengzhou", + "cityZh": "\u5d4a\u5dde" +}, { + "id": "CN101210506", + "cityEn": "keqiao", + "cityZh": "\u67ef\u6865" +}, { + "id": "CN101210507", + "cityEn": "shaoxing", + "cityZh": "\u7ecd\u5174" +}, { + "id": "CN101210601", + "cityEn": "taizhou", + "cityZh": "\u53f0\u5dde" +}, { + "id": "CN101210603", + "cityEn": "yuhuan", + "cityZh": "\u7389\u73af" +}, { + "id": "CN101210604", + "cityEn": "sanmen", + "cityZh": "\u4e09\u95e8" +}, { + "id": "CN101210605", + "cityEn": "tiantai", + "cityZh": "\u5929\u53f0" +}, { + "id": "CN101210606", + "cityEn": "xianju", + "cityZh": "\u4ed9\u5c45" +}, { + "id": "CN101210607", + "cityEn": "wenling", + "cityZh": "\u6e29\u5cad" +}, { + "id": "CN101210610", + "cityEn": "linhai", + "cityZh": "\u4e34\u6d77" +}, { + "id": "CN101210611", + "cityEn": "jiaojiang", + "cityZh": "\u6912\u6c5f" +}, { + "id": "CN101210612", + "cityEn": "huangyan", + "cityZh": "\u9ec4\u5ca9" +}, { + "id": "CN101210613", + "cityEn": "luqiao", + "cityZh": "\u8def\u6865" +}, { + "id": "CN101210701", + "cityEn": "wenzhou", + "cityZh": "\u6e29\u5dde" +}, { + "id": "CN101210702", + "cityEn": "taishun", + "cityZh": "\u6cf0\u987a" +}, { + "id": "CN101210703", + "cityEn": "wencheng", + "cityZh": "\u6587\u6210" +}, { + "id": "CN101210704", + "cityEn": "pingyang", + "cityZh": "\u5e73\u9633" +}, { + "id": "CN101210705", + "cityEn": "ruian", + "cityZh": "\u745e\u5b89" +}, { + "id": "CN101210706", + "cityEn": "dongtou", + "cityZh": "\u6d1e\u5934" +}, { + "id": "CN101210707", + "cityEn": "yueqing", + "cityZh": "\u4e50\u6e05" +}, { + "id": "CN101210708", + "cityEn": "yongjia", + "cityZh": "\u6c38\u5609" +}, { + "id": "CN101210709", + "cityEn": "cangnan", + "cityZh": "\u82cd\u5357" +}, { + "id": "CN101210710", + "cityEn": "lucheng", + "cityZh": "\u9e7f\u57ce" +}, { + "id": "CN101210711", + "cityEn": "longwan", + "cityZh": "\u9f99\u6e7e" +}, { + "id": "CN101210712", + "cityEn": "ouhai", + "cityZh": "\u74ef\u6d77" +}, { + "id": "CN101210801", + "cityEn": "lishui", + "cityZh": "\u4e3d\u6c34" +}, { + "id": "CN101210802", + "cityEn": "suichang", + "cityZh": "\u9042\u660c" +}, { + "id": "CN101210803", + "cityEn": "longquan", + "cityZh": "\u9f99\u6cc9" +}, { + "id": "CN101210804", + "cityEn": "jinyun", + "cityZh": "\u7f19\u4e91" +}, { + "id": "CN101210805", + "cityEn": "qingtian", + "cityZh": "\u9752\u7530" +}, { + "id": "CN101210806", + "cityEn": "yunhe", + "cityZh": "\u4e91\u548c" +}, { + "id": "CN101210807", + "cityEn": "qingyuan", + "cityZh": "\u5e86\u5143" +}, { + "id": "CN101210808", + "cityEn": "songyang", + "cityZh": "\u677e\u9633" +}, { + "id": "CN101210809", + "cityEn": "jingning", + "cityZh": "\u666f\u5b81" +}, { + "id": "CN101210810", + "cityEn": "liandou", + "cityZh": "\u83b2\u90fd" +}, { + "id": "CN101210901", + "cityEn": "jinhua", + "cityZh": "\u91d1\u534e" +}, { + "id": "CN101210902", + "cityEn": "pujiang", + "cityZh": "\u6d66\u6c5f" +}, { + "id": "CN101210903", + "cityEn": "lanxi", + "cityZh": "\u5170\u6eaa" +}, { + "id": "CN101210904", + "cityEn": "yiwu", + "cityZh": "\u4e49\u4e4c" +}, { + "id": "CN101210905", + "cityEn": "dongyang", + "cityZh": "\u4e1c\u9633" +}, { + "id": "CN101210906", + "cityEn": "wuyi", + "cityZh": "\u6b66\u4e49" +}, { + "id": "CN101210907", + "cityEn": "yongkang", + "cityZh": "\u6c38\u5eb7" +}, { + "id": "CN101210908", + "cityEn": "panan", + "cityZh": "\u78d0\u5b89" +}, { + "id": "CN101210909", + "cityEn": "wucheng", + "cityZh": "\u5a7a\u57ce" +}, { + "id": "CN101210910", + "cityEn": "jindong", + "cityZh": "\u91d1\u4e1c" +}, { + "id": "CN101211001", + "cityEn": "quzhou", + "cityZh": "\u8862\u5dde" +}, { + "id": "CN101211002", + "cityEn": "changshan", + "cityZh": "\u5e38\u5c71" +}, { + "id": "CN101211003", + "cityEn": "kaihua", + "cityZh": "\u5f00\u5316" +}, { + "id": "CN101211004", + "cityEn": "longyou", + "cityZh": "\u9f99\u6e38" +}, { + "id": "CN101211005", + "cityEn": "jiangshan", + "cityZh": "\u6c5f\u5c71" +}, { + "id": "CN101211006", + "cityEn": "qujiang", + "cityZh": "\u8862\u6c5f" +}, { + "id": "CN101211007", + "cityEn": "kecheng", + "cityZh": "\u67ef\u57ce" +}, { + "id": "CN101211101", + "cityEn": "zhoushan", + "cityZh": "\u821f\u5c71" +}, { + "id": "CN101211102", + "cityEn": "shengsi", + "cityZh": "\u5d4a\u6cd7" +}, { + "id": "CN101211104", + "cityEn": "daishan", + "cityZh": "\u5cb1\u5c71" +}, { + "id": "CN101211105", + "cityEn": "putuo", + "cityZh": "\u666e\u9640" +}, { + "id": "CN101211106", + "cityEn": "dinghai", + "cityZh": "\u5b9a\u6d77" +}, { + "id": "CN101220101", + "cityEn": "hefei", + "cityZh": "\u5408\u80a5" +}, { + "id": "CN101220102", + "cityEn": "changfeng", + "cityZh": "\u957f\u4e30" +}, { + "id": "CN101220103", + "cityEn": "feidong", + "cityZh": "\u80a5\u4e1c" +}, { + "id": "CN101220104", + "cityEn": "feixi", + "cityZh": "\u80a5\u897f" +}, { + "id": "CN101220105", + "cityEn": "chaohu", + "cityZh": "\u5de2\u6e56" +}, { + "id": "CN101220106", + "cityEn": "lujiang", + "cityZh": "\u5e90\u6c5f" +}, { + "id": "CN101220107", + "cityEn": "yaohai", + "cityZh": "\u7476\u6d77" +}, { + "id": "CN101220108", + "cityEn": "luyang", + "cityZh": "\u5e90\u9633" +}, { + "id": "CN101220109", + "cityEn": "shushan", + "cityZh": "\u8700\u5c71" +}, { + "id": "CN101220110", + "cityEn": "baohe", + "cityZh": "\u5305\u6cb3" +}, { + "id": "CN101220201", + "cityEn": "bengbu", + "cityZh": "\u868c\u57e0" +}, { + "id": "CN101220202", + "cityEn": "huaiyuan", + "cityZh": "\u6000\u8fdc" +}, { + "id": "CN101220203", + "cityEn": "guzhen", + "cityZh": "\u56fa\u9547" +}, { + "id": "CN101220204", + "cityEn": "wuhe", + "cityZh": "\u4e94\u6cb3" +}, { + "id": "CN101220205", + "cityEn": "longzihu", + "cityZh": "\u9f99\u5b50\u6e56" +}, { + "id": "CN101220206", + "cityEn": "bangshan", + "cityZh": "\u868c\u5c71" +}, { + "id": "CN101220207", + "cityEn": "yuhui", + "cityZh": "\u79b9\u4f1a" +}, { + "id": "CN101220208", + "cityEn": "huaishang", + "cityZh": "\u6dee\u4e0a" +}, { + "id": "CN101220301", + "cityEn": "wuhu", + "cityZh": "\u829c\u6e56" +}, { + "id": "CN101220302", + "cityEn": "fanyang", + "cityZh": "\u7e41\u660c" +}, { + "id": "CN101220303", + "cityEn": "wuhuxian", + "cityZh": "\u829c\u6e56\u53bf" +}, { + "id": "CN101220304", + "cityEn": "nanling", + "cityZh": "\u5357\u9675" +}, { + "id": "CN101220305", + "cityEn": "wuwei", + "cityZh": "\u65e0\u4e3a" +}, { + "id": "CN101220306", + "cityEn": "jinghu", + "cityZh": "\u955c\u6e56" +}, { + "id": "CN101220307", + "cityEn": "yijiang", + "cityZh": "\u5f0b\u6c5f" +}, { + "id": "CN101220308", + "cityEn": "jiujiang", + "cityZh": "\u9e20\u6c5f" +}, { + "id": "CN101220309", + "cityEn": "sanshan", + "cityZh": "\u4e09\u5c71" +}, { + "id": "CN101220401", + "cityEn": "huainan", + "cityZh": "\u6dee\u5357" +}, { + "id": "CN101220402", + "cityEn": "fengtai", + "cityZh": "\u51e4\u53f0" +}, { + "id": "CN101220403", + "cityEn": "panji", + "cityZh": "\u6f58\u96c6" +}, { + "id": "CN101220404", + "cityEn": "datong", + "cityZh": "\u5927\u901a" +}, { + "id": "CN101220405", + "cityEn": "tianjiaan", + "cityZh": "\u7530\u5bb6\u5eb5" +}, { + "id": "CN101220406", + "cityEn": "xiejiaji", + "cityZh": "\u8c22\u5bb6\u96c6" +}, { + "id": "CN101220407", + "cityEn": "bagongshan", + "cityZh": "\u516b\u516c\u5c71" +}, { + "id": "CN101220408", + "cityEn": "shouxian", + "cityZh": "\u5bff\u53bf" +}, { + "id": "CN101220501", + "cityEn": "maanshan", + "cityZh": "\u9a6c\u978d\u5c71" +}, { + "id": "CN101220502", + "cityEn": "dangtu", + "cityZh": "\u5f53\u6d82" +}, { + "id": "CN101220503", + "cityEn": "hanshan", + "cityZh": "\u542b\u5c71" +}, { + "id": "CN101220504", + "cityEn": "hexian", + "cityZh": "\u548c\u53bf" +}, { + "id": "CN101220505", + "cityEn": "huashan", + "cityZh": "\u82b1\u5c71" +}, { + "id": "CN101220506", + "cityEn": "yushan", + "cityZh": "\u96e8\u5c71" +}, { + "id": "CN101220507", + "cityEn": "bowang", + "cityZh": "\u535a\u671b" +}, { + "id": "CN101220601", + "cityEn": "anqing", + "cityZh": "\u5b89\u5e86" +}, { + "id": "CN101220603", + "cityEn": "taihu", + "cityZh": "\u592a\u6e56" +}, { + "id": "CN101220604", + "cityEn": "qianshan", + "cityZh": "\u6f5c\u5c71" +}, { + "id": "CN101220605", + "cityEn": "huaining", + "cityZh": "\u6000\u5b81" +}, { + "id": "CN101220606", + "cityEn": "susong", + "cityZh": "\u5bbf\u677e" +}, { + "id": "CN101220607", + "cityEn": "wangjiang", + "cityZh": "\u671b\u6c5f" +}, { + "id": "CN101220608", + "cityEn": "yuexi", + "cityZh": "\u5cb3\u897f" +}, { + "id": "CN101220609", + "cityEn": "tongcheng", + "cityZh": "\u6850\u57ce" +}, { + "id": "CN101220610", + "cityEn": "yingjiang", + "cityZh": "\u8fce\u6c5f" +}, { + "id": "CN101220611", + "cityEn": "daguan", + "cityZh": "\u5927\u89c2" +}, { + "id": "CN101220612", + "cityEn": "yixiu", + "cityZh": "\u5b9c\u79c0" +}, { + "id": "CN101220701", + "cityEn": "suzhou", + "cityZh": "\u5bbf\u5dde" +}, { + "id": "CN101220702", + "cityEn": "dangshan", + "cityZh": "\u7800\u5c71" +}, { + "id": "CN101220703", + "cityEn": "lingbi", + "cityZh": "\u7075\u74a7" +}, { + "id": "CN101220704", + "cityEn": "sixian", + "cityZh": "\u6cd7\u53bf" +}, { + "id": "CN101220705", + "cityEn": "xiaoxian", + "cityZh": "\u8427\u53bf" +}, { + "id": "CN101220706", + "cityEn": "yongqiao", + "cityZh": "\u57c7\u6865" +}, { + "id": "CN101220801", + "cityEn": "fuyang", + "cityZh": "\u961c\u9633" +}, { + "id": "CN101220802", + "cityEn": "funan", + "cityZh": "\u961c\u5357" +}, { + "id": "CN101220803", + "cityEn": "yingshang", + "cityZh": "\u988d\u4e0a" +}, { + "id": "CN101220804", + "cityEn": "linquan", + "cityZh": "\u4e34\u6cc9" +}, { + "id": "CN101220805", + "cityEn": "jieshou", + "cityZh": "\u754c\u9996" +}, { + "id": "CN101220806", + "cityEn": "taihe", + "cityZh": "\u592a\u548c" +}, { + "id": "CN101220807", + "cityEn": "yingzhou", + "cityZh": "\u988d\u5dde" +}, { + "id": "CN101220808", + "cityEn": "yingdong", + "cityZh": "\u988d\u4e1c" +}, { + "id": "CN101220809", + "cityEn": "yingquan", + "cityZh": "\u988d\u6cc9" +}, { + "id": "CN101220901", + "cityEn": "bozhou", + "cityZh": "\u4eb3\u5dde" +}, { + "id": "CN101220902", + "cityEn": "guoyang", + "cityZh": "\u6da1\u9633" +}, { + "id": "CN101220903", + "cityEn": "lixin", + "cityZh": "\u5229\u8f9b" +}, { + "id": "CN101220904", + "cityEn": "mengcheng", + "cityZh": "\u8499\u57ce" +}, { + "id": "CN101220905", + "cityEn": "qiaocheng", + "cityZh": "\u8c2f\u57ce" +}, { + "id": "CN101221001", + "cityEn": "huangshan", + "cityZh": "\u9ec4\u5c71" +}, { + "id": "CN101221002", + "cityEn": "huangshanqu", + "cityZh": "\u9ec4\u5c71\u533a" +}, { + "id": "CN101221003", + "cityEn": "tunxi", + "cityZh": "\u5c6f\u6eaa" +}, { + "id": "CN101221004", + "cityEn": "qimen", + "cityZh": "\u7941\u95e8" +}, { + "id": "CN101221005", + "cityEn": "yixian", + "cityZh": "\u9edf\u53bf" +}, { + "id": "CN101221006", + "cityEn": "shexian", + "cityZh": "\u6b59\u53bf" +}, { + "id": "CN101221007", + "cityEn": "xiuning", + "cityZh": "\u4f11\u5b81" +}, { + "id": "CN101221009", + "cityEn": "huizhou", + "cityZh": "\u5fbd\u5dde" +}, { + "id": "CN101221101", + "cityEn": "chuzhou", + "cityZh": "\u6ec1\u5dde" +}, { + "id": "CN101221102", + "cityEn": "fengyang", + "cityZh": "\u51e4\u9633" +}, { + "id": "CN101221103", + "cityEn": "mingguang", + "cityZh": "\u660e\u5149" +}, { + "id": "CN101221104", + "cityEn": "dingyuan", + "cityZh": "\u5b9a\u8fdc" +}, { + "id": "CN101221105", + "cityEn": "quanjiao", + "cityZh": "\u5168\u6912" +}, { + "id": "CN101221106", + "cityEn": "laian", + "cityZh": "\u6765\u5b89" +}, { + "id": "CN101221107", + "cityEn": "tianchang", + "cityZh": "\u5929\u957f" +}, { + "id": "CN101221108", + "cityEn": "langya", + "cityZh": "\u7405\u740a" +}, { + "id": "CN101221109", + "cityEn": "nanqiao", + "cityZh": "\u5357\u8c2f" +}, { + "id": "CN101221201", + "cityEn": "huaibei", + "cityZh": "\u6dee\u5317" +}, { + "id": "CN101221202", + "cityEn": "suixi", + "cityZh": "\u6fc9\u6eaa" +}, { + "id": "CN101221203", + "cityEn": "duji", + "cityZh": "\u675c\u96c6" +}, { + "id": "CN101221204", + "cityEn": "xiangshan", + "cityZh": "\u76f8\u5c71" +}, { + "id": "CN101221205", + "cityEn": "lieshan", + "cityZh": "\u70c8\u5c71" +}, { + "id": "CN101221301", + "cityEn": "tongling", + "cityZh": "\u94dc\u9675" +}, { + "id": "CN101221302", + "cityEn": "tongguan", + "cityZh": "\u94dc\u5b98" +}, { + "id": "CN101221303", + "cityEn": "yian", + "cityZh": "\u4e49\u5b89" +}, { + "id": "CN101221304", + "cityEn": "jiaoqu", + "cityZh": "\u90ca\u533a" +}, { + "id": "CN101221305", + "cityEn": "zongyang", + "cityZh": "\u679e\u9633" +}, { + "id": "CN101221401", + "cityEn": "xuancheng", + "cityZh": "\u5ba3\u57ce" +}, { + "id": "CN101221402", + "cityEn": "jingxian", + "cityZh": "\u6cfe\u53bf" +}, { + "id": "CN101221403", + "cityEn": "jingde", + "cityZh": "\u65cc\u5fb7" +}, { + "id": "CN101221404", + "cityEn": "ningguo", + "cityZh": "\u5b81\u56fd" +}, { + "id": "CN101221405", + "cityEn": "jixi", + "cityZh": "\u7ee9\u6eaa" +}, { + "id": "CN101221406", + "cityEn": "guangde", + "cityZh": "\u5e7f\u5fb7" +}, { + "id": "CN101221407", + "cityEn": "langxi", + "cityZh": "\u90ce\u6eaa" +}, { + "id": "CN101221408", + "cityEn": "xuanzhou", + "cityZh": "\u5ba3\u5dde" +}, { + "id": "CN101221501", + "cityEn": "luan", + "cityZh": "\u516d\u5b89" +}, { + "id": "CN101221502", + "cityEn": "huoqiu", + "cityZh": "\u970d\u90b1" +}, { + "id": "CN101221504", + "cityEn": "jinan", + "cityZh": "\u91d1\u5b89" +}, { + "id": "CN101221505", + "cityEn": "jinzhai", + "cityZh": "\u91d1\u5be8" +}, { + "id": "CN101221506", + "cityEn": "huoshan", + "cityZh": "\u970d\u5c71" +}, { + "id": "CN101221507", + "cityEn": "shucheng", + "cityZh": "\u8212\u57ce" +}, { + "id": "CN101221508", + "cityEn": "yuan", + "cityZh": "\u88d5\u5b89" +}, { + "id": "CN101221509", + "cityEn": "yeji", + "cityZh": "\u53f6\u96c6" +}, { + "id": "CN101221701", + "cityEn": "chizhou", + "cityZh": "\u6c60\u5dde" +}, { + "id": "CN101221702", + "cityEn": "dongzhi", + "cityZh": "\u4e1c\u81f3" +}, { + "id": "CN101221703", + "cityEn": "qingyang", + "cityZh": "\u9752\u9633" +}, { + "id": "CN101221704", + "cityEn": "jiuhuashan", + "cityZh": "\u4e5d\u534e\u5c71" +}, { + "id": "CN101221705", + "cityEn": "shitai", + "cityZh": "\u77f3\u53f0" +}, { + "id": "CN101221706", + "cityEn": "guichi", + "cityZh": "\u8d35\u6c60" +}, { + "id": "CN101230101", + "cityEn": "fuzhou", + "cityZh": "\u798f\u5dde" +}, { + "id": "CN101230102", + "cityEn": "minqing", + "cityZh": "\u95fd\u6e05" +}, { + "id": "CN101230103", + "cityEn": "minhou", + "cityZh": "\u95fd\u4faf" +}, { + "id": "CN101230104", + "cityEn": "luoyuan", + "cityZh": "\u7f57\u6e90" +}, { + "id": "CN101230105", + "cityEn": "lianjiang", + "cityZh": "\u8fde\u6c5f" +}, { + "id": "CN101230106", + "cityEn": "gulou", + "cityZh": "\u9f13\u697c" +}, { + "id": "CN101230107", + "cityEn": "yongtai", + "cityZh": "\u6c38\u6cf0" +}, { + "id": "CN101230108", + "cityEn": "pingtan", + "cityZh": "\u5e73\u6f6d" +}, { + "id": "CN101230109", + "cityEn": "taijiang", + "cityZh": "\u53f0\u6c5f" +}, { + "id": "CN101230110", + "cityEn": "changle", + "cityZh": "\u957f\u4e50" +}, { + "id": "CN101230111", + "cityEn": "fuqing", + "cityZh": "\u798f\u6e05" +}, { + "id": "CN101230112", + "cityEn": "cangshan", + "cityZh": "\u4ed3\u5c71" +}, { + "id": "CN101230113", + "cityEn": "mawei", + "cityZh": "\u9a6c\u5c3e" +}, { + "id": "CN101230114", + "cityEn": "jinan", + "cityZh": "\u664b\u5b89" +}, { + "id": "CN101230201", + "cityEn": "xiamen", + "cityZh": "\u53a6\u95e8" +}, { + "id": "CN101230202", + "cityEn": "tongan", + "cityZh": "\u540c\u5b89" +}, { + "id": "CN101230203", + "cityEn": "siming", + "cityZh": "\u601d\u660e" +}, { + "id": "CN101230204", + "cityEn": "haicang", + "cityZh": "\u6d77\u6ca7" +}, { + "id": "CN101230205", + "cityEn": "huli", + "cityZh": "\u6e56\u91cc" +}, { + "id": "CN101230206", + "cityEn": "jimei", + "cityZh": "\u96c6\u7f8e" +}, { + "id": "CN101230207", + "cityEn": "xiangan", + "cityZh": "\u7fd4\u5b89" +}, { + "id": "CN101230301", + "cityEn": "ningde", + "cityZh": "\u5b81\u5fb7" +}, { + "id": "CN101230302", + "cityEn": "gutian", + "cityZh": "\u53e4\u7530" +}, { + "id": "CN101230303", + "cityEn": "xiapu", + "cityZh": "\u971e\u6d66" +}, { + "id": "CN101230304", + "cityEn": "shouning", + "cityZh": "\u5bff\u5b81" +}, { + "id": "CN101230305", + "cityEn": "zhouning", + "cityZh": "\u5468\u5b81" +}, { + "id": "CN101230306", + "cityEn": "fuan", + "cityZh": "\u798f\u5b89" +}, { + "id": "CN101230307", + "cityEn": "zherong", + "cityZh": "\u67d8\u8363" +}, { + "id": "CN101230308", + "cityEn": "fuding", + "cityZh": "\u798f\u9f0e" +}, { + "id": "CN101230309", + "cityEn": "pingnan", + "cityZh": "\u5c4f\u5357" +}, { + "id": "CN101230310", + "cityEn": "jiaocheng", + "cityZh": "\u8549\u57ce" +}, { + "id": "CN101230401", + "cityEn": "putian", + "cityZh": "\u8386\u7530" +}, { + "id": "CN101230402", + "cityEn": "xianyou", + "cityZh": "\u4ed9\u6e38" +}, { + "id": "CN101230404", + "cityEn": "hanjiang", + "cityZh": "\u6db5\u6c5f" +}, { + "id": "CN101230405", + "cityEn": "xiuyu", + "cityZh": "\u79c0\u5c7f" +}, { + "id": "CN101230406", + "cityEn": "licheng", + "cityZh": "\u8354\u57ce" +}, { + "id": "CN101230407", + "cityEn": "chengxiang", + "cityZh": "\u57ce\u53a2" +}, { + "id": "CN101230501", + "cityEn": "quanzhou", + "cityZh": "\u6cc9\u5dde" +}, { + "id": "CN101230502", + "cityEn": "anxi", + "cityZh": "\u5b89\u6eaa" +}, { + "id": "CN101230503", + "cityEn": "jinmen", + "cityZh": "\u91d1\u95e8" +}, { + "id": "CN101230504", + "cityEn": "yongchun", + "cityZh": "\u6c38\u6625" +}, { + "id": "CN101230505", + "cityEn": "dehua", + "cityZh": "\u5fb7\u5316" +}, { + "id": "CN101230506", + "cityEn": "nanan", + "cityZh": "\u5357\u5b89" +}, { + "id": "CN101230508", + "cityEn": "huian", + "cityZh": "\u60e0\u5b89" +}, { + "id": "CN101230509", + "cityEn": "jinjiang", + "cityZh": "\u664b\u6c5f" +}, { + "id": "CN101230510", + "cityEn": "shishi", + "cityZh": "\u77f3\u72ee" +}, { + "id": "CN101230511", + "cityEn": "licheng", + "cityZh": "\u9ca4\u57ce" +}, { + "id": "CN101230512", + "cityEn": "fengze", + "cityZh": "\u4e30\u6cfd" +}, { + "id": "CN101230513", + "cityEn": "luojiang", + "cityZh": "\u6d1b\u6c5f" +}, { + "id": "CN101230514", + "cityEn": "quangang", + "cityZh": "\u6cc9\u6e2f" +}, { + "id": "CN101230601", + "cityEn": "zhangzhou", + "cityZh": "\u6f33\u5dde" +}, { + "id": "CN101230602", + "cityEn": "changtai", + "cityZh": "\u957f\u6cf0" +}, { + "id": "CN101230603", + "cityEn": "nanjing", + "cityZh": "\u5357\u9756" +}, { + "id": "CN101230604", + "cityEn": "pinghe", + "cityZh": "\u5e73\u548c" +}, { + "id": "CN101230605", + "cityEn": "longhai", + "cityZh": "\u9f99\u6d77" +}, { + "id": "CN101230606", + "cityEn": "zhangpu", + "cityZh": "\u6f33\u6d66" +}, { + "id": "CN101230607", + "cityEn": "zhaoan", + "cityZh": "\u8bcf\u5b89" +}, { + "id": "CN101230608", + "cityEn": "dongshan", + "cityZh": "\u4e1c\u5c71" +}, { + "id": "CN101230609", + "cityEn": "yunxiao", + "cityZh": "\u4e91\u9704" +}, { + "id": "CN101230610", + "cityEn": "huaan", + "cityZh": "\u534e\u5b89" +}, { + "id": "CN101230611", + "cityEn": "xiangcheng", + "cityZh": "\u8297\u57ce" +}, { + "id": "CN101230612", + "cityEn": "longwen", + "cityZh": "\u9f99\u6587" +}, { + "id": "CN101230701", + "cityEn": "longyan", + "cityZh": "\u9f99\u5ca9" +}, { + "id": "CN101230702", + "cityEn": "changting", + "cityZh": "\u957f\u6c40" +}, { + "id": "CN101230703", + "cityEn": "liancheng", + "cityZh": "\u8fde\u57ce" +}, { + "id": "CN101230704", + "cityEn": "wuping", + "cityZh": "\u6b66\u5e73" +}, { + "id": "CN101230705", + "cityEn": "shanghang", + "cityZh": "\u4e0a\u676d" +}, { + "id": "CN101230706", + "cityEn": "yongding", + "cityZh": "\u6c38\u5b9a" +}, { + "id": "CN101230707", + "cityEn": "zhangping", + "cityZh": "\u6f33\u5e73" +}, { + "id": "CN101230708", + "cityEn": "xinluo", + "cityZh": "\u65b0\u7f57" +}, { + "id": "CN101230801", + "cityEn": "sanming", + "cityZh": "\u4e09\u660e" +}, { + "id": "CN101230802", + "cityEn": "ninghua", + "cityZh": "\u5b81\u5316" +}, { + "id": "CN101230803", + "cityEn": "qingliu", + "cityZh": "\u6e05\u6d41" +}, { + "id": "CN101230804", + "cityEn": "taining", + "cityZh": "\u6cf0\u5b81" +}, { + "id": "CN101230805", + "cityEn": "jiangle", + "cityZh": "\u5c06\u4e50" +}, { + "id": "CN101230806", + "cityEn": "jianning", + "cityZh": "\u5efa\u5b81" +}, { + "id": "CN101230807", + "cityEn": "mingxi", + "cityZh": "\u660e\u6eaa" +}, { + "id": "CN101230808", + "cityEn": "shaxian", + "cityZh": "\u6c99\u53bf" +}, { + "id": "CN101230809", + "cityEn": "youxi", + "cityZh": "\u5c24\u6eaa" +}, { + "id": "CN101230810", + "cityEn": "yongan", + "cityZh": "\u6c38\u5b89" +}, { + "id": "CN101230811", + "cityEn": "datian", + "cityZh": "\u5927\u7530" +}, { + "id": "CN101230812", + "cityEn": "meilie", + "cityZh": "\u6885\u5217" +}, { + "id": "CN101230813", + "cityEn": "sanyuan", + "cityZh": "\u4e09\u5143" +}, { + "id": "CN101230901", + "cityEn": "nanping", + "cityZh": "\u5357\u5e73" +}, { + "id": "CN101230902", + "cityEn": "shunchang", + "cityZh": "\u987a\u660c" +}, { + "id": "CN101230903", + "cityEn": "guangze", + "cityZh": "\u5149\u6cfd" +}, { + "id": "CN101230904", + "cityEn": "shaowu", + "cityZh": "\u90b5\u6b66" +}, { + "id": "CN101230905", + "cityEn": "wuyishan", + "cityZh": "\u6b66\u5937\u5c71" +}, { + "id": "CN101230906", + "cityEn": "pucheng", + "cityZh": "\u6d66\u57ce" +}, { + "id": "CN101230907", + "cityEn": "jianyang", + "cityZh": "\u5efa\u9633" +}, { + "id": "CN101230908", + "cityEn": "songxi", + "cityZh": "\u677e\u6eaa" +}, { + "id": "CN101230909", + "cityEn": "zhenghe", + "cityZh": "\u653f\u548c" +}, { + "id": "CN101230910", + "cityEn": "jianou", + "cityZh": "\u5efa\u74ef" +}, { + "id": "CN101230911", + "cityEn": "yanping", + "cityZh": "\u5ef6\u5e73" +}, { + "id": "CN101231001", + "cityEn": "diaoyudao", + "cityZh": "\u9493\u9c7c\u5c9b" +}, { + "id": "CN101240101", + "cityEn": "nanchang", + "cityZh": "\u5357\u660c" +}, { + "id": "CN101240102", + "cityEn": "xinjian", + "cityZh": "\u65b0\u5efa" +}, { + "id": "CN101240103", + "cityEn": "nanchangxian", + "cityZh": "\u5357\u660c\u53bf" +}, { + "id": "CN101240104", + "cityEn": "anyi", + "cityZh": "\u5b89\u4e49" +}, { + "id": "CN101240105", + "cityEn": "jinxian", + "cityZh": "\u8fdb\u8d24" +}, { + "id": "CN101240106", + "cityEn": "donghu", + "cityZh": "\u4e1c\u6e56" +}, { + "id": "CN101240107", + "cityEn": "xihu", + "cityZh": "\u897f\u6e56" +}, { + "id": "CN101240108", + "cityEn": "qingyunpu", + "cityZh": "\u9752\u4e91\u8c31" +}, { + "id": "CN101240109", + "cityEn": "wanli", + "cityZh": "\u6e7e\u91cc" +}, { + "id": "CN101240110", + "cityEn": "qingshanhu", + "cityZh": "\u9752\u5c71\u6e56" +}, { + "id": "CN101240201", + "cityEn": "jiujiang", + "cityZh": "\u4e5d\u6c5f" +}, { + "id": "CN101240202", + "cityEn": "ruichang", + "cityZh": "\u745e\u660c" +}, { + "id": "CN101240203", + "cityEn": "lushan", + "cityZh": "\u5e90\u5c71" +}, { + "id": "CN101240204", + "cityEn": "wuning", + "cityZh": "\u6b66\u5b81" +}, { + "id": "CN101240205", + "cityEn": "dean", + "cityZh": "\u5fb7\u5b89" +}, { + "id": "CN101240206", + "cityEn": "yongxiu", + "cityZh": "\u6c38\u4fee" +}, { + "id": "CN101240207", + "cityEn": "hukou", + "cityZh": "\u6e56\u53e3" +}, { + "id": "CN101240208", + "cityEn": "pengze", + "cityZh": "\u5f6d\u6cfd" +}, { + "id": "CN101240209", + "cityEn": "xingzi", + "cityZh": "\u661f\u5b50" +}, { + "id": "CN101240210", + "cityEn": "duchang", + "cityZh": "\u90fd\u660c" +}, { + "id": "CN101240211", + "cityEn": "xunyang", + "cityZh": "\u6d54\u9633" +}, { + "id": "CN101240212", + "cityEn": "xiushui", + "cityZh": "\u4fee\u6c34" +}, { + "id": "CN101240213", + "cityEn": "gongqingcheng", + "cityZh": "\u5171\u9752\u57ce" +}, { + "id": "CN101240301", + "cityEn": "shangrao", + "cityZh": "\u4e0a\u9976" +}, { + "id": "CN101240302", + "cityEn": "poyang", + "cityZh": "\u9131\u9633" +}, { + "id": "CN101240303", + "cityEn": "wuyuan", + "cityZh": "\u5a7a\u6e90" +}, { + "id": "CN101240304", + "cityEn": "xinzhou", + "cityZh": "\u4fe1\u5dde" +}, { + "id": "CN101240305", + "cityEn": "yugan", + "cityZh": "\u4f59\u5e72" +}, { + "id": "CN101240306", + "cityEn": "wannian", + "cityZh": "\u4e07\u5e74" +}, { + "id": "CN101240307", + "cityEn": "dexing", + "cityZh": "\u5fb7\u5174" +}, { + "id": "CN101240308", + "cityEn": "shangraoxian", + "cityZh": "\u4e0a\u9976\u53bf" +}, { + "id": "CN101240309", + "cityEn": "yiyang", + "cityZh": "\u5f0b\u9633" +}, { + "id": "CN101240310", + "cityEn": "hengfeng", + "cityZh": "\u6a2a\u5cf0" +}, { + "id": "CN101240311", + "cityEn": "yanshan", + "cityZh": "\u94c5\u5c71" +}, { + "id": "CN101240312", + "cityEn": "yushan", + "cityZh": "\u7389\u5c71" +}, { + "id": "CN101240313", + "cityEn": "guangfeng", + "cityZh": "\u5e7f\u4e30" +}, { + "id": "CN101240401", + "cityEn": "fuzhou", + "cityZh": "\u629a\u5dde" +}, { + "id": "CN101240402", + "cityEn": "guangchang", + "cityZh": "\u5e7f\u660c" +}, { + "id": "CN101240403", + "cityEn": "anle", + "cityZh": "\u4e50\u5b89" +}, { + "id": "CN101240404", + "cityEn": "chongren", + "cityZh": "\u5d07\u4ec1" +}, { + "id": "CN101240405", + "cityEn": "jinxi", + "cityZh": "\u91d1\u6eaa" +}, { + "id": "CN101240406", + "cityEn": "zixi", + "cityZh": "\u8d44\u6eaa" +}, { + "id": "CN101240407", + "cityEn": "yihuang", + "cityZh": "\u5b9c\u9ec4" +}, { + "id": "CN101240408", + "cityEn": "nancheng", + "cityZh": "\u5357\u57ce" +}, { + "id": "CN101240409", + "cityEn": "nanfeng", + "cityZh": "\u5357\u4e30" +}, { + "id": "CN101240410", + "cityEn": "lichuan", + "cityZh": "\u9ece\u5ddd" +}, { + "id": "CN101240411", + "cityEn": "dongxiang", + "cityZh": "\u4e1c\u4e61" +}, { + "id": "CN101240412", + "cityEn": "linchuan", + "cityZh": "\u4e34\u5ddd" +}, { + "id": "CN101240501", + "cityEn": "yichun", + "cityZh": "\u5b9c\u6625" +}, { + "id": "CN101240502", + "cityEn": "tonggu", + "cityZh": "\u94dc\u9f13" +}, { + "id": "CN101240503", + "cityEn": "yifeng", + "cityZh": "\u5b9c\u4e30" +}, { + "id": "CN101240504", + "cityEn": "wanzai", + "cityZh": "\u4e07\u8f7d" +}, { + "id": "CN101240505", + "cityEn": "shanggao", + "cityZh": "\u4e0a\u9ad8" +}, { + "id": "CN101240506", + "cityEn": "jingan", + "cityZh": "\u9756\u5b89" +}, { + "id": "CN101240507", + "cityEn": "fengxin", + "cityZh": "\u5949\u65b0" +}, { + "id": "CN101240508", + "cityEn": "gaoan", + "cityZh": "\u9ad8\u5b89" +}, { + "id": "CN101240509", + "cityEn": "zhangshu", + "cityZh": "\u6a1f\u6811" +}, { + "id": "CN101240510", + "cityEn": "fengcheng", + "cityZh": "\u4e30\u57ce" +}, { + "id": "CN101240511", + "cityEn": "yuanzhou", + "cityZh": "\u8881\u5dde" +}, { + "id": "CN101240601", + "cityEn": "jian", + "cityZh": "\u5409\u5b89" +}, { + "id": "CN101240602", + "cityEn": "jianxian", + "cityZh": "\u5409\u5b89\u53bf" +}, { + "id": "CN101240603", + "cityEn": "jishui", + "cityZh": "\u5409\u6c34" +}, { + "id": "CN101240604", + "cityEn": "xingan", + "cityZh": "\u65b0\u5e72" +}, { + "id": "CN101240605", + "cityEn": "xiajiang", + "cityZh": "\u5ce1\u6c5f" +}, { + "id": "CN101240606", + "cityEn": "yongfeng", + "cityZh": "\u6c38\u4e30" +}, { + "id": "CN101240607", + "cityEn": "yongxin", + "cityZh": "\u6c38\u65b0" +}, { + "id": "CN101240608", + "cityEn": "jinggangshan", + "cityZh": "\u4e95\u5188\u5c71" +}, { + "id": "CN101240609", + "cityEn": "wanan", + "cityZh": "\u4e07\u5b89" +}, { + "id": "CN101240610", + "cityEn": "suichuan", + "cityZh": "\u9042\u5ddd" +}, { + "id": "CN101240611", + "cityEn": "taihe", + "cityZh": "\u6cf0\u548c" +}, { + "id": "CN101240612", + "cityEn": "anfu", + "cityZh": "\u5b89\u798f" +}, { + "id": "CN101240614", + "cityEn": "jizhou", + "cityZh": "\u5409\u5dde" +}, { + "id": "CN101240615", + "cityEn": "qingyuan", + "cityZh": "\u9752\u539f" +}, { + "id": "CN101240701", + "cityEn": "ganzhou", + "cityZh": "\u8d63\u5dde" +}, { + "id": "CN101240702", + "cityEn": "chongyi", + "cityZh": "\u5d07\u4e49" +}, { + "id": "CN101240703", + "cityEn": "shangyou", + "cityZh": "\u4e0a\u72b9" +}, { + "id": "CN101240704", + "cityEn": "nankang", + "cityZh": "\u5357\u5eb7" +}, { + "id": "CN101240705", + "cityEn": "dayu", + "cityZh": "\u5927\u4f59" +}, { + "id": "CN101240706", + "cityEn": "xinfeng", + "cityZh": "\u4fe1\u4e30" +}, { + "id": "CN101240707", + "cityEn": "ningdu", + "cityZh": "\u5b81\u90fd" +}, { + "id": "CN101240708", + "cityEn": "shicheng", + "cityZh": "\u77f3\u57ce" +}, { + "id": "CN101240709", + "cityEn": "ruijin", + "cityZh": "\u745e\u91d1" +}, { + "id": "CN101240710", + "cityEn": "yudu", + "cityZh": "\u4e8e\u90fd" +}, { + "id": "CN101240711", + "cityEn": "huichang", + "cityZh": "\u4f1a\u660c" +}, { + "id": "CN101240712", + "cityEn": "anyuan", + "cityZh": "\u5b89\u8fdc" +}, { + "id": "CN101240713", + "cityEn": "quannan", + "cityZh": "\u5168\u5357" +}, { + "id": "CN101240714", + "cityEn": "longnan", + "cityZh": "\u9f99\u5357" +}, { + "id": "CN101240715", + "cityEn": "dingnan", + "cityZh": "\u5b9a\u5357" +}, { + "id": "CN101240716", + "cityEn": "xunwu", + "cityZh": "\u5bfb\u4e4c" +}, { + "id": "CN101240717", + "cityEn": "xingguo", + "cityZh": "\u5174\u56fd" +}, { + "id": "CN101240718", + "cityEn": "ganxian", + "cityZh": "\u8d63\u53bf" +}, { + "id": "CN101240719", + "cityEn": "zhanggong", + "cityZh": "\u7ae0\u8d21" +}, { + "id": "CN101240801", + "cityEn": "jingdezhen", + "cityZh": "\u666f\u5fb7\u9547" +}, { + "id": "CN101240802", + "cityEn": "leping", + "cityZh": "\u4e50\u5e73" +}, { + "id": "CN101240803", + "cityEn": "fuliang", + "cityZh": "\u6d6e\u6881" +}, { + "id": "CN101240804", + "cityEn": "changjiang", + "cityZh": "\u660c\u6c5f" +}, { + "id": "CN101240805", + "cityEn": "zhushan", + "cityZh": "\u73e0\u5c71" +}, { + "id": "CN101240901", + "cityEn": "pingxiang", + "cityZh": "\u840d\u4e61" +}, { + "id": "CN101240902", + "cityEn": "lianhua", + "cityZh": "\u83b2\u82b1" +}, { + "id": "CN101240903", + "cityEn": "shangli", + "cityZh": "\u4e0a\u6817" +}, { + "id": "CN101240904", + "cityEn": "anyuan", + "cityZh": "\u5b89\u6e90" +}, { + "id": "CN101240905", + "cityEn": "luxi", + "cityZh": "\u82a6\u6eaa" +}, { + "id": "CN101240906", + "cityEn": "xiangdong", + "cityZh": "\u6e58\u4e1c" +}, { + "id": "CN101241001", + "cityEn": "xinyu", + "cityZh": "\u65b0\u4f59" +}, { + "id": "CN101241002", + "cityEn": "fenyi", + "cityZh": "\u5206\u5b9c" +}, { + "id": "CN101241003", + "cityEn": "yushui", + "cityZh": "\u6e1d\u6c34" +}, { + "id": "CN101241101", + "cityEn": "yingtan", + "cityZh": "\u9e70\u6f6d" +}, { + "id": "CN101241102", + "cityEn": "yujiang", + "cityZh": "\u4f59\u6c5f" +}, { + "id": "CN101241103", + "cityEn": "guixi", + "cityZh": "\u8d35\u6eaa" +}, { + "id": "CN101241104", + "cityEn": "yuehu", + "cityZh": "\u6708\u6e56" +}, { + "id": "CN101250101", + "cityEn": "changsha", + "cityZh": "\u957f\u6c99" +}, { + "id": "CN101250102", + "cityEn": "ningxiang", + "cityZh": "\u5b81\u4e61" +}, { + "id": "CN101250103", + "cityEn": "liuyang", + "cityZh": "\u6d4f\u9633" +}, { + "id": "CN101250104", + "cityEn": "xiangjiangxinqu", + "cityZh": "\u6e58\u6c5f\u65b0\u533a" +}, { + "id": "CN101250105", + "cityEn": "wangcheng", + "cityZh": "\u671b\u57ce" +}, { + "id": "CN101250106", + "cityEn": "changshaxian", + "cityZh": "\u957f\u6c99\u53bf" +}, { + "id": "CN101250107", + "cityEn": "furong", + "cityZh": "\u8299\u84c9" +}, { + "id": "CN101250108", + "cityEn": "tianxin", + "cityZh": "\u5929\u5fc3" +}, { + "id": "CN101250109", + "cityEn": "yuelu", + "cityZh": "\u5cb3\u9e93" +}, { + "id": "CN101250110", + "cityEn": "kaifu", + "cityZh": "\u5f00\u798f" +}, { + "id": "CN101250111", + "cityEn": "yuhua", + "cityZh": "\u96e8\u82b1" +}, { + "id": "CN101250201", + "cityEn": "xiangtan", + "cityZh": "\u6e58\u6f6d" +}, { + "id": "CN101250202", + "cityEn": "shaoshan", + "cityZh": "\u97f6\u5c71" +}, { + "id": "CN101250203", + "cityEn": "xiangxiang", + "cityZh": "\u6e58\u4e61" +}, { + "id": "CN101250204", + "cityEn": "yuhu", + "cityZh": "\u96e8\u6e56" +}, { + "id": "CN101250205", + "cityEn": "yuetang", + "cityZh": "\u5cb3\u5858" +}, { + "id": "CN101250301", + "cityEn": "zhuzhou", + "cityZh": "\u682a\u6d32" +}, { + "id": "CN101250302", + "cityEn": "youxian", + "cityZh": "\u6538\u53bf" +}, { + "id": "CN101250303", + "cityEn": "liling", + "cityZh": "\u91b4\u9675" +}, { + "id": "CN101250304", + "cityEn": "hetang", + "cityZh": "\u8377\u5858" +}, { + "id": "CN101250305", + "cityEn": "chaling", + "cityZh": "\u8336\u9675" +}, { + "id": "CN101250306", + "cityEn": "yanling", + "cityZh": "\u708e\u9675" +}, { + "id": "CN101250307", + "cityEn": "lusong", + "cityZh": "\u82a6\u6dde" +}, { + "id": "CN101250308", + "cityEn": "shifeng", + "cityZh": "\u77f3\u5cf0" +}, { + "id": "CN101250309", + "cityEn": "tianyuan", + "cityZh": "\u5929\u5143" +}, { + "id": "CN101250401", + "cityEn": "hengyang", + "cityZh": "\u8861\u9633" +}, { + "id": "CN101250402", + "cityEn": "hengshan", + "cityZh": "\u8861\u5c71" +}, { + "id": "CN101250403", + "cityEn": "hengdong", + "cityZh": "\u8861\u4e1c" +}, { + "id": "CN101250404", + "cityEn": "qidong", + "cityZh": "\u7941\u4e1c" +}, { + "id": "CN101250405", + "cityEn": "hengyangxian", + "cityZh": "\u8861\u9633\u53bf" +}, { + "id": "CN101250406", + "cityEn": "changning", + "cityZh": "\u5e38\u5b81" +}, { + "id": "CN101250407", + "cityEn": "hengnan", + "cityZh": "\u8861\u5357" +}, { + "id": "CN101250408", + "cityEn": "leiyang", + "cityZh": "\u8012\u9633" +}, { + "id": "CN101250409", + "cityEn": "nanyue", + "cityZh": "\u5357\u5cb3" +}, { + "id": "CN101250410", + "cityEn": "zhuhui", + "cityZh": "\u73e0\u6656" +}, { + "id": "CN101250411", + "cityEn": "yanfeng", + "cityZh": "\u96c1\u5cf0" +}, { + "id": "CN101250412", + "cityEn": "shigu", + "cityZh": "\u77f3\u9f13" +}, { + "id": "CN101250413", + "cityEn": "zhengxiang", + "cityZh": "\u84b8\u6e58" +}, { + "id": "CN101250501", + "cityEn": "chenzhou", + "cityZh": "\u90f4\u5dde" +}, { + "id": "CN101250502", + "cityEn": "guiyang", + "cityZh": "\u6842\u9633" +}, { + "id": "CN101250503", + "cityEn": "jiahe", + "cityZh": "\u5609\u79be" +}, { + "id": "CN101250504", + "cityEn": "yizhang", + "cityZh": "\u5b9c\u7ae0" +}, { + "id": "CN101250505", + "cityEn": "linwu", + "cityZh": "\u4e34\u6b66" +}, { + "id": "CN101250506", + "cityEn": "beihu", + "cityZh": "\u5317\u6e56" +}, { + "id": "CN101250507", + "cityEn": "zixing", + "cityZh": "\u8d44\u5174" +}, { + "id": "CN101250508", + "cityEn": "rucheng", + "cityZh": "\u6c5d\u57ce" +}, { + "id": "CN101250509", + "cityEn": "anren", + "cityZh": "\u5b89\u4ec1" +}, { + "id": "CN101250510", + "cityEn": "yongxing", + "cityZh": "\u6c38\u5174" +}, { + "id": "CN101250511", + "cityEn": "guidong", + "cityZh": "\u6842\u4e1c" +}, { + "id": "CN101250512", + "cityEn": "suxian", + "cityZh": "\u82cf\u4ed9" +}, { + "id": "CN101250601", + "cityEn": "changde", + "cityZh": "\u5e38\u5fb7" +}, { + "id": "CN101250602", + "cityEn": "anxiang", + "cityZh": "\u5b89\u4e61" +}, { + "id": "CN101250603", + "cityEn": "taoyuan", + "cityZh": "\u6843\u6e90" +}, { + "id": "CN101250604", + "cityEn": "hanshou", + "cityZh": "\u6c49\u5bff" +}, { + "id": "CN101250605", + "cityEn": "lixian", + "cityZh": "\u6fa7\u53bf" +}, { + "id": "CN101250606", + "cityEn": "linli", + "cityZh": "\u4e34\u6fa7" +}, { + "id": "CN101250607", + "cityEn": "shimen", + "cityZh": "\u77f3\u95e8" +}, { + "id": "CN101250608", + "cityEn": "jinshi", + "cityZh": "\u6d25\u5e02" +}, { + "id": "CN101250609", + "cityEn": "wuling", + "cityZh": "\u6b66\u9675" +}, { + "id": "CN101250610", + "cityEn": "dingcheng", + "cityZh": "\u9f0e\u57ce" +}, { + "id": "CN101250700", + "cityEn": "yiyang", + "cityZh": "\u76ca\u9633" +}, { + "id": "CN101250701", + "cityEn": "heshanqu", + "cityZh": "\u8d6b\u5c71\u533a" +}, { + "id": "CN101250702", + "cityEn": "nanxian", + "cityZh": "\u5357\u53bf" +}, { + "id": "CN101250703", + "cityEn": "taojiang", + "cityZh": "\u6843\u6c5f" +}, { + "id": "CN101250704", + "cityEn": "anhua", + "cityZh": "\u5b89\u5316" +}, { + "id": "CN101250705", + "cityEn": "yuanjiang", + "cityZh": "\u6c85\u6c5f" +}, { + "id": "CN101250706", + "cityEn": "ziyang", + "cityZh": "\u8d44\u9633" +}, { + "id": "CN101250801", + "cityEn": "loudi", + "cityZh": "\u5a04\u5e95" +}, { + "id": "CN101250802", + "cityEn": "shuangfeng", + "cityZh": "\u53cc\u5cf0" +}, { + "id": "CN101250803", + "cityEn": "lengshuijiang", + "cityZh": "\u51b7\u6c34\u6c5f" +}, { + "id": "CN101250804", + "cityEn": "louxing", + "cityZh": "\u5a04\u661f" +}, { + "id": "CN101250805", + "cityEn": "xinhua", + "cityZh": "\u65b0\u5316" +}, { + "id": "CN101250806", + "cityEn": "lianyuan", + "cityZh": "\u6d9f\u6e90" +}, { + "id": "CN101250901", + "cityEn": "shaoyang", + "cityZh": "\u90b5\u9633" +}, { + "id": "CN101250902", + "cityEn": "longhui", + "cityZh": "\u9686\u56de" +}, { + "id": "CN101250903", + "cityEn": "dongkou", + "cityZh": "\u6d1e\u53e3" +}, { + "id": "CN101250904", + "cityEn": "xinshao", + "cityZh": "\u65b0\u90b5" +}, { + "id": "CN101250905", + "cityEn": "shaodong", + "cityZh": "\u90b5\u4e1c" +}, { + "id": "CN101250906", + "cityEn": "suining", + "cityZh": "\u7ee5\u5b81" +}, { + "id": "CN101250907", + "cityEn": "xinning", + "cityZh": "\u65b0\u5b81" +}, { + "id": "CN101250908", + "cityEn": "wugang", + "cityZh": "\u6b66\u5188" +}, { + "id": "CN101250909", + "cityEn": "chengbu", + "cityZh": "\u57ce\u6b65" +}, { + "id": "CN101250910", + "cityEn": "shaoyangxian", + "cityZh": "\u90b5\u9633\u53bf" +}, { + "id": "CN101250911", + "cityEn": "shuangqing", + "cityZh": "\u53cc\u6e05" +}, { + "id": "CN101250912", + "cityEn": "daxiang", + "cityZh": "\u5927\u7965" +}, { + "id": "CN101250913", + "cityEn": "beita", + "cityZh": "\u5317\u5854" +}, { + "id": "CN101251001", + "cityEn": "yueyang", + "cityZh": "\u5cb3\u9633" +}, { + "id": "CN101251002", + "cityEn": "huarong", + "cityZh": "\u534e\u5bb9" +}, { + "id": "CN101251003", + "cityEn": "xiangyin", + "cityZh": "\u6e58\u9634" +}, { + "id": "CN101251004", + "cityEn": "miluo", + "cityZh": "\u6c68\u7f57" +}, { + "id": "CN101251005", + "cityEn": "pingjiang", + "cityZh": "\u5e73\u6c5f" +}, { + "id": "CN101251006", + "cityEn": "linxiang", + "cityZh": "\u4e34\u6e58" +}, { + "id": "CN101251007", + "cityEn": "yueyanglouqu", + "cityZh": "\u5cb3\u9633\u697c\u533a" +}, { + "id": "CN101251008", + "cityEn": "yunxi", + "cityZh": "\u4e91\u6eaa" +}, { + "id": "CN101251009", + "cityEn": "junshan", + "cityZh": "\u541b\u5c71" +}, { + "id": "CN101251101", + "cityEn": "zhangjiajie", + "cityZh": "\u5f20\u5bb6\u754c" +}, { + "id": "CN101251102", + "cityEn": "sangzhi", + "cityZh": "\u6851\u690d" +}, { + "id": "CN101251103", + "cityEn": "cili", + "cityZh": "\u6148\u5229" +}, { + "id": "CN101251104", + "cityEn": "wulingyuan", + "cityZh": "\u6b66\u9675\u6e90" +}, { + "id": "CN101251105", + "cityEn": "yongding", + "cityZh": "\u6c38\u5b9a" +}, { + "id": "CN101251201", + "cityEn": "huaihua", + "cityZh": "\u6000\u5316" +}, { + "id": "CN101251202", + "cityEn": "hecheng", + "cityZh": "\u9e64\u57ce" +}, { + "id": "CN101251203", + "cityEn": "yuanling", + "cityZh": "\u6c85\u9675" +}, { + "id": "CN101251204", + "cityEn": "chenxi", + "cityZh": "\u8fb0\u6eaa" +}, { + "id": "CN101251205", + "cityEn": "jingzhou", + "cityZh": "\u9756\u5dde" +}, { + "id": "CN101251206", + "cityEn": "huitong", + "cityZh": "\u4f1a\u540c" +}, { + "id": "CN101251207", + "cityEn": "tongdao", + "cityZh": "\u901a\u9053" +}, { + "id": "CN101251208", + "cityEn": "mayang", + "cityZh": "\u9ebb\u9633" +}, { + "id": "CN101251209", + "cityEn": "xinhuang", + "cityZh": "\u65b0\u6643" +}, { + "id": "CN101251210", + "cityEn": "zhijiang", + "cityZh": "\u82b7\u6c5f" +}, { + "id": "CN101251211", + "cityEn": "xupu", + "cityZh": "\u6e86\u6d66" +}, { + "id": "CN101251212", + "cityEn": "zhongfang", + "cityZh": "\u4e2d\u65b9" +}, { + "id": "CN101251213", + "cityEn": "hongjiang", + "cityZh": "\u6d2a\u6c5f" +}, { + "id": "CN101251401", + "cityEn": "yongzhou", + "cityZh": "\u6c38\u5dde" +}, { + "id": "CN101251402", + "cityEn": "qiyang", + "cityZh": "\u7941\u9633" +}, { + "id": "CN101251403", + "cityEn": "dongan", + "cityZh": "\u4e1c\u5b89" +}, { + "id": "CN101251404", + "cityEn": "shuangpai", + "cityZh": "\u53cc\u724c" +}, { + "id": "CN101251405", + "cityEn": "daoxian", + "cityZh": "\u9053\u53bf" +}, { + "id": "CN101251406", + "cityEn": "ningyuan", + "cityZh": "\u5b81\u8fdc" +}, { + "id": "CN101251407", + "cityEn": "jiangyong", + "cityZh": "\u6c5f\u6c38" +}, { + "id": "CN101251408", + "cityEn": "lanshan", + "cityZh": "\u84dd\u5c71" +}, { + "id": "CN101251409", + "cityEn": "xintian", + "cityZh": "\u65b0\u7530" +}, { + "id": "CN101251410", + "cityEn": "jianghua", + "cityZh": "\u6c5f\u534e" +}, { + "id": "CN101251411", + "cityEn": "lengshuitan", + "cityZh": "\u51b7\u6c34\u6ee9" +}, { + "id": "CN101251412", + "cityEn": "lingling", + "cityZh": "\u96f6\u9675" +}, { + "id": "CN101251501", + "cityEn": "jishou", + "cityZh": "\u5409\u9996" +}, { + "id": "CN101251502", + "cityEn": "baojing", + "cityZh": "\u4fdd\u9756" +}, { + "id": "CN101251503", + "cityEn": "yongshun", + "cityZh": "\u6c38\u987a" +}, { + "id": "CN101251504", + "cityEn": "guzhang", + "cityZh": "\u53e4\u4e08" +}, { + "id": "CN101251505", + "cityEn": "fenghuang", + "cityZh": "\u51e4\u51f0" +}, { + "id": "CN101251506", + "cityEn": "luxi", + "cityZh": "\u6cf8\u6eaa" +}, { + "id": "CN101251507", + "cityEn": "longshan", + "cityZh": "\u9f99\u5c71" +}, { + "id": "CN101251508", + "cityEn": "huayuan", + "cityZh": "\u82b1\u57a3" +}, { + "id": "CN101251509", + "cityEn": "xiangxi", + "cityZh": "\u6e58\u897f" +}, { + "id": "CN101260101", + "cityEn": "guiyang", + "cityZh": "\u8d35\u9633" +}, { + "id": "CN101260102", + "cityEn": "baiyun", + "cityZh": "\u767d\u4e91" +}, { + "id": "CN101260103", + "cityEn": "huaxi", + "cityZh": "\u82b1\u6eaa" +}, { + "id": "CN101260104", + "cityEn": "wudang", + "cityZh": "\u4e4c\u5f53" +}, { + "id": "CN101260105", + "cityEn": "xifeng", + "cityZh": "\u606f\u70fd" +}, { + "id": "CN101260106", + "cityEn": "kaiyang", + "cityZh": "\u5f00\u9633" +}, { + "id": "CN101260107", + "cityEn": "xiuwen", + "cityZh": "\u4fee\u6587" +}, { + "id": "CN101260108", + "cityEn": "qingzhen", + "cityZh": "\u6e05\u9547" +}, { + "id": "CN101260110", + "cityEn": "yunyan", + "cityZh": "\u4e91\u5ca9" +}, { + "id": "CN101260111", + "cityEn": "nanming", + "cityZh": "\u5357\u660e" +}, { + "id": "CN101260112", + "cityEn": "guanshanhu", + "cityZh": "\u89c2\u5c71\u6e56" +}, { + "id": "CN101260201", + "cityEn": "zunyi", + "cityZh": "\u9075\u4e49" +}, { + "id": "CN101260202", + "cityEn": "zunyixian", + "cityZh": "\u9075\u4e49\u53bf" +}, { + "id": "CN101260203", + "cityEn": "renhuai", + "cityZh": "\u4ec1\u6000" +}, { + "id": "CN101260204", + "cityEn": "suiyang", + "cityZh": "\u7ee5\u9633" +}, { + "id": "CN101260205", + "cityEn": "meitan", + "cityZh": "\u6e44\u6f6d" +}, { + "id": "CN101260206", + "cityEn": "fenggang", + "cityZh": "\u51e4\u5188" +}, { + "id": "CN101260207", + "cityEn": "tongzi", + "cityZh": "\u6850\u6893" +}, { + "id": "CN101260208", + "cityEn": "chishui", + "cityZh": "\u8d64\u6c34" +}, { + "id": "CN101260209", + "cityEn": "xishui", + "cityZh": "\u4e60\u6c34" +}, { + "id": "CN101260210", + "cityEn": "daozhen", + "cityZh": "\u9053\u771f" +}, { + "id": "CN101260211", + "cityEn": "zhengan", + "cityZh": "\u6b63\u5b89" +}, { + "id": "CN101260212", + "cityEn": "wuchuan", + "cityZh": "\u52a1\u5ddd" +}, { + "id": "CN101260213", + "cityEn": "yuqing", + "cityZh": "\u4f59\u5e86" +}, { + "id": "CN101260214", + "cityEn": "huichuan", + "cityZh": "\u6c47\u5ddd" +}, { + "id": "CN101260215", + "cityEn": "honghuagang", + "cityZh": "\u7ea2\u82b1\u5c97" +}, { + "id": "CN101260216", + "cityEn": "bozhou", + "cityZh": "\u64ad\u5dde" +}, { + "id": "CN101260301", + "cityEn": "anshun", + "cityZh": "\u5b89\u987a" +}, { + "id": "CN101260302", + "cityEn": "puding", + "cityZh": "\u666e\u5b9a" +}, { + "id": "CN101260303", + "cityEn": "zhenning", + "cityZh": "\u9547\u5b81" +}, { + "id": "CN101260304", + "cityEn": "pingba", + "cityZh": "\u5e73\u575d" +}, { + "id": "CN101260305", + "cityEn": "ziyun", + "cityZh": "\u7d2b\u4e91" +}, { + "id": "CN101260306", + "cityEn": "guanling", + "cityZh": "\u5173\u5cad" +}, { + "id": "CN101260307", + "cityEn": "xixiu", + "cityZh": "\u897f\u79c0" +}, { + "id": "CN101260401", + "cityEn": "duyun", + "cityZh": "\u90fd\u5300" +}, { + "id": "CN101260402", + "cityEn": "guiding", + "cityZh": "\u8d35\u5b9a" +}, { + "id": "CN101260403", + "cityEn": "wengan", + "cityZh": "\u74ee\u5b89" +}, { + "id": "CN101260404", + "cityEn": "changshun", + "cityZh": "\u957f\u987a" +}, { + "id": "CN101260405", + "cityEn": "fuquan", + "cityZh": "\u798f\u6cc9" +}, { + "id": "CN101260406", + "cityEn": "huishui", + "cityZh": "\u60e0\u6c34" +}, { + "id": "CN101260407", + "cityEn": "longli", + "cityZh": "\u9f99\u91cc" +}, { + "id": "CN101260408", + "cityEn": "luodian", + "cityZh": "\u7f57\u7538" +}, { + "id": "CN101260409", + "cityEn": "pingtang", + "cityZh": "\u5e73\u5858" +}, { + "id": "CN101260410", + "cityEn": "dushan", + "cityZh": "\u72ec\u5c71" +}, { + "id": "CN101260411", + "cityEn": "sandu", + "cityZh": "\u4e09\u90fd" +}, { + "id": "CN101260412", + "cityEn": "libo", + "cityZh": "\u8354\u6ce2" +}, { + "id": "CN101260413", + "cityEn": "qiannan", + "cityZh": "\u9ed4\u5357" +}, { + "id": "CN101260501", + "cityEn": "kaili", + "cityZh": "\u51ef\u91cc" +}, { + "id": "CN101260502", + "cityEn": "cengong", + "cityZh": "\u5c91\u5de9" +}, { + "id": "CN101260503", + "cityEn": "shibing", + "cityZh": "\u65bd\u79c9" +}, { + "id": "CN101260504", + "cityEn": "zhenyuan", + "cityZh": "\u9547\u8fdc" +}, { + "id": "CN101260505", + "cityEn": "huangping", + "cityZh": "\u9ec4\u5e73" +}, { + "id": "CN101260506", + "cityEn": "qiandongnan", + "cityZh": "\u9ed4\u4e1c\u5357" +}, { + "id": "CN101260507", + "cityEn": "majiang", + "cityZh": "\u9ebb\u6c5f" +}, { + "id": "CN101260508", + "cityEn": "danzhai", + "cityZh": "\u4e39\u5be8" +}, { + "id": "CN101260509", + "cityEn": "sansui", + "cityZh": "\u4e09\u7a57" +}, { + "id": "CN101260510", + "cityEn": "taijiang", + "cityZh": "\u53f0\u6c5f" +}, { + "id": "CN101260511", + "cityEn": "jianhe", + "cityZh": "\u5251\u6cb3" +}, { + "id": "CN101260512", + "cityEn": "leishan", + "cityZh": "\u96f7\u5c71" +}, { + "id": "CN101260513", + "cityEn": "liping", + "cityZh": "\u9ece\u5e73" +}, { + "id": "CN101260514", + "cityEn": "tianzhu", + "cityZh": "\u5929\u67f1" +}, { + "id": "CN101260515", + "cityEn": "jinping", + "cityZh": "\u9526\u5c4f" +}, { + "id": "CN101260516", + "cityEn": "rongjiang", + "cityZh": "\u6995\u6c5f" +}, { + "id": "CN101260517", + "cityEn": "congjiang", + "cityZh": "\u4ece\u6c5f" +}, { + "id": "CN101260601", + "cityEn": "tongren", + "cityZh": "\u94dc\u4ec1" +}, { + "id": "CN101260602", + "cityEn": "jiangkou", + "cityZh": "\u6c5f\u53e3" +}, { + "id": "CN101260603", + "cityEn": "yuping", + "cityZh": "\u7389\u5c4f" +}, { + "id": "CN101260604", + "cityEn": "wanshan", + "cityZh": "\u4e07\u5c71" +}, { + "id": "CN101260605", + "cityEn": "sinan", + "cityZh": "\u601d\u5357" +}, { + "id": "CN101260606", + "cityEn": "bijiang", + "cityZh": "\u78a7\u6c5f" +}, { + "id": "CN101260607", + "cityEn": "yinjiang", + "cityZh": "\u5370\u6c5f" +}, { + "id": "CN101260608", + "cityEn": "shiqian", + "cityZh": "\u77f3\u9621" +}, { + "id": "CN101260609", + "cityEn": "yanhe", + "cityZh": "\u6cbf\u6cb3" +}, { + "id": "CN101260610", + "cityEn": "dejiang", + "cityZh": "\u5fb7\u6c5f" +}, { + "id": "CN101260611", + "cityEn": "songtao", + "cityZh": "\u677e\u6843" +}, { + "id": "CN101260701", + "cityEn": "bijie", + "cityZh": "\u6bd5\u8282" +}, { + "id": "CN101260702", + "cityEn": "hezhang", + "cityZh": "\u8d6b\u7ae0" +}, { + "id": "CN101260703", + "cityEn": "jinsha", + "cityZh": "\u91d1\u6c99" +}, { + "id": "CN101260704", + "cityEn": "weining", + "cityZh": "\u5a01\u5b81" +}, { + "id": "CN101260705", + "cityEn": "dafang", + "cityZh": "\u5927\u65b9" +}, { + "id": "CN101260706", + "cityEn": "nayong", + "cityZh": "\u7eb3\u96cd" +}, { + "id": "CN101260707", + "cityEn": "zhijin", + "cityZh": "\u7ec7\u91d1" +}, { + "id": "CN101260708", + "cityEn": "qianxi", + "cityZh": "\u9ed4\u897f" +}, { + "id": "CN101260709", + "cityEn": "qixingguan", + "cityZh": "\u4e03\u661f\u5173" +}, { + "id": "CN101260801", + "cityEn": "shuicheng", + "cityZh": "\u6c34\u57ce" +}, { + "id": "CN101260802", + "cityEn": "liuzhi", + "cityZh": "\u516d\u679d" +}, { + "id": "CN101260803", + "cityEn": "liupanshui", + "cityZh": "\u516d\u76d8\u6c34" +}, { + "id": "CN101260804", + "cityEn": "panxian", + "cityZh": "\u76d8\u53bf" +}, { + "id": "CN101260805", + "cityEn": "zhongshan", + "cityZh": "\u949f\u5c71" +}, { + "id": "CN101260901", + "cityEn": "xingyi", + "cityZh": "\u5174\u4e49" +}, { + "id": "CN101260902", + "cityEn": "qinglong", + "cityZh": "\u6674\u9686" +}, { + "id": "CN101260903", + "cityEn": "xingren", + "cityZh": "\u5174\u4ec1" +}, { + "id": "CN101260904", + "cityEn": "zhenfeng", + "cityZh": "\u8d1e\u4e30" +}, { + "id": "CN101260905", + "cityEn": "wangmo", + "cityZh": "\u671b\u8c1f" +}, { + "id": "CN101260906", + "cityEn": "qianxinan", + "cityZh": "\u9ed4\u897f\u5357" +}, { + "id": "CN101260907", + "cityEn": "anlong", + "cityZh": "\u5b89\u9f99" +}, { + "id": "CN101260908", + "cityEn": "ceheng", + "cityZh": "\u518c\u4ea8" +}, { + "id": "CN101260909", + "cityEn": "puan", + "cityZh": "\u666e\u5b89" +}, { + "id": "CN101270101", + "cityEn": "chengdu", + "cityZh": "\u6210\u90fd" +}, { + "id": "CN101270102", + "cityEn": "longquanyi", + "cityZh": "\u9f99\u6cc9\u9a7f" +}, { + "id": "CN101270103", + "cityEn": "xindu", + "cityZh": "\u65b0\u90fd" +}, { + "id": "CN101270104", + "cityEn": "wenjiang", + "cityZh": "\u6e29\u6c5f" +}, { + "id": "CN101270105", + "cityEn": "jintang", + "cityZh": "\u91d1\u5802" +}, { + "id": "CN101270106", + "cityEn": "shuangliu", + "cityZh": "\u53cc\u6d41" +}, { + "id": "CN101270107", + "cityEn": "pixian", + "cityZh": "\u90eb\u53bf" +}, { + "id": "CN101270108", + "cityEn": "dayi", + "cityZh": "\u5927\u9091" +}, { + "id": "CN101270109", + "cityEn": "pujiang", + "cityZh": "\u84b2\u6c5f" +}, { + "id": "CN101270110", + "cityEn": "xinjin", + "cityZh": "\u65b0\u6d25" +}, { + "id": "CN101270111", + "cityEn": "dujiangyan", + "cityZh": "\u90fd\u6c5f\u5830" +}, { + "id": "CN101270112", + "cityEn": "pengzhou", + "cityZh": "\u5f6d\u5dde" +}, { + "id": "CN101270113", + "cityEn": "qionglai", + "cityZh": "\u909b\u5d03" +}, { + "id": "CN101270114", + "cityEn": "chongzhou", + "cityZh": "\u5d07\u5dde" +}, { + "id": "CN101270115", + "cityEn": "qingbaijiang", + "cityZh": "\u9752\u767d\u6c5f" +}, { + "id": "CN101270116", + "cityEn": "jinjiang", + "cityZh": "\u9526\u6c5f" +}, { + "id": "CN101270117", + "cityEn": "qingyang", + "cityZh": "\u9752\u7f8a" +}, { + "id": "CN101270118", + "cityEn": "jinniu", + "cityZh": "\u91d1\u725b" +}, { + "id": "CN101270119", + "cityEn": "wuhou", + "cityZh": "\u6b66\u4faf" +}, { + "id": "CN101270120", + "cityEn": "chenghua", + "cityZh": "\u6210\u534e" +}, { + "id": "CN101270121", + "cityEn": "jianyang", + "cityZh": "\u7b80\u9633" +}, { + "id": "CN101270201", + "cityEn": "panzhihua", + "cityZh": "\u6500\u679d\u82b1" +}, { + "id": "CN101270202", + "cityEn": "renhe", + "cityZh": "\u4ec1\u548c" +}, { + "id": "CN101270203", + "cityEn": "miyi", + "cityZh": "\u7c73\u6613" +}, { + "id": "CN101270204", + "cityEn": "yanbian", + "cityZh": "\u76d0\u8fb9" +}, { + "id": "CN101270205", + "cityEn": "dongqu", + "cityZh": "\u4e1c\u533a" +}, { + "id": "CN101270206", + "cityEn": "xiqu", + "cityZh": "\u897f\u533a" +}, { + "id": "CN101270301", + "cityEn": "zigong", + "cityZh": "\u81ea\u8d21" +}, { + "id": "CN101270302", + "cityEn": "fushun", + "cityZh": "\u5bcc\u987a" +}, { + "id": "CN101270303", + "cityEn": "rongxian", + "cityZh": "\u8363\u53bf" +}, { + "id": "CN101270304", + "cityEn": "ziliujing", + "cityZh": "\u81ea\u6d41\u4e95" +}, { + "id": "CN101270305", + "cityEn": "gongjing", + "cityZh": "\u8d21\u4e95" +}, { + "id": "CN101270306", + "cityEn": "daan", + "cityZh": "\u5927\u5b89" +}, { + "id": "CN101270307", + "cityEn": "yantan", + "cityZh": "\u6cbf\u6ee9" +}, { + "id": "CN101270401", + "cityEn": "mianyang", + "cityZh": "\u7ef5\u9633" +}, { + "id": "CN101270402", + "cityEn": "santai", + "cityZh": "\u4e09\u53f0" +}, { + "id": "CN101270403", + "cityEn": "yanting", + "cityZh": "\u76d0\u4ead" +}, { + "id": "CN101270404", + "cityEn": "anxian", + "cityZh": "\u5b89\u53bf" +}, { + "id": "CN101270405", + "cityEn": "zitong", + "cityZh": "\u6893\u6f7c" +}, { + "id": "CN101270406", + "cityEn": "beichuan", + "cityZh": "\u5317\u5ddd" +}, { + "id": "CN101270407", + "cityEn": "pingwu", + "cityZh": "\u5e73\u6b66" +}, { + "id": "CN101270408", + "cityEn": "jiangyou", + "cityZh": "\u6c5f\u6cb9" +}, { + "id": "CN101270409", + "cityEn": "fucheng", + "cityZh": "\u6daa\u57ce" +}, { + "id": "CN101270410", + "cityEn": "youxian", + "cityZh": "\u6e38\u4ed9" +}, { + "id": "CN101270411", + "cityEn": "anzhou", + "cityZh": "\u5b89\u5dde" +}, { + "id": "CN101270501", + "cityEn": "nanchong", + "cityZh": "\u5357\u5145" +}, { + "id": "CN101270502", + "cityEn": "nanbu", + "cityZh": "\u5357\u90e8" +}, { + "id": "CN101270503", + "cityEn": "yingshan", + "cityZh": "\u8425\u5c71" +}, { + "id": "CN101270504", + "cityEn": "pengan", + "cityZh": "\u84ec\u5b89" +}, { + "id": "CN101270505", + "cityEn": "yilong", + "cityZh": "\u4eea\u9647" +}, { + "id": "CN101270506", + "cityEn": "xichong", + "cityZh": "\u897f\u5145" +}, { + "id": "CN101270507", + "cityEn": "langzhong", + "cityZh": "\u9606\u4e2d" +}, { + "id": "CN101270508", + "cityEn": "shunqing", + "cityZh": "\u987a\u5e86" +}, { + "id": "CN101270509", + "cityEn": "gaoping", + "cityZh": "\u9ad8\u576a" +}, { + "id": "CN101270510", + "cityEn": "jialing", + "cityZh": "\u5609\u9675" +}, { + "id": "CN101270601", + "cityEn": "dazhou", + "cityZh": "\u8fbe\u5dde" +}, { + "id": "CN101270602", + "cityEn": "xuanhan", + "cityZh": "\u5ba3\u6c49" +}, { + "id": "CN101270603", + "cityEn": "kaijiang", + "cityZh": "\u5f00\u6c5f" +}, { + "id": "CN101270604", + "cityEn": "dazhu", + "cityZh": "\u5927\u7af9" +}, { + "id": "CN101270605", + "cityEn": "quxian", + "cityZh": "\u6e20\u53bf" +}, { + "id": "CN101270606", + "cityEn": "wanyuan", + "cityZh": "\u4e07\u6e90" +}, { + "id": "CN101270607", + "cityEn": "tongchuan", + "cityZh": "\u901a\u5ddd" +}, { + "id": "CN101270608", + "cityEn": "dachuan", + "cityZh": "\u8fbe\u5ddd" +}, { + "id": "CN101270701", + "cityEn": "suining", + "cityZh": "\u9042\u5b81" +}, { + "id": "CN101270702", + "cityEn": "pengxi", + "cityZh": "\u84ec\u6eaa" +}, { + "id": "CN101270703", + "cityEn": "shehong", + "cityZh": "\u5c04\u6d2a" +}, { + "id": "CN101270704", + "cityEn": "chuanshan", + "cityZh": "\u8239\u5c71" +}, { + "id": "CN101270705", + "cityEn": "anju", + "cityZh": "\u5b89\u5c45" +}, { + "id": "CN101270706", + "cityEn": "daying", + "cityZh": "\u5927\u82f1" +}, { + "id": "CN101270801", + "cityEn": "guangan", + "cityZh": "\u5e7f\u5b89" +}, { + "id": "CN101270802", + "cityEn": "yuechi", + "cityZh": "\u5cb3\u6c60" +}, { + "id": "CN101270803", + "cityEn": "wusheng", + "cityZh": "\u6b66\u80dc" +}, { + "id": "CN101270804", + "cityEn": "linshui", + "cityZh": "\u90bb\u6c34" +}, { + "id": "CN101270805", + "cityEn": "huaying", + "cityZh": "\u534e\u84e5" +}, { + "id": "CN101270806", + "cityEn": "qianfeng", + "cityZh": "\u524d\u950b" +}, { + "id": "CN101270901", + "cityEn": "bazhong", + "cityZh": "\u5df4\u4e2d" +}, { + "id": "CN101270902", + "cityEn": "tongjiang", + "cityZh": "\u901a\u6c5f" +}, { + "id": "CN101270903", + "cityEn": "nanjiang", + "cityZh": "\u5357\u6c5f" +}, { + "id": "CN101270904", + "cityEn": "pingchang", + "cityZh": "\u5e73\u660c" +}, { + "id": "CN101270905", + "cityEn": "bazhou", + "cityZh": "\u5df4\u5dde" +}, { + "id": "CN101270906", + "cityEn": "enyang", + "cityZh": "\u6069\u9633" +}, { + "id": "CN101271001", + "cityEn": "luzhou", + "cityZh": "\u6cf8\u5dde" +}, { + "id": "CN101271002", + "cityEn": "jiangyang", + "cityZh": "\u6c5f\u9633" +}, { + "id": "CN101271003", + "cityEn": "luxian", + "cityZh": "\u6cf8\u53bf" +}, { + "id": "CN101271004", + "cityEn": "hejiang", + "cityZh": "\u5408\u6c5f" +}, { + "id": "CN101271005", + "cityEn": "xuyong", + "cityZh": "\u53d9\u6c38" +}, { + "id": "CN101271006", + "cityEn": "gulin", + "cityZh": "\u53e4\u853a" +}, { + "id": "CN101271007", + "cityEn": "naxi", + "cityZh": "\u7eb3\u6eaa" +}, { + "id": "CN101271008", + "cityEn": "longmatan", + "cityZh": "\u9f99\u9a6c\u6f6d" +}, { + "id": "CN101271101", + "cityEn": "yibin", + "cityZh": "\u5b9c\u5bbe" +}, { + "id": "CN101271102", + "cityEn": "cuiping", + "cityZh": "\u7fe0\u5c4f" +}, { + "id": "CN101271103", + "cityEn": "yibinxian", + "cityZh": "\u5b9c\u5bbe\u53bf" +}, { + "id": "CN101271104", + "cityEn": "nanxi", + "cityZh": "\u5357\u6eaa" +}, { + "id": "CN101271105", + "cityEn": "jiangan", + "cityZh": "\u6c5f\u5b89" +}, { + "id": "CN101271106", + "cityEn": "changning", + "cityZh": "\u957f\u5b81" +}, { + "id": "CN101271107", + "cityEn": "gaoxian", + "cityZh": "\u9ad8\u53bf" +}, { + "id": "CN101271108", + "cityEn": "gongxian", + "cityZh": "\u73d9\u53bf" +}, { + "id": "CN101271109", + "cityEn": "junlian", + "cityZh": "\u7b60\u8fde" +}, { + "id": "CN101271110", + "cityEn": "xingwen", + "cityZh": "\u5174\u6587" +}, { + "id": "CN101271111", + "cityEn": "pingshan", + "cityZh": "\u5c4f\u5c71" +}, { + "id": "CN101271201", + "cityEn": "neijiang", + "cityZh": "\u5185\u6c5f" +}, { + "id": "CN101271202", + "cityEn": "dongxing", + "cityZh": "\u4e1c\u5174" +}, { + "id": "CN101271203", + "cityEn": "weiyuan", + "cityZh": "\u5a01\u8fdc" +}, { + "id": "CN101271204", + "cityEn": "zizhong", + "cityZh": "\u8d44\u4e2d" +}, { + "id": "CN101271205", + "cityEn": "longchang", + "cityZh": "\u9686\u660c" +}, { + "id": "CN101271206", + "cityEn": "shizhong", + "cityZh": "\u5e02\u4e2d" +}, { + "id": "CN101271301", + "cityEn": "ziyang", + "cityZh": "\u8d44\u9633" +}, { + "id": "CN101271302", + "cityEn": "anyue", + "cityZh": "\u5b89\u5cb3" +}, { + "id": "CN101271303", + "cityEn": "lezhi", + "cityZh": "\u4e50\u81f3" +}, { + "id": "CN101271305", + "cityEn": "yanjiang", + "cityZh": "\u96c1\u6c5f" +}, { + "id": "CN101271401", + "cityEn": "leshan", + "cityZh": "\u4e50\u5c71" +}, { + "id": "CN101271402", + "cityEn": "qianwei", + "cityZh": "\u728d\u4e3a" +}, { + "id": "CN101271403", + "cityEn": "jingyan", + "cityZh": "\u4e95\u7814" +}, { + "id": "CN101271404", + "cityEn": "jiajiang", + "cityZh": "\u5939\u6c5f" +}, { + "id": "CN101271405", + "cityEn": "muchuan", + "cityZh": "\u6c90\u5ddd" +}, { + "id": "CN101271406", + "cityEn": "ebian", + "cityZh": "\u5ce8\u8fb9" +}, { + "id": "CN101271407", + "cityEn": "mabian", + "cityZh": "\u9a6c\u8fb9" +}, { + "id": "CN101271409", + "cityEn": "emeishan", + "cityZh": "\u5ce8\u7709\u5c71" +}, { + "id": "CN101271410", + "cityEn": "shizhong", + "cityZh": "\u5e02\u4e2d" +}, { + "id": "CN101271411", + "cityEn": "shawan", + "cityZh": "\u6c99\u6e7e" +}, { + "id": "CN101271412", + "cityEn": "wutongqiao", + "cityZh": "\u4e94\u901a\u6865" +}, { + "id": "CN101271413", + "cityEn": "jinkouhe", + "cityZh": "\u91d1\u53e3\u6cb3" +}, { + "id": "CN101271501", + "cityEn": "meishan", + "cityZh": "\u7709\u5c71" +}, { + "id": "CN101271502", + "cityEn": "renshou", + "cityZh": "\u4ec1\u5bff" +}, { + "id": "CN101271503", + "cityEn": "pengshan", + "cityZh": "\u5f6d\u5c71" +}, { + "id": "CN101271504", + "cityEn": "hongya", + "cityZh": "\u6d2a\u96c5" +}, { + "id": "CN101271505", + "cityEn": "danleng", + "cityZh": "\u4e39\u68f1" +}, { + "id": "CN101271506", + "cityEn": "qingshen", + "cityZh": "\u9752\u795e" +}, { + "id": "CN101271507", + "cityEn": "dongpo", + "cityZh": "\u4e1c\u5761" +}, { + "id": "CN101271601", + "cityEn": "liangshan", + "cityZh": "\u51c9\u5c71" +}, { + "id": "CN101271603", + "cityEn": "muli", + "cityZh": "\u6728\u91cc" +}, { + "id": "CN101271604", + "cityEn": "yanyuan", + "cityZh": "\u76d0\u6e90" +}, { + "id": "CN101271605", + "cityEn": "dechang", + "cityZh": "\u5fb7\u660c" +}, { + "id": "CN101271606", + "cityEn": "huili", + "cityZh": "\u4f1a\u7406" +}, { + "id": "CN101271607", + "cityEn": "huidong", + "cityZh": "\u4f1a\u4e1c" +}, { + "id": "CN101271608", + "cityEn": "ningnan", + "cityZh": "\u5b81\u5357" +}, { + "id": "CN101271609", + "cityEn": "puge", + "cityZh": "\u666e\u683c" +}, { + "id": "CN101271610", + "cityEn": "xichang", + "cityZh": "\u897f\u660c" +}, { + "id": "CN101271611", + "cityEn": "jinyang", + "cityZh": "\u91d1\u9633" +}, { + "id": "CN101271612", + "cityEn": "zhaojue", + "cityZh": "\u662d\u89c9" +}, { + "id": "CN101271613", + "cityEn": "xide", + "cityZh": "\u559c\u5fb7" +}, { + "id": "CN101271614", + "cityEn": "mianning", + "cityZh": "\u5195\u5b81" +}, { + "id": "CN101271615", + "cityEn": "yuexi", + "cityZh": "\u8d8a\u897f" +}, { + "id": "CN101271616", + "cityEn": "ganluo", + "cityZh": "\u7518\u6d1b" +}, { + "id": "CN101271617", + "cityEn": "leibo", + "cityZh": "\u96f7\u6ce2" +}, { + "id": "CN101271618", + "cityEn": "meigu", + "cityZh": "\u7f8e\u59d1" +}, { + "id": "CN101271619", + "cityEn": "butuo", + "cityZh": "\u5e03\u62d6" +}, { + "id": "CN101271701", + "cityEn": "yaan", + "cityZh": "\u96c5\u5b89" +}, { + "id": "CN101271702", + "cityEn": "mingshan", + "cityZh": "\u540d\u5c71" +}, { + "id": "CN101271703", + "cityEn": "yingjing", + "cityZh": "\u8365\u7ecf" +}, { + "id": "CN101271704", + "cityEn": "hanyuan", + "cityZh": "\u6c49\u6e90" +}, { + "id": "CN101271705", + "cityEn": "shimian", + "cityZh": "\u77f3\u68c9" +}, { + "id": "CN101271706", + "cityEn": "tianquan", + "cityZh": "\u5929\u5168" +}, { + "id": "CN101271707", + "cityEn": "lushan", + "cityZh": "\u82a6\u5c71" +}, { + "id": "CN101271708", + "cityEn": "baoxing", + "cityZh": "\u5b9d\u5174" +}, { + "id": "CN101271709", + "cityEn": "yucheng", + "cityZh": "\u96e8\u57ce" +}, { + "id": "CN101271801", + "cityEn": "ganzi", + "cityZh": "\u7518\u5b5c" +}, { + "id": "CN101271802", + "cityEn": "kangding", + "cityZh": "\u5eb7\u5b9a" +}, { + "id": "CN101271803", + "cityEn": "luding", + "cityZh": "\u6cf8\u5b9a" +}, { + "id": "CN101271804", + "cityEn": "danba", + "cityZh": "\u4e39\u5df4" +}, { + "id": "CN101271805", + "cityEn": "jiulong", + "cityZh": "\u4e5d\u9f99" +}, { + "id": "CN101271806", + "cityEn": "yajiang", + "cityZh": "\u96c5\u6c5f" +}, { + "id": "CN101271807", + "cityEn": "daofu", + "cityZh": "\u9053\u5b5a" +}, { + "id": "CN101271808", + "cityEn": "luhuo", + "cityZh": "\u7089\u970d" +}, { + "id": "CN101271809", + "cityEn": "xinlong", + "cityZh": "\u65b0\u9f99" +}, { + "id": "CN101271810", + "cityEn": "dege", + "cityZh": "\u5fb7\u683c" +}, { + "id": "CN101271811", + "cityEn": "baiyu", + "cityZh": "\u767d\u7389" +}, { + "id": "CN101271812", + "cityEn": "shiqu", + "cityZh": "\u77f3\u6e20" +}, { + "id": "CN101271813", + "cityEn": "seda", + "cityZh": "\u8272\u8fbe" +}, { + "id": "CN101271814", + "cityEn": "litang", + "cityZh": "\u7406\u5858" +}, { + "id": "CN101271815", + "cityEn": "batang", + "cityZh": "\u5df4\u5858" +}, { + "id": "CN101271816", + "cityEn": "xiangcheng", + "cityZh": "\u4e61\u57ce" +}, { + "id": "CN101271817", + "cityEn": "daocheng", + "cityZh": "\u7a3b\u57ce" +}, { + "id": "CN101271818", + "cityEn": "derong", + "cityZh": "\u5f97\u8363" +}, { + "id": "CN101271901", + "cityEn": "aba", + "cityZh": "\u963f\u575d" +}, { + "id": "CN101271902", + "cityEn": "wenchuan", + "cityZh": "\u6c76\u5ddd" +}, { + "id": "CN101271903", + "cityEn": "lixian", + "cityZh": "\u7406\u53bf" +}, { + "id": "CN101271904", + "cityEn": "maoxian", + "cityZh": "\u8302\u53bf" +}, { + "id": "CN101271905", + "cityEn": "songfan", + "cityZh": "\u677e\u6f58" +}, { + "id": "CN101271906", + "cityEn": "jiuzhaigou", + "cityZh": "\u4e5d\u5be8\u6c9f" +}, { + "id": "CN101271907", + "cityEn": "jinchuan", + "cityZh": "\u91d1\u5ddd" +}, { + "id": "CN101271908", + "cityEn": "xiaojin", + "cityZh": "\u5c0f\u91d1" +}, { + "id": "CN101271909", + "cityEn": "heishui", + "cityZh": "\u9ed1\u6c34" +}, { + "id": "CN101271910", + "cityEn": "maerkang", + "cityZh": "\u9a6c\u5c14\u5eb7" +}, { + "id": "CN101271911", + "cityEn": "rangtang", + "cityZh": "\u58e4\u5858" +}, { + "id": "CN101271912", + "cityEn": "nuoergai", + "cityZh": "\u82e5\u5c14\u76d6" +}, { + "id": "CN101271913", + "cityEn": "hongyuan", + "cityZh": "\u7ea2\u539f" +}, { + "id": "CN101272001", + "cityEn": "deyang", + "cityZh": "\u5fb7\u9633" +}, { + "id": "CN101272002", + "cityEn": "zhongjiang", + "cityZh": "\u4e2d\u6c5f" +}, { + "id": "CN101272003", + "cityEn": "guanghan", + "cityZh": "\u5e7f\u6c49" +}, { + "id": "CN101272004", + "cityEn": "shifang", + "cityZh": "\u4ec0\u90a1" +}, { + "id": "CN101272005", + "cityEn": "mianzhu", + "cityZh": "\u7ef5\u7af9" +}, { + "id": "CN101272006", + "cityEn": "luojiang", + "cityZh": "\u7f57\u6c5f" +}, { + "id": "CN101272007", + "cityEn": "jingyang", + "cityZh": "\u65cc\u9633" +}, { + "id": "CN101272101", + "cityEn": "guangyuan", + "cityZh": "\u5e7f\u5143" +}, { + "id": "CN101272102", + "cityEn": "wangcang", + "cityZh": "\u65fa\u82cd" +}, { + "id": "CN101272103", + "cityEn": "qingchuan", + "cityZh": "\u9752\u5ddd" +}, { + "id": "CN101272104", + "cityEn": "jiange", + "cityZh": "\u5251\u9601" +}, { + "id": "CN101272105", + "cityEn": "cangxi", + "cityZh": "\u82cd\u6eaa" +}, { + "id": "CN101272106", + "cityEn": "lizhou", + "cityZh": "\u5229\u5dde" +}, { + "id": "CN101272107", + "cityEn": "zhaohua", + "cityZh": "\u662d\u5316" +}, { + "id": "CN101272108", + "cityEn": "chaotian", + "cityZh": "\u671d\u5929" +}, { + "id": "CN101280101", + "cityEn": "guangzhou", + "cityZh": "\u5e7f\u5dde" +}, { + "id": "CN101280102", + "cityEn": "panyu", + "cityZh": "\u756a\u79ba" +}, { + "id": "CN101280103", + "cityEn": "conghua", + "cityZh": "\u4ece\u5316" +}, { + "id": "CN101280104", + "cityEn": "zengcheng", + "cityZh": "\u589e\u57ce" +}, { + "id": "CN101280105", + "cityEn": "huadu", + "cityZh": "\u82b1\u90fd" +}, { + "id": "CN101280106", + "cityEn": "liwan", + "cityZh": "\u8354\u6e7e" +}, { + "id": "CN101280107", + "cityEn": "yuexiu", + "cityZh": "\u8d8a\u79c0" +}, { + "id": "CN101280108", + "cityEn": "haizhu", + "cityZh": "\u6d77\u73e0" +}, { + "id": "CN101280109", + "cityEn": "tianhe", + "cityZh": "\u5929\u6cb3" +}, { + "id": "CN101280110", + "cityEn": "baiyun", + "cityZh": "\u767d\u4e91" +}, { + "id": "CN101280111", + "cityEn": "huangpu", + "cityZh": "\u9ec4\u57d4" +}, { + "id": "CN101280112", + "cityEn": "nansha", + "cityZh": "\u5357\u6c99" +}, { + "id": "CN101280201", + "cityEn": "shaoguan", + "cityZh": "\u97f6\u5173" +}, { + "id": "CN101280202", + "cityEn": "ruyuan", + "cityZh": "\u4e73\u6e90" +}, { + "id": "CN101280203", + "cityEn": "shixing", + "cityZh": "\u59cb\u5174" +}, { + "id": "CN101280204", + "cityEn": "wengyuan", + "cityZh": "\u7fc1\u6e90" +}, { + "id": "CN101280205", + "cityEn": "lechang", + "cityZh": "\u4e50\u660c" +}, { + "id": "CN101280206", + "cityEn": "renhua", + "cityZh": "\u4ec1\u5316" +}, { + "id": "CN101280207", + "cityEn": "nanxiong", + "cityZh": "\u5357\u96c4" +}, { + "id": "CN101280208", + "cityEn": "xinfeng", + "cityZh": "\u65b0\u4e30" +}, { + "id": "CN101280209", + "cityEn": "qujiang", + "cityZh": "\u66f2\u6c5f" +}, { + "id": "CN101280210", + "cityEn": "zhenjiang", + "cityZh": "\u6d48\u6c5f" +}, { + "id": "CN101280211", + "cityEn": "wujiang", + "cityZh": "\u6b66\u6c5f" +}, { + "id": "CN101280301", + "cityEn": "huizhou", + "cityZh": "\u60e0\u5dde" +}, { + "id": "CN101280302", + "cityEn": "boluo", + "cityZh": "\u535a\u7f57" +}, { + "id": "CN101280303", + "cityEn": "huiyang", + "cityZh": "\u60e0\u9633" +}, { + "id": "CN101280304", + "cityEn": "huidong", + "cityZh": "\u60e0\u4e1c" +}, { + "id": "CN101280305", + "cityEn": "longmen", + "cityZh": "\u9f99\u95e8" +}, { + "id": "CN101280306", + "cityEn": "huicheng", + "cityZh": "\u60e0\u57ce" +}, { + "id": "CN101280401", + "cityEn": "meizhou", + "cityZh": "\u6885\u5dde" +}, { + "id": "CN101280402", + "cityEn": "xingning", + "cityZh": "\u5174\u5b81" +}, { + "id": "CN101280403", + "cityEn": "jiaoling", + "cityZh": "\u8549\u5cad" +}, { + "id": "CN101280404", + "cityEn": "dabu", + "cityZh": "\u5927\u57d4" +}, { + "id": "CN101280405", + "cityEn": "meijiang", + "cityZh": "\u6885\u6c5f" +}, { + "id": "CN101280406", + "cityEn": "fengshun", + "cityZh": "\u4e30\u987a" +}, { + "id": "CN101280407", + "cityEn": "pingyuan", + "cityZh": "\u5e73\u8fdc" +}, { + "id": "CN101280408", + "cityEn": "wuhua", + "cityZh": "\u4e94\u534e" +}, { + "id": "CN101280409", + "cityEn": "meixian", + "cityZh": "\u6885\u53bf" +}, { + "id": "CN101280501", + "cityEn": "shantou", + "cityZh": "\u6c55\u5934" +}, { + "id": "CN101280502", + "cityEn": "chaoyang", + "cityZh": "\u6f6e\u9633" +}, { + "id": "CN101280503", + "cityEn": "chenghai", + "cityZh": "\u6f84\u6d77" +}, { + "id": "CN101280504", + "cityEn": "nanao", + "cityZh": "\u5357\u6fb3" +}, { + "id": "CN101280505", + "cityEn": "longhu", + "cityZh": "\u9f99\u6e56" +}, { + "id": "CN101280506", + "cityEn": "jinping", + "cityZh": "\u91d1\u5e73" +}, { + "id": "CN101280507", + "cityEn": "haojiang", + "cityZh": "\u6fe0\u6c5f" +}, { + "id": "CN101280508", + "cityEn": "chaonan", + "cityZh": "\u6f6e\u5357" +}, { + "id": "CN101280601", + "cityEn": "shenzhen", + "cityZh": "\u6df1\u5733" +}, { + "id": "CN101280602", + "cityEn": "luohu", + "cityZh": "\u7f57\u6e56" +}, { + "id": "CN101280603", + "cityEn": "futian", + "cityZh": "\u798f\u7530" +}, { + "id": "CN101280604", + "cityEn": "nanshan", + "cityZh": "\u5357\u5c71" +}, { + "id": "CN101280605", + "cityEn": "baoan", + "cityZh": "\u5b9d\u5b89" +}, { + "id": "CN101280606", + "cityEn": "longgang", + "cityZh": "\u9f99\u5c97" +}, { + "id": "CN101280607", + "cityEn": "yantian", + "cityZh": "\u76d0\u7530" +}, { + "id": "CN101280701", + "cityEn": "zhuhai", + "cityZh": "\u73e0\u6d77" +}, { + "id": "CN101280702", + "cityEn": "doumen", + "cityZh": "\u6597\u95e8" +}, { + "id": "CN101280703", + "cityEn": "jinwan", + "cityZh": "\u91d1\u6e7e" +}, { + "id": "CN101280704", + "cityEn": "xiangzhou", + "cityZh": "\u9999\u6d32" +}, { + "id": "CN101280800", + "cityEn": "foshan", + "cityZh": "\u4f5b\u5c71" +}, { + "id": "CN101280801", + "cityEn": "shunde", + "cityZh": "\u987a\u5fb7" +}, { + "id": "CN101280802", + "cityEn": "sanshui", + "cityZh": "\u4e09\u6c34" +}, { + "id": "CN101280803", + "cityEn": "nanhai", + "cityZh": "\u5357\u6d77" +}, { + "id": "CN101280804", + "cityEn": "gaoming", + "cityZh": "\u9ad8\u660e" +}, { + "id": "CN101280805", + "cityEn": "chancheng", + "cityZh": "\u7985\u57ce" +}, { + "id": "CN101280901", + "cityEn": "zhaoqing", + "cityZh": "\u8087\u5e86" +}, { + "id": "CN101280902", + "cityEn": "guangning", + "cityZh": "\u5e7f\u5b81" +}, { + "id": "CN101280903", + "cityEn": "sihui", + "cityZh": "\u56db\u4f1a" +}, { + "id": "CN101280904", + "cityEn": "duanzhou", + "cityZh": "\u7aef\u5dde" +}, { + "id": "CN101280905", + "cityEn": "deqing", + "cityZh": "\u5fb7\u5e86" +}, { + "id": "CN101280906", + "cityEn": "huaiji", + "cityZh": "\u6000\u96c6" +}, { + "id": "CN101280907", + "cityEn": "fengkai", + "cityZh": "\u5c01\u5f00" +}, { + "id": "CN101280908", + "cityEn": "gaoyao", + "cityZh": "\u9ad8\u8981" +}, { + "id": "CN101280909", + "cityEn": "dinghu", + "cityZh": "\u9f0e\u6e56" +}, { + "id": "CN101281001", + "cityEn": "zhanjiang", + "cityZh": "\u6e5b\u6c5f" +}, { + "id": "CN101281002", + "cityEn": "wuchuan", + "cityZh": "\u5434\u5ddd" +}, { + "id": "CN101281003", + "cityEn": "leizhou", + "cityZh": "\u96f7\u5dde" +}, { + "id": "CN101281004", + "cityEn": "xuwen", + "cityZh": "\u5f90\u95fb" +}, { + "id": "CN101281005", + "cityEn": "lianjiang", + "cityZh": "\u5ec9\u6c5f" +}, { + "id": "CN101281006", + "cityEn": "chikan", + "cityZh": "\u8d64\u574e" +}, { + "id": "CN101281007", + "cityEn": "suixi", + "cityZh": "\u9042\u6eaa" +}, { + "id": "CN101281008", + "cityEn": "potou", + "cityZh": "\u5761\u5934" +}, { + "id": "CN101281009", + "cityEn": "xiashan", + "cityZh": "\u971e\u5c71" +}, { + "id": "CN101281010", + "cityEn": "mazhang", + "cityZh": "\u9ebb\u7ae0" +}, { + "id": "CN101281101", + "cityEn": "jiangmen", + "cityZh": "\u6c5f\u95e8" +}, { + "id": "CN101281103", + "cityEn": "kaiping", + "cityZh": "\u5f00\u5e73" +}, { + "id": "CN101281104", + "cityEn": "xinhui", + "cityZh": "\u65b0\u4f1a" +}, { + "id": "CN101281105", + "cityEn": "enping", + "cityZh": "\u6069\u5e73" +}, { + "id": "CN101281106", + "cityEn": "taishan", + "cityZh": "\u53f0\u5c71" +}, { + "id": "CN101281107", + "cityEn": "pengjiang", + "cityZh": "\u84ec\u6c5f" +}, { + "id": "CN101281108", + "cityEn": "heshan", + "cityZh": "\u9e64\u5c71" +}, { + "id": "CN101281109", + "cityEn": "jianghai", + "cityZh": "\u6c5f\u6d77" +}, { + "id": "CN101281201", + "cityEn": "heyuan", + "cityZh": "\u6cb3\u6e90" +}, { + "id": "CN101281202", + "cityEn": "zijin", + "cityZh": "\u7d2b\u91d1" +}, { + "id": "CN101281203", + "cityEn": "lianping", + "cityZh": "\u8fde\u5e73" +}, { + "id": "CN101281204", + "cityEn": "heping", + "cityZh": "\u548c\u5e73" +}, { + "id": "CN101281205", + "cityEn": "longchuan", + "cityZh": "\u9f99\u5ddd" +}, { + "id": "CN101281206", + "cityEn": "dongyuan", + "cityZh": "\u4e1c\u6e90" +}, { + "id": "CN101281207", + "cityEn": "yuancheng", + "cityZh": "\u6e90\u57ce" +}, { + "id": "CN101281301", + "cityEn": "qingyuan", + "cityZh": "\u6e05\u8fdc" +}, { + "id": "CN101281302", + "cityEn": "liannan", + "cityZh": "\u8fde\u5357" +}, { + "id": "CN101281303", + "cityEn": "lianzhou", + "cityZh": "\u8fde\u5dde" +}, { + "id": "CN101281304", + "cityEn": "lianshan", + "cityZh": "\u8fde\u5c71" +}, { + "id": "CN101281305", + "cityEn": "yangshan", + "cityZh": "\u9633\u5c71" +}, { + "id": "CN101281306", + "cityEn": "fogang", + "cityZh": "\u4f5b\u5188" +}, { + "id": "CN101281307", + "cityEn": "yingde", + "cityZh": "\u82f1\u5fb7" +}, { + "id": "CN101281308", + "cityEn": "qingxin", + "cityZh": "\u6e05\u65b0" +}, { + "id": "CN101281309", + "cityEn": "qingcheng", + "cityZh": "\u6e05\u57ce" +}, { + "id": "CN101281401", + "cityEn": "yunfu", + "cityZh": "\u4e91\u6d6e" +}, { + "id": "CN101281402", + "cityEn": "luoding", + "cityZh": "\u7f57\u5b9a" +}, { + "id": "CN101281403", + "cityEn": "xinxing", + "cityZh": "\u65b0\u5174" +}, { + "id": "CN101281404", + "cityEn": "yunan", + "cityZh": "\u90c1\u5357" +}, { + "id": "CN101281405", + "cityEn": "yuncheng", + "cityZh": "\u4e91\u57ce" +}, { + "id": "CN101281406", + "cityEn": "yunan", + "cityZh": "\u4e91\u5b89" +}, { + "id": "CN101281501", + "cityEn": "chaozhou", + "cityZh": "\u6f6e\u5dde" +}, { + "id": "CN101281502", + "cityEn": "raoping", + "cityZh": "\u9976\u5e73" +}, { + "id": "CN101281503", + "cityEn": "chaoan", + "cityZh": "\u6f6e\u5b89" +}, { + "id": "CN101281504", + "cityEn": "xiangqiao", + "cityZh": "\u6e58\u6865" +}, { + "id": "CN101281601", + "cityEn": "dongguan", + "cityZh": "\u4e1c\u839e" +}, { + "id": "CN101281701", + "cityEn": "zhongshan", + "cityZh": "\u4e2d\u5c71" +}, { + "id": "CN101281801", + "cityEn": "yangjiang", + "cityZh": "\u9633\u6c5f" +}, { + "id": "CN101281802", + "cityEn": "yangchun", + "cityZh": "\u9633\u6625" +}, { + "id": "CN101281803", + "cityEn": "yangdong", + "cityZh": "\u9633\u4e1c" +}, { + "id": "CN101281804", + "cityEn": "yangxi", + "cityZh": "\u9633\u897f" +}, { + "id": "CN101281805", + "cityEn": "jiangcheng", + "cityZh": "\u6c5f\u57ce" +}, { + "id": "CN101281901", + "cityEn": "jieyang", + "cityZh": "\u63ed\u9633" +}, { + "id": "CN101281902", + "cityEn": "jiexi", + "cityZh": "\u63ed\u897f" +}, { + "id": "CN101281903", + "cityEn": "puning", + "cityZh": "\u666e\u5b81" +}, { + "id": "CN101281904", + "cityEn": "huilai", + "cityZh": "\u60e0\u6765" +}, { + "id": "CN101281905", + "cityEn": "jiedong", + "cityZh": "\u63ed\u4e1c" +}, { + "id": "CN101281906", + "cityEn": "rongcheng", + "cityZh": "\u6995\u57ce" +}, { + "id": "CN101282001", + "cityEn": "maoming", + "cityZh": "\u8302\u540d" +}, { + "id": "CN101282002", + "cityEn": "gaozhou", + "cityZh": "\u9ad8\u5dde" +}, { + "id": "CN101282003", + "cityEn": "huazhou", + "cityZh": "\u5316\u5dde" +}, { + "id": "CN101282004", + "cityEn": "dianbai", + "cityZh": "\u7535\u767d" +}, { + "id": "CN101282005", + "cityEn": "xinyi", + "cityZh": "\u4fe1\u5b9c" +}, { + "id": "CN101282007", + "cityEn": "maonan", + "cityZh": "\u8302\u5357" +}, { + "id": "CN101282101", + "cityEn": "shanwei", + "cityZh": "\u6c55\u5c3e" +}, { + "id": "CN101282102", + "cityEn": "haifeng", + "cityZh": "\u6d77\u4e30" +}, { + "id": "CN101282103", + "cityEn": "lufeng", + "cityZh": "\u9646\u4e30" +}, { + "id": "CN101282104", + "cityEn": "luhe", + "cityZh": "\u9646\u6cb3" +}, { + "id": "CN101290101", + "cityEn": "kunming", + "cityZh": "\u6606\u660e" +}, { + "id": "CN101290102", + "cityEn": "wuhua", + "cityZh": "\u4e94\u534e" +}, { + "id": "CN101290103", + "cityEn": "dongchuan", + "cityZh": "\u4e1c\u5ddd" +}, { + "id": "CN101290104", + "cityEn": "xundian", + "cityZh": "\u5bfb\u7538" +}, { + "id": "CN101290105", + "cityEn": "jinning", + "cityZh": "\u664b\u5b81" +}, { + "id": "CN101290106", + "cityEn": "yiliang", + "cityZh": "\u5b9c\u826f" +}, { + "id": "CN101290107", + "cityEn": "shilin", + "cityZh": "\u77f3\u6797" +}, { + "id": "CN101290108", + "cityEn": "chenggong", + "cityZh": "\u5448\u8d21" +}, { + "id": "CN101290109", + "cityEn": "fumin", + "cityZh": "\u5bcc\u6c11" +}, { + "id": "CN101290110", + "cityEn": "songming", + "cityZh": "\u5d69\u660e" +}, { + "id": "CN101290111", + "cityEn": "luquan", + "cityZh": "\u7984\u529d" +}, { + "id": "CN101290112", + "cityEn": "anning", + "cityZh": "\u5b89\u5b81" +}, { + "id": "CN101290114", + "cityEn": "panlong", + "cityZh": "\u76d8\u9f99" +}, { + "id": "CN101290115", + "cityEn": "guandu", + "cityZh": "\u5b98\u6e21" +}, { + "id": "CN101290116", + "cityEn": "xishan", + "cityZh": "\u897f\u5c71" +}, { + "id": "CN101290201", + "cityEn": "dali", + "cityZh": "\u5927\u7406" +}, { + "id": "CN101290202", + "cityEn": "yunlong", + "cityZh": "\u4e91\u9f99" +}, { + "id": "CN101290203", + "cityEn": "yangbi", + "cityZh": "\u6f3e\u6fde" +}, { + "id": "CN101290204", + "cityEn": "yongping", + "cityZh": "\u6c38\u5e73" +}, { + "id": "CN101290205", + "cityEn": "binchuan", + "cityZh": "\u5bbe\u5ddd" +}, { + "id": "CN101290206", + "cityEn": "midu", + "cityZh": "\u5f25\u6e21" +}, { + "id": "CN101290207", + "cityEn": "xiangyun", + "cityZh": "\u7965\u4e91" +}, { + "id": "CN101290208", + "cityEn": "weishan", + "cityZh": "\u5dcd\u5c71" +}, { + "id": "CN101290209", + "cityEn": "jianchuan", + "cityZh": "\u5251\u5ddd" +}, { + "id": "CN101290210", + "cityEn": "eryuan", + "cityZh": "\u6d31\u6e90" +}, { + "id": "CN101290211", + "cityEn": "heqing", + "cityZh": "\u9e64\u5e86" +}, { + "id": "CN101290212", + "cityEn": "nanjian", + "cityZh": "\u5357\u6da7" +}, { + "id": "CN101290301", + "cityEn": "honghe", + "cityZh": "\u7ea2\u6cb3" +}, { + "id": "CN101290302", + "cityEn": "shiping", + "cityZh": "\u77f3\u5c4f" +}, { + "id": "CN101290303", + "cityEn": "jianshui", + "cityZh": "\u5efa\u6c34" +}, { + "id": "CN101290304", + "cityEn": "mile", + "cityZh": "\u5f25\u52d2" +}, { + "id": "CN101290305", + "cityEn": "yuanyang", + "cityZh": "\u5143\u9633" +}, { + "id": "CN101290306", + "cityEn": "lvchun", + "cityZh": "\u7eff\u6625" +}, { + "id": "CN101290307", + "cityEn": "kaiyuan", + "cityZh": "\u5f00\u8fdc" +}, { + "id": "CN101290308", + "cityEn": "gejiu", + "cityZh": "\u4e2a\u65e7" +}, { + "id": "CN101290309", + "cityEn": "mengzi", + "cityZh": "\u8499\u81ea" +}, { + "id": "CN101290310", + "cityEn": "pingbian", + "cityZh": "\u5c4f\u8fb9" +}, { + "id": "CN101290311", + "cityEn": "luxi", + "cityZh": "\u6cf8\u897f" +}, { + "id": "CN101290312", + "cityEn": "jinping", + "cityZh": "\u91d1\u5e73" +}, { + "id": "CN101290313", + "cityEn": "hekou", + "cityZh": "\u6cb3\u53e3" +}, { + "id": "CN101290401", + "cityEn": "qujing", + "cityZh": "\u66f2\u9756" +}, { + "id": "CN101290402", + "cityEn": "zhanyi", + "cityZh": "\u6cbe\u76ca" +}, { + "id": "CN101290403", + "cityEn": "luliang", + "cityZh": "\u9646\u826f" +}, { + "id": "CN101290404", + "cityEn": "fuyuan", + "cityZh": "\u5bcc\u6e90" +}, { + "id": "CN101290405", + "cityEn": "malong", + "cityZh": "\u9a6c\u9f99" +}, { + "id": "CN101290406", + "cityEn": "shizong", + "cityZh": "\u5e08\u5b97" +}, { + "id": "CN101290407", + "cityEn": "luoping", + "cityZh": "\u7f57\u5e73" +}, { + "id": "CN101290408", + "cityEn": "huize", + "cityZh": "\u4f1a\u6cfd" +}, { + "id": "CN101290409", + "cityEn": "xuanwei", + "cityZh": "\u5ba3\u5a01" +}, { + "id": "CN101290410", + "cityEn": "qilin", + "cityZh": "\u9e92\u9e9f" +}, { + "id": "CN101290501", + "cityEn": "baoshan", + "cityZh": "\u4fdd\u5c71" +}, { + "id": "CN101290502", + "cityEn": "longyang", + "cityZh": "\u9686\u9633" +}, { + "id": "CN101290503", + "cityEn": "longling", + "cityZh": "\u9f99\u9675" +}, { + "id": "CN101290504", + "cityEn": "sidian", + "cityZh": "\u65bd\u7538" +}, { + "id": "CN101290505", + "cityEn": "changning", + "cityZh": "\u660c\u5b81" +}, { + "id": "CN101290506", + "cityEn": "tengchong", + "cityZh": "\u817e\u51b2" +}, { + "id": "CN101290601", + "cityEn": "wenshan", + "cityZh": "\u6587\u5c71" +}, { + "id": "CN101290602", + "cityEn": "xichou", + "cityZh": "\u897f\u7574" +}, { + "id": "CN101290603", + "cityEn": "maguan", + "cityZh": "\u9a6c\u5173" +}, { + "id": "CN101290604", + "cityEn": "malipo", + "cityZh": "\u9ebb\u6817\u5761" +}, { + "id": "CN101290605", + "cityEn": "yanshan", + "cityZh": "\u781a\u5c71" +}, { + "id": "CN101290606", + "cityEn": "qiubei", + "cityZh": "\u4e18\u5317" +}, { + "id": "CN101290607", + "cityEn": "guangnan", + "cityZh": "\u5e7f\u5357" +}, { + "id": "CN101290608", + "cityEn": "funing", + "cityZh": "\u5bcc\u5b81" +}, { + "id": "CN101290701", + "cityEn": "yuxi", + "cityZh": "\u7389\u6eaa" +}, { + "id": "CN101290702", + "cityEn": "chengjiang", + "cityZh": "\u6f84\u6c5f" +}, { + "id": "CN101290703", + "cityEn": "jiangchuan", + "cityZh": "\u6c5f\u5ddd" +}, { + "id": "CN101290704", + "cityEn": "tonghai", + "cityZh": "\u901a\u6d77" +}, { + "id": "CN101290705", + "cityEn": "huaning", + "cityZh": "\u534e\u5b81" +}, { + "id": "CN101290706", + "cityEn": "xinping", + "cityZh": "\u65b0\u5e73" +}, { + "id": "CN101290707", + "cityEn": "yimen", + "cityZh": "\u6613\u95e8" +}, { + "id": "CN101290708", + "cityEn": "eshan", + "cityZh": "\u5ce8\u5c71" +}, { + "id": "CN101290709", + "cityEn": "yuanjiang", + "cityZh": "\u5143\u6c5f" +}, { + "id": "CN101290710", + "cityEn": "hongta", + "cityZh": "\u7ea2\u5854" +}, { + "id": "CN101290801", + "cityEn": "chuxiong", + "cityZh": "\u695a\u96c4" +}, { + "id": "CN101290802", + "cityEn": "dayao", + "cityZh": "\u5927\u59da" +}, { + "id": "CN101290803", + "cityEn": "yuanmou", + "cityZh": "\u5143\u8c0b" +}, { + "id": "CN101290804", + "cityEn": "yaoan", + "cityZh": "\u59da\u5b89" +}, { + "id": "CN101290805", + "cityEn": "mouding", + "cityZh": "\u725f\u5b9a" +}, { + "id": "CN101290806", + "cityEn": "nanhua", + "cityZh": "\u5357\u534e" +}, { + "id": "CN101290807", + "cityEn": "wuding", + "cityZh": "\u6b66\u5b9a" +}, { + "id": "CN101290808", + "cityEn": "lufeng", + "cityZh": "\u7984\u4e30" +}, { + "id": "CN101290809", + "cityEn": "shuangbai", + "cityZh": "\u53cc\u67cf" +}, { + "id": "CN101290810", + "cityEn": "yongren", + "cityZh": "\u6c38\u4ec1" +}, { + "id": "CN101290901", + "cityEn": "puer", + "cityZh": "\u666e\u6d31" +}, { + "id": "CN101290902", + "cityEn": "jinggu", + "cityZh": "\u666f\u8c37" +}, { + "id": "CN101290903", + "cityEn": "jingdong", + "cityZh": "\u666f\u4e1c" +}, { + "id": "CN101290904", + "cityEn": "lancang", + "cityZh": "\u6f9c\u6ca7" +}, { + "id": "CN101290905", + "cityEn": "simao", + "cityZh": "\u601d\u8305" +}, { + "id": "CN101290906", + "cityEn": "mojiang", + "cityZh": "\u58a8\u6c5f" +}, { + "id": "CN101290907", + "cityEn": "jiangcheng", + "cityZh": "\u6c5f\u57ce" +}, { + "id": "CN101290908", + "cityEn": "menglian", + "cityZh": "\u5b5f\u8fde" +}, { + "id": "CN101290909", + "cityEn": "ximeng", + "cityZh": "\u897f\u76df" +}, { + "id": "CN101290911", + "cityEn": "zhenyuan", + "cityZh": "\u9547\u6c85" +}, { + "id": "CN101290912", + "cityEn": "ninger", + "cityZh": "\u5b81\u6d31" +}, { + "id": "CN101291001", + "cityEn": "zhaotong", + "cityZh": "\u662d\u901a" +}, { + "id": "CN101291002", + "cityEn": "ludian", + "cityZh": "\u9c81\u7538" +}, { + "id": "CN101291003", + "cityEn": "yiliang", + "cityZh": "\u5f5d\u826f" +}, { + "id": "CN101291004", + "cityEn": "zhenxiong", + "cityZh": "\u9547\u96c4" +}, { + "id": "CN101291005", + "cityEn": "weixin", + "cityZh": "\u5a01\u4fe1" +}, { + "id": "CN101291006", + "cityEn": "qiaojia", + "cityZh": "\u5de7\u5bb6" +}, { + "id": "CN101291007", + "cityEn": "suijiang", + "cityZh": "\u7ee5\u6c5f" +}, { + "id": "CN101291008", + "cityEn": "yongshan", + "cityZh": "\u6c38\u5584" +}, { + "id": "CN101291009", + "cityEn": "yanjin", + "cityZh": "\u76d0\u6d25" +}, { + "id": "CN101291010", + "cityEn": "daguan", + "cityZh": "\u5927\u5173" +}, { + "id": "CN101291011", + "cityEn": "shuifu", + "cityZh": "\u6c34\u5bcc" +}, { + "id": "CN101291012", + "cityEn": "zhaoyang", + "cityZh": "\u662d\u9633" +}, { + "id": "CN101291101", + "cityEn": "lincang", + "cityZh": "\u4e34\u6ca7" +}, { + "id": "CN101291102", + "cityEn": "cangyuan", + "cityZh": "\u6ca7\u6e90" +}, { + "id": "CN101291103", + "cityEn": "gengma", + "cityZh": "\u803f\u9a6c" +}, { + "id": "CN101291104", + "cityEn": "shuangjiang", + "cityZh": "\u53cc\u6c5f" +}, { + "id": "CN101291105", + "cityEn": "fengqing", + "cityZh": "\u51e4\u5e86" +}, { + "id": "CN101291106", + "cityEn": "yongde", + "cityZh": "\u6c38\u5fb7" +}, { + "id": "CN101291107", + "cityEn": "yunxian", + "cityZh": "\u4e91\u53bf" +}, { + "id": "CN101291108", + "cityEn": "zhenkang", + "cityZh": "\u9547\u5eb7" +}, { + "id": "CN101291109", + "cityEn": "linxiang", + "cityZh": "\u4e34\u7fd4" +}, { + "id": "CN101291201", + "cityEn": "nujiang", + "cityZh": "\u6012\u6c5f" +}, { + "id": "CN101291203", + "cityEn": "fugong", + "cityZh": "\u798f\u8d21" +}, { + "id": "CN101291204", + "cityEn": "lanping", + "cityZh": "\u5170\u576a" +}, { + "id": "CN101291205", + "cityEn": "lushui", + "cityZh": "\u6cf8\u6c34" +}, { + "id": "CN101291207", + "cityEn": "gongshan", + "cityZh": "\u8d21\u5c71" +}, { + "id": "CN101291301", + "cityEn": "xianggelila", + "cityZh": "\u9999\u683c\u91cc\u62c9" +}, { + "id": "CN101291302", + "cityEn": "deqin", + "cityZh": "\u5fb7\u94a6" +}, { + "id": "CN101291303", + "cityEn": "weixi", + "cityZh": "\u7ef4\u897f" +}, { + "id": "CN101291305", + "cityEn": "diqing", + "cityZh": "\u8fea\u5e86" +}, { + "id": "CN101291401", + "cityEn": "lijiang", + "cityZh": "\u4e3d\u6c5f" +}, { + "id": "CN101291402", + "cityEn": "yongsheng", + "cityZh": "\u6c38\u80dc" +}, { + "id": "CN101291403", + "cityEn": "huaping", + "cityZh": "\u534e\u576a" +}, { + "id": "CN101291404", + "cityEn": "ninglang", + "cityZh": "\u5b81\u8497" +}, { + "id": "CN101291405", + "cityEn": "gucheng", + "cityZh": "\u53e4\u57ce" +}, { + "id": "CN101291406", + "cityEn": "yulong", + "cityZh": "\u7389\u9f99" +}, { + "id": "CN101291501", + "cityEn": "dehong", + "cityZh": "\u5fb7\u5b8f" +}, { + "id": "CN101291503", + "cityEn": "longchuan", + "cityZh": "\u9647\u5ddd" +}, { + "id": "CN101291504", + "cityEn": "yingjiang", + "cityZh": "\u76c8\u6c5f" +}, { + "id": "CN101291506", + "cityEn": "ruili", + "cityZh": "\u745e\u4e3d" +}, { + "id": "CN101291507", + "cityEn": "lianghe", + "cityZh": "\u6881\u6cb3" +}, { + "id": "CN101291508", + "cityEn": "mangshi", + "cityZh": "\u8292\u5e02" +}, { + "id": "CN101291601", + "cityEn": "jinghong", + "cityZh": "\u666f\u6d2a" +}, { + "id": "CN101291602", + "cityEn": "xishuangbanna", + "cityZh": "\u897f\u53cc\u7248\u7eb3" +}, { + "id": "CN101291603", + "cityEn": "menghai", + "cityZh": "\u52d0\u6d77" +}, { + "id": "CN101291605", + "cityEn": "mengla", + "cityZh": "\u52d0\u814a" +}, { + "id": "CN101300101", + "cityEn": "nanning", + "cityZh": "\u5357\u5b81" +}, { + "id": "CN101300102", + "cityEn": "xingning", + "cityZh": "\u5174\u5b81" +}, { + "id": "CN101300103", + "cityEn": "yongning", + "cityZh": "\u9095\u5b81" +}, { + "id": "CN101300104", + "cityEn": "hengxian", + "cityZh": "\u6a2a\u53bf" +}, { + "id": "CN101300105", + "cityEn": "longan", + "cityZh": "\u9686\u5b89" +}, { + "id": "CN101300106", + "cityEn": "mashan", + "cityZh": "\u9a6c\u5c71" +}, { + "id": "CN101300107", + "cityEn": "shanglin", + "cityZh": "\u4e0a\u6797" +}, { + "id": "CN101300108", + "cityEn": "wuming", + "cityZh": "\u6b66\u9e23" +}, { + "id": "CN101300109", + "cityEn": "binyang", + "cityZh": "\u5bbe\u9633" +}, { + "id": "CN101300110", + "cityEn": "qingxiu", + "cityZh": "\u9752\u79c0" +}, { + "id": "CN101300111", + "cityEn": "jiangnan", + "cityZh": "\u6c5f\u5357" +}, { + "id": "CN101300112", + "cityEn": "xixiangtang", + "cityZh": "\u897f\u4e61\u5858" +}, { + "id": "CN101300113", + "cityEn": "liangqing", + "cityZh": "\u826f\u5e86" +}, { + "id": "CN101300201", + "cityEn": "chongzuo", + "cityZh": "\u5d07\u5de6" +}, { + "id": "CN101300202", + "cityEn": "tiandeng", + "cityZh": "\u5929\u7b49" +}, { + "id": "CN101300203", + "cityEn": "longzhou", + "cityZh": "\u9f99\u5dde" +}, { + "id": "CN101300204", + "cityEn": "pingxiang", + "cityZh": "\u51ed\u7965" +}, { + "id": "CN101300205", + "cityEn": "daxin", + "cityZh": "\u5927\u65b0" +}, { + "id": "CN101300206", + "cityEn": "fusui", + "cityZh": "\u6276\u7ee5" +}, { + "id": "CN101300207", + "cityEn": "ningming", + "cityZh": "\u5b81\u660e" +}, { + "id": "CN101300208", + "cityEn": "jiangzhou", + "cityZh": "\u6c5f\u5dde" +}, { + "id": "CN101300301", + "cityEn": "liuzhou", + "cityZh": "\u67f3\u5dde" +}, { + "id": "CN101300302", + "cityEn": "liucheng", + "cityZh": "\u67f3\u57ce" +}, { + "id": "CN101300303", + "cityEn": "chengzhong", + "cityZh": "\u57ce\u4e2d" +}, { + "id": "CN101300304", + "cityEn": "luzhai", + "cityZh": "\u9e7f\u5be8" +}, { + "id": "CN101300305", + "cityEn": "liujiang", + "cityZh": "\u67f3\u6c5f" +}, { + "id": "CN101300306", + "cityEn": "rongan", + "cityZh": "\u878d\u5b89" +}, { + "id": "CN101300307", + "cityEn": "rongshui", + "cityZh": "\u878d\u6c34" +}, { + "id": "CN101300308", + "cityEn": "sanjiang", + "cityZh": "\u4e09\u6c5f" +}, { + "id": "CN101300309", + "cityEn": "yufeng", + "cityZh": "\u9c7c\u5cf0" +}, { + "id": "CN101300310", + "cityEn": "liunan", + "cityZh": "\u67f3\u5357" +}, { + "id": "CN101300311", + "cityEn": "liubei", + "cityZh": "\u67f3\u5317" +}, { + "id": "CN101300401", + "cityEn": "laibin", + "cityZh": "\u6765\u5bbe" +}, { + "id": "CN101300402", + "cityEn": "xicheng", + "cityZh": "\u5ffb\u57ce" +}, { + "id": "CN101300403", + "cityEn": "jinxiu", + "cityZh": "\u91d1\u79c0" +}, { + "id": "CN101300404", + "cityEn": "xiangzhou", + "cityZh": "\u8c61\u5dde" +}, { + "id": "CN101300405", + "cityEn": "wuxuan", + "cityZh": "\u6b66\u5ba3" +}, { + "id": "CN101300406", + "cityEn": "heshan", + "cityZh": "\u5408\u5c71" +}, { + "id": "CN101300407", + "cityEn": "xingbin", + "cityZh": "\u5174\u5bbe" +}, { + "id": "CN101300501", + "cityEn": "guilin", + "cityZh": "\u6842\u6797" +}, { + "id": "CN101300502", + "cityEn": "xiufeng", + "cityZh": "\u79c0\u5cf0" +}, { + "id": "CN101300503", + "cityEn": "longsheng", + "cityZh": "\u9f99\u80dc" +}, { + "id": "CN101300504", + "cityEn": "yongfu", + "cityZh": "\u6c38\u798f" +}, { + "id": "CN101300505", + "cityEn": "lingui", + "cityZh": "\u4e34\u6842" +}, { + "id": "CN101300506", + "cityEn": "xingan", + "cityZh": "\u5174\u5b89" +}, { + "id": "CN101300507", + "cityEn": "lingchuan", + "cityZh": "\u7075\u5ddd" +}, { + "id": "CN101300508", + "cityEn": "quanzhou", + "cityZh": "\u5168\u5dde" +}, { + "id": "CN101300509", + "cityEn": "guanyang", + "cityZh": "\u704c\u9633" +}, { + "id": "CN101300510", + "cityEn": "yangshuo", + "cityZh": "\u9633\u6714" +}, { + "id": "CN101300511", + "cityEn": "gongcheng", + "cityZh": "\u606d\u57ce" +}, { + "id": "CN101300512", + "cityEn": "pingle", + "cityZh": "\u5e73\u4e50" +}, { + "id": "CN101300513", + "cityEn": "lipu", + "cityZh": "\u8354\u6d66" +}, { + "id": "CN101300514", + "cityEn": "ziyuan", + "cityZh": "\u8d44\u6e90" +}, { + "id": "CN101300515", + "cityEn": "diecai", + "cityZh": "\u53e0\u5f69" +}, { + "id": "CN101300516", + "cityEn": "xiangshan", + "cityZh": "\u8c61\u5c71" +}, { + "id": "CN101300517", + "cityEn": "qixing", + "cityZh": "\u4e03\u661f" +}, { + "id": "CN101300518", + "cityEn": "yanshan", + "cityZh": "\u96c1\u5c71" +}, { + "id": "CN101300601", + "cityEn": "wuzhou", + "cityZh": "\u68a7\u5dde" +}, { + "id": "CN101300602", + "cityEn": "tengxian", + "cityZh": "\u85e4\u53bf" +}, { + "id": "CN101300603", + "cityEn": "wanxiu", + "cityZh": "\u4e07\u79c0" +}, { + "id": "CN101300604", + "cityEn": "cangwu", + "cityZh": "\u82cd\u68a7" +}, { + "id": "CN101300605", + "cityEn": "mengshan", + "cityZh": "\u8499\u5c71" +}, { + "id": "CN101300606", + "cityEn": "cenxi", + "cityZh": "\u5c91\u6eaa" +}, { + "id": "CN101300607", + "cityEn": "changzhou", + "cityZh": "\u957f\u6d32" +}, { + "id": "CN101300608", + "cityEn": "longwei", + "cityZh": "\u9f99\u5729" +}, { + "id": "CN101300701", + "cityEn": "hezhou", + "cityZh": "\u8d3a\u5dde" +}, { + "id": "CN101300702", + "cityEn": "zhaoping", + "cityZh": "\u662d\u5e73" +}, { + "id": "CN101300703", + "cityEn": "fuchuan", + "cityZh": "\u5bcc\u5ddd" +}, { + "id": "CN101300704", + "cityEn": "zhongshan", + "cityZh": "\u949f\u5c71" +}, { + "id": "CN101300705", + "cityEn": "babu", + "cityZh": "\u516b\u6b65" +}, { + "id": "CN101300706", + "cityEn": "pinggui", + "cityZh": "\u5e73\u6842" +}, { + "id": "CN101300801", + "cityEn": "guigang", + "cityZh": "\u8d35\u6e2f" +}, { + "id": "CN101300802", + "cityEn": "guiping", + "cityZh": "\u6842\u5e73" +}, { + "id": "CN101300803", + "cityEn": "pingnan", + "cityZh": "\u5e73\u5357" +}, { + "id": "CN101300804", + "cityEn": "gangbei", + "cityZh": "\u6e2f\u5317" +}, { + "id": "CN101300805", + "cityEn": "gangnan", + "cityZh": "\u6e2f\u5357" +}, { + "id": "CN101300806", + "cityEn": "tantang", + "cityZh": "\u8983\u5858" +}, { + "id": "CN101300901", + "cityEn": "yulin", + "cityZh": "\u7389\u6797" +}, { + "id": "CN101300902", + "cityEn": "bobai", + "cityZh": "\u535a\u767d" +}, { + "id": "CN101300903", + "cityEn": "beiliu", + "cityZh": "\u5317\u6d41" +}, { + "id": "CN101300904", + "cityEn": "rongxian", + "cityZh": "\u5bb9\u53bf" +}, { + "id": "CN101300905", + "cityEn": "luchuan", + "cityZh": "\u9646\u5ddd" +}, { + "id": "CN101300906", + "cityEn": "xingye", + "cityZh": "\u5174\u4e1a" +}, { + "id": "CN101300907", + "cityEn": "yuzhou", + "cityZh": "\u7389\u5dde" +}, { + "id": "CN101300908", + "cityEn": "fumian", + "cityZh": "\u798f\u7ef5" +}, { + "id": "CN101301001", + "cityEn": "baise", + "cityZh": "\u767e\u8272" +}, { + "id": "CN101301002", + "cityEn": "napo", + "cityZh": "\u90a3\u5761" +}, { + "id": "CN101301003", + "cityEn": "tianyang", + "cityZh": "\u7530\u9633" +}, { + "id": "CN101301004", + "cityEn": "debao", + "cityZh": "\u5fb7\u4fdd" +}, { + "id": "CN101301005", + "cityEn": "jingxi", + "cityZh": "\u9756\u897f" +}, { + "id": "CN101301006", + "cityEn": "tiandong", + "cityZh": "\u7530\u4e1c" +}, { + "id": "CN101301007", + "cityEn": "pingguo", + "cityZh": "\u5e73\u679c" +}, { + "id": "CN101301008", + "cityEn": "longlin", + "cityZh": "\u9686\u6797" +}, { + "id": "CN101301009", + "cityEn": "xilin", + "cityZh": "\u897f\u6797" +}, { + "id": "CN101301010", + "cityEn": "leye", + "cityZh": "\u4e50\u4e1a" +}, { + "id": "CN101301011", + "cityEn": "lingyun", + "cityZh": "\u51cc\u4e91" +}, { + "id": "CN101301012", + "cityEn": "tianlin", + "cityZh": "\u7530\u6797" +}, { + "id": "CN101301013", + "cityEn": "youjiang", + "cityZh": "\u53f3\u6c5f" +}, { + "id": "CN101301101", + "cityEn": "qinzhou", + "cityZh": "\u94a6\u5dde" +}, { + "id": "CN101301102", + "cityEn": "pubei", + "cityZh": "\u6d66\u5317" +}, { + "id": "CN101301103", + "cityEn": "lingshan", + "cityZh": "\u7075\u5c71" +}, { + "id": "CN101301104", + "cityEn": "qinnan", + "cityZh": "\u94a6\u5357" +}, { + "id": "CN101301105", + "cityEn": "qinbei", + "cityZh": "\u94a6\u5317" +}, { + "id": "CN101301201", + "cityEn": "hechi", + "cityZh": "\u6cb3\u6c60" +}, { + "id": "CN101301202", + "cityEn": "tiane", + "cityZh": "\u5929\u5ce8" +}, { + "id": "CN101301203", + "cityEn": "donglan", + "cityZh": "\u4e1c\u5170" +}, { + "id": "CN101301204", + "cityEn": "bama", + "cityZh": "\u5df4\u9a6c" +}, { + "id": "CN101301205", + "cityEn": "huanjiang", + "cityZh": "\u73af\u6c5f" +}, { + "id": "CN101301206", + "cityEn": "luocheng", + "cityZh": "\u7f57\u57ce" +}, { + "id": "CN101301207", + "cityEn": "yizhou", + "cityZh": "\u5b9c\u5dde" +}, { + "id": "CN101301208", + "cityEn": "fengshan", + "cityZh": "\u51e4\u5c71" +}, { + "id": "CN101301209", + "cityEn": "nandan", + "cityZh": "\u5357\u4e39" +}, { + "id": "CN101301210", + "cityEn": "andu", + "cityZh": "\u90fd\u5b89" +}, { + "id": "CN101301211", + "cityEn": "dahua", + "cityZh": "\u5927\u5316" +}, { + "id": "CN101301212", + "cityEn": "jinchengjiang", + "cityZh": "\u91d1\u57ce\u6c5f" +}, { + "id": "CN101301301", + "cityEn": "beihai", + "cityZh": "\u5317\u6d77" +}, { + "id": "CN101301302", + "cityEn": "hepu", + "cityZh": "\u5408\u6d66" +}, { + "id": "CN101301304", + "cityEn": "haicheng", + "cityZh": "\u6d77\u57ce" +}, { + "id": "CN101301305", + "cityEn": "yinhai", + "cityZh": "\u94f6\u6d77" +}, { + "id": "CN101301306", + "cityEn": "tieshangang", + "cityZh": "\u94c1\u5c71\u6e2f" +}, { + "id": "CN101301401", + "cityEn": "fangchenggang", + "cityZh": "\u9632\u57ce\u6e2f" +}, { + "id": "CN101301402", + "cityEn": "shangsi", + "cityZh": "\u4e0a\u601d" +}, { + "id": "CN101301403", + "cityEn": "dongxing", + "cityZh": "\u4e1c\u5174" +}, { + "id": "CN101301404", + "cityEn": "gangkou", + "cityZh": "\u6e2f\u53e3" +}, { + "id": "CN101301405", + "cityEn": "fangcheng", + "cityZh": "\u9632\u57ce" +}, { + "id": "CN101310101", + "cityEn": "haikou", + "cityZh": "\u6d77\u53e3" +}, { + "id": "CN101310102", + "cityEn": "xiuying", + "cityZh": "\u79c0\u82f1" +}, { + "id": "CN101310103", + "cityEn": "longhua", + "cityZh": "\u9f99\u534e" +}, { + "id": "CN101310104", + "cityEn": "qiongshan", + "cityZh": "\u743c\u5c71" +}, { + "id": "CN101310105", + "cityEn": "meilan", + "cityZh": "\u7f8e\u5170" +}, { + "id": "CN101310201", + "cityEn": "sanya", + "cityZh": "\u4e09\u4e9a" +}, { + "id": "CN101310202", + "cityEn": "dongfang", + "cityZh": "\u4e1c\u65b9" +}, { + "id": "CN101310203", + "cityEn": "lingao", + "cityZh": "\u4e34\u9ad8" +}, { + "id": "CN101310204", + "cityEn": "chengmai", + "cityZh": "\u6f84\u8fc8" +}, { + "id": "CN101310205", + "cityEn": "danzhou", + "cityZh": "\u510b\u5dde" +}, { + "id": "CN101310206", + "cityEn": "changjiang", + "cityZh": "\u660c\u6c5f" +}, { + "id": "CN101310207", + "cityEn": "baisha", + "cityZh": "\u767d\u6c99" +}, { + "id": "CN101310208", + "cityEn": "qiongzhong", + "cityZh": "\u743c\u4e2d" +}, { + "id": "CN101310209", + "cityEn": "dingan", + "cityZh": "\u5b9a\u5b89" +}, { + "id": "CN101310210", + "cityEn": "tunchang", + "cityZh": "\u5c6f\u660c" +}, { + "id": "CN101310211", + "cityEn": "qionghai", + "cityZh": "\u743c\u6d77" +}, { + "id": "CN101310212", + "cityEn": "wenchang", + "cityZh": "\u6587\u660c" +}, { + "id": "CN101310213", + "cityEn": "haitang", + "cityZh": "\u6d77\u68e0" +}, { + "id": "CN101310214", + "cityEn": "baoting", + "cityZh": "\u4fdd\u4ead" +}, { + "id": "CN101310215", + "cityEn": "wanning", + "cityZh": "\u4e07\u5b81" +}, { + "id": "CN101310216", + "cityEn": "lingshui", + "cityZh": "\u9675\u6c34" +}, { + "id": "CN101310218", + "cityEn": "jiyang", + "cityZh": "\u5409\u9633" +}, { + "id": "CN101310219", + "cityEn": "tianya", + "cityZh": "\u5929\u6daf" +}, { + "id": "CN101310221", + "cityEn": "ledong", + "cityZh": "\u4e50\u4e1c" +}, { + "id": "CN101310222", + "cityEn": "wuzhishan", + "cityZh": "\u4e94\u6307\u5c71" +}, { + "id": "CN101310223", + "cityEn": "yazhou", + "cityZh": "\u5d16\u5dde" +}, { + "id": "CN101310301", + "cityEn": "sansha", + "cityZh": "\u4e09\u6c99" +}, { + "id": "CN101310302", + "cityEn": "xisha", + "cityZh": "\u897f\u6c99" +}, { + "id": "CN101310303", + "cityEn": "zhongsha", + "cityZh": "\u4e2d\u6c99" +}, { + "id": "CN101310304", + "cityEn": "nansha", + "cityZh": "\u5357\u6c99" +}, { + "id": "CN101320101", + "cityEn": "hongkong", + "cityZh": "\u9999\u6e2f" +}, { + "id": "CN101320102", + "cityEn": "jiulong", + "cityZh": "\u4e5d\u9f99" +}, { + "id": "CN101320103", + "cityEn": "xinjie", + "cityZh": "\u65b0\u754c" +}, { + "id": "CN101330101", + "cityEn": "macao", + "cityZh": "\u6fb3\u95e8" +}, { + "id": "CN101330102", + "cityEn": "dangzidao", + "cityZh": "\u6c39\u4ed4\u5c9b" +}, { + "id": "CN101330103", + "cityEn": "luhuandao", + "cityZh": "\u8def\u73af\u5c9b" +}, { + "id": "CN101340101", + "cityEn": "taibeixian", + "cityZh": "\u53f0\u5317" +}, { + "id": "CN101340102", + "cityEn": "taoyuan", + "cityZh": "\u6843\u56ed" +}, { + "id": "CN101340103", + "cityEn": "xinzhu", + "cityZh": "\u65b0\u7af9" +}, { + "id": "CN101340104", + "cityEn": "yilan", + "cityZh": "\u5b9c\u5170" +}, { + "id": "CN101340201", + "cityEn": "gaoxiong", + "cityZh": "\u9ad8\u96c4" +}, { + "id": "CN101340202", + "cityEn": "jiayi", + "cityZh": "\u5609\u4e49" +}, { + "id": "CN101340203", + "cityEn": "tainan", + "cityZh": "\u53f0\u5357" +}, { + "id": "CN101340204", + "cityEn": "taidong", + "cityZh": "\u53f0\u4e1c" +}, { + "id": "CN101340205", + "cityEn": "pingdong", + "cityZh": "\u5c4f\u4e1c" +}, { + "id": "CN101340401", + "cityEn": "taizhong", + "cityZh": "\u53f0\u4e2d" +}, { + "id": "CN101340402", + "cityEn": "miaoli", + "cityZh": "\u82d7\u6817" +}, { + "id": "CN101340403", + "cityEn": "zhanghua", + "cityZh": "\u5f70\u5316" +}, { + "id": "CN101340404", + "cityEn": "nantou", + "cityZh": "\u5357\u6295" +}, { + "id": "CN101340405", + "cityEn": "hualian", + "cityZh": "\u82b1\u83b2" +}, { + "id": "CN101340406", + "cityEn": "yunlin", + "cityZh": "\u4e91\u6797" +}] \ No newline at end of file diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/libs/makePy.js" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/libs/makePy.js" new file mode 100644 index 0000000000000000000000000000000000000000..a1e8642c412724816004aa25eb322fd4945d903e --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/libs/makePy.js" @@ -0,0 +1,54 @@ +const strChineseFirstPY = "YDYQSXMWZSSXJBYMGCCZQPSSQBYCDSCDQLDYLYBSSJGYZZJJFKCCLZDHWDWZJLJPFYYNWJJTMYHZWZHFLZPPQHGSCYYYNJQYXXGJHHSDSJNKKTMOMLCRXYPSNQSECCQZGGLLYJLMYZZSECYKYYHQWJSSGGYXYZYJWWKDJHYCHMYXJTLXJYQBYXZLDWRDJRWYSRLDZJPCBZJJBRCFTLECZSTZFXXZHTRQHYBDLYCZSSYMMRFMYQZPWWJJYFCRWFDFZQPYDDWYXKYJAWJFFXYPSFTZYHHYZYSWCJYXSCLCXXWZZXNBGNNXBXLZSZSBSGPYSYZDHMDZBQBZCWDZZYYTZHBTSYYBZGNTNXQYWQSKBPHHLXGYBFMJEBJHHGQTJCYSXSTKZHLYCKGLYSMZXYALMELDCCXGZYRJXSDLTYZCQKCNNJWHJTZZCQLJSTSTBNXBTYXCEQXGKWJYFLZQLYHYXSPSFXLMPBYSXXXYDJCZYLLLSJXFHJXPJBTFFYABYXBHZZBJYZLWLCZGGBTSSMDTJZXPTHYQTGLJSCQFZKJZJQNLZWLSLHDZBWJNCJZYZSQQYCQYRZCJJWYBRTWPYFTWEXCSKDZCTBZHYZZYYJXZCFFZZMJYXXSDZZOTTBZLQWFCKSZSXFYRLNYJMBDTHJXSQQCCSBXYYTSYFBXDZTGBCNSLCYZZPSAZYZZSCJCSHZQYDXLBPJLLMQXTYDZXSQJTZPXLCGLQTZWJBHCTSYJSFXYEJJTLBGXSXJMYJQQPFZASYJNTYDJXKJCDJSZCBARTDCLYJQMWNQNCLLLKBYBZZSYHQQLTWLCCXTXLLZNTYLNEWYZYXCZXXGRKRMTCNDNJTSYYSSDQDGHSDBJGHRWRQLYBGLXHLGTGXBQJDZPYJSJYJCTMRNYMGRZJCZGJMZMGXMPRYXKJNYMSGMZJYMKMFXMLDTGFBHCJHKYLPFMDXLQJJSMTQGZSJLQDLDGJYCALCMZCSDJLLNXDJFFFFJCZFMZFFPFKHKGDPSXKTACJDHHZDDCRRCFQYJKQCCWJDXHWJLYLLZGCFCQDSMLZPBJJPLSBCJGGDCKKDEZSQCCKJGCGKDJTJDLZYCXKLQSCGJCLTFPCQCZGWPJDQYZJJBYJHSJDZWGFSJGZKQCCZLLPSPKJGQJHZZLJPLGJGJJTHJJYJZCZMLZLYQBGJWMLJKXZDZNJQSYZMLJLLJKYWXMKJLHSKJGBMCLYYMKXJQLBMLLKMDXXKWYXYSLMLPSJQQJQXYXFJTJDXMXXLLCXQBSYJBGWYMBGGBCYXPJYGPEPFGDJGBHBNSQJYZJKJKHXQFGQZKFHYGKHDKLLSDJQXPQYKYBNQSXQNSZSWHBSXWHXWBZZXDMNSJBSBKBBZKLYLXGWXDRWYQZMYWSJQLCJXXJXKJEQXSCYETLZHLYYYSDZPAQYZCMTLSHTZCFYZYXYLJSDCJQAGYSLCQLYYYSHMRQQKLDXZSCSSSYDYCJYSFSJBFRSSZQSBXXPXJYSDRCKGJLGDKZJZBDKTCSYQPYHSTCLDJDHMXMCGXYZHJDDTMHLTXZXYLYMOHYJCLTYFBQQXPFBDFHHTKSQHZYYWCNXXCRWHOWGYJLEGWDQCWGFJYCSNTMYTOLBYGWQWESJPWNMLRYDZSZTXYQPZGCWXHNGPYXSHMYQJXZTDPPBFYHZHTJYFDZWKGKZBLDNTSXHQEEGZZYLZMMZYJZGXZXKHKSTXNXXWYLYAPSTHXDWHZYMPXAGKYDXBHNHXKDPJNMYHYLPMGOCSLNZHKXXLPZZLBMLSFBHHGYGYYGGBHSCYAQTYWLXTZQCEZYDQDQMMHTKLLSZHLSJZWFYHQSWSCWLQAZYNYTLSXTHAZNKZZSZZLAXXZWWCTGQQTDDYZTCCHYQZFLXPSLZYGPZSZNGLNDQTBDLXGTCTAJDKYWNSYZLJHHZZCWNYYZYWMHYCHHYXHJKZWSXHZYXLYSKQYSPSLYZWMYPPKBYGLKZHTYXAXQSYSHXASMCHKDSCRSWJPWXSGZJLWWSCHSJHSQNHCSEGNDAQTBAALZZMSSTDQJCJKTSCJAXPLGGXHHGXXZCXPDMMHLDGTYBYSJMXHMRCPXXJZCKZXSHMLQXXTTHXWZFKHCCZDYTCJYXQHLXDHYPJQXYLSYYDZOZJNYXQEZYSQYAYXWYPDGXDDXSPPYZNDLTWRHXYDXZZJHTCXMCZLHPYYYYMHZLLHNXMYLLLMDCPPXHMXDKYCYRDLTXJCHHZZXZLCCLYLNZSHZJZZLNNRLWHYQSNJHXYNTTTKYJPYCHHYEGKCTTWLGQRLGGTGTYGYHPYHYLQYQGCWYQKPYYYTTTTLHYHLLTYTTSPLKYZXGZWGPYDSSZZDQXSKCQNMJJZZBXYQMJRTFFBTKHZKBXLJJKDXJTLBWFZPPTKQTZTGPDGNTPJYFALQMKGXBDCLZFHZCLLLLADPMXDJHLCCLGYHDZFGYDDGCYYFGYDXKSSEBDHYKDKDKHNAXXYBPBYYHXZQGAFFQYJXDMLJCSQZLLPCHBSXGJYNDYBYQSPZWJLZKSDDTACTBXZDYZYPJZQSJNKKTKNJDJGYYPGTLFYQKASDNTCYHBLWDZHBBYDWJRYGKZYHEYYFJMSDTYFZJJHGCXPLXHLDWXXJKYTCYKSSSMTWCTTQZLPBSZDZWZXGZAGYKTYWXLHLSPBCLLOQMMZSSLCMBJCSZZKYDCZJGQQDSMCYTZQQLWZQZXSSFPTTFQMDDZDSHDTDWFHTDYZJYQJQKYPBDJYYXTLJHDRQXXXHAYDHRJLKLYTWHLLRLLRCXYLBWSRSZZSYMKZZHHKYHXKSMDSYDYCJPBZBSQLFCXXXNXKXWYWSDZYQOGGQMMYHCDZTTFJYYBGSTTTYBYKJDHKYXBELHTYPJQNFXFDYKZHQKZBYJTZBXHFDXKDASWTAWAJLDYJSFHBLDNNTNQJTJNCHXFJSRFWHZFMDRYJYJWZPDJKZYJYMPCYZNYNXFBYTFYFWYGDBNZZZDNYTXZEMMQBSQEHXFZMBMFLZZSRXYMJGSXWZJSPRYDJSJGXHJJGLJJYNZZJXHGXKYMLPYYYCXYTWQZSWHWLYRJLPXSLSXMFSWWKLCTNXNYNPSJSZHDZEPTXMYYWXYYSYWLXJQZQXZDCLEEELMCPJPCLWBXSQHFWWTFFJTNQJHJQDXHWLBYZNFJLALKYYJLDXHHYCSTYYWNRJYXYWTRMDRQHWQCMFJDYZMHMYYXJWMYZQZXTLMRSPWWCHAQBXYGZYPXYYRRCLMPYMGKSJSZYSRMYJSNXTPLNBAPPYPYLXYYZKYNLDZYJZCZNNLMZHHARQMPGWQTZMXXMLLHGDZXYHXKYXYCJMFFYYHJFSBSSQLXXNDYCANNMTCJCYPRRNYTYQNYYMBMSXNDLYLYSLJRLXYSXQMLLYZLZJJJKYZZCSFBZXXMSTBJGNXYZHLXNMCWSCYZYFZLXBRNNNYLBNRTGZQYSATSWRYHYJZMZDHZGZDWYBSSCSKXSYHYTXXGCQGXZZSHYXJSCRHMKKBXCZJYJYMKQHZJFNBHMQHYSNJNZYBKNQMCLGQHWLZNZSWXKHLJHYYBQLBFCDSXDLDSPFZPSKJYZWZXZDDXJSMMEGJSCSSMGCLXXKYYYLNYPWWWGYDKZJGGGZGGSYCKNJWNJPCXBJJTQTJWDSSPJXZXNZXUMELPXFSXTLLXCLJXJJLJZXCTPSWXLYDHLYQRWHSYCSQYYBYAYWJJJQFWQCQQCJQGXALDBZZYJGKGXPLTZYFXJLTPADKYQHPMATLCPDCKBMTXYBHKLENXDLEEGQDYMSAWHZMLJTWYGXLYQZLJEEYYBQQFFNLYXRDSCTGJGXYYNKLLYQKCCTLHJLQMKKZGCYYGLLLJDZGYDHZWXPYSJBZKDZGYZZHYWYFQYTYZSZYEZZLYMHJJHTSMQWYZLKYYWZCSRKQYTLTDXWCTYJKLWSQZWBDCQYNCJSRSZJLKCDCDTLZZZACQQZZDDXYPLXZBQJYLZLLLQDDZQJYJYJZYXNYYYNYJXKXDAZWYRDLJYYYRJLXLLDYXJCYWYWNQCCLDDNYYYNYCKCZHXXCCLGZQJGKWPPCQQJYSBZZXYJSQPXJPZBSBDSFNSFPZXHDWZTDWPPTFLZZBZDMYYPQJRSDZSQZSQXBDGCPZSWDWCSQZGMDHZXMWWFYBPDGPHTMJTHZSMMBGZMBZJCFZWFZBBZMQCFMBDMCJXLGPNJBBXGYHYYJGPTZGZMQBQTCGYXJXLWZKYDPDYMGCFTPFXYZTZXDZXTGKMTYBBCLBJASKYTSSQYYMSZXFJEWLXLLSZBQJJJAKLYLXLYCCTSXMCWFKKKBSXLLLLJYXTYLTJYYTDPJHNHNNKBYQNFQYYZBYYESSESSGDYHFHWTCJBSDZZTFDMXHCNJZYMQWSRYJDZJQPDQBBSTJGGFBKJBXTGQHNGWJXJGDLLTHZHHYYYYYYSXWTYYYCCBDBPYPZYCCZYJPZYWCBDLFWZCWJDXXHYHLHWZZXJTCZLCDPXUJCZZZLYXJJTXPHFXWPYWXZPTDZZBDZCYHJHMLXBQXSBYLRDTGJRRCTTTHYTCZWMXFYTWWZCWJWXJYWCSKYBZSCCTZQNHXNWXXKHKFHTSWOCCJYBCMPZZYKBNNZPBZHHZDLSYDDYTYFJPXYNGFXBYQXCBHXCPSXTYZDMKYSNXSXLHKMZXLYHDHKWHXXSSKQYHHCJYXGLHZXCSNHEKDTGZXQYPKDHEXTYKCNYMYYYPKQYYYKXZLTHJQTBYQHXBMYHSQCKWWYLLHCYYLNNEQXQWMCFBDCCMLJGGXDQKTLXKGNQCDGZJWYJJLYHHQTTTNWCHMXCXWHWSZJYDJCCDBQCDGDNYXZTHCQRXCBHZTQCBXWGQWYYBXHMBYMYQTYEXMQKYAQYRGYZSLFYKKQHYSSQYSHJGJCNXKZYCXSBXYXHYYLSTYCXQTHYSMGSCPMMGCCCCCMTZTASMGQZJHKLOSQYLSWTMXSYQKDZLJQQYPLSYCZTCQQPBBQJZCLPKHQZYYXXDTDDTSJCXFFLLCHQXMJLWCJCXTSPYCXNDTJSHJWXDQQJSKXYAMYLSJHMLALYKXCYYDMNMDQMXMCZNNCYBZKKYFLMCHCMLHXRCJJHSYLNMTJZGZGYWJXSRXCWJGJQHQZDQJDCJJZKJKGDZQGJJYJYLXZXXCDQHHHEYTMHLFSBDJSYYSHFYSTCZQLPBDRFRZTZYKYWHSZYQKWDQZRKMSYNBCRXQBJYFAZPZZEDZCJYWBCJWHYJBQSZYWRYSZPTDKZPFPBNZTKLQYHBBZPNPPTYZZYBQNYDCPJMMCYCQMCYFZZDCMNLFPBPLNGQJTBTTNJZPZBBZNJKLJQYLNBZQHKSJZNGGQSZZKYXSHPZSNBCGZKDDZQANZHJKDRTLZLSWJLJZLYWTJNDJZJHXYAYNCBGTZCSSQMNJPJYTYSWXZFKWJQTKHTZPLBHSNJZSYZBWZZZZLSYLSBJHDWWQPSLMMFBJDWAQYZTCJTBNNWZXQXCDSLQGDSDPDZHJTQQPSWLYYJZLGYXYZLCTCBJTKTYCZJTQKBSJLGMGZDMCSGPYNJZYQYYKNXRPWSZXMTNCSZZYXYBYHYZAXYWQCJTLLCKJJTJHGDXDXYQYZZBYWDLWQCGLZGJGQRQZCZSSBCRPCSKYDZNXJSQGXSSJMYDNSTZTPBDLTKZWXQWQTZEXNQCZGWEZKSSBYBRTSSSLCCGBPSZQSZLCCGLLLZXHZQTHCZMQGYZQZNMCOCSZJMMZSQPJYGQLJYJPPLDXRGZYXCCSXHSHGTZNLZWZKJCXTCFCJXLBMQBCZZWPQDNHXLJCTHYZLGYLNLSZZPCXDSCQQHJQKSXZPBAJYEMSMJTZDXLCJYRYYNWJBNGZZTMJXLTBSLYRZPYLSSCNXPHLLHYLLQQZQLXYMRSYCXZLMMCZLTZSDWTJJLLNZGGQXPFSKYGYGHBFZPDKMWGHCXMSGDXJMCJZDYCABXJDLNBCDQYGSKYDQTXDJJYXMSZQAZDZFSLQXYJSJZYLBTXXWXQQZBJZUFBBLYLWDSLJHXJYZJWTDJCZFQZQZZDZSXZZQLZCDZFJHYSPYMPQZMLPPLFFXJJNZZYLSJEYQZFPFZKSYWJJJHRDJZZXTXXGLGHYDXCSKYSWMMZCWYBAZBJKSHFHJCXMHFQHYXXYZFTSJYZFXYXPZLCHMZMBXHZZSXYFYMNCWDABAZLXKTCSHHXKXJJZJSTHYGXSXYYHHHJWXKZXSSBZZWHHHCWTZZZPJXSNXQQJGZYZYWLLCWXZFXXYXYHXMKYYSWSQMNLNAYCYSPMJKHWCQHYLAJJMZXHMMCNZHBHXCLXTJPLTXYJHDYYLTTXFSZHYXXSJBJYAYRSMXYPLCKDUYHLXRLNLLSTYZYYQYGYHHSCCSMZCTZQXKYQFPYYRPFFLKQUNTSZLLZMWWTCQQYZWTLLMLMPWMBZSSTZRBPDDTLQJJBXZCSRZQQYGWCSXFWZLXCCRSZDZMCYGGDZQSGTJSWLJMYMMZYHFBJDGYXCCPSHXNZCSBSJYJGJMPPWAFFYFNXHYZXZYLREMZGZCYZSSZDLLJCSQFNXZKPTXZGXJJGFMYYYSNBTYLBNLHPFZDCYFBMGQRRSSSZXYSGTZRNYDZZCDGPJAFJFZKNZBLCZSZPSGCYCJSZLMLRSZBZZLDLSLLYSXSQZQLYXZLSKKBRXBRBZCYCXZZZEEYFGKLZLYYHGZSGZLFJHGTGWKRAAJYZKZQTSSHJJXDCYZUYJLZYRZDQQHGJZXSSZBYKJPBFRTJXLLFQWJHYLQTYMBLPZDXTZYGBDHZZRBGXHWNJTJXLKSCFSMWLSDQYSJTXKZSCFWJLBXFTZLLJZLLQBLSQMQQCGCZFPBPHZCZJLPYYGGDTGWDCFCZQYYYQYSSCLXZSKLZZZGFFCQNWGLHQYZJJCZLQZZYJPJZZBPDCCMHJGXDQDGDLZQMFGPSYTSDYFWWDJZJYSXYYCZCYHZWPBYKXRYLYBHKJKSFXTZJMMCKHLLTNYYMSYXYZPYJQYCSYCWMTJJKQYRHLLQXPSGTLYYCLJSCPXJYZFNMLRGJJTYZBXYZMSJYJHHFZQMSYXRSZCWTLRTQZSSTKXGQKGSPTGCZNJSJCQCXHMXGGZTQYDJKZDLBZSXJLHYQGGGTHQSZPYHJHHGYYGKGGCWJZZYLCZLXQSFTGZSLLLMLJSKCTBLLZZSZMMNYTPZSXQHJCJYQXYZXZQZCPSHKZZYSXCDFGMWQRLLQXRFZTLYSTCTMJCXJJXHJNXTNRZTZFQYHQGLLGCXSZSJDJLJCYDSJTLNYXHSZXCGJZYQPYLFHDJSBPCCZHJJJQZJQDYBSSLLCMYTTMQTBHJQNNYGKYRQYQMZGCJKPDCGMYZHQLLSLLCLMHOLZGDYYFZSLJCQZLYLZQJESHNYLLJXGJXLYSYYYXNBZLJSSZCQQCJYLLZLTJYLLZLLBNYLGQCHXYYXOXCXQKYJXXXYKLXSXXYQXCYKQXQCSGYXXYQXYGYTQOHXHXPYXXXULCYEYCHZZCBWQBBWJQZSCSZSSLZYLKDESJZWMYMCYTSDSXXSCJPQQSQYLYYZYCMDJDZYWCBTJSYDJKCYDDJLBDJJSODZYSYXQQYXDHHGQQYQHDYXWGMMMAJDYBBBPPBCMUUPLJZSMTXERXJMHQNUTPJDCBSSMSSSTKJTSSMMTRCPLZSZMLQDSDMJMQPNQDXCFYNBFSDQXYXHYAYKQYDDLQYYYSSZBYDSLNTFQTZQPZMCHDHCZCWFDXTMYQSPHQYYXSRGJCWTJTZZQMGWJJTJHTQJBBHWZPXXHYQFXXQYWYYHYSCDYDHHQMNMTMWCPBSZPPZZGLMZFOLLCFWHMMSJZTTDHZZYFFYTZZGZYSKYJXQYJZQBHMBZZLYGHGFMSHPZFZSNCLPBQSNJXZSLXXFPMTYJYGBXLLDLXPZJYZJYHHZCYWHJYLSJEXFSZZYWXKZJLUYDTMLYMQJPWXYHXSKTQJEZRPXXZHHMHWQPWQLYJJQJJZSZCPHJLCHHNXJLQWZJHBMZYXBDHHYPZLHLHLGFWLCHYYTLHJXCJMSCPXSTKPNHQXSRTYXXTESYJCTLSSLSTDLLLWWYHDHRJZSFGXTSYCZYNYHTDHWJSLHTZDQDJZXXQHGYLTZPHCSQFCLNJTCLZPFSTPDYNYLGMJLLYCQHYSSHCHYLHQYQTMZYPBYWRFQYKQSYSLZDQJMPXYYSSRHZJNYWTQDFZBWWTWWRXCWHGYHXMKMYYYQMSMZHNGCEPMLQQMTCWCTMMPXJPJJHFXYYZSXZHTYBMSTSYJTTQQQYYLHYNPYQZLCYZHZWSMYLKFJXLWGXYPJYTYSYXYMZCKTTWLKSMZSYLMPWLZWXWQZSSAQSYXYRHSSNTSRAPXCPWCMGDXHXZDZYFJHGZTTSBJHGYZSZYSMYCLLLXBTYXHBBZJKSSDMALXHYCFYGMQYPJYCQXJLLLJGSLZGQLYCJCCZOTYXMTMTTLLWTGPXYMZMKLPSZZZXHKQYSXCTYJZYHXSHYXZKXLZWPSQPYHJWPJPWXQQYLXSDHMRSLZZYZWTTCYXYSZZSHBSCCSTPLWSSCJCHNLCGCHSSPHYLHFHHXJSXYLLNYLSZDHZXYLSXLWZYKCLDYAXZCMDDYSPJTQJZLNWQPSSSWCTSTSZLBLNXSMNYYMJQBQHRZWTYYDCHQLXKPZWBGQYBKFCMZWPZLLYYLSZYDWHXPSBCMLJBSCGBHXLQHYRLJXYSWXWXZSLDFHLSLYNJLZYFLYJYCDRJLFSYZFSLLCQYQFGJYHYXZLYLMSTDJCYHBZLLNWLXXYGYYHSMGDHXXHHLZZJZXCZZZCYQZFNGWPYLCPKPYYPMCLQKDGXZGGWQBDXZZKZFBXXLZXJTPJPTTBYTSZZDWSLCHZHSLTYXHQLHYXXXYYZYSWTXZKHLXZXZPYHGCHKCFSYHUTJRLXFJXPTZTWHPLYXFCRHXSHXKYXXYHZQDXQWULHYHMJTBFLKHTXCWHJFWJCFPQRYQXCYYYQYGRPYWSGSUNGWCHKZDXYFLXXHJJBYZWTSXXNCYJJYMSWZJQRMHXZWFQSYLZJZGBHYNSLBGTTCSYBYXXWXYHXYYXNSQYXMQYWRGYQLXBBZLJSYLPSYTJZYHYZAWLRORJMKSCZJXXXYXCHDYXRYXXJDTSQFXLYLTSFFYXLMTYJMJUYYYXLTZCSXQZQHZXLYYXZHDNBRXXXJCTYHLBRLMBRLLAXKYLLLJLYXXLYCRYLCJTGJCMTLZLLCYZZPZPCYAWHJJFYBDYYZSMPCKZDQYQPBPCJPDCYZMDPBCYYDYCNNPLMTMLRMFMMGWYZBSJGYGSMZQQQZTXMKQWGXLLPJGZBQCDJJJFPKJKCXBLJMSWMDTQJXLDLPPBXCWRCQFBFQJCZAHZGMYKPHYYHZYKNDKZMBPJYXPXYHLFPNYYGXJDBKXNXHJMZJXSTRSTLDXSKZYSYBZXJLXYSLBZYSLHXJPFXPQNBYLLJQKYGZMCYZZYMCCSLCLHZFWFWYXZMWSXTYNXJHPYYMCYSPMHYSMYDYSHQYZCHMJJMZCAAGCFJBBHPLYZYLXXSDJGXDHKXXTXXNBHRMLYJSLTXMRHNLXQJXYZLLYSWQGDLBJHDCGJYQYCMHWFMJYBMBYJYJWYMDPWHXQLDYGPDFXXBCGJSPCKRSSYZJMSLBZZJFLJJJLGXZGYXYXLSZQYXBEXYXHGCXBPLDYHWETTWWCJMBTXCHXYQXLLXFLYXLLJLSSFWDPZSMYJCLMWYTCZPCHQEKCQBWLCQYDPLQPPQZQFJQDJHYMMCXTXDRMJWRHXCJZYLQXDYYNHYYHRSLSRSYWWZJYMTLTLLGTQCJZYABTCKZCJYCCQLJZQXALMZYHYWLWDXZXQDLLQSHGPJFJLJHJABCQZDJGTKHSSTCYJLPSWZLXZXRWGLDLZRLZXTGSLLLLZLYXXWGDZYGBDPHZPBRLWSXQBPFDWOFMWHLYPCBJCCLDMBZPBZZLCYQXLDOMZBLZWPDWYYGDSTTHCSQSCCRSSSYSLFYBFNTYJSZDFNDPDHDZZMBBLSLCMYFFGTJJQWFTMTPJWFNLBZCMMJTGBDZLQLPYFHYYMJYLSDCHDZJWJCCTLJCLDTLJJCPDDSQDSSZYBNDBJLGGJZXSXNLYCYBJXQYCBYLZCFZPPGKCXZDZFZTJJFJSJXZBNZYJQTTYJYHTYCZHYMDJXTTMPXSPLZCDWSLSHXYPZGTFMLCJTYCBPMGDKWYCYZCDSZZYHFLYCTYGWHKJYYLSJCXGYWJCBLLCSNDDBTZBSCLYZCZZSSQDLLMQYYHFSLQLLXFTYHABXGWNYWYYPLLSDLDLLBJCYXJZMLHLJDXYYQYTDLLLBUGBFDFBBQJZZMDPJHGCLGMJJPGAEHHBWCQXAXHHHZCHXYPHJAXHLPHJPGPZJQCQZGJJZZUZDMQYYBZZPHYHYBWHAZYJHYKFGDPFQSDLZMLJXKXGALXZDAGLMDGXMWZQYXXDXXPFDMMSSYMPFMDMMKXKSYZYSHDZKXSYSMMZZZMSYDNZZCZXFPLSTMZDNMXCKJMZTYYMZMZZMSXHHDCZJEMXXKLJSTLWLSQLYJZLLZJSSDPPMHNLZJCZYHMXXHGZCJMDHXTKGRMXFWMCGMWKDTKSXQMMMFZZYDKMSCLCMPCGMHSPXQPZDSSLCXKYXTWLWJYAHZJGZQMCSNXYYMMPMLKJXMHLMLQMXCTKZMJQYSZJSYSZHSYJZJCDAJZYBSDQJZGWZQQXFKDMSDJLFWEHKZQKJPEYPZYSZCDWYJFFMZZYLTTDZZEFMZLBNPPLPLPEPSZALLTYLKCKQZKGENQLWAGYXYDPXLHSXQQWQCQXQCLHYXXMLYCCWLYMQYSKGCHLCJNSZKPYZKCQZQLJPDMDZHLASXLBYDWQLWDNBQCRYDDZTJYBKBWSZDXDTNPJDTCTQDFXQQMGNXECLTTBKPWSLCTYQLPWYZZKLPYGZCQQPLLKCCYLPQMZCZQCLJSLQZDJXLDDHPZQDLJJXZQDXYZQKZLJCYQDYJPPYPQYKJYRMPCBYMCXKLLZLLFQPYLLLMBSGLCYSSLRSYSQTMXYXZQZFDZUYSYZTFFMZZSMZQHZSSCCMLYXWTPZGXZJGZGSJSGKDDHTQGGZLLBJDZLCBCHYXYZHZFYWXYZYMSDBZZYJGTSMTFXQYXQSTDGSLNXDLRYZZLRYYLXQHTXSRTZNGZXBNQQZFMYKMZJBZYMKBPNLYZPBLMCNQYZZZSJZHJCTZKHYZZJRDYZHNPXGLFZTLKGJTCTSSYLLGZRZBBQZZKLPKLCZYSSUYXBJFPNJZZXCDWXZYJXZZDJJKGGRSRJKMSMZJLSJYWQSKYHQJSXPJZZZLSNSHRNYPZTWCHKLPSRZLZXYJQXQKYSJYCZTLQZYBBYBWZPQDWWYZCYTJCJXCKCWDKKZXSGKDZXWWYYJQYYTCYTDLLXWKCZKKLCCLZCQQDZLQLCSFQCHQHSFSMQZZLNBJJZBSJHTSZDYSJQJPDLZCDCWJKJZZLPYCGMZWDJJBSJQZSYZYHHXJPBJYDSSXDZNCGLQMBTSFSBPDZDLZNFGFJGFSMPXJQLMBLGQCYYXBQKDJJQYRFKZTJDHCZKLBSDZCFJTPLLJGXHYXZCSSZZXSTJYGKGCKGYOQXJPLZPBPGTGYJZGHZQZZLBJLSQFZGKQQJZGYCZBZQTLDXRJXBSXXPZXHYZYCLWDXJJHXMFDZPFZHQHQMQGKSLYHTYCGFRZGNQXCLPDLBZCSCZQLLJBLHBZCYPZZPPDYMZZSGYHCKCPZJGSLJLNSCDSLDLXBMSTLDDFJMKDJDHZLZXLSZQPQPGJLLYBDSZGQLBZLSLKYYHZTTNTJYQTZZPSZQZTLLJTYYLLQLLQYZQLBDZLSLYYZYMDFSZSNHLXZNCZQZPBWSKRFBSYZMTHBLGJPMCZZLSTLXSHTCSYZLZBLFEQHLXFLCJLYLJQCBZLZJHHSSTBRMHXZHJZCLXFNBGXGTQJCZTMSFZKJMSSNXLJKBHSJXNTNLZDNTLMSJXGZJYJCZXYJYJWRWWQNZTNFJSZPZSHZJFYRDJSFSZJZBJFZQZZHZLXFYSBZQLZSGYFTZDCSZXZJBQMSZKJRHYJZCKMJKHCHGTXKXQGLXPXFXTRTYLXJXHDTSJXHJZJXZWZLCQSBTXWXGXTXXHXFTSDKFJHZYJFJXRZSDLLLTQSQQZQWZXSYQTWGWBZCGZLLYZBCLMQQTZHZXZXLJFRMYZFLXYSQXXJKXRMQDZDMMYYBSQBHGZMWFWXGMXLZPYYTGZYCCDXYZXYWGSYJYZNBHPZJSQSYXSXRTFYZGRHZTXSZZTHCBFCLSYXZLZQMZLMPLMXZJXSFLBYZMYQHXJSXRXSQZZZSSLYFRCZJRCRXHHZXQYDYHXSJJHZCXZBTYNSYSXJBQLPXZQPYMLXZKYXLXCJLCYSXXZZLXDLLLJJYHZXGYJWKJRWYHCPSGNRZLFZWFZZNSXGXFLZSXZZZBFCSYJDBRJKRDHHGXJLJJTGXJXXSTJTJXLYXQFCSGSWMSBCTLQZZWLZZKXJMLTMJYHSDDBXGZHDLBMYJFRZFSGCLYJBPMLYSMSXLSZJQQHJZFXGFQFQBPXZGYYQXGZTCQWYLTLGWSGWHRLFSFGZJMGMGBGTJFSYZZGZYZAFLSSPMLPFLCWBJZCLJJMZLPJJLYMQDMYYYFBGYGYZMLYZDXQYXRQQQHSYYYQXYLJTYXFSFSLLGNQCYHYCWFHCCCFXPYLYPLLZYXXXXXKQHHXSHJZCFZSCZJXCPZWHHHHHAPYLQALPQAFYHXDYLUKMZQGGGDDESRNNZLTZGCHYPPYSQJJHCLLJTOLNJPZLJLHYMHEYDYDSQYCDDHGZUNDZCLZYZLLZNTNYZGSLHSLPJJBDGWXPCDUTJCKLKCLWKLLCASSTKZZDNQNTTLYYZSSYSSZZRYLJQKCQDHHCRXRZYDGRGCWCGZQFFFPPJFZYNAKRGYWYQPQXXFKJTSZZXSWZDDFBBXTBGTZKZNPZZPZXZPJSZBMQHKCYXYLDKLJNYPKYGHGDZJXXEAHPNZKZTZCMXCXMMJXNKSZQNMNLWBWWXJKYHCPSTMCSQTZJYXTPCTPDTNNPGLLLZSJLSPBLPLQHDTNJNLYYRSZFFJFQWDPHZDWMRZCCLODAXNSSNYZRESTYJWJYJDBCFXNMWTTBYLWSTSZGYBLJPXGLBOCLHPCBJLTMXZLJYLZXCLTPNCLCKXTPZJSWCYXSFYSZDKNTLBYJCYJLLSTGQCBXRYZXBXKLYLHZLQZLNZCXWJZLJZJNCJHXMNZZGJZZXTZJXYCYYCXXJYYXJJXSSSJSTSSTTPPGQTCSXWZDCSYFPTFBFHFBBLZJCLZZDBXGCXLQPXKFZFLSYLTUWBMQJHSZBMDDBCYSCCLDXYCDDQLYJJWMQLLCSGLJJSYFPYYCCYLTJANTJJPWYCMMGQYYSXDXQMZHSZXPFTWWZQSWQRFKJLZJQQYFBRXJHHFWJJZYQAZMYFRHCYYBYQWLPEXCCZSTYRLTTDMQLYKMBBGMYYJPRKZNPBSXYXBHYZDJDNGHPMFSGMWFZMFQMMBCMZZCJJLCNUXYQLMLRYGQZCYXZLWJGCJCGGMCJNFYZZJHYCPRRCMTZQZXHFQGTJXCCJEAQCRJYHPLQLSZDJRBCQHQDYRHYLYXJSYMHZYDWLDFRYHBPYDTSSCNWBXGLPZMLZZTQSSCPJMXXYCSJYTYCGHYCJWYRXXLFEMWJNMKLLSWTXHYYYNCMMCWJDQDJZGLLJWJRKHPZGGFLCCSCZMCBLTBHBQJXQDSPDJZZGKGLFQYWBZYZJLTSTDHQHCTCBCHFLQMPWDSHYYTQWCNZZJTLBYMBPDYYYXSQKXWYYFLXXNCWCXYPMAELYKKJMZZZBRXYYQJFLJPFHHHYTZZXSGQQMHSPGDZQWBWPJHZJDYSCQWZKTXXSQLZYYMYSDZGRXCKKUJLWPYSYSCSYZLRMLQSYLJXBCXTLWDQZPCYCYKPPPNSXFYZJJRCEMHSZMSXLXGLRWGCSTLRSXBZGBZGZTCPLUJLSLYLYMTXMTZPALZXPXJTJWTCYYZLBLXBZLQMYLXPGHDSLSSDMXMBDZZSXWHAMLCZCPJMCNHJYSNSYGCHSKQMZZQDLLKABLWJXSFMOCDXJRRLYQZKJMYBYQLYHETFJZFRFKSRYXFJTWDSXXSYSQJYSLYXWJHSNLXYYXHBHAWHHJZXWMYLJCSSLKYDZTXBZSYFDXGXZJKHSXXYBSSXDPYNZWRPTQZCZENYGCXQFJYKJBZMLJCMQQXUOXSLYXXLYLLJDZBTYMHPFSTTQQWLHOKYBLZZALZXQLHZWRRQHLSTMYPYXJJXMQSJFNBXYXYJXXYQYLTHYLQYFMLKLJTMLLHSZWKZHLJMLHLJKLJSTLQXYLMBHHLNLZXQJHXCFXXLHYHJJGBYZZKBXSCQDJQDSUJZYYHZHHMGSXCSYMXFEBCQWWRBPYYJQTYZCYQYQQZYHMWFFHGZFRJFCDPXNTQYZPDYKHJLFRZXPPXZDBBGZQSTLGDGYLCQMLCHHMFYWLZYXKJLYPQHSYWMQQGQZMLZJNSQXJQSYJYCBEHSXFSZPXZWFLLBCYYJDYTDTHWZSFJMQQYJLMQXXLLDTTKHHYBFPWTYYSQQWNQWLGWDEBZWCMYGCULKJXTMXMYJSXHYBRWFYMWFRXYQMXYSZTZZTFYKMLDHQDXWYYNLCRYJBLPSXCXYWLSPRRJWXHQYPHTYDNXHHMMYWYTZCSQMTSSCCDALWZTCPQPYJLLQZYJSWXMZZMMYLMXCLMXCZMXMZSQTZPPQQBLPGXQZHFLJJHYTJSRXWZXSCCDLXTYJDCQJXSLQYCLZXLZZXMXQRJMHRHZJBHMFLJLMLCLQNLDXZLLLPYPSYJYSXCQQDCMQJZZXHNPNXZMEKMXHYKYQLXSXTXJYYHWDCWDZHQYYBGYBCYSCFGPSJNZDYZZJZXRZRQJJYMCANYRJTLDPPYZBSTJKXXZYPFDWFGZZRPYMTNGXZQBYXNBUFNQKRJQZMJEGRZGYCLKXZDSKKNSXKCLJSPJYYZLQQJYBZSSQLLLKJXTBKTYLCCDDBLSPPFYLGYDTZJYQGGKQTTFZXBDKTYYHYBBFYTYYBCLPDYTGDHRYRNJSPTCSNYJQHKLLLZSLYDXXWBCJQSPXBPJZJCJDZFFXXBRMLAZHCSNDLBJDSZBLPRZTSWSBXBCLLXXLZDJZSJPYLYXXYFTFFFBHJJXGBYXJPMMMPSSJZJMTLYZJXSWXTYLEDQPJMYGQZJGDJLQJWJQLLSJGJGYGMSCLJJXDTYGJQJQJCJZCJGDZZSXQGSJGGCXHQXSNQLZZBXHSGZXCXYLJXYXYYDFQQJHJFXDHCTXJYRXYSQTJXYEFYYSSYYJXNCYZXFXMSYSZXYYSCHSHXZZZGZZZGFJDLTYLNPZGYJYZYYQZPBXQBDZTZCZYXXYHHSQXSHDHGQHJHGYWSZTMZMLHYXGEBTYLZKQWYTJZRCLEKYSTDBCYKQQSAYXCJXWWGSBHJYZYDHCSJKQCXSWXFLTYNYZPZCCZJQTZWJQDZZZQZLJJXLSBHPYXXPSXSHHEZTXFPTLQYZZXHYTXNCFZYYHXGNXMYWXTZSJPTHHGYMXMXQZXTSBCZYJYXXTYYZYPCQLMMSZMJZZLLZXGXZAAJZYXJMZXWDXZSXZDZXLEYJJZQBHZWZZZQTZPSXZTDSXJJJZNYAZPHXYYSRNQDTHZHYYKYJHDZXZLSWCLYBZYECWCYCRYLCXNHZYDZYDYJDFRJJHTRSQTXYXJRJHOJYNXELXSFSFJZGHPZSXZSZDZCQZBYYKLSGSJHCZSHDGQGXYZGXCHXZJWYQWGYHKSSEQZZNDZFKWYSSTCLZSTSYMCDHJXXYWEYXCZAYDMPXMDSXYBSQMJMZJMTZQLPJYQZCGQHXJHHLXXHLHDLDJQCLDWBSXFZZYYSCHTYTYYBHECXHYKGJPXHHYZJFXHWHBDZFYZBCAPNPGNYDMSXHMMMMAMYNBYJTMPXYYMCTHJBZYFCGTYHWPHFTWZZEZSBZEGPFMTSKFTYCMHFLLHGPZJXZJGZJYXZSBBQSCZZLZCCSTPGXMJSFTCCZJZDJXCYBZLFCJSYZFGSZLYBCWZZBYZDZYPSWYJZXZBDSYUXLZZBZFYGCZXBZHZFTPBGZGEJBSTGKDMFHYZZJHZLLZZGJQZLSFDJSSCBZGPDLFZFZSZYZYZSYGCXSNXXCHCZXTZZLJFZGQSQYXZJQDCCZTQCDXZJYQJQCHXZTDLGSCXZSYQJQTZWLQDQZTQCHQQJZYEZZZPBWKDJFCJPZTYPQYQTTYNLMBDKTJZPQZQZZFPZSBNJLGYJDXJDZZKZGQKXDLPZJTCJDQBXDJQJSTCKNXBXZMSLYJCQMTJQWWCJQNJNLLLHJCWQTBZQYDZCZPZZDZYDDCYZZZCCJTTJFZDPRRTZTJDCQTQZDTJNPLZBCLLCTZSXKJZQZPZLBZRBTJDCXFCZDBCCJJLTQQPLDCGZDBBZJCQDCJWYNLLZYZCCDWLLXWZLXRXNTQQCZXKQLSGDFQTDDGLRLAJJTKUYMKQLLTZYTDYYCZGJWYXDXFRSKSTQTENQMRKQZHHQKDLDAZFKYPBGGPZREBZZYKZZSPEGJXGYKQZZZSLYSYYYZWFQZYLZZLZHWCHKYPQGNPGBLPLRRJYXCCSYYHSFZFYBZYYTGZXYLXCZWXXZJZBLFFLGSKHYJZEYJHLPLLLLCZGXDRZELRHGKLZZYHZLYQSZZJZQLJZFLNBHGWLCZCFJYSPYXZLZLXGCCPZBLLCYBBBBUBBCBPCRNNZCZYRBFSRLDCGQYYQXYGMQZWTZYTYJXYFWTEHZZJYWLCCNTZYJJZDEDPZDZTSYQJHDYMBJNYJZLXTSSTPHNDJXXBYXQTZQDDTJTDYYTGWSCSZQFLSHLGLBCZPHDLYZJYCKWTYTYLBNYTSDSYCCTYSZYYEBHEXHQDTWNYGYCLXTSZYSTQMYGZAZCCSZZDSLZCLZRQXYYELJSBYMXSXZTEMBBLLYYLLYTDQYSHYMRQWKFKBFXNXSBYCHXBWJYHTQBPBSBWDZYLKGZSKYHXQZJXHXJXGNLJKZLYYCDXLFYFGHLJGJYBXQLYBXQPQGZTZPLNCYPXDJYQYDYMRBESJYYHKXXSTMXRCZZYWXYQYBMCLLYZHQYZWQXDBXBZWZMSLPDMYSKFMZKLZCYQYCZLQXFZZYDQZPZYGYJYZMZXDZFYFYTTQTZHGSPCZMLCCYTZXJCYTJMKSLPZHYSNZLLYTPZCTZZCKTXDHXXTQCYFKSMQCCYYAZHTJPCYLZLYJBJXTPNYLJYYNRXSYLMMNXJSMYBCSYSYLZYLXJJQYLDZLPQBFZZBLFNDXQKCZFYWHGQMRDSXYCYTXNQQJZYYPFZXDYZFPRXEJDGYQBXRCNFYYQPGHYJDYZXGRHTKYLNWDZNTSMPKLBTHBPYSZBZTJZSZZJTYYXZPHSSZZBZCZPTQFZMYFLYPYBBJQXZMXXDJMTSYSKKBJZXHJCKLPSMKYJZCXTMLJYXRZZQSLXXQPYZXMKYXXXJCLJPRMYYGADYSKQLSNDHYZKQXZYZTCGHZTLMLWZYBWSYCTBHJHJFCWZTXWYTKZLXQSHLYJZJXTMPLPYCGLTBZZTLZJCYJGDTCLKLPLLQPJMZPAPXYZLKKTKDZCZZBNZDYDYQZJYJGMCTXLTGXSZLMLHBGLKFWNWZHDXUHLFMKYSLGXDTWWFRJEJZTZHYDXYKSHWFZCQSHKTMQQHTZHYMJDJSKHXZJZBZZXYMPAGQMSTPXLSKLZYNWRTSQLSZBPSPSGZWYHTLKSSSWHZZLYYTNXJGMJSZSUFWNLSOZTXGXLSAMMLBWLDSZYLAKQCQCTMYCFJBSLXCLZZCLXXKSBZQCLHJPSQPLSXXCKSLNHPSFQQYTXYJZLQLDXZQJZDYYDJNZPTUZDSKJFSLJHYLZSQZLBTXYDGTQFDBYAZXDZHZJNHHQBYKNXJJQCZMLLJZKSPLDYCLBBLXKLELXJLBQYCXJXGCNLCQPLZLZYJTZLJGYZDZPLTQCSXFDMNYCXGBTJDCZNBGBQYQJWGKFHTNPYQZQGBKPBBYZMTJDYTBLSQMPSXTBNPDXKLEMYYCJYNZCTLDYKZZXDDXHQSHDGMZSJYCCTAYRZLPYLTLKXSLZCGGEXCLFXLKJRTLQJAQZNCMBYDKKCXGLCZJZXJHPTDJJMZQYKQSECQZDSHHADMLZFMMZBGNTJNNLGBYJBRBTMLBYJDZXLCJLPLDLPCQDHLXZLYCBLCXZZJADJLNZMMSSSMYBHBSQKBHRSXXJMXSDZNZPXLGBRHWGGFCXGMSKLLTSJYYCQLTSKYWYYHYWXBXQYWPYWYKQLSQPTNTKHQCWDQKTWPXXHCPTHTWUMSSYHBWCRWXHJMKMZNGWTMLKFGHKJYLSYYCXWHYECLQHKQHTTQKHFZLDXQWYZYYDESBPKYRZPJFYYZJCEQDZZDLATZBBFJLLCXDLMJSSXEGYGSJQXCWBXSSZPDYZCXDNYXPPZYDLYJCZPLTXLSXYZYRXCYYYDYLWWNZSAHJSYQYHGYWWAXTJZDAXYSRLTDPSSYYFNEJDXYZHLXLLLZQZSJNYQYQQXYJGHZGZCYJCHZLYCDSHWSHJZYJXCLLNXZJJYYXNFXMWFPYLCYLLABWDDHWDXJMCXZTZPMLQZHSFHZYNZTLLDYWLSLXHYMMYLMBWWKYXYADTXYLLDJPYBPWUXJMWMLLSAFDLLYFLBHHHBQQLTZJCQJLDJTFFKMMMBYTHYGDCQRDDWRQJXNBYSNWZDBYYTBJHPYBYTTJXAAHGQDQTMYSTQXKBTZPKJLZRBEQQSSMJJBDJOTGTBXPGBKTLHQXJJJCTHXQDWJLWRFWQGWSHCKRYSWGFTGYGBXSDWDWRFHWYTJJXXXJYZYSLPYYYPAYXHYDQKXSHXYXGSKQHYWFDDDPPLCJLQQEEWXKSYYKDYPLTJTHKJLTCYYHHJTTPLTZZCDLTHQKZXQYSTEEYWYYZYXXYYSTTJKLLPZMCYHQGXYHSRMBXPLLNQYDQHXSXXWGDQBSHYLLPJJJTHYJKYPPTHYYKTYEZYENMDSHLCRPQFDGFXZPSFTLJXXJBSWYYSKSFLXLPPLBBBLBSFXFYZBSJSSYLPBBFFFFSSCJDSTZSXZRYYSYFFSYZYZBJTBCTSBSDHRTJJBYTCXYJEYLXCBNEBJDSYXYKGSJZBXBYTFZWGENYHHTHZHHXFWGCSTBGXKLSXYWMTMBYXJSTZSCDYQRCYTWXZFHMYMCXLZNSDJTTTXRYCFYJSBSDYERXJLJXBBDEYNJGHXGCKGSCYMBLXJMSZNSKGXFBNBPTHFJAAFXYXFPXMYPQDTZCXZZPXRSYWZDLYBBKTYQPQJPZYPZJZNJPZJLZZFYSBTTSLMPTZRTDXQSJEHBZYLZDHLJSQMLHTXTJECXSLZZSPKTLZKQQYFSYGYWPCPQFHQHYTQXZKRSGTTSQCZLPTXCDYYZXSQZSLXLZMYCPCQBZYXHBSXLZDLTCDXTYLZJYYZPZYZLTXJSJXHLPMYTXCQRBLZSSFJZZTNJYTXMYJHLHPPLCYXQJQQKZZSCPZKSWALQSBLCCZJSXGWWWYGYKTJBBZTDKHXHKGTGPBKQYSLPXPJCKBMLLXDZSTBKLGGQKQLSBKKTFXRMDKBFTPZFRTBBRFERQGXYJPZSSTLBZTPSZQZSJDHLJQLZBPMSMMSXLQQNHKNBLRDDNXXDHDDJCYYGYLXGZLXSYGMQQGKHBPMXYXLYTQWLWGCPBMQXCYZYDRJBHTDJYHQSHTMJSBYPLWHLZFFNYPMHXXHPLTBQPFBJWQDBYGPNZTPFZJGSDDTQSHZEAWZZYLLTYYBWJKXXGHLFKXDJTMSZSQYNZGGSWQSPHTLSSKMCLZXYSZQZXNCJDQGZDLFNYKLJCJLLZLMZZNHYDSSHTHZZLZZBBHQZWWYCRZHLYQQJBEYFXXXWHSRXWQHWPSLMSSKZTTYGYQQWRSLALHMJTQJSMXQBJJZJXZYZKXBYQXBJXSHZTSFJLXMXZXFGHKZSZGGYLCLSARJYHSLLLMZXELGLXYDJYTLFBHBPNLYZFBBHPTGJKWETZHKJJXZXXGLLJLSTGSHJJYQLQZFKCGNNDJSSZFDBCTWWSEQFHQJBSAQTGYPQLBXBMMYWXGSLZHGLZGQYFLZBYFZJFRYSFMBYZHQGFWZSYFYJJPHZBYYZFFWODGRLMFTWLBZGYCQXCDJYGZYYYYTYTYDWEGAZYHXJLZYYHLRMGRXXZCLHNELJJTJTPWJYBJJBXJJTJTEEKHWSLJPLPSFYZPQQBDLQJJTYYQLYZKDKSQJYYQZLDQTGJQYZJSUCMRYQTHTEJMFCTYHYPKMHYZWJDQFHYYXWSHCTXRLJHQXHCCYYYJLTKTTYTMXGTCJTZAYYOCZLYLBSZYWJYTSJYHBYSHFJLYGJXXTMZYYLTXXYPZLXYJZYZYYPNHMYMDYYLBLHLSYYQQLLNJJYMSOYQBZGDLYXYLCQYXTSZEGXHZGLHWBLJHEYXTWQMAKBPQCGYSHHEGQCMWYYWLJYJHYYZLLJJYLHZYHMGSLJLJXCJJYCLYCJPCPZJZJMMYLCQLNQLJQJSXYJMLSZLJQLYCMMHCFMMFPQQMFYLQMCFFQMMMMHMZNFHHJGTTHHKHSLNCHHYQDXTMMQDCYZYXYQMYQYLTDCYYYZAZZCYMZYDLZFFFMMYCQZWZZMABTBYZTDMNZZGGDFTYPCGQYTTSSFFWFDTZQSSYSTWXJHXYTSXXYLBYQHWWKXHZXWZNNZZJZJJQJCCCHYYXBZXZCYZTLLCQXYNJYCYYCYNZZQYYYEWYCZDCJYCCHYJLBTZYYCQWMPWPYMLGKDLDLGKQQBGYCHJXY"; +//此处收录了375个多音字 +const oMultiDiff = { "19969": "DZ", "19975": "WM", "19988": "QJ", "20048": "YL", "20056": "SC", "20060": "NM", "20094": "QG", "20127": "QJ", "20167": "QC", "20193": "YG", "20250": "KH", "20256": "ZC", "20282": "SC", "20285": "QJG", "20291": "TD", "20314": "YD", "20340": "NE", "20375": "TD", "20389": "YJ", "20391": "CZ", "20415": "PB", "20446": "YS", "20447": "SQ", "20504": "TC", "20608": "KG", "20854": "QJ", "20857": "ZC", "20911": "PF", "20504": "TC", "20608": "KG", "20854": "QJ", "20857": "ZC", "20911": "PF", "20985": "AW", "21032": "PB", "21048": "XQ", "21049": "SC", "21089": "YS", "21119": "JC", "21242": "SB", "21273": "SC", "21305": "YP", "21306": "QO", "21330": "ZC", "21333": "SDC", "21345": "QK", "21378": "CA", "21397": "SC", "21414": "XS", "21442": "SC", "21477": "JG", "21480": "TD", "21484": "ZS", "21494": "YX", "21505": "YX", "21512": "HG", "21523": "XH", "21537": "PB", "21542": "PF", "21549": "KH", "21571": "E", "21574": "DA", "21588": "TD", "21589": "O", "21618": "ZC", "21621": "KHA", "21632": "ZJ", "21654": "KG", "21679": "LKG", "21683": "KH", "21710": "A", "21719": "YH", "21734": "WOE", "21769": "A", "21780": "WN", "21804": "XH", "21834": "A", "21899": "ZD", "21903": "RN", "21908": "WO", "21939": "ZC", "21956": "SA", "21964": "YA", "21970": "TD", "22003": "A", "22031": "JG", "22040": "XS", "22060": "ZC", "22066": "ZC", "22079": "MH", "22129": "XJ", "22179": "XA", "22237": "NJ", "22244": "TD", "22280": "JQ", "22300": "YH", "22313": "XW", "22331": "YQ", "22343": "YJ", "22351": "PH", "22395": "DC", "22412": "TD", "22484": "PB", "22500": "PB", "22534": "ZD", "22549": "DH", "22561": "PB", "22612": "TD", "22771": "KQ", "22831": "HB", "22841": "JG", "22855": "QJ", "22865": "XQ", "23013": "ML", "23081": "WM", "23487": "SX", "23558": "QJ", "23561": "YW", "23586": "YW", "23614": "YW", "23615": "SN", "23631": "PB", "23646": "ZS", "23663": "ZT", "23673": "YG", "23762": "TD", "23769": "ZS", "23780": "QJ", "23884": "QK", "24055": "XH", "24113": "DC", "24162": "ZC", "24191": "GA", "24273": "QJ", "24324": "NL", "24377": "TD", "24378": "QJ", "24439": "PF", "24554": "ZS", "24683": "TD", "24694": "WE", "24733": "LK", "24925": "TN", "25094": "ZG", "25100": "XQ", "25103": "XH", "25153": "PB", "25170": "PB", "25179": "KG", "25203": "PB", "25240": "ZS", "25282": "FB", "25303": "NA", "25324": "KG", "25341": "ZY", "25373": "WZ", "25375": "XJ", "25384": "A", "25457": "A", "25528": "SD", "25530": "SC", "25552": "TD", "25774": "ZC", "25874": "ZC", "26044": "YW", "26080": "WM", "26292": "PB", "26333": "PB", "26355": "ZY", "26366": "CZ", "26397": "ZC", "26399": "QJ", "26415": "ZS", "26451": "SB", "26526": "ZC", "26552": "JG", "26561": "TD", "26588": "JG", "26597": "CZ", "26629": "ZS", "26638": "YL", "26646": "XQ", "26653": "KG", "26657": "XJ", "26727": "HG", "26894": "ZC", "26937": "ZS", "26946": "ZC", "26999": "KJ", "27099": "KJ", "27449": "YQ", "27481": "XS", "27542": "ZS", "27663": "ZS", "27748": "TS", "27784": "SC", "27788": "ZD", "27795": "TD", "27812": "O", "27850": "PB", "27852": "MB", "27895": "SL", "27898": "PL", "27973": "QJ", "27981": "KH", "27986": "HX", "27994": "XJ", "28044": "YC", "28065": "WG", "28177": "SM", "28267": "QJ", "28291": "KH", "28337": "ZQ", "28463": "TL", "28548": "DC", "28601": "TD", "28689": "PB", "28805": "JG", "28820": "QG", "28846": "PB", "28952": "TD", "28975": "ZC", "29100": "A", "29325": "QJ", "29575": "SL", "29602": "FB", "30010": "TD", "30044": "CX", "30058": "PF", "30091": "YSP", "30111": "YN", "30229": "XJ", "30427": "SC", "30465": "SX", "30631": "YQ", "30655": "QJ", "30684": "QJG", "30707": "SD", "30729": "XH", "30796": "LG", "30917": "PB", "31074": "NM", "31085": "JZ", "31109": "SC", "31181": "ZC", "31192": "MLB", "31293": "JQ", "31400": "YX", "31584": "YJ", "31896": "ZN", "31909": "ZY", "31995": "XJ", "32321": "PF", "32327": "ZY", "32418": "HG", "32420": "XQ", "32421": "HG", "32438": "LG", "32473": "GJ", "32488": "TD", "32521": "QJ", "32527": "PB", "32562": "ZSQ", "32564": "JZ", "32735": "ZD", "32793": "PB", "33071": "PF", "33098": "XL", "33100": "YA", "33152": "PB", "33261": "CX", "33324": "BP", "33333": "TD", "33406": "YA", "33426": "WM", "33432": "PB", "33445": "JG", "33486": "ZN", "33493": "TS", "33507": "QJ", "33540": "QJ", "33544": "ZC", "33564": "XQ", "33617": "YT", "33632": "QJ", "33636": "XH", "33637": "YX", "33694": "WG", "33705": "PF", "33728": "YW", "33882": "SR", "34067": "WM", "34074": "YW", "34121": "QJ", "34255": "ZC", "34259": "XL", "34425": "JH", "34430": "XH", "34485": "KH", "34503": "YS", "34532": "HG", "34552": "XS", "34558": "YE", "34593": "ZL", "34660": "YQ", "34892": "XH", "34928": "SC", "34999": "QJ", "35048": "PB", "35059": "SC", "35098": "ZC", "35203": "TQ", "35265": "JX", "35299": "JX", "35782": "SZ", "35828": "YS", "35830": "E", "35843": "TD", "35895": "YG", "35977": "MH", "36158": "JG", "36228": "QJ", "36426": "XQ", "36466": "DC", "36710": "JC", "36711": "ZYG", "36767": "PB", "36866": "SK", "36951": "YW", "37034": "YX", "37063": "XH", "37218": "ZC", "37325": "ZC", "38063": "PB", "38079": "TD", "38085": "QY", "38107": "DC", "38116": "TD", "38123": "YD", "38224": "HG", "38241": "XTC", "38271": "ZC", "38415": "YE", "38426": "KH", "38461": "YD", "38463": "AE", "38466": "PB", "38477": "XJ", "38518": "YT", "38551": "WK", "38585": "ZC", "38704": "XS", "38739": "LJ", "38761": "GJ", "38808": "SQ", "39048": "JG", "39049": "XJ", "39052": "HG", "39076": "CZ", "39271": "XT", "39534": "TD", "39552": "TD", "39584": "PB", "39647": "SB", "39730": "LG", "39748": "TPB", "40109": "ZQ", "40479": "ND", "40516": "HG", "40536": "HG", "40583": "QJ", "40765": "YQ", "40784": "QJ", "40840": "YK", "40863": "QJG" }; +//参数,中文字符串 +//返回值:拼音首字母串数组 +function makePy(str) { + if (typeof (str) != "string") + throw new Error(-1, "函数makePy需要字符串类型参数!"); + var arrResult = new Array(); //保存中间结果的数组 + for (var i = 0, len = str.length; i < len; i++) { + //获得unicode码 + var ch = str.charAt(i); + //检查该unicode码是否在处理范围之内,在则返回该码对映汉字的拼音首字母,不在则调用其它函数处理 + arrResult.push(checkCh(ch)); + } + //处理arrResult,返回所有可能的拼音首字母串数组 + return mkRslt(arrResult); +} +function checkCh(ch) { + var uni = ch.charCodeAt(0); + //如果不在汉字处理范围之内,返回原字符,也可以调用自己的处理函数 + if (uni > 40869 || uni < 19968) + return ch; //dealWithOthers(ch); + //检查是否是多音字,是按多音字处理,不是就直接在strChineseFirstPY字符串中找对应的首字母 + return (oMultiDiff[uni] ? oMultiDiff[uni] : (strChineseFirstPY.charAt(uni - 19968))); +} +function mkRslt(arr) { + var arrRslt = [""]; + for (var i = 0, len = arr.length; i < len; i++) { + var str = arr[i]; + var strlen = str.length; + if (strlen == 1) { + for (var k = 0; k < arrRslt.length; k++) { + arrRslt[k] += str; + } + } else { + var tmpArr = arrRslt.slice(0); + arrRslt = []; + for (k = 0; k < strlen; k++) { + //复制一个相同的arrRslt + var tmp = tmpArr.slice(0); + //把当前字符str[k]添加到每个元素末尾 + for (var j = 0; j < tmp.length; j++) { + tmp[j] += str.charAt(k); + } + //把复制并修改后的数组连接到arrRslt上 + arrRslt = arrRslt.concat(tmp); + } + } + } + return arrRslt; +} + +export default makePy \ No newline at end of file diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/libs/qqmap-wx-jssdk.min.js" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/libs/qqmap-wx-jssdk.min.js" new file mode 100644 index 0000000000000000000000000000000000000000..b92f25ad7a739680a2b310754f752b709f20f535 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/libs/qqmap-wx-jssdk.min.js" @@ -0,0 +1,2 @@ +var _createClass=function(){function a(e,c){for(var b=0;b + + + + {{ title }} + + + + {{ description }} + + + + + + + + + + {{ cancelText }} + + + diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/action-sheet/index.wxss" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/action-sheet/index.wxss" new file mode 100644 index 0000000000000000000000000000000000000000..9b247d5d81acaf35e41a90a4c959f6e48738de1f --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/action-sheet/index.wxss" @@ -0,0 +1 @@ +@import '../common/index.wxss';.van-action-sheet{max-height:90%!important;max-height:var(--action-sheet-max-height,90%)!important;color:#323233;color:var(--action-sheet-item-text-color,#323233)}.van-action-sheet__cancel,.van-action-sheet__item{padding:14px 16px;text-align:center;font-size:16px;font-size:var(--action-sheet-item-font-size,16px);line-height:22px;line-height:var(--action-sheet-item-line-height,22px);background-color:#fff;background-color:var(--action-sheet-item-background,#fff)}.van-action-sheet__cancel--hover,.van-action-sheet__item--hover{background-color:#f2f3f5;background-color:var(--active-color,#f2f3f5)}.van-action-sheet__cancel:after,.van-action-sheet__item:after{border-width:0}.van-action-sheet__cancel{color:#646566;color:var(--action-sheet-cancel-text-color,#646566)}.van-action-sheet__gap{display:block;height:8px;height:var(--action-sheet-cancel-padding-top,8px);background-color:#f7f8fa;background-color:var(--action-sheet-cancel-padding-color,#f7f8fa)}.van-action-sheet__item--disabled{color:#c8c9cc;color:var(--action-sheet-item-disabled-text-color,#c8c9cc)}.van-action-sheet__item--disabled.van-action-sheet__item--hover{background-color:#fff;background-color:var(--action-sheet-item-background,#fff)}.van-action-sheet__subname{margin-top:8px;margin-top:var(--padding-xs,8px);font-size:12px;font-size:var(--action-sheet-subname-font-size,12px);color:#969799;color:var(--action-sheet-subname-color,#969799);line-height:20px;line-height:var(--action-sheet-subname-line-height,20px)}.van-action-sheet__header{text-align:center;font-weight:500;font-weight:var(--font-weight-bold,500);font-size:16px;font-size:var(--action-sheet-header-font-size,16px);line-height:48px;line-height:var(--action-sheet-header-height,48px)}.van-action-sheet__description{text-align:center;padding:20px 16px;padding:20px var(--padding-md,16px);color:#969799;color:var(--action-sheet-description-color,#969799);font-size:14px;font-size:var(--action-sheet-description-font-size,14px);line-height:20px;line-height:var(--action-sheet-description-line-height,20px)}.van-action-sheet__close{position:absolute!important;top:0;right:0;line-height:inherit!important;padding:0 16px;padding:var(--action-sheet-close-icon-padding,0 16px);font-size:22px!important;font-size:var(--action-sheet-close-icon-size,22px)!important;color:#c8c9cc;color:var(--action-sheet-close-icon-color,#c8c9cc)}.van-action-sheet__loading{display:-webkit-flex!important;display:flex!important} \ No newline at end of file diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/area/index.js" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/area/index.js" new file mode 100644 index 0000000000000000000000000000000000000000..73a4b2693c9aa97a7756f763bf55eea964ebf862 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/area/index.js" @@ -0,0 +1,263 @@ +'use strict'; +var __assign = + (this && this.__assign) || + function () { + __assign = + Object.assign || + function (t) { + for (var s, i = 1, n = arguments.length; i < n; i++) { + s = arguments[i]; + for (var p in s) + if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p]; + } + return t; + }; + return __assign.apply(this, arguments); + }; +Object.defineProperty(exports, '__esModule', { value: true }); +var component_1 = require('../common/component'); +var shared_1 = require('../picker/shared'); +var utils_1 = require('../common/utils'); +var EMPTY_CODE = '000000'; +component_1.VantComponent({ + classes: ['active-class', 'toolbar-class', 'column-class'], + props: __assign(__assign({}, shared_1.pickerProps), { + value: { + type: String, + observer: function (value) { + this.code = value; + this.setValues(); + }, + }, + areaList: { + type: Object, + value: {}, + observer: 'setValues', + }, + columnsNum: { + type: null, + value: 3, + }, + columnsPlaceholder: { + type: Array, + observer: function (val) { + this.setData({ + typeToColumnsPlaceholder: { + province: val[0] || '', + city: val[1] || '', + county: val[2] || '', + }, + }); + }, + }, + }), + data: { + columns: [{ values: [] }, { values: [] }, { values: [] }], + typeToColumnsPlaceholder: {}, + }, + mounted: function () { + var _this = this; + utils_1.requestAnimationFrame(function () { + _this.setValues(); + }); + }, + methods: { + getPicker: function () { + if (this.picker == null) { + this.picker = this.selectComponent('.van-area__picker'); + } + return this.picker; + }, + onCancel: function (event) { + this.emit('cancel', event.detail); + }, + onConfirm: function (event) { + var index = event.detail.index; + var value = event.detail.value; + value = this.parseValues(value); + this.emit('confirm', { value: value, index: index }); + }, + emit: function (type, detail) { + detail.values = detail.value; + delete detail.value; + this.$emit(type, detail); + }, + parseValues: function (values) { + var columnsPlaceholder = this.data.columnsPlaceholder; + return values.map(function (value, index) { + if ( + value && + (!value.code || value.name === columnsPlaceholder[index]) + ) { + return __assign(__assign({}, value), { code: '', name: '' }); + } + return value; + }); + }, + onChange: function (event) { + var _this = this; + var _a = event.detail, + index = _a.index, + picker = _a.picker, + value = _a.value; + this.code = value[index].code; + this.setValues().then(function () { + _this.$emit('change', { + picker: picker, + values: _this.parseValues(picker.getValues()), + index: index, + }); + }); + }, + getConfig: function (type) { + var areaList = this.data.areaList; + return (areaList && areaList[type + '_list']) || {}; + }, + getList: function (type, code) { + if (type !== 'province' && !code) { + return []; + } + var typeToColumnsPlaceholder = this.data.typeToColumnsPlaceholder; + var list = this.getConfig(type); + var result = Object.keys(list).map(function (code) { + return { + code: code, + name: list[code], + }; + }); + if (code != null) { + // oversea code + if (code[0] === '9' && type === 'city') { + code = '9'; + } + result = result.filter(function (item) { + return item.code.indexOf(code) === 0; + }); + } + if (typeToColumnsPlaceholder[type] && result.length) { + // set columns placeholder + var codeFill = + type === 'province' + ? '' + : type === 'city' + ? EMPTY_CODE.slice(2, 4) + : EMPTY_CODE.slice(4, 6); + result.unshift({ + code: '' + code + codeFill, + name: typeToColumnsPlaceholder[type], + }); + } + return result; + }, + getIndex: function (type, code) { + var compareNum = type === 'province' ? 2 : type === 'city' ? 4 : 6; + var list = this.getList(type, code.slice(0, compareNum - 2)); + // oversea code + if (code[0] === '9' && type === 'province') { + compareNum = 1; + } + code = code.slice(0, compareNum); + for (var i = 0; i < list.length; i++) { + if (list[i].code.slice(0, compareNum) === code) { + return i; + } + } + return 0; + }, + setValues: function () { + var picker = this.getPicker(); + if (!picker) { + return; + } + var code = this.code || this.getDefaultCode(); + var provinceList = this.getList('province'); + var cityList = this.getList('city', code.slice(0, 2)); + var stack = []; + var indexes = []; + var columnsNum = this.data.columnsNum; + if (columnsNum >= 1) { + stack.push(picker.setColumnValues(0, provinceList, false)); + indexes.push(this.getIndex('province', code)); + } + if (columnsNum >= 2) { + stack.push(picker.setColumnValues(1, cityList, false)); + indexes.push(this.getIndex('city', code)); + if (cityList.length && code.slice(2, 4) === '00') { + code = cityList[0].code; + } + } + if (columnsNum === 3) { + stack.push( + picker.setColumnValues( + 2, + this.getList('county', code.slice(0, 4)), + false + ) + ); + indexes.push(this.getIndex('county', code)); + } + return Promise.all(stack) + .catch(function () {}) + .then(function () { + return picker.setIndexes(indexes); + }) + .catch(function () {}); + }, + getDefaultCode: function () { + var columnsPlaceholder = this.data.columnsPlaceholder; + if (columnsPlaceholder.length) { + return EMPTY_CODE; + } + var countyCodes = Object.keys(this.getConfig('county')); + if (countyCodes[0]) { + return countyCodes[0]; + } + var cityCodes = Object.keys(this.getConfig('city')); + if (cityCodes[0]) { + return cityCodes[0]; + } + return ''; + }, + getValues: function () { + var picker = this.getPicker(); + if (!picker) { + return []; + } + return this.parseValues( + picker.getValues().filter(function (value) { + return !!value; + }) + ); + }, + getDetail: function () { + var values = this.getValues(); + var area = { + code: '', + country: '', + province: '', + city: '', + county: '', + }; + if (!values.length) { + return area; + } + var names = values.map(function (item) { + return item.name; + }); + area.code = values[values.length - 1].code; + if (area.code[0] === '9') { + area.country = names[1] || ''; + area.province = names[2] || ''; + } else { + area.province = names[0] || ''; + area.city = names[1] || ''; + area.county = names[2] || ''; + } + return area; + }, + reset: function (code) { + this.code = code || ''; + return this.setValues(); + }, + }, +}); diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/area/index.json" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/area/index.json" new file mode 100644 index 0000000000000000000000000000000000000000..a778e91cce16edbb1fd2af764415c4f8d2f0a0ea --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/area/index.json" @@ -0,0 +1,6 @@ +{ + "component": true, + "usingComponents": { + "van-picker": "../picker/index" + } +} diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/area/index.wxml" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/area/index.wxml" new file mode 100644 index 0000000000000000000000000000000000000000..f7dc51f53e9dc7fd462c4b314068ee160331ebce --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/area/index.wxml" @@ -0,0 +1,20 @@ + + + diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/area/index.wxs" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/area/index.wxs" new file mode 100644 index 0000000000000000000000000000000000000000..07723c11af98212d0c454d9fbacabe9e6963e838 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/area/index.wxs" @@ -0,0 +1,8 @@ +/* eslint-disable */ +function displayColumns(columns, columnsNum) { + return columns.slice(0, +columnsNum); +} + +module.exports = { + displayColumns: displayColumns, +}; diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/area/index.wxss" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/area/index.wxss" new file mode 100644 index 0000000000000000000000000000000000000000..99694d603361421fe8f1acfc76a09eae443cb3aa --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/area/index.wxss" @@ -0,0 +1 @@ +@import '../common/index.wxss'; \ No newline at end of file diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/button/index.js" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/button/index.js" new file mode 100644 index 0000000000000000000000000000000000000000..cbf57f0b98647fc5918f1fdc01caad0a1bc14b06 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/button/index.js" @@ -0,0 +1,60 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var component_1 = require('../common/component'); +var button_1 = require('../mixins/button'); +var open_type_1 = require('../mixins/open-type'); +var version_1 = require('../common/version'); +var mixins = [button_1.button, open_type_1.openType]; +if (version_1.canIUseFormFieldButton()) { + mixins.push('wx://form-field-button'); +} +component_1.VantComponent({ + mixins: mixins, + classes: ['hover-class', 'loading-class'], + data: { + baseStyle: '', + }, + props: { + formType: String, + icon: String, + classPrefix: { + type: String, + value: 'van-icon', + }, + plain: Boolean, + block: Boolean, + round: Boolean, + square: Boolean, + loading: Boolean, + hairline: Boolean, + disabled: Boolean, + loadingText: String, + customStyle: String, + loadingType: { + type: String, + value: 'circular', + }, + type: { + type: String, + value: 'default', + }, + dataset: null, + size: { + type: String, + value: 'normal', + }, + loadingSize: { + type: String, + value: '20px', + }, + color: String, + }, + methods: { + onClick: function () { + if (!this.data.loading) { + this.$emit('click'); + } + }, + noop: function () {}, + }, +}); diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/button/index.json" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/button/index.json" new file mode 100644 index 0000000000000000000000000000000000000000..e00a588702da8887bbe5f8261aea5764251d14ff --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/button/index.json" @@ -0,0 +1,7 @@ +{ + "component": true, + "usingComponents": { + "van-icon": "../icon/index", + "van-loading": "../loading/index" + } +} diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/button/index.wxml" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/button/index.wxml" new file mode 100644 index 0000000000000000000000000000000000000000..e4cec8aeb81d7784eb7219e28e87056b7fa23085 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/button/index.wxml" @@ -0,0 +1,53 @@ + + + + diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/button/index.wxs" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/button/index.wxs" new file mode 100644 index 0000000000000000000000000000000000000000..8b649fe18d9444424b6b4c87737790d5bdd0b800 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/button/index.wxs" @@ -0,0 +1,39 @@ +/* eslint-disable */ +var style = require('../wxs/style.wxs'); + +function rootStyle(data) { + if (!data.color) { + return data.customStyle; + } + + var properties = { + color: data.plain ? data.color : '#fff', + background: data.plain ? null : data.color, + }; + + // hide border when color is linear-gradient + if (data.color.indexOf('gradient') !== -1) { + properties.border = 0; + } else { + properties['border-color'] = data.color; + } + + return style([properties, data.customStyle]); +} + +function loadingColor(data) { + if (data.plain) { + return data.color ? data.color : '#c9c9c9'; + } + + if (data.type === 'default') { + return '#c9c9c9'; + } + + return '#fff'; +} + +module.exports = { + rootStyle: rootStyle, + loadingColor: loadingColor, +}; diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/button/index.wxss" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/button/index.wxss" new file mode 100644 index 0000000000000000000000000000000000000000..5a591fbd5ebe777d649cc7e6378a25d40615767f --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/button/index.wxss" @@ -0,0 +1 @@ +@import '../common/index.wxss';.van-button{position:relative;display:-webkit-inline-flex;display:inline-flex;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center;box-sizing:border-box;padding:0;text-align:center;vertical-align:middle;-webkit-appearance:none;-webkit-text-size-adjust:100%;height:44px;height:var(--button-default-height,44px);line-height:20px;line-height:var(--button-line-height,20px);font-size:16px;font-size:var(--button-default-font-size,16px);transition:opacity .2s;transition:opacity var(--animation-duration-fast,.2s);border-radius:2px;border-radius:var(--button-border-radius,2px)}.van-button:before{position:absolute;top:50%;left:50%;width:100%;height:100%;border:inherit;border-radius:inherit;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);opacity:0;content:" ";background-color:#000;background-color:var(--black,#000);border-color:#000;border-color:var(--black,#000)}.van-button:after{border-width:0}.van-button--active:before{opacity:.15}.van-button--unclickable:after{display:none}.van-button--default{color:#323233;color:var(--button-default-color,#323233);background:#fff;background:var(--button-default-background-color,#fff);border:1px solid #ebedf0;border:var(--button-border-width,1px) solid var(--button-default-border-color,#ebedf0)}.van-button--primary{color:#fff;color:var(--button-primary-color,#fff);background:#07c160;background:var(--button-primary-background-color,#07c160);border:1px solid #07c160;border:var(--button-border-width,1px) solid var(--button-primary-border-color,#07c160)}.van-button--info{color:#fff;color:var(--button-info-color,#fff);background:#1989fa;background:var(--button-info-background-color,#1989fa);border:1px solid #1989fa;border:var(--button-border-width,1px) solid var(--button-info-border-color,#1989fa)}.van-button--danger{color:#fff;color:var(--button-danger-color,#fff);background:#ee0a24;background:var(--button-danger-background-color,#ee0a24);border:1px solid #ee0a24;border:var(--button-border-width,1px) solid var(--button-danger-border-color,#ee0a24)}.van-button--warning{color:#fff;color:var(--button-warning-color,#fff);background:#ff976a;background:var(--button-warning-background-color,#ff976a);border:1px solid #ff976a;border:var(--button-border-width,1px) solid var(--button-warning-border-color,#ff976a)}.van-button--plain{background:#fff;background:var(--button-plain-background-color,#fff)}.van-button--plain.van-button--primary{color:#07c160;color:var(--button-primary-background-color,#07c160)}.van-button--plain.van-button--info{color:#1989fa;color:var(--button-info-background-color,#1989fa)}.van-button--plain.van-button--danger{color:#ee0a24;color:var(--button-danger-background-color,#ee0a24)}.van-button--plain.van-button--warning{color:#ff976a;color:var(--button-warning-background-color,#ff976a)}.van-button--large{width:100%;height:50px;height:var(--button-large-height,50px)}.van-button--normal{padding:0 15px;font-size:14px;font-size:var(--button-normal-font-size,14px)}.van-button--small{min-width:60px;min-width:var(--button-small-min-width,60px);height:30px;height:var(--button-small-height,30px);padding:0 8px;padding:0 var(--padding-xs,8px);font-size:12px;font-size:var(--button-small-font-size,12px)}.van-button--mini{display:inline-block;min-width:50px;min-width:var(--button-mini-min-width,50px);height:22px;height:var(--button-mini-height,22px);font-size:10px;font-size:var(--button-mini-font-size,10px)}.van-button--mini+.van-button--mini{margin-left:5px}.van-button--block{display:-webkit-flex;display:flex;width:100%}.van-button--round{border-radius:999px;border-radius:var(--button-round-border-radius,999px)}.van-button--square{border-radius:0}.van-button--disabled{opacity:.5;opacity:var(--button-disabled-opacity,.5)}.van-button__text{display:inline}.van-button__icon+.van-button__text:not(:empty),.van-button__loading-text{margin-left:4px}.van-button__icon{min-width:1em;line-height:inherit!important;vertical-align:top}.van-button--hairline{padding-top:1px;border-width:0}.van-button--hairline:after{border-color:inherit;border-width:1px;border-radius:4px;border-radius:calc(var(--button-border-radius, 2px)*2)}.van-button--hairline.van-button--round:after{border-radius:999px;border-radius:var(--button-round-border-radius,999px)}.van-button--hairline.van-button--square:after{border-radius:0} \ No newline at end of file diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/calendar/calendar.wxml" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/calendar/calendar.wxml" new file mode 100644 index 0000000000000000000000000000000000000000..26938c1a496daa399392781a1f541a918a86cb77 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/calendar/calendar.wxml" @@ -0,0 +1,65 @@ + +
+ +
+ + + + + + + + + + + + {{ + computed.getButtonDisabled(type, currentDate) + ? confirmDisabledText + : confirmText + }} + + +
diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/calendar/components/header/index.js" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/calendar/components/header/index.js" new file mode 100644 index 0000000000000000000000000000000000000000..cf725aec77f3c6b541d438e11079d7ad6bfe5e87 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/calendar/components/header/index.js" @@ -0,0 +1,18 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var component_1 = require('../../../common/component'); +component_1.VantComponent({ + props: { + title: { + type: String, + value: '日期选择', + }, + subtitle: String, + showTitle: Boolean, + showSubtitle: Boolean, + }, + data: { + weekdays: ['日', '一', '二', '三', '四', '五', '六'], + }, + methods: {}, +}); diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/calendar/components/header/index.json" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/calendar/components/header/index.json" new file mode 100644 index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/calendar/components/header/index.json" @@ -0,0 +1,3 @@ +{ + "component": true +} diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/calendar/components/header/index.wxml" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/calendar/components/header/index.wxml" new file mode 100644 index 0000000000000000000000000000000000000000..eb8e4b47a1a11e63cf50ae7be23b00a0790f4592 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/calendar/components/header/index.wxml" @@ -0,0 +1,16 @@ + + + + {{ title }} + + + + {{ subtitle }} + + + + + {{ item }} + + + diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/calendar/components/header/index.wxss" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/calendar/components/header/index.wxss" new file mode 100644 index 0000000000000000000000000000000000000000..4075e48f17ccea9eb15348c86b332b9464d534aa --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/calendar/components/header/index.wxss" @@ -0,0 +1 @@ +@import '../../../common/index.wxss';.van-calendar__header{-webkit-flex-shrink:0;flex-shrink:0;box-shadow:0 2px 10px rgba(125,126,128,.16);box-shadow:var(--calendar-header-box-shadow,0 2px 10px rgba(125,126,128,.16))}.van-calendar__header-subtitle,.van-calendar__header-title{text-align:center;height:44px;height:var(--calendar-header-title-height,44px);font-weight:500;font-weight:var(--font-weight-bold,500);line-height:44px;line-height:var(--calendar-header-title-height,44px)}.van-calendar__header-title+.van-calendar__header-title,.van-calendar__header-title:empty{display:none}.van-calendar__header-title:empty+.van-calendar__header-title{display:block!important}.van-calendar__weekdays{display:-webkit-flex;display:flex}.van-calendar__weekday{-webkit-flex:1;flex:1;text-align:center;font-size:12px;font-size:var(--calendar-weekdays-font-size,12px);line-height:30px;line-height:var(--calendar-weekdays-height,30px)} \ No newline at end of file diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/calendar/components/month/index.js" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/calendar/components/month/index.js" new file mode 100644 index 0000000000000000000000000000000000000000..e8aaaf402824c59d0f7e93e3136c4aced56876fe --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/calendar/components/month/index.js" @@ -0,0 +1,167 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var component_1 = require('../../../common/component'); +var utils_1 = require('../../utils'); +component_1.VantComponent({ + props: { + date: { + type: null, + observer: 'setDays', + }, + type: { + type: String, + observer: 'setDays', + }, + color: String, + minDate: { + type: null, + observer: 'setDays', + }, + maxDate: { + type: null, + observer: 'setDays', + }, + showMark: Boolean, + rowHeight: null, + formatter: { + type: null, + observer: 'setDays', + }, + currentDate: { + type: null, + observer: 'setDays', + }, + allowSameDay: Boolean, + showSubtitle: Boolean, + showMonthTitle: Boolean, + }, + data: { + visible: true, + days: [], + }, + methods: { + onClick: function (event) { + var index = event.currentTarget.dataset.index; + var item = this.data.days[index]; + if (item.type !== 'disabled') { + this.$emit('click', item); + } + }, + setDays: function () { + var days = []; + var startDate = new Date(this.data.date); + var year = startDate.getFullYear(); + var month = startDate.getMonth(); + var totalDay = utils_1.getMonthEndDay( + startDate.getFullYear(), + startDate.getMonth() + 1 + ); + for (var day = 1; day <= totalDay; day++) { + var date = new Date(year, month, day); + var type = this.getDayType(date); + var config = { + date: date, + type: type, + text: day, + bottomInfo: this.getBottomInfo(type), + }; + if (this.data.formatter) { + config = this.data.formatter(config); + } + days.push(config); + } + this.setData({ days: days }); + }, + getMultipleDayType: function (day) { + var currentDate = this.data.currentDate; + if (!Array.isArray(currentDate)) { + return ''; + } + var isSelected = function (date) { + return currentDate.some(function (item) { + return utils_1.compareDay(item, date) === 0; + }); + }; + if (isSelected(day)) { + var prevDay = utils_1.getPrevDay(day); + var nextDay = utils_1.getNextDay(day); + var prevSelected = isSelected(prevDay); + var nextSelected = isSelected(nextDay); + if (prevSelected && nextSelected) { + return 'multiple-middle'; + } + if (prevSelected) { + return 'end'; + } + return nextSelected ? 'start' : 'multiple-selected'; + } + return ''; + }, + getRangeDayType: function (day) { + var _a = this.data, + currentDate = _a.currentDate, + allowSameDay = _a.allowSameDay; + if (!Array.isArray(currentDate)) { + return; + } + var startDay = currentDate[0], + endDay = currentDate[1]; + if (!startDay) { + return; + } + var compareToStart = utils_1.compareDay(day, startDay); + if (!endDay) { + return compareToStart === 0 ? 'start' : ''; + } + var compareToEnd = utils_1.compareDay(day, endDay); + if (compareToStart === 0 && compareToEnd === 0 && allowSameDay) { + return 'start-end'; + } + if (compareToStart === 0) { + return 'start'; + } + if (compareToEnd === 0) { + return 'end'; + } + if (compareToStart > 0 && compareToEnd < 0) { + return 'middle'; + } + }, + getDayType: function (day) { + var _a = this.data, + type = _a.type, + minDate = _a.minDate, + maxDate = _a.maxDate, + currentDate = _a.currentDate; + if ( + utils_1.compareDay(day, minDate) < 0 || + utils_1.compareDay(day, maxDate) > 0 + ) { + return 'disabled'; + } + if (type === 'single') { + return utils_1.compareDay(day, currentDate) === 0 ? 'selected' : ''; + } + if (type === 'multiple') { + return this.getMultipleDayType(day); + } + /* istanbul ignore else */ + if (type === 'range') { + return this.getRangeDayType(day); + } + }, + getBottomInfo: function (type) { + if (this.data.type === 'range') { + if (type === 'start') { + return '开始'; + } + if (type === 'end') { + return '结束'; + } + if (type === 'start-end') { + return '开始/结束'; + } + } + }, + }, +}); diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/calendar/components/month/index.json" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/calendar/components/month/index.json" new file mode 100644 index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/calendar/components/month/index.json" @@ -0,0 +1,3 @@ +{ + "component": true +} diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/calendar/components/month/index.wxml" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/calendar/components/month/index.wxml" new file mode 100644 index 0000000000000000000000000000000000000000..55bab83f7052326e7d65dc7958362c3f4dc483ed --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/calendar/components/month/index.wxml" @@ -0,0 +1,39 @@ + + + + + + {{ computed.formatMonthTitle(date) }} + + + + + {{ computed.getMark(date) }} + + + + + {{ item.topInfo }} + {{ item.text }} + + {{ item.bottomInfo }} + + + + + {{ item.topInfo }} + {{ item.text }} + + {{ item.bottomInfo }} + + + + + diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/calendar/components/month/index.wxs" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/calendar/components/month/index.wxs" new file mode 100644 index 0000000000000000000000000000000000000000..a057079893859f30492a02ff620e22387fb199cd --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/calendar/components/month/index.wxs" @@ -0,0 +1,67 @@ +/* eslint-disable */ +var utils = require('../../utils.wxs'); + +function getMark(date) { + return getDate(date).getMonth() + 1; +} + +var ROW_HEIGHT = 64; + +function getDayStyle(type, index, date, rowHeight, color) { + var style = []; + var offset = getDate(date).getDay(); + + if (index === 0) { + style.push(['margin-left', (100 * offset) / 7 + '%']); + } + + if (rowHeight !== ROW_HEIGHT) { + style.push(['height', rowHeight + 'px']); + } + + if (color) { + if ( + type === 'start' || + type === 'end' || + type === 'multiple-selected' || + type === 'multiple-middle' + ) { + style.push(['background', color]); + } else if (type === 'middle') { + style.push(['color', color]); + } + } + + return style + .map(function(item) { + return item.join(':'); + }) + .join(';'); +} + +function formatMonthTitle(date) { + date = getDate(date); + return date.getFullYear() + '年' + (date.getMonth() + 1) + '月'; +} + +function getMonthStyle(visible, date, rowHeight) { + if (!visible) { + date = getDate(date); + + var totalDay = utils.getMonthEndDay( + date.getFullYear(), + date.getMonth() + 1 + ); + var offset = getDate(date).getDay(); + var padding = Math.ceil((totalDay + offset) / 7) * rowHeight; + + return 'padding-bottom:' + padding + 'px'; + } +} + +module.exports = { + getMark: getMark, + getDayStyle: getDayStyle, + formatMonthTitle: formatMonthTitle, + getMonthStyle: getMonthStyle +}; diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/calendar/components/month/index.wxss" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/calendar/components/month/index.wxss" new file mode 100644 index 0000000000000000000000000000000000000000..17c12f4e60009cbbe9457f4370d57e30953fc0d4 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/calendar/components/month/index.wxss" @@ -0,0 +1 @@ +@import '../../../common/index.wxss';.van-calendar{display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;height:100%;background-color:#fff;background-color:var(--calendar-background-color,#fff)}.van-calendar__month-title{text-align:center;height:44px;height:var(--calendar-header-title-height,44px);font-weight:500;font-weight:var(--font-weight-bold,500);font-size:14px;font-size:var(--calendar-month-title-font-size,14px);line-height:44px;line-height:var(--calendar-header-title-height,44px)}.van-calendar__days{position:relative;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;-webkit-user-select:none;user-select:none}.van-calendar__month-mark{position:absolute;top:50%;left:50%;z-index:0;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);pointer-events:none;color:rgba(242,243,245,.8);color:var(--calendar-month-mark-color,rgba(242,243,245,.8));font-size:160px;font-size:var(--calendar-month-mark-font-size,160px)}.van-calendar__day,.van-calendar__selected-day{display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center;text-align:center}.van-calendar__day{position:relative;width:14.285%;height:64px;height:var(--calendar-day-height,64px);font-size:16px;font-size:var(--calendar-day-font-size,16px)}.van-calendar__day--end,.van-calendar__day--multiple-middle,.van-calendar__day--multiple-selected,.van-calendar__day--start,.van-calendar__day--start-end{color:#fff;color:var(--calendar-range-edge-color,#fff);background-color:#ee0a24;background-color:var(--calendar-range-edge-background-color,#ee0a24)}.van-calendar__day--start{border-radius:4px 0 0 4px;border-radius:var(--border-radius-md,4px) 0 0 var(--border-radius-md,4px)}.van-calendar__day--end{border-radius:0 4px 4px 0;border-radius:0 var(--border-radius-md,4px) var(--border-radius-md,4px) 0}.van-calendar__day--multiple-selected,.van-calendar__day--start-end{border-radius:4px;border-radius:var(--border-radius-md,4px)}.van-calendar__day--middle{color:#ee0a24;color:var(--calendar-range-middle-color,#ee0a24)}.van-calendar__day--middle:after{position:absolute;top:0;right:0;bottom:0;left:0;background-color:currentColor;content:"";opacity:.1;opacity:var(--calendar-range-middle-background-opacity,.1)}.van-calendar__day--disabled{cursor:default;color:#c8c9cc;color:var(--calendar-day-disabled-color,#c8c9cc)}.van-calendar__bottom-info,.van-calendar__top-info{position:absolute;right:0;left:0;font-size:10px;font-size:var(--calendar-info-font-size,10px);line-height:14px;line-height:var(--calendar-info-line-height,14px)}@media (max-width:350px){.van-calendar__bottom-info,.van-calendar__top-info{font-size:9px}}.van-calendar__top-info{top:6px}.van-calendar__bottom-info{bottom:6px}.van-calendar__selected-day{width:54px;width:var(--calendar-selected-day-size,54px);height:54px;height:var(--calendar-selected-day-size,54px);color:#fff;color:var(--calendar-selected-day-color,#fff);background-color:#ee0a24;background-color:var(--calendar-selected-day-background-color,#ee0a24);border-radius:4px;border-radius:var(--border-radius-md,4px)} \ No newline at end of file diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/calendar/index.js" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/calendar/index.js" new file mode 100644 index 0000000000000000000000000000000000000000..1da8ee09c37ef352bb91a6fd8b6e77c11a6f5b15 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/calendar/index.js" @@ -0,0 +1,325 @@ +'use strict'; +var __spreadArrays = + (this && this.__spreadArrays) || + function () { + for (var s = 0, i = 0, il = arguments.length; i < il; i++) + s += arguments[i].length; + for (var r = Array(s), k = 0, i = 0; i < il; i++) + for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++) + r[k] = a[j]; + return r; + }; +var __importDefault = + (this && this.__importDefault) || + function (mod) { + return mod && mod.__esModule ? mod : { default: mod }; + }; +Object.defineProperty(exports, '__esModule', { value: true }); +var component_1 = require('../common/component'); +var utils_1 = require('./utils'); +var toast_1 = __importDefault(require('../toast/toast')); +var utils_2 = require('../common/utils'); +component_1.VantComponent({ + props: { + title: { + type: String, + value: '日期选择', + }, + color: String, + show: { + type: Boolean, + observer: function (val) { + if (val) { + this.initRect(); + this.scrollIntoView(); + } + }, + }, + formatter: null, + confirmText: { + type: String, + value: '确定', + }, + rangePrompt: String, + defaultDate: { + type: null, + observer: function (val) { + this.setData({ currentDate: val }); + this.scrollIntoView(); + }, + }, + allowSameDay: Boolean, + confirmDisabledText: String, + type: { + type: String, + value: 'single', + observer: 'reset', + }, + minDate: { + type: null, + value: Date.now(), + }, + maxDate: { + type: null, + value: new Date( + new Date().getFullYear(), + new Date().getMonth() + 6, + new Date().getDate() + ).getTime(), + }, + position: { + type: String, + value: 'bottom', + }, + rowHeight: { + type: null, + value: utils_1.ROW_HEIGHT, + }, + round: { + type: Boolean, + value: true, + }, + poppable: { + type: Boolean, + value: true, + }, + showMark: { + type: Boolean, + value: true, + }, + showTitle: { + type: Boolean, + value: true, + }, + showConfirm: { + type: Boolean, + value: true, + }, + showSubtitle: { + type: Boolean, + value: true, + }, + safeAreaInsetBottom: { + type: Boolean, + value: true, + }, + closeOnClickOverlay: { + type: Boolean, + value: true, + }, + maxRange: { + type: null, + value: null, + }, + }, + data: { + subtitle: '', + currentDate: null, + scrollIntoView: '', + }, + created: function () { + this.setData({ + currentDate: this.getInitialDate(), + }); + }, + mounted: function () { + if (this.data.show || !this.data.poppable) { + this.initRect(); + this.scrollIntoView(); + } + }, + methods: { + reset: function () { + this.setData({ currentDate: this.getInitialDate() }); + this.scrollIntoView(); + }, + initRect: function () { + var _this = this; + if (this.contentObserver != null) { + this.contentObserver.disconnect(); + } + var contentObserver = this.createIntersectionObserver({ + thresholds: [0, 0.1, 0.9, 1], + observeAll: true, + }); + this.contentObserver = contentObserver; + contentObserver.relativeTo('.van-calendar__body'); + contentObserver.observe('.month', function (res) { + if (res.boundingClientRect.top <= res.relativeRect.top) { + // @ts-ignore + _this.setData({ + subtitle: utils_1.formatMonthTitle(res.dataset.date), + }); + } + }); + }, + getInitialDate: function () { + var _a = this.data, + type = _a.type, + defaultDate = _a.defaultDate, + minDate = _a.minDate; + if (type === 'range') { + var _b = defaultDate || [], + startDay = _b[0], + endDay = _b[1]; + return [ + startDay || minDate, + endDay || utils_1.getNextDay(new Date(minDate)).getTime(), + ]; + } + if (type === 'multiple') { + return defaultDate || [minDate]; + } + return defaultDate || minDate; + }, + scrollIntoView: function () { + var _this = this; + utils_2.requestAnimationFrame(function () { + var _a = _this.data, + currentDate = _a.currentDate, + type = _a.type, + show = _a.show, + poppable = _a.poppable, + minDate = _a.minDate, + maxDate = _a.maxDate; + // @ts-ignore + var targetDate = type === 'single' ? currentDate : currentDate[0]; + var displayed = show || !poppable; + if (!targetDate || !displayed) { + return; + } + var months = utils_1.getMonths(minDate, maxDate); + months.some(function (month, index) { + if (utils_1.compareMonth(month, targetDate) === 0) { + _this.setData({ scrollIntoView: 'month' + index }); + return true; + } + return false; + }); + }); + }, + onOpen: function () { + this.$emit('open'); + }, + onOpened: function () { + this.$emit('opened'); + }, + onClose: function () { + this.$emit('close'); + }, + onClosed: function () { + this.$emit('closed'); + }, + onClickDay: function (event) { + var date = event.detail.date; + var _a = this.data, + type = _a.type, + currentDate = _a.currentDate, + allowSameDay = _a.allowSameDay; + if (type === 'range') { + // @ts-ignore + var startDay = currentDate[0], + endDay = currentDate[1]; + if (startDay && !endDay) { + var compareToStart = utils_1.compareDay(date, startDay); + if (compareToStart === 1) { + this.select([startDay, date], true); + } else if (compareToStart === -1) { + this.select([date, null]); + } else if (allowSameDay) { + this.select([date, date]); + } + } else { + this.select([date, null]); + } + } else if (type === 'multiple') { + var selectedIndex_1; + // @ts-ignore + var selected = currentDate.some(function (dateItem, index) { + var equal = utils_1.compareDay(dateItem, date) === 0; + if (equal) { + selectedIndex_1 = index; + } + return equal; + }); + if (selected) { + // @ts-ignore + var cancelDate = currentDate.splice(selectedIndex_1, 1); + this.setData({ currentDate: currentDate }); + this.unselect(cancelDate); + } else { + // @ts-ignore + this.select(__spreadArrays(currentDate, [date])); + } + } else { + this.select(date, true); + } + }, + unselect: function (dateArray) { + var date = dateArray[0]; + if (date) { + this.$emit('unselect', utils_1.copyDates(date)); + } + }, + select: function (date, complete) { + if (complete && this.data.type === 'range') { + var valid = this.checkRange(date); + if (!valid) { + // auto selected to max range if showConfirm + if (this.data.showConfirm) { + this.emit([ + date[0], + utils_1.getDayByOffset(date[0], this.data.maxRange - 1), + ]); + } else { + this.emit(date); + } + return; + } + } + this.emit(date); + if (complete && !this.data.showConfirm) { + this.onConfirm(); + } + }, + emit: function (date) { + var getTime = function (date) { + return date instanceof Date ? date.getTime() : date; + }; + this.setData({ + currentDate: Array.isArray(date) ? date.map(getTime) : getTime(date), + }); + this.$emit('select', utils_1.copyDates(date)); + }, + checkRange: function (date) { + var _a = this.data, + maxRange = _a.maxRange, + rangePrompt = _a.rangePrompt; + if (maxRange && utils_1.calcDateNum(date) > maxRange) { + toast_1.default({ + context: this, + message: + rangePrompt || + '\u9009\u62E9\u5929\u6570\u4E0D\u80FD\u8D85\u8FC7 ' + + maxRange + + ' \u5929', + }); + return false; + } + return true; + }, + onConfirm: function () { + var _this = this; + if ( + this.data.type === 'range' && + !this.checkRange(this.data.currentDate) + ) { + return; + } + wx.nextTick(function () { + // @ts-ignore + _this.$emit('confirm', utils_1.copyDates(_this.data.currentDate)); + }); + }, + }, +}); diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/calendar/index.json" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/calendar/index.json" new file mode 100644 index 0000000000000000000000000000000000000000..397d5aea19a5301358cd2dfc4b0e9a1879fe5b6f --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/calendar/index.json" @@ -0,0 +1,10 @@ +{ + "component": true, + "usingComponents": { + "header": "./components/header/index", + "month": "./components/month/index", + "van-button": "../button/index", + "van-popup": "../popup/index", + "van-toast": "../toast/index" + } +} diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/calendar/index.wxml" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/calendar/index.wxml" new file mode 100644 index 0000000000000000000000000000000000000000..7df0b980bc248ff3ef5d86aecccbe22bf231e41c --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/calendar/index.wxml" @@ -0,0 +1,25 @@ + + + + + + + + + + + + diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/calendar/index.wxs" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/calendar/index.wxs" new file mode 100644 index 0000000000000000000000000000000000000000..2c04be10f07bb4614ede2e80d3935191635d3831 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/calendar/index.wxs" @@ -0,0 +1,37 @@ +/* eslint-disable */ +var utils = require('./utils.wxs'); + +function getMonths(minDate, maxDate) { + var months = []; + var cursor = getDate(minDate); + + cursor.setDate(1); + + do { + months.push(cursor.getTime()); + cursor.setMonth(cursor.getMonth() + 1); + } while (utils.compareMonth(cursor, getDate(maxDate)) !== 1); + + return months; +} + +function getButtonDisabled(type, currentDate) { + if (currentDate == null) { + return true; + } + + if (type === 'range') { + return !currentDate[0] || !currentDate[1]; + } + + if (type === 'multiple') { + return !currentDate.length; + } + + return !currentDate; +} + +module.exports = { + getMonths: getMonths, + getButtonDisabled: getButtonDisabled +}; diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/calendar/index.wxss" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/calendar/index.wxss" new file mode 100644 index 0000000000000000000000000000000000000000..9d78e0f4be3971db4a709cab484ee70dd38e61ce --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/calendar/index.wxss" @@ -0,0 +1 @@ +@import '../common/index.wxss';.van-calendar{display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;height:100%;height:var(--calendar-height,100%);background-color:#fff;background-color:var(--calendar-background-color,#fff)}.van-calendar__close-icon{top:11px}.van-calendar__popup--bottom,.van-calendar__popup--top{height:80%;height:var(--calendar-popup-height,80%)}.van-calendar__popup--left,.van-calendar__popup--right{height:100%}.van-calendar__body{-webkit-flex:1;flex:1;overflow:auto;-webkit-overflow-scrolling:touch}.van-calendar__footer{-webkit-flex-shrink:0;flex-shrink:0;padding:0 16px;padding:0 var(--padding-md,16px)}.van-calendar__footer--safe-area-inset-bottom{padding-bottom:env(safe-area-inset-bottom)}.van-calendar__footer+.van-calendar__footer,.van-calendar__footer:empty{display:none}.van-calendar__footer:empty+.van-calendar__footer{display:block!important}.van-calendar__confirm{height:36px!important;height:var(--calendar-confirm-button-height,36px)!important;margin:7px 0!important;margin:var(--calendar-confirm-button-margin,7px 0)!important;line-height:34px!important;line-height:var(--calendar-confirm-button-line-height,34px)!important} \ No newline at end of file diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/calendar/utils.js" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/calendar/utils.js" new file mode 100644 index 0000000000000000000000000000000000000000..cdd1a0cb059a95f1da479b715a58ce4835b79991 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/calendar/utils.js" @@ -0,0 +1,91 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +exports.getMonths = exports.getMonthEndDay = exports.copyDates = exports.calcDateNum = exports.getNextDay = exports.getPrevDay = exports.getDayByOffset = exports.compareDay = exports.compareMonth = exports.formatMonthTitle = exports.ROW_HEIGHT = void 0; +exports.ROW_HEIGHT = 64; +function formatMonthTitle(date) { + if (!(date instanceof Date)) { + date = new Date(date); + } + return date.getFullYear() + '\u5E74' + (date.getMonth() + 1) + '\u6708'; +} +exports.formatMonthTitle = formatMonthTitle; +function compareMonth(date1, date2) { + if (!(date1 instanceof Date)) { + date1 = new Date(date1); + } + if (!(date2 instanceof Date)) { + date2 = new Date(date2); + } + var year1 = date1.getFullYear(); + var year2 = date2.getFullYear(); + var month1 = date1.getMonth(); + var month2 = date2.getMonth(); + if (year1 === year2) { + return month1 === month2 ? 0 : month1 > month2 ? 1 : -1; + } + return year1 > year2 ? 1 : -1; +} +exports.compareMonth = compareMonth; +function compareDay(day1, day2) { + if (!(day1 instanceof Date)) { + day1 = new Date(day1); + } + if (!(day2 instanceof Date)) { + day2 = new Date(day2); + } + var compareMonthResult = compareMonth(day1, day2); + if (compareMonthResult === 0) { + var date1 = day1.getDate(); + var date2 = day2.getDate(); + return date1 === date2 ? 0 : date1 > date2 ? 1 : -1; + } + return compareMonthResult; +} +exports.compareDay = compareDay; +function getDayByOffset(date, offset) { + date = new Date(date); + date.setDate(date.getDate() + offset); + return date; +} +exports.getDayByOffset = getDayByOffset; +function getPrevDay(date) { + return getDayByOffset(date, -1); +} +exports.getPrevDay = getPrevDay; +function getNextDay(date) { + return getDayByOffset(date, 1); +} +exports.getNextDay = getNextDay; +function calcDateNum(date) { + var day1 = new Date(date[0]).getTime(); + var day2 = new Date(date[1]).getTime(); + return (day2 - day1) / (1000 * 60 * 60 * 24) + 1; +} +exports.calcDateNum = calcDateNum; +function copyDates(dates) { + if (Array.isArray(dates)) { + return dates.map(function (date) { + if (date === null) { + return date; + } + return new Date(date); + }); + } + return new Date(dates); +} +exports.copyDates = copyDates; +function getMonthEndDay(year, month) { + return 32 - new Date(year, month - 1, 32).getDate(); +} +exports.getMonthEndDay = getMonthEndDay; +function getMonths(minDate, maxDate) { + var months = []; + var cursor = new Date(minDate); + cursor.setDate(1); + do { + months.push(cursor.getTime()); + cursor.setMonth(cursor.getMonth() + 1); + } while (compareMonth(cursor, maxDate) !== 1); + return months; +} +exports.getMonths = getMonths; diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/calendar/utils.wxs" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/calendar/utils.wxs" new file mode 100644 index 0000000000000000000000000000000000000000..e57f6b32befa9e3bc9f925189eb29c9b49e0a9af --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/calendar/utils.wxs" @@ -0,0 +1,25 @@ +/* eslint-disable */ +function getMonthEndDay(year, month) { + return 32 - getDate(year, month - 1, 32).getDate(); +} + +function compareMonth(date1, date2) { + date1 = getDate(date1); + date2 = getDate(date2); + + var year1 = date1.getFullYear(); + var year2 = date2.getFullYear(); + var month1 = date1.getMonth(); + var month2 = date2.getMonth(); + + if (year1 === year2) { + return month1 === month2 ? 0 : month1 > month2 ? 1 : -1; + } + + return year1 > year2 ? 1 : -1; +} + +module.exports = { + getMonthEndDay: getMonthEndDay, + compareMonth: compareMonth +}; diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/card/index.js" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/card/index.js" new file mode 100644 index 0000000000000000000000000000000000000000..cb0f98273ba3f6ea8d06c863ecdd49ab4cdfa69a --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/card/index.js" @@ -0,0 +1,51 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var link_1 = require('../mixins/link'); +var component_1 = require('../common/component'); +component_1.VantComponent({ + classes: [ + 'num-class', + 'desc-class', + 'thumb-class', + 'title-class', + 'price-class', + 'origin-price-class', + ], + mixins: [link_1.link], + props: { + tag: String, + num: String, + desc: String, + thumb: String, + title: String, + price: { + type: String, + observer: 'updatePrice', + }, + centered: Boolean, + lazyLoad: Boolean, + thumbLink: String, + originPrice: String, + thumbMode: { + type: String, + value: 'aspectFit', + }, + currency: { + type: String, + value: '¥', + }, + }, + methods: { + updatePrice: function () { + var price = this.data.price; + var priceArr = price.toString().split('.'); + this.setData({ + integerStr: priceArr[0], + decimalStr: priceArr[1] ? '.' + priceArr[1] : '', + }); + }, + onClickThumb: function () { + this.jumpLink('thumbLink'); + }, + }, +}); diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/card/index.json" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/card/index.json" new file mode 100644 index 0000000000000000000000000000000000000000..e917407692d20b91dbe066e7e198db5e93ae474a --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/card/index.json" @@ -0,0 +1,6 @@ +{ + "component": true, + "usingComponents": { + "van-tag": "../tag/index" + } +} diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/card/index.wxml" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/card/index.wxml" new file mode 100644 index 0000000000000000000000000000000000000000..62173e4a0de699496f5a9745bfdd8161d0a5f02e --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/card/index.wxml" @@ -0,0 +1,56 @@ + + + + + + + + + {{ tag }} + + + + + + + {{ title }} + + + {{ desc }} + + + + + + + + + {{ currency }} + {{ integerStr }} + {{ decimalStr }} + + + {{ currency }} {{ originPrice }} + + x {{ num }} + + + + + + + + + + diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/card/index.wxss" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/card/index.wxss" new file mode 100644 index 0000000000000000000000000000000000000000..a21a5995810a30a1ba04a92fcd830d1b79b32ee6 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/card/index.wxss" @@ -0,0 +1 @@ +@import '../common/index.wxss';.van-card{position:relative;box-sizing:border-box;padding:8px 16px;padding:var(--card-padding,8px 16px);font-size:12px;font-size:var(--card-font-size,12px);color:#323233;color:var(--card-text-color,#323233);background-color:#fafafa;background-color:var(--card-background-color,#fafafa)}.van-card__header{display:-webkit-flex;display:flex}.van-card__header--center{-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center}.van-card__thumb{position:relative;-webkit-flex:none;flex:none;width:88px;width:var(--card-thumb-size,88px);height:88px;height:var(--card-thumb-size,88px);margin-right:8px;margin-right:var(--padding-xs,8px)}.van-card__thumb:empty{display:none}.van-card__img{width:100%;height:100%;border-radius:8px;border-radius:var(--border-radius-lg,8px)}.van-card__content{position:relative;display:-webkit-flex;display:flex;-webkit-flex:1;flex:1;-webkit-flex-direction:column;flex-direction:column;-webkit-justify-content:space-between;justify-content:space-between;min-width:0;min-height:88px;min-height:var(--card-thumb-size,88px)}.van-card__content--center{-webkit-justify-content:center;justify-content:center}.van-card__desc,.van-card__title{word-wrap:break-word}.van-card__title{font-weight:700;line-height:16px;line-height:var(--card-title-line-height,16px)}.van-card__desc{line-height:20px;line-height:var(--card-desc-line-height,20px);color:#646566;color:var(--card-desc-color,#646566)}.van-card__bottom{line-height:20px}.van-card__price{display:inline-block;font-weight:700;color:#ee0a24;color:var(--card-price-color,#ee0a24);font-size:12px;font-size:var(--card-price-font-size,12px)}.van-card__price-integer{font-size:16px;font-size:var(--card-price-integer-font-size,16px)}.van-card__price-decimal,.van-card__price-integer{font-family:Avenir-Heavy,PingFang SC,Helvetica Neue,Arial,sans-serif;font-family:var(--card-price-font-family,Avenir-Heavy,PingFang SC,Helvetica Neue,Arial,sans-serif)}.van-card__origin-price{display:inline-block;margin-left:5px;text-decoration:line-through;font-size:10px;font-size:var(--card-origin-price-font-size,10px);color:#646566;color:var(--card-origin-price-color,#646566)}.van-card__num{float:right}.van-card__tag{position:absolute!important;top:2px;left:0}.van-card__footer{-webkit-flex:none;flex:none;width:100%;text-align:right} \ No newline at end of file diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/cell-group/index.js" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/cell-group/index.js" new file mode 100644 index 0000000000000000000000000000000000000000..7d9348708d7c2e7534cebcb7f1e51ce2060fc730 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/cell-group/index.js" @@ -0,0 +1,12 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var component_1 = require('../common/component'); +component_1.VantComponent({ + props: { + title: String, + border: { + type: Boolean, + value: true, + }, + }, +}); diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/cell-group/index.json" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/cell-group/index.json" new file mode 100644 index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/cell-group/index.json" @@ -0,0 +1,3 @@ +{ + "component": true +} diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/cell-group/index.wxml" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/cell-group/index.wxml" new file mode 100644 index 0000000000000000000000000000000000000000..6e0b471df92a41a2110e7481263f539a5d69430d --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/cell-group/index.wxml" @@ -0,0 +1,9 @@ + + {{ title }} + + + + diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/cell-group/index.wxss" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/cell-group/index.wxss" new file mode 100644 index 0000000000000000000000000000000000000000..edbccd5958c63dccfd0b9c3a53630e63d1ef483c --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/cell-group/index.wxss" @@ -0,0 +1 @@ +@import '../common/index.wxss';.van-cell-group__title{padding:16px 16px 8px;padding:var(--cell-group-title-padding,16px 16px 8px);font-size:14px;font-size:var(--cell-group-title-font-size,14px);line-height:16px;line-height:var(--cell-group-title-line-height,16px);color:#969799;color:var(--cell-group-title-color,#969799)} \ No newline at end of file diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/cell/index.js" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/cell/index.js" new file mode 100644 index 0000000000000000000000000000000000000000..7a18c9f2979329e3d0cf3734a05b424ab28b5ccc --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/cell/index.js" @@ -0,0 +1,40 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var link_1 = require('../mixins/link'); +var component_1 = require('../common/component'); +component_1.VantComponent({ + classes: [ + 'title-class', + 'label-class', + 'value-class', + 'right-icon-class', + 'hover-class', + ], + mixins: [link_1.link], + props: { + title: null, + value: null, + icon: String, + size: String, + label: String, + center: Boolean, + isLink: Boolean, + required: Boolean, + clickable: Boolean, + titleWidth: String, + customStyle: String, + arrowDirection: String, + useLabelSlot: Boolean, + border: { + type: Boolean, + value: true, + }, + titleStyle: String, + }, + methods: { + onClick: function (event) { + this.$emit('click', event.detail); + this.jumpLink(); + }, + }, +}); diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/cell/index.json" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/cell/index.json" new file mode 100644 index 0000000000000000000000000000000000000000..0a336c083ec7c8f87af66097dd241c13b3f6dc2e --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/cell/index.json" @@ -0,0 +1,6 @@ +{ + "component": true, + "usingComponents": { + "van-icon": "../icon/index" + } +} diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/cell/index.wxml" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/cell/index.wxml" new file mode 100644 index 0000000000000000000000000000000000000000..7d7d746d9438008349a339a86784f4c338c258b8 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/cell/index.wxml" @@ -0,0 +1,46 @@ + + + + + + + + + {{ title }} + + + + + {{ label }} + + + + + {{ value }} + + + + + + + + diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/cell/index.wxs" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/cell/index.wxs" new file mode 100644 index 0000000000000000000000000000000000000000..e3500c4343687b5618af3dec95496cef26f53ed4 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/cell/index.wxs" @@ -0,0 +1,17 @@ +/* eslint-disable */ +var style = require('../wxs/style.wxs'); +var addUnit = require('../wxs/add-unit.wxs'); + +function titleStyle(data) { + return style([ + { + 'max-width': addUnit(data.titleWidth), + 'min-width': addUnit(data.titleWidth), + }, + data.titleStyle, + ]); +} + +module.exports = { + titleStyle: titleStyle, +}; diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/cell/index.wxss" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/cell/index.wxss" new file mode 100644 index 0000000000000000000000000000000000000000..605570db7dd8b26f23fb33fe3e8ca8a312e2d559 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/cell/index.wxss" @@ -0,0 +1 @@ +@import '../common/index.wxss';.van-cell{position:relative;display:-webkit-flex;display:flex;box-sizing:border-box;width:100%;padding:10px 16px;padding:var(--cell-vertical-padding,10px) var(--cell-horizontal-padding,16px);font-size:14px;font-size:var(--cell-font-size,14px);line-height:24px;line-height:var(--cell-line-height,24px);color:#323233;color:var(--cell-text-color,#323233);background-color:#fff;background-color:var(--cell-background-color,#fff)}.van-cell:after{position:absolute;box-sizing:border-box;-webkit-transform-origin:center;transform-origin:center;content:" ";pointer-events:none;right:16px;bottom:0;left:16px;border-bottom:1px solid #ebedf0;-webkit-transform:scaleY(.5);transform:scaleY(.5)}.van-cell--borderless:after{display:none}.van-cell-group{background-color:#fff;background-color:var(--cell-background-color,#fff)}.van-cell__label{margin-top:3px;margin-top:var(--cell-label-margin-top,3px);font-size:12px;font-size:var(--cell-label-font-size,12px);line-height:18px;line-height:var(--cell-label-line-height,18px);color:#969799;color:var(--cell-label-color,#969799)}.van-cell__value{overflow:hidden;text-align:right;vertical-align:middle;color:#969799;color:var(--cell-value-color,#969799)}.van-cell__title,.van-cell__value{-webkit-flex:1;flex:1}.van-cell__title:empty,.van-cell__value:empty{display:none}.van-cell__left-icon-wrap,.van-cell__right-icon-wrap{display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;height:24px;height:var(--cell-line-height,24px);font-size:16px;font-size:var(--cell-icon-size,16px)}.van-cell__left-icon-wrap{margin-right:4px;margin-right:var(--padding-base,4px)}.van-cell__right-icon-wrap{margin-left:4px;margin-left:var(--padding-base,4px);color:#969799;color:var(--cell-right-icon-color,#969799)}.van-cell__left-icon{vertical-align:middle}.van-cell__left-icon,.van-cell__right-icon{line-height:24px;line-height:var(--cell-line-height,24px)}.van-cell--clickable.van-cell--hover{background-color:#f2f3f5;background-color:var(--cell-active-color,#f2f3f5)}.van-cell--required{overflow:visible}.van-cell--required:before{position:absolute;content:"*";left:8px;left:var(--padding-xs,8px);font-size:14px;font-size:var(--cell-font-size,14px);color:#ee0a24;color:var(--cell-required-color,#ee0a24)}.van-cell--center{-webkit-align-items:center;align-items:center}.van-cell--large{padding-top:12px;padding-top:var(--cell-large-vertical-padding,12px);padding-bottom:12px;padding-bottom:var(--cell-large-vertical-padding,12px)}.van-cell--large .van-cell__title{font-size:16px;font-size:var(--cell-large-title-font-size,16px)}.van-cell--large .van-cell__value{font-size:16px;font-size:var(--cell-large-value-font-size,16px)}.van-cell--large .van-cell__label{font-size:14px;font-size:var(--cell-large-label-font-size,14px)} \ No newline at end of file diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/checkbox-group/index.js" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/checkbox-group/index.js" new file mode 100644 index 0000000000000000000000000000000000000000..1c8016a6345cb2289c3ae80f6e9937ee0269a406 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/checkbox-group/index.js" @@ -0,0 +1,38 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var relation_1 = require('../common/relation'); +var component_1 = require('../common/component'); +component_1.VantComponent({ + field: true, + relation: relation_1.useChildren('checkbox', function (target) { + this.updateChild(target); + }), + props: { + max: Number, + value: { + type: Array, + observer: 'updateChildren', + }, + disabled: { + type: Boolean, + observer: 'updateChildren', + }, + }, + methods: { + updateChildren: function () { + var _this = this; + this.children.forEach(function (child) { + return _this.updateChild(child); + }); + }, + updateChild: function (child) { + var _a = this.data, + value = _a.value, + disabled = _a.disabled; + child.setData({ + value: value.indexOf(child.data.name) !== -1, + parentDisabled: disabled, + }); + }, + }, +}); diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/checkbox-group/index.json" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/checkbox-group/index.json" new file mode 100644 index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/checkbox-group/index.json" @@ -0,0 +1,3 @@ +{ + "component": true +} diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/checkbox-group/index.wxml" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/checkbox-group/index.wxml" new file mode 100644 index 0000000000000000000000000000000000000000..4fa864ce7aa9d8b620269649779b40fda753c36f --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/checkbox-group/index.wxml" @@ -0,0 +1 @@ + diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/checkbox-group/index.wxss" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/checkbox-group/index.wxss" new file mode 100644 index 0000000000000000000000000000000000000000..99694d603361421fe8f1acfc76a09eae443cb3aa --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/checkbox-group/index.wxss" @@ -0,0 +1 @@ +@import '../common/index.wxss'; \ No newline at end of file diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/checkbox/index.js" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/checkbox/index.js" new file mode 100644 index 0000000000000000000000000000000000000000..7b9598bbd04ed65c39de6d2ea8b0b47beb149f74 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/checkbox/index.js" @@ -0,0 +1,83 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var relation_1 = require('../common/relation'); +var component_1 = require('../common/component'); +function emit(target, value) { + target.$emit('input', value); + target.$emit('change', value); +} +component_1.VantComponent({ + field: true, + relation: relation_1.useParent('checkbox-group'), + classes: ['icon-class', 'label-class'], + props: { + value: Boolean, + disabled: Boolean, + useIconSlot: Boolean, + checkedColor: String, + labelPosition: { + type: String, + value: 'right', + }, + labelDisabled: Boolean, + shape: { + type: String, + value: 'round', + }, + iconSize: { + type: null, + value: 20, + }, + }, + data: { + parentDisabled: false, + }, + methods: { + emitChange: function (value) { + if (this.parent) { + this.setParentValue(this.parent, value); + } else { + emit(this, value); + } + }, + toggle: function () { + var _a = this.data, + parentDisabled = _a.parentDisabled, + disabled = _a.disabled, + value = _a.value; + if (!disabled && !parentDisabled) { + this.emitChange(!value); + } + }, + onClickLabel: function () { + var _a = this.data, + labelDisabled = _a.labelDisabled, + parentDisabled = _a.parentDisabled, + disabled = _a.disabled, + value = _a.value; + if (!disabled && !labelDisabled && !parentDisabled) { + this.emitChange(!value); + } + }, + setParentValue: function (parent, value) { + var parentValue = parent.data.value.slice(); + var name = this.data.name; + var max = parent.data.max; + if (value) { + if (max && parentValue.length >= max) { + return; + } + if (parentValue.indexOf(name) === -1) { + parentValue.push(name); + emit(parent, parentValue); + } + } else { + var index = parentValue.indexOf(name); + if (index !== -1) { + parentValue.splice(index, 1); + emit(parent, parentValue); + } + } + }, + }, +}); diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/checkbox/index.json" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/checkbox/index.json" new file mode 100644 index 0000000000000000000000000000000000000000..0a336c083ec7c8f87af66097dd241c13b3f6dc2e --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/checkbox/index.json" @@ -0,0 +1,6 @@ +{ + "component": true, + "usingComponents": { + "van-icon": "../icon/index" + } +} diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/checkbox/index.wxml" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/checkbox/index.wxml" new file mode 100644 index 0000000000000000000000000000000000000000..0c008d812285c5e9e5d122e371387042e02991c7 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/checkbox/index.wxml" @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/checkbox/index.wxs" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/checkbox/index.wxs" new file mode 100644 index 0000000000000000000000000000000000000000..eb9c7726312ae65433806cd8c9b3c3f44f205377 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/checkbox/index.wxs" @@ -0,0 +1,20 @@ +/* eslint-disable */ +var style = require('../wxs/style.wxs'); +var addUnit = require('../wxs/add-unit.wxs'); + +function iconStyle(checkedColor, value, disabled, parentDisabled, iconSize) { + var styles = { + 'font-size': addUnit(iconSize), + }; + + if (checkedColor && value && !disabled && !parentDisabled) { + styles['border-color'] = checkedColor; + styles['background-color'] = checkedColor; + } + + return style(styles); +} + +module.exports = { + iconStyle: iconStyle, +}; diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/checkbox/index.wxss" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/checkbox/index.wxss" new file mode 100644 index 0000000000000000000000000000000000000000..afaf37bec1fdd0db46f6e8521e46a44f07e8cb1f --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/checkbox/index.wxss" @@ -0,0 +1 @@ +@import '../common/index.wxss';.van-checkbox{display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;overflow:hidden;-webkit-user-select:none;user-select:none}.van-checkbox__icon-wrap,.van-checkbox__label{line-height:20px;line-height:var(--checkbox-size,20px)}.van-checkbox__icon-wrap{-webkit-flex:none;flex:none}.van-checkbox__icon{display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center;box-sizing:border-box;width:1em;height:1em;color:transparent;text-align:center;transition-property:color,border-color,background-color;font-size:20px;font-size:var(--checkbox-size,20px);border:1px solid #c8c9cc;border:1px solid var(--checkbox-border-color,#c8c9cc);transition-duration:.2s;transition-duration:var(--checkbox-transition-duration,.2s)}.van-checkbox__icon--round{border-radius:100%}.van-checkbox__icon--checked{color:#fff;color:var(--white,#fff);background-color:#1989fa;background-color:var(--checkbox-checked-icon-color,#1989fa);border-color:#1989fa;border-color:var(--checkbox-checked-icon-color,#1989fa)}.van-checkbox__icon--disabled{background-color:#ebedf0;background-color:var(--checkbox-disabled-background-color,#ebedf0);border-color:#c8c9cc;border-color:var(--checkbox-disabled-icon-color,#c8c9cc)}.van-checkbox__icon--disabled.van-checkbox__icon--checked{color:#c8c9cc;color:var(--checkbox-disabled-icon-color,#c8c9cc)}.van-checkbox__label{word-wrap:break-word;margin-left:10px;margin-left:var(--checkbox-label-margin,10px);color:#323233;color:var(--checkbox-label-color,#323233)}.van-checkbox__label--left{float:left;margin:0 10px 0 0;margin:0 var(--checkbox-label-margin,10px) 0 0}.van-checkbox__label--disabled{color:#c8c9cc;color:var(--checkbox-disabled-label-color,#c8c9cc)}.van-checkbox__label:empty{margin:0} \ No newline at end of file diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/circle/canvas.js" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/circle/canvas.js" new file mode 100644 index 0000000000000000000000000000000000000000..dbee1d732219170fad7c0ad0d3aed7134dd450b8 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/circle/canvas.js" @@ -0,0 +1,47 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +exports.adaptor = void 0; +function adaptor(ctx) { + // @ts-ignore + return Object.assign(ctx, { + setStrokeStyle: function (val) { + ctx.strokeStyle = val; + }, + setLineWidth: function (val) { + ctx.lineWidth = val; + }, + setLineCap: function (val) { + ctx.lineCap = val; + }, + setFillStyle: function (val) { + ctx.fillStyle = val; + }, + setFontSize: function (val) { + ctx.font = String(val); + }, + setGlobalAlpha: function (val) { + ctx.globalAlpha = val; + }, + setLineJoin: function (val) { + ctx.lineJoin = val; + }, + setTextAlign: function (val) { + ctx.textAlign = val; + }, + setMiterLimit: function (val) { + ctx.miterLimit = val; + }, + setShadow: function (offsetX, offsetY, blur, color) { + ctx.shadowOffsetX = offsetX; + ctx.shadowOffsetY = offsetY; + ctx.shadowBlur = blur; + ctx.shadowColor = color; + }, + setTextBaseline: function (val) { + ctx.textBaseline = val; + }, + createCircularGradient: function () {}, + draw: function () {}, + }); +} +exports.adaptor = adaptor; diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/circle/index.js" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/circle/index.js" new file mode 100644 index 0000000000000000000000000000000000000000..13b90b32943b9c582c9bf72411397a9ab6337cb9 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/circle/index.js" @@ -0,0 +1,211 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var color_1 = require('../common/color'); +var component_1 = require('../common/component'); +var utils_1 = require('../common/utils'); +var validator_1 = require('../common/validator'); +var version_1 = require('../common/version'); +var canvas_1 = require('./canvas'); +function format(rate) { + return Math.min(Math.max(rate, 0), 100); +} +var PERIMETER = 2 * Math.PI; +var BEGIN_ANGLE = -Math.PI / 2; +var STEP = 1; +component_1.VantComponent({ + props: { + text: String, + lineCap: { + type: String, + value: 'round', + }, + value: { + type: Number, + value: 0, + observer: 'reRender', + }, + speed: { + type: Number, + value: 50, + }, + size: { + type: Number, + value: 100, + observer: function () { + this.drawCircle(this.currentValue); + }, + }, + fill: String, + layerColor: { + type: String, + value: color_1.WHITE, + }, + color: { + type: null, + value: color_1.BLUE, + observer: function () { + var _this = this; + this.setHoverColor().then(function () { + _this.drawCircle(_this.currentValue); + }); + }, + }, + type: { + type: String, + value: '', + }, + strokeWidth: { + type: Number, + value: 4, + }, + clockwise: { + type: Boolean, + value: true, + }, + }, + data: { + hoverColor: color_1.BLUE, + }, + methods: { + getContext: function () { + var _this = this; + var _a = this.data, + type = _a.type, + size = _a.size; + if (type === '' || !version_1.canIUseCanvas2d()) { + var ctx = wx.createCanvasContext('van-circle', this); + return Promise.resolve(ctx); + } + var dpr = utils_1.getSystemInfoSync().pixelRatio; + return new Promise(function (resolve) { + wx.createSelectorQuery() + .in(_this) + .select('#van-circle') + .node() + .exec(function (res) { + var canvas = res[0].node; + var ctx = canvas.getContext(type); + if (!_this.inited) { + _this.inited = true; + canvas.width = size * dpr; + canvas.height = size * dpr; + ctx.scale(dpr, dpr); + } + resolve(canvas_1.adaptor(ctx)); + }); + }); + }, + setHoverColor: function () { + var _this = this; + var _a = this.data, + color = _a.color, + size = _a.size; + if (validator_1.isObj(color)) { + return this.getContext().then(function (context) { + var LinearColor = context.createLinearGradient(size, 0, 0, 0); + Object.keys(color) + .sort(function (a, b) { + return parseFloat(a) - parseFloat(b); + }) + .map(function (key) { + return LinearColor.addColorStop( + parseFloat(key) / 100, + color[key] + ); + }); + _this.hoverColor = LinearColor; + }); + } + this.hoverColor = color; + return Promise.resolve(); + }, + presetCanvas: function (context, strokeStyle, beginAngle, endAngle, fill) { + var _a = this.data, + strokeWidth = _a.strokeWidth, + lineCap = _a.lineCap, + clockwise = _a.clockwise, + size = _a.size; + var position = size / 2; + var radius = position - strokeWidth / 2; + context.setStrokeStyle(strokeStyle); + context.setLineWidth(strokeWidth); + context.setLineCap(lineCap); + context.beginPath(); + context.arc(position, position, radius, beginAngle, endAngle, !clockwise); + context.stroke(); + if (fill) { + context.setFillStyle(fill); + context.fill(); + } + }, + renderLayerCircle: function (context) { + var _a = this.data, + layerColor = _a.layerColor, + fill = _a.fill; + this.presetCanvas(context, layerColor, 0, PERIMETER, fill); + }, + renderHoverCircle: function (context, formatValue) { + var clockwise = this.data.clockwise; + // 结束角度 + var progress = PERIMETER * (formatValue / 100); + var endAngle = clockwise + ? BEGIN_ANGLE + progress + : 3 * Math.PI - (BEGIN_ANGLE + progress); + this.presetCanvas(context, this.hoverColor, BEGIN_ANGLE, endAngle); + }, + drawCircle: function (currentValue) { + var _this = this; + var size = this.data.size; + this.getContext().then(function (context) { + context.clearRect(0, 0, size, size); + _this.renderLayerCircle(context); + var formatValue = format(currentValue); + if (formatValue !== 0) { + _this.renderHoverCircle(context, formatValue); + } + context.draw(); + }); + }, + reRender: function () { + var _this = this; + // tofector 动画暂时没有想到好的解决方案 + var _a = this.data, + value = _a.value, + speed = _a.speed; + if (speed <= 0 || speed > 1000) { + this.drawCircle(value); + return; + } + this.clearInterval(); + this.currentValue = this.currentValue || 0; + this.interval = setInterval(function () { + if (_this.currentValue !== value) { + if (_this.currentValue < value) { + _this.currentValue += STEP; + } else { + _this.currentValue -= STEP; + } + _this.drawCircle(_this.currentValue); + } else { + _this.clearInterval(); + } + }, 1000 / speed); + }, + clearInterval: function () { + if (this.interval) { + clearInterval(this.interval); + this.interval = null; + } + }, + }, + mounted: function () { + var _this = this; + this.currentValue = this.data.value; + this.setHoverColor().then(function () { + _this.drawCircle(_this.currentValue); + }); + }, + destroyed: function () { + this.clearInterval(); + }, +}); diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/circle/index.json" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/circle/index.json" new file mode 100644 index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/circle/index.json" @@ -0,0 +1,3 @@ +{ + "component": true +} diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/circle/index.wxml" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/circle/index.wxml" new file mode 100644 index 0000000000000000000000000000000000000000..52bc59fca8e6057621f0d3eb8807e1442fde3bb1 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/circle/index.wxml" @@ -0,0 +1,9 @@ + + + + + + + + {{ text }} + diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/circle/index.wxss" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/circle/index.wxss" new file mode 100644 index 0000000000000000000000000000000000000000..3ab63dfd1e7220e500bd44170a7368236f93949d --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/circle/index.wxss" @@ -0,0 +1 @@ +@import '../common/index.wxss';.van-circle{position:relative;display:inline-block;text-align:center}.van-circle__text{position:absolute;top:50%;left:0;width:100%;-webkit-transform:translateY(-50%);transform:translateY(-50%);color:#323233;color:var(--circle-text-color,#323233)} \ No newline at end of file diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/col/index.js" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/col/index.js" new file mode 100644 index 0000000000000000000000000000000000000000..a33c44b9b095acbc1a5c2ebf16acbc04a525d696 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/col/index.js" @@ -0,0 +1,11 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var relation_1 = require('../common/relation'); +var component_1 = require('../common/component'); +component_1.VantComponent({ + relation: relation_1.useParent('row'), + props: { + span: Number, + offset: Number, + }, +}); diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/col/index.json" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/col/index.json" new file mode 100644 index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/col/index.json" @@ -0,0 +1,3 @@ +{ + "component": true +} diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/col/index.wxml" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/col/index.wxml" new file mode 100644 index 0000000000000000000000000000000000000000..975348b6e1a37c2e2d914a85be8a1d644cb8b49c --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/col/index.wxml" @@ -0,0 +1,9 @@ + + + + + + diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/col/index.wxs" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/col/index.wxs" new file mode 100644 index 0000000000000000000000000000000000000000..507c1cb9b8e27624f7eb018741aea72ca2df1c16 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/col/index.wxs" @@ -0,0 +1,18 @@ +/* eslint-disable */ +var style = require('../wxs/style.wxs'); +var addUnit = require('../wxs/add-unit.wxs'); + +function rootStyle(data) { + if (!data.gutter) { + return ''; + } + + return style({ + 'padding-right': addUnit(data.gutter / 2), + 'padding-left': addUnit(data.gutter / 2), + }); +} + +module.exports = { + rootStyle: rootStyle, +}; diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/col/index.wxss" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/col/index.wxss" new file mode 100644 index 0000000000000000000000000000000000000000..44c896a3ea71de650188e5d7c02ac697db680110 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/col/index.wxss" @@ -0,0 +1 @@ +@import '../common/index.wxss';.van-col{float:left;box-sizing:border-box}.van-col--1{width:4.16666667%}.van-col--offset-1{margin-left:4.16666667%}.van-col--2{width:8.33333333%}.van-col--offset-2{margin-left:8.33333333%}.van-col--3{width:12.5%}.van-col--offset-3{margin-left:12.5%}.van-col--4{width:16.66666667%}.van-col--offset-4{margin-left:16.66666667%}.van-col--5{width:20.83333333%}.van-col--offset-5{margin-left:20.83333333%}.van-col--6{width:25%}.van-col--offset-6{margin-left:25%}.van-col--7{width:29.16666667%}.van-col--offset-7{margin-left:29.16666667%}.van-col--8{width:33.33333333%}.van-col--offset-8{margin-left:33.33333333%}.van-col--9{width:37.5%}.van-col--offset-9{margin-left:37.5%}.van-col--10{width:41.66666667%}.van-col--offset-10{margin-left:41.66666667%}.van-col--11{width:45.83333333%}.van-col--offset-11{margin-left:45.83333333%}.van-col--12{width:50%}.van-col--offset-12{margin-left:50%}.van-col--13{width:54.16666667%}.van-col--offset-13{margin-left:54.16666667%}.van-col--14{width:58.33333333%}.van-col--offset-14{margin-left:58.33333333%}.van-col--15{width:62.5%}.van-col--offset-15{margin-left:62.5%}.van-col--16{width:66.66666667%}.van-col--offset-16{margin-left:66.66666667%}.van-col--17{width:70.83333333%}.van-col--offset-17{margin-left:70.83333333%}.van-col--18{width:75%}.van-col--offset-18{margin-left:75%}.van-col--19{width:79.16666667%}.van-col--offset-19{margin-left:79.16666667%}.van-col--20{width:83.33333333%}.van-col--offset-20{margin-left:83.33333333%}.van-col--21{width:87.5%}.van-col--offset-21{margin-left:87.5%}.van-col--22{width:91.66666667%}.van-col--offset-22{margin-left:91.66666667%}.van-col--23{width:95.83333333%}.van-col--offset-23{margin-left:95.83333333%}.van-col--24{width:100%}.van-col--offset-24{margin-left:100%} \ No newline at end of file diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/collapse-item/animate.js" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/collapse-item/animate.js" new file mode 100644 index 0000000000000000000000000000000000000000..43173837a4a02a2e681a7f368f244cd64ef22541 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/collapse-item/animate.js" @@ -0,0 +1,77 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +exports.setContentAnimate = void 0; +var version_1 = require('../common/version'); +var utils_1 = require('../common/utils'); +function useAnimate(context, expanded, mounted, height) { + var selector = '.van-collapse-item__wrapper'; + if (expanded) { + context.animate( + selector, + [ + { height: 0, ease: 'ease-in-out', offset: 0 }, + { height: height + 'px', ease: 'ease-in-out', offset: 1 }, + { height: 'auto', ease: 'ease-in-out', offset: 1 }, + ], + mounted ? 300 : 0, + function () { + context.clearAnimation(selector); + } + ); + return; + } + context.animate( + selector, + [ + { height: height + 'px', ease: 'ease-in-out', offset: 0 }, + { height: 0, ease: 'ease-in-out', offset: 1 }, + ], + 300, + function () { + context.clearAnimation(selector); + } + ); +} +function useAnimation(context, expanded, mounted, height) { + var animation = wx.createAnimation({ + duration: 0, + timingFunction: 'ease-in-out', + }); + if (expanded) { + if (height === 0) { + animation.height('auto').top(1).step(); + } else { + animation + .height(height) + .top(1) + .step({ + duration: mounted ? 300 : 1, + }) + .height('auto') + .step(); + } + context.setData({ + animation: animation.export(), + }); + return; + } + animation.height(height).top(0).step({ duration: 1 }).height(0).step({ + duration: 300, + }); + context.setData({ + animation: animation.export(), + }); +} +function setContentAnimate(context, expanded, mounted) { + utils_1 + .getRect(context, '.van-collapse-item__content') + .then(function (rect) { + return rect.height; + }) + .then(function (height) { + version_1.canIUseAnimate() + ? useAnimate(context, expanded, mounted, height) + : useAnimation(context, expanded, mounted, height); + }); +} +exports.setContentAnimate = setContentAnimate; diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/collapse-item/index.js" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/collapse-item/index.js" new file mode 100644 index 0000000000000000000000000000000000000000..b30315cf92c3b4a8a608daac926c74ee10b08295 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/collapse-item/index.js" @@ -0,0 +1,68 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var component_1 = require('../common/component'); +var relation_1 = require('../common/relation'); +var animate_1 = require('./animate'); +component_1.VantComponent({ + classes: ['title-class', 'content-class'], + relation: relation_1.useParent('collapse'), + props: { + name: null, + title: null, + value: null, + icon: String, + label: String, + disabled: Boolean, + clickable: Boolean, + border: { + type: Boolean, + value: true, + }, + isLink: { + type: Boolean, + value: true, + }, + }, + data: { + expanded: false, + }, + mounted: function () { + this.updateExpanded(); + this.mounted = true; + }, + methods: { + updateExpanded: function () { + if (!this.parent) { + return; + } + var _a = this.parent.data, + value = _a.value, + accordion = _a.accordion; + var _b = this.parent.children, + children = _b === void 0 ? [] : _b; + var name = this.data.name; + var index = children.indexOf(this); + var currentName = name == null ? index : name; + var expanded = accordion + ? value === currentName + : (value || []).some(function (name) { + return name === currentName; + }); + if (expanded !== this.data.expanded) { + animate_1.setContentAnimate(this, expanded, this.mounted); + } + this.setData({ index: index, expanded: expanded }); + }, + onClick: function () { + if (this.data.disabled) { + return; + } + var _a = this.data, + name = _a.name, + expanded = _a.expanded; + var index = this.parent.children.indexOf(this); + var currentName = name == null ? index : name; + this.parent.switch(currentName, !expanded); + }, + }, +}); diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/collapse-item/index.json" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/collapse-item/index.json" new file mode 100644 index 0000000000000000000000000000000000000000..0e5425cdfdb74071904957ca8bcfddb70782b1b4 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/collapse-item/index.json" @@ -0,0 +1,6 @@ +{ + "component": true, + "usingComponents": { + "van-cell": "../cell/index" + } +} diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/collapse-item/index.wxml" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/collapse-item/index.wxml" new file mode 100644 index 0000000000000000000000000000000000000000..ae4cc831712ce6026707e48c9646d572c3ac8c0b --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/collapse-item/index.wxml" @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/collapse-item/index.wxss" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/collapse-item/index.wxss" new file mode 100644 index 0000000000000000000000000000000000000000..0bb936c00343dc591c86395261d00f2e08c00cb3 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/collapse-item/index.wxss" @@ -0,0 +1 @@ +@import '../common/index.wxss';.van-collapse-item__title .van-cell__right-icon{-webkit-transform:rotate(90deg);transform:rotate(90deg);transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s,-webkit-transform .3s;transition:-webkit-transform var(--collapse-item-transition-duration,.3s);transition:transform var(--collapse-item-transition-duration,.3s);transition:transform var(--collapse-item-transition-duration,.3s),-webkit-transform var(--collapse-item-transition-duration,.3s)}.van-collapse-item__title--expanded .van-cell__right-icon{-webkit-transform:rotate(-90deg);transform:rotate(-90deg)}.van-collapse-item__title--disabled .van-cell,.van-collapse-item__title--disabled .van-cell__right-icon{color:#c8c9cc!important;color:var(--collapse-item-title-disabled-color,#c8c9cc)!important}.van-collapse-item__title--disabled .van-cell--hover{background-color:#fff!important;background-color:var(--white,#fff)!important}.van-collapse-item__wrapper{overflow:hidden}.van-collapse-item__content{padding:15px;padding:var(--collapse-item-content-padding,15px);color:#969799;color:var(--collapse-item-content-text-color,#969799);font-size:13px;font-size:var(--collapse-item-content-font-size,13px);line-height:1.5;line-height:var(--collapse-item-content-line-height,1.5);background-color:#fff;background-color:var(--collapse-item-content-background-color,#fff)} \ No newline at end of file diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/collapse/index.js" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/collapse/index.js" new file mode 100644 index 0000000000000000000000000000000000000000..4e2c0973f7cd45fe67061c55433eb2310c5887ab --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/collapse/index.js" @@ -0,0 +1,50 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var component_1 = require('../common/component'); +var relation_1 = require('../common/relation'); +component_1.VantComponent({ + relation: relation_1.useChildren('collapse-item'), + props: { + value: { + type: null, + observer: 'updateExpanded', + }, + accordion: { + type: Boolean, + observer: 'updateExpanded', + }, + border: { + type: Boolean, + value: true, + }, + }, + methods: { + updateExpanded: function () { + this.children.forEach(function (child) { + child.updateExpanded(); + }); + }, + switch: function (name, expanded) { + var _a = this.data, + accordion = _a.accordion, + value = _a.value; + var changeItem = name; + if (!accordion) { + name = expanded + ? (value || []).concat(name) + : (value || []).filter(function (activeName) { + return activeName !== name; + }); + } else { + name = expanded ? name : ''; + } + if (expanded) { + this.$emit('open', changeItem); + } else { + this.$emit('close', changeItem); + } + this.$emit('change', name); + this.$emit('input', name); + }, + }, +}); diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/collapse/index.json" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/collapse/index.json" new file mode 100644 index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/collapse/index.json" @@ -0,0 +1,3 @@ +{ + "component": true +} diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/collapse/index.wxml" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/collapse/index.wxml" new file mode 100644 index 0000000000000000000000000000000000000000..fd4e171944a18874bd214effc5001a89bc38fafe --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/collapse/index.wxml" @@ -0,0 +1,3 @@ + + + diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/collapse/index.wxss" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/collapse/index.wxss" new file mode 100644 index 0000000000000000000000000000000000000000..99694d603361421fe8f1acfc76a09eae443cb3aa --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/collapse/index.wxss" @@ -0,0 +1 @@ +@import '../common/index.wxss'; \ No newline at end of file diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/common/color.js" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/common/color.js" new file mode 100644 index 0000000000000000000000000000000000000000..885acaa7740c37c42afe6a68a8e87d1800e5916e --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/common/color.js" @@ -0,0 +1,10 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +exports.GRAY_DARK = exports.GRAY = exports.ORANGE = exports.GREEN = exports.WHITE = exports.BLUE = exports.RED = void 0; +exports.RED = '#ee0a24'; +exports.BLUE = '#1989fa'; +exports.WHITE = '#fff'; +exports.GREEN = '#07c160'; +exports.ORANGE = '#ff976a'; +exports.GRAY = '#323233'; +exports.GRAY_DARK = '#969799'; diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/common/component.js" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/common/component.js" new file mode 100644 index 0000000000000000000000000000000000000000..2274506e0b12808c9f552838c945f18c6d6e8f9b --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/common/component.js" @@ -0,0 +1,48 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +exports.VantComponent = void 0; +var basic_1 = require('../mixins/basic'); +function mapKeys(source, target, map) { + Object.keys(map).forEach(function (key) { + if (source[key]) { + target[map[key]] = source[key]; + } + }); +} +function VantComponent(vantOptions) { + var options = {}; + mapKeys(vantOptions, options, { + data: 'data', + props: 'properties', + mixins: 'behaviors', + methods: 'methods', + beforeCreate: 'created', + created: 'attached', + mounted: 'ready', + destroyed: 'detached', + classes: 'externalClasses', + }); + // add default externalClasses + options.externalClasses = options.externalClasses || []; + options.externalClasses.push('custom-class'); + // add default behaviors + options.behaviors = options.behaviors || []; + options.behaviors.push(basic_1.basic); + // add relations + var relation = vantOptions.relation; + if (relation) { + options.relations = relation.relations; + options.behaviors.push(relation.mixin); + } + // map field to form-field behavior + if (vantOptions.field) { + options.behaviors.push('wx://form-field'); + } + // add default options + options.options = { + multipleSlots: true, + addGlobalClass: true, + }; + Component(options); +} +exports.VantComponent = VantComponent; diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/common/index.wxss" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/common/index.wxss" new file mode 100644 index 0000000000000000000000000000000000000000..976825d7bfe20937b22d9ba32315561e6cadf953 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/common/index.wxss" @@ -0,0 +1 @@ +.van-ellipsis{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.van-multi-ellipsis--l2{-webkit-line-clamp:2}.van-multi-ellipsis--l2,.van-multi-ellipsis--l3{display:-webkit-box;overflow:hidden;text-overflow:ellipsis;-webkit-box-orient:vertical}.van-multi-ellipsis--l3{-webkit-line-clamp:3}.van-clearfix:after{display:table;clear:both;content:""}.van-hairline,.van-hairline--bottom,.van-hairline--left,.van-hairline--right,.van-hairline--surround,.van-hairline--top,.van-hairline--top-bottom{position:relative}.van-hairline--bottom:after,.van-hairline--left:after,.van-hairline--right:after,.van-hairline--surround:after,.van-hairline--top-bottom:after,.van-hairline--top:after,.van-hairline:after{position:absolute;box-sizing:border-box;-webkit-transform-origin:center;transform-origin:center;content:" ";pointer-events:none;top:-50%;right:-50%;bottom:-50%;left:-50%;border:0 solid #ebedf0;-webkit-transform:scale(.5);transform:scale(.5)}.van-hairline--top:after{border-top-width:1px}.van-hairline--left:after{border-left-width:1px}.van-hairline--right:after{border-right-width:1px}.van-hairline--bottom:after{border-bottom-width:1px}.van-hairline--top-bottom:after{border-width:1px 0}.van-hairline--surround:after{border-width:1px} \ No newline at end of file diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/common/relation.js" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/common/relation.js" new file mode 100644 index 0000000000000000000000000000000000000000..fcf9824cc6caab36269966e6fbc69eb36acf6ceb --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/common/relation.js" @@ -0,0 +1,79 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +exports.useChildren = exports.useParent = void 0; +function useParent(name, onEffect) { + var _a; + var path = '../' + name + '/index'; + return { + relations: + ((_a = {}), + (_a[path] = { + type: 'ancestor', + linked: function () { + onEffect && onEffect.call(this); + }, + linkChanged: function () { + onEffect && onEffect.call(this); + }, + unlinked: function () { + onEffect && onEffect.call(this); + }, + }), + _a), + mixin: Behavior({ + created: function () { + var _this = this; + Object.defineProperty(this, 'parent', { + get: function () { + return _this.getRelationNodes(path)[0]; + }, + }); + Object.defineProperty(this, 'index', { + // @ts-ignore + get: function () { + var _a, _b; + return (_b = + (_a = _this.parent) === null || _a === void 0 + ? void 0 + : _a.children) === null || _b === void 0 + ? void 0 + : _b.indexOf(_this); + }, + }); + }, + }), + }; +} +exports.useParent = useParent; +function useChildren(name, onEffect) { + var _a; + var path = '../' + name + '/index'; + return { + relations: + ((_a = {}), + (_a[path] = { + type: 'descendant', + linked: function (target) { + onEffect && onEffect.call(this, target); + }, + linkChanged: function (target) { + onEffect && onEffect.call(this, target); + }, + unlinked: function (target) { + onEffect && onEffect.call(this, target); + }, + }), + _a), + mixin: Behavior({ + created: function () { + var _this = this; + Object.defineProperty(this, 'children', { + get: function () { + return _this.getRelationNodes(path) || []; + }, + }); + }, + }), + }; +} +exports.useChildren = useChildren; diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/common/style/clearfix.wxss" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/common/style/clearfix.wxss" new file mode 100644 index 0000000000000000000000000000000000000000..a0ca83843c90df59e257b60edac727b42dd94c90 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/common/style/clearfix.wxss" @@ -0,0 +1 @@ +.van-clearfix:after{display:table;clear:both;content:""} \ No newline at end of file diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/common/style/ellipsis.wxss" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/common/style/ellipsis.wxss" new file mode 100644 index 0000000000000000000000000000000000000000..1e9dbc9e0952cef028b287b07744fa8b3343e980 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/common/style/ellipsis.wxss" @@ -0,0 +1 @@ +.van-ellipsis{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.van-multi-ellipsis--l2{-webkit-line-clamp:2}.van-multi-ellipsis--l2,.van-multi-ellipsis--l3{display:-webkit-box;overflow:hidden;text-overflow:ellipsis;-webkit-box-orient:vertical}.van-multi-ellipsis--l3{-webkit-line-clamp:3} \ No newline at end of file diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/common/style/hairline.wxss" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/common/style/hairline.wxss" new file mode 100644 index 0000000000000000000000000000000000000000..49b9e656fcb701be7db42660c9040740158d48f4 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/common/style/hairline.wxss" @@ -0,0 +1 @@ +.van-hairline,.van-hairline--bottom,.van-hairline--left,.van-hairline--right,.van-hairline--surround,.van-hairline--top,.van-hairline--top-bottom{position:relative}.van-hairline--bottom:after,.van-hairline--left:after,.van-hairline--right:after,.van-hairline--surround:after,.van-hairline--top-bottom:after,.van-hairline--top:after,.van-hairline:after{position:absolute;box-sizing:border-box;-webkit-transform-origin:center;transform-origin:center;content:" ";pointer-events:none;top:-50%;right:-50%;bottom:-50%;left:-50%;border:0 solid #ebedf0;-webkit-transform:scale(.5);transform:scale(.5)}.van-hairline--top:after{border-top-width:1px}.van-hairline--left:after{border-left-width:1px}.van-hairline--right:after{border-right-width:1px}.van-hairline--bottom:after{border-bottom-width:1px}.van-hairline--top-bottom:after{border-width:1px 0}.van-hairline--surround:after{border-width:1px} \ No newline at end of file diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/common/style/mixins/clearfix.wxss" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/common/style/mixins/clearfix.wxss" new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/common/style/mixins/ellipsis.wxss" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/common/style/mixins/ellipsis.wxss" new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/common/style/mixins/hairline.wxss" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/common/style/mixins/hairline.wxss" new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/common/style/theme.wxss" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/common/style/theme.wxss" new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/common/style/var.wxss" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/common/style/var.wxss" new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/common/utils.js" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/common/utils.js" new file mode 100644 index 0000000000000000000000000000000000000000..c2cac34c6a93e8c3799124d22c836c3af8906e4c --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/common/utils.js" @@ -0,0 +1,113 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +exports.getCurrentPage = exports.toPromise = exports.groupSetData = exports.getAllRect = exports.getRect = exports.pickExclude = exports.requestAnimationFrame = exports.addUnit = exports.getSystemInfoSync = exports.nextTick = exports.range = void 0; +var validator_1 = require('./validator'); +var version_1 = require('./version'); +function range(num, min, max) { + return Math.min(Math.max(num, min), max); +} +exports.range = range; +function nextTick(cb) { + if (version_1.canIUseNextTick()) { + wx.nextTick(cb); + } else { + setTimeout(function () { + cb(); + }, 1000 / 30); + } +} +exports.nextTick = nextTick; +var systemInfo; +function getSystemInfoSync() { + if (systemInfo == null) { + systemInfo = wx.getSystemInfoSync(); + } + return systemInfo; +} +exports.getSystemInfoSync = getSystemInfoSync; +function addUnit(value) { + if (!validator_1.isDef(value)) { + return undefined; + } + value = String(value); + return validator_1.isNumber(value) ? value + 'px' : value; +} +exports.addUnit = addUnit; +function requestAnimationFrame(cb) { + var systemInfo = getSystemInfoSync(); + if (systemInfo.platform === 'devtools') { + return setTimeout(function () { + cb(); + }, 1000 / 30); + } + return wx + .createSelectorQuery() + .selectViewport() + .boundingClientRect() + .exec(function () { + cb(); + }); +} +exports.requestAnimationFrame = requestAnimationFrame; +function pickExclude(obj, keys) { + if (!validator_1.isPlainObject(obj)) { + return {}; + } + return Object.keys(obj).reduce(function (prev, key) { + if (!keys.includes(key)) { + prev[key] = obj[key]; + } + return prev; + }, {}); +} +exports.pickExclude = pickExclude; +function getRect(context, selector) { + return new Promise(function (resolve) { + wx.createSelectorQuery() + .in(context) + .select(selector) + .boundingClientRect() + .exec(function (rect) { + if (rect === void 0) { + rect = []; + } + return resolve(rect[0]); + }); + }); +} +exports.getRect = getRect; +function getAllRect(context, selector) { + return new Promise(function (resolve) { + wx.createSelectorQuery() + .in(context) + .selectAll(selector) + .boundingClientRect() + .exec(function (rect) { + if (rect === void 0) { + rect = []; + } + return resolve(rect[0]); + }); + }); +} +exports.getAllRect = getAllRect; +function groupSetData(context, cb) { + if (version_1.canIUseGroupSetData()) { + context.groupSetData(cb); + } else { + cb(); + } +} +exports.groupSetData = groupSetData; +function toPromise(promiseLike) { + if (validator_1.isPromise(promiseLike)) { + return promiseLike; + } + return Promise.resolve(promiseLike); +} +exports.toPromise = toPromise; +function getCurrentPage() { + var pages = getCurrentPages(); + return pages[pages.length - 1]; +} +exports.getCurrentPage = getCurrentPage; diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/common/validator.js" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/common/validator.js" new file mode 100644 index 0000000000000000000000000000000000000000..5c54b737f90be9057dc06b6e2245263b35888782 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/common/validator.js" @@ -0,0 +1,42 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +exports.isVideoUrl = exports.isImageUrl = exports.isBoolean = exports.isNumber = exports.isObj = exports.isDef = exports.isPromise = exports.isPlainObject = exports.isFunction = void 0; +function isFunction(val) { + return typeof val === 'function'; +} +exports.isFunction = isFunction; +function isPlainObject(val) { + return val !== null && typeof val === 'object' && !Array.isArray(val); +} +exports.isPlainObject = isPlainObject; +function isPromise(val) { + return isPlainObject(val) && isFunction(val.then) && isFunction(val.catch); +} +exports.isPromise = isPromise; +function isDef(value) { + return value !== undefined && value !== null; +} +exports.isDef = isDef; +function isObj(x) { + var type = typeof x; + return x !== null && (type === 'object' || type === 'function'); +} +exports.isObj = isObj; +function isNumber(value) { + return /^\d+(\.\d+)?$/.test(value); +} +exports.isNumber = isNumber; +function isBoolean(value) { + return typeof value === 'boolean'; +} +exports.isBoolean = isBoolean; +var IMAGE_REGEXP = /\.(jpeg|jpg|gif|png|svg|webp|jfif|bmp|dpg)/i; +var VIDEO_REGEXP = /\.(mp4|mpg|mpeg|dat|asf|avi|rm|rmvb|mov|wmv|flv|mkv)/i; +function isImageUrl(url) { + return IMAGE_REGEXP.test(url); +} +exports.isImageUrl = isImageUrl; +function isVideoUrl(url) { + return VIDEO_REGEXP.test(url); +} +exports.isVideoUrl = isVideoUrl; diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/common/version.js" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/common/version.js" new file mode 100644 index 0000000000000000000000000000000000000000..42f805105d16f7de1daab2c1bc2467c424408c6e --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/common/version.js" @@ -0,0 +1,54 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +exports.canIUseCanvas2d = exports.canIUseNextTick = exports.canIUseGroupSetData = exports.canIUseAnimate = exports.canIUseFormFieldButton = exports.canIUseModel = void 0; +var utils_1 = require('./utils'); +function compareVersion(v1, v2) { + v1 = v1.split('.'); + v2 = v2.split('.'); + var len = Math.max(v1.length, v2.length); + while (v1.length < len) { + v1.push('0'); + } + while (v2.length < len) { + v2.push('0'); + } + for (var i = 0; i < len; i++) { + var num1 = parseInt(v1[i], 10); + var num2 = parseInt(v2[i], 10); + if (num1 > num2) { + return 1; + } + if (num1 < num2) { + return -1; + } + } + return 0; +} +function gte(version) { + var system = utils_1.getSystemInfoSync(); + return compareVersion(system.SDKVersion, version) >= 0; +} +function canIUseModel() { + return gte('2.9.3'); +} +exports.canIUseModel = canIUseModel; +function canIUseFormFieldButton() { + return gte('2.10.3'); +} +exports.canIUseFormFieldButton = canIUseFormFieldButton; +function canIUseAnimate() { + return gte('2.9.0'); +} +exports.canIUseAnimate = canIUseAnimate; +function canIUseGroupSetData() { + return gte('2.4.0'); +} +exports.canIUseGroupSetData = canIUseGroupSetData; +function canIUseNextTick() { + return wx.canIUse('nextTick'); +} +exports.canIUseNextTick = canIUseNextTick; +function canIUseCanvas2d() { + return gte('2.9.0'); +} +exports.canIUseCanvas2d = canIUseCanvas2d; diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/count-down/index.js" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/count-down/index.js" new file mode 100644 index 0000000000000000000000000000000000000000..348d48982f78ceaf17822bb4f6d7736cda8c66b1 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/count-down/index.js" @@ -0,0 +1,103 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var component_1 = require('../common/component'); +var utils_1 = require('./utils'); +function simpleTick(fn) { + return setTimeout(fn, 30); +} +component_1.VantComponent({ + props: { + useSlot: Boolean, + millisecond: Boolean, + time: { + type: Number, + observer: 'reset', + }, + format: { + type: String, + value: 'HH:mm:ss', + }, + autoStart: { + type: Boolean, + value: true, + }, + }, + data: { + timeData: utils_1.parseTimeData(0), + formattedTime: '0', + }, + destroyed: function () { + clearTimeout(this.tid); + this.tid = null; + }, + methods: { + // 开始 + start: function () { + if (this.counting) { + return; + } + this.counting = true; + this.endTime = Date.now() + this.remain; + this.tick(); + }, + // 暂停 + pause: function () { + this.counting = false; + clearTimeout(this.tid); + }, + // 重置 + reset: function () { + this.pause(); + this.remain = this.data.time; + this.setRemain(this.remain); + if (this.data.autoStart) { + this.start(); + } + }, + tick: function () { + if (this.data.millisecond) { + this.microTick(); + } else { + this.macroTick(); + } + }, + microTick: function () { + var _this = this; + this.tid = simpleTick(function () { + _this.setRemain(_this.getRemain()); + if (_this.remain !== 0) { + _this.microTick(); + } + }); + }, + macroTick: function () { + var _this = this; + this.tid = simpleTick(function () { + var remain = _this.getRemain(); + if (!utils_1.isSameSecond(remain, _this.remain) || remain === 0) { + _this.setRemain(remain); + } + if (_this.remain !== 0) { + _this.macroTick(); + } + }); + }, + getRemain: function () { + return Math.max(this.endTime - Date.now(), 0); + }, + setRemain: function (remain) { + this.remain = remain; + var timeData = utils_1.parseTimeData(remain); + if (this.data.useSlot) { + this.$emit('change', timeData); + } + this.setData({ + formattedTime: utils_1.parseFormat(this.data.format, timeData), + }); + if (remain === 0) { + this.pause(); + this.$emit('finish'); + } + }, + }, +}); diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/count-down/index.json" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/count-down/index.json" new file mode 100644 index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/count-down/index.json" @@ -0,0 +1,3 @@ +{ + "component": true +} diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/count-down/index.wxml" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/count-down/index.wxml" new file mode 100644 index 0000000000000000000000000000000000000000..e206e1677070434f2bd7d07cffb36e1365d5e476 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/count-down/index.wxml" @@ -0,0 +1,4 @@ + + + {{ formattedTime }} + diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/count-down/index.wxss" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/count-down/index.wxss" new file mode 100644 index 0000000000000000000000000000000000000000..bc33f5dc8faedad81144c8c4fac06c831727e29f --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/count-down/index.wxss" @@ -0,0 +1 @@ +@import '../common/index.wxss';.van-count-down{color:#323233;color:var(--count-down-text-color,#323233);font-size:14px;font-size:var(--count-down-font-size,14px);line-height:20px;line-height:var(--count-down-line-height,20px)} \ No newline at end of file diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/count-down/utils.js" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/count-down/utils.js" new file mode 100644 index 0000000000000000000000000000000000000000..10864a21fb0101a74fbece7b30a8c04d159fd043 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/count-down/utils.js" @@ -0,0 +1,65 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +exports.isSameSecond = exports.parseFormat = exports.parseTimeData = void 0; +function padZero(num, targetLength) { + if (targetLength === void 0) { + targetLength = 2; + } + var str = num + ''; + while (str.length < targetLength) { + str = '0' + str; + } + return str; +} +var SECOND = 1000; +var MINUTE = 60 * SECOND; +var HOUR = 60 * MINUTE; +var DAY = 24 * HOUR; +function parseTimeData(time) { + var days = Math.floor(time / DAY); + var hours = Math.floor((time % DAY) / HOUR); + var minutes = Math.floor((time % HOUR) / MINUTE); + var seconds = Math.floor((time % MINUTE) / SECOND); + var milliseconds = Math.floor(time % SECOND); + return { + days: days, + hours: hours, + minutes: minutes, + seconds: seconds, + milliseconds: milliseconds, + }; +} +exports.parseTimeData = parseTimeData; +function parseFormat(format, timeData) { + var days = timeData.days; + var hours = timeData.hours, + minutes = timeData.minutes, + seconds = timeData.seconds, + milliseconds = timeData.milliseconds; + if (format.indexOf('DD') === -1) { + hours += days * 24; + } else { + format = format.replace('DD', padZero(days)); + } + if (format.indexOf('HH') === -1) { + minutes += hours * 60; + } else { + format = format.replace('HH', padZero(hours)); + } + if (format.indexOf('mm') === -1) { + seconds += minutes * 60; + } else { + format = format.replace('mm', padZero(minutes)); + } + if (format.indexOf('ss') === -1) { + milliseconds += seconds * 1000; + } else { + format = format.replace('ss', padZero(seconds)); + } + return format.replace('SSS', padZero(milliseconds, 3)); +} +exports.parseFormat = parseFormat; +function isSameSecond(time1, time2) { + return Math.floor(time1 / 1000) === Math.floor(time2 / 1000); +} +exports.isSameSecond = isSameSecond; diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/datetime-picker/index.js" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/datetime-picker/index.js" new file mode 100644 index 0000000000000000000000000000000000000000..6e119f2ad5cac62ae1d00eb3ef484562791ea924 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/datetime-picker/index.js" @@ -0,0 +1,381 @@ +'use strict'; +var __assign = + (this && this.__assign) || + function () { + __assign = + Object.assign || + function (t) { + for (var s, i = 1, n = arguments.length; i < n; i++) { + s = arguments[i]; + for (var p in s) + if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p]; + } + return t; + }; + return __assign.apply(this, arguments); + }; +var __spreadArrays = + (this && this.__spreadArrays) || + function () { + for (var s = 0, i = 0, il = arguments.length; i < il; i++) + s += arguments[i].length; + for (var r = Array(s), k = 0, i = 0; i < il; i++) + for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++) + r[k] = a[j]; + return r; + }; +Object.defineProperty(exports, '__esModule', { value: true }); +var component_1 = require('../common/component'); +var validator_1 = require('../common/validator'); +var shared_1 = require('../picker/shared'); +var currentYear = new Date().getFullYear(); +function isValidDate(date) { + return validator_1.isDef(date) && !isNaN(new Date(date).getTime()); +} +function range(num, min, max) { + return Math.min(Math.max(num, min), max); +} +function padZero(val) { + return ('00' + val).slice(-2); +} +function times(n, iteratee) { + var index = -1; + var result = Array(n < 0 ? 0 : n); + while (++index < n) { + result[index] = iteratee(index); + } + return result; +} +function getTrueValue(formattedValue) { + if (formattedValue === undefined) { + formattedValue = '1'; + } + while (isNaN(parseInt(formattedValue, 10))) { + formattedValue = formattedValue.slice(1); + } + return parseInt(formattedValue, 10); +} +function getMonthEndDay(year, month) { + return 32 - new Date(year, month - 1, 32).getDate(); +} +var defaultFormatter = function (type, value) { + return value; +}; +component_1.VantComponent({ + classes: ['active-class', 'toolbar-class', 'column-class'], + props: __assign(__assign({}, shared_1.pickerProps), { + value: { + type: null, + observer: 'updateValue', + }, + filter: null, + type: { + type: String, + value: 'datetime', + observer: 'updateValue', + }, + showToolbar: { + type: Boolean, + value: true, + }, + formatter: { + type: null, + value: defaultFormatter, + }, + minDate: { + type: Number, + value: new Date(currentYear - 10, 0, 1).getTime(), + observer: 'updateValue', + }, + maxDate: { + type: Number, + value: new Date(currentYear + 10, 11, 31).getTime(), + observer: 'updateValue', + }, + minHour: { + type: Number, + value: 0, + observer: 'updateValue', + }, + maxHour: { + type: Number, + value: 23, + observer: 'updateValue', + }, + minMinute: { + type: Number, + value: 0, + observer: 'updateValue', + }, + maxMinute: { + type: Number, + value: 59, + observer: 'updateValue', + }, + }), + data: { + innerValue: Date.now(), + columns: [], + }, + methods: { + updateValue: function () { + var _this = this; + var data = this.data; + var val = this.correctValue(data.value); + var isEqual = val === data.innerValue; + if (!isEqual) { + this.updateColumnValue(val).then(function () { + _this.$emit('input', val); + }); + } else { + this.updateColumns(); + } + }, + getPicker: function () { + if (this.picker == null) { + this.picker = this.selectComponent('.van-datetime-picker'); + var picker_1 = this.picker; + var setColumnValues_1 = picker_1.setColumnValues; + picker_1.setColumnValues = function () { + var args = []; + for (var _i = 0; _i < arguments.length; _i++) { + args[_i] = arguments[_i]; + } + return setColumnValues_1.apply( + picker_1, + __spreadArrays(args, [false]) + ); + }; + } + return this.picker; + }, + updateColumns: function () { + var _a = this.data.formatter, + formatter = _a === void 0 ? defaultFormatter : _a; + var results = this.getOriginColumns().map(function (column) { + return { + values: column.values.map(function (value) { + return formatter(column.type, value); + }), + }; + }); + return this.set({ columns: results }); + }, + getOriginColumns: function () { + var filter = this.data.filter; + var results = this.getRanges().map(function (_a) { + var type = _a.type, + range = _a.range; + var values = times(range[1] - range[0] + 1, function (index) { + var value = range[0] + index; + value = type === 'year' ? '' + value : padZero(value); + return value; + }); + if (filter) { + values = filter(type, values); + } + return { type: type, values: values }; + }); + return results; + }, + getRanges: function () { + var data = this.data; + if (data.type === 'time') { + return [ + { + type: 'hour', + range: [data.minHour, data.maxHour], + }, + { + type: 'minute', + range: [data.minMinute, data.maxMinute], + }, + ]; + } + var _a = this.getBoundary('max', data.innerValue), + maxYear = _a.maxYear, + maxDate = _a.maxDate, + maxMonth = _a.maxMonth, + maxHour = _a.maxHour, + maxMinute = _a.maxMinute; + var _b = this.getBoundary('min', data.innerValue), + minYear = _b.minYear, + minDate = _b.minDate, + minMonth = _b.minMonth, + minHour = _b.minHour, + minMinute = _b.minMinute; + var result = [ + { + type: 'year', + range: [minYear, maxYear], + }, + { + type: 'month', + range: [minMonth, maxMonth], + }, + { + type: 'day', + range: [minDate, maxDate], + }, + { + type: 'hour', + range: [minHour, maxHour], + }, + { + type: 'minute', + range: [minMinute, maxMinute], + }, + ]; + if (data.type === 'date') result.splice(3, 2); + if (data.type === 'year-month') result.splice(2, 3); + return result; + }, + correctValue: function (value) { + var data = this.data; + // validate value + var isDateType = data.type !== 'time'; + if (isDateType && !isValidDate(value)) { + value = data.minDate; + } else if (!isDateType && !value) { + var minHour = data.minHour; + value = padZero(minHour) + ':00'; + } + // time type + if (!isDateType) { + var _a = value.split(':'), + hour = _a[0], + minute = _a[1]; + hour = padZero(range(hour, data.minHour, data.maxHour)); + minute = padZero(range(minute, data.minMinute, data.maxMinute)); + return hour + ':' + minute; + } + // date type + value = Math.max(value, data.minDate); + value = Math.min(value, data.maxDate); + return value; + }, + getBoundary: function (type, innerValue) { + var _a; + var value = new Date(innerValue); + var boundary = new Date(this.data[type + 'Date']); + var year = boundary.getFullYear(); + var month = 1; + var date = 1; + var hour = 0; + var minute = 0; + if (type === 'max') { + month = 12; + date = getMonthEndDay(value.getFullYear(), value.getMonth() + 1); + hour = 23; + minute = 59; + } + if (value.getFullYear() === year) { + month = boundary.getMonth() + 1; + if (value.getMonth() + 1 === month) { + date = boundary.getDate(); + if (value.getDate() === date) { + hour = boundary.getHours(); + if (value.getHours() === hour) { + minute = boundary.getMinutes(); + } + } + } + } + return ( + (_a = {}), + (_a[type + 'Year'] = year), + (_a[type + 'Month'] = month), + (_a[type + 'Date'] = date), + (_a[type + 'Hour'] = hour), + (_a[type + 'Minute'] = minute), + _a + ); + }, + onCancel: function () { + this.$emit('cancel'); + }, + onConfirm: function () { + this.$emit('confirm', this.data.innerValue); + }, + onChange: function () { + var _this = this; + var data = this.data; + var value; + var picker = this.getPicker(); + var originColumns = this.getOriginColumns(); + if (data.type === 'time') { + var indexes = picker.getIndexes(); + value = + +originColumns[0].values[indexes[0]] + + ':' + + +originColumns[1].values[indexes[1]]; + } else { + var indexes = picker.getIndexes(); + var values = indexes.map(function (value, index) { + return originColumns[index].values[value]; + }); + var year = getTrueValue(values[0]); + var month = getTrueValue(values[1]); + var maxDate = getMonthEndDay(year, month); + var date = getTrueValue(values[2]); + if (data.type === 'year-month') { + date = 1; + } + date = date > maxDate ? maxDate : date; + var hour = 0; + var minute = 0; + if (data.type === 'datetime') { + hour = getTrueValue(values[3]); + minute = getTrueValue(values[4]); + } + value = new Date(year, month - 1, date, hour, minute); + } + value = this.correctValue(value); + this.updateColumnValue(value).then(function () { + _this.$emit('input', value); + _this.$emit('change', picker); + }); + }, + updateColumnValue: function (value) { + var _this = this; + var values = []; + var type = this.data.type; + var formatter = this.data.formatter || defaultFormatter; + var picker = this.getPicker(); + if (type === 'time') { + var pair = value.split(':'); + values = [formatter('hour', pair[0]), formatter('minute', pair[1])]; + } else { + var date = new Date(value); + values = [ + formatter('year', '' + date.getFullYear()), + formatter('month', padZero(date.getMonth() + 1)), + ]; + if (type === 'date') { + values.push(formatter('day', padZero(date.getDate()))); + } + if (type === 'datetime') { + values.push( + formatter('day', padZero(date.getDate())), + formatter('hour', padZero(date.getHours())), + formatter('minute', padZero(date.getMinutes())) + ); + } + } + return this.set({ innerValue: value }) + .then(function () { + return _this.updateColumns(); + }) + .then(function () { + return picker.setValues(values); + }); + }, + }, + created: function () { + var _this = this; + var innerValue = this.correctValue(this.data.value); + this.updateColumnValue(innerValue).then(function () { + _this.$emit('input', innerValue); + }); + }, +}); diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/datetime-picker/index.json" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/datetime-picker/index.json" new file mode 100644 index 0000000000000000000000000000000000000000..a778e91cce16edbb1fd2af764415c4f8d2f0a0ea --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/datetime-picker/index.json" @@ -0,0 +1,6 @@ +{ + "component": true, + "usingComponents": { + "van-picker": "../picker/index" + } +} diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/datetime-picker/index.wxml" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/datetime-picker/index.wxml" new file mode 100644 index 0000000000000000000000000000000000000000..ade22024e970d0981e02ee902fcc0cc053d80ef7 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/datetime-picker/index.wxml" @@ -0,0 +1,16 @@ + diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/datetime-picker/index.wxss" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/datetime-picker/index.wxss" new file mode 100644 index 0000000000000000000000000000000000000000..99694d603361421fe8f1acfc76a09eae443cb3aa --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/datetime-picker/index.wxss" @@ -0,0 +1 @@ +@import '../common/index.wxss'; \ No newline at end of file diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/definitions/index.js" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/definitions/index.js" new file mode 100644 index 0000000000000000000000000000000000000000..c8ad2e549bdc6801e0d1c80b0308d4b9bd4985ce --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/definitions/index.js" @@ -0,0 +1,2 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/dialog/dialog.js" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/dialog/dialog.js" new file mode 100644 index 0000000000000000000000000000000000000000..d90d8ea437f9878358aec3ad43b4e21aa400591c --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/dialog/dialog.js" @@ -0,0 +1,104 @@ +'use strict'; +var __assign = + (this && this.__assign) || + function () { + __assign = + Object.assign || + function (t) { + for (var s, i = 1, n = arguments.length; i < n; i++) { + s = arguments[i]; + for (var p in s) + if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p]; + } + return t; + }; + return __assign.apply(this, arguments); + }; +Object.defineProperty(exports, '__esModule', { value: true }); +var queue = []; +var defaultOptions = { + show: false, + title: '', + width: null, + theme: 'default', + message: '', + zIndex: 100, + overlay: true, + selector: '#van-dialog', + className: '', + asyncClose: false, + beforeClose: null, + transition: 'scale', + customStyle: '', + messageAlign: '', + overlayStyle: '', + confirmButtonText: '确认', + cancelButtonText: '取消', + showConfirmButton: true, + showCancelButton: false, + closeOnClickOverlay: false, + confirmButtonOpenType: '', +}; +var currentOptions = __assign({}, defaultOptions); +function getContext() { + var pages = getCurrentPages(); + return pages[pages.length - 1]; +} +var Dialog = function (options) { + options = __assign(__assign({}, currentOptions), options); + return new Promise(function (resolve, reject) { + var context = options.context || getContext(); + var dialog = context.selectComponent(options.selector); + delete options.context; + delete options.selector; + if (dialog) { + dialog.setData( + __assign( + { + callback: function (action, instance) { + action === 'confirm' ? resolve(instance) : reject(instance); + }, + }, + options + ) + ); + wx.nextTick(function () { + dialog.setData({ show: true }); + }); + queue.push(dialog); + } else { + console.warn( + '未找到 van-dialog 节点,请确认 selector 及 context 是否正确' + ); + } + }); +}; +Dialog.alert = function (options) { + return Dialog(options); +}; +Dialog.confirm = function (options) { + return Dialog(__assign({ showCancelButton: true }, options)); +}; +Dialog.close = function () { + queue.forEach(function (dialog) { + dialog.close(); + }); + queue = []; +}; +Dialog.stopLoading = function () { + queue.forEach(function (dialog) { + dialog.stopLoading(); + }); +}; +Dialog.currentOptions = currentOptions; +Dialog.defaultOptions = defaultOptions; +Dialog.setDefaultOptions = function (options) { + currentOptions = __assign(__assign({}, currentOptions), options); + Dialog.currentOptions = currentOptions; +}; +Dialog.resetDefaultOptions = function () { + currentOptions = __assign({}, defaultOptions); + Dialog.currentOptions = currentOptions; +}; +Dialog.resetDefaultOptions(); +exports.default = Dialog; diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/dialog/index.js" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/dialog/index.js" new file mode 100644 index 0000000000000000000000000000000000000000..09af643ff2bf4a5d95e271c3681ee840a394f0e9 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/dialog/index.js" @@ -0,0 +1,127 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var component_1 = require('../common/component'); +var button_1 = require('../mixins/button'); +var open_type_1 = require('../mixins/open-type'); +var color_1 = require('../common/color'); +var utils_1 = require('../common/utils'); +component_1.VantComponent({ + mixins: [button_1.button, open_type_1.openType], + props: { + show: { + type: Boolean, + observer: function (show) { + !show && this.stopLoading(); + }, + }, + title: String, + message: String, + theme: { + type: String, + value: 'default', + }, + useSlot: Boolean, + className: String, + customStyle: String, + asyncClose: Boolean, + messageAlign: String, + beforeClose: null, + overlayStyle: String, + useTitleSlot: Boolean, + showCancelButton: Boolean, + closeOnClickOverlay: Boolean, + confirmButtonOpenType: String, + width: null, + zIndex: { + type: Number, + value: 2000, + }, + confirmButtonText: { + type: String, + value: '确认', + }, + cancelButtonText: { + type: String, + value: '取消', + }, + confirmButtonColor: { + type: String, + value: color_1.RED, + }, + cancelButtonColor: { + type: String, + value: color_1.GRAY, + }, + showConfirmButton: { + type: Boolean, + value: true, + }, + overlay: { + type: Boolean, + value: true, + }, + transition: { + type: String, + value: 'scale', + }, + }, + data: { + loading: { + confirm: false, + cancel: false, + }, + callback: function () {}, + }, + methods: { + onConfirm: function () { + this.handleAction('confirm'); + }, + onCancel: function () { + this.handleAction('cancel'); + }, + onClickOverlay: function () { + this.close('overlay'); + }, + close: function (action) { + var _this = this; + this.setData({ show: false }); + wx.nextTick(function () { + _this.$emit('close', action); + var callback = _this.data.callback; + if (callback) { + callback(action, _this); + } + }); + }, + stopLoading: function () { + this.setData({ + loading: { + confirm: false, + cancel: false, + }, + }); + }, + handleAction: function (action) { + var _a; + var _this = this; + this.$emit(action, { dialog: this }); + var _b = this.data, + asyncClose = _b.asyncClose, + beforeClose = _b.beforeClose; + if (!asyncClose && !beforeClose) { + this.close(action); + return; + } + this.setData(((_a = {}), (_a['loading.' + action] = true), _a)); + if (beforeClose) { + utils_1.toPromise(beforeClose(action)).then(function (value) { + if (value) { + _this.close(action); + } else { + _this.stopLoading(); + } + }); + } + }, + }, +}); diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/dialog/index.json" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/dialog/index.json" new file mode 100644 index 0000000000000000000000000000000000000000..43417fc8977861fcac5d1e799f8a1c2842a4e5c7 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/dialog/index.json" @@ -0,0 +1,9 @@ +{ + "component": true, + "usingComponents": { + "van-popup": "../popup/index", + "van-button": "../button/index", + "van-goods-action": "../goods-action/index", + "van-goods-action-button": "../goods-action-button/index" + } +} diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/dialog/index.wxml" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/dialog/index.wxml" new file mode 100644 index 0000000000000000000000000000000000000000..fd13bc9ad225701a813eb8ad97f4c15d67465a6a --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/dialog/index.wxml" @@ -0,0 +1,113 @@ + + + + + + {{ title }} + + + + + {{ message }} + + + + + {{ cancelButtonText }} + + + {{ confirmButtonText }} + + + + + + {{ cancelButtonText }} + + + {{ confirmButtonText }} + + + diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/dialog/index.wxss" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/dialog/index.wxss" new file mode 100644 index 0000000000000000000000000000000000000000..c6bac95745e625478d4203d82168e6e7f4f6bbf0 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/dialog/index.wxss" @@ -0,0 +1 @@ +@import '../common/index.wxss';.van-dialog{top:45%!important;overflow:hidden;width:320px;width:var(--dialog-width,320px);font-size:16px;font-size:var(--dialog-font-size,16px);border-radius:16px;border-radius:var(--dialog-border-radius,16px);background-color:#fff;background-color:var(--dialog-background-color,#fff)}@media (max-width:321px){.van-dialog{width:90%;width:var(--dialog-small-screen-width,90%)}}.van-dialog__header{text-align:center;padding-top:24px;padding-top:var(--dialog-header-padding-top,24px);font-weight:500;font-weight:var(--dialog-header-font-weight,500);line-height:24px;line-height:var(--dialog-header-line-height,24px)}.van-dialog__header--isolated{padding:24px 0;padding:var(--dialog-header-isolated-padding,24px 0)}.van-dialog__message{overflow-y:auto;text-align:center;-webkit-overflow-scrolling:touch;font-size:14px;font-size:var(--dialog-message-font-size,14px);line-height:20px;line-height:var(--dialog-message-line-height,20px);max-height:60vh;max-height:var(--dialog-message-max-height,60vh);padding:24px;padding:var(--dialog-message-padding,24px)}.van-dialog__message-text{word-wrap:break-word}.van-dialog__message--hasTitle{padding-top:8px;padding-top:var(--dialog-has-title-message-padding-top,8px);color:#646566;color:var(--dialog-has-title-message-text-color,#646566)}.van-dialog__message--round-button{padding-bottom:16px;color:#323233}.van-dialog__message--left{text-align:left}.van-dialog__message--right{text-align:right}.van-dialog__footer{display:-webkit-flex;display:flex}.van-dialog__footer--round-button{position:relative!important;padding:8px 24px 16px!important}.van-dialog__button{-webkit-flex:1;flex:1}.van-dialog__cancel,.van-dialog__confirm{border:0!important}.van-dialog-bounce-enter{-webkit-transform:translate3d(-50%,-50%,0) scale(.7);transform:translate3d(-50%,-50%,0) scale(.7);opacity:0}.van-dialog-bounce-leave-active{-webkit-transform:translate3d(-50%,-50%,0) scale(.9);transform:translate3d(-50%,-50%,0) scale(.9);opacity:0} \ No newline at end of file diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/divider/index.js" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/divider/index.js" new file mode 100644 index 0000000000000000000000000000000000000000..b643841fdc9b9842ff1e68aed50a5e5825000b54 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/divider/index.js" @@ -0,0 +1,14 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var component_1 = require('../common/component'); +component_1.VantComponent({ + props: { + dashed: Boolean, + hairline: Boolean, + contentPosition: String, + fontSize: String, + borderColor: String, + textColor: String, + customStyle: String, + }, +}); diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/divider/index.json" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/divider/index.json" new file mode 100644 index 0000000000000000000000000000000000000000..a89ef4dbeefa01f5cd7971973aa4db6498d139f7 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/divider/index.json" @@ -0,0 +1,4 @@ +{ + "component": true, + "usingComponents": {} +} diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/divider/index.wxml" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/divider/index.wxml" new file mode 100644 index 0000000000000000000000000000000000000000..f6a5a457b2de3b6b00b580f35e7fa4ca51879c06 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/divider/index.wxml" @@ -0,0 +1,9 @@ + + + + + + diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/divider/index.wxs" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/divider/index.wxs" new file mode 100644 index 0000000000000000000000000000000000000000..215b14f4792ab551d63ee58427cfc94295091378 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/divider/index.wxs" @@ -0,0 +1,18 @@ +/* eslint-disable */ +var style = require('../wxs/style.wxs'); +var addUnit = require('../wxs/add-unit.wxs'); + +function rootStyle(data) { + return style([ + { + 'border-color': data.borderColor, + color: data.textColor, + 'font-size': addUnit(data.fontSize), + }, + data.customStyle, + ]); +} + +module.exports = { + rootStyle: rootStyle, +}; diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/divider/index.wxss" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/divider/index.wxss" new file mode 100644 index 0000000000000000000000000000000000000000..c055e3af96b3f03d78fefbcc8405efa234bcc84b --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/divider/index.wxss" @@ -0,0 +1 @@ +@import '../common/index.wxss';.van-divider{display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;margin:16px 0;margin:var(--divider-margin,16px 0);color:#969799;color:var(--divider-text-color,#969799);font-size:14px;font-size:var(--divider-font-size,14px);line-height:24px;line-height:var(--divider-line-height,24px);border:0 solid #ebedf0;border-color:var(--divider-border-color,#ebedf0)}.van-divider:after,.van-divider:before{display:block;-webkit-flex:1;flex:1;box-sizing:border-box;height:1px;border-color:inherit;border-style:inherit;border-width:1px 0 0}.van-divider:before{content:""}.van-divider--hairline:after,.van-divider--hairline:before{-webkit-transform:scaleY(.5);transform:scaleY(.5)}.van-divider--dashed{border-style:dashed}.van-divider--center:before,.van-divider--left:before,.van-divider--right:before{margin-right:16px;margin-right:var(--divider-content-padding,16px)}.van-divider--center:after,.van-divider--left:after,.van-divider--right:after{content:"";margin-left:16px;margin-left:var(--divider-content-padding,16px)}.van-divider--left:before{max-width:10%;max-width:var(--divider-content-left-width,10%)}.van-divider--right:after{max-width:10%;max-width:var(--divider-content-right-width,10%)} \ No newline at end of file diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/dropdown-item/index.js" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/dropdown-item/index.js" new file mode 100644 index 0000000000000000000000000000000000000000..aac47c99bccf3efcccecee8d82a690c7f61600cc --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/dropdown-item/index.js" @@ -0,0 +1,117 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var relation_1 = require('../common/relation'); +var component_1 = require('../common/component'); +component_1.VantComponent({ + field: true, + relation: relation_1.useParent('dropdown-menu', function () { + this.updateDataFromParent(); + }), + props: { + value: { + type: null, + observer: 'rerender', + }, + title: { + type: String, + observer: 'rerender', + }, + disabled: Boolean, + titleClass: { + type: String, + observer: 'rerender', + }, + options: { + type: Array, + value: [], + observer: 'rerender', + }, + popupStyle: String, + }, + data: { + transition: true, + showPopup: false, + showWrapper: false, + displayTitle: '', + }, + methods: { + rerender: function () { + var _this = this; + wx.nextTick(function () { + var _a; + (_a = _this.parent) === null || _a === void 0 + ? void 0 + : _a.updateItemListData(); + }); + }, + updateDataFromParent: function () { + if (this.parent) { + var _a = this.parent.data, + overlay = _a.overlay, + duration = _a.duration, + activeColor = _a.activeColor, + closeOnClickOverlay = _a.closeOnClickOverlay, + direction = _a.direction; + this.setData({ + overlay: overlay, + duration: duration, + activeColor: activeColor, + closeOnClickOverlay: closeOnClickOverlay, + direction: direction, + }); + } + }, + onOpen: function () { + this.$emit('open'); + }, + onOpened: function () { + this.$emit('opened'); + }, + onClose: function () { + this.$emit('close'); + }, + onClosed: function () { + this.$emit('closed'); + this.setData({ showWrapper: false }); + }, + onOptionTap: function (event) { + var option = event.currentTarget.dataset.option; + var value = option.value; + var shouldEmitChange = this.data.value !== value; + this.setData({ showPopup: false, value: value }); + this.$emit('close'); + this.rerender(); + if (shouldEmitChange) { + this.$emit('change', value); + } + }, + toggle: function (show, options) { + var _this = this; + var _a; + if (options === void 0) { + options = {}; + } + var showPopup = this.data.showPopup; + if (typeof show !== 'boolean') { + show = !showPopup; + } + if (show === showPopup) { + return; + } + this.setData({ + transition: !options.immediate, + showPopup: show, + }); + if (show) { + (_a = this.parent) === null || _a === void 0 + ? void 0 + : _a.getChildWrapperStyle().then(function (wrapperStyle) { + _this.setData({ wrapperStyle: wrapperStyle, showWrapper: true }); + _this.rerender(); + }); + } else { + this.rerender(); + } + }, + }, +}); diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/dropdown-item/index.json" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/dropdown-item/index.json" new file mode 100644 index 0000000000000000000000000000000000000000..88d540990b8eb84cabe720e54930e910490c6715 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/dropdown-item/index.json" @@ -0,0 +1,8 @@ +{ + "component": true, + "usingComponents": { + "van-popup": "../popup/index", + "van-cell": "../cell/index", + "van-icon": "../icon/index" + } +} diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/dropdown-item/index.wxml" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/dropdown-item/index.wxml" new file mode 100644 index 0000000000000000000000000000000000000000..dd75292f8c5ae8ecf10ba79cf5753dff37b80b9c --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/dropdown-item/index.wxml" @@ -0,0 +1,48 @@ + + + + + + + {{ item.text }} + + + + + + + diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/dropdown-item/index.wxss" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/dropdown-item/index.wxss" new file mode 100644 index 0000000000000000000000000000000000000000..7cab3f28a7de958bc08be86cb2012f7a2076eb3e --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/dropdown-item/index.wxss" @@ -0,0 +1 @@ +@import '../common/index.wxss';.van-dropdown-item{position:fixed;right:0;left:0;overflow:hidden}.van-dropdown-item__option{text-align:left}.van-dropdown-item__option--active .van-dropdown-item__icon,.van-dropdown-item__option--active .van-dropdown-item__title{color:#ee0a24;color:var(--dropdown-menu-option-active-color,#ee0a24)}.van-dropdown-item--up{top:0}.van-dropdown-item--down{bottom:0}.van-dropdown-item__icon{display:block;line-height:inherit} \ No newline at end of file diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/dropdown-item/shared.js" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/dropdown-item/shared.js" new file mode 100644 index 0000000000000000000000000000000000000000..db8b17d542e3ed1993a0ade562cf288f0446b1d9 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/dropdown-item/shared.js" @@ -0,0 +1,2 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/dropdown-menu/index.js" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/dropdown-menu/index.js" new file mode 100644 index 0000000000000000000000000000000000000000..9c27c6477625676d45ceefce5446d63f4f638a15 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/dropdown-menu/index.js" @@ -0,0 +1,126 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var component_1 = require('../common/component'); +var relation_1 = require('../common/relation'); +var utils_1 = require('../common/utils'); +var ARRAY = []; +component_1.VantComponent({ + field: true, + relation: relation_1.useChildren('dropdown-item', function () { + this.updateItemListData(); + }), + props: { + activeColor: { + type: String, + observer: 'updateChildrenData', + }, + overlay: { + type: Boolean, + value: true, + observer: 'updateChildrenData', + }, + zIndex: { + type: Number, + value: 10, + }, + duration: { + type: Number, + value: 200, + observer: 'updateChildrenData', + }, + direction: { + type: String, + value: 'down', + observer: 'updateChildrenData', + }, + closeOnClickOverlay: { + type: Boolean, + value: true, + observer: 'updateChildrenData', + }, + closeOnClickOutside: { + type: Boolean, + value: true, + }, + }, + data: { + itemListData: [], + }, + beforeCreate: function () { + var windowHeight = utils_1.getSystemInfoSync().windowHeight; + this.windowHeight = windowHeight; + ARRAY.push(this); + }, + destroyed: function () { + var _this = this; + ARRAY = ARRAY.filter(function (item) { + return item !== _this; + }); + }, + methods: { + updateItemListData: function () { + this.setData({ + itemListData: this.children.map(function (child) { + return child.data; + }), + }); + }, + updateChildrenData: function () { + this.children.forEach(function (child) { + child.updateDataFromParent(); + }); + }, + toggleItem: function (active) { + this.children.forEach(function (item, index) { + var showPopup = item.data.showPopup; + if (index === active) { + item.toggle(); + } else if (showPopup) { + item.toggle(false, { immediate: true }); + } + }); + }, + close: function () { + this.children.forEach(function (child) { + child.toggle(false, { immediate: true }); + }); + }, + getChildWrapperStyle: function () { + var _this = this; + var _a = this.data, + zIndex = _a.zIndex, + direction = _a.direction; + return utils_1.getRect(this, '.van-dropdown-menu').then(function (rect) { + var _a = rect.top, + top = _a === void 0 ? 0 : _a, + _b = rect.bottom, + bottom = _b === void 0 ? 0 : _b; + var offset = direction === 'down' ? bottom : _this.windowHeight - top; + var wrapperStyle = 'z-index: ' + zIndex + ';'; + if (direction === 'down') { + wrapperStyle += 'top: ' + utils_1.addUnit(offset) + ';'; + } else { + wrapperStyle += 'bottom: ' + utils_1.addUnit(offset) + ';'; + } + return wrapperStyle; + }); + }, + onTitleTap: function (event) { + var _this = this; + var index = event.currentTarget.dataset.index; + var child = this.children[index]; + if (!child.data.disabled) { + ARRAY.forEach(function (menuItem) { + if ( + menuItem && + menuItem.data.closeOnClickOutside && + menuItem !== _this + ) { + menuItem.close(); + } + }); + this.toggleItem(index); + } + }, + }, +}); diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/dropdown-menu/index.json" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/dropdown-menu/index.json" new file mode 100644 index 0000000000000000000000000000000000000000..467ce2945f917ae0035594117b51f5304cdcdfa6 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/dropdown-menu/index.json" @@ -0,0 +1,3 @@ +{ + "component": true +} diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/dropdown-menu/index.wxml" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/dropdown-menu/index.wxml" new file mode 100644 index 0000000000000000000000000000000000000000..037ac3b6eaf90cb48ffeb7b5b5a59706aa75355c --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/dropdown-menu/index.wxml" @@ -0,0 +1,23 @@ + + + + + + + + {{ computed.displayTitle(item) }} + + + + + + diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/dropdown-menu/index.wxs" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/dropdown-menu/index.wxs" new file mode 100644 index 0000000000000000000000000000000000000000..65388549c6d2168b32ee11ac2074e095c0804fab --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/dropdown-menu/index.wxs" @@ -0,0 +1,16 @@ +/* eslint-disable */ +function displayTitle(item) { + if (item.title) { + return item.title; + } + + var match = item.options.filter(function(option) { + return option.value === item.value; + }); + var displayTitle = match.length ? match[0].text : ''; + return displayTitle; +} + +module.exports = { + displayTitle: displayTitle +}; diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/dropdown-menu/index.wxss" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/dropdown-menu/index.wxss" new file mode 100644 index 0000000000000000000000000000000000000000..ec6caff634f767b19e169b2a74d8434bb512fa48 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/dropdown-menu/index.wxss" @@ -0,0 +1 @@ +@import '../common/index.wxss';.van-dropdown-menu{display:-webkit-flex;display:flex;box-shadow:0 2px 12px rgba(100,101,102,.12);-webkit-user-select:none;user-select:none;height:50px;height:var(--dropdown-menu-height,50px);background-color:#fff;background-color:var(--dropdown-menu-background-color,#fff)}.van-dropdown-menu__item{display:-webkit-flex;display:flex;-webkit-flex:1;flex:1;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center;min-width:0}.van-dropdown-menu__item:active{opacity:.7}.van-dropdown-menu__item--disabled:active{opacity:1}.van-dropdown-menu__item--disabled .van-dropdown-menu__title{color:#969799;color:var(--dropdown-menu-title-disabled-text-color,#969799)}.van-dropdown-menu__title{position:relative;box-sizing:border-box;max-width:100%;padding:0 8px;padding:var(--dropdown-menu-title-padding,0 8px);color:#323233;color:var(--dropdown-menu-title-text-color,#323233);font-size:15px;font-size:var(--dropdown-menu-title-font-size,15px);line-height:18px;line-height:var(--dropdown-menu-title-line-height,18px)}.van-dropdown-menu__title:after{position:absolute;top:50%;right:-4px;margin-top:-5px;border-color:transparent transparent currentcolor currentcolor;border-style:solid;border-width:3px;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);opacity:.8;content:""}.van-dropdown-menu__title--active{color:#ee0a24;color:var(--dropdown-menu-title-active-text-color,#ee0a24)}.van-dropdown-menu__title--down:after{margin-top:-1px;-webkit-transform:rotate(135deg);transform:rotate(135deg)} \ No newline at end of file diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/empty/index.js" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/empty/index.js" new file mode 100644 index 0000000000000000000000000000000000000000..d5b20259e37e355f957c45ff09826bddb2fbf513 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/empty/index.js" @@ -0,0 +1,12 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +var component_1 = require('../common/component'); +component_1.VantComponent({ + props: { + description: String, + image: { + type: String, + value: 'default', + }, + }, +}); diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/empty/index.json" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/empty/index.json" new file mode 100644 index 0000000000000000000000000000000000000000..e8cfaaf80c404eb97d3cf8b6277ec15f37e6905e --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/empty/index.json" @@ -0,0 +1,4 @@ +{ + "component": true, + "usingComponents": {} +} \ No newline at end of file diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/empty/index.wxml" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/empty/index.wxml" new file mode 100644 index 0000000000000000000000000000000000000000..9c7b719a7249f1bf5dd67f876ccc4123b0a2d609 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/empty/index.wxml" @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + {{ description }} + + + + + + diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/empty/index.wxs" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/empty/index.wxs" new file mode 100644 index 0000000000000000000000000000000000000000..9696dd47452feaefa1f178b9fd8c4da4af280cf7 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/empty/index.wxs" @@ -0,0 +1,14 @@ +/* eslint-disable */ +var PRESETS = ['error', 'search', 'default', 'network']; + +function imageUrl(image) { + if (PRESETS.indexOf(image) !== -1) { + return 'https://img.yzcdn.cn/vant/empty-image-' + image + '.png'; + } + + return image; +} + +module.exports = { + imageUrl: imageUrl, +}; diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/empty/index.wxss" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/empty/index.wxss" new file mode 100644 index 0000000000000000000000000000000000000000..aeb9d4b1506b5b2f37a288b8d5f41e6d209dbb92 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/empty/index.wxss" @@ -0,0 +1 @@ +@import '../common/index.wxss';.van-empty{display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center;box-sizing:border-box;padding:32px 0}.van-empty__image{width:160px;height:160px}.van-empty__image:empty{display:none}.van-empty__image__img{width:100%;height:100%}.van-empty__image:not(:empty)+.van-empty__image{display:none}.van-empty__description{margin-top:16px;padding:0 60px;color:#969799;font-size:14px;line-height:20px}.van-empty__description:empty,.van-empty__description:not(:empty)+.van-empty__description{display:none}.van-empty__bottom{margin-top:24px} \ No newline at end of file diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/field/index.js" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/field/index.js" new file mode 100644 index 0000000000000000000000000000000000000000..e017616a2928c7c5ae8d9853cf4972c01c4b44ba --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/field/index.js" @@ -0,0 +1,151 @@ +'use strict'; +var __assign = + (this && this.__assign) || + function () { + __assign = + Object.assign || + function (t) { + for (var s, i = 1, n = arguments.length; i < n; i++) { + s = arguments[i]; + for (var p in s) + if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p]; + } + return t; + }; + return __assign.apply(this, arguments); + }; +Object.defineProperty(exports, '__esModule', { value: true }); +var utils_1 = require('../common/utils'); +var component_1 = require('../common/component'); +var props_1 = require('./props'); +component_1.VantComponent({ + field: true, + classes: ['input-class', 'right-icon-class', 'label-class'], + props: __assign( + __assign( + __assign(__assign({}, props_1.commonProps), props_1.inputProps), + props_1.textareaProps + ), + { + size: String, + icon: String, + label: String, + error: Boolean, + center: Boolean, + isLink: Boolean, + leftIcon: String, + rightIcon: String, + autosize: null, + required: Boolean, + iconClass: String, + clickable: Boolean, + inputAlign: String, + customStyle: String, + errorMessage: String, + arrowDirection: String, + showWordLimit: Boolean, + errorMessageAlign: String, + readonly: { + type: Boolean, + observer: 'setShowClear', + }, + clearable: { + type: Boolean, + observer: 'setShowClear', + }, + border: { + type: Boolean, + value: true, + }, + titleWidth: { + type: String, + value: '6.2em', + }, + } + ), + data: { + focused: false, + innerValue: '', + showClear: false, + }, + created: function () { + this.value = this.data.value; + this.setData({ innerValue: this.value }); + }, + methods: { + onInput: function (event) { + var _a = (event.detail || {}).value, + value = _a === void 0 ? '' : _a; + this.value = value; + this.setShowClear(); + this.emitChange(); + }, + onFocus: function (event) { + this.focused = true; + this.setShowClear(); + this.$emit('focus', event.detail); + }, + onBlur: function (event) { + this.focused = false; + this.setShowClear(); + this.$emit('blur', event.detail); + }, + onClickIcon: function () { + this.$emit('click-icon'); + }, + onClickInput: function (event) { + this.$emit('click-input', event.detail); + }, + onClear: function () { + var _this = this; + this.setData({ innerValue: '' }); + this.value = ''; + this.setShowClear(); + utils_1.nextTick(function () { + _this.emitChange(); + _this.$emit('clear', ''); + }); + }, + onConfirm: function (event) { + var _a = (event.detail || {}).value, + value = _a === void 0 ? '' : _a; + this.value = value; + this.setShowClear(); + this.$emit('confirm', value); + }, + setValue: function (value) { + this.value = value; + this.setShowClear(); + if (value === '') { + this.setData({ innerValue: '' }); + } + this.emitChange(); + }, + onLineChange: function (event) { + this.$emit('linechange', event.detail); + }, + onKeyboardHeightChange: function (event) { + this.$emit('keyboardheightchange', event.detail); + }, + emitChange: function () { + var _this = this; + this.setData({ value: this.value }); + utils_1.nextTick(function () { + _this.$emit('input', _this.value); + _this.$emit('change', _this.value); + }); + }, + setShowClear: function () { + var _a = this.data, + clearable = _a.clearable, + readonly = _a.readonly; + var _b = this, + focused = _b.focused, + value = _b.value; + this.setData({ + showClear: !!clearable && !!focused && !!value && !readonly, + }); + }, + noop: function () {}, + }, +}); diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/field/index.json" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/field/index.json" new file mode 100644 index 0000000000000000000000000000000000000000..5906c5048acd40f797098314747f67ef4e5107db --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/field/index.json" @@ -0,0 +1,7 @@ +{ + "component": true, + "usingComponents": { + "van-cell": "../cell/index", + "van-icon": "../icon/index" + } +} diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/field/index.wxml" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/field/index.wxml" new file mode 100644 index 0000000000000000000000000000000000000000..9dc8b66607cbad05fe7f5cafcc96c1ebd5460e2f --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/field/index.wxml" @@ -0,0 +1,56 @@ + + + + + + + {{ label }} + + + + + + + + + + + + + + + + + + + + + {{ value.length >= maxlength ? maxlength : value.length }}/{{ maxlength }} + + + {{ errorMessage }} + + diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/field/index.wxs" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/field/index.wxs" new file mode 100644 index 0000000000000000000000000000000000000000..78575b9a87aba798b6c39d6723f84c330b4d1592 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/field/index.wxs" @@ -0,0 +1,18 @@ +/* eslint-disable */ +var style = require('../wxs/style.wxs'); +var addUnit = require('../wxs/add-unit.wxs'); + +function inputStyle(autosize) { + if (autosize && autosize.constructor === 'Object') { + return style({ + 'min-height': addUnit(autosize.minHeight), + 'max-height': addUnit(autosize.maxHeight), + }); + } + + return ''; +} + +module.exports = { + inputStyle: inputStyle, +}; diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/field/index.wxss" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/field/index.wxss" new file mode 100644 index 0000000000000000000000000000000000000000..171f6133ee799d41f6454361fa4b9a37674cc70b --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/field/index.wxss" @@ -0,0 +1 @@ +@import '../common/index.wxss';.van-field{--cell-icon-size:16px;--cell-icon-size:var(--field-icon-size,16px)}.van-field__label{color:#646566;color:var(--field-label-color,#646566)}.van-field__label--disabled{color:#c8c9cc;color:var(--field-disabled-text-color,#c8c9cc)}.van-field__body{display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center}.van-field__body--textarea{box-sizing:border-box;padding:3.6px 0;line-height:1.2em;min-height:24px;min-height:var(--cell-line-height,24px)}.van-field__control:empty+.van-field__control{display:block}.van-field__control{position:relative;display:none;box-sizing:border-box;width:100%;margin:0;padding:0;line-height:inherit;text-align:left;background-color:initial;border:0;resize:none;color:#323233;color:var(--field-input-text-color,#323233);height:24px;height:var(--cell-line-height,24px);min-height:24px;min-height:var(--cell-line-height,24px)}.van-field__control:empty{display:none}.van-field__control--textarea{height:18px;height:var(--field-text-area-min-height,18px);min-height:18px;min-height:var(--field-text-area-min-height,18px)}.van-field__control--error{color:#ee0a24;color:var(--field-input-error-text-color,#ee0a24)}.van-field__control--disabled{background-color:initial;opacity:1;color:#c8c9cc;color:var(--field-input-disabled-text-color,#c8c9cc)}.van-field__control--center{text-align:center}.van-field__control--right{text-align:right}.van-field__control--custom{display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;min-height:24px;min-height:var(--cell-line-height,24px)}.van-field__placeholder{position:absolute;top:0;right:0;left:0;pointer-events:none;color:#c8c9cc;color:var(--field-placeholder-text-color,#c8c9cc)}.van-field__placeholder--error{color:#ee0a24;color:var(--field-error-message-color,#ee0a24)}.van-field__icon-root{display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;min-height:24px;min-height:var(--cell-line-height,24px)}.van-field__clear-root,.van-field__icon-container{line-height:inherit;vertical-align:middle;padding:0 8px;padding:0 var(--padding-xs,8px);margin-right:-8px;margin-right:-var(--padding-xs,8px)}.van-field__button,.van-field__clear-root,.van-field__icon-container{-webkit-flex-shrink:0;flex-shrink:0}.van-field__clear-root{font-size:16px;font-size:var(--field-clear-icon-size,16px);color:#c8c9cc;color:var(--field-clear-icon-color,#c8c9cc)}.van-field__icon-container{font-size:16px;font-size:var(--field-icon-size,16px);color:#969799;color:var(--field-icon-container-color,#969799)}.van-field__icon-container:empty{display:none}.van-field__button{padding-left:8px;padding-left:var(--padding-xs,8px)}.van-field__button:empty{display:none}.van-field__error-message{text-align:left;font-size:12px;font-size:var(--field-error-message-text-font-size,12px);color:#ee0a24;color:var(--field-error-message-color,#ee0a24)}.van-field__error-message--center{text-align:center}.van-field__error-message--right{text-align:right}.van-field__word-limit{text-align:right;margin-top:4px;margin-top:var(--padding-base,4px);color:#646566;color:var(--field-word-limit-color,#646566);font-size:12px;font-size:var(--field-word-limit-font-size,12px);line-height:16px;line-height:var(--field-word-limit-line-height,16px)}.van-field__word-num{display:inline}.van-field__word-num--full{color:#ee0a24;color:var(--field-word-num-full-color,#ee0a24)} \ No newline at end of file diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/field/input.wxml" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/field/input.wxml" new file mode 100644 index 0000000000000000000000000000000000000000..3ecab24380242854bffb9167e3218b4acb46bc78 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/field/input.wxml" @@ -0,0 +1,27 @@ + diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/field/props.js" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/field/props.js" new file mode 100644 index 0000000000000000000000000000000000000000..6ce703be56884a34c9f6148c6fb1fe97c096388e --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/field/props.js" @@ -0,0 +1,66 @@ +'use strict'; +Object.defineProperty(exports, '__esModule', { value: true }); +exports.textareaProps = exports.inputProps = exports.commonProps = void 0; +exports.commonProps = { + value: { + type: String, + observer: function (value) { + if (value !== this.value) { + this.setData({ innerValue: value }); + this.value = value; + } + }, + }, + placeholder: String, + placeholderStyle: String, + placeholderClass: String, + disabled: Boolean, + maxlength: { + type: Number, + value: -1, + }, + cursorSpacing: { + type: Number, + value: 50, + }, + autoFocus: Boolean, + focus: Boolean, + cursor: { + type: Number, + value: -1, + }, + selectionStart: { + type: Number, + value: -1, + }, + selectionEnd: { + type: Number, + value: -1, + }, + adjustPosition: { + type: Boolean, + value: true, + }, + holdKeyboard: Boolean, +}; +exports.inputProps = { + type: { + type: String, + value: 'text', + }, + password: Boolean, + confirmType: String, + confirmHold: Boolean, +}; +exports.textareaProps = { + autoHeight: Boolean, + fixed: Boolean, + showConfirmBar: { + type: Boolean, + value: true, + }, + disableDefaultPadding: { + type: Boolean, + value: true, + }, +}; diff --git "a/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/field/textarea.wxml" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/field/textarea.wxml" new file mode 100644 index 0000000000000000000000000000000000000000..5015a51d2a21b4716c90e3f57410a40d36b39786 --- /dev/null +++ "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/miniprogram_npm/@vant/weapp/field/textarea.wxml" @@ -0,0 +1,29 @@ +