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
+
+
+
+
+ {{ 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 @@
+
+
+
+
+
+
+
+
+
+
+
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 @@
+
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 @@
+
+
+
+
+
+
+
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 @@
+
+
+
+
+
+
+
+ {{ message }}
+
+
+
+
+ {{ 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 @@
+
+
+
+
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 @@
+
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/goods-action-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/goods-action-button/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..3149c85122d2fca5d765947ee42d0c9364c37202
--- /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/goods-action-button/index.js"
@@ -0,0 +1,40 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+var relation_1 = require('../common/relation');
+var button_1 = require('../mixins/button');
+var link_1 = require('../mixins/link');
+var open_type_1 = require('../mixins/open-type');
+component_1.VantComponent({
+ mixins: [link_1.link, button_1.button, open_type_1.openType],
+ relation: relation_1.useParent('goods-action'),
+ props: {
+ text: String,
+ color: String,
+ loading: Boolean,
+ disabled: Boolean,
+ plain: Boolean,
+ type: {
+ type: String,
+ value: 'danger',
+ },
+ },
+ methods: {
+ onClick: function (event) {
+ this.$emit('click', event.detail);
+ this.jumpLink();
+ },
+ updateStyle: function () {
+ if (this.parent == null) {
+ return;
+ }
+ var index = this.index;
+ var _a = this.parent.children,
+ children = _a === void 0 ? [] : _a;
+ this.setData({
+ isFirst: index === 0,
+ isLast: index === children.length - 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/goods-action-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/goods-action-button/index.json"
new file mode 100644
index 0000000000000000000000000000000000000000..b567686850ec6f95a2a40e909f5dd112d2d03b62
--- /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/goods-action-button/index.json"
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-button": "../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/goods-action-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/goods-action-button/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..3912cedb0c53977f8dacdb834b20ab66b7e406f1
--- /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/goods-action-button/index.wxml"
@@ -0,0 +1,30 @@
+
+
+ {{ 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/goods-action-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/goods-action-button/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..77d16c6711710bbf12ec70c3e7f68462aff0a2e4
--- /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/goods-action-button/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';:host{-webkit-flex:1;flex:1}.van-goods-action-button{--button-warning-background-color:linear-gradient(90deg,#ffd01e,#ff8917);--button-warning-background-color:var(--goods-action-button-warning-color,linear-gradient(90deg,#ffd01e,#ff8917));--button-danger-background-color:linear-gradient(90deg,#ff6034,#ee0a24);--button-danger-background-color:var(--goods-action-button-danger-color,linear-gradient(90deg,#ff6034,#ee0a24));--button-default-height:40px;--button-default-height:var(--goods-action-button-height,40px);--button-line-height:20px;--button-line-height:var(--goods-action-button-line-height,20px);--button-plain-background-color:#fff;--button-plain-background-color:var(--goods-action-button-plain-color,#fff);display:block;--button-border-width:0}.van-goods-action-button--first{margin-left:5px;--button-border-radius:20px 0 0 20px;--button-border-radius:var(--goods-action-button-border-radius,20px) 0 0 var(--goods-action-button-border-radius,20px)}.van-goods-action-button--last{margin-right:5px;--button-border-radius:0 20px 20px 0;--button-border-radius:0 var(--goods-action-button-border-radius,20px) var(--goods-action-button-border-radius,20px) 0}.van-goods-action-button--first.van-goods-action-button--last{--button-border-radius:20px;--button-border-radius:var(--goods-action-button-border-radius,20px)}.van-goods-action-button--plain{--button-border-width:1px}.van-goods-action-button__inner{width:100%;font-weight:500!important;font-weight:var(--font-weight-bold,500)!important}@media (max-width:321px){.van-goods-action-button{font-size:13px}}
\ 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/goods-action-icon/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/goods-action-icon/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..0631b2120001cca9a916a6ef543256764e27f09b
--- /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/goods-action-icon/index.js"
@@ -0,0 +1,24 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+var button_1 = require('../mixins/button');
+var link_1 = require('../mixins/link');
+var open_type_1 = require('../mixins/open-type');
+component_1.VantComponent({
+ classes: ['icon-class', 'text-class'],
+ mixins: [link_1.link, button_1.button, open_type_1.openType],
+ props: {
+ text: String,
+ dot: Boolean,
+ info: String,
+ icon: String,
+ disabled: Boolean,
+ loading: Boolean,
+ },
+ 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/goods-action-icon/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/goods-action-icon/index.json"
new file mode 100644
index 0000000000000000000000000000000000000000..93bfe8abb60e11baa5ebf4aa2402203c430db0ac
--- /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/goods-action-icon/index.json"
@@ -0,0 +1,7 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-icon": "../icon/index",
+ "van-button": "../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/goods-action-icon/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/goods-action-icon/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..1983cae4654e8041a67a3d2159e8d02ef5b11800
--- /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/goods-action-icon/index.wxml"
@@ -0,0 +1,35 @@
+
+
+
+ {{ 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/goods-action-icon/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/goods-action-icon/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..eeef19113b9eb2e81c321ecdfd8b2403c9ac20dd
--- /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/goods-action-icon/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-goods-action-icon{display:-webkit-flex!important;display:flex!important;-webkit-flex-direction:column;flex-direction:column;-webkit-justify-content:center!important;justify-content:center!important;line-height:1!important;border:none!important;font-size:10px!important;font-size:var(--goods-action-icon-font-size,10px)!important;color:#646566!important;color:var(--goods-action-icon-text-color,#646566)!important;min-width:48px;min-width:var(--goods-action-icon-width,48px);height:50px!important;height:var(--goods-action-icon-height,50px)!important}.van-goods-action-icon__icon{display:-webkit-flex;display:flex;margin:0 auto 5px;color:#323233;color:var(--goods-action-icon-color,#323233);font-size:18px;font-size:var(--goods-action-icon-size,18px)}
\ 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/goods-action/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/goods-action/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..b58ba946438d999290d0f907f5ac71a60e375b6b
--- /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/goods-action/index.js"
@@ -0,0 +1,17 @@
+'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('goods-action-button', function () {
+ this.children.forEach(function (item) {
+ item.updateStyle();
+ });
+ }),
+ props: {
+ safeAreaInsetBottom: {
+ 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/goods-action/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/goods-action/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/goods-action/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/goods-action/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/goods-action/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..569450c738b936a2a39785eda9778c0efa6c83c4
--- /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/goods-action/index.wxml"
@@ -0,0 +1,5 @@
+
+
+
+
+
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/goods-action/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/goods-action/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..d0def95e14dab0f01319eb27e1fc9620e7e7f28b
--- /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/goods-action/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-goods-action{position:fixed;right:0;bottom:0;left:0;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;box-sizing:initial;height:50px;height:var(--goods-action-height,50px);background-color:#fff;background-color:var(--goods-action-background-color,#fff)}.van-goods-action--safe{padding-bottom:env(safe-area-inset-bottom)}
\ 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/grid-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/grid-item/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..d6644781d0d3bbb8c21f6b6f4d7098f88198eb22
--- /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/grid-item/index.js"
@@ -0,0 +1,58 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+var relation_1 = require('../common/relation');
+var link_1 = require('../mixins/link');
+component_1.VantComponent({
+ relation: relation_1.useParent('grid'),
+ classes: ['content-class', 'icon-class', 'text-class'],
+ mixins: [link_1.link],
+ props: {
+ icon: String,
+ iconColor: String,
+ dot: Boolean,
+ info: null,
+ badge: null,
+ text: String,
+ useSlot: Boolean,
+ },
+ data: {
+ viewStyle: '',
+ },
+ mounted: function () {
+ this.updateStyle();
+ },
+ methods: {
+ updateStyle: function () {
+ if (!this.parent) {
+ return;
+ }
+ var _a = this.parent,
+ data = _a.data,
+ children = _a.children;
+ var columnNum = data.columnNum,
+ border = data.border,
+ square = data.square,
+ gutter = data.gutter,
+ clickable = data.clickable,
+ center = data.center,
+ direction = data.direction,
+ iconSize = data.iconSize;
+ this.setData({
+ center: center,
+ border: border,
+ square: square,
+ gutter: gutter,
+ clickable: clickable,
+ direction: direction,
+ iconSize: iconSize,
+ index: children.indexOf(this),
+ columnNum: columnNum,
+ });
+ },
+ onClick: function () {
+ this.$emit('click');
+ 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/grid-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/grid-item/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/grid-item/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/grid-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/grid-item/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..0070a2bbc617f4508df647957c20bd5a4936a4a1
--- /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/grid-item/index.wxml"
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ 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/grid-item/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/grid-item/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..2cfe37d03ccc8259ffcfb761d6c901027f71cac2
--- /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/grid-item/index.wxs"
@@ -0,0 +1,32 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function wrapperStyle(data) {
+ var width = 100 / data.columnNum + '%';
+
+ return style({
+ width: width,
+ 'padding-top': data.square ? width : null,
+ 'padding-right': addUnit(data.gutter),
+ 'margin-top':
+ data.index >= data.columnNum && !data.square
+ ? addUnit(data.gutter)
+ : null,
+ });
+}
+
+function contentStyle(data) {
+ return data.square
+ ? style({
+ right: addUnit(data.gutter),
+ bottom: addUnit(data.gutter),
+ height: 'auto',
+ })
+ : '';
+}
+
+module.exports = {
+ wrapperStyle: wrapperStyle,
+ contentStyle: contentStyle,
+};
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/grid-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/grid-item/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..ed7facb8e330fa9ec917360063ca9d975de22a0b
--- /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/grid-item/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-grid-item{position:relative;float:left;box-sizing:border-box}.van-grid-item--square{height:0}.van-grid-item__content{display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;box-sizing:border-box;height:100%;padding:16px 8px;padding:var(--grid-item-content-padding,16px 8px);background-color:#fff;background-color:var(--grid-item-content-background-color,#fff)}.van-grid-item__content:after{z-index:1;border-width:0 1px 1px 0;border-bottom-width:var(--border-width-base,1px);border-right-width:var(--border-width-base,1px);border-top-width:0}.van-grid-item__content--surround:after{border-width:1px;border-width:var(--border-width-base,1px)}.van-grid-item__content--center{-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center}.van-grid-item__content--square{position:absolute;top:0;right:0;left:0}.van-grid-item__content--horizontal{-webkit-flex-direction:row;flex-direction:row}.van-grid-item__content--horizontal .van-grid-item__icon+.van-grid-item__text{margin-top:0;margin-left:8px}.van-grid-item__content--clickable:active{background-color:#f2f3f5;background-color:var(--grid-item-content-active-color,#f2f3f5)}.van-grid-item__icon{display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;font-size:26px;font-size:var(--grid-item-icon-size,26px);height:26px;height:var(--grid-item-icon-size,26px)}.van-grid-item__text{word-wrap:break-word;color:#646566;color:var(--grid-item-text-color,#646566);font-size:12px;font-size:var(--grid-item-text-font-size,12px)}.van-grid-item__icon+.van-grid-item__text{margin-top:8px}
\ 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/grid/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/grid/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..e138f2e76b05c3e84c9535b9b0d8c40f7714dbaa
--- /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/grid/index.js"
@@ -0,0 +1,52 @@
+'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('grid-item'),
+ props: {
+ square: {
+ type: Boolean,
+ observer: 'updateChildren',
+ },
+ gutter: {
+ type: null,
+ value: 0,
+ observer: 'updateChildren',
+ },
+ clickable: {
+ type: Boolean,
+ observer: 'updateChildren',
+ },
+ columnNum: {
+ type: Number,
+ value: 4,
+ observer: 'updateChildren',
+ },
+ center: {
+ type: Boolean,
+ value: true,
+ observer: 'updateChildren',
+ },
+ border: {
+ type: Boolean,
+ value: true,
+ observer: 'updateChildren',
+ },
+ direction: {
+ type: String,
+ observer: 'updateChildren',
+ },
+ iconSize: {
+ type: String,
+ observer: 'updateChildren',
+ },
+ },
+ methods: {
+ updateChildren: function () {
+ this.children.forEach(function (child) {
+ child.updateStyle();
+ });
+ },
+ },
+});
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/grid/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/grid/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/grid/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/grid/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/grid/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..2e4118f3583aa3193e488f7121437b4eb176af79
--- /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/grid/index.wxml"
@@ -0,0 +1,8 @@
+
+
+
+
+
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/grid/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/grid/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..cd3b1bd59a948be3912e8051298b63d48f77719b
--- /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/grid/index.wxs"
@@ -0,0 +1,13 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function rootStyle(data) {
+ return style({
+ 'padding-left': addUnit(data.gutter),
+ });
+}
+
+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/grid/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/grid/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..327fc5efd0a95e2527496046f24c6028cf86d7b9
--- /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/grid/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-grid{position:relative;box-sizing:border-box;overflow:hidden}
\ 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/icon/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/icon/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..28839c38a6087927f7876d687d9d6b7b04c52f2d
--- /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/icon/index.js"
@@ -0,0 +1,22 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+component_1.VantComponent({
+ props: {
+ dot: Boolean,
+ info: null,
+ size: null,
+ color: String,
+ customStyle: String,
+ classPrefix: {
+ type: String,
+ value: 'van-icon',
+ },
+ name: String,
+ },
+ methods: {
+ onClick: function () {
+ this.$emit('click');
+ },
+ },
+});
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/icon/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/icon/index.json"
new file mode 100644
index 0000000000000000000000000000000000000000..bf0ebe009c3904229ff4005710f4136b55cf57aa
--- /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/icon/index.json"
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-info": "../info/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/icon/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/icon/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..3c701745ba48735071a00b5eae3d9c2975d4a7b6
--- /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/icon/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/icon/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/icon/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..45e3aa0a1f132fbf0bf922943c359b332c667413
--- /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/icon/index.wxs"
@@ -0,0 +1,39 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function isImage(name) {
+ return name.indexOf('/') !== -1;
+}
+
+function rootClass(data) {
+ var classes = ['custom-class'];
+
+ if (data.classPrefix != null) {
+ classes.push(data.classPrefix);
+ }
+
+ if (isImage(data.name)) {
+ classes.push('van-icon--image');
+ } else if (data.classPrefix != null) {
+ classes.push(data.classPrefix + '-' + data.name);
+ }
+
+ return classes.join(' ');
+}
+
+function rootStyle(data) {
+ return style([
+ {
+ color: data.color,
+ 'font-size': addUnit(data.size),
+ },
+ data.customStyle,
+ ]);
+}
+
+module.exports = {
+ isImage: isImage,
+ rootClass: rootClass,
+ 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/icon/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/icon/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..2d5f87998691b472f320d8799321f6469ff4b3c1
--- /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/icon/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';@font-face{font-weight:400;font-family:vant-icon;font-style:normal;font-display:auto;src:url(https://img01.yzcdn.cn/vant/vant-icon-f463a9.woff2) format("woff2"),url(https://img01.yzcdn.cn/vant/vant-icon-f463a9.woff) format("woff"),url(https://img01.yzcdn.cn/vant/vant-icon-f463a9.ttf) format("truetype")}.van-icon{position:relative;font:normal normal normal 14px/1 vant-icon;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased}.van-icon,.van-icon:before{display:inline-block}.van-icon-add-o:before{content:"\F000"}.van-icon-add-square:before{content:"\F001"}.van-icon-add:before{content:"\F002"}.van-icon-after-sale:before{content:"\F003"}.van-icon-aim:before{content:"\F004"}.van-icon-alipay:before{content:"\F005"}.van-icon-apps-o:before{content:"\F006"}.van-icon-arrow-down:before{content:"\F007"}.van-icon-arrow-left:before{content:"\F008"}.van-icon-arrow-up:before{content:"\F009"}.van-icon-arrow:before{content:"\F00A"}.van-icon-ascending:before{content:"\F00B"}.van-icon-audio:before{content:"\F00C"}.van-icon-award-o:before{content:"\F00D"}.van-icon-award:before{content:"\F00E"}.van-icon-back-top:before{content:"\F0E6"}.van-icon-bag-o:before{content:"\F00F"}.van-icon-bag:before{content:"\F010"}.van-icon-balance-list-o:before{content:"\F011"}.van-icon-balance-list:before{content:"\F012"}.van-icon-balance-o:before{content:"\F013"}.van-icon-balance-pay:before{content:"\F014"}.van-icon-bar-chart-o:before{content:"\F015"}.van-icon-bars:before{content:"\F016"}.van-icon-bell:before{content:"\F017"}.van-icon-bill-o:before{content:"\F018"}.van-icon-bill:before{content:"\F019"}.van-icon-birthday-cake-o:before{content:"\F01A"}.van-icon-bookmark-o:before{content:"\F01B"}.van-icon-bookmark:before{content:"\F01C"}.van-icon-browsing-history-o:before{content:"\F01D"}.van-icon-browsing-history:before{content:"\F01E"}.van-icon-brush-o:before{content:"\F01F"}.van-icon-bulb-o:before{content:"\F020"}.van-icon-bullhorn-o:before{content:"\F021"}.van-icon-calendar-o:before{content:"\F022"}.van-icon-card:before{content:"\F023"}.van-icon-cart-circle-o:before{content:"\F024"}.van-icon-cart-circle:before{content:"\F025"}.van-icon-cart-o:before{content:"\F026"}.van-icon-cart:before{content:"\F027"}.van-icon-cash-back-record:before{content:"\F028"}.van-icon-cash-on-deliver:before{content:"\F029"}.van-icon-cashier-o:before{content:"\F02A"}.van-icon-certificate:before{content:"\F02B"}.van-icon-chart-trending-o:before{content:"\F02C"}.van-icon-chat-o:before{content:"\F02D"}.van-icon-chat:before{content:"\F02E"}.van-icon-checked:before{content:"\F02F"}.van-icon-circle:before{content:"\F030"}.van-icon-clear:before{content:"\F031"}.van-icon-clock-o:before{content:"\F032"}.van-icon-clock:before{content:"\F033"}.van-icon-close:before{content:"\F034"}.van-icon-closed-eye:before{content:"\F035"}.van-icon-cluster-o:before{content:"\F036"}.van-icon-cluster:before{content:"\F037"}.van-icon-column:before{content:"\F038"}.van-icon-comment-circle-o:before{content:"\F039"}.van-icon-comment-circle:before{content:"\F03A"}.van-icon-comment-o:before{content:"\F03B"}.van-icon-comment:before{content:"\F03C"}.van-icon-completed:before{content:"\F03D"}.van-icon-contact:before{content:"\F03E"}.van-icon-coupon-o:before{content:"\F03F"}.van-icon-coupon:before{content:"\F040"}.van-icon-credit-pay:before{content:"\F041"}.van-icon-cross:before{content:"\F042"}.van-icon-debit-pay:before{content:"\F043"}.van-icon-delete-o:before{content:"\F0E9"}.van-icon-delete:before{content:"\F044"}.van-icon-descending:before{content:"\F045"}.van-icon-description:before{content:"\F046"}.van-icon-desktop-o:before{content:"\F047"}.van-icon-diamond-o:before{content:"\F048"}.van-icon-diamond:before{content:"\F049"}.van-icon-discount:before{content:"\F04A"}.van-icon-down:before{content:"\F04B"}.van-icon-ecard-pay:before{content:"\F04C"}.van-icon-edit:before{content:"\F04D"}.van-icon-ellipsis:before{content:"\F04E"}.van-icon-empty:before{content:"\F04F"}.van-icon-enlarge:before{content:"\F0E4"}.van-icon-envelop-o:before{content:"\F050"}.van-icon-exchange:before{content:"\F051"}.van-icon-expand-o:before{content:"\F052"}.van-icon-expand:before{content:"\F053"}.van-icon-eye-o:before{content:"\F054"}.van-icon-eye:before{content:"\F055"}.van-icon-fail:before{content:"\F056"}.van-icon-failure:before{content:"\F057"}.van-icon-filter-o:before{content:"\F058"}.van-icon-fire-o:before{content:"\F059"}.van-icon-fire:before{content:"\F05A"}.van-icon-flag-o:before{content:"\F05B"}.van-icon-flower-o:before{content:"\F05C"}.van-icon-font-o:before{content:"\F0EC"}.van-icon-font:before{content:"\F0EB"}.van-icon-free-postage:before{content:"\F05D"}.van-icon-friends-o:before{content:"\F05E"}.van-icon-friends:before{content:"\F05F"}.van-icon-gem-o:before{content:"\F060"}.van-icon-gem:before{content:"\F061"}.van-icon-gift-card-o:before{content:"\F062"}.van-icon-gift-card:before{content:"\F063"}.van-icon-gift-o:before{content:"\F064"}.van-icon-gift:before{content:"\F065"}.van-icon-gold-coin-o:before{content:"\F066"}.van-icon-gold-coin:before{content:"\F067"}.van-icon-good-job-o:before{content:"\F068"}.van-icon-good-job:before{content:"\F069"}.van-icon-goods-collect-o:before{content:"\F06A"}.van-icon-goods-collect:before{content:"\F06B"}.van-icon-graphic:before{content:"\F06C"}.van-icon-home-o:before{content:"\F06D"}.van-icon-hot-o:before{content:"\F06E"}.van-icon-hot-sale-o:before{content:"\F06F"}.van-icon-hot-sale:before{content:"\F070"}.van-icon-hot:before{content:"\F071"}.van-icon-hotel-o:before{content:"\F072"}.van-icon-idcard:before{content:"\F073"}.van-icon-info-o:before{content:"\F074"}.van-icon-info:before{content:"\F075"}.van-icon-invition:before{content:"\F076"}.van-icon-label-o:before{content:"\F077"}.van-icon-label:before{content:"\F078"}.van-icon-like-o:before{content:"\F079"}.van-icon-like:before{content:"\F07A"}.van-icon-live:before{content:"\F07B"}.van-icon-location-o:before{content:"\F07C"}.van-icon-location:before{content:"\F07D"}.van-icon-lock:before{content:"\F07E"}.van-icon-logistics:before{content:"\F07F"}.van-icon-manager-o:before{content:"\F080"}.van-icon-manager:before{content:"\F081"}.van-icon-map-marked:before{content:"\F082"}.van-icon-medal-o:before{content:"\F083"}.van-icon-medal:before{content:"\F084"}.van-icon-minus:before{content:"\F0E8"}.van-icon-more-o:before{content:"\F085"}.van-icon-more:before{content:"\F086"}.van-icon-music-o:before{content:"\F087"}.van-icon-music:before{content:"\F088"}.van-icon-new-arrival-o:before{content:"\F089"}.van-icon-new-arrival:before{content:"\F08A"}.van-icon-new-o:before{content:"\F08B"}.van-icon-new:before{content:"\F08C"}.van-icon-newspaper-o:before{content:"\F08D"}.van-icon-notes-o:before{content:"\F08E"}.van-icon-orders-o:before{content:"\F08F"}.van-icon-other-pay:before{content:"\F090"}.van-icon-paid:before{content:"\F091"}.van-icon-passed:before{content:"\F092"}.van-icon-pause-circle-o:before{content:"\F093"}.van-icon-pause-circle:before{content:"\F094"}.van-icon-pause:before{content:"\F095"}.van-icon-peer-pay:before{content:"\F096"}.van-icon-pending-payment:before{content:"\F097"}.van-icon-phone-circle-o:before{content:"\F098"}.van-icon-phone-circle:before{content:"\F099"}.van-icon-phone-o:before{content:"\F09A"}.van-icon-phone:before{content:"\F09B"}.van-icon-photo-fail:before{content:"\F0E5"}.van-icon-photo-o:before{content:"\F09C"}.van-icon-photo:before{content:"\F09D"}.van-icon-photograph:before{content:"\F09E"}.van-icon-play-circle-o:before{content:"\F09F"}.van-icon-play-circle:before{content:"\F0A0"}.van-icon-play:before{content:"\F0A1"}.van-icon-plus:before{content:"\F0A2"}.van-icon-point-gift-o:before{content:"\F0A3"}.van-icon-point-gift:before{content:"\F0A4"}.van-icon-points:before{content:"\F0A5"}.van-icon-printer:before{content:"\F0A6"}.van-icon-qr-invalid:before{content:"\F0A7"}.van-icon-qr:before{content:"\F0A8"}.van-icon-question-o:before{content:"\F0A9"}.van-icon-question:before{content:"\F0AA"}.van-icon-records:before{content:"\F0AB"}.van-icon-refund-o:before{content:"\F0AC"}.van-icon-replay:before{content:"\F0AD"}.van-icon-revoke:before{content:"\F0ED"}.van-icon-scan:before{content:"\F0AE"}.van-icon-search:before{content:"\F0AF"}.van-icon-send-gift-o:before{content:"\F0B0"}.van-icon-send-gift:before{content:"\F0B1"}.van-icon-service-o:before{content:"\F0B2"}.van-icon-service:before{content:"\F0B3"}.van-icon-setting-o:before{content:"\F0B4"}.van-icon-setting:before{content:"\F0B5"}.van-icon-share-o:before{content:"\F0E7"}.van-icon-share:before{content:"\F0B6"}.van-icon-shop-collect-o:before{content:"\F0B7"}.van-icon-shop-collect:before{content:"\F0B8"}.van-icon-shop-o:before{content:"\F0B9"}.van-icon-shop:before{content:"\F0BA"}.van-icon-shopping-cart-o:before{content:"\F0BB"}.van-icon-shopping-cart:before{content:"\F0BC"}.van-icon-shrink:before{content:"\F0BD"}.van-icon-sign:before{content:"\F0BE"}.van-icon-smile-comment-o:before{content:"\F0BF"}.van-icon-smile-comment:before{content:"\F0C0"}.van-icon-smile-o:before{content:"\F0C1"}.van-icon-smile:before{content:"\F0C2"}.van-icon-sort:before{content:"\F0EA"}.van-icon-star-o:before{content:"\F0C3"}.van-icon-star:before{content:"\F0C4"}.van-icon-stop-circle-o:before{content:"\F0C5"}.van-icon-stop-circle:before{content:"\F0C6"}.van-icon-stop:before{content:"\F0C7"}.van-icon-success:before{content:"\F0C8"}.van-icon-thumb-circle-o:before{content:"\F0C9"}.van-icon-thumb-circle:before{content:"\F0CA"}.van-icon-todo-list-o:before{content:"\F0CB"}.van-icon-todo-list:before{content:"\F0CC"}.van-icon-tosend:before{content:"\F0CD"}.van-icon-tv-o:before{content:"\F0CE"}.van-icon-umbrella-circle:before{content:"\F0CF"}.van-icon-underway-o:before{content:"\F0D0"}.van-icon-underway:before{content:"\F0D1"}.van-icon-upgrade:before{content:"\F0D2"}.van-icon-user-circle-o:before{content:"\F0D3"}.van-icon-user-o:before{content:"\F0D4"}.van-icon-video-o:before{content:"\F0D5"}.van-icon-video:before{content:"\F0D6"}.van-icon-vip-card-o:before{content:"\F0D7"}.van-icon-vip-card:before{content:"\F0D8"}.van-icon-volume-o:before{content:"\F0D9"}.van-icon-volume:before{content:"\F0DA"}.van-icon-wap-home-o:before{content:"\F0DB"}.van-icon-wap-home:before{content:"\F0DC"}.van-icon-wap-nav:before{content:"\F0DD"}.van-icon-warn-o:before{content:"\F0DE"}.van-icon-warning-o:before{content:"\F0DF"}.van-icon-warning:before{content:"\F0E0"}.van-icon-weapp-nav:before{content:"\F0E1"}.van-icon-wechat-pay:before{content:"\F0E2"}.van-icon-wechat:before{content:"\F0EE"}.van-icon-youzan-shield:before{content:"\F0E3"}:host{display:-webkit-inline-flex;display:inline-flex;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center}.van-icon--image{width:1em;height:1em}.van-icon__image{width:100%;height:100%}.van-icon__info{z-index:1}
\ 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/image/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/image/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..cad3c7145193a519c2ff7a1c091f98088d76d8f5
--- /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/image/index.js"
@@ -0,0 +1,63 @@
+'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');
+component_1.VantComponent({
+ mixins: [button_1.button, open_type_1.openType],
+ classes: ['custom-class', 'loading-class', 'error-class', 'image-class'],
+ props: {
+ src: {
+ type: String,
+ observer: function () {
+ this.setData({
+ error: false,
+ loading: true,
+ });
+ },
+ },
+ round: Boolean,
+ width: null,
+ height: null,
+ radius: null,
+ lazyLoad: Boolean,
+ useErrorSlot: Boolean,
+ useLoadingSlot: Boolean,
+ showMenuByLongpress: Boolean,
+ fit: {
+ type: String,
+ value: 'fill',
+ },
+ showError: {
+ type: Boolean,
+ value: true,
+ },
+ showLoading: {
+ type: Boolean,
+ value: true,
+ },
+ },
+ data: {
+ error: false,
+ loading: true,
+ viewStyle: '',
+ },
+ methods: {
+ onLoad: function (event) {
+ this.setData({
+ loading: false,
+ });
+ this.$emit('load', event.detail);
+ },
+ onError: function (event) {
+ this.setData({
+ loading: false,
+ error: true,
+ });
+ this.$emit('error', event.detail);
+ },
+ onClick: function (event) {
+ this.$emit('click', event.detail);
+ },
+ },
+});
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/image/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/image/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/image/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/image/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/image/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..d3092bd927962f5e9b8efecdbfd45d1fec8d1047
--- /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/image/index.wxml"
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
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/image/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/image/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..cec14b8ba8ad2401e523469e2c7cc98c76f7e7d4
--- /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/image/index.wxs"
@@ -0,0 +1,32 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function rootStyle(data) {
+ return style([
+ {
+ width: addUnit(data.width),
+ height: addUnit(data.height),
+ 'border-radius': addUnit(data.radius),
+ },
+ data.radius ? 'overflow: hidden' : null,
+ ]);
+}
+
+var FIT_MODE_MAP = {
+ none: 'center',
+ fill: 'scaleToFill',
+ cover: 'aspectFill',
+ contain: 'aspectFit',
+ widthFix: 'widthFix',
+ heightFix: 'heightFix',
+};
+
+function mode(fit) {
+ return FIT_MODE_MAP[fit];
+}
+
+module.exports = {
+ rootStyle: rootStyle,
+ mode: mode,
+};
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/image/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/image/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..47589109a83a5981d73282c131ccd242976037c2
--- /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/image/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-image{position:relative;display:inline-block}.van-image--round{overflow:hidden;border-radius:50%}.van-image--round .van-image__img{border-radius:inherit}.van-image__error,.van-image__img,.van-image__loading{display:block;width:100%;height:100%}.van-image__error,.van-image__loading{position:absolute;top:0;left:0;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;color:#969799;color:var(--image-placeholder-text-color,#969799);font-size:14px;font-size:var(--image-placeholder-font-size,14px);background-color:#f7f8fa;background-color:var(--image-placeholder-background-color,#f7f8fa)}.van-image__loading-icon{color:#dcdee0;color:var(--image-loading-icon-color,#dcdee0);font-size:32px!important;font-size:var(--image-loading-icon-size,32px)!important}.van-image__error-icon{color:#dcdee0;color:var(--image-error-icon-color,#dcdee0);font-size:32px!important;font-size:var(--image-error-icon-size,32px)!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/index-anchor/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/index-anchor/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..2970257dc7461644e01c6cdd84fd3adf609a4f7b
--- /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/index-anchor/index.js"
@@ -0,0 +1,28 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var utils_1 = require('../common/utils');
+var component_1 = require('../common/component');
+var relation_1 = require('../common/relation');
+component_1.VantComponent({
+ relation: relation_1.useParent('index-bar'),
+ props: {
+ useSlot: Boolean,
+ index: null,
+ },
+ data: {
+ active: false,
+ wrapperStyle: '',
+ anchorStyle: '',
+ },
+ methods: {
+ scrollIntoView: function (scrollTop) {
+ var _this = this;
+ utils_1.getRect(this, '.van-index-anchor-wrapper').then(function (rect) {
+ wx.pageScrollTo({
+ duration: 0,
+ scrollTop: scrollTop + rect.top - _this.parent.data.stickyOffsetTop,
+ });
+ });
+ },
+ },
+});
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/index-anchor/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/index-anchor/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/index-anchor/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/index-anchor/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/index-anchor/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..49affa7c456f035d7698b11e94f2c11294ed4c97
--- /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/index-anchor/index.wxml"
@@ -0,0 +1,14 @@
+
+
+
+
+ {{ 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/index-anchor/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/index-anchor/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..b8c3c0a48f9e0cfe5d4871038bb5daed1a02a298
--- /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/index-anchor/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-index-anchor{padding:0 16px;padding:var(--index-anchor-padding,0 16px);color:#323233;color:var(--index-anchor-text-color,#323233);font-weight:500;font-weight:var(--index-anchor-font-weight,500);font-size:14px;font-size:var(--index-anchor-font-size,14px);line-height:32px;line-height:var(--index-anchor-line-height,32px);background-color:initial;background-color:var(--index-anchor-background-color,transparent)}.van-index-anchor--active{right:0;left:0;color:#07c160;color:var(--index-anchor-active-text-color,#07c160);background-color:#fff;background-color:var(--index-anchor-active-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/index-bar/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/index-bar/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..ebb30545462a69f4bc9eea82eb7a33f4590cdcc9
--- /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/index-bar/index.js"
@@ -0,0 +1,278 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var color_1 = require('../common/color');
+var component_1 = require('../common/component');
+var relation_1 = require('../common/relation');
+var utils_1 = require('../common/utils');
+var page_scroll_1 = require('../mixins/page-scroll');
+var indexList = function () {
+ var indexList = [];
+ var charCodeOfA = 'A'.charCodeAt(0);
+ for (var i = 0; i < 26; i++) {
+ indexList.push(String.fromCharCode(charCodeOfA + i));
+ }
+ return indexList;
+};
+component_1.VantComponent({
+ relation: relation_1.useChildren('index-anchor', function () {
+ this.updateData();
+ }),
+ props: {
+ sticky: {
+ type: Boolean,
+ value: true,
+ },
+ zIndex: {
+ type: Number,
+ value: 1,
+ },
+ highlightColor: {
+ type: String,
+ value: color_1.GREEN,
+ },
+ stickyOffsetTop: {
+ type: Number,
+ value: 0,
+ },
+ indexList: {
+ type: Array,
+ value: indexList(),
+ },
+ },
+ mixins: [
+ page_scroll_1.pageScrollMixin(function (event) {
+ this.scrollTop =
+ (event === null || event === void 0 ? void 0 : event.scrollTop) || 0;
+ this.onScroll();
+ }),
+ ],
+ data: {
+ activeAnchorIndex: null,
+ showSidebar: false,
+ },
+ created: function () {
+ this.scrollTop = 0;
+ },
+ methods: {
+ updateData: function () {
+ var _this = this;
+ wx.nextTick(function () {
+ if (_this.timer != null) {
+ clearTimeout(_this.timer);
+ }
+ _this.timer = setTimeout(function () {
+ _this.setData({
+ showSidebar: !!_this.children.length,
+ });
+ _this.setRect().then(function () {
+ _this.onScroll();
+ });
+ }, 0);
+ });
+ },
+ setRect: function () {
+ return Promise.all([
+ this.setAnchorsRect(),
+ this.setListRect(),
+ this.setSiderbarRect(),
+ ]);
+ },
+ setAnchorsRect: function () {
+ var _this = this;
+ return Promise.all(
+ this.children.map(function (anchor) {
+ return utils_1
+ .getRect(anchor, '.van-index-anchor-wrapper')
+ .then(function (rect) {
+ Object.assign(anchor, {
+ height: rect.height,
+ top: rect.top + _this.scrollTop,
+ });
+ });
+ })
+ );
+ },
+ setListRect: function () {
+ var _this = this;
+ return utils_1.getRect(this, '.van-index-bar').then(function (rect) {
+ Object.assign(_this, {
+ height: rect.height,
+ top: rect.top + _this.scrollTop,
+ });
+ });
+ },
+ setSiderbarRect: function () {
+ var _this = this;
+ return utils_1
+ .getRect(this, '.van-index-bar__sidebar')
+ .then(function (res) {
+ _this.sidebar = {
+ height: res.height,
+ top: res.top,
+ };
+ });
+ },
+ setDiffData: function (_a) {
+ var target = _a.target,
+ data = _a.data;
+ var diffData = {};
+ Object.keys(data).forEach(function (key) {
+ if (target.data[key] !== data[key]) {
+ diffData[key] = data[key];
+ }
+ });
+ if (Object.keys(diffData).length) {
+ target.setData(diffData);
+ }
+ },
+ getAnchorRect: function (anchor) {
+ return utils_1
+ .getRect(anchor, '.van-index-anchor-wrapper')
+ .then(function (rect) {
+ return {
+ height: rect.height,
+ top: rect.top,
+ };
+ });
+ },
+ getActiveAnchorIndex: function () {
+ var _a = this,
+ children = _a.children,
+ scrollTop = _a.scrollTop;
+ var _b = this.data,
+ sticky = _b.sticky,
+ stickyOffsetTop = _b.stickyOffsetTop;
+ for (var i = this.children.length - 1; i >= 0; i--) {
+ var preAnchorHeight = i > 0 ? children[i - 1].height : 0;
+ var reachTop = sticky ? preAnchorHeight + stickyOffsetTop : 0;
+ if (reachTop + scrollTop >= children[i].top) {
+ return i;
+ }
+ }
+ return -1;
+ },
+ onScroll: function () {
+ var _this = this;
+ var _a = this,
+ _b = _a.children,
+ children = _b === void 0 ? [] : _b,
+ scrollTop = _a.scrollTop;
+ if (!children.length) {
+ return;
+ }
+ var _c = this.data,
+ sticky = _c.sticky,
+ stickyOffsetTop = _c.stickyOffsetTop,
+ zIndex = _c.zIndex,
+ highlightColor = _c.highlightColor;
+ var active = this.getActiveAnchorIndex();
+ this.setDiffData({
+ target: this,
+ data: {
+ activeAnchorIndex: active,
+ },
+ });
+ if (sticky) {
+ var isActiveAnchorSticky_1 = false;
+ if (active !== -1) {
+ isActiveAnchorSticky_1 =
+ children[active].top <= stickyOffsetTop + scrollTop;
+ }
+ children.forEach(function (item, index) {
+ if (index === active) {
+ var wrapperStyle = '';
+ var anchorStyle =
+ '\n color: ' + highlightColor + ';\n ';
+ if (isActiveAnchorSticky_1) {
+ wrapperStyle =
+ '\n height: ' +
+ children[index].height +
+ 'px;\n ';
+ anchorStyle =
+ '\n position: fixed;\n top: ' +
+ stickyOffsetTop +
+ 'px;\n z-index: ' +
+ zIndex +
+ ';\n color: ' +
+ highlightColor +
+ ';\n ';
+ }
+ _this.setDiffData({
+ target: item,
+ data: {
+ active: true,
+ anchorStyle: anchorStyle,
+ wrapperStyle: wrapperStyle,
+ },
+ });
+ } else if (index === active - 1) {
+ var currentAnchor = children[index];
+ var currentOffsetTop = currentAnchor.top;
+ var targetOffsetTop =
+ index === children.length - 1
+ ? _this.top
+ : children[index + 1].top;
+ var parentOffsetHeight = targetOffsetTop - currentOffsetTop;
+ var translateY = parentOffsetHeight - currentAnchor.height;
+ var anchorStyle =
+ '\n position: relative;\n transform: translate3d(0, ' +
+ translateY +
+ 'px, 0);\n z-index: ' +
+ zIndex +
+ ';\n color: ' +
+ highlightColor +
+ ';\n ';
+ _this.setDiffData({
+ target: item,
+ data: {
+ active: true,
+ anchorStyle: anchorStyle,
+ },
+ });
+ } else {
+ _this.setDiffData({
+ target: item,
+ data: {
+ active: false,
+ anchorStyle: '',
+ wrapperStyle: '',
+ },
+ });
+ }
+ });
+ }
+ },
+ onClick: function (event) {
+ this.scrollToAnchor(event.target.dataset.index);
+ },
+ onTouchMove: function (event) {
+ var sidebarLength = this.children.length;
+ var touch = event.touches[0];
+ var itemHeight = this.sidebar.height / sidebarLength;
+ var index = Math.floor((touch.clientY - this.sidebar.top) / itemHeight);
+ if (index < 0) {
+ index = 0;
+ } else if (index > sidebarLength - 1) {
+ index = sidebarLength - 1;
+ }
+ this.scrollToAnchor(index);
+ },
+ onTouchStop: function () {
+ this.scrollToAnchorIndex = null;
+ },
+ scrollToAnchor: function (index) {
+ var _this = this;
+ if (typeof index !== 'number' || this.scrollToAnchorIndex === index) {
+ return;
+ }
+ this.scrollToAnchorIndex = index;
+ var anchor = this.children.find(function (item) {
+ return item.data.index === _this.data.indexList[index];
+ });
+ if (anchor) {
+ anchor.scrollIntoView(this.scrollTop);
+ this.$emit('select', anchor.data.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/index-bar/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/index-bar/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/index-bar/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/index-bar/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/index-bar/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..19a59cf9d4b29e1a17e0d70fb082b0d6e4efb901
--- /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/index-bar/index.wxml"
@@ -0,0 +1,22 @@
+
+
+
+
+
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/index-bar/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/index-bar/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..dba5dc071f0a5c048806a8b1ee7b17a14a6e0651
--- /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/index-bar/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-index-bar{position:relative}.van-index-bar__sidebar{position:fixed;top:50%;right:0;display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;text-align:center;-webkit-transform:translateY(-50%);transform:translateY(-50%);-webkit-user-select:none;user-select:none}.van-index-bar__index{font-weight:500;padding:0 4px 0 16px;padding:0 var(--padding-base,4px) 0 var(--padding-md,16px);font-size:10px;font-size:var(--index-bar-index-font-size,10px);line-height:14px;line-height:var(--index-bar-index-line-height,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/info/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/info/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..a08ad2ca8b5a3ac519e6fbb9d8a93ba9fdbbb2b6
--- /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/info/index.js"
@@ -0,0 +1,10 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+component_1.VantComponent({
+ props: {
+ dot: Boolean,
+ info: null,
+ 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/info/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/info/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/info/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/info/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/info/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..b39b52459903981d61ff38bd135cb7eda703df5b
--- /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/info/index.wxml"
@@ -0,0 +1,7 @@
+
+
+{{ dot ? '' : info }}
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/info/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/info/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..953136a585f38379fa646445698d5ffe7fcb1a74
--- /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/info/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-info{position:absolute;top:0;right:0;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;white-space:nowrap;-webkit-transform:translate(50%,-50%);transform:translate(50%,-50%);-webkit-transform-origin:100%;transform-origin:100%;height:16px;height:var(--info-size,16px);min-width:16px;min-width:var(--info-size,16px);padding:0 3px;padding:var(--info-padding,0 3px);color:#fff;color:var(--info-color,#fff);font-weight:500;font-weight:var(--info-font-weight,500);font-size:12px;font-size:var(--info-font-size,12px);font-family:-apple-system-font,Helvetica Neue,Arial,sans-serif;font-family:var(--info-font-family,-apple-system-font,Helvetica Neue,Arial,sans-serif);background-color:#ee0a24;background-color:var(--info-background-color,#ee0a24);border:1px solid #fff;border:var(--info-border-width,1px) solid var(--white,#fff);border-radius:16px;border-radius:var(--info-size,16px)}.van-info--dot{min-width:0;border-radius:100%;width:8px;width:var(--info-dot-size,8px);height:8px;height:var(--info-dot-size,8px);background-color:#ee0a24;background-color:var(--info-dot-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/loading/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/loading/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..5aa2a817d92031f30adea64c7dd5cc7e7898df3b
--- /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/loading/index.js"
@@ -0,0 +1,18 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+component_1.VantComponent({
+ props: {
+ color: String,
+ vertical: Boolean,
+ type: {
+ type: String,
+ value: 'circular',
+ },
+ size: String,
+ textSize: String,
+ },
+ data: {
+ array12: Array.from({ length: 12 }),
+ },
+});
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/loading/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/loading/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/loading/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/loading/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/loading/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..7d4a5397bb1347c5530b6f977cb7fd1fdf29b460
--- /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/loading/index.wxml"
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
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/loading/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/loading/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..02a0b800c651e55938ecc3ee12d10e37b3782614
--- /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/loading/index.wxs"
@@ -0,0 +1,22 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function spinnerStyle(data) {
+ return style({
+ color: data.color,
+ width: addUnit(data.size),
+ height: addUnit(data.size),
+ });
+}
+
+function textStyle(data) {
+ return style({
+ 'font-size': addUnit(data.textSize),
+ });
+}
+
+module.exports = {
+ spinnerStyle: spinnerStyle,
+ textStyle: textStyle,
+};
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/loading/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/loading/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..f28a6b46fd4eac7258261e5ef72f692d75341394
--- /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/loading/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';:host{font-size:0;line-height:1}.van-loading{display:-webkit-inline-flex;display:inline-flex;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center;color:#c8c9cc;color:var(--loading-spinner-color,#c8c9cc)}.van-loading__spinner{position:relative;box-sizing:border-box;width:30px;width:var(--loading-spinner-size,30px);max-width:100%;max-height:100%;height:30px;height:var(--loading-spinner-size,30px);-webkit-animation:van-rotate .8s linear infinite;animation:van-rotate .8s linear infinite;-webkit-animation:van-rotate var(--loading-spinner-animation-duration,.8s) linear infinite;animation:van-rotate var(--loading-spinner-animation-duration,.8s) linear infinite}.van-loading__spinner--spinner{-webkit-animation-timing-function:steps(12);animation-timing-function:steps(12)}.van-loading__spinner--circular{border:1px solid transparent;border-top-color:initial;border-radius:100%}.van-loading__text{margin-left:8px;margin-left:var(--padding-xs,8px);color:#969799;color:var(--loading-text-color,#969799);font-size:14px;font-size:var(--loading-text-font-size,14px);line-height:20px;line-height:var(--loading-text-line-height,20px)}.van-loading__text:empty{display:none}.van-loading--vertical{-webkit-flex-direction:column;flex-direction:column}.van-loading--vertical .van-loading__text{margin:8px 0 0;margin:var(--padding-xs,8px) 0 0}.van-loading__dot{position:absolute;top:0;left:0;width:100%;height:100%}.van-loading__dot:before{display:block;width:2px;height:25%;margin:0 auto;background-color:currentColor;border-radius:40%;content:" "}.van-loading__dot:first-of-type{-webkit-transform:rotate(30deg);transform:rotate(30deg);opacity:1}.van-loading__dot:nth-of-type(2){-webkit-transform:rotate(60deg);transform:rotate(60deg);opacity:.9375}.van-loading__dot:nth-of-type(3){-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:.875}.van-loading__dot:nth-of-type(4){-webkit-transform:rotate(120deg);transform:rotate(120deg);opacity:.8125}.van-loading__dot:nth-of-type(5){-webkit-transform:rotate(150deg);transform:rotate(150deg);opacity:.75}.van-loading__dot:nth-of-type(6){-webkit-transform:rotate(180deg);transform:rotate(180deg);opacity:.6875}.van-loading__dot:nth-of-type(7){-webkit-transform:rotate(210deg);transform:rotate(210deg);opacity:.625}.van-loading__dot:nth-of-type(8){-webkit-transform:rotate(240deg);transform:rotate(240deg);opacity:.5625}.van-loading__dot:nth-of-type(9){-webkit-transform:rotate(270deg);transform:rotate(270deg);opacity:.5}.van-loading__dot:nth-of-type(10){-webkit-transform:rotate(300deg);transform:rotate(300deg);opacity:.4375}.van-loading__dot:nth-of-type(11){-webkit-transform:rotate(330deg);transform:rotate(330deg);opacity:.375}.van-loading__dot:nth-of-type(12){-webkit-transform:rotate(1turn);transform:rotate(1turn);opacity:.3125}@-webkit-keyframes van-rotate{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes van-rotate{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}
\ 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/mixins/basic.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/mixins/basic.js"
new file mode 100644
index 0000000000000000000000000000000000000000..4505ce50b84d7973db7b18d3af51c4d8aa12d9e2
--- /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/mixins/basic.js"
@@ -0,0 +1,16 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+exports.basic = void 0;
+exports.basic = Behavior({
+ methods: {
+ $emit: function (name, detail, options) {
+ this.triggerEvent(name, detail, options);
+ },
+ set: function (data) {
+ this.setData(data);
+ return new Promise(function (resolve) {
+ return wx.nextTick(resolve);
+ });
+ },
+ },
+});
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/mixins/button.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/mixins/button.js"
new file mode 100644
index 0000000000000000000000000000000000000000..8de45e9d3decf9afe401ce1afab6785eac8befb3
--- /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/mixins/button.js"
@@ -0,0 +1,18 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+exports.button = void 0;
+exports.button = Behavior({
+ externalClasses: ['hover-class'],
+ properties: {
+ id: String,
+ lang: String,
+ businessId: Number,
+ sessionFrom: String,
+ sendMessageTitle: String,
+ sendMessagePath: String,
+ sendMessageImg: String,
+ showMessageCard: Boolean,
+ appParameter: String,
+ ariaLabel: 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/mixins/link.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/mixins/link.js"
new file mode 100644
index 0000000000000000000000000000000000000000..0c09dab0fca2f7f7d5fad27d22abbf8965b538c2
--- /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/mixins/link.js"
@@ -0,0 +1,30 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+exports.link = void 0;
+exports.link = Behavior({
+ properties: {
+ url: String,
+ linkType: {
+ type: String,
+ value: 'navigateTo',
+ },
+ },
+ methods: {
+ jumpLink: function (urlKey) {
+ if (urlKey === void 0) {
+ urlKey = 'url';
+ }
+ var url = this.data[urlKey];
+ if (url) {
+ if (
+ this.data.linkType === 'navigateTo' &&
+ getCurrentPages().length > 9
+ ) {
+ wx.redirectTo({ url: url });
+ } else {
+ wx[this.data.linkType]({ url: url });
+ }
+ }
+ },
+ },
+});
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/mixins/open-type.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/mixins/open-type.js"
new file mode 100644
index 0000000000000000000000000000000000000000..45e61554afa744f56ff2df1b52395fa480bb421e
--- /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/mixins/open-type.js"
@@ -0,0 +1,29 @@
+'use strict';
+// @ts-nocheck
+Object.defineProperty(exports, '__esModule', { value: true });
+exports.openType = void 0;
+exports.openType = Behavior({
+ properties: {
+ openType: String,
+ },
+ methods: {
+ bindGetUserInfo: function (event) {
+ this.$emit('getuserinfo', event.detail);
+ },
+ bindContact: function (event) {
+ this.$emit('contact', event.detail);
+ },
+ bindGetPhoneNumber: function (event) {
+ this.$emit('getphonenumber', event.detail);
+ },
+ bindError: function (event) {
+ this.$emit('error', event.detail);
+ },
+ bindLaunchApp: function (event) {
+ this.$emit('launchapp', event.detail);
+ },
+ bindOpenSetting: function (event) {
+ this.$emit('opensetting', event.detail);
+ },
+ },
+});
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/mixins/page-scroll.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/mixins/page-scroll.js"
new file mode 100644
index 0000000000000000000000000000000000000000..7c03259edb880acf8a33c523b97fff2c4fa6c4bd
--- /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/mixins/page-scroll.js"
@@ -0,0 +1,40 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+exports.pageScrollMixin = void 0;
+var utils_1 = require('../common/utils');
+function onPageScroll(event) {
+ var _a = utils_1.getCurrentPage().vanPageScroller,
+ vanPageScroller = _a === void 0 ? [] : _a;
+ vanPageScroller.forEach(function (scroller) {
+ if (typeof scroller === 'function') {
+ // @ts-ignore
+ scroller(event);
+ }
+ });
+}
+exports.pageScrollMixin = function (scroller) {
+ return Behavior({
+ attached: function () {
+ var page = utils_1.getCurrentPage();
+ if (Array.isArray(page.vanPageScroller)) {
+ page.vanPageScroller.push(scroller.bind(this));
+ } else {
+ page.vanPageScroller =
+ typeof page.onPageScroll === 'function'
+ ? [page.onPageScroll.bind(page), scroller.bind(this)]
+ : [scroller.bind(this)];
+ }
+ page.onPageScroll = onPageScroll;
+ },
+ detached: function () {
+ var _a;
+ var page = utils_1.getCurrentPage();
+ page.vanPageScroller =
+ ((_a = page.vanPageScroller) === null || _a === void 0
+ ? void 0
+ : _a.filter(function (item) {
+ return item !== scroller;
+ })) || [];
+ },
+ });
+};
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/mixins/touch.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/mixins/touch.js"
new file mode 100644
index 0000000000000000000000000000000000000000..9c6da11aac831a9badb2ecfd0c25407f6aa90c7d
--- /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/mixins/touch.js"
@@ -0,0 +1,40 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+exports.touch = void 0;
+// @ts-nocheck
+var MIN_DISTANCE = 10;
+function getDirection(x, y) {
+ if (x > y && x > MIN_DISTANCE) {
+ return 'horizontal';
+ }
+ if (y > x && y > MIN_DISTANCE) {
+ return 'vertical';
+ }
+ return '';
+}
+exports.touch = Behavior({
+ methods: {
+ resetTouchStatus: function () {
+ this.direction = '';
+ this.deltaX = 0;
+ this.deltaY = 0;
+ this.offsetX = 0;
+ this.offsetY = 0;
+ },
+ touchStart: function (event) {
+ this.resetTouchStatus();
+ var touch = event.touches[0];
+ this.startX = touch.clientX;
+ this.startY = touch.clientY;
+ },
+ touchMove: function (event) {
+ var touch = event.touches[0];
+ this.deltaX = touch.clientX - this.startX;
+ this.deltaY = touch.clientY - this.startY;
+ this.offsetX = Math.abs(this.deltaX);
+ this.offsetY = Math.abs(this.deltaY);
+ this.direction =
+ this.direction || getDirection(this.offsetX, this.offsetY);
+ },
+ },
+});
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/mixins/transition.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/mixins/transition.js"
new file mode 100644
index 0000000000000000000000000000000000000000..9165aefca65763e1062d2bc1e1393dd8aea2977e
--- /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/mixins/transition.js"
@@ -0,0 +1,155 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+exports.transition = void 0;
+// @ts-nocheck
+var utils_1 = require('../common/utils');
+var validator_1 = require('../common/validator');
+var getClassNames = function (name) {
+ return {
+ enter:
+ 'van-' +
+ name +
+ '-enter van-' +
+ name +
+ '-enter-active enter-class enter-active-class',
+ 'enter-to':
+ 'van-' +
+ name +
+ '-enter-to van-' +
+ name +
+ '-enter-active enter-to-class enter-active-class',
+ leave:
+ 'van-' +
+ name +
+ '-leave van-' +
+ name +
+ '-leave-active leave-class leave-active-class',
+ 'leave-to':
+ 'van-' +
+ name +
+ '-leave-to van-' +
+ name +
+ '-leave-active leave-to-class leave-active-class',
+ };
+};
+function transition(showDefaultValue) {
+ return Behavior({
+ properties: {
+ customStyle: String,
+ // @ts-ignore
+ show: {
+ type: Boolean,
+ value: showDefaultValue,
+ observer: 'observeShow',
+ },
+ // @ts-ignore
+ duration: {
+ type: null,
+ value: 300,
+ observer: 'observeDuration',
+ },
+ name: {
+ type: String,
+ value: 'fade',
+ },
+ },
+ data: {
+ type: '',
+ inited: false,
+ display: false,
+ },
+ ready: function () {
+ if (this.data.show === true) {
+ this.observeShow(true, false);
+ }
+ },
+ methods: {
+ observeShow: function (value, old) {
+ if (value === old) {
+ return;
+ }
+ value ? this.enter() : this.leave();
+ },
+ enter: function () {
+ var _this = this;
+ var _a = this.data,
+ duration = _a.duration,
+ name = _a.name;
+ var classNames = getClassNames(name);
+ var currentDuration = validator_1.isObj(duration)
+ ? duration.enter
+ : duration;
+ this.status = 'enter';
+ this.$emit('before-enter');
+ utils_1.requestAnimationFrame(function () {
+ if (_this.status !== 'enter') {
+ return;
+ }
+ _this.$emit('enter');
+ _this.setData({
+ inited: true,
+ display: true,
+ classes: classNames.enter,
+ currentDuration: currentDuration,
+ });
+ utils_1.requestAnimationFrame(function () {
+ if (_this.status !== 'enter') {
+ return;
+ }
+ _this.transitionEnded = false;
+ _this.setData({ classes: classNames['enter-to'] });
+ });
+ });
+ },
+ leave: function () {
+ var _this = this;
+ if (!this.data.display) {
+ return;
+ }
+ var _a = this.data,
+ duration = _a.duration,
+ name = _a.name;
+ var classNames = getClassNames(name);
+ var currentDuration = validator_1.isObj(duration)
+ ? duration.leave
+ : duration;
+ this.status = 'leave';
+ this.$emit('before-leave');
+ utils_1.requestAnimationFrame(function () {
+ if (_this.status !== 'leave') {
+ return;
+ }
+ _this.$emit('leave');
+ _this.setData({
+ classes: classNames.leave,
+ currentDuration: currentDuration,
+ });
+ utils_1.requestAnimationFrame(function () {
+ if (_this.status !== 'leave') {
+ return;
+ }
+ _this.transitionEnded = false;
+ setTimeout(function () {
+ return _this.onTransitionEnd();
+ }, currentDuration);
+ _this.setData({ classes: classNames['leave-to'] });
+ });
+ });
+ },
+ onTransitionEnd: function () {
+ if (this.transitionEnded) {
+ return;
+ }
+ this.transitionEnded = true;
+ this.$emit('after-' + this.status);
+ var _a = this.data,
+ show = _a.show,
+ display = _a.display;
+ if (!show && display) {
+ this.setData({ display: false });
+ }
+ },
+ },
+ });
+}
+exports.transition = transition;
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/nav-bar/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/nav-bar/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..d207bd034a57107b19366a3be349ca952860dd1e
--- /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/nav-bar/index.js"
@@ -0,0 +1,68 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+var utils_1 = require('../common/utils');
+component_1.VantComponent({
+ classes: ['title-class'],
+ props: {
+ title: String,
+ fixed: {
+ type: Boolean,
+ observer: 'setHeight',
+ },
+ placeholder: {
+ type: Boolean,
+ observer: 'setHeight',
+ },
+ leftText: String,
+ rightText: String,
+ customStyle: String,
+ leftArrow: Boolean,
+ border: {
+ type: Boolean,
+ value: true,
+ },
+ zIndex: {
+ type: Number,
+ value: 1,
+ },
+ safeAreaInsetTop: {
+ type: Boolean,
+ value: true,
+ },
+ },
+ data: {
+ height: 46,
+ },
+ created: function () {
+ var statusBarHeight = utils_1.getSystemInfoSync().statusBarHeight;
+ this.setData({
+ statusBarHeight: statusBarHeight,
+ height: 46 + statusBarHeight,
+ });
+ },
+ mounted: function () {
+ this.setHeight();
+ },
+ methods: {
+ onClickLeft: function () {
+ this.$emit('click-left');
+ },
+ onClickRight: function () {
+ this.$emit('click-right');
+ },
+ setHeight: function () {
+ var _this = this;
+ if (!this.data.fixed || !this.data.placeholder) {
+ return;
+ }
+ wx.nextTick(function () {
+ utils_1.getRect(_this, '.van-nav-bar').then(function (res) {
+ if (res && 'height' in res) {
+ _this.setData({ height: res.height });
+ }
+ });
+ });
+ },
+ },
+});
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/nav-bar/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/nav-bar/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/nav-bar/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/nav-bar/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/nav-bar/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..b6405fd5a35bb49759e1c89813373eddde8e24ec
--- /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/nav-bar/index.wxml"
@@ -0,0 +1,42 @@
+
+
+
+
+
+
+
+
+
+
+ {{ leftText }}
+
+
+
+
+ {{ title }}
+
+
+
+ {{ rightText }}
+
+
+
+
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/nav-bar/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/nav-bar/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..55b4158d14d76e9bbcb2512beab9097d3bf4aae8
--- /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/nav-bar/index.wxs"
@@ -0,0 +1,13 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+
+function barStyle(data) {
+ return style({
+ 'z-index': data.zIndex,
+ 'padding-top': data.safeAreaInsetTop ? data.statusBarHeight + 'px' : 0,
+ });
+}
+
+module.exports = {
+ barStyle: barStyle,
+};
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/nav-bar/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/nav-bar/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..48e9e3f5878f1093495ed4f041cb8f78a9a5c994
--- /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/nav-bar/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-nav-bar{position:relative;text-align:center;-webkit-user-select:none;user-select:none;height:46px;height:var(--nav-bar-height,46px);line-height:46px;line-height:var(--nav-bar-height,46px);background-color:#fff;background-color:var(--nav-bar-background-color,#fff)}.van-nav-bar__content{position:relative;height:100%}.van-nav-bar__text{display:inline-block;vertical-align:middle;margin:0 -16px;margin:0 -var(--padding-md,16px);padding:0 16px;padding:0 var(--padding-md,16px);color:#1989fa;color:var(--nav-bar-text-color,#1989fa)}.van-nav-bar__text--hover{background-color:#f2f3f5;background-color:var(--active-color,#f2f3f5)}.van-nav-bar__arrow{vertical-align:middle;font-size:16px!important;font-size:var(--nav-bar-arrow-size,16px)!important;color:#1989fa!important;color:var(--nav-bar-icon-color,#1989fa)!important}.van-nav-bar__arrow+.van-nav-bar__text{margin-left:-20px;padding-left:25px}.van-nav-bar--fixed{position:fixed;top:0;left:0;width:100%}.van-nav-bar__title{max-width:60%;margin:0 auto;color:#323233;color:var(--nav-bar-title-text-color,#323233);font-weight:500;font-weight:var(--font-weight-bold,500);font-size:16px;font-size:var(--nav-bar-title-font-size,16px)}.van-nav-bar__left,.van-nav-bar__right{position:absolute;top:0;bottom:0;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;font-size:14px;font-size:var(--font-size-md,14px)}.van-nav-bar__left{left:16px;left:var(--padding-md,16px)}.van-nav-bar__right{right:16px;right:var(--padding-md,16px)}
\ 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/notice-bar/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/notice-bar/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..25a8a6d755f453f54101efe4da68aa4e470d74ca
--- /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/notice-bar/index.js"
@@ -0,0 +1,132 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+var utils_1 = require('../common/utils');
+component_1.VantComponent({
+ props: {
+ text: {
+ type: String,
+ value: '',
+ observer: 'init',
+ },
+ mode: {
+ type: String,
+ value: '',
+ },
+ url: {
+ type: String,
+ value: '',
+ },
+ openType: {
+ type: String,
+ value: 'navigate',
+ },
+ delay: {
+ type: Number,
+ value: 1,
+ },
+ speed: {
+ type: Number,
+ value: 50,
+ observer: 'init',
+ },
+ scrollable: {
+ type: Boolean,
+ value: true,
+ },
+ leftIcon: {
+ type: String,
+ value: '',
+ },
+ color: String,
+ backgroundColor: String,
+ background: String,
+ wrapable: Boolean,
+ },
+ data: {
+ show: true,
+ },
+ created: function () {
+ this.resetAnimation = wx.createAnimation({
+ duration: 0,
+ timingFunction: 'linear',
+ });
+ },
+ destroyed: function () {
+ this.timer && clearTimeout(this.timer);
+ },
+ mounted: function () {
+ this.init();
+ },
+ methods: {
+ init: function () {
+ var _this = this;
+ utils_1.requestAnimationFrame(function () {
+ Promise.all([
+ utils_1.getRect(_this, '.van-notice-bar__content'),
+ utils_1.getRect(_this, '.van-notice-bar__wrap'),
+ ]).then(function (rects) {
+ var contentRect = rects[0],
+ wrapRect = rects[1];
+ if (
+ contentRect == null ||
+ wrapRect == null ||
+ !contentRect.width ||
+ !wrapRect.width
+ ) {
+ return;
+ }
+ var _a = _this.data,
+ speed = _a.speed,
+ scrollable = _a.scrollable,
+ delay = _a.delay;
+ if (scrollable || wrapRect.width < contentRect.width) {
+ var duration = (contentRect.width / speed) * 1000;
+ _this.wrapWidth = wrapRect.width;
+ _this.contentWidth = contentRect.width;
+ _this.duration = duration;
+ _this.animation = wx.createAnimation({
+ duration: duration,
+ timingFunction: 'linear',
+ delay: delay,
+ });
+ _this.scroll();
+ }
+ });
+ });
+ },
+ scroll: function () {
+ var _this = this;
+ this.timer && clearTimeout(this.timer);
+ this.timer = null;
+ this.setData({
+ animationData: this.resetAnimation
+ .translateX(this.wrapWidth)
+ .step()
+ .export(),
+ });
+ utils_1.requestAnimationFrame(function () {
+ _this.setData({
+ animationData: _this.animation
+ .translateX(-_this.contentWidth)
+ .step()
+ .export(),
+ });
+ });
+ this.timer = setTimeout(function () {
+ _this.scroll();
+ }, this.duration);
+ },
+ onClickIcon: function (event) {
+ if (this.data.mode === 'closeable') {
+ this.timer && clearTimeout(this.timer);
+ this.timer = null;
+ this.setData({ show: false });
+ this.$emit('close', event.detail);
+ }
+ },
+ onClick: function (event) {
+ this.$emit('click', event);
+ },
+ },
+});
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/notice-bar/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/notice-bar/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/notice-bar/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/notice-bar/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/notice-bar/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..be119adc32931b0d59fcb011d6f3e35b3f970b23
--- /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/notice-bar/index.wxml"
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+
+
+
+ {{ 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/notice-bar/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/notice-bar/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..11e6456f9c7334ad1af5c6c54ef6835e367b1e80
--- /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/notice-bar/index.wxs"
@@ -0,0 +1,15 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function rootStyle(data) {
+ return style({
+ color: data.color,
+ 'background-color': data.backgroundColor,
+ background: data.background,
+ });
+}
+
+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/notice-bar/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/notice-bar/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..6a498587043ddd40ed218e8e3f68cdf3f2958dbf
--- /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/notice-bar/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-notice-bar{display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;height:40px;height:var(--notice-bar-height,40px);padding:0 16px;padding:var(--notice-bar-padding,0 16px);font-size:14px;font-size:var(--notice-bar-font-size,14px);color:#ed6a0c;color:var(--notice-bar-text-color,#ed6a0c);line-height:24px;line-height:var(--notice-bar-line-height,24px);background-color:#fffbe8;background-color:var(--notice-bar-background-color,#fffbe8)}.van-notice-bar--withicon{position:relative;padding-right:40px}.van-notice-bar--wrapable{height:auto;padding:8px 16px;padding:var(--notice-bar-wrapable-padding,8px 16px)}.van-notice-bar--wrapable .van-notice-bar__wrap{height:auto}.van-notice-bar--wrapable .van-notice-bar__content{position:relative;white-space:normal}.van-notice-bar__left-icon{display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;margin-right:4px;vertical-align:middle}.van-notice-bar__left-icon,.van-notice-bar__right-icon{font-size:16px;font-size:var(--notice-bar-icon-size,16px);min-width:22px;min-width:var(--notice-bar-icon-min-width,22px)}.van-notice-bar__right-icon{position:absolute;top:10px;right:15px}.van-notice-bar__wrap{position:relative;-webkit-flex:1;flex:1;overflow:hidden;height:24px;height:var(--notice-bar-line-height,24px)}.van-notice-bar__content{position:absolute;white-space:nowrap}.van-notice-bar__content.van-ellipsis{max-width: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/notify/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/notify/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..f2a9678cc09224722dc84b2c58973432c636bcdb
--- /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/notify/index.js"
@@ -0,0 +1,70 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+var color_1 = require('../common/color');
+var utils_1 = require('../common/utils');
+component_1.VantComponent({
+ props: {
+ message: String,
+ background: String,
+ type: {
+ type: String,
+ value: 'danger',
+ },
+ color: {
+ type: String,
+ value: color_1.WHITE,
+ },
+ duration: {
+ type: Number,
+ value: 3000,
+ },
+ zIndex: {
+ type: Number,
+ value: 110,
+ },
+ safeAreaInsetTop: {
+ type: Boolean,
+ value: false,
+ },
+ top: null,
+ },
+ data: {
+ show: false,
+ onOpened: null,
+ onClose: null,
+ onClick: null,
+ },
+ created: function () {
+ var statusBarHeight = utils_1.getSystemInfoSync().statusBarHeight;
+ this.setData({ statusBarHeight: statusBarHeight });
+ },
+ methods: {
+ show: function () {
+ var _this = this;
+ var _a = this.data,
+ duration = _a.duration,
+ onOpened = _a.onOpened;
+ clearTimeout(this.timer);
+ this.setData({ show: true });
+ wx.nextTick(onOpened);
+ if (duration > 0 && duration !== Infinity) {
+ this.timer = setTimeout(function () {
+ _this.hide();
+ }, duration);
+ }
+ },
+ hide: function () {
+ var onClose = this.data.onClose;
+ clearTimeout(this.timer);
+ this.setData({ show: false });
+ wx.nextTick(onClose);
+ },
+ onTap: function (event) {
+ var onClick = this.data.onClick;
+ if (onClick) {
+ onClick(event.detail);
+ }
+ },
+ },
+});
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/notify/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/notify/index.json"
new file mode 100644
index 0000000000000000000000000000000000000000..c14a65f6c3f924bd824f5813b33cebd96e005e1a
--- /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/notify/index.json"
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-transition": "../transition/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/notify/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/notify/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..42d913eb5d18c1214c0e238ae006ecd7de4629e3
--- /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/notify/index.wxml"
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+ {{ message }}
+
+
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/notify/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/notify/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..bbb94c28008eca5186f1cfbd7c50736c2f713255
--- /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/notify/index.wxs"
@@ -0,0 +1,22 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function rootStyle(data) {
+ return style({
+ 'z-index': data.zIndex,
+ top: addUnit(data.top),
+ });
+}
+
+function notifyStyle(data) {
+ return style({
+ background: data.background,
+ color: data.color,
+ });
+}
+
+module.exports = {
+ rootStyle: rootStyle,
+ notifyStyle: notifyStyle,
+};
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/notify/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/notify/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..8a7688b3ef928c62312df3f2e3dfc70bd0e5cbda
--- /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/notify/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-notify{text-align:center;word-wrap:break-word;padding:6px 15px;padding:var(--notify-padding,6px 15px);font-size:14px;font-size:var(--notify-font-size,14px);line-height:20px;line-height:var(--notify-line-height,20px)}.van-notify__container{position:fixed;top:0;left:0;box-sizing:border-box;width:100%}.van-notify--primary{background-color:#1989fa;background-color:var(--notify-primary-background-color,#1989fa)}.van-notify--success{background-color:#07c160;background-color:var(--notify-success-background-color,#07c160)}.van-notify--danger{background-color:#ee0a24;background-color:var(--notify-danger-background-color,#ee0a24)}.van-notify--warning{background-color:#ff976a;background-color:var(--notify-warning-background-color,#ff976a)}
\ 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/notify/notify.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/notify/notify.js"
new file mode 100644
index 0000000000000000000000000000000000000000..a789af17dfb465e4485d97d213a65e525b8fb8ce
--- /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/notify/notify.js"
@@ -0,0 +1,64 @@
+'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 color_1 = require('../common/color');
+var defaultOptions = {
+ selector: '#van-notify',
+ type: 'danger',
+ message: '',
+ background: '',
+ duration: 3000,
+ zIndex: 110,
+ top: 0,
+ color: color_1.WHITE,
+ safeAreaInsetTop: false,
+ onClick: function () {},
+ onOpened: function () {},
+ onClose: function () {},
+};
+function parseOptions(message) {
+ if (message == null) {
+ return {};
+ }
+ return typeof message === 'string' ? { message: message } : message;
+}
+function getContext() {
+ var pages = getCurrentPages();
+ return pages[pages.length - 1];
+}
+function Notify(options) {
+ options = __assign(__assign({}, defaultOptions), parseOptions(options));
+ var context = options.context || getContext();
+ var notify = context.selectComponent(options.selector);
+ delete options.context;
+ delete options.selector;
+ if (notify) {
+ notify.setData(options);
+ notify.show();
+ return notify;
+ }
+ console.warn('未找到 van-notify 节点,请确认 selector 及 context 是否正确');
+}
+exports.default = Notify;
+Notify.clear = function (options) {
+ options = __assign(__assign({}, defaultOptions), parseOptions(options));
+ var context = options.context || getContext();
+ var notify = context.selectComponent(options.selector);
+ if (notify) {
+ notify.hide();
+ }
+};
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/overlay/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/overlay/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..a0e55eb6baa1d9f016d61b559970208404213937
--- /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/overlay/index.js"
@@ -0,0 +1,24 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+component_1.VantComponent({
+ props: {
+ show: Boolean,
+ customStyle: String,
+ duration: {
+ type: null,
+ value: 300,
+ },
+ zIndex: {
+ type: Number,
+ value: 1,
+ },
+ },
+ methods: {
+ onClick: function () {
+ this.$emit('click');
+ },
+ // for prevent touchmove
+ 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/overlay/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/overlay/index.json"
new file mode 100644
index 0000000000000000000000000000000000000000..c14a65f6c3f924bd824f5813b33cebd96e005e1a
--- /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/overlay/index.json"
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-transition": "../transition/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/overlay/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/overlay/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..9212348b0896c2cc5f208082d04eddd2066793c1
--- /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/overlay/index.wxml"
@@ -0,0 +1,10 @@
+
+
+
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/overlay/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/overlay/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..0f9df0e864d79070785805775fcdca7637fb2da1
--- /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/overlay/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-overlay{position:fixed;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.7);background-color:var(--overlay-background-color,rgba(0,0,0,.7))}
\ 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/panel/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/panel/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..64f3be5b10064bf5f574e71e324334b5aba3b166
--- /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/panel/index.js"
@@ -0,0 +1,12 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+component_1.VantComponent({
+ classes: ['header-class', 'footer-class'],
+ props: {
+ desc: String,
+ title: String,
+ status: String,
+ useFooterSlot: Boolean,
+ },
+});
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/panel/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/panel/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/panel/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/panel/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/panel/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..3f135d23daa06e22df8ccbac0786044efd2fe0ea
--- /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/panel/index.wxml"
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
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/panel/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/panel/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..ffd9df91e8d913b4c48d38eae94435d0130b19d0
--- /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/panel/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-panel{background:#fff;background:var(--panel-background-color,#fff)}.van-panel__header-value{color:#ee0a24;color:var(--panel-header-value-color,#ee0a24)}.van-panel__footer{padding:8px 16px;padding:var(--panel-footer-padding,8px 16px)}
\ 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/picker-column/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/picker-column/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..b2f0632c0ec35a822cc18773ceced1cdbe4b0fe1
--- /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/picker-column/index.js"
@@ -0,0 +1,132 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+var utils_1 = require('../common/utils');
+var validator_1 = require('../common/validator');
+var DEFAULT_DURATION = 200;
+component_1.VantComponent({
+ classes: ['active-class'],
+ props: {
+ valueKey: String,
+ className: String,
+ itemHeight: Number,
+ visibleItemCount: Number,
+ initialOptions: {
+ type: Array,
+ value: [],
+ },
+ defaultIndex: {
+ type: Number,
+ value: 0,
+ observer: function (value) {
+ this.setIndex(value);
+ },
+ },
+ },
+ data: {
+ startY: 0,
+ offset: 0,
+ duration: 0,
+ startOffset: 0,
+ options: [],
+ currentIndex: 0,
+ },
+ created: function () {
+ var _this = this;
+ var _a = this.data,
+ defaultIndex = _a.defaultIndex,
+ initialOptions = _a.initialOptions;
+ this.set({
+ currentIndex: defaultIndex,
+ options: initialOptions,
+ }).then(function () {
+ _this.setIndex(defaultIndex);
+ });
+ },
+ methods: {
+ getCount: function () {
+ return this.data.options.length;
+ },
+ onTouchStart: function (event) {
+ this.setData({
+ startY: event.touches[0].clientY,
+ startOffset: this.data.offset,
+ duration: 0,
+ });
+ },
+ onTouchMove: function (event) {
+ var data = this.data;
+ var deltaY = event.touches[0].clientY - data.startY;
+ this.setData({
+ offset: utils_1.range(
+ data.startOffset + deltaY,
+ -(this.getCount() * data.itemHeight),
+ data.itemHeight
+ ),
+ });
+ },
+ onTouchEnd: function () {
+ var data = this.data;
+ if (data.offset !== data.startOffset) {
+ this.setData({ duration: DEFAULT_DURATION });
+ var index = utils_1.range(
+ Math.round(-data.offset / data.itemHeight),
+ 0,
+ this.getCount() - 1
+ );
+ this.setIndex(index, true);
+ }
+ },
+ onClickItem: function (event) {
+ var index = event.currentTarget.dataset.index;
+ this.setIndex(index, true);
+ },
+ adjustIndex: function (index) {
+ var data = this.data;
+ var count = this.getCount();
+ index = utils_1.range(index, 0, count);
+ for (var i = index; i < count; i++) {
+ if (!this.isDisabled(data.options[i])) return i;
+ }
+ for (var i = index - 1; i >= 0; i--) {
+ if (!this.isDisabled(data.options[i])) return i;
+ }
+ },
+ isDisabled: function (option) {
+ return validator_1.isObj(option) && option.disabled;
+ },
+ getOptionText: function (option) {
+ var data = this.data;
+ return validator_1.isObj(option) && data.valueKey in option
+ ? option[data.valueKey]
+ : option;
+ },
+ setIndex: function (index, userAction) {
+ var _this = this;
+ var data = this.data;
+ index = this.adjustIndex(index) || 0;
+ var offset = -index * data.itemHeight;
+ if (index !== data.currentIndex) {
+ return this.set({ offset: offset, currentIndex: index }).then(
+ function () {
+ userAction && _this.$emit('change', index);
+ }
+ );
+ }
+ return this.set({ offset: offset });
+ },
+ setValue: function (value) {
+ var options = this.data.options;
+ for (var i = 0; i < options.length; i++) {
+ if (this.getOptionText(options[i]) === value) {
+ return this.setIndex(i);
+ }
+ }
+ return Promise.resolve();
+ },
+ getValue: function () {
+ var data = this.data;
+ return data.options[data.currentIndex];
+ },
+ },
+});
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/picker-column/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/picker-column/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/picker-column/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/picker-column/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/picker-column/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..cb6b7ba2d2395976c4f37a34bdac40b2545c05bf
--- /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/picker-column/index.wxml"
@@ -0,0 +1,23 @@
+
+
+
+
+
+ {{ computed.optionText(option, valueKey) }}
+
+
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/picker-column/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/picker-column/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..2d5a61172229791cf903d82e9014955615465ee8
--- /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/picker-column/index.wxs"
@@ -0,0 +1,36 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function isObj(x) {
+ var type = typeof x;
+ return x !== null && (type === 'object' || type === 'function');
+}
+
+function optionText(option, valueKey) {
+ return isObj(option) && option[valueKey] != null ? option[valueKey] : option;
+}
+
+function rootStyle(data) {
+ return style({
+ height: addUnit(data.itemHeight * data.visibleItemCount),
+ });
+}
+
+function wrapperStyle(data) {
+ var offset = addUnit(
+ data.offset + (data.itemHeight * (data.visibleItemCount - 1)) / 2
+ );
+
+ return style({
+ transition: 'transform ' + data.duration + 'ms',
+ 'line-height': addUnit(data.itemHeight),
+ transform: 'translate3d(0, ' + offset + ', 0)',
+ });
+}
+
+module.exports = {
+ optionText: optionText,
+ rootStyle: rootStyle,
+ wrapperStyle: wrapperStyle,
+};
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/picker-column/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/picker-column/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..c5c69100146f3c6d22bf0fd7206caf0143de5a55
--- /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/picker-column/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-picker-column{overflow:hidden;text-align:center;color:#000;color:var(--picker-option-text-color,#000);font-size:16px;font-size:var(--picker-option-font-size,16px)}.van-picker-column__item{padding:0 5px}.van-picker-column__item--selected{font-weight:500;font-weight:var(--font-weight-bold,500);color:#323233;color:var(--picker-option-selected-text-color,#323233)}.van-picker-column__item--disabled{opacity:.3;opacity:var(--picker-option-disabled-opacity,.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/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/picker/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..8e5d11742253c516910c7211a4b5b1f7702dfe97
--- /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/picker/index.js"
@@ -0,0 +1,179 @@
+'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('./shared');
+component_1.VantComponent({
+ classes: ['active-class', 'toolbar-class', 'column-class'],
+ props: __assign(__assign({}, shared_1.pickerProps), {
+ valueKey: {
+ type: String,
+ value: 'text',
+ },
+ toolbarPosition: {
+ type: String,
+ value: 'top',
+ },
+ defaultIndex: {
+ type: Number,
+ value: 0,
+ },
+ columns: {
+ type: Array,
+ value: [],
+ observer: function (columns) {
+ if (columns === void 0) {
+ columns = [];
+ }
+ this.simple = columns.length && !columns[0].values;
+ if (Array.isArray(this.children) && this.children.length) {
+ this.setColumns().catch(function () {});
+ }
+ },
+ },
+ }),
+ beforeCreate: function () {
+ var _this = this;
+ Object.defineProperty(this, 'children', {
+ get: function () {
+ return _this.selectAllComponents('.van-picker__column') || [];
+ },
+ });
+ },
+ methods: {
+ noop: function () {},
+ setColumns: function () {
+ var _this = this;
+ var data = this.data;
+ var columns = this.simple ? [{ values: data.columns }] : data.columns;
+ var stack = columns.map(function (column, index) {
+ return _this.setColumnValues(index, column.values);
+ });
+ return Promise.all(stack);
+ },
+ emit: function (event) {
+ var type = event.currentTarget.dataset.type;
+ if (this.simple) {
+ this.$emit(type, {
+ value: this.getColumnValue(0),
+ index: this.getColumnIndex(0),
+ });
+ } else {
+ this.$emit(type, {
+ value: this.getValues(),
+ index: this.getIndexes(),
+ });
+ }
+ },
+ onChange: function (event) {
+ if (this.simple) {
+ this.$emit('change', {
+ picker: this,
+ value: this.getColumnValue(0),
+ index: this.getColumnIndex(0),
+ });
+ } else {
+ this.$emit('change', {
+ picker: this,
+ value: this.getValues(),
+ index: event.currentTarget.dataset.index,
+ });
+ }
+ },
+ // get column instance by index
+ getColumn: function (index) {
+ return this.children[index];
+ },
+ // get column value by index
+ getColumnValue: function (index) {
+ var column = this.getColumn(index);
+ return column && column.getValue();
+ },
+ // set column value by index
+ setColumnValue: function (index, value) {
+ var column = this.getColumn(index);
+ if (column == null) {
+ return Promise.reject(new Error('setColumnValue: 对应列不存在'));
+ }
+ return column.setValue(value);
+ },
+ // get column option index by column index
+ getColumnIndex: function (columnIndex) {
+ return (this.getColumn(columnIndex) || {}).data.currentIndex;
+ },
+ // set column option index by column index
+ setColumnIndex: function (columnIndex, optionIndex) {
+ var column = this.getColumn(columnIndex);
+ if (column == null) {
+ return Promise.reject(new Error('setColumnIndex: 对应列不存在'));
+ }
+ return column.setIndex(optionIndex);
+ },
+ // get options of column by index
+ getColumnValues: function (index) {
+ return (this.children[index] || {}).data.options;
+ },
+ // set options of column by index
+ setColumnValues: function (index, options, needReset) {
+ if (needReset === void 0) {
+ needReset = true;
+ }
+ var column = this.children[index];
+ if (column == null) {
+ return Promise.reject(new Error('setColumnValues: 对应列不存在'));
+ }
+ var isSame =
+ JSON.stringify(column.data.options) === JSON.stringify(options);
+ if (isSame) {
+ return Promise.resolve();
+ }
+ return column.set({ options: options }).then(function () {
+ if (needReset) {
+ column.setIndex(0);
+ }
+ });
+ },
+ // get values of all columns
+ getValues: function () {
+ return this.children.map(function (child) {
+ return child.getValue();
+ });
+ },
+ // set values of all columns
+ setValues: function (values) {
+ var _this = this;
+ var stack = values.map(function (value, index) {
+ return _this.setColumnValue(index, value);
+ });
+ return Promise.all(stack);
+ },
+ // get indexes of all columns
+ getIndexes: function () {
+ return this.children.map(function (child) {
+ return child.data.currentIndex;
+ });
+ },
+ // set indexes of all columns
+ setIndexes: function (indexes) {
+ var _this = this;
+ var stack = indexes.map(function (optionIndex, columnIndex) {
+ return _this.setColumnIndex(columnIndex, optionIndex);
+ });
+ return Promise.all(stack);
+ },
+ },
+});
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/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/picker/index.json"
new file mode 100644
index 0000000000000000000000000000000000000000..2fcec8991bd56bdb28b347a80db78be1a96c2822
--- /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/picker/index.json"
@@ -0,0 +1,7 @@
+{
+ "component": true,
+ "usingComponents": {
+ "picker-column": "../picker-column/index",
+ "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/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/picker/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..dbf124929b2229c67d97d588ce80e5f842b10cf3
--- /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/picker/index.wxml"
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
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/picker/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/picker/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..0abbd10e71099ba4016a54259ca46f7224ab168e
--- /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/picker/index.wxs"
@@ -0,0 +1,42 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+var array = require('../wxs/array.wxs');
+
+function columnsStyle(data) {
+ return style({
+ height: addUnit(data.itemHeight * data.visibleItemCount),
+ });
+}
+
+function maskStyle(data) {
+ return style({
+ 'background-size':
+ '100% ' + addUnit((data.itemHeight * (data.visibleItemCount - 1)) / 2),
+ });
+}
+
+function frameStyle(data) {
+ return style({
+ height: addUnit(data.itemHeight),
+ });
+}
+
+function columns(columns) {
+ if (!array.isArray(columns)) {
+ return [];
+ }
+
+ if (columns.length && !columns[0].values) {
+ return [{ values: columns }];
+ }
+
+ return columns;
+}
+
+module.exports = {
+ columnsStyle: columnsStyle,
+ frameStyle: frameStyle,
+ maskStyle: maskStyle,
+ columns: columns,
+};
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/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/picker/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..f74b164bbe404b0f66e34788872755a98730977a
--- /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/picker/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-picker{position:relative;overflow:hidden;-webkit-text-size-adjust:100%;-webkit-user-select:none;user-select:none;background-color:#fff;background-color:var(--picker-background-color,#fff)}.van-picker__toolbar{display:-webkit-flex;display:flex;-webkit-justify-content:space-between;justify-content:space-between;height:44px;height:var(--picker-toolbar-height,44px);line-height:44px;line-height:var(--picker-toolbar-height,44px)}.van-picker__cancel,.van-picker__confirm{padding:0 16px;padding:var(--picker-action-padding,0 16px);font-size:14px;font-size:var(--picker-action-font-size,14px)}.van-picker__cancel--hover,.van-picker__confirm--hover{opacity:.7}.van-picker__confirm{color:#576b95;color:var(--picker-confirm-action-color,#576b95)}.van-picker__cancel{color:#969799;color:var(--picker-cancel-action-color,#969799)}.van-picker__title{max-width:50%;text-align:center;font-weight:500;font-weight:var(--font-weight-bold,500);font-size:16px;font-size:var(--picker-option-font-size,16px)}.van-picker__columns{position:relative;display:-webkit-flex;display:flex}.van-picker__column{-webkit-flex:1 1;flex:1 1;width:0}.van-picker__loading{position:absolute;top:0;right:0;bottom:0;left:0;z-index:4;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center;background-color:hsla(0,0%,100%,.9);background-color:var(--picker-loading-mask-color,hsla(0,0%,100%,.9))}.van-picker__mask{top:0;left:0;z-index:2;width:100%;height:100%;background-image:linear-gradient(180deg,hsla(0,0%,100%,.9),hsla(0,0%,100%,.4)),linear-gradient(0deg,hsla(0,0%,100%,.9),hsla(0,0%,100%,.4));background-repeat:no-repeat;background-position:top,bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden}.van-picker__frame,.van-picker__mask{position:absolute;pointer-events:none}.van-picker__frame{top:50%;right:16px;left:16px;z-index:1;-webkit-transform:translateY(-50%);transform:translateY(-50%)}
\ 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/picker/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/picker/shared.js"
new file mode 100644
index 0000000000000000000000000000000000000000..9b2ca48aa09e51df23eb359dfd282d74e8e456dc
--- /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/picker/shared.js"
@@ -0,0 +1,24 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+exports.pickerProps = void 0;
+exports.pickerProps = {
+ title: String,
+ loading: Boolean,
+ showToolbar: Boolean,
+ cancelButtonText: {
+ type: String,
+ value: '取消',
+ },
+ confirmButtonText: {
+ type: String,
+ value: '确认',
+ },
+ visibleItemCount: {
+ type: Number,
+ value: 6,
+ },
+ itemHeight: {
+ type: Number,
+ value: 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/picker/toolbar.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/picker/toolbar.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..414f61200741b6e928bb5628267daa1d6675aadc
--- /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/picker/toolbar.wxml"
@@ -0,0 +1,23 @@
+
+
+ {{ cancelButtonText }}
+
+ {{
+ title
+ }}
+
+ {{ 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/popup/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/popup/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..fbe673cde4c9f72d733ae71b7853e4d2200a61d6
--- /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/popup/index.js"
@@ -0,0 +1,89 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+var transition_1 = require('../mixins/transition');
+component_1.VantComponent({
+ classes: [
+ 'enter-class',
+ 'enter-active-class',
+ 'enter-to-class',
+ 'leave-class',
+ 'leave-active-class',
+ 'leave-to-class',
+ 'close-icon-class',
+ ],
+ mixins: [transition_1.transition(false)],
+ props: {
+ round: Boolean,
+ closeable: Boolean,
+ customStyle: String,
+ overlayStyle: String,
+ transition: {
+ type: String,
+ observer: 'observeClass',
+ },
+ zIndex: {
+ type: Number,
+ value: 100,
+ },
+ overlay: {
+ type: Boolean,
+ value: true,
+ },
+ closeIcon: {
+ type: String,
+ value: 'cross',
+ },
+ closeIconPosition: {
+ type: String,
+ value: 'top-right',
+ },
+ closeOnClickOverlay: {
+ type: Boolean,
+ value: true,
+ },
+ position: {
+ type: String,
+ value: 'center',
+ observer: 'observeClass',
+ },
+ safeAreaInsetBottom: {
+ type: Boolean,
+ value: true,
+ },
+ safeAreaInsetTop: {
+ type: Boolean,
+ value: false,
+ },
+ },
+ created: function () {
+ this.observeClass();
+ },
+ methods: {
+ onClickCloseIcon: function () {
+ this.$emit('close');
+ },
+ onClickOverlay: function () {
+ this.$emit('click-overlay');
+ if (this.data.closeOnClickOverlay) {
+ this.$emit('close');
+ }
+ },
+ observeClass: function () {
+ var _a = this.data,
+ transition = _a.transition,
+ position = _a.position,
+ duration = _a.duration;
+ var updateData = {
+ name: transition || position,
+ };
+ if (transition === 'none') {
+ updateData.duration = 0;
+ this.originDuration = duration;
+ } else if (this.originDuration != null) {
+ updateData.duration = this.originDuration;
+ }
+ this.setData(updateData);
+ },
+ },
+});
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/popup/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/popup/index.json"
new file mode 100644
index 0000000000000000000000000000000000000000..88a6eab2a3d39616b3407376f926947017857a80
--- /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/popup/index.json"
@@ -0,0 +1,7 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-icon": "../icon/index",
+ "van-overlay": "../overlay/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/popup/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/popup/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..0be99d4699a1ed63f9f17fe05ecbaed382ec2023
--- /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/popup/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/popup/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/popup/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..8d59f245a079a1839571f35f95f6bb95c50241f2
--- /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/popup/index.wxs"
@@ -0,0 +1,18 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+
+function popupStyle(data) {
+ return style([
+ {
+ 'z-index': data.zIndex,
+ '-webkit-transition-duration': data.currentDuration + 'ms',
+ 'transition-duration': data.currentDuration + 'ms',
+ },
+ data.display ? null : 'display: none',
+ data.customStyle,
+ ]);
+}
+
+module.exports = {
+ popupStyle: popupStyle,
+};
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/popup/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/popup/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..a3d6e6fd1b37e7b30aa57c5676b0d247baa1ebea
--- /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/popup/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-popup{position:fixed;box-sizing:border-box;max-height:100%;overflow-y:auto;transition-timing-function:ease;-webkit-animation:ease both;animation:ease both;-webkit-overflow-scrolling:touch;background-color:#fff;background-color:var(--popup-background-color,#fff)}.van-popup--center{top:50%;left:50%;-webkit-transform:translate3d(-50%,-50%,0);transform:translate3d(-50%,-50%,0)}.van-popup--center.van-popup--round{border-radius:16px;border-radius:var(--popup-round-border-radius,16px)}.van-popup--top{top:0;left:0;width:100%}.van-popup--top.van-popup--round{border-radius:0 0 16px 16px;border-radius:0 0 var(--popup-round-border-radius,16px) var(--popup-round-border-radius,16px)}.van-popup--right{top:50%;right:0;-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}.van-popup--right.van-popup--round{border-radius:16px 0 0 16px;border-radius:var(--popup-round-border-radius,16px) 0 0 var(--popup-round-border-radius,16px)}.van-popup--bottom{bottom:0;left:0;width:100%}.van-popup--bottom.van-popup--round{border-radius:16px 16px 0 0;border-radius:var(--popup-round-border-radius,16px) var(--popup-round-border-radius,16px) 0 0}.van-popup--left{top:50%;left:0;-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}.van-popup--left.van-popup--round{border-radius:0 16px 16px 0;border-radius:0 var(--popup-round-border-radius,16px) var(--popup-round-border-radius,16px) 0}.van-popup--bottom.van-popup--safe{padding-bottom:env(safe-area-inset-bottom)}.van-popup--safeTop{padding-top:env(safe-area-inset-top)}.van-popup__close-icon{position:absolute;z-index:1;z-index:var(--popup-close-icon-z-index,1);color:#969799;color:var(--popup-close-icon-color,#969799);font-size:18px;font-size:var(--popup-close-icon-size,18px)}.van-popup__close-icon--top-left{top:16px;top:var(--popup-close-icon-margin,16px);left:16px;left:var(--popup-close-icon-margin,16px)}.van-popup__close-icon--top-right{top:16px;top:var(--popup-close-icon-margin,16px);right:16px;right:var(--popup-close-icon-margin,16px)}.van-popup__close-icon--bottom-left{bottom:16px;bottom:var(--popup-close-icon-margin,16px);left:16px;left:var(--popup-close-icon-margin,16px)}.van-popup__close-icon--bottom-right{right:16px;right:var(--popup-close-icon-margin,16px);bottom:16px;bottom:var(--popup-close-icon-margin,16px)}.van-popup__close-icon:active{opacity:.6}.van-scale-enter-active,.van-scale-leave-active{transition-property:opacity,-webkit-transform;transition-property:opacity,transform;transition-property:opacity,transform,-webkit-transform}.van-scale-enter,.van-scale-leave-to{-webkit-transform:translate3d(-50%,-50%,0) scale(.7);transform:translate3d(-50%,-50%,0) scale(.7);opacity:0}.van-fade-enter-active,.van-fade-leave-active{transition-property:opacity}.van-fade-enter,.van-fade-leave-to{opacity:0}.van-center-enter-active,.van-center-leave-active{transition-property:opacity}.van-center-enter,.van-center-leave-to{opacity:0}.van-bottom-enter-active,.van-bottom-leave-active,.van-left-enter-active,.van-left-leave-active,.van-right-enter-active,.van-right-leave-active,.van-top-enter-active,.van-top-leave-active{transition-property:-webkit-transform;transition-property:transform;transition-property:transform,-webkit-transform}.van-bottom-enter,.van-bottom-leave-to{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}.van-top-enter,.van-top-leave-to{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}.van-left-enter,.van-left-leave-to{-webkit-transform:translate3d(-100%,-50%,0);transform:translate3d(-100%,-50%,0)}.van-right-enter,.van-right-leave-to{-webkit-transform:translate3d(100%,-50%,0);transform:translate3d(100%,-50%,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/progress/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/progress/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..f41cf4ff86f0aa66727629fab05cbea09251c9d7
--- /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/progress/index.js"
@@ -0,0 +1,56 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+var color_1 = require('../common/color');
+var utils_1 = require('../common/utils');
+component_1.VantComponent({
+ props: {
+ inactive: Boolean,
+ percentage: {
+ type: Number,
+ observer: 'setLeft',
+ },
+ pivotText: String,
+ pivotColor: String,
+ trackColor: String,
+ showPivot: {
+ type: Boolean,
+ value: true,
+ },
+ color: {
+ type: String,
+ value: color_1.BLUE,
+ },
+ textColor: {
+ type: String,
+ value: '#fff',
+ },
+ strokeWidth: {
+ type: null,
+ value: 4,
+ },
+ },
+ data: {
+ right: 0,
+ },
+ mounted: function () {
+ this.setLeft();
+ },
+ methods: {
+ setLeft: function () {
+ var _this = this;
+ Promise.all([
+ utils_1.getRect(this, '.van-progress'),
+ utils_1.getRect(this, '.van-progress__pivot'),
+ ]).then(function (_a) {
+ var portion = _a[0],
+ pivot = _a[1];
+ if (portion && pivot) {
+ _this.setData({
+ right: (pivot.width * (_this.data.percentage - 100)) / 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/miniprogram_npm/@vant/weapp/progress/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/progress/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/progress/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/progress/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/progress/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..e81514d05fdce662ca1f2bff2d72841acbf7c08d
--- /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/progress/index.wxml"
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+ {{ computed.pivotText(pivotText, percentage) }}
+
+
+
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/progress/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/progress/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..5b1e8e6bc0440be40af8e27c86b5fcf509d0437f
--- /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/progress/index.wxs"
@@ -0,0 +1,36 @@
+/* eslint-disable */
+var utils = require('../wxs/utils.wxs');
+var style = require('../wxs/style.wxs');
+
+function pivotText(pivotText, percentage) {
+ return pivotText || percentage + '%';
+}
+
+function rootStyle(data) {
+ return style({
+ 'height': data.strokeWidth ? utils.addUnit(data.strokeWidth) : '',
+ 'background': data.trackColor,
+ });
+}
+
+function portionStyle(data) {
+ return style({
+ background: data.inactive ? '#cacaca' : data.color,
+ width: data.percentage ? data.percentage + '%' : '',
+ });
+}
+
+function pivotStyle(data) {
+ return style({
+ color: data.textColor,
+ right: data.right + 'px',
+ background: data.pivotColor ? data.pivotColor : data.inactive ? '#cacaca' : data.color,
+ });
+}
+
+module.exports = {
+ pivotText: pivotText,
+ rootStyle: rootStyle,
+ portionStyle: portionStyle,
+ pivotStyle: pivotStyle,
+};
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/progress/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/progress/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..3844a59eaf40ad2e722c4b82903320cd13a9aa2b
--- /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/progress/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-progress{position:relative;height:4px;height:var(--progress-height,4px);border-radius:4px;border-radius:var(--progress-height,4px);background:#ebedf0;background:var(--progress-background-color,#ebedf0)}.van-progress__portion{position:absolute;left:0;height:100%;border-radius:inherit;background:#1989fa;background:var(--progress-color,#1989fa)}.van-progress__pivot{position:absolute;top:50%;box-sizing:border-box;min-width:3.6em;text-align:center;word-break:keep-all;border-radius:1em;-webkit-transform:translateY(-50%);transform:translateY(-50%);color:#fff;color:var(--progress-pivot-text-color,#fff);padding:0 5px;padding:var(--progress-pivot-padding,0 5px);font-size:10px;font-size:var(--progress-pivot-font-size,10px);line-height:1.6;line-height:var(--progress-pivot-line-height,1.6);background-color:#1989fa;background-color:var(--progress-pivot-background-color,#1989fa)}
\ 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/radio-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/radio-group/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..41fa6f61d340e278497f8ee899fb9800ce351629
--- /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/radio-group/index.js"
@@ -0,0 +1,40 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+var relation_1 = require('../common/relation');
+component_1.VantComponent({
+ field: true,
+ relation: relation_1.useChildren('radio', function (target) {
+ this.updateChild(target);
+ }),
+ props: {
+ value: {
+ type: null,
+ observer: 'updateChildren',
+ },
+ direction: String,
+ 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,
+ direction = _a.direction;
+ child.setData({
+ value: value,
+ direction: direction,
+ disabled: disabled || child.data.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/radio-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/radio-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/radio-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/radio-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/radio-group/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..0ab17afcda065ea624494668ed23f2d3f65a1235
--- /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/radio-group/index.wxml"
@@ -0,0 +1,5 @@
+
+
+
+
+
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/radio-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/radio-group/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..df45fd68339980ac44dd92383959de3ef80a45d7
--- /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/radio-group/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-radio-group--horizontal{display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap}
\ 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/radio/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/radio/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..8f48299801d4e2095eb470875223646a3df14c6a
--- /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/radio/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({
+ field: true,
+ relation: relation_1.useParent('radio-group'),
+ classes: ['icon-class', 'label-class'],
+ props: {
+ name: null,
+ value: null,
+ disabled: Boolean,
+ useIconSlot: Boolean,
+ checkedColor: String,
+ labelPosition: {
+ type: String,
+ value: 'right',
+ },
+ labelDisabled: Boolean,
+ shape: {
+ type: String,
+ value: 'round',
+ },
+ iconSize: {
+ type: null,
+ value: 20,
+ },
+ },
+ methods: {
+ emitChange: function (value) {
+ var instance = this.parent || this;
+ instance.$emit('input', value);
+ instance.$emit('change', value);
+ },
+ onChange: function () {
+ if (!this.data.disabled) {
+ this.emitChange(this.data.name);
+ }
+ },
+ onClickLabel: function () {
+ var _a = this.data,
+ disabled = _a.disabled,
+ labelDisabled = _a.labelDisabled,
+ name = _a.name;
+ if (!disabled && !labelDisabled) {
+ this.emitChange(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/radio/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/radio/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/radio/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/radio/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/radio/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..4601c0687478d573c27c7f5b7086813380d58645
--- /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/radio/index.wxml"
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
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/radio/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/radio/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..602a69e33e3c0173e3a1845d4b32c09e1a5b6645
--- /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/radio/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-radio{display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;overflow:hidden;-webkit-user-select:none;user-select:none}.van-radio__icon-wrap{-webkit-flex:none;flex:none}.van-radio--horizontal{margin-right:12px;margin-right:var(--padding-sm,12px)}.van-radio__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;border:1px solid #c8c9cc;border:1px solid var(--radio-border-color,#c8c9cc);font-size:20px;font-size:var(--radio-size,20px);transition-duration:.2s;transition-duration:var(--radio-transition-duration,.2s)}.van-radio__icon--round{border-radius:100%}.van-radio__icon--checked{color:#fff;color:var(--white,#fff);background-color:#1989fa;background-color:var(--radio-checked-icon-color,#1989fa);border-color:#1989fa;border-color:var(--radio-checked-icon-color,#1989fa)}.van-radio__icon--disabled{background-color:#ebedf0;background-color:var(--radio-disabled-background-color,#ebedf0);border-color:#c8c9cc;border-color:var(--radio-disabled-icon-color,#c8c9cc)}.van-radio__icon--disabled.van-radio__icon--checked{color:#c8c9cc;color:var(--radio-disabled-icon-color,#c8c9cc)}.van-radio__label{word-wrap:break-word;margin-left:10px;margin-left:var(--radio-label-margin,10px);color:#323233;color:var(--radio-label-color,#323233);line-height:20px;line-height:var(--radio-size,20px)}.van-radio__label--left{float:left;margin:0 10px 0 0;margin:0 var(--radio-label-margin,10px) 0 0}.van-radio__label--disabled{color:#c8c9cc;color:var(--radio-disabled-label-color,#c8c9cc)}.van-radio__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/rate/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/rate/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..c8477d4f27ec3b6d98dfb80357474b4ac5dac22e
--- /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/rate/index.js"
@@ -0,0 +1,111 @@
+'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 version_1 = require('../common/version');
+component_1.VantComponent({
+ field: true,
+ classes: ['icon-class'],
+ props: {
+ value: {
+ type: Number,
+ observer: function (value) {
+ if (value !== this.data.innerValue) {
+ this.setData({ innerValue: value });
+ }
+ },
+ },
+ readonly: Boolean,
+ disabled: Boolean,
+ allowHalf: Boolean,
+ size: null,
+ icon: {
+ type: String,
+ value: 'star',
+ },
+ voidIcon: {
+ type: String,
+ value: 'star-o',
+ },
+ color: {
+ type: String,
+ value: '#ffd21e',
+ },
+ voidColor: {
+ type: String,
+ value: '#c7c7c7',
+ },
+ disabledColor: {
+ type: String,
+ value: '#bdbdbd',
+ },
+ count: {
+ type: Number,
+ value: 5,
+ observer: function (value) {
+ this.setData({ innerCountArray: Array.from({ length: value }) });
+ },
+ },
+ gutter: null,
+ touchable: {
+ type: Boolean,
+ value: true,
+ },
+ },
+ data: {
+ innerValue: 0,
+ innerCountArray: Array.from({ length: 5 }),
+ },
+ methods: {
+ onSelect: function (event) {
+ var _this = this;
+ var data = this.data;
+ var score = event.currentTarget.dataset.score;
+ if (!data.disabled && !data.readonly) {
+ this.setData({ innerValue: score + 1 });
+ if (version_1.canIUseModel()) {
+ this.setData({ value: score + 1 });
+ }
+ wx.nextTick(function () {
+ _this.$emit('input', score + 1);
+ _this.$emit('change', score + 1);
+ });
+ }
+ },
+ onTouchMove: function (event) {
+ var _this = this;
+ var touchable = this.data.touchable;
+ if (!touchable) return;
+ var clientX = event.touches[0].clientX;
+ utils_1.getAllRect(this, '.van-rate__icon').then(function (list) {
+ var target = list
+ .sort(function (item) {
+ return item.right - item.left;
+ })
+ .find(function (item) {
+ return clientX >= item.left && clientX <= item.right;
+ });
+ if (target != null) {
+ _this.onSelect(
+ __assign(__assign({}, event), { currentTarget: target })
+ );
+ }
+ });
+ },
+ },
+});
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/rate/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/rate/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/rate/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/rate/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/rate/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..58eee5cdca70917685e29cee0b0111c291a0f486
--- /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/rate/index.wxml"
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
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/rate/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/rate/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..6fd343546d19f25e492a5b217daec17fa37848a5
--- /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/rate/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-rate{display:-webkit-inline-flex;display:inline-flex;-webkit-user-select:none;user-select:none}.van-rate__item{position:relative;padding:0 2px;padding:0 var(--rate-horizontal-padding,2px)}.van-rate__icon{display:block;height:1em;font-size:20px;font-size:var(--rate-icon-size,20px)}.van-rate__icon--half{position:absolute;top:0;width:.5em;overflow:hidden;left:2px;left:var(--rate-horizontal-padding,2px)}
\ 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/row/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/row/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..a107b64917b89e9cfe08a22f92b61a4acfb13f7d
--- /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/row/index.js"
@@ -0,0 +1,26 @@
+'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('col', function (target) {
+ var gutter = this.data.gutter;
+ if (gutter) {
+ target.setData({ gutter: gutter });
+ }
+ }),
+ props: {
+ gutter: {
+ type: Number,
+ observer: 'setGutter',
+ },
+ },
+ methods: {
+ setGutter: function () {
+ var _this = this;
+ this.children.forEach(function (col) {
+ col.setData(_this.data);
+ });
+ },
+ },
+});
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/row/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/row/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/row/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/row/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/row/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..69a4359b16010c1ef2e251ae5ee9533885171db4
--- /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/row/index.wxml"
@@ -0,0 +1,5 @@
+
+
+
+
+
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/row/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/row/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..f5c5958748e6ce3e5a4d97fe7c23f2d3175ea403
--- /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/row/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({
+ 'margin-right': addUnit(-data.gutter / 2),
+ 'margin-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/row/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/row/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..32a098b0ad5df7dbbb02a894c344379d00e5b3b0
--- /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/row/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-row: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/search/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/search/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..2e61ab9bcc18c6d72490d47dde7d6d46fced9a0d
--- /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/search/index.js"
@@ -0,0 +1,81 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+var version_1 = require('../common/version');
+component_1.VantComponent({
+ field: true,
+ classes: ['field-class', 'input-class', 'cancel-class'],
+ props: {
+ label: String,
+ focus: Boolean,
+ error: Boolean,
+ disabled: Boolean,
+ readonly: Boolean,
+ inputAlign: String,
+ showAction: Boolean,
+ useActionSlot: Boolean,
+ useLeftIconSlot: Boolean,
+ useRightIconSlot: Boolean,
+ leftIcon: {
+ type: String,
+ value: 'search',
+ },
+ rightIcon: String,
+ placeholder: String,
+ placeholderStyle: String,
+ actionText: {
+ type: String,
+ value: '取消',
+ },
+ background: {
+ type: String,
+ value: '#ffffff',
+ },
+ maxlength: {
+ type: Number,
+ value: -1,
+ },
+ shape: {
+ type: String,
+ value: 'square',
+ },
+ clearable: {
+ type: Boolean,
+ value: true,
+ },
+ },
+ methods: {
+ onChange: function (event) {
+ if (version_1.canIUseModel()) {
+ this.setData({ value: event.detail });
+ }
+ this.$emit('change', event.detail);
+ },
+ onCancel: function () {
+ var _this = this;
+ /**
+ * 修复修改输入框值时,输入框失焦和赋值同时触发,赋值失效
+ * https://github.com/youzan/@vant/weapp/issues/1768
+ */
+ setTimeout(function () {
+ if (version_1.canIUseModel()) {
+ _this.setData({ value: '' });
+ }
+ _this.$emit('cancel');
+ _this.$emit('change', '');
+ }, 200);
+ },
+ onSearch: function (event) {
+ this.$emit('search', event.detail);
+ },
+ onFocus: function (event) {
+ this.$emit('focus', event.detail);
+ },
+ onBlur: function (event) {
+ this.$emit('blur', event.detail);
+ },
+ onClear: function (event) {
+ this.$emit('clear', event.detail);
+ },
+ },
+});
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/search/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/search/index.json"
new file mode 100644
index 0000000000000000000000000000000000000000..b4cfe918beacb1fe29d9c7bc488a9fc44968fcf1
--- /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/search/index.json"
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-field": "../field/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/search/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/search/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..1d0e6f1f1177a9a39a324ae314b7c75de5118065
--- /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/search/index.wxml"
@@ -0,0 +1,50 @@
+
+
+
+
+ {{ label }}
+
+
+
+
+
+
+
+
+
+
+ {{ actionText }}
+
+
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/search/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/search/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..c918deb85c2603893653d0256ae87e494fc9e8d1
--- /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/search/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-search{-webkit-align-items:center;align-items:center;box-sizing:border-box;padding:10px 12px;padding:var(--search-padding,10px 12px)}.van-search,.van-search__content{display:-webkit-flex;display:flex}.van-search__content{-webkit-flex:1;flex:1;padding-left:12px;padding-left:var(--padding-sm,12px);border-radius:2px;border-radius:var(--border-radius-sm,2px);background-color:#f7f8fa;background-color:var(--search-background-color,#f7f8fa)}.van-search__content--round{border-radius:17px;border-radius:calc(var(--search-input-height, 34px)/2)}.van-search__label{padding:0 5px;padding:var(--search-label-padding,0 5px);font-size:14px;font-size:var(--search-label-font-size,14px);line-height:34px;line-height:var(--search-input-height,34px);color:#323233;color:var(--search-label-color,#323233)}.van-search__field{-webkit-flex:1;flex:1}.van-search__field__left-icon{color:#969799;color:var(--search-left-icon-color,#969799)}.van-search--withaction{padding-right:0}.van-search__action{padding:0 8px;padding:var(--search-action-padding,0 8px);font-size:14px;font-size:var(--search-action-font-size,14px);line-height:34px;line-height:var(--search-input-height,34px);color:#323233;color:var(--search-action-text-color,#323233)}.van-search__action--hover{background-color:#f2f3f5;background-color:var(--active-color,#f2f3f5)}
\ 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/share-sheet/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/share-sheet/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..440caf84f9c9fbb327fea960d812d22bd26b97cc
--- /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/share-sheet/index.js"
@@ -0,0 +1,57 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+component_1.VantComponent({
+ props: {
+ // whether to show popup
+ show: Boolean,
+ // overlay custom style
+ overlayStyle: Object,
+ // z-index
+ zIndex: {
+ type: Number,
+ value: 100,
+ },
+ title: String,
+ cancelText: {
+ type: String,
+ value: '取消',
+ },
+ description: String,
+ options: {
+ type: Array,
+ value: [],
+ },
+ overlay: {
+ type: Boolean,
+ value: true,
+ },
+ safeAreaInsetBottom: {
+ type: Boolean,
+ value: true,
+ },
+ closeOnClickOverlay: {
+ type: Boolean,
+ value: true,
+ },
+ duration: {
+ type: null,
+ value: 300,
+ },
+ },
+ methods: {
+ onClickOverlay: function () {
+ this.$emit('click-overlay');
+ },
+ onCancel: function () {
+ this.onClose();
+ this.$emit('cancel');
+ },
+ onSelect: function (event) {
+ this.$emit('select', event.detail);
+ },
+ onClose: function () {
+ this.$emit('close');
+ },
+ },
+});
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/share-sheet/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/share-sheet/index.json"
new file mode 100644
index 0000000000000000000000000000000000000000..15a7c2243dcbd380b0aa0b9416f608cafb90f7b5
--- /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/share-sheet/index.json"
@@ -0,0 +1,7 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-popup": "../popup/index",
+ "options": "./options"
+ }
+}
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/share-sheet/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/share-sheet/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..cefc3af44403c541579e60613262117abe524ab0
--- /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/share-sheet/index.wxml"
@@ -0,0 +1,46 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
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/share-sheet/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/share-sheet/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..2149ee9e43a28f022ab22429a82488c7aed8d2b4
--- /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/share-sheet/index.wxs"
@@ -0,0 +1,12 @@
+/* eslint-disable */
+function isMulti(options) {
+ if (options == null || options[0] == null) {
+ return false;
+ }
+
+ return "Array" === options.constructor && "Array" === options[0].constructor;
+}
+
+module.exports = {
+ isMulti: isMulti
+};
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/share-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/share-sheet/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..8d42eb270f26255df81254b9a9a489aff9ff9c9a
--- /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/share-sheet/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-share-sheet__header{padding:12px 16px 4px;text-align:center}.van-share-sheet__title{margin-top:8px;color:#323233;font-weight:400;font-size:14px;line-height:20px}.van-share-sheet__title:empty,.van-share-sheet__title:not(:empty)+.van-share-sheet__title{display:none}.van-share-sheet__description{display:block;margin-top:8px;color:#969799;font-size:12px;line-height:16px}.van-share-sheet__description:empty,.van-share-sheet__description:not(:empty)+.van-share-sheet__description{display:none}.van-share-sheet__cancel{display:block;box-sizing:initial;width:100%;height:auto;padding:0;font-size:16px;line-height:48px;text-align:center;background:#fff;border:none}.van-share-sheet__cancel:before{display:block;height:8px;background-color:#f7f8fa;content:" "}.van-share-sheet__cancel:after{display:none}.van-share-sheet__cancel:active{background-color:#f2f3f5}
\ 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/share-sheet/options.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/share-sheet/options.js"
new file mode 100644
index 0000000000000000000000000000000000000000..f503f4c6b3a8a5a54e1519f1651fd3a4f8b613c8
--- /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/share-sheet/options.js"
@@ -0,0 +1,31 @@
+'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');
+component_1.VantComponent({
+ props: {
+ options: Array,
+ showBorder: Boolean,
+ },
+ methods: {
+ onSelect: function (event) {
+ var index = event.currentTarget.dataset.index;
+ var option = this.data.options[index];
+ this.$emit('select', __assign(__assign({}, option), { index: 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/share-sheet/options.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/share-sheet/options.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/share-sheet/options.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/share-sheet/options.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/share-sheet/options.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..cad68377251e99662ab45cf854e01eb2751ad0d4
--- /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/share-sheet/options.wxml"
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+ {{ item.name }}
+
+ {{ item.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/share-sheet/options.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/share-sheet/options.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..ab6033b915d37d99dabf034ecf327a5b5cbe59ff
--- /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/share-sheet/options.wxs"
@@ -0,0 +1,14 @@
+/* eslint-disable */
+var PRESET_ICONS = ['qq', 'weibo', 'wechat', 'link', 'qrcode', 'poster'];
+
+function getIconURL(icon) {
+ if (PRESET_ICONS.indexOf(icon) !== -1) {
+ return 'https://img.yzcdn.cn/vant/share-icon-' + icon + '.png';
+ }
+
+ return icon;
+}
+
+module.exports = {
+ getIconURL: getIconURL,
+};
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/share-sheet/options.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/share-sheet/options.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..ca7b02f294e620e4c9cf2e23aa3fae3407f5240c
--- /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/share-sheet/options.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-share-sheet__options{position:relative;display:-webkit-flex;display:flex;padding:16px 0 16px 8px;overflow-x:auto;overflow-y:visible;-webkit-overflow-scrolling:touch}.van-share-sheet__options--border:before{position:absolute;box-sizing:border-box;-webkit-transform-origin:center;transform-origin:center;content:" ";pointer-events:none;top:0;right:0;left:16px;border-top:1px solid #ebedf0;-webkit-transform:scaleY(.5);transform:scaleY(.5)}.van-share-sheet__options::-webkit-scrollbar{height:0}.van-share-sheet__option{display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;-webkit-align-items:center;align-items:center;-webkit-user-select:none;user-select:none}.van-share-sheet__option:active{opacity:.7}.van-share-sheet__button{height:auto;padding:0;line-height:inherit;background-color:initial;border:0}.van-share-sheet__button:after{border:0}.van-share-sheet__icon{width:48px;height:48px;margin:0 16px}.van-share-sheet__name{margin-top:8px;padding:0 4px;color:#646566;font-size:12px}.van-share-sheet__option-description{padding:0 4px;color:#c8c9cc;font-size:12px}
\ 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/sidebar-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/sidebar-item/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..a5ed300b8a879f86eba4cabd699c12627517591f
--- /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/sidebar-item/index.js"
@@ -0,0 +1,32 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+var relation_1 = require('../common/relation');
+component_1.VantComponent({
+ classes: ['active-class', 'disabled-class'],
+ relation: relation_1.useParent('sidebar'),
+ props: {
+ dot: Boolean,
+ badge: null,
+ info: null,
+ title: String,
+ disabled: Boolean,
+ },
+ methods: {
+ onClick: function () {
+ var _this = this;
+ var parent = this.parent;
+ if (!parent || this.data.disabled) {
+ return;
+ }
+ var index = parent.children.indexOf(this);
+ parent.setActive(index).then(function () {
+ _this.$emit('click', index);
+ parent.$emit('change', index);
+ });
+ },
+ setActive: function (selected) {
+ return this.setData({ selected: selected });
+ },
+ },
+});
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/sidebar-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/sidebar-item/index.json"
new file mode 100644
index 0000000000000000000000000000000000000000..bf0ebe009c3904229ff4005710f4136b55cf57aa
--- /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/sidebar-item/index.json"
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-info": "../info/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/sidebar-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/sidebar-item/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..c5c08a6269a93b5bf5cf484e71759bb9dda6f07a
--- /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/sidebar-item/index.wxml"
@@ -0,0 +1,18 @@
+
+
+
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/sidebar-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/sidebar-item/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..f134528f23c2f0d1701777cd9566ce3e14b4235e
--- /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/sidebar-item/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-sidebar-item{display:block;box-sizing:border-box;overflow:hidden;border-left:3px solid transparent;-webkit-user-select:none;user-select:none;padding:20px 12px 20px 8px;padding:var(--sidebar-padding,20px 12px 20px 8px);font-size:14px;font-size:var(--sidebar-font-size,14px);line-height:20px;line-height:var(--sidebar-line-height,20px);color:#323233;color:var(--sidebar-text-color,#323233);background-color:#f7f8fa;background-color:var(--sidebar-background-color,#f7f8fa)}.van-sidebar-item__text{position:relative;display:inline-block;word-break:break-all}.van-sidebar-item--hover:not(.van-sidebar-item--disabled){background-color:#f2f3f5;background-color:var(--sidebar-active-color,#f2f3f5)}.van-sidebar-item:after{border-bottom-width:1px}.van-sidebar-item--selected{color:#323233;color:var(--sidebar-selected-text-color,#323233);font-weight:500;font-weight:var(--sidebar-selected-font-weight,500);border-color:#ee0a24;border-color:var(--sidebar-selected-border-color,#ee0a24)}.van-sidebar-item--selected:after{border-right-width:1px}.van-sidebar-item--selected,.van-sidebar-item--selected.van-sidebar-item--hover{background-color:#fff;background-color:var(--sidebar-selected-background-color,#fff)}.van-sidebar-item--disabled{color:#c8c9cc;color:var(--sidebar-disabled-text-color,#c8c9cc)}
\ 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/sidebar/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/sidebar/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..5265361dccfd1d2ce5edd5aed43b3eee4445a695
--- /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/sidebar/index.js"
@@ -0,0 +1,38 @@
+'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('sidebar-item', function () {
+ this.setActive(this.data.activeKey);
+ }),
+ props: {
+ activeKey: {
+ type: Number,
+ value: 0,
+ observer: 'setActive',
+ },
+ },
+ beforeCreate: function () {
+ this.currentActive = -1;
+ },
+ methods: {
+ setActive: function (activeKey) {
+ var _a = this,
+ children = _a.children,
+ currentActive = _a.currentActive;
+ if (!children.length) {
+ return Promise.resolve();
+ }
+ this.currentActive = activeKey;
+ var stack = [];
+ if (currentActive !== activeKey && children[currentActive]) {
+ stack.push(children[currentActive].setActive(false));
+ }
+ if (children[activeKey]) {
+ stack.push(children[activeKey].setActive(true));
+ }
+ return Promise.all(stack);
+ },
+ },
+});
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/sidebar/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/sidebar/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/sidebar/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/sidebar/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/sidebar/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..96b11c718ee3d34e79a90c18b2a16be06259a1da
--- /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/sidebar/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/sidebar/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/sidebar/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..8ad18841a2d5d1c81931addff1537deb800ea106
--- /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/sidebar/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-sidebar{width:80px;width:var(--sidebar-width,80px)}
\ 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/skeleton/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/skeleton/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..52137fa89092635bd44861d65fa72928e7db59ab
--- /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/skeleton/index.js"
@@ -0,0 +1,48 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+component_1.VantComponent({
+ classes: ['avatar-class', 'title-class', 'row-class'],
+ props: {
+ row: {
+ type: Number,
+ value: 0,
+ observer: function (value) {
+ this.setData({ rowArray: Array.from({ length: value }) });
+ },
+ },
+ title: Boolean,
+ avatar: Boolean,
+ loading: {
+ type: Boolean,
+ value: true,
+ },
+ animate: {
+ type: Boolean,
+ value: true,
+ },
+ avatarSize: {
+ type: String,
+ value: '32px',
+ },
+ avatarShape: {
+ type: String,
+ value: 'round',
+ },
+ titleWidth: {
+ type: String,
+ value: '40%',
+ },
+ rowWidth: {
+ type: null,
+ value: '100%',
+ observer: function (val) {
+ this.setData({ isArray: val instanceof Array });
+ },
+ },
+ },
+ data: {
+ isArray: false,
+ rowArray: [],
+ },
+});
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/skeleton/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/skeleton/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/skeleton/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/skeleton/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/skeleton/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..058e2efd1795f88f123873eec84f917902317145
--- /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/skeleton/index.wxml"
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
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/skeleton/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/skeleton/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..565b26e498348dd798c570c4abb86b9cc9fad90a
--- /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/skeleton/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-skeleton{display:-webkit-flex;display:flex;box-sizing:border-box;width:100%;padding:0 16px;padding:var(--skeleton-padding,0 16px)}.van-skeleton__avatar{-webkit-flex-shrink:0;flex-shrink:0;margin-right:16px;margin-right:var(--padding-md,16px);background-color:#f2f3f5;background-color:var(--skeleton-avatar-background-color,#f2f3f5)}.van-skeleton__avatar--round{border-radius:100%}.van-skeleton__content{-webkit-flex:1;flex:1}.van-skeleton__avatar+.van-skeleton__content{padding-top:8px;padding-top:var(--padding-xs,8px)}.van-skeleton__row,.van-skeleton__title{height:16px;height:var(--skeleton-row-height,16px);background-color:#f2f3f5;background-color:var(--skeleton-row-background-color,#f2f3f5)}.van-skeleton__title{margin:0}.van-skeleton__row:not(:first-child){margin-top:12px;margin-top:var(--skeleton-row-margin-top,12px)}.van-skeleton__title+.van-skeleton__row{margin-top:20px}.van-skeleton--animate{-webkit-animation:van-skeleton-blink 1.2s ease-in-out infinite;animation:van-skeleton-blink 1.2s ease-in-out infinite}@-webkit-keyframes van-skeleton-blink{50%{opacity:.6}}@keyframes van-skeleton-blink{50%{opacity:.6}}
\ 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/slider/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/slider/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..82fb5f4c110d794247212bcba698262574423806
--- /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/slider/index.js"
@@ -0,0 +1,118 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+var touch_1 = require('../mixins/touch');
+var version_1 = require('../common/version');
+var utils_1 = require('../common/utils');
+component_1.VantComponent({
+ mixins: [touch_1.touch],
+ props: {
+ disabled: Boolean,
+ useButtonSlot: Boolean,
+ activeColor: String,
+ inactiveColor: String,
+ max: {
+ type: Number,
+ value: 100,
+ },
+ min: {
+ type: Number,
+ value: 0,
+ },
+ step: {
+ type: Number,
+ value: 1,
+ },
+ value: {
+ type: Number,
+ value: 0,
+ observer: function (val) {
+ if (val !== this.value) {
+ this.updateValue(val);
+ }
+ },
+ },
+ barHeight: {
+ type: null,
+ value: 2,
+ },
+ },
+ created: function () {
+ this.updateValue(this.data.value);
+ },
+ methods: {
+ onTouchStart: function (event) {
+ if (this.data.disabled) return;
+ this.touchStart(event);
+ this.startValue = this.format(this.value);
+ this.dragStatus = 'start';
+ },
+ onTouchMove: function (event) {
+ var _this = this;
+ if (this.data.disabled) return;
+ if (this.dragStatus === 'start') {
+ this.$emit('drag-start');
+ }
+ this.touchMove(event);
+ this.dragStatus = 'draging';
+ utils_1.getRect(this, '.van-slider').then(function (rect) {
+ var diff = (_this.deltaX / rect.width) * _this.getRange();
+ _this.newValue = _this.startValue + diff;
+ _this.updateValue(_this.newValue, false, true);
+ });
+ },
+ onTouchEnd: function () {
+ if (this.data.disabled) return;
+ if (this.dragStatus === 'draging') {
+ this.updateValue(this.newValue, true);
+ this.$emit('drag-end');
+ }
+ },
+ onClick: function (event) {
+ var _this = this;
+ if (this.data.disabled) return;
+ var min = this.data.min;
+ utils_1.getRect(this, '.van-slider').then(function (rect) {
+ var value =
+ ((event.detail.x - rect.left) / rect.width) * _this.getRange() + min;
+ _this.updateValue(value, true);
+ });
+ },
+ updateValue: function (value, end, drag) {
+ value = this.format(value);
+ var min = this.data.min;
+ var width = ((value - min) * 100) / this.getRange() + '%';
+ this.value = value;
+ this.setData({
+ barStyle:
+ '\n width: ' +
+ width +
+ ';\n ' +
+ (drag ? 'transition: none;' : '') +
+ '\n ',
+ });
+ if (drag) {
+ this.$emit('drag', { value: value });
+ }
+ if (end) {
+ this.$emit('change', value);
+ }
+ if ((drag || end) && version_1.canIUseModel()) {
+ this.setData({ value: value });
+ }
+ },
+ getRange: function () {
+ var _a = this.data,
+ max = _a.max,
+ min = _a.min;
+ return max - min;
+ },
+ format: function (value) {
+ var _a = this.data,
+ max = _a.max,
+ min = _a.min,
+ step = _a.step;
+ return Math.round(Math.max(min, Math.min(value, max)) / step) * step;
+ },
+ },
+});
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/slider/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/slider/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/slider/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/slider/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/slider/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..6a430f386a5f23350eb66a0ce7eff2e6b3922540
--- /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/slider/index.wxml"
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
+
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/slider/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/slider/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..7c43e6e538d88540791c53a17acdd75de03d6f2d
--- /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/slider/index.wxs"
@@ -0,0 +1,14 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function barStyle(barHeight, activeColor) {
+ return style({
+ height: addUnit(barHeight),
+ background: activeColor,
+ });
+}
+
+module.exports = {
+ barStyle: barStyle,
+};
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/slider/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/slider/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..7886b6065739a504747bc8aa5bab339b83748fb7
--- /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/slider/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-slider{position:relative;border-radius:999px;border-radius:var(--border-radius-max,999px);background-color:#ebedf0;background-color:var(--slider-inactive-background-color,#ebedf0)}.van-slider:before{position:absolute;right:0;left:0;content:"";top:-8px;top:-var(--padding-xs,8px);bottom:-8px;bottom:-var(--padding-xs,8px)}.van-slider__bar{position:relative;border-radius:inherit;transition:width .2s;transition:width var(--animation-duration-fast,.2s);background-color:#1989fa;background-color:var(--slider-active-background-color,#1989fa)}.van-slider__button{width:24px;height:24px;border-radius:50%;box-shadow:0 1px 2px rgba(0,0,0,.5);background-color:#fff;background-color:var(--slider-button-background-color,#fff)}.van-slider__button-wrapper{position:absolute;top:50%;right:0;-webkit-transform:translate3d(50%,-50%,0);transform:translate3d(50%,-50%,0)}.van-slider--disabled{opacity:.5}
\ 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/stepper/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/stepper/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..b8b061d61c432563d0123c36a13f0b65380f8db7
--- /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/stepper/index.js"
@@ -0,0 +1,218 @@
+'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 validator_1 = require('../common/validator');
+var LONG_PRESS_START_TIME = 600;
+var LONG_PRESS_INTERVAL = 200;
+// add num and avoid float number
+function add(num1, num2) {
+ var cardinal = Math.pow(10, 10);
+ return Math.round((num1 + num2) * cardinal) / cardinal;
+}
+function equal(value1, value2) {
+ return String(value1) === String(value2);
+}
+component_1.VantComponent({
+ field: true,
+ classes: ['input-class', 'plus-class', 'minus-class'],
+ props: {
+ value: {
+ type: null,
+ observer: 'observeValue',
+ },
+ integer: {
+ type: Boolean,
+ observer: 'check',
+ },
+ disabled: Boolean,
+ inputWidth: String,
+ buttonSize: String,
+ asyncChange: Boolean,
+ disableInput: Boolean,
+ decimalLength: {
+ type: Number,
+ value: null,
+ observer: 'check',
+ },
+ min: {
+ type: null,
+ value: 1,
+ observer: 'check',
+ },
+ max: {
+ type: null,
+ value: Number.MAX_SAFE_INTEGER,
+ observer: 'check',
+ },
+ step: {
+ type: null,
+ value: 1,
+ },
+ showPlus: {
+ type: Boolean,
+ value: true,
+ },
+ showMinus: {
+ type: Boolean,
+ value: true,
+ },
+ disablePlus: Boolean,
+ disableMinus: Boolean,
+ longPress: {
+ type: Boolean,
+ value: true,
+ },
+ theme: String,
+ },
+ data: {
+ currentValue: '',
+ },
+ created: function () {
+ this.setData({
+ currentValue: this.format(this.data.value),
+ });
+ },
+ methods: {
+ observeValue: function () {
+ var _a = this.data,
+ value = _a.value,
+ currentValue = _a.currentValue;
+ if (!equal(value, currentValue)) {
+ this.setData({ currentValue: this.format(value) });
+ }
+ },
+ check: function () {
+ var val = this.format(this.data.currentValue);
+ if (!equal(val, this.data.currentValue)) {
+ this.setData({ currentValue: val });
+ }
+ },
+ isDisabled: function (type) {
+ var _a = this.data,
+ disabled = _a.disabled,
+ disablePlus = _a.disablePlus,
+ disableMinus = _a.disableMinus,
+ currentValue = _a.currentValue,
+ max = _a.max,
+ min = _a.min;
+ if (type === 'plus') {
+ return disabled || disablePlus || currentValue >= max;
+ }
+ return disabled || disableMinus || currentValue <= min;
+ },
+ onFocus: function (event) {
+ this.$emit('focus', event.detail);
+ },
+ onBlur: function (event) {
+ var value = this.format(event.detail.value);
+ this.emitChange(value);
+ this.$emit(
+ 'blur',
+ __assign(__assign({}, event.detail), { value: value })
+ );
+ },
+ // filter illegal characters
+ filter: function (value) {
+ value = String(value).replace(/[^0-9.-]/g, '');
+ if (this.data.integer && value.indexOf('.') !== -1) {
+ value = value.split('.')[0];
+ }
+ return value;
+ },
+ // limit value range
+ format: function (value) {
+ value = this.filter(value);
+ // format range
+ value = value === '' ? 0 : +value;
+ value = Math.max(Math.min(this.data.max, value), this.data.min);
+ // format decimal
+ if (validator_1.isDef(this.data.decimalLength)) {
+ value = value.toFixed(this.data.decimalLength);
+ }
+ return value;
+ },
+ onInput: function (event) {
+ var _a = (event.detail || {}).value,
+ value = _a === void 0 ? '' : _a;
+ // allow input to be empty
+ if (value === '') {
+ return;
+ }
+ var formatted = this.filter(value);
+ // limit max decimal length
+ if (
+ validator_1.isDef(this.data.decimalLength) &&
+ formatted.indexOf('.') !== -1
+ ) {
+ var pair = formatted.split('.');
+ formatted = pair[0] + '.' + pair[1].slice(0, this.data.decimalLength);
+ }
+ this.emitChange(formatted);
+ },
+ emitChange: function (value) {
+ if (!this.data.asyncChange) {
+ this.setData({ currentValue: value });
+ }
+ this.$emit('change', value);
+ },
+ onChange: function () {
+ var type = this.type;
+ if (this.isDisabled(type)) {
+ this.$emit('overlimit', type);
+ return;
+ }
+ var diff = type === 'minus' ? -this.data.step : +this.data.step;
+ var value = this.format(add(+this.data.currentValue, diff));
+ this.emitChange(value);
+ this.$emit(type);
+ },
+ longPressStep: function () {
+ var _this = this;
+ this.longPressTimer = setTimeout(function () {
+ _this.onChange();
+ _this.longPressStep();
+ }, LONG_PRESS_INTERVAL);
+ },
+ onTap: function (event) {
+ var type = event.currentTarget.dataset.type;
+ this.type = type;
+ this.onChange();
+ },
+ onTouchStart: function (event) {
+ var _this = this;
+ if (!this.data.longPress) {
+ return;
+ }
+ clearTimeout(this.longPressTimer);
+ var type = event.currentTarget.dataset.type;
+ this.type = type;
+ this.isLongPress = false;
+ this.longPressTimer = setTimeout(function () {
+ _this.isLongPress = true;
+ _this.onChange();
+ _this.longPressStep();
+ }, LONG_PRESS_START_TIME);
+ },
+ onTouchEnd: function () {
+ if (!this.data.longPress) {
+ return;
+ }
+ clearTimeout(this.longPressTimer);
+ },
+ },
+});
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/stepper/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/stepper/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/stepper/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/stepper/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/stepper/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..b49140e50894666d06543a87c844fd590de8366b
--- /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/stepper/index.wxml"
@@ -0,0 +1,42 @@
+
+
+
+
+
+
+
+
+
+
+
+
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/stepper/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/stepper/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..a13e818bffddcd11afb49185715c19fa4c07c091
--- /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/stepper/index.wxs"
@@ -0,0 +1,22 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function buttonStyle(data) {
+ return style({
+ width: addUnit(data.buttonSize),
+ height: addUnit(data.buttonSize),
+ });
+}
+
+function inputStyle(data) {
+ return style({
+ width: addUnit(data.inputWidth),
+ height: addUnit(data.buttonSize),
+ });
+}
+
+module.exports = {
+ buttonStyle: buttonStyle,
+ 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/stepper/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/stepper/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..e924a2b9f6625fb45440ca34de55a786b5bfcc21
--- /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/stepper/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-stepper{font-size:0}.van-stepper__minus,.van-stepper__plus{position:relative;display:inline-block;box-sizing:border-box;margin:1px;vertical-align:middle;border:0;background-color:#f2f3f5;background-color:var(--stepper-background-color,#f2f3f5);color:#323233;color:var(--stepper-button-icon-color,#323233);width:28px;width:var(--stepper-input-height,28px);height:28px;height:var(--stepper-input-height,28px);padding:4px;padding:var(--padding-base,4px)}.van-stepper__minus:before,.van-stepper__plus:before{width:9px;height:1px}.van-stepper__minus:after,.van-stepper__plus:after{width:1px;height:9px}.van-stepper__minus:empty.van-stepper__minus:after,.van-stepper__minus:empty.van-stepper__minus:before,.van-stepper__minus:empty.van-stepper__plus:after,.van-stepper__minus:empty.van-stepper__plus:before,.van-stepper__plus:empty.van-stepper__minus:after,.van-stepper__plus:empty.van-stepper__minus:before,.van-stepper__plus:empty.van-stepper__plus:after,.van-stepper__plus:empty.van-stepper__plus:before{position:absolute;top:0;right:0;bottom:0;left:0;margin:auto;background-color:currentColor;content:""}.van-stepper__minus--hover,.van-stepper__plus--hover{background-color:#e8e8e8;background-color:var(--stepper-active-color,#e8e8e8)}.van-stepper__minus--disabled,.van-stepper__plus--disabled{color:#c8c9cc;color:var(--stepper-button-disabled-icon-color,#c8c9cc)}.van-stepper__minus--disabled,.van-stepper__minus--disabled.van-stepper__minus--hover,.van-stepper__minus--disabled.van-stepper__plus--hover,.van-stepper__plus--disabled,.van-stepper__plus--disabled.van-stepper__minus--hover,.van-stepper__plus--disabled.van-stepper__plus--hover{background-color:#f7f8fa;background-color:var(--stepper-button-disabled-color,#f7f8fa)}.van-stepper__minus{border-radius:4px 0 0 4px;border-radius:var(--stepper-border-radius,4px) 0 0 var(--stepper-border-radius,4px)}.van-stepper__minus:after{display:none}.van-stepper__plus{border-radius:0 4px 4px 0;border-radius:0 var(--stepper-border-radius,4px) var(--stepper-border-radius,4px) 0}.van-stepper--round .van-stepper__input{background-color:initial!important}.van-stepper--round .van-stepper__minus,.van-stepper--round .van-stepper__plus{border-radius:100%}.van-stepper--round .van-stepper__minus:active,.van-stepper--round .van-stepper__plus:active{opacity:.7}.van-stepper--round .van-stepper__minus--disabled,.van-stepper--round .van-stepper__minus--disabled:active,.van-stepper--round .van-stepper__plus--disabled,.van-stepper--round .van-stepper__plus--disabled:active{opacity:.3}.van-stepper--round .van-stepper__plus{color:#fff;background-color:#ee0a24}.van-stepper--round .van-stepper__minus{color:#ee0a24;background-color:#fff;border:1px solid #ee0a24}.van-stepper__input{display:inline-block;box-sizing:border-box;min-height:0;margin:1px;padding:1px;text-align:center;vertical-align:middle;border:0;border-width:1px 0;border-radius:0;-webkit-appearance:none;font-size:14px;font-size:var(--stepper-input-font-size,14px);color:#323233;color:var(--stepper-input-text-color,#323233);background-color:#f2f3f5;background-color:var(--stepper-background-color,#f2f3f5);width:32px;width:var(--stepper-input-width,32px);height:28px;height:var(--stepper-input-height,28px)}.van-stepper__input--disabled{color:#c8c9cc;color:var(--stepper-input-disabled-text-color,#c8c9cc);background-color:#f2f3f5;background-color:var(--stepper-input-disabled-background-color,#f2f3f5)}
\ 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/steps/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/steps/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..c41e5adea6603c81d0fc1832ecf32a43b1fe900a
--- /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/steps/index.js"
@@ -0,0 +1,35 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+var color_1 = require('../common/color');
+component_1.VantComponent({
+ classes: ['desc-class'],
+ props: {
+ icon: String,
+ steps: Array,
+ active: Number,
+ direction: {
+ type: String,
+ value: 'horizontal',
+ },
+ activeColor: {
+ type: String,
+ value: color_1.GREEN,
+ },
+ inactiveColor: {
+ type: String,
+ value: color_1.GRAY_DARK,
+ },
+ activeIcon: {
+ type: String,
+ value: 'checked',
+ },
+ inactiveIcon: String,
+ },
+ methods: {
+ onClick: function (event) {
+ var index = event.currentTarget.dataset.index;
+ this.$emit('click-step', 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/steps/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/steps/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/steps/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/steps/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/steps/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..6180b4173e54ca9720c45d8710e798c2b9584531
--- /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/steps/index.wxml"
@@ -0,0 +1,54 @@
+
+
+
+
+
+
+ {{ item.text }}
+ {{ item.desc }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+function get(index, active) {
+ if (index < active) {
+ return 'finish';
+ } else if (index === active) {
+ return 'process';
+ }
+
+ return 'inactive';
+}
+
+module.exports = get;
+
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/steps/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/steps/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..2c50b1abedd7a082e3ce52d2d416a54ca87dc437
--- /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/steps/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-steps{overflow:hidden;background-color:#fff;background-color:var(--steps-background-color,#fff)}.van-steps--horizontal{padding:10px}.van-steps--horizontal .van-step__wrapper{position:relative;display:-webkit-flex;display:flex;overflow:hidden}.van-steps--vertical{padding-left:10px}.van-steps--vertical .van-step__wrapper{padding:0 0 0 20px}.van-step{position:relative;-webkit-flex:1;flex:1;font-size:14px;font-size:var(--step-font-size,14px);color:#969799;color:var(--step-text-color,#969799)}.van-step--finish{color:#323233;color:var(--step-finish-text-color,#323233)}.van-step__circle{border-radius:50%;width:5px;width:var(--step-circle-size,5px);height:5px;height:var(--step-circle-size,5px);background-color:#969799;background-color:var(--step-circle-color,#969799)}.van-step--horizontal{padding-bottom:14px}.van-step--horizontal:first-child .van-step__title{-webkit-transform:none;transform:none}.van-step--horizontal:first-child .van-step__circle-container{padding:0 8px 0 0;-webkit-transform:translate3d(0,50%,0);transform:translate3d(0,50%,0)}.van-step--horizontal:last-child{position:absolute;right:0;width:auto}.van-step--horizontal:last-child .van-step__title{text-align:right;-webkit-transform:none;transform:none}.van-step--horizontal:last-child .van-step__circle-container{right:0;padding:0 0 0 8px;-webkit-transform:translate3d(0,50%,0);transform:translate3d(0,50%,0)}.van-step--horizontal .van-step__circle-container{position:absolute;bottom:6px;z-index:1;-webkit-transform:translate3d(-50%,50%,0);transform:translate3d(-50%,50%,0);background-color:#fff;background-color:var(--white,#fff);padding:0 8px;padding:0 var(--padding-xs,8px)}.van-step--horizontal .van-step__title{display:inline-block;-webkit-transform:translate3d(-50%,0,0);transform:translate3d(-50%,0,0);font-size:12px;font-size:var(--step-horizontal-title-font-size,12px)}.van-step--horizontal .van-step__line{position:absolute;right:0;bottom:6px;left:0;height:1px;-webkit-transform:translate3d(0,50%,0);transform:translate3d(0,50%,0);background-color:#ebedf0;background-color:var(--step-line-color,#ebedf0)}.van-step--horizontal.van-step--process{color:#323233;color:var(--step-process-text-color,#323233)}.van-step--horizontal.van-step--process .van-step__icon{display:block;line-height:1;font-size:12px;font-size:var(--step-icon-size,12px)}.van-step--vertical{padding:10px 10px 10px 0;line-height:18px}.van-step--vertical:after{border-bottom-width:1px}.van-step--vertical:last-child:after{border-bottom-width:none}.van-step--vertical:first-child:before{position:absolute;top:0;left:-15px;z-index:1;width:1px;height:20px;content:"";background-color:#fff;background-color:var(--white,#fff)}.van-step--vertical .van-step__circle,.van-step--vertical .van-step__icon,.van-step--vertical .van-step__line{position:absolute;top:19px;left:-14px;z-index:2;-webkit-transform:translate3d(-50%,-50%,0);transform:translate3d(-50%,-50%,0)}.van-step--vertical .van-step__icon{line-height:1;font-size:12px;font-size:var(--step-icon-size,12px)}.van-step--vertical .van-step__line{z-index:1;width:1px;height:100%;-webkit-transform:translate3d(-50%,0,0);transform:translate3d(-50%,0,0);background-color:#ebedf0;background-color:var(--step-line-color,#ebedf0)}
\ 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/sticky/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/sticky/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..8adcef1f60c103e7484cd189421e3c9f0115f1c5
--- /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/sticky/index.js"
@@ -0,0 +1,123 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var utils_1 = require('../common/utils');
+var component_1 = require('../common/component');
+var page_scroll_1 = require('../mixins/page-scroll');
+var ROOT_ELEMENT = '.van-sticky';
+component_1.VantComponent({
+ props: {
+ zIndex: {
+ type: Number,
+ value: 99,
+ },
+ offsetTop: {
+ type: Number,
+ value: 0,
+ observer: 'onScroll',
+ },
+ disabled: {
+ type: Boolean,
+ observer: 'onScroll',
+ },
+ container: {
+ type: null,
+ observer: 'onScroll',
+ },
+ scrollTop: {
+ type: null,
+ observer: function (val) {
+ this.onScroll({ scrollTop: val });
+ },
+ },
+ },
+ mixins: [
+ page_scroll_1.pageScrollMixin(function (event) {
+ if (this.data.scrollTop != null) {
+ return;
+ }
+ this.onScroll(event);
+ }),
+ ],
+ data: {
+ height: 0,
+ fixed: false,
+ transform: 0,
+ },
+ mounted: function () {
+ this.onScroll();
+ },
+ methods: {
+ onScroll: function (_a) {
+ var _this = this;
+ var scrollTop = (_a === void 0 ? {} : _a).scrollTop;
+ var _b = this.data,
+ container = _b.container,
+ offsetTop = _b.offsetTop,
+ disabled = _b.disabled;
+ if (disabled) {
+ this.setDataAfterDiff({
+ fixed: false,
+ transform: 0,
+ });
+ return;
+ }
+ this.scrollTop = scrollTop || this.scrollTop;
+ if (typeof container === 'function') {
+ Promise.all([
+ utils_1.getRect(this, ROOT_ELEMENT),
+ this.getContainerRect(),
+ ]).then(function (_a) {
+ var root = _a[0],
+ container = _a[1];
+ if (offsetTop + root.height > container.height + container.top) {
+ _this.setDataAfterDiff({
+ fixed: false,
+ transform: container.height - root.height,
+ });
+ } else if (offsetTop >= root.top) {
+ _this.setDataAfterDiff({
+ fixed: true,
+ height: root.height,
+ transform: 0,
+ });
+ } else {
+ _this.setDataAfterDiff({ fixed: false, transform: 0 });
+ }
+ });
+ return;
+ }
+ utils_1.getRect(this, ROOT_ELEMENT).then(function (root) {
+ if (offsetTop >= root.top) {
+ _this.setDataAfterDiff({ fixed: true, height: root.height });
+ _this.transform = 0;
+ } else {
+ _this.setDataAfterDiff({ fixed: false });
+ }
+ });
+ },
+ setDataAfterDiff: function (data) {
+ var _this = this;
+ wx.nextTick(function () {
+ var diff = Object.keys(data).reduce(function (prev, key) {
+ if (data[key] !== _this.data[key]) {
+ prev[key] = data[key];
+ }
+ return prev;
+ }, {});
+ if (Object.keys(diff).length > 0) {
+ _this.setData(diff);
+ }
+ _this.$emit('scroll', {
+ scrollTop: _this.scrollTop,
+ isFixed: data.fixed || _this.data.fixed,
+ });
+ });
+ },
+ getContainerRect: function () {
+ var nodesRef = this.data.container();
+ return new Promise(function (resolve) {
+ return nodesRef.boundingClientRect(resolve).exec();
+ });
+ },
+ },
+});
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/sticky/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/sticky/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/sticky/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/sticky/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/sticky/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..15e9f4a8ae6ebd01ceffa4fc8e6323b0010f7154
--- /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/sticky/index.wxml"
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
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/sticky/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/sticky/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..be99d8931eb610212aa0ee50e053792fede6fb5b
--- /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/sticky/index.wxs"
@@ -0,0 +1,25 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function wrapStyle(data) {
+ return style({
+ transform: data.transform
+ ? 'translate3d(0, ' + data.transform + 'px, 0)'
+ : '',
+ top: data.fixed ? addUnit(data.offsetTop) : '',
+ 'z-index': data.zIndex,
+ });
+}
+
+function containerStyle(data) {
+ return style({
+ height: data.fixed ? addUnit(data.height) : '',
+ 'z-index': data.zIndex,
+ });
+}
+
+module.exports = {
+ wrapStyle: wrapStyle,
+ containerStyle: containerStyle,
+};
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/sticky/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/sticky/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..526938754d16df9f292dcddb7a2ac9f6d0431422
--- /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/sticky/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-sticky{position:relative}.van-sticky-wrap--fixed{position:fixed;right:0;left: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/submit-bar/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/submit-bar/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..2b06332bc436e44bc22b758b75bda81ee189a59e
--- /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/submit-bar/index.js"
@@ -0,0 +1,61 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+component_1.VantComponent({
+ classes: ['bar-class', 'price-class', 'button-class'],
+ props: {
+ tip: {
+ type: null,
+ observer: 'updateTip',
+ },
+ tipIcon: String,
+ type: Number,
+ price: {
+ type: null,
+ observer: 'updatePrice',
+ },
+ label: String,
+ loading: Boolean,
+ disabled: Boolean,
+ buttonText: String,
+ currency: {
+ type: String,
+ value: '¥',
+ },
+ buttonType: {
+ type: String,
+ value: 'danger',
+ },
+ decimalLength: {
+ type: Number,
+ value: 2,
+ observer: 'updatePrice',
+ },
+ suffixLabel: String,
+ safeAreaInsetBottom: {
+ type: Boolean,
+ value: true,
+ },
+ },
+ methods: {
+ updatePrice: function () {
+ var _a = this.data,
+ price = _a.price,
+ decimalLength = _a.decimalLength;
+ var priceStrArr =
+ typeof price === 'number' &&
+ (price / 100).toFixed(decimalLength).split('.');
+ this.setData({
+ hasPrice: typeof price === 'number',
+ integerStr: priceStrArr && priceStrArr[0],
+ decimalStr: decimalLength && priceStrArr ? '.' + priceStrArr[1] : '',
+ });
+ },
+ updateTip: function () {
+ this.setData({ hasTip: typeof this.data.tip === 'string' });
+ },
+ onSubmit: function (event) {
+ this.$emit('submit', event.detail);
+ },
+ },
+});
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/submit-bar/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/submit-bar/index.json"
new file mode 100644
index 0000000000000000000000000000000000000000..bda9b8d338609dd3ae9b10a6dc46a6f649d52b17
--- /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/submit-bar/index.json"
@@ -0,0 +1,7 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-button": "../button/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/submit-bar/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/submit-bar/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..a56dd46ce8c81a4b76275e8f128ae8a108b93ac8
--- /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/submit-bar/index.wxml"
@@ -0,0 +1,44 @@
+
+
+
+
+
+
+
+
+ {{ tip }}
+
+
+
+
+
+
+
+ {{ label || '合计:' }}
+
+ {{ currency }}
+ {{ integerStr }}{{decimalStr}}
+
+ {{ suffixLabel }}
+
+
+ {{ loading ? '' : buttonText }}
+
+
+
+
+
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/submit-bar/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/submit-bar/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..3126e91b80e379505885d841210d2cca263e34ad
--- /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/submit-bar/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-submit-bar{position:fixed;bottom:0;left:0;width:100%;-webkit-user-select:none;user-select:none;z-index:100;z-index:var(--submit-bar-z-index,100);background-color:#fff;background-color:var(--submit-bar-background-color,#fff)}.van-submit-bar__tip{padding:10px;padding:var(--submit-bar-tip-padding,10px);color:#f56723;color:var(--submit-bar-tip-color,#f56723);font-size:12px;font-size:var(--submit-bar-tip-font-size,12px);line-height:1.5;line-height:var(--submit-bar-tip-line-height,1.5);background-color:#fff7cc;background-color:var(--submit-bar-tip-background-color,#fff7cc)}.van-submit-bar__tip:empty{display:none}.van-submit-bar__tip-icon{width:12px;height:12px;margin-right:4px;vertical-align:middle;font-size:12px;font-size:var(--submit-bar-tip-icon-size,12px);min-width:18px;min-width:calc(var(--submit-bar-tip-icon-size, 12px)*1.5)}.van-submit-bar__tip-text{display:inline;vertical-align:middle}.van-submit-bar__bar{display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;-webkit-justify-content:flex-end;justify-content:flex-end;padding:0 16px;padding:var(--submit-bar-padding,0 16px);height:50px;height:var(--submit-bar-height,50px);font-size:14px;font-size:var(--submit-bar-text-font-size,14px);background-color:#fff;background-color:var(--submit-bar-background-color,#fff)}.van-submit-bar__safe{height:constant(safe-area-inset-bottom);height:env(safe-area-inset-bottom)}.van-submit-bar__text{-webkit-flex:1;flex:1;text-align:right;color:#323233;color:var(--submit-bar-text-color,#323233);padding-right:12px;padding-right:var(--padding-sm,12px)}.van-submit-bar__price,.van-submit-bar__text{font-weight:500;font-weight:var(--font-weight-bold,500)}.van-submit-bar__price{color:#ee0a24;color:var(--submit-bar-price-color,#ee0a24);font-size:12px;font-size:var(--submit-bar-price-font-size,12px)}.van-submit-bar__price-integer{font-size:20px;font-family:Avenir-Heavy,PingFang SC,Helvetica Neue,Arial,sans-serif}.van-submit-bar__currency{font-size:12px;font-size:var(--submit-bar-currency-font-size,12px)}.van-submit-bar__suffix-label{margin-left:5px}.van-submit-bar__button{width:110px;width:var(--submit-bar-button-width,110px);font-weight:500;font-weight:var(--font-weight-bold,500);--button-default-height:40px!important;--button-default-height:var(--submit-bar-button-height,40px)!important;--button-line-height:40px!important;--button-line-height:var(--submit-bar-button-height,40px)!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/swipe-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/swipe-cell/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..bf6648affca3f421ed9181f8473308064e33b640
--- /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/swipe-cell/index.js"
@@ -0,0 +1,162 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+var touch_1 = require('../mixins/touch');
+var utils_1 = require('../common/utils');
+var THRESHOLD = 0.3;
+var ARRAY = [];
+component_1.VantComponent({
+ props: {
+ disabled: Boolean,
+ leftWidth: {
+ type: Number,
+ value: 0,
+ observer: function (leftWidth) {
+ if (leftWidth === void 0) {
+ leftWidth = 0;
+ }
+ if (this.offset > 0) {
+ this.swipeMove(leftWidth);
+ }
+ },
+ },
+ rightWidth: {
+ type: Number,
+ value: 0,
+ observer: function (rightWidth) {
+ if (rightWidth === void 0) {
+ rightWidth = 0;
+ }
+ if (this.offset < 0) {
+ this.swipeMove(-rightWidth);
+ }
+ },
+ },
+ asyncClose: Boolean,
+ name: {
+ type: null,
+ value: '',
+ },
+ },
+ mixins: [touch_1.touch],
+ data: {
+ catchMove: false,
+ wrapperStyle: '',
+ },
+ created: function () {
+ this.offset = 0;
+ ARRAY.push(this);
+ },
+ destroyed: function () {
+ var _this = this;
+ ARRAY = ARRAY.filter(function (item) {
+ return item !== _this;
+ });
+ },
+ methods: {
+ open: function (position) {
+ var _a = this.data,
+ leftWidth = _a.leftWidth,
+ rightWidth = _a.rightWidth;
+ var offset = position === 'left' ? leftWidth : -rightWidth;
+ this.swipeMove(offset);
+ this.$emit('open', {
+ position: position,
+ name: this.data.name,
+ });
+ },
+ close: function () {
+ this.swipeMove(0);
+ },
+ swipeMove: function (offset) {
+ if (offset === void 0) {
+ offset = 0;
+ }
+ this.offset = utils_1.range(
+ offset,
+ -this.data.rightWidth,
+ this.data.leftWidth
+ );
+ var transform = 'translate3d(' + this.offset + 'px, 0, 0)';
+ var transition = this.dragging
+ ? 'none'
+ : 'transform .6s cubic-bezier(0.18, 0.89, 0.32, 1)';
+ this.setData({
+ wrapperStyle:
+ '\n -webkit-transform: ' +
+ transform +
+ ';\n -webkit-transition: ' +
+ transition +
+ ';\n transform: ' +
+ transform +
+ ';\n transition: ' +
+ transition +
+ ';\n ',
+ });
+ },
+ swipeLeaveTransition: function () {
+ var _a = this.data,
+ leftWidth = _a.leftWidth,
+ rightWidth = _a.rightWidth;
+ var offset = this.offset;
+ if (rightWidth > 0 && -offset > rightWidth * THRESHOLD) {
+ this.open('right');
+ } else if (leftWidth > 0 && offset > leftWidth * THRESHOLD) {
+ this.open('left');
+ } else {
+ this.swipeMove(0);
+ }
+ this.setData({ catchMove: false });
+ },
+ startDrag: function (event) {
+ if (this.data.disabled) {
+ return;
+ }
+ this.startOffset = this.offset;
+ this.touchStart(event);
+ },
+ noop: function () {},
+ onDrag: function (event) {
+ var _this = this;
+ if (this.data.disabled) {
+ return;
+ }
+ this.touchMove(event);
+ if (this.direction !== 'horizontal') {
+ return;
+ }
+ this.dragging = true;
+ ARRAY.filter(function (item) {
+ return item !== _this && item.offset !== 0;
+ }).forEach(function (item) {
+ return item.close();
+ });
+ this.setData({ catchMove: true });
+ this.swipeMove(this.startOffset + this.deltaX);
+ },
+ endDrag: function () {
+ if (this.data.disabled) {
+ return;
+ }
+ this.dragging = false;
+ this.swipeLeaveTransition();
+ },
+ onClick: function (event) {
+ var _a = event.currentTarget.dataset.key,
+ position = _a === void 0 ? 'outside' : _a;
+ this.$emit('click', position);
+ if (!this.offset) {
+ return;
+ }
+ if (this.data.asyncClose) {
+ this.$emit('close', {
+ position: position,
+ instance: this,
+ name: this.data.name,
+ });
+ } else {
+ this.swipeMove(0);
+ }
+ },
+ },
+});
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/swipe-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/swipe-cell/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/swipe-cell/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/swipe-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/swipe-cell/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..3f7f7260895d329b8b21a85239a95e084d7ae125
--- /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/swipe-cell/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/swipe-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/swipe-cell/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..d6152709db7ca52744270fff39cfdf819af51847
--- /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/swipe-cell/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-swipe-cell{position:relative;overflow:hidden}.van-swipe-cell__left,.van-swipe-cell__right{position:absolute;top:0;height:100%}.van-swipe-cell__left{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.van-swipe-cell__right{right:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,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/switch/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/switch/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..8c98e99d03325e0d4e3225229a4e4b56e96f7abb
--- /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/switch/index.js"
@@ -0,0 +1,42 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+component_1.VantComponent({
+ field: true,
+ classes: ['node-class'],
+ props: {
+ checked: null,
+ loading: Boolean,
+ disabled: Boolean,
+ activeColor: String,
+ inactiveColor: String,
+ size: {
+ type: String,
+ value: '30',
+ },
+ activeValue: {
+ type: null,
+ value: true,
+ },
+ inactiveValue: {
+ type: null,
+ value: false,
+ },
+ },
+ methods: {
+ onClick: function () {
+ var _a = this.data,
+ activeValue = _a.activeValue,
+ inactiveValue = _a.inactiveValue,
+ disabled = _a.disabled,
+ loading = _a.loading;
+ if (disabled || loading) {
+ return;
+ }
+ var checked = this.data.checked === activeValue;
+ var value = checked ? inactiveValue : activeValue;
+ this.$emit('input', value);
+ this.$emit('change', 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/switch/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/switch/index.json"
new file mode 100644
index 0000000000000000000000000000000000000000..01077f5dafe4ea3780999933518963b8b6551d8d
--- /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/switch/index.json"
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "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/switch/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/switch/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..d45829bde48f9bc164249e1a47ec2ee6bdd1634b
--- /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/switch/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/switch/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/switch/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..1fb6530c54b8877603a7f1136f2b0035c56f3a42
--- /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/switch/index.wxs"
@@ -0,0 +1,26 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function rootStyle(data) {
+ var currentColor = data.checked ? data.activeColor : data.inactiveColor;
+
+ return style({
+ 'font-size': addUnit(data.size),
+ 'background-color': currentColor,
+ });
+}
+
+var BLUE = '#1989fa';
+var GRAY_DARK = '#969799';
+
+function loadingColor(data) {
+ return data.checked
+ ? data.activeColor || BLUE
+ : data.inactiveColor || GRAY_DARK;
+}
+
+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/switch/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/switch/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..e32a72ad3e9b6d1e6b7d7a4052afc7f7978f9e31
--- /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/switch/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-switch{position:relative;display:inline-block;box-sizing:initial;width:2em;width:var(--switch-width,2em);height:1em;height:var(--switch-height,1em);background-color:#fff;background-color:var(--switch-background-color,#fff);border:1px solid rgba(0,0,0,.1);border:var(--switch-border,1px solid rgba(0,0,0,.1));border-radius:1em;border-radius:var(--switch-node-size,1em);transition:background-color .3s;transition:background-color var(--switch-transition-duration,.3s)}.van-switch__node{position:absolute;top:0;left:0;border-radius:100%;z-index:1;z-index:var(--switch-node-z-index,1);width:1em;width:var(--switch-node-size,1em);height:1em;height:var(--switch-node-size,1em);background-color:#fff;background-color:var(--switch-node-background-color,#fff);box-shadow:0 3px 1px 0 rgba(0,0,0,.05),0 2px 2px 0 rgba(0,0,0,.1),0 3px 3px 0 rgba(0,0,0,.05);box-shadow:var(--switch-node-box-shadow,0 3px 1px 0 rgba(0,0,0,.05),0 2px 2px 0 rgba(0,0,0,.1),0 3px 3px 0 rgba(0,0,0,.05));transition:-webkit-transform .3s cubic-bezier(.3,1.05,.4,1.05);transition:transform .3s cubic-bezier(.3,1.05,.4,1.05);transition:transform .3s cubic-bezier(.3,1.05,.4,1.05),-webkit-transform .3s cubic-bezier(.3,1.05,.4,1.05);transition:-webkit-transform var(--switch-transition-duration,.3s) cubic-bezier(.3,1.05,.4,1.05);transition:transform var(--switch-transition-duration,.3s) cubic-bezier(.3,1.05,.4,1.05);transition:transform var(--switch-transition-duration,.3s) cubic-bezier(.3,1.05,.4,1.05),-webkit-transform var(--switch-transition-duration,.3s) cubic-bezier(.3,1.05,.4,1.05)}.van-switch__loading{position:absolute!important;top:25%;left:25%;width:50%;height:50%}.van-switch--on{background-color:#1989fa;background-color:var(--switch-on-background-color,#1989fa)}.van-switch--on .van-switch__node{-webkit-transform:translateX(1em);transform:translateX(1em);-webkit-transform:translateX(calc(var(--switch-width, 2em) - var(--switch-node-size, 1em)));transform:translateX(calc(var(--switch-width, 2em) - var(--switch-node-size, 1em)))}.van-switch--disabled{opacity:.4;opacity:var(--switch-disabled-opacity,.4)}
\ 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/tab/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/tab/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..f8b22c349722c462c4c4f28a642f3a3a92710278
--- /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/tab/index.js"
@@ -0,0 +1,58 @@
+'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('tabs'),
+ props: {
+ dot: {
+ type: Boolean,
+ observer: 'update',
+ },
+ info: {
+ type: null,
+ observer: 'update',
+ },
+ title: {
+ type: String,
+ observer: 'update',
+ },
+ disabled: {
+ type: Boolean,
+ observer: 'update',
+ },
+ titleStyle: {
+ type: String,
+ observer: 'update',
+ },
+ name: {
+ type: null,
+ value: '',
+ },
+ },
+ data: {
+ active: false,
+ },
+ methods: {
+ getComputedName: function () {
+ if (this.data.name !== '') {
+ return this.data.name;
+ }
+ return this.index;
+ },
+ updateRender: function (active, parent) {
+ var parentData = parent.data;
+ this.inited = this.inited || active;
+ this.setData({
+ active: active,
+ shouldRender: this.inited || !parentData.lazyRender,
+ shouldShow: active || parentData.animated,
+ });
+ },
+ update: function () {
+ if (this.parent) {
+ this.parent.updateTabs();
+ }
+ },
+ },
+});
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/tab/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/tab/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/tab/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/tab/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/tab/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..f5e99f2145b12c53b3c91150d9bb742ece67d0d9
--- /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/tab/index.wxml"
@@ -0,0 +1,8 @@
+
+
+
+
+
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/tab/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/tab/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..76ddf068482c2ffdd462e37aa0659a7975e813b5
--- /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/tab/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';:host{-webkit-flex-shrink:0;flex-shrink:0;width:100%}.van-tab__pane,:host{box-sizing:border-box}.van-tab__pane{overflow-y:auto;-webkit-overflow-scrolling:touch}.van-tab__pane--active{height:auto}.van-tab__pane--inactive{height:0;overflow:visible}
\ 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/tabbar-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/tabbar-item/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..32dcfd6ca37868dbb479012270173479d760dc65
--- /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/tabbar-item/index.js"
@@ -0,0 +1,58 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+var relation_1 = require('../common/relation');
+component_1.VantComponent({
+ props: {
+ info: null,
+ name: null,
+ icon: String,
+ dot: Boolean,
+ iconPrefix: {
+ type: String,
+ value: 'van-icon',
+ },
+ },
+ relation: relation_1.useParent('tabbar'),
+ data: {
+ active: false,
+ activeColor: '',
+ inactiveColor: '',
+ },
+ methods: {
+ onClick: function () {
+ var parent = this.parent;
+ if (parent) {
+ var index = parent.children.indexOf(this);
+ var active = this.data.name || index;
+ if (active !== this.data.active) {
+ parent.$emit('change', active);
+ }
+ }
+ this.$emit('click');
+ },
+ updateFromParent: function () {
+ var parent = this.parent;
+ if (!parent) {
+ return;
+ }
+ var index = parent.children.indexOf(this);
+ var parentData = parent.data;
+ var data = this.data;
+ var active = (data.name || index) === parentData.active;
+ var patch = {};
+ if (active !== data.active) {
+ patch.active = active;
+ }
+ if (parentData.activeColor !== data.activeColor) {
+ patch.activeColor = parentData.activeColor;
+ }
+ if (parentData.inactiveColor !== data.inactiveColor) {
+ patch.inactiveColor = parentData.inactiveColor;
+ }
+ if (Object.keys(patch).length > 0) {
+ this.setData(patch);
+ }
+ },
+ },
+});
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/tabbar-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/tabbar-item/index.json"
new file mode 100644
index 0000000000000000000000000000000000000000..16f174c55fee5e53021a59136c62bc968295a379
--- /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/tabbar-item/index.json"
@@ -0,0 +1,7 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-icon": "../icon/index",
+ "van-info": "../info/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/tabbar-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/tabbar-item/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..524728f34a4f907e1726abc059d760c1d178da95
--- /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/tabbar-item/index.wxml"
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
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/tabbar-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/tabbar-item/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..ff33bd21a10a5488026201585ee8b9add1e7bca8
--- /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/tabbar-item/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';:host{-webkit-flex:1;flex:1}.van-tabbar-item{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;height:100%;color:#646566;color:var(--tabbar-item-text-color,#646566);font-size:12px;font-size:var(--tabbar-item-font-size,12px);line-height:1;line-height:var(--tabbar-item-line-height,1)}.van-tabbar-item__icon{position:relative;margin-bottom:4px;margin-bottom:var(--tabbar-item-margin-bottom,4px);font-size:22px;font-size:var(--tabbar-item-icon-size,22px)}.van-tabbar-item__icon__inner{display:block;min-width:1em}.van-tabbar-item--active{color:#1989fa;color:var(--tabbar-item-active-color,#1989fa)}.van-tabbar-item__info{margin-top:2px}
\ 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/tabbar/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/tabbar/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..0ed7cd8883800ebd9756ef0e579f4ec9190693e2
--- /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/tabbar/index.js"
@@ -0,0 +1,70 @@
+'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');
+component_1.VantComponent({
+ relation: relation_1.useChildren('tabbar-item', function () {
+ this.updateChildren();
+ }),
+ props: {
+ active: {
+ type: null,
+ observer: 'updateChildren',
+ },
+ activeColor: {
+ type: String,
+ observer: 'updateChildren',
+ },
+ inactiveColor: {
+ type: String,
+ observer: 'updateChildren',
+ },
+ fixed: {
+ type: Boolean,
+ value: true,
+ observer: 'setHeight',
+ },
+ placeholder: {
+ type: Boolean,
+ observer: 'setHeight',
+ },
+ border: {
+ type: Boolean,
+ value: true,
+ },
+ zIndex: {
+ type: Number,
+ value: 1,
+ },
+ safeAreaInsetBottom: {
+ type: Boolean,
+ value: true,
+ },
+ },
+ data: {
+ height: 50,
+ },
+ methods: {
+ updateChildren: function () {
+ var children = this.children;
+ if (!Array.isArray(children) || !children.length) {
+ return;
+ }
+ children.forEach(function (child) {
+ return child.updateFromParent();
+ });
+ },
+ setHeight: function () {
+ var _this = this;
+ if (!this.data.fixed || !this.data.placeholder) {
+ return;
+ }
+ wx.nextTick(function () {
+ utils_1.getRect(_this, '.van-tabbar').then(function (res) {
+ _this.setData({ height: res.height });
+ });
+ });
+ },
+ },
+});
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/tabbar/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/tabbar/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/tabbar/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/tabbar/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/tabbar/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..43bb11111d4cf459dcab0beee536960c863608f2
--- /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/tabbar/index.wxml"
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
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/tabbar/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/tabbar/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..68195697d69acc624250793feb0e0d101cae7b72
--- /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/tabbar/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-tabbar{display:-webkit-flex;display:flex;box-sizing:initial;width:100%;height:50px;height:var(--tabbar-height,50px);background-color:#fff;background-color:var(--tabbar-background-color,#fff)}.van-tabbar--fixed{position:fixed;bottom:0;left:0}.van-tabbar--safe{padding-bottom:env(safe-area-inset-bottom)}
\ 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/tabs/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/tabs/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..18bea14ab23d6a06b5296e07874f9c16793bf364
--- /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/tabs/index.js"
@@ -0,0 +1,305 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+var touch_1 = require('../mixins/touch');
+var utils_1 = require('../common/utils');
+var validator_1 = require('../common/validator');
+var relation_1 = require('../common/relation');
+component_1.VantComponent({
+ mixins: [touch_1.touch],
+ classes: ['nav-class', 'tab-class', 'tab-active-class', 'line-class'],
+ relation: relation_1.useChildren('tab', function () {
+ this.updateTabs();
+ }),
+ props: {
+ sticky: Boolean,
+ border: Boolean,
+ swipeable: Boolean,
+ titleActiveColor: String,
+ titleInactiveColor: String,
+ color: String,
+ animated: {
+ type: Boolean,
+ observer: function () {
+ var _this = this;
+ this.children.forEach(function (child, index) {
+ return child.updateRender(index === _this.data.currentIndex, _this);
+ });
+ },
+ },
+ lineWidth: {
+ type: null,
+ value: 40,
+ observer: 'resize',
+ },
+ lineHeight: {
+ type: null,
+ value: -1,
+ },
+ active: {
+ type: null,
+ value: 0,
+ observer: function (name) {
+ if (name !== this.getCurrentName()) {
+ this.setCurrentIndexByName(name);
+ }
+ },
+ },
+ type: {
+ type: String,
+ value: 'line',
+ },
+ ellipsis: {
+ type: Boolean,
+ value: true,
+ },
+ duration: {
+ type: Number,
+ value: 0.3,
+ },
+ zIndex: {
+ type: Number,
+ value: 1,
+ },
+ swipeThreshold: {
+ type: Number,
+ value: 5,
+ observer: function (value) {
+ this.setData({
+ scrollable: this.children.length > value || !this.data.ellipsis,
+ });
+ },
+ },
+ offsetTop: {
+ type: Number,
+ value: 0,
+ },
+ lazyRender: {
+ type: Boolean,
+ value: true,
+ },
+ },
+ data: {
+ tabs: [],
+ scrollLeft: 0,
+ scrollable: false,
+ currentIndex: 0,
+ container: null,
+ skipTransition: true,
+ lineOffsetLeft: 0,
+ },
+ mounted: function () {
+ var _this = this;
+ utils_1.requestAnimationFrame(function () {
+ _this.setData({
+ container: function () {
+ return _this.createSelectorQuery().select('.van-tabs');
+ },
+ });
+ _this.resize(true);
+ _this.scrollIntoView();
+ });
+ },
+ methods: {
+ updateTabs: function () {
+ var _a = this,
+ _b = _a.children,
+ children = _b === void 0 ? [] : _b,
+ data = _a.data;
+ this.setData({
+ tabs: children.map(function (child) {
+ return child.data;
+ }),
+ scrollable:
+ this.children.length > data.swipeThreshold || !data.ellipsis,
+ });
+ this.setCurrentIndexByName(data.active || this.getCurrentName());
+ },
+ trigger: function (eventName, child) {
+ var currentIndex = this.data.currentIndex;
+ var currentChild = child || this.children[currentIndex];
+ if (!validator_1.isDef(currentChild)) {
+ return;
+ }
+ this.$emit(eventName, {
+ index: currentChild.index,
+ name: currentChild.getComputedName(),
+ title: currentChild.data.title,
+ });
+ },
+ onTap: function (event) {
+ var _this = this;
+ var index = event.currentTarget.dataset.index;
+ var child = this.children[index];
+ if (child.data.disabled) {
+ this.trigger('disabled', child);
+ } else {
+ this.setCurrentIndex(index);
+ utils_1.nextTick(function () {
+ _this.trigger('click');
+ });
+ }
+ },
+ // correct the index of active tab
+ setCurrentIndexByName: function (name) {
+ var _a = this.children,
+ children = _a === void 0 ? [] : _a;
+ var matched = children.filter(function (child) {
+ return child.getComputedName() === name;
+ });
+ if (matched.length) {
+ this.setCurrentIndex(matched[0].index);
+ }
+ },
+ setCurrentIndex: function (currentIndex) {
+ var _this = this;
+ var _a = this,
+ data = _a.data,
+ _b = _a.children,
+ children = _b === void 0 ? [] : _b;
+ if (
+ !validator_1.isDef(currentIndex) ||
+ currentIndex >= children.length ||
+ currentIndex < 0
+ ) {
+ return;
+ }
+ utils_1.groupSetData(this, function () {
+ children.forEach(function (item, index) {
+ var active = index === currentIndex;
+ if (active !== item.data.active || !item.inited) {
+ item.updateRender(active, _this);
+ }
+ });
+ });
+ if (currentIndex === data.currentIndex) {
+ return;
+ }
+ var shouldEmitChange = data.currentIndex !== null;
+ this.setData({ currentIndex: currentIndex });
+ utils_1.nextTick(function () {
+ _this.resize();
+ _this.scrollIntoView();
+ _this.trigger('input');
+ if (shouldEmitChange) {
+ _this.trigger('change');
+ }
+ });
+ },
+ getCurrentName: function () {
+ var activeTab = this.children[this.data.currentIndex];
+ if (activeTab) {
+ return activeTab.getComputedName();
+ }
+ },
+ resize: function (skipTransition) {
+ var _this = this;
+ if (skipTransition === void 0) {
+ skipTransition = false;
+ }
+ if (this.data.type !== 'line') {
+ return;
+ }
+ var _a = this.data,
+ currentIndex = _a.currentIndex,
+ ellipsis = _a.ellipsis;
+ Promise.all([
+ utils_1.getAllRect(this, '.van-tab'),
+ utils_1.getRect(this, '.van-tabs__line'),
+ ]).then(function (_a) {
+ var _b = _a[0],
+ rects = _b === void 0 ? [] : _b,
+ lineRect = _a[1];
+ var rect = rects[currentIndex];
+ if (rect == null) {
+ return;
+ }
+ var lineOffsetLeft = rects
+ .slice(0, currentIndex)
+ .reduce(function (prev, curr) {
+ return prev + curr.width;
+ }, 0);
+ lineOffsetLeft +=
+ (rect.width - lineRect.width) / 2 + (ellipsis ? 0 : 8);
+ _this.setData({
+ lineOffsetLeft: lineOffsetLeft,
+ skipTransition: skipTransition,
+ });
+ });
+ },
+ // scroll active tab into view
+ scrollIntoView: function () {
+ var _this = this;
+ var _a = this.data,
+ currentIndex = _a.currentIndex,
+ scrollable = _a.scrollable;
+ if (!scrollable) {
+ return;
+ }
+ Promise.all([
+ utils_1.getAllRect(this, '.van-tab'),
+ utils_1.getRect(this, '.van-tabs__nav'),
+ ]).then(function (_a) {
+ var tabRects = _a[0],
+ navRect = _a[1];
+ var tabRect = tabRects[currentIndex];
+ var offsetLeft = tabRects
+ .slice(0, currentIndex)
+ .reduce(function (prev, curr) {
+ return prev + curr.width;
+ }, 0);
+ _this.setData({
+ scrollLeft: offsetLeft - (navRect.width - tabRect.width) / 2,
+ });
+ });
+ },
+ onTouchScroll: function (event) {
+ this.$emit('scroll', event.detail);
+ },
+ onTouchStart: function (event) {
+ if (!this.data.swipeable) return;
+ this.touchStart(event);
+ },
+ onTouchMove: function (event) {
+ if (!this.data.swipeable) return;
+ this.touchMove(event);
+ },
+ // watch swipe touch end
+ onTouchEnd: function () {
+ if (!this.data.swipeable) return;
+ var _a = this,
+ direction = _a.direction,
+ deltaX = _a.deltaX,
+ offsetX = _a.offsetX;
+ var minSwipeDistance = 50;
+ if (direction === 'horizontal' && offsetX >= minSwipeDistance) {
+ var index = this.getAvaiableTab(deltaX);
+ if (index !== -1) {
+ this.setCurrentIndex(index);
+ }
+ }
+ },
+ getAvaiableTab: function (direction) {
+ var _a = this.data,
+ tabs = _a.tabs,
+ currentIndex = _a.currentIndex;
+ var step = direction > 0 ? -1 : 1;
+ for (
+ var i = step;
+ currentIndex + i < tabs.length && currentIndex + i >= 0;
+ i += step
+ ) {
+ var index = currentIndex + i;
+ if (
+ index >= 0 &&
+ index < tabs.length &&
+ tabs[index] &&
+ !tabs[index].disabled
+ ) {
+ return index;
+ }
+ }
+ return -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/tabs/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/tabs/index.json"
new file mode 100644
index 0000000000000000000000000000000000000000..19c0bc3a0830569890b895d1da038f64f981879c
--- /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/tabs/index.json"
@@ -0,0 +1,7 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-info": "../info/index",
+ "van-sticky": "../sticky/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/tabs/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/tabs/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..0dc346b2ee87bdb48957248d1b6306545acc182a
--- /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/tabs/index.wxml"
@@ -0,0 +1,63 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ item.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/tabs/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/tabs/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..a027c7b9c35d21d2e7420a9562bac7caf3acdf75
--- /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/tabs/index.wxs"
@@ -0,0 +1,82 @@
+/* eslint-disable */
+var utils = require('../wxs/utils.wxs');
+var style = require('../wxs/style.wxs');
+
+function tabClass(active, ellipsis) {
+ var classes = ['tab-class'];
+
+ if (active) {
+ classes.push('tab-active-class');
+ }
+
+ if (ellipsis) {
+ classes.push('van-ellipsis');
+ }
+
+ return classes.join(' ');
+}
+
+function tabStyle(data) {
+ var titleColor = data.active
+ ? data.titleActiveColor
+ : data.titleInactiveColor;
+
+ var ellipsis = data.scrollable && data.ellipsis;
+
+ // card theme color
+ if (data.type === 'card') {
+ return style({
+ 'border-color': data.color,
+ 'background-color': !data.disabled && data.active ? data.color : null,
+ color: titleColor || (!data.disabled && !data.active ? data.color : null),
+ 'flex-basis': ellipsis ? 88 / data.swipeThreshold + '%' : null,
+ });
+ }
+
+ return style({
+ color: titleColor,
+ 'flex-basis': ellipsis ? 88 / data.swipeThreshold + '%' : null,
+ });
+}
+
+function navStyle(color, type) {
+ return style({
+ 'border-color': type === 'card' && color ? color : null,
+ });
+}
+
+function trackStyle(data) {
+ if (!data.animated) {
+ return '';
+ }
+
+ return style({
+ left: -100 * data.currentIndex + '%',
+ 'transition-duration': data.duration + 's',
+ '-webkit-transition-duration': data.duration + 's',
+ });
+}
+
+function lineStyle(data) {
+ return style({
+ width: utils.addUnit(data.lineWidth),
+ transform: 'translateX(' + data.lineOffsetLeft + 'px)',
+ '-webkit-transform': 'translateX(' + data.lineOffsetLeft + 'px)',
+ 'background-color': data.color,
+ height: data.lineHeight !== -1 ? utils.addUnit(data.lineHeight) : null,
+ 'border-radius':
+ data.lineHeight !== -1 ? utils.addUnit(data.lineHeight) : null,
+ 'transition-duration': !data.skipTransition ? data.duration + 's' : null,
+ '-webkit-transition-duration': !data.skipTransition
+ ? data.duration + 's'
+ : null,
+ });
+}
+
+module.exports = {
+ tabClass: tabClass,
+ tabStyle: tabStyle,
+ trackStyle: trackStyle,
+ lineStyle: lineStyle,
+ navStyle: navStyle,
+};
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/tabs/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/tabs/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..d0449e6acbc579020082288cd3a6790e46f3d9a3
--- /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/tabs/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-tabs{position:relative;-webkit-tap-highlight-color:transparent}.van-tabs__wrap{display:-webkit-flex;display:flex;overflow:hidden}.van-tabs__wrap--scrollable .van-tab{-webkit-flex:0 0 22%;flex:0 0 22%}.van-tabs__wrap--scrollable .van-tab--complete{-webkit-flex:1 0 auto!important;flex:1 0 auto!important;padding:0 12px}.van-tabs__wrap--scrollable .van-tabs__nav--complete{padding-right:8px;padding-left:8px}.van-tabs__scroll{background-color:#fff;background-color:var(--tabs-nav-background-color,#fff)}.van-tabs__scroll--line{box-sizing:initial;height:calc(100% + 15px)}.van-tabs__scroll--card{margin:0 16px;margin:0 var(--padding-md,16px)}.van-tabs__scroll::-webkit-scrollbar{display:none}.van-tabs__nav{position:relative;display:-webkit-flex;display:flex;-webkit-user-select:none;user-select:none}.van-tabs__nav--card{box-sizing:border-box;height:30px;height:var(--tabs-card-height,30px);border:1px solid #ee0a24;border:var(--border-width-base,1px) solid var(--tabs-default-color,#ee0a24);border-radius:2px;border-radius:var(--border-radius-sm,2px)}.van-tabs__nav--card .van-tab{color:#ee0a24;color:var(--tabs-default-color,#ee0a24);line-height:28px;line-height:calc(var(--tabs-card-height, 30px) - var(--border-width-base, 1px)*2);border-right:1px solid #ee0a24;border-right:var(--border-width-base,1px) solid var(--tabs-default-color,#ee0a24)}.van-tabs__nav--card .van-tab:last-child{border-right:none}.van-tabs__nav--card .van-tab.van-tab--active{color:#fff;color:var(--white,#fff);background-color:#ee0a24;background-color:var(--tabs-default-color,#ee0a24)}.van-tabs__nav--card .van-tab--disabled{color:#c8c9cc;color:var(--tab-disabled-text-color,#c8c9cc)}.van-tabs__line{position:absolute;bottom:0;left:0;z-index:1;height:3px;height:var(--tabs-bottom-bar-height,3px);border-radius:3px;border-radius:var(--tabs-bottom-bar-height,3px);background-color:#ee0a24;background-color:var(--tabs-bottom-bar-color,#ee0a24)}.van-tabs__track{position:relative;width:100%;height:100%}.van-tabs__track--animated{display:-webkit-flex;display:flex;transition-property:left}.van-tabs__content{overflow:hidden}.van-tabs--line .van-tabs__wrap{height:44px;height:var(--tabs-line-height,44px)}.van-tabs--card .van-tabs__wrap{height:30px;height:var(--tabs-card-height,30px)}.van-tab{position:relative;-webkit-flex:1;flex:1;box-sizing:border-box;min-width:0;padding:0 5px;text-align:center;cursor:pointer;color:#646566;color:var(--tab-text-color,#646566);font-size:14px;font-size:var(--tab-font-size,14px);line-height:44px;line-height:var(--tabs-line-height,44px)}.van-tab--active{font-weight:500;font-weight:var(--font-weight-bold,500);color:#323233;color:var(--tab-active-text-color,#323233)}.van-tab--disabled{color:#c8c9cc;color:var(--tab-disabled-text-color,#c8c9cc)}.van-tab__title__info{position:relative!important;top:-1px!important;display:inline-block;-webkit-transform:translateX(0)!important;transform:translateX(0)!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/tag/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/tag/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..b51d3fbbf3ed1b91fea20bae813494cc0fc102a2
--- /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/tag/index.js"
@@ -0,0 +1,23 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+component_1.VantComponent({
+ props: {
+ size: String,
+ mark: Boolean,
+ color: String,
+ plain: Boolean,
+ round: Boolean,
+ textColor: String,
+ type: {
+ type: String,
+ value: 'default',
+ },
+ closeable: Boolean,
+ },
+ methods: {
+ onClose: function () {
+ this.$emit('close');
+ },
+ },
+});
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/tag/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/tag/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/tag/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/tag/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/tag/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..59352dddde79329fc3ec90921a821b781ba0e631
--- /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/tag/index.wxml"
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
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/tag/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/tag/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..12d1668ec5f8df1f0cace309484bdb7c4a9377d4
--- /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/tag/index.wxs"
@@ -0,0 +1,13 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+
+function rootStyle(data) {
+ return style({
+ 'background-color': data.plain ? '' : data.color,
+ color: data.textColor || data.plain ? data.textColor || data.color : '',
+ });
+}
+
+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/tag/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/tag/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..46df0da0434441c88237be1e3cf4e5ed2a7c43eb
--- /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/tag/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-tag{position:relative;display:-webkit-inline-flex;display:inline-flex;-webkit-align-items:center;align-items:center;padding:0 4px;padding:var(--tag-padding,0 4px);color:#fff;color:var(--tag-text-color,#fff);font-size:12px;font-size:var(--tag-font-size,12px);line-height:16px;line-height:var(--tag-line-height,16px);border-radius:2px;border-radius:var(--tag-border-radius,2px)}.van-tag--default{background-color:#969799;background-color:var(--tag-default-color,#969799)}.van-tag--default.van-tag--plain{color:#969799;color:var(--tag-default-color,#969799)}.van-tag--danger{background-color:#ee0a24;background-color:var(--tag-danger-color,#ee0a24)}.van-tag--danger.van-tag--plain{color:#ee0a24;color:var(--tag-danger-color,#ee0a24)}.van-tag--primary{background-color:#1989fa;background-color:var(--tag-primary-color,#1989fa)}.van-tag--primary.van-tag--plain{color:#1989fa;color:var(--tag-primary-color,#1989fa)}.van-tag--success{background-color:#07c160;background-color:var(--tag-success-color,#07c160)}.van-tag--success.van-tag--plain{color:#07c160;color:var(--tag-success-color,#07c160)}.van-tag--warning{background-color:#ff976a;background-color:var(--tag-warning-color,#ff976a)}.van-tag--warning.van-tag--plain{color:#ff976a;color:var(--tag-warning-color,#ff976a)}.van-tag--plain{background-color:#fff;background-color:var(--tag-plain-background-color,#fff)}.van-tag--plain:before{position:absolute;top:0;right:0;bottom:0;left:0;border:1px solid;border-radius:inherit;content:"";pointer-events:none}.van-tag--medium{padding:2px 6px;padding:var(--tag-medium-padding,2px 6px)}.van-tag--large{padding:4px 8px;padding:var(--tag-large-padding,4px 8px);font-size:14px;font-size:var(--tag-large-font-size,14px);border-radius:4px;border-radius:var(--tag-large-border-radius,4px)}.van-tag--mark{border-radius:0 999px 999px 0;border-radius:0 var(--tag-round-border-radius,999px) var(--tag-round-border-radius,999px) 0}.van-tag--mark:after{display:block;width:2px;content:""}.van-tag--round{border-radius:999px;border-radius:var(--tag-round-border-radius,999px)}.van-tag__close{min-width:1em;margin-left:2px}
\ 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/toast/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/toast/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..da703bb59a99e628f7c73230e91f79da5f5f98fc
--- /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/toast/index.js"
@@ -0,0 +1,31 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+component_1.VantComponent({
+ props: {
+ show: Boolean,
+ mask: Boolean,
+ message: String,
+ forbidClick: Boolean,
+ zIndex: {
+ type: Number,
+ value: 1000,
+ },
+ type: {
+ type: String,
+ value: 'text',
+ },
+ loadingType: {
+ type: String,
+ value: 'circular',
+ },
+ position: {
+ type: String,
+ value: 'middle',
+ },
+ },
+ methods: {
+ // for prevent touchmove
+ 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/toast/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/toast/index.json"
new file mode 100644
index 0000000000000000000000000000000000000000..9b1b78c4aa37d522149a65979bb4f4786ecbf2ed
--- /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/toast/index.json"
@@ -0,0 +1,9 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-icon": "../icon/index",
+ "van-loading": "../loading/index",
+ "van-overlay": "../overlay/index",
+ "van-transition": "../transition/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/toast/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/toast/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..635e7d617ea23a55db57542d79e0ae99423ce16b
--- /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/toast/index.wxml"
@@ -0,0 +1,33 @@
+
+
+
+
+ {{ message }}
+
+
+
+
+
+ {{ message }}
+
+
+
+
+
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/toast/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/toast/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..85dc7a8fb11dbe3168ec457766248c2ae2af43f5
--- /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/toast/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-toast{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:initial;color:#fff;color:var(--toast-text-color,#fff);font-size:14px;font-size:var(--toast-font-size,14px);line-height:20px;line-height:var(--toast-line-height,20px);white-space:pre-wrap;word-wrap:break-word;background-color:rgba(0,0,0,.7);background-color:var(--toast-background-color,rgba(0,0,0,.7));border-radius:8px;border-radius:var(--toast-border-radius,8px)}.van-toast__container{position:fixed;top:50%;left:50%;width:-webkit-fit-content;width:fit-content;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);max-width:70%;max-width:var(--toast-max-width,70%)}.van-toast--text{min-width:96px;min-width:var(--toast-text-min-width,96px);padding:8px 12px;padding:var(--toast-text-padding,8px 12px)}.van-toast--icon{width:88px;width:var(--toast-default-width,88px);min-height:88px;min-height:var(--toast-default-min-height,88px);padding:16px;padding:var(--toast-default-padding,16px)}.van-toast--icon .van-toast__icon{font-size:36px;font-size:var(--toast-icon-size,36px)}.van-toast--icon .van-toast__text{padding-top:8px}.van-toast__loading{margin:10px 0}.van-toast--top{-webkit-transform:translateY(-30vh);transform:translateY(-30vh)}.van-toast--bottom{-webkit-transform:translateY(30vh);transform:translateY(30vh)}
\ 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/toast/toast.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/toast/toast.js"
new file mode 100644
index 0000000000000000000000000000000000000000..20f00f7e7ea8889da42bffc59e890fe3f1d08b00
--- /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/toast/toast.js"
@@ -0,0 +1,92 @@
+'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 validator_1 = require('../common/validator');
+var defaultOptions = {
+ type: 'text',
+ mask: false,
+ message: '',
+ show: true,
+ zIndex: 1000,
+ duration: 2000,
+ position: 'middle',
+ forbidClick: false,
+ loadingType: 'circular',
+ selector: '#van-toast',
+};
+var queue = [];
+var currentOptions = __assign({}, defaultOptions);
+function parseOptions(message) {
+ return validator_1.isObj(message) ? message : { message: message };
+}
+function getContext() {
+ var pages = getCurrentPages();
+ return pages[pages.length - 1];
+}
+function Toast(toastOptions) {
+ var options = __assign(
+ __assign({}, currentOptions),
+ parseOptions(toastOptions)
+ );
+ var context = options.context || getContext();
+ var toast = context.selectComponent(options.selector);
+ if (!toast) {
+ console.warn('未找到 van-toast 节点,请确认 selector 及 context 是否正确');
+ return;
+ }
+ delete options.context;
+ delete options.selector;
+ toast.clear = function () {
+ toast.setData({ show: false });
+ if (options.onClose) {
+ options.onClose();
+ }
+ };
+ queue.push(toast);
+ toast.setData(options);
+ clearTimeout(toast.timer);
+ if (options.duration != null && options.duration > 0) {
+ toast.timer = setTimeout(function () {
+ toast.clear();
+ queue = queue.filter(function (item) {
+ return item !== toast;
+ });
+ }, options.duration);
+ }
+ return toast;
+}
+var createMethod = function (type) {
+ return function (options) {
+ return Toast(__assign({ type: type }, parseOptions(options)));
+ };
+};
+Toast.loading = createMethod('loading');
+Toast.success = createMethod('success');
+Toast.fail = createMethod('fail');
+Toast.clear = function () {
+ queue.forEach(function (toast) {
+ toast.clear();
+ });
+ queue = [];
+};
+Toast.setDefaultOptions = function (options) {
+ Object.assign(currentOptions, options);
+};
+Toast.resetDefaultOptions = function () {
+ currentOptions = __assign({}, defaultOptions);
+};
+exports.default = Toast;
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/transition/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/transition/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..f3c96e4227b2cd1cdda6a62a8253a7b888890a2d
--- /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/transition/index.js"
@@ -0,0 +1,15 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+var transition_1 = require('../mixins/transition');
+component_1.VantComponent({
+ classes: [
+ 'enter-class',
+ 'enter-active-class',
+ 'enter-to-class',
+ 'leave-class',
+ 'leave-active-class',
+ 'leave-to-class',
+ ],
+ mixins: [transition_1.transition(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/transition/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/transition/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/transition/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/transition/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/transition/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..2743785269f449afd81c15737578ecef0ecdda0d
--- /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/transition/index.wxml"
@@ -0,0 +1,10 @@
+
+
+
+
+
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/transition/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/transition/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..e0babf62aa21eb45959cfbb9b70009b1895179c9
--- /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/transition/index.wxs"
@@ -0,0 +1,17 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+
+function rootStyle(data) {
+ return style([
+ {
+ '-webkit-transition-duration': data.currentDuration + 'ms',
+ 'transition-duration': data.currentDuration + 'ms',
+ },
+ data.display ? null : 'display: none',
+ 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/transition/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/transition/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..d459f5c123f6044f5c8944f4310efa29ab490eb4
--- /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/transition/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-transition{transition-timing-function:ease}.van-fade-enter-active,.van-fade-leave-active{transition-property:opacity}.van-fade-enter,.van-fade-leave-to{opacity:0}.van-fade-down-enter-active,.van-fade-down-leave-active,.van-fade-left-enter-active,.van-fade-left-leave-active,.van-fade-right-enter-active,.van-fade-right-leave-active,.van-fade-up-enter-active,.van-fade-up-leave-active{transition-property:opacity,-webkit-transform;transition-property:opacity,transform;transition-property:opacity,transform,-webkit-transform}.van-fade-up-enter,.van-fade-up-leave-to{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);opacity:0}.van-fade-down-enter,.van-fade-down-leave-to{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);opacity:0}.van-fade-left-enter,.van-fade-left-leave-to{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);opacity:0}.van-fade-right-enter,.van-fade-right-leave-to{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);opacity:0}.van-slide-down-enter-active,.van-slide-down-leave-active,.van-slide-left-enter-active,.van-slide-left-leave-active,.van-slide-right-enter-active,.van-slide-right-leave-active,.van-slide-up-enter-active,.van-slide-up-leave-active{transition-property:-webkit-transform;transition-property:transform;transition-property:transform,-webkit-transform}.van-slide-up-enter,.van-slide-up-leave-to{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}.van-slide-down-enter,.van-slide-down-leave-to{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}.van-slide-left-enter,.van-slide-left-leave-to{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.van-slide-right-enter,.van-slide-right-leave-to{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,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/tree-select/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/tree-select/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..9796507e875c5ee84092a64db4d75b8b33cf6464
--- /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/tree-select/index.js"
@@ -0,0 +1,73 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+component_1.VantComponent({
+ classes: [
+ 'main-item-class',
+ 'content-item-class',
+ 'main-active-class',
+ 'content-active-class',
+ 'main-disabled-class',
+ 'content-disabled-class',
+ ],
+ props: {
+ items: {
+ type: Array,
+ observer: 'updateSubItems',
+ },
+ activeId: null,
+ mainActiveIndex: {
+ type: Number,
+ value: 0,
+ observer: 'updateSubItems',
+ },
+ height: {
+ type: null,
+ value: 300,
+ },
+ max: {
+ type: Number,
+ value: Infinity,
+ },
+ selectedIcon: {
+ type: String,
+ value: 'success',
+ },
+ },
+ data: {
+ subItems: [],
+ },
+ methods: {
+ // 当一个子项被选择时
+ onSelectItem: function (event) {
+ var item = event.currentTarget.dataset.item;
+ var isArray = Array.isArray(this.data.activeId);
+ // 判断有没有超出右侧选择的最大数
+ var isOverMax = isArray && this.data.activeId.length >= this.data.max;
+ // 判断该项有没有被选中, 如果有被选中,则忽视是否超出的条件
+ var isSelected = isArray
+ ? this.data.activeId.indexOf(item.id) > -1
+ : this.data.activeId === item.id;
+ if (!item.disabled && (!isOverMax || isSelected)) {
+ this.$emit('click-item', item);
+ }
+ },
+ // 当一个导航被点击时
+ onClickNav: function (event) {
+ var index = event.detail;
+ var item = this.data.items[index];
+ if (!item.disabled) {
+ this.$emit('click-nav', { index: index });
+ }
+ },
+ // 更新子项列表
+ updateSubItems: function () {
+ var _a = this.data,
+ items = _a.items,
+ mainActiveIndex = _a.mainActiveIndex;
+ var _b = (items[mainActiveIndex] || {}).children,
+ children = _b === void 0 ? [] : _b;
+ this.setData({ subItems: children });
+ },
+ },
+});
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/tree-select/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/tree-select/index.json"
new file mode 100644
index 0000000000000000000000000000000000000000..42991a2ad544f292b23eb72b2a95fa823349daed
--- /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/tree-select/index.json"
@@ -0,0 +1,8 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-icon": "../icon/index",
+ "van-sidebar": "../sidebar/index",
+ "van-sidebar-item": "../sidebar-item/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/tree-select/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/tree-select/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..2663e528d3b619155478ef4a8487c29812131c35
--- /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/tree-select/index.wxml"
@@ -0,0 +1,41 @@
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ 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/tree-select/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/tree-select/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..b1cbb39b2d01d296acee604ad0135aed8234cdc5
--- /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/tree-select/index.wxs"
@@ -0,0 +1,12 @@
+/* eslint-disable */
+var array = require('../wxs/array.wxs');
+
+function isActive (activeList, itemId) {
+ if (array.isArray(activeList)) {
+ return activeList.indexOf(itemId) > -1;
+ }
+
+ return activeList === itemId;
+}
+
+module.exports.isActive = isActive;
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/tree-select/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/tree-select/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..3f7cca67d8493dbbb04ebdf3023a01569f8aa257
--- /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/tree-select/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-tree-select{position:relative;display:-webkit-flex;display:flex;-webkit-user-select:none;user-select:none;font-size:14px;font-size:var(--tree-select-font-size,14px)}.van-tree-select__nav{-webkit-flex:1;flex:1;background-color:#f7f8fa;background-color:var(--tree-select-nav-background-color,#f7f8fa);--sidebar-padding:12px 8px 12px 12px}.van-tree-select__nav__inner{width:100%!important;height:100%}.van-tree-select__content{-webkit-flex:2;flex:2;background-color:#fff;background-color:var(--tree-select-content-background-color,#fff)}.van-tree-select__item{position:relative;font-weight:700;padding:0 32px 0 16px;padding:0 32px 0 var(--padding-md,16px);line-height:44px;line-height:var(--tree-select-item-height,44px)}.van-tree-select__item--active{color:#ee0a24;color:var(--tree-select-item-active-color,#ee0a24)}.van-tree-select__item--disabled{color:#c8c9cc;color:var(--tree-select-item-disabled-color,#c8c9cc)}.van-tree-select__selected{position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);right:16px;right:var(--padding-md,16px)}
\ 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/uploader/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/uploader/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..ca3c43ad5dfbbe4dc45271fcd744cdc081c16bec
--- /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/uploader/index.js"
@@ -0,0 +1,246 @@
+'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 utils_1 = require('./utils');
+var shared_1 = require('./shared');
+var validator_1 = require('../common/validator');
+component_1.VantComponent({
+ props: __assign(
+ __assign(
+ {
+ disabled: Boolean,
+ multiple: Boolean,
+ uploadText: String,
+ useBeforeRead: Boolean,
+ afterRead: null,
+ beforeRead: null,
+ previewSize: {
+ type: null,
+ value: 80,
+ },
+ name: {
+ type: null,
+ value: '',
+ },
+ accept: {
+ type: String,
+ value: 'image',
+ },
+ fileList: {
+ type: Array,
+ value: [],
+ observer: 'formatFileList',
+ },
+ maxSize: {
+ type: Number,
+ value: Number.MAX_VALUE,
+ },
+ maxCount: {
+ type: Number,
+ value: 100,
+ },
+ deletable: {
+ type: Boolean,
+ value: true,
+ },
+ showUpload: {
+ type: Boolean,
+ value: true,
+ },
+ previewImage: {
+ type: Boolean,
+ value: true,
+ },
+ previewFullImage: {
+ type: Boolean,
+ value: true,
+ },
+ imageFit: {
+ type: String,
+ value: 'scaleToFill',
+ },
+ uploadIcon: {
+ type: String,
+ value: 'photograph',
+ },
+ },
+ shared_1.chooseImageProps
+ ),
+ shared_1.chooseVideoProps
+ ),
+ data: {
+ lists: [],
+ isInCount: true,
+ },
+ methods: {
+ formatFileList: function () {
+ var _a = this.data,
+ _b = _a.fileList,
+ fileList = _b === void 0 ? [] : _b,
+ maxCount = _a.maxCount;
+ var lists = fileList.map(function (item) {
+ return __assign(__assign({}, item), {
+ isImage: utils_1.isImageFile(item),
+ isVideo: utils_1.isVideoFile(item),
+ deletable: validator_1.isBoolean(item.deletable)
+ ? item.deletable
+ : true,
+ });
+ });
+ this.setData({ lists: lists, isInCount: lists.length < maxCount });
+ },
+ getDetail: function (index) {
+ return {
+ name: this.data.name,
+ index: index == null ? this.data.fileList.length : index,
+ };
+ },
+ startUpload: function () {
+ var _this = this;
+ var _a = this.data,
+ maxCount = _a.maxCount,
+ multiple = _a.multiple,
+ lists = _a.lists,
+ disabled = _a.disabled;
+ if (disabled) return;
+ utils_1
+ .chooseFile(
+ __assign(__assign({}, this.data), {
+ maxCount: maxCount - lists.length,
+ })
+ )
+ .then(function (res) {
+ _this.onBeforeRead(multiple ? res : res[0]);
+ })
+ .catch(function (error) {
+ _this.$emit('error', error);
+ });
+ },
+ onBeforeRead: function (file) {
+ var _this = this;
+ var _a = this.data,
+ beforeRead = _a.beforeRead,
+ useBeforeRead = _a.useBeforeRead;
+ var res = true;
+ if (typeof beforeRead === 'function') {
+ res = beforeRead(file, this.getDetail());
+ }
+ if (useBeforeRead) {
+ res = new Promise(function (resolve, reject) {
+ _this.$emit(
+ 'before-read',
+ __assign(__assign({ file: file }, _this.getDetail()), {
+ callback: function (ok) {
+ ok ? resolve() : reject();
+ },
+ })
+ );
+ });
+ }
+ if (!res) {
+ return;
+ }
+ if (validator_1.isPromise(res)) {
+ res.then(function (data) {
+ return _this.onAfterRead(data || file);
+ });
+ } else {
+ this.onAfterRead(file);
+ }
+ },
+ onAfterRead: function (file) {
+ var _a = this.data,
+ maxSize = _a.maxSize,
+ afterRead = _a.afterRead;
+ var oversize = Array.isArray(file)
+ ? file.some(function (item) {
+ return item.size > maxSize;
+ })
+ : file.size > maxSize;
+ if (oversize) {
+ this.$emit('oversize', __assign({ file: file }, this.getDetail()));
+ return;
+ }
+ if (typeof afterRead === 'function') {
+ afterRead(file, this.getDetail());
+ }
+ this.$emit('after-read', __assign({ file: file }, this.getDetail()));
+ },
+ deleteItem: function (event) {
+ var index = event.currentTarget.dataset.index;
+ this.$emit(
+ 'delete',
+ __assign(__assign({}, this.getDetail(index)), {
+ file: this.data.fileList[index],
+ })
+ );
+ },
+ onPreviewImage: function (event) {
+ if (!this.data.previewFullImage) return;
+ var index = event.currentTarget.dataset.index;
+ var lists = this.data.lists;
+ var item = lists[index];
+ wx.previewImage({
+ urls: lists
+ .filter(function (item) {
+ return utils_1.isImageFile(item);
+ })
+ .map(function (item) {
+ return item.url;
+ }),
+ current: item.url,
+ fail: function () {
+ wx.showToast({ title: '预览图片失败', icon: 'none' });
+ },
+ });
+ },
+ onPreviewVideo: function (event) {
+ if (!this.data.previewFullImage) return;
+ var index = event.currentTarget.dataset.index;
+ var lists = this.data.lists;
+ wx.previewMedia({
+ sources: lists
+ .filter(function (item) {
+ return utils_1.isVideoFile(item);
+ })
+ .map(function (item) {
+ return __assign(__assign({}, item), { type: 'video' });
+ }),
+ current: index,
+ fail: function () {
+ wx.showToast({ title: '预览视频失败', icon: 'none' });
+ },
+ });
+ },
+ onPreviewFile: function (event) {
+ var index = event.currentTarget.dataset.index;
+ wx.openDocument({
+ filePath: this.data.lists[index].url,
+ showMenu: true,
+ });
+ },
+ onClickPreview: function (event) {
+ var index = event.currentTarget.dataset.index;
+ var item = this.data.lists[index];
+ this.$emit(
+ 'click-preview',
+ __assign(__assign({}, item), this.getDetail(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/uploader/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/uploader/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/uploader/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/uploader/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/uploader/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..50fb0c89255d9c26ed9bd746ce093282221c5eb2
--- /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/uploader/index.wxml"
@@ -0,0 +1,83 @@
+
+
+
+
+
+
+
+
+
+
+
+ {{ item.name || item.url }}
+
+
+
+
+ {{ item.message }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ uploadText }}
+
+
+
+
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/uploader/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/uploader/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..257c7804646f7c791b7b868ff1e16f7980234a32
--- /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/uploader/index.wxs"
@@ -0,0 +1,14 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function sizeStyle(data) {
+ return style({
+ width: addUnit(data.previewSize),
+ height: addUnit(data.previewSize),
+ });
+}
+
+module.exports = {
+ sizeStyle: sizeStyle,
+};
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/uploader/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/uploader/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..5023d716455744d514143bc37600d2f19794b15f
--- /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/uploader/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-uploader{position:relative;display:inline-block}.van-uploader__wrapper{display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap}.van-uploader__slot:empty{display:none}.van-uploader__slot:not(:empty)+.van-uploader__upload{display:none!important}.van-uploader__upload{position:relative;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;width:80px;width:var(--uploader-size,80px);height:80px;height:var(--uploader-size,80px);margin:0 8px 8px 0;margin:0 var(--padding-xs,8px) var(--padding-xs,8px) 0;background-color:#f7f8fa;background-color:var(--uploader-upload-background-color,#f7f8fa)}.van-uploader__upload:active{background-color:#f2f3f5;background-color:var(--uploader-upload-active-color,#f2f3f5)}.van-uploader__upload-icon{color:#dcdee0;color:var(--uploader-icon-color,#dcdee0);font-size:24px;font-size:var(--uploader-icon-size,24px)}.van-uploader__upload-text{margin-top:8px;margin-top:var(--padding-xs,8px);color:#969799;color:var(--uploader-text-color,#969799);font-size:12px;font-size:var(--uploader-text-font-size,12px)}.van-uploader__upload--disabled{opacity:.5;opacity:var(--uploader-disabled-opacity,.5)}.van-uploader__preview{position:relative;cursor:pointer;margin:0 8px 8px 0;margin:0 var(--padding-xs,8px) var(--padding-xs,8px) 0}.van-uploader__preview-image{display:block;overflow:hidden;width:80px;width:var(--uploader-size,80px);height:80px;height:var(--uploader-size,80px)}.van-uploader__preview-delete{padding:0 0 8px 8px;padding:0 0 var(--padding-xs,8px) var(--padding-xs,8px)}.van-uploader__preview-delete,.van-uploader__preview-delete:after{position:absolute;top:0;right:0;width:14px;width:var(--uploader-delete-icon-size,14px);height:14px;height:var(--uploader-delete-icon-size,14px)}.van-uploader__preview-delete:after{content:"";background-color:rgba(0,0,0,.7);background-color:var(--uploader-delete-background-color,rgba(0,0,0,.7));border-radius:0 0 0 12px;border-radius:0 0 0 calc(var(--uploader-delete-icon-size, 14px) - 2px)}.van-uploader__preview-delete-icon{position:absolute;top:-2px;right:-2px;z-index:1;-webkit-transform:scale(.5);transform:scale(.5);font-size:16px;font-size:calc(var(--uploader-delete-icon-size, 14px) + 2px);color:#fff;color:var(--uploader-delete-color,#fff)}.van-uploader__file{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;width:80px;width:var(--uploader-size,80px);height:80px;height:var(--uploader-size,80px);background-color:#f7f8fa;background-color:var(--uploader-file-background-color,#f7f8fa)}.van-uploader__file-icon{color:#646566;color:var(--uploader-file-icon-color,#646566);font-size:20px;font-size:var(--uploader-file-icon-size,20px)}.van-uploader__file-name{box-sizing:border-box;width:100%;text-align:center;margin-top:8px;margin-top:var(--uploader-file-name-margin-top,8px);padding:0 4px;padding:var(--uploader-file-name-padding,0 4px);color:#646566;color:var(--uploader-file-name-text-color,#646566);font-size:12px;font-size:var(--uploader-file-name-font-size,12px)}.van-uploader__mask{position:absolute;top:0;right:0;bottom:0;left:0;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;color:#fff;color:var(--white,#fff);background-color:rgba(50,50,51,.88);background-color:var(--uploader-mask-background-color,rgba(50,50,51,.88))}.van-uploader__mask-icon{font-size:22px;font-size:var(--uploader-mask-icon-size,22px)}.van-uploader__mask-message{margin-top:6px;padding:0 4px;padding:0 var(--padding-base,4px);font-size:12px;font-size:var(--uploader-mask-message-font-size,12px);line-height:14px;line-height:var(--uploader-mask-message-line-height,14px)}.van-uploader__loading{width:22px;width:var(--uploader-loading-icon-size,22px);height:22px;height:var(--uploader-loading-icon-size,22px);color:#fff!important;color:var(--uploader-loading-icon-color,#fff)!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/uploader/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/uploader/shared.js"
new file mode 100644
index 0000000000000000000000000000000000000000..9418618628443c7aeec8e026466d418db5944206
--- /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/uploader/shared.js"
@@ -0,0 +1,33 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+exports.chooseVideoProps = exports.chooseImageProps = void 0;
+// props for choose image
+exports.chooseImageProps = {
+ sizeType: {
+ type: Array,
+ value: ['original', 'compressed'],
+ },
+ capture: {
+ type: Array,
+ value: ['album', 'camera'],
+ },
+};
+// props for choose video
+exports.chooseVideoProps = {
+ capture: {
+ type: Array,
+ value: ['album', 'camera'],
+ },
+ compressed: {
+ type: Boolean,
+ value: true,
+ },
+ maxDuration: {
+ type: Number,
+ value: 60,
+ },
+ camera: {
+ type: String,
+ value: 'back',
+ },
+};
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/uploader/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/uploader/utils.js"
new file mode 100644
index 0000000000000000000000000000000000000000..d8eb852247d6c33cd4209dccfea7dab533485b03
--- /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/uploader/utils.js"
@@ -0,0 +1,158 @@
+'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 });
+exports.chooseFile = exports.isVideoFile = exports.isImageFile = void 0;
+var utils_1 = require('../common/utils');
+var validator_1 = require('../common/validator');
+function isImageFile(item) {
+ if (item.isImage != null) {
+ return item.isImage;
+ }
+ if (item.type) {
+ return item.type === 'image';
+ }
+ if (item.url) {
+ return validator_1.isImageUrl(item.url);
+ }
+ return false;
+}
+exports.isImageFile = isImageFile;
+function isVideoFile(item) {
+ if (item.isVideo != null) {
+ return item.isVideo;
+ }
+ if (item.type) {
+ return item.type === 'video';
+ }
+ if (item.url) {
+ return validator_1.isVideoUrl(item.url);
+ }
+ return false;
+}
+exports.isVideoFile = isVideoFile;
+function formatImage(res) {
+ return res.tempFiles.map(function (item) {
+ return __assign(__assign({}, utils_1.pickExclude(item, ['path'])), {
+ type: 'image',
+ url: item.path,
+ thumb: item.path,
+ });
+ });
+}
+function formatVideo(res) {
+ return [
+ __assign(
+ __assign(
+ {},
+ utils_1.pickExclude(res, [
+ 'tempFilePath',
+ 'thumbTempFilePath',
+ 'errMsg',
+ ])
+ ),
+ { type: 'video', url: res.tempFilePath, thumb: res.thumbTempFilePath }
+ ),
+ ];
+}
+function formatMedia(res) {
+ return res.tempFiles.map(function (item) {
+ return __assign(
+ __assign(
+ {},
+ utils_1.pickExclude(item, [
+ 'fileType',
+ 'thumbTempFilePath',
+ 'tempFilePath',
+ ])
+ ),
+ {
+ type: res.type,
+ url: item.tempFilePath,
+ thumb:
+ res.type === 'video' ? item.thumbTempFilePath : item.tempFilePath,
+ }
+ );
+ });
+}
+function formatFile(res) {
+ return res.tempFiles.map(function (item) {
+ return __assign(__assign({}, utils_1.pickExclude(item, ['path'])), {
+ url: item.path,
+ });
+ });
+}
+function chooseFile(_a) {
+ var accept = _a.accept,
+ multiple = _a.multiple,
+ capture = _a.capture,
+ compressed = _a.compressed,
+ maxDuration = _a.maxDuration,
+ sizeType = _a.sizeType,
+ camera = _a.camera,
+ maxCount = _a.maxCount;
+ return new Promise(function (resolve, reject) {
+ switch (accept) {
+ case 'image':
+ wx.chooseImage({
+ count: multiple ? Math.min(maxCount, 9) : 1,
+ sourceType: capture,
+ sizeType: sizeType,
+ success: function (res) {
+ return resolve(formatImage(res));
+ },
+ fail: reject,
+ });
+ break;
+ case 'media':
+ wx.chooseMedia({
+ count: multiple ? Math.min(maxCount, 9) : 1,
+ sourceType: capture,
+ maxDuration: maxDuration,
+ sizeType: sizeType,
+ camera: camera,
+ success: function (res) {
+ return resolve(formatMedia(res));
+ },
+ fail: reject,
+ });
+ break;
+ case 'video':
+ wx.chooseVideo({
+ sourceType: capture,
+ compressed: compressed,
+ maxDuration: maxDuration,
+ camera: camera,
+ success: function (res) {
+ return resolve(formatVideo(res));
+ },
+ fail: reject,
+ });
+ break;
+ default:
+ wx.chooseMessageFile({
+ count: multiple ? maxCount : 1,
+ type: accept,
+ success: function (res) {
+ return resolve(formatFile(res));
+ },
+ fail: reject,
+ });
+ break;
+ }
+ });
+}
+exports.chooseFile = chooseFile;
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/wxs/add-unit.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/wxs/add-unit.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..4f33462f3871d45d56dcd06d0975f913b67a57bb
--- /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/wxs/add-unit.wxs"
@@ -0,0 +1,12 @@
+/* eslint-disable */
+var REGEXP = getRegExp('^-?\d+(\.\d+)?$');
+
+function addUnit(value) {
+ if (value == null) {
+ return undefined;
+ }
+
+ return REGEXP.test('' + value) ? value + 'px' : value;
+}
+
+module.exports = addUnit;
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/wxs/array.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/wxs/array.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..610089cd5dc6395ff8355fa52550af2427c8dbe7
--- /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/wxs/array.wxs"
@@ -0,0 +1,5 @@
+function isArray(array) {
+ return array && array.constructor === 'Array';
+}
+
+module.exports.isArray = isArray;
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/wxs/bem.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/wxs/bem.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..1efa129ee835ccb888a8b935d3ad6e9f1c834900
--- /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/wxs/bem.wxs"
@@ -0,0 +1,39 @@
+/* eslint-disable */
+var array = require('./array.wxs');
+var object = require('./object.wxs');
+var PREFIX = 'van-';
+
+function join(name, mods) {
+ name = PREFIX + name;
+ mods = mods.map(function(mod) {
+ return name + '--' + mod;
+ });
+ mods.unshift(name);
+ return mods.join(' ');
+}
+
+function traversing(mods, conf) {
+ if (!conf) {
+ return;
+ }
+
+ if (typeof conf === 'string' || typeof conf === 'number') {
+ mods.push(conf);
+ } else if (array.isArray(conf)) {
+ conf.forEach(function(item) {
+ traversing(mods, item);
+ });
+ } else if (typeof conf === 'object') {
+ object.keys(conf).forEach(function(key) {
+ conf[key] && mods.push(key);
+ });
+ }
+}
+
+function bem(name, conf) {
+ var mods = [];
+ traversing(mods, conf);
+ return join(name, mods);
+}
+
+module.exports = bem;
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/wxs/memoize.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/wxs/memoize.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..8f7f46dd23ee6ae7caaf6ac2e95c88b5c15bf835
--- /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/wxs/memoize.wxs"
@@ -0,0 +1,55 @@
+/**
+ * Simple memoize
+ * wxs doesn't support fn.apply, so this memoize only support up to 2 args
+ */
+/* eslint-disable */
+
+function isPrimitive(value) {
+ var type = typeof value;
+ return (
+ type === 'boolean' ||
+ type === 'number' ||
+ type === 'string' ||
+ type === 'undefined' ||
+ value === null
+ );
+}
+
+// mock simple fn.call in wxs
+function call(fn, args) {
+ if (args.length === 2) {
+ return fn(args[0], args[1]);
+ }
+
+ if (args.length === 1) {
+ return fn(args[0]);
+ }
+
+ return fn();
+}
+
+function serializer(args) {
+ if (args.length === 1 && isPrimitive(args[0])) {
+ return args[0];
+ }
+ var obj = {};
+ for (var i = 0; i < args.length; i++) {
+ obj['key' + i] = args[i];
+ }
+ return JSON.stringify(obj);
+}
+
+function memoize(fn) {
+ var cache = {};
+
+ return function() {
+ var key = serializer(arguments);
+ if (cache[key] === undefined) {
+ cache[key] = call(fn, arguments);
+ }
+
+ return cache[key];
+ };
+}
+
+module.exports = memoize;
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/wxs/object.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/wxs/object.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..e07710776c19c994e4859a30777741e51058c0f9
--- /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/wxs/object.wxs"
@@ -0,0 +1,13 @@
+/* eslint-disable */
+var REGEXP = getRegExp('{|}|"', 'g');
+
+function keys(obj) {
+ return JSON.stringify(obj)
+ .replace(REGEXP, '')
+ .split(',')
+ .map(function(item) {
+ return item.split(':')[0];
+ });
+}
+
+module.exports.keys = keys;
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/wxs/style.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/wxs/style.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..c39c810f53ba2682f6f8013652261d48f14f7ebd
--- /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/wxs/style.wxs"
@@ -0,0 +1,32 @@
+/* eslint-disable */
+var object = require('./object.wxs');
+var array = require('./array.wxs');
+
+function style(styles) {
+ if (array.isArray(styles)) {
+ return styles
+ .filter(function (item) {
+ return item != null && item !== '';
+ })
+ .map(function (item) {
+ return style(item);
+ })
+ .join(';');
+ }
+
+ if ('Object' === styles.constructor) {
+ return object
+ .keys(styles)
+ .filter(function (key) {
+ return styles[key] != null && styles[key] !== '';
+ })
+ .map(function (key) {
+ return [key, [styles[key]]].join(':');
+ })
+ .join(';');
+ }
+
+ return styles;
+}
+
+module.exports = style;
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/wxs/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/wxs/utils.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..f66d33a4270856b51af6d7f0c36cc8d82bfb27f8
--- /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/wxs/utils.wxs"
@@ -0,0 +1,10 @@
+/* eslint-disable */
+var bem = require('./bem.wxs');
+var memoize = require('./memoize.wxs');
+var addUnit = require('./add-unit.wxs');
+
+module.exports = {
+ bem: memoize(bem),
+ memoize: memoize,
+ addUnit: addUnit
+};
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/node_modules/@vant/weapp/LICENSE" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/LICENSE"
new file mode 100644
index 0000000000000000000000000000000000000000..8777860c3e324bc161e0601f635aa3e73586c51b
--- /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/node_modules/@vant/weapp/LICENSE"
@@ -0,0 +1,7 @@
+Copyright 2016-present Youzan
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
\ 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/node_modules/@vant/weapp/dist/action-sheet/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/action-sheet/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/action-sheet/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/action-sheet/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/node_modules/@vant/weapp/dist/action-sheet/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..f3f6d0f6d6cc8b73e57049b600a9c66a9ba7d2f8
--- /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/node_modules/@vant/weapp/dist/action-sheet/index.js"
@@ -0,0 +1,62 @@
+import { VantComponent } from '../common/component';
+import { button } from '../mixins/button';
+import { openType } from '../mixins/open-type';
+VantComponent({
+ mixins: [button, openType],
+ props: {
+ show: Boolean,
+ title: String,
+ cancelText: String,
+ description: String,
+ round: {
+ type: Boolean,
+ value: true,
+ },
+ zIndex: {
+ type: Number,
+ value: 100,
+ },
+ actions: {
+ type: Array,
+ value: [],
+ },
+ overlay: {
+ type: Boolean,
+ value: true,
+ },
+ closeOnClickOverlay: {
+ type: Boolean,
+ value: true,
+ },
+ closeOnClickAction: {
+ type: Boolean,
+ value: true,
+ },
+ safeAreaInsetBottom: {
+ type: Boolean,
+ value: true,
+ },
+ },
+ methods: {
+ onSelect(event) {
+ const { index } = event.currentTarget.dataset;
+ const item = this.data.actions[index];
+ if (item && !item.disabled && !item.loading) {
+ this.$emit('select', item);
+ if (this.data.closeOnClickAction) {
+ this.onClose();
+ }
+ }
+ },
+ onCancel() {
+ this.$emit('cancel');
+ },
+ onClose() {
+ this.$emit('close');
+ },
+ onClickOverlay() {
+ this.$emit('click-overlay');
+ this.onClose();
+ },
+ },
+});
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/node_modules/@vant/weapp/dist/action-sheet/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/node_modules/@vant/weapp/dist/action-sheet/index.json"
new file mode 100644
index 0000000000000000000000000000000000000000..19bf98915f6b60674e153fca262fc9e6dd595ea1
--- /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/node_modules/@vant/weapp/dist/action-sheet/index.json"
@@ -0,0 +1,8 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-icon": "../icon/index",
+ "van-popup": "../popup/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/node_modules/@vant/weapp/dist/action-sheet/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/node_modules/@vant/weapp/dist/action-sheet/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..c2bebcacf21b463f2086b67def0ed8cd74dd7d14
--- /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/node_modules/@vant/weapp/dist/action-sheet/index.wxml"
@@ -0,0 +1,69 @@
+
+
+
+
+
+ {{ 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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/area/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/area/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/area/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/area/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..3b3494defda11de68a1478d90d76b255b7c18c25
--- /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/node_modules/@vant/weapp/dist/area/index.js"
@@ -0,0 +1,232 @@
+import { VantComponent } from '../common/component';
+import { pickerProps } from '../picker/shared';
+import { requestAnimationFrame } from '../common/utils';
+const EMPTY_CODE = '000000';
+VantComponent({
+ classes: ['active-class', 'toolbar-class', 'column-class'],
+ props: Object.assign(Object.assign({}, pickerProps), {
+ value: {
+ type: String,
+ observer(value) {
+ this.code = value;
+ this.setValues();
+ },
+ },
+ areaList: {
+ type: Object,
+ value: {},
+ observer: 'setValues',
+ },
+ columnsNum: {
+ type: null,
+ value: 3,
+ },
+ columnsPlaceholder: {
+ type: Array,
+ observer(val) {
+ this.setData({
+ typeToColumnsPlaceholder: {
+ province: val[0] || '',
+ city: val[1] || '',
+ county: val[2] || '',
+ },
+ });
+ },
+ },
+ }),
+ data: {
+ columns: [{ values: [] }, { values: [] }, { values: [] }],
+ typeToColumnsPlaceholder: {},
+ },
+ mounted() {
+ requestAnimationFrame(() => {
+ this.setValues();
+ });
+ },
+ methods: {
+ getPicker() {
+ if (this.picker == null) {
+ this.picker = this.selectComponent('.van-area__picker');
+ }
+ return this.picker;
+ },
+ onCancel(event) {
+ this.emit('cancel', event.detail);
+ },
+ onConfirm(event) {
+ const { index } = event.detail;
+ let { value } = event.detail;
+ value = this.parseValues(value);
+ this.emit('confirm', { value, index });
+ },
+ emit(type, detail) {
+ detail.values = detail.value;
+ delete detail.value;
+ this.$emit(type, detail);
+ },
+ parseValues(values) {
+ const { columnsPlaceholder } = this.data;
+ return values.map((value, index) => {
+ if (
+ value &&
+ (!value.code || value.name === columnsPlaceholder[index])
+ ) {
+ return Object.assign(Object.assign({}, value), {
+ code: '',
+ name: '',
+ });
+ }
+ return value;
+ });
+ },
+ onChange(event) {
+ const { index, picker, value } = event.detail;
+ this.code = value[index].code;
+ this.setValues().then(() => {
+ this.$emit('change', {
+ picker,
+ values: this.parseValues(picker.getValues()),
+ index,
+ });
+ });
+ },
+ getConfig(type) {
+ const { areaList } = this.data;
+ return (areaList && areaList[`${type}_list`]) || {};
+ },
+ getList(type, code) {
+ if (type !== 'province' && !code) {
+ return [];
+ }
+ const { typeToColumnsPlaceholder } = this.data;
+ const list = this.getConfig(type);
+ let result = Object.keys(list).map((code) => ({
+ code,
+ name: list[code],
+ }));
+ if (code != null) {
+ // oversea code
+ if (code[0] === '9' && type === 'city') {
+ code = '9';
+ }
+ result = result.filter((item) => item.code.indexOf(code) === 0);
+ }
+ if (typeToColumnsPlaceholder[type] && result.length) {
+ // set columns placeholder
+ const 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(type, code) {
+ let compareNum = type === 'province' ? 2 : type === 'city' ? 4 : 6;
+ const 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 (let i = 0; i < list.length; i++) {
+ if (list[i].code.slice(0, compareNum) === code) {
+ return i;
+ }
+ }
+ return 0;
+ },
+ setValues() {
+ const picker = this.getPicker();
+ if (!picker) {
+ return;
+ }
+ let code = this.code || this.getDefaultCode();
+ const provinceList = this.getList('province');
+ const cityList = this.getList('city', code.slice(0, 2));
+ const stack = [];
+ const indexes = [];
+ const { columnsNum } = this.data;
+ 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;
+ }
+ }
+ 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(() => {})
+ .then(() => picker.setIndexes(indexes))
+ .catch(() => {});
+ },
+ getDefaultCode() {
+ const { columnsPlaceholder } = this.data;
+ if (columnsPlaceholder.length) {
+ return EMPTY_CODE;
+ }
+ const countyCodes = Object.keys(this.getConfig('county'));
+ if (countyCodes[0]) {
+ return countyCodes[0];
+ }
+ const cityCodes = Object.keys(this.getConfig('city'));
+ if (cityCodes[0]) {
+ return cityCodes[0];
+ }
+ return '';
+ },
+ getValues() {
+ const picker = this.getPicker();
+ if (!picker) {
+ return [];
+ }
+ return this.parseValues(picker.getValues().filter((value) => !!value));
+ },
+ getDetail() {
+ const values = this.getValues();
+ const area = {
+ code: '',
+ country: '',
+ province: '',
+ city: '',
+ county: '',
+ };
+ if (!values.length) {
+ return area;
+ }
+ const names = values.map((item) => 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(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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/button/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/button/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/button/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/button/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..f2fe2701788e543ce344ee3adc375f071358009f
--- /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/node_modules/@vant/weapp/dist/button/index.js"
@@ -0,0 +1,58 @@
+import { VantComponent } from '../common/component';
+import { button } from '../mixins/button';
+import { openType } from '../mixins/open-type';
+import { canIUseFormFieldButton } from '../common/version';
+const mixins = [button, openType];
+if (canIUseFormFieldButton()) {
+ mixins.push('wx://form-field-button');
+}
+VantComponent({
+ 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() {
+ if (!this.data.loading) {
+ this.$emit('click');
+ }
+ },
+ noop() {},
+ },
+});
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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/calendar/calendar.wxml"
@@ -0,0 +1,65 @@
+
+
+
+
+
+
+
+
+
+
+
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/node_modules/@vant/weapp/dist/calendar/components/header/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/calendar/components/header/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/calendar/components/header/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/calendar/components/header/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..bf9243f72693d1dd15412bde0be4994a60f28ff7
--- /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/node_modules/@vant/weapp/dist/calendar/components/header/index.js"
@@ -0,0 +1,16 @@
+import { VantComponent } from '../../../common/component';
+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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/calendar/components/header/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/calendar/components/month/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/calendar/components/month/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/calendar/components/month/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/calendar/components/month/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..4c872a982cbbf2f81f4dbaaef81385673fae1eaf
--- /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/node_modules/@vant/weapp/dist/calendar/components/month/index.js"
@@ -0,0 +1,157 @@
+import { VantComponent } from '../../../common/component';
+import {
+ getMonthEndDay,
+ compareDay,
+ getPrevDay,
+ getNextDay,
+} from '../../utils';
+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(event) {
+ const { index } = event.currentTarget.dataset;
+ const item = this.data.days[index];
+ if (item.type !== 'disabled') {
+ this.$emit('click', item);
+ }
+ },
+ setDays() {
+ const days = [];
+ const startDate = new Date(this.data.date);
+ const year = startDate.getFullYear();
+ const month = startDate.getMonth();
+ const totalDay = getMonthEndDay(
+ startDate.getFullYear(),
+ startDate.getMonth() + 1
+ );
+ for (let day = 1; day <= totalDay; day++) {
+ const date = new Date(year, month, day);
+ const type = this.getDayType(date);
+ let config = {
+ date,
+ type,
+ text: day,
+ bottomInfo: this.getBottomInfo(type),
+ };
+ if (this.data.formatter) {
+ config = this.data.formatter(config);
+ }
+ days.push(config);
+ }
+ this.setData({ days });
+ },
+ getMultipleDayType(day) {
+ const { currentDate } = this.data;
+ if (!Array.isArray(currentDate)) {
+ return '';
+ }
+ const isSelected = (date) =>
+ currentDate.some((item) => compareDay(item, date) === 0);
+ if (isSelected(day)) {
+ const prevDay = getPrevDay(day);
+ const nextDay = getNextDay(day);
+ const prevSelected = isSelected(prevDay);
+ const nextSelected = isSelected(nextDay);
+ if (prevSelected && nextSelected) {
+ return 'multiple-middle';
+ }
+ if (prevSelected) {
+ return 'end';
+ }
+ return nextSelected ? 'start' : 'multiple-selected';
+ }
+ return '';
+ },
+ getRangeDayType(day) {
+ const { currentDate, allowSameDay } = this.data;
+ if (!Array.isArray(currentDate)) {
+ return;
+ }
+ const [startDay, endDay] = currentDate;
+ if (!startDay) {
+ return;
+ }
+ const compareToStart = compareDay(day, startDay);
+ if (!endDay) {
+ return compareToStart === 0 ? 'start' : '';
+ }
+ const compareToEnd = 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(day) {
+ const { type, minDate, maxDate, currentDate } = this.data;
+ if (compareDay(day, minDate) < 0 || compareDay(day, maxDate) > 0) {
+ return 'disabled';
+ }
+ if (type === 'single') {
+ return compareDay(day, currentDate) === 0 ? 'selected' : '';
+ }
+ if (type === 'multiple') {
+ return this.getMultipleDayType(day);
+ }
+ /* istanbul ignore else */
+ if (type === 'range') {
+ return this.getRangeDayType(day);
+ }
+ },
+ getBottomInfo(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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/calendar/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/calendar/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/calendar/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/calendar/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..d7b7f27b85ec50f21929c8a47641f80ab9e0f002
--- /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/node_modules/@vant/weapp/dist/calendar/index.js"
@@ -0,0 +1,297 @@
+import { VantComponent } from '../common/component';
+import {
+ ROW_HEIGHT,
+ getNextDay,
+ compareDay,
+ copyDates,
+ calcDateNum,
+ formatMonthTitle,
+ compareMonth,
+ getMonths,
+ getDayByOffset,
+} from './utils';
+import Toast from '../toast/toast';
+import { requestAnimationFrame } from '../common/utils';
+VantComponent({
+ props: {
+ title: {
+ type: String,
+ value: '日期选择',
+ },
+ color: String,
+ show: {
+ type: Boolean,
+ observer(val) {
+ if (val) {
+ this.initRect();
+ this.scrollIntoView();
+ }
+ },
+ },
+ formatter: null,
+ confirmText: {
+ type: String,
+ value: '确定',
+ },
+ rangePrompt: String,
+ defaultDate: {
+ type: null,
+ observer(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: 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() {
+ this.setData({
+ currentDate: this.getInitialDate(),
+ });
+ },
+ mounted() {
+ if (this.data.show || !this.data.poppable) {
+ this.initRect();
+ this.scrollIntoView();
+ }
+ },
+ methods: {
+ reset() {
+ this.setData({ currentDate: this.getInitialDate() });
+ this.scrollIntoView();
+ },
+ initRect() {
+ if (this.contentObserver != null) {
+ this.contentObserver.disconnect();
+ }
+ const contentObserver = this.createIntersectionObserver({
+ thresholds: [0, 0.1, 0.9, 1],
+ observeAll: true,
+ });
+ this.contentObserver = contentObserver;
+ contentObserver.relativeTo('.van-calendar__body');
+ contentObserver.observe('.month', (res) => {
+ if (res.boundingClientRect.top <= res.relativeRect.top) {
+ // @ts-ignore
+ this.setData({ subtitle: formatMonthTitle(res.dataset.date) });
+ }
+ });
+ },
+ getInitialDate() {
+ const { type, defaultDate, minDate } = this.data;
+ if (type === 'range') {
+ const [startDay, endDay] = defaultDate || [];
+ return [
+ startDay || minDate,
+ endDay || getNextDay(new Date(minDate)).getTime(),
+ ];
+ }
+ if (type === 'multiple') {
+ return defaultDate || [minDate];
+ }
+ return defaultDate || minDate;
+ },
+ scrollIntoView() {
+ requestAnimationFrame(() => {
+ const {
+ currentDate,
+ type,
+ show,
+ poppable,
+ minDate,
+ maxDate,
+ } = this.data;
+ // @ts-ignore
+ const targetDate = type === 'single' ? currentDate : currentDate[0];
+ const displayed = show || !poppable;
+ if (!targetDate || !displayed) {
+ return;
+ }
+ const months = getMonths(minDate, maxDate);
+ months.some((month, index) => {
+ if (compareMonth(month, targetDate) === 0) {
+ this.setData({ scrollIntoView: `month${index}` });
+ return true;
+ }
+ return false;
+ });
+ });
+ },
+ onOpen() {
+ this.$emit('open');
+ },
+ onOpened() {
+ this.$emit('opened');
+ },
+ onClose() {
+ this.$emit('close');
+ },
+ onClosed() {
+ this.$emit('closed');
+ },
+ onClickDay(event) {
+ const { date } = event.detail;
+ const { type, currentDate, allowSameDay } = this.data;
+ if (type === 'range') {
+ // @ts-ignore
+ const [startDay, endDay] = currentDate;
+ if (startDay && !endDay) {
+ const compareToStart = 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') {
+ let selectedIndex;
+ // @ts-ignore
+ const selected = currentDate.some((dateItem, index) => {
+ const equal = compareDay(dateItem, date) === 0;
+ if (equal) {
+ selectedIndex = index;
+ }
+ return equal;
+ });
+ if (selected) {
+ // @ts-ignore
+ const cancelDate = currentDate.splice(selectedIndex, 1);
+ this.setData({ currentDate });
+ this.unselect(cancelDate);
+ } else {
+ // @ts-ignore
+ this.select([...currentDate, date]);
+ }
+ } else {
+ this.select(date, true);
+ }
+ },
+ unselect(dateArray) {
+ const date = dateArray[0];
+ if (date) {
+ this.$emit('unselect', copyDates(date));
+ }
+ },
+ select(date, complete) {
+ if (complete && this.data.type === 'range') {
+ const valid = this.checkRange(date);
+ if (!valid) {
+ // auto selected to max range if showConfirm
+ if (this.data.showConfirm) {
+ this.emit([
+ date[0],
+ getDayByOffset(date[0], this.data.maxRange - 1),
+ ]);
+ } else {
+ this.emit(date);
+ }
+ return;
+ }
+ }
+ this.emit(date);
+ if (complete && !this.data.showConfirm) {
+ this.onConfirm();
+ }
+ },
+ emit(date) {
+ const getTime = (date) => (date instanceof Date ? date.getTime() : date);
+ this.setData({
+ currentDate: Array.isArray(date) ? date.map(getTime) : getTime(date),
+ });
+ this.$emit('select', copyDates(date));
+ },
+ checkRange(date) {
+ const { maxRange, rangePrompt } = this.data;
+ if (maxRange && calcDateNum(date) > maxRange) {
+ Toast({
+ context: this,
+ message: rangePrompt || `选择天数不能超过 ${maxRange} 天`,
+ });
+ return false;
+ }
+ return true;
+ },
+ onConfirm() {
+ if (
+ this.data.type === 'range' &&
+ !this.checkRange(this.data.currentDate)
+ ) {
+ return;
+ }
+ wx.nextTick(() => {
+ // @ts-ignore
+ this.$emit('confirm', 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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/calendar/utils.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/calendar/utils.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..02af08dfd4fd3ee7f71d17aaf41cdb61fc9ce08f
--- /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/node_modules/@vant/weapp/dist/calendar/utils.d.ts"
@@ -0,0 +1,17 @@
+export declare const ROW_HEIGHT = 64;
+export declare function formatMonthTitle(date: Date): string;
+export declare function compareMonth(
+ date1: Date | number,
+ date2: Date | number
+): 0 | 1 | -1;
+export declare function compareDay(
+ day1: Date | number,
+ day2: Date | number
+): 0 | 1 | -1;
+export declare function getDayByOffset(date: Date, offset: number): Date;
+export declare function getPrevDay(date: Date): Date;
+export declare function getNextDay(date: Date): Date;
+export declare function calcDateNum(date: [Date, Date]): number;
+export declare function copyDates(dates: Date | Date[]): Date | Date[];
+export declare function getMonthEndDay(year: number, month: number): number;
+export declare function getMonths(minDate: number, maxDate: number): 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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/calendar/utils.js"
new file mode 100644
index 0000000000000000000000000000000000000000..281a35c9b3f1ff4d8ba4986eb80df53f9e67993b
--- /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/node_modules/@vant/weapp/dist/calendar/utils.js"
@@ -0,0 +1,78 @@
+export const ROW_HEIGHT = 64;
+export function formatMonthTitle(date) {
+ if (!(date instanceof Date)) {
+ date = new Date(date);
+ }
+ return `${date.getFullYear()}年${date.getMonth() + 1}月`;
+}
+export function compareMonth(date1, date2) {
+ if (!(date1 instanceof Date)) {
+ date1 = new Date(date1);
+ }
+ if (!(date2 instanceof Date)) {
+ date2 = new Date(date2);
+ }
+ const year1 = date1.getFullYear();
+ const year2 = date2.getFullYear();
+ const month1 = date1.getMonth();
+ const month2 = date2.getMonth();
+ if (year1 === year2) {
+ return month1 === month2 ? 0 : month1 > month2 ? 1 : -1;
+ }
+ return year1 > year2 ? 1 : -1;
+}
+export function compareDay(day1, day2) {
+ if (!(day1 instanceof Date)) {
+ day1 = new Date(day1);
+ }
+ if (!(day2 instanceof Date)) {
+ day2 = new Date(day2);
+ }
+ const compareMonthResult = compareMonth(day1, day2);
+ if (compareMonthResult === 0) {
+ const date1 = day1.getDate();
+ const date2 = day2.getDate();
+ return date1 === date2 ? 0 : date1 > date2 ? 1 : -1;
+ }
+ return compareMonthResult;
+}
+export function getDayByOffset(date, offset) {
+ date = new Date(date);
+ date.setDate(date.getDate() + offset);
+ return date;
+}
+export function getPrevDay(date) {
+ return getDayByOffset(date, -1);
+}
+export function getNextDay(date) {
+ return getDayByOffset(date, 1);
+}
+export function calcDateNum(date) {
+ const day1 = new Date(date[0]).getTime();
+ const day2 = new Date(date[1]).getTime();
+ return (day2 - day1) / (1000 * 60 * 60 * 24) + 1;
+}
+export function copyDates(dates) {
+ if (Array.isArray(dates)) {
+ return dates.map((date) => {
+ if (date === null) {
+ return date;
+ }
+ return new Date(date);
+ });
+ }
+ return new Date(dates);
+}
+export function getMonthEndDay(year, month) {
+ return 32 - new Date(year, month - 1, 32).getDate();
+}
+export function getMonths(minDate, maxDate) {
+ const months = [];
+ const cursor = new Date(minDate);
+ cursor.setDate(1);
+ do {
+ months.push(cursor.getTime());
+ cursor.setMonth(cursor.getMonth() + 1);
+ } while (compareMonth(cursor, maxDate) !== 1);
+ return months;
+}
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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/card/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/card/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/card/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/card/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..6aaf99f25b7ac2b27299280b33fac60a3b0ccf3e
--- /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/node_modules/@vant/weapp/dist/card/index.js"
@@ -0,0 +1,49 @@
+import { link } from '../mixins/link';
+import { VantComponent } from '../common/component';
+VantComponent({
+ classes: [
+ 'num-class',
+ 'desc-class',
+ 'thumb-class',
+ 'title-class',
+ 'price-class',
+ 'origin-price-class',
+ ],
+ mixins: [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() {
+ const { price } = this.data;
+ const priceArr = price.toString().split('.');
+ this.setData({
+ integerStr: priceArr[0],
+ decimalStr: priceArr[1] ? `.${priceArr[1]}` : '',
+ });
+ },
+ onClickThumb() {
+ 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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/card/index.wxml"
@@ -0,0 +1,56 @@
+
+
+
+
+
+
+
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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/cell-group/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/cell-group/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/cell-group/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/cell-group/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..99bcdb9e66967e19532ca7a3683970c9fb5fc6a8
--- /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/node_modules/@vant/weapp/dist/cell-group/index.js"
@@ -0,0 +1,10 @@
+import { VantComponent } from '../common/component';
+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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/cell/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/cell/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/cell/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/cell/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..a0123d1da2c7548c01a195557ab3e1824fa10498
--- /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/node_modules/@vant/weapp/dist/cell/index.js"
@@ -0,0 +1,38 @@
+import { link } from '../mixins/link';
+import { VantComponent } from '../common/component';
+VantComponent({
+ classes: [
+ 'title-class',
+ 'label-class',
+ 'value-class',
+ 'right-icon-class',
+ 'hover-class',
+ ],
+ mixins: [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(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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/checkbox-group/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/checkbox-group/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/checkbox-group/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/checkbox-group/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..1c8715587036788b7a597032115f80b2306af4cc
--- /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/node_modules/@vant/weapp/dist/checkbox-group/index.js"
@@ -0,0 +1,31 @@
+import { useChildren } from '../common/relation';
+import { VantComponent } from '../common/component';
+VantComponent({
+ field: true,
+ relation: useChildren('checkbox', function (target) {
+ this.updateChild(target);
+ }),
+ props: {
+ max: Number,
+ value: {
+ type: Array,
+ observer: 'updateChildren',
+ },
+ disabled: {
+ type: Boolean,
+ observer: 'updateChildren',
+ },
+ },
+ methods: {
+ updateChildren() {
+ this.children.forEach((child) => this.updateChild(child));
+ },
+ updateChild(child) {
+ const { value, disabled } = this.data;
+ 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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/checkbox/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/checkbox/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/checkbox/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/checkbox/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..281f69ad10ada566c598d8769631b3aac5405274
--- /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/node_modules/@vant/weapp/dist/checkbox/index.js"
@@ -0,0 +1,74 @@
+import { useParent } from '../common/relation';
+import { VantComponent } from '../common/component';
+function emit(target, value) {
+ target.$emit('input', value);
+ target.$emit('change', value);
+}
+VantComponent({
+ field: true,
+ relation: 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(value) {
+ if (this.parent) {
+ this.setParentValue(this.parent, value);
+ } else {
+ emit(this, value);
+ }
+ },
+ toggle() {
+ const { parentDisabled, disabled, value } = this.data;
+ if (!disabled && !parentDisabled) {
+ this.emitChange(!value);
+ }
+ },
+ onClickLabel() {
+ const { labelDisabled, parentDisabled, disabled, value } = this.data;
+ if (!disabled && !labelDisabled && !parentDisabled) {
+ this.emitChange(!value);
+ }
+ },
+ setParentValue(parent, value) {
+ const parentValue = parent.data.value.slice();
+ const { name } = this.data;
+ const { max } = parent.data;
+ if (value) {
+ if (max && parentValue.length >= max) {
+ return;
+ }
+ if (parentValue.indexOf(name) === -1) {
+ parentValue.push(name);
+ emit(parent, parentValue);
+ }
+ } else {
+ const 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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/circle/canvas.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/circle/canvas.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..6aa52dea7305e82508804c56294cad3878a7329e
--- /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/node_modules/@vant/weapp/dist/circle/canvas.d.ts"
@@ -0,0 +1,6 @@
+///
+declare type CanvasContext = WechatMiniprogram.CanvasContext;
+export declare function adaptor(
+ ctx: CanvasContext & Record
+): CanvasContext;
+export {};
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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/circle/canvas.js"
new file mode 100644
index 0000000000000000000000000000000000000000..c311335e326bb7bc2eba64792da749c3308ef20e
--- /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/node_modules/@vant/weapp/dist/circle/canvas.js"
@@ -0,0 +1,43 @@
+export function adaptor(ctx) {
+ // @ts-ignore
+ return Object.assign(ctx, {
+ setStrokeStyle(val) {
+ ctx.strokeStyle = val;
+ },
+ setLineWidth(val) {
+ ctx.lineWidth = val;
+ },
+ setLineCap(val) {
+ ctx.lineCap = val;
+ },
+ setFillStyle(val) {
+ ctx.fillStyle = val;
+ },
+ setFontSize(val) {
+ ctx.font = String(val);
+ },
+ setGlobalAlpha(val) {
+ ctx.globalAlpha = val;
+ },
+ setLineJoin(val) {
+ ctx.lineJoin = val;
+ },
+ setTextAlign(val) {
+ ctx.textAlign = val;
+ },
+ setMiterLimit(val) {
+ ctx.miterLimit = val;
+ },
+ setShadow(offsetX, offsetY, blur, color) {
+ ctx.shadowOffsetX = offsetX;
+ ctx.shadowOffsetY = offsetY;
+ ctx.shadowBlur = blur;
+ ctx.shadowColor = color;
+ },
+ setTextBaseline(val) {
+ ctx.textBaseline = val;
+ },
+ createCircularGradient() {},
+ draw() {},
+ });
+}
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/node_modules/@vant/weapp/dist/circle/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/circle/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/circle/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/circle/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..c3a2894c14bd4612748bec41e6f75249d9935af2
--- /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/node_modules/@vant/weapp/dist/circle/index.js"
@@ -0,0 +1,186 @@
+import { BLUE, WHITE } from '../common/color';
+import { VantComponent } from '../common/component';
+import { getSystemInfoSync } from '../common/utils';
+import { isObj } from '../common/validator';
+import { canIUseCanvas2d } from '../common/version';
+import { adaptor } from './canvas';
+function format(rate) {
+ return Math.min(Math.max(rate, 0), 100);
+}
+const PERIMETER = 2 * Math.PI;
+const BEGIN_ANGLE = -Math.PI / 2;
+const STEP = 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() {
+ this.drawCircle(this.currentValue);
+ },
+ },
+ fill: String,
+ layerColor: {
+ type: String,
+ value: WHITE,
+ },
+ color: {
+ type: null,
+ value: BLUE,
+ observer() {
+ this.setHoverColor().then(() => {
+ this.drawCircle(this.currentValue);
+ });
+ },
+ },
+ type: {
+ type: String,
+ value: '',
+ },
+ strokeWidth: {
+ type: Number,
+ value: 4,
+ },
+ clockwise: {
+ type: Boolean,
+ value: true,
+ },
+ },
+ data: {
+ hoverColor: BLUE,
+ },
+ methods: {
+ getContext() {
+ const { type, size } = this.data;
+ if (type === '' || !canIUseCanvas2d()) {
+ const ctx = wx.createCanvasContext('van-circle', this);
+ return Promise.resolve(ctx);
+ }
+ const dpr = getSystemInfoSync().pixelRatio;
+ return new Promise((resolve) => {
+ wx.createSelectorQuery()
+ .in(this)
+ .select('#van-circle')
+ .node()
+ .exec((res) => {
+ const canvas = res[0].node;
+ const ctx = canvas.getContext(type);
+ if (!this.inited) {
+ this.inited = true;
+ canvas.width = size * dpr;
+ canvas.height = size * dpr;
+ ctx.scale(dpr, dpr);
+ }
+ resolve(adaptor(ctx));
+ });
+ });
+ },
+ setHoverColor() {
+ const { color, size } = this.data;
+ if (isObj(color)) {
+ return this.getContext().then((context) => {
+ const LinearColor = context.createLinearGradient(size, 0, 0, 0);
+ Object.keys(color)
+ .sort((a, b) => parseFloat(a) - parseFloat(b))
+ .map((key) =>
+ LinearColor.addColorStop(parseFloat(key) / 100, color[key])
+ );
+ this.hoverColor = LinearColor;
+ });
+ }
+ this.hoverColor = color;
+ return Promise.resolve();
+ },
+ presetCanvas(context, strokeStyle, beginAngle, endAngle, fill) {
+ const { strokeWidth, lineCap, clockwise, size } = this.data;
+ const position = size / 2;
+ const 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(context) {
+ const { layerColor, fill } = this.data;
+ this.presetCanvas(context, layerColor, 0, PERIMETER, fill);
+ },
+ renderHoverCircle(context, formatValue) {
+ const { clockwise } = this.data;
+ // 结束角度
+ const progress = PERIMETER * (formatValue / 100);
+ const endAngle = clockwise
+ ? BEGIN_ANGLE + progress
+ : 3 * Math.PI - (BEGIN_ANGLE + progress);
+ this.presetCanvas(context, this.hoverColor, BEGIN_ANGLE, endAngle);
+ },
+ drawCircle(currentValue) {
+ const { size } = this.data;
+ this.getContext().then((context) => {
+ context.clearRect(0, 0, size, size);
+ this.renderLayerCircle(context);
+ const formatValue = format(currentValue);
+ if (formatValue !== 0) {
+ this.renderHoverCircle(context, formatValue);
+ }
+ context.draw();
+ });
+ },
+ reRender() {
+ // tofector 动画暂时没有想到好的解决方案
+ const { value, speed } = this.data;
+ if (speed <= 0 || speed > 1000) {
+ this.drawCircle(value);
+ return;
+ }
+ this.clearInterval();
+ this.currentValue = this.currentValue || 0;
+ this.interval = setInterval(() => {
+ 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() {
+ if (this.interval) {
+ clearInterval(this.interval);
+ this.interval = null;
+ }
+ },
+ },
+ mounted() {
+ this.currentValue = this.data.value;
+ this.setHoverColor().then(() => {
+ this.drawCircle(this.currentValue);
+ });
+ },
+ destroyed() {
+ 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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/col/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/col/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/col/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/col/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..20f326fb1778c5f146c2e707f56c0c6c441c6311
--- /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/node_modules/@vant/weapp/dist/col/index.js"
@@ -0,0 +1,9 @@
+import { useParent } from '../common/relation';
+import { VantComponent } from '../common/component';
+VantComponent({
+ relation: 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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/collapse-item/animate.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/collapse-item/animate.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..0c33c00512dd4c1e7326b6fa04daa93f1b74431b
--- /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/node_modules/@vant/weapp/dist/collapse-item/animate.d.ts"
@@ -0,0 +1,6 @@
+///
+export declare function setContentAnimate(
+ context: WechatMiniprogram.Component.TrivialInstance,
+ expanded: boolean,
+ mounted: boolean
+): void;
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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/collapse-item/animate.js"
new file mode 100644
index 0000000000000000000000000000000000000000..7ce1dae090fa61ecc63125f5aa019abe98989930
--- /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/node_modules/@vant/weapp/dist/collapse-item/animate.js"
@@ -0,0 +1,70 @@
+import { canIUseAnimate } from '../common/version';
+import { getRect } from '../common/utils';
+function useAnimate(context, expanded, mounted, height) {
+ const 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,
+ () => {
+ 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,
+ () => {
+ context.clearAnimation(selector);
+ }
+ );
+}
+function useAnimation(context, expanded, mounted, height) {
+ const 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(),
+ });
+}
+export function setContentAnimate(context, expanded, mounted) {
+ getRect(context, '.van-collapse-item__content')
+ .then((rect) => rect.height)
+ .then((height) => {
+ canIUseAnimate()
+ ? useAnimate(context, expanded, mounted, height)
+ : useAnimation(context, expanded, mounted, height);
+ });
+}
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/node_modules/@vant/weapp/dist/collapse-item/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/collapse-item/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/collapse-item/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/collapse-item/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..c44c27e1804fbb0bb087ca3436ab50be41edc77e
--- /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/node_modules/@vant/weapp/dist/collapse-item/index.js"
@@ -0,0 +1,59 @@
+import { VantComponent } from '../common/component';
+import { useParent } from '../common/relation';
+import { setContentAnimate } from './animate';
+VantComponent({
+ classes: ['title-class', 'content-class'],
+ relation: 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() {
+ this.updateExpanded();
+ this.mounted = true;
+ },
+ methods: {
+ updateExpanded() {
+ if (!this.parent) {
+ return;
+ }
+ const { value, accordion } = this.parent.data;
+ const { children = [] } = this.parent;
+ const { name } = this.data;
+ const index = children.indexOf(this);
+ const currentName = name == null ? index : name;
+ const expanded = accordion
+ ? value === currentName
+ : (value || []).some((name) => name === currentName);
+ if (expanded !== this.data.expanded) {
+ setContentAnimate(this, expanded, this.mounted);
+ }
+ this.setData({ index, expanded });
+ },
+ onClick() {
+ if (this.data.disabled) {
+ return;
+ }
+ const { name, expanded } = this.data;
+ const index = this.parent.children.indexOf(this);
+ const 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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/collapse/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/collapse/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/collapse/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/collapse/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..60e4611a65dcb4bce4c98e3906b007651e5a84d5
--- /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/node_modules/@vant/weapp/dist/collapse/index.js"
@@ -0,0 +1,44 @@
+import { VantComponent } from '../common/component';
+import { useChildren } from '../common/relation';
+VantComponent({
+ relation: useChildren('collapse-item'),
+ props: {
+ value: {
+ type: null,
+ observer: 'updateExpanded',
+ },
+ accordion: {
+ type: Boolean,
+ observer: 'updateExpanded',
+ },
+ border: {
+ type: Boolean,
+ value: true,
+ },
+ },
+ methods: {
+ updateExpanded() {
+ this.children.forEach((child) => {
+ child.updateExpanded();
+ });
+ },
+ switch(name, expanded) {
+ const { accordion, value } = this.data;
+ const changeItem = name;
+ if (!accordion) {
+ name = expanded
+ ? (value || []).concat(name)
+ : (value || []).filter((activeName) => 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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/common/color.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/common/color.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..386f3077e23a24db2af9b4a4ad5c8f451f21aa2c
--- /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/node_modules/@vant/weapp/dist/common/color.d.ts"
@@ -0,0 +1,7 @@
+export declare const RED = "#ee0a24";
+export declare const BLUE = "#1989fa";
+export declare const WHITE = "#fff";
+export declare const GREEN = "#07c160";
+export declare const ORANGE = "#ff976a";
+export declare const GRAY = "#323233";
+export declare const 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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/common/color.js"
new file mode 100644
index 0000000000000000000000000000000000000000..6b285bd6cddc616bf2fd65528217808876c5c603
--- /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/node_modules/@vant/weapp/dist/common/color.js"
@@ -0,0 +1,7 @@
+export const RED = '#ee0a24';
+export const BLUE = '#1989fa';
+export const WHITE = '#fff';
+export const GREEN = '#07c160';
+export const ORANGE = '#ff976a';
+export const GRAY = '#323233';
+export const 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/node_modules/@vant/weapp/dist/common/component.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/common/component.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..6b0a9582789a1b978a3e9de5522fb5ad93b3e3c2
--- /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/node_modules/@vant/weapp/dist/common/component.d.ts"
@@ -0,0 +1,8 @@
+///
+import { VantComponentOptions } from '../definitions/index';
+declare function VantComponent<
+ Data extends WechatMiniprogram.Component.DataOption,
+ Props extends WechatMiniprogram.Component.PropertyOption,
+ Methods extends WechatMiniprogram.Component.MethodOption
+>(vantOptions: VantComponentOptions): void;
+export { 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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/common/component.js"
new file mode 100644
index 0000000000000000000000000000000000000000..5530c6f01c7d88582f79c2a15057bf5ee64d1c2a
--- /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/node_modules/@vant/weapp/dist/common/component.js"
@@ -0,0 +1,45 @@
+import { basic } from '../mixins/basic';
+function mapKeys(source, target, map) {
+ Object.keys(map).forEach((key) => {
+ if (source[key]) {
+ target[map[key]] = source[key];
+ }
+ });
+}
+function VantComponent(vantOptions) {
+ const 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);
+ // add relations
+ const { relation } = vantOptions;
+ 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);
+}
+export { 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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/common/relation.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/common/relation.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..be5f2eea91b13d260d49f1930154395e74759dd9
--- /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/node_modules/@vant/weapp/dist/common/relation.d.ts"
@@ -0,0 +1,21 @@
+///
+declare type TrivialInstance = WechatMiniprogram.Component.TrivialInstance;
+export declare function useParent(
+ name: string,
+ onEffect?: (this: TrivialInstance) => void
+): {
+ relations: {
+ [x: string]: WechatMiniprogram.Component.RelationOption;
+ };
+ mixin: string;
+};
+export declare function useChildren(
+ name: string,
+ onEffect?: (this: TrivialInstance, target: TrivialInstance) => void
+): {
+ relations: {
+ [x: string]: WechatMiniprogram.Component.RelationOption;
+ };
+ mixin: string;
+};
+export {};
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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/common/relation.js"
new file mode 100644
index 0000000000000000000000000000000000000000..99c1a493ab3b13ea45be93d69cc15d3650b034bc
--- /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/node_modules/@vant/weapp/dist/common/relation.js"
@@ -0,0 +1,64 @@
+export function useParent(name, onEffect) {
+ const path = `../${name}/index`;
+ return {
+ relations: {
+ [path]: {
+ type: 'ancestor',
+ linked() {
+ onEffect && onEffect.call(this);
+ },
+ linkChanged() {
+ onEffect && onEffect.call(this);
+ },
+ unlinked() {
+ onEffect && onEffect.call(this);
+ },
+ },
+ },
+ mixin: Behavior({
+ created() {
+ Object.defineProperty(this, 'parent', {
+ get: () => this.getRelationNodes(path)[0],
+ });
+ Object.defineProperty(this, 'index', {
+ // @ts-ignore
+ get: () => {
+ 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);
+ },
+ });
+ },
+ }),
+ };
+}
+export function useChildren(name, onEffect) {
+ const path = `../${name}/index`;
+ return {
+ relations: {
+ [path]: {
+ type: 'descendant',
+ linked(target) {
+ onEffect && onEffect.call(this, target);
+ },
+ linkChanged(target) {
+ onEffect && onEffect.call(this, target);
+ },
+ unlinked(target) {
+ onEffect && onEffect.call(this, target);
+ },
+ },
+ },
+ mixin: Behavior({
+ created() {
+ Object.defineProperty(this, 'children', {
+ get: () => this.getRelationNodes(path) || [],
+ });
+ },
+ }),
+ };
+}
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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/common/utils.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/common/utils.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..1ceccd10bc667434644426ff07e770be8c200e32
--- /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/node_modules/@vant/weapp/dist/common/utils.d.ts"
@@ -0,0 +1,30 @@
+///
+export declare function range(num: number, min: number, max: number): number;
+export declare function nextTick(cb: (...args: any[]) => void): void;
+export declare function getSystemInfoSync(): WechatMiniprogram.GetSystemInfoSyncResult;
+export declare function addUnit(value?: string | number): string | undefined;
+export declare function requestAnimationFrame(
+ cb: () => void
+): number | WechatMiniprogram.NodesRef;
+export declare function pickExclude(obj: unknown, keys: string[]): {};
+export declare function getRect(
+ context: WechatMiniprogram.Component.TrivialInstance,
+ selector: string
+): Promise;
+export declare function getAllRect(
+ context: WechatMiniprogram.Component.TrivialInstance,
+ selector: string
+): Promise;
+export declare function groupSetData(
+ context: WechatMiniprogram.Component.TrivialInstance,
+ cb: () => void
+): void;
+export declare function toPromise(
+ promiseLike: Promise | unknown
+): Promise;
+export declare function getCurrentPage(): T &
+ WechatMiniprogram.OptionalInterface &
+ WechatMiniprogram.Page.InstanceProperties &
+ WechatMiniprogram.Page.InstanceMethods> &
+ WechatMiniprogram.Page.Data> &
+ Record;
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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/common/utils.js"
new file mode 100644
index 0000000000000000000000000000000000000000..81351715a531737f625aab7469d06b1310c62357
--- /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/node_modules/@vant/weapp/dist/common/utils.js"
@@ -0,0 +1,89 @@
+import { isDef, isNumber, isPlainObject, isPromise } from './validator';
+import { canIUseGroupSetData, canIUseNextTick } from './version';
+export function range(num, min, max) {
+ return Math.min(Math.max(num, min), max);
+}
+export function nextTick(cb) {
+ if (canIUseNextTick()) {
+ wx.nextTick(cb);
+ } else {
+ setTimeout(() => {
+ cb();
+ }, 1000 / 30);
+ }
+}
+let systemInfo;
+export function getSystemInfoSync() {
+ if (systemInfo == null) {
+ systemInfo = wx.getSystemInfoSync();
+ }
+ return systemInfo;
+}
+export function addUnit(value) {
+ if (!isDef(value)) {
+ return undefined;
+ }
+ value = String(value);
+ return isNumber(value) ? `${value}px` : value;
+}
+export function requestAnimationFrame(cb) {
+ const systemInfo = getSystemInfoSync();
+ if (systemInfo.platform === 'devtools') {
+ return setTimeout(() => {
+ cb();
+ }, 1000 / 30);
+ }
+ return wx
+ .createSelectorQuery()
+ .selectViewport()
+ .boundingClientRect()
+ .exec(() => {
+ cb();
+ });
+}
+export function pickExclude(obj, keys) {
+ if (!isPlainObject(obj)) {
+ return {};
+ }
+ return Object.keys(obj).reduce((prev, key) => {
+ if (!keys.includes(key)) {
+ prev[key] = obj[key];
+ }
+ return prev;
+ }, {});
+}
+export function getRect(context, selector) {
+ return new Promise((resolve) => {
+ wx.createSelectorQuery()
+ .in(context)
+ .select(selector)
+ .boundingClientRect()
+ .exec((rect = []) => resolve(rect[0]));
+ });
+}
+export function getAllRect(context, selector) {
+ return new Promise((resolve) => {
+ wx.createSelectorQuery()
+ .in(context)
+ .selectAll(selector)
+ .boundingClientRect()
+ .exec((rect = []) => resolve(rect[0]));
+ });
+}
+export function groupSetData(context, cb) {
+ if (canIUseGroupSetData()) {
+ context.groupSetData(cb);
+ } else {
+ cb();
+ }
+}
+export function toPromise(promiseLike) {
+ if (isPromise(promiseLike)) {
+ return promiseLike;
+ }
+ return Promise.resolve(promiseLike);
+}
+export function getCurrentPage() {
+ const pages = getCurrentPages();
+ return pages[pages.length - 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/node_modules/@vant/weapp/dist/common/validator.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/common/validator.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..ae7c48f15e445ec7b8daf764da633eddfe1a2574
--- /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/node_modules/@vant/weapp/dist/common/validator.d.ts"
@@ -0,0 +1,11 @@
+export declare function isFunction(val: unknown): val is Function;
+export declare function isPlainObject(
+ val: unknown
+): val is Record;
+export declare function isPromise(val: unknown): val is Promise;
+export declare function isDef(value: unknown): boolean;
+export declare function isObj(x: unknown): x is Record;
+export declare function isNumber(value: string): boolean;
+export declare function isBoolean(value: unknown): value is boolean;
+export declare function isImageUrl(url: string): boolean;
+export declare function isVideoUrl(url: string): boolean;
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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/common/validator.js"
new file mode 100644
index 0000000000000000000000000000000000000000..1c7d1e99aae5bc08c1c93d580e3cdda79e80305b
--- /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/node_modules/@vant/weapp/dist/common/validator.js"
@@ -0,0 +1,30 @@
+export function isFunction(val) {
+ return typeof val === 'function';
+}
+export function isPlainObject(val) {
+ return val !== null && typeof val === 'object' && !Array.isArray(val);
+}
+export function isPromise(val) {
+ return isPlainObject(val) && isFunction(val.then) && isFunction(val.catch);
+}
+export function isDef(value) {
+ return value !== undefined && value !== null;
+}
+export function isObj(x) {
+ const type = typeof x;
+ return x !== null && (type === 'object' || type === 'function');
+}
+export function isNumber(value) {
+ return /^\d+(\.\d+)?$/.test(value);
+}
+export function isBoolean(value) {
+ return typeof value === 'boolean';
+}
+const IMAGE_REGEXP = /\.(jpeg|jpg|gif|png|svg|webp|jfif|bmp|dpg)/i;
+const VIDEO_REGEXP = /\.(mp4|mpg|mpeg|dat|asf|avi|rm|rmvb|mov|wmv|flv|mkv)/i;
+export function isImageUrl(url) {
+ return IMAGE_REGEXP.test(url);
+}
+export function isVideoUrl(url) {
+ return VIDEO_REGEXP.test(url);
+}
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/node_modules/@vant/weapp/dist/common/version.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/common/version.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..89c4ddd75a1b8198aa7298a0469573d710ba7687
--- /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/node_modules/@vant/weapp/dist/common/version.d.ts"
@@ -0,0 +1,6 @@
+export declare function canIUseModel(): boolean;
+export declare function canIUseFormFieldButton(): boolean;
+export declare function canIUseAnimate(): boolean;
+export declare function canIUseGroupSetData(): boolean;
+export declare function canIUseNextTick(): boolean;
+export declare function canIUseCanvas2d(): boolean;
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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/common/version.js"
new file mode 100644
index 0000000000000000000000000000000000000000..34d698eea496ed071a3776f59371b6888062605f
--- /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/node_modules/@vant/weapp/dist/common/version.js"
@@ -0,0 +1,45 @@
+import { getSystemInfoSync } from './utils';
+function compareVersion(v1, v2) {
+ v1 = v1.split('.');
+ v2 = v2.split('.');
+ const len = Math.max(v1.length, v2.length);
+ while (v1.length < len) {
+ v1.push('0');
+ }
+ while (v2.length < len) {
+ v2.push('0');
+ }
+ for (let i = 0; i < len; i++) {
+ const num1 = parseInt(v1[i], 10);
+ const num2 = parseInt(v2[i], 10);
+ if (num1 > num2) {
+ return 1;
+ }
+ if (num1 < num2) {
+ return -1;
+ }
+ }
+ return 0;
+}
+function gte(version) {
+ const system = getSystemInfoSync();
+ return compareVersion(system.SDKVersion, version) >= 0;
+}
+export function canIUseModel() {
+ return gte('2.9.3');
+}
+export function canIUseFormFieldButton() {
+ return gte('2.10.3');
+}
+export function canIUseAnimate() {
+ return gte('2.9.0');
+}
+export function canIUseGroupSetData() {
+ return gte('2.4.0');
+}
+export function canIUseNextTick() {
+ return wx.canIUse('nextTick');
+}
+export function canIUseCanvas2d() {
+ return gte('2.9.0');
+}
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/node_modules/@vant/weapp/dist/count-down/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/count-down/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/count-down/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/count-down/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..78dbb885e23b429b1a459032c3d1826b001ad376
--- /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/node_modules/@vant/weapp/dist/count-down/index.js"
@@ -0,0 +1,99 @@
+import { VantComponent } from '../common/component';
+import { isSameSecond, parseFormat, parseTimeData } from './utils';
+function simpleTick(fn) {
+ return setTimeout(fn, 30);
+}
+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: parseTimeData(0),
+ formattedTime: '0',
+ },
+ destroyed() {
+ clearTimeout(this.tid);
+ this.tid = null;
+ },
+ methods: {
+ // 开始
+ start() {
+ if (this.counting) {
+ return;
+ }
+ this.counting = true;
+ this.endTime = Date.now() + this.remain;
+ this.tick();
+ },
+ // 暂停
+ pause() {
+ this.counting = false;
+ clearTimeout(this.tid);
+ },
+ // 重置
+ reset() {
+ this.pause();
+ this.remain = this.data.time;
+ this.setRemain(this.remain);
+ if (this.data.autoStart) {
+ this.start();
+ }
+ },
+ tick() {
+ if (this.data.millisecond) {
+ this.microTick();
+ } else {
+ this.macroTick();
+ }
+ },
+ microTick() {
+ this.tid = simpleTick(() => {
+ this.setRemain(this.getRemain());
+ if (this.remain !== 0) {
+ this.microTick();
+ }
+ });
+ },
+ macroTick() {
+ this.tid = simpleTick(() => {
+ const remain = this.getRemain();
+ if (!isSameSecond(remain, this.remain) || remain === 0) {
+ this.setRemain(remain);
+ }
+ if (this.remain !== 0) {
+ this.macroTick();
+ }
+ });
+ },
+ getRemain() {
+ return Math.max(this.endTime - Date.now(), 0);
+ },
+ setRemain(remain) {
+ this.remain = remain;
+ const timeData = parseTimeData(remain);
+ if (this.data.useSlot) {
+ this.$emit('change', timeData);
+ }
+ this.setData({
+ formattedTime: 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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/count-down/utils.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/count-down/utils.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..e4a58ddfb68c1d24fda9d2780f2dfae3222d8e00
--- /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/node_modules/@vant/weapp/dist/count-down/utils.d.ts"
@@ -0,0 +1,10 @@
+export declare type TimeData = {
+ days: number;
+ hours: number;
+ minutes: number;
+ seconds: number;
+ milliseconds: number;
+};
+export declare function parseTimeData(time: number): TimeData;
+export declare function parseFormat(format: string, timeData: TimeData): string;
+export declare function isSameSecond(time1: number, time2: number): boolean;
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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/count-down/utils.js"
new file mode 100644
index 0000000000000000000000000000000000000000..a9f05b8eec17f39daf013c06cbed916f0d2d480a
--- /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/node_modules/@vant/weapp/dist/count-down/utils.js"
@@ -0,0 +1,53 @@
+function padZero(num, targetLength = 2) {
+ let str = num + '';
+ while (str.length < targetLength) {
+ str = '0' + str;
+ }
+ return str;
+}
+const SECOND = 1000;
+const MINUTE = 60 * SECOND;
+const HOUR = 60 * MINUTE;
+const DAY = 24 * HOUR;
+export function parseTimeData(time) {
+ const days = Math.floor(time / DAY);
+ const hours = Math.floor((time % DAY) / HOUR);
+ const minutes = Math.floor((time % HOUR) / MINUTE);
+ const seconds = Math.floor((time % MINUTE) / SECOND);
+ const milliseconds = Math.floor(time % SECOND);
+ return {
+ days,
+ hours,
+ minutes,
+ seconds,
+ milliseconds,
+ };
+}
+export function parseFormat(format, timeData) {
+ const { days } = timeData;
+ let { hours, minutes, seconds, milliseconds } = timeData;
+ 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));
+}
+export function isSameSecond(time1, time2) {
+ return Math.floor(time1 / 1000) === Math.floor(time2 / 1000);
+}
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/node_modules/@vant/weapp/dist/datetime-picker/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/datetime-picker/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/datetime-picker/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/datetime-picker/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..75bd0630790b012900624bd4deff802a00fd1f5f
--- /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/node_modules/@vant/weapp/dist/datetime-picker/index.js"
@@ -0,0 +1,324 @@
+import { VantComponent } from '../common/component';
+import { isDef } from '../common/validator';
+import { pickerProps } from '../picker/shared';
+const currentYear = new Date().getFullYear();
+function isValidDate(date) {
+ return 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) {
+ let index = -1;
+ const 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();
+}
+const defaultFormatter = (type, value) => value;
+VantComponent({
+ classes: ['active-class', 'toolbar-class', 'column-class'],
+ props: Object.assign(Object.assign({}, 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() {
+ const { data } = this;
+ const val = this.correctValue(data.value);
+ const isEqual = val === data.innerValue;
+ if (!isEqual) {
+ this.updateColumnValue(val).then(() => {
+ this.$emit('input', val);
+ });
+ } else {
+ this.updateColumns();
+ }
+ },
+ getPicker() {
+ if (this.picker == null) {
+ this.picker = this.selectComponent('.van-datetime-picker');
+ const { picker } = this;
+ const { setColumnValues } = picker;
+ picker.setColumnValues = (...args) =>
+ setColumnValues.apply(picker, [...args, false]);
+ }
+ return this.picker;
+ },
+ updateColumns() {
+ const { formatter = defaultFormatter } = this.data;
+ const results = this.getOriginColumns().map((column) => ({
+ values: column.values.map((value) => formatter(column.type, value)),
+ }));
+ return this.set({ columns: results });
+ },
+ getOriginColumns() {
+ const { filter } = this.data;
+ const results = this.getRanges().map(({ type, range }) => {
+ let values = times(range[1] - range[0] + 1, (index) => {
+ let value = range[0] + index;
+ value = type === 'year' ? `${value}` : padZero(value);
+ return value;
+ });
+ if (filter) {
+ values = filter(type, values);
+ }
+ return { type, values };
+ });
+ return results;
+ },
+ getRanges() {
+ const { data } = this;
+ if (data.type === 'time') {
+ return [
+ {
+ type: 'hour',
+ range: [data.minHour, data.maxHour],
+ },
+ {
+ type: 'minute',
+ range: [data.minMinute, data.maxMinute],
+ },
+ ];
+ }
+ const {
+ maxYear,
+ maxDate,
+ maxMonth,
+ maxHour,
+ maxMinute,
+ } = this.getBoundary('max', data.innerValue);
+ const {
+ minYear,
+ minDate,
+ minMonth,
+ minHour,
+ minMinute,
+ } = this.getBoundary('min', data.innerValue);
+ const 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(value) {
+ const { data } = this;
+ // validate value
+ const isDateType = data.type !== 'time';
+ if (isDateType && !isValidDate(value)) {
+ value = data.minDate;
+ } else if (!isDateType && !value) {
+ const { minHour } = data;
+ value = `${padZero(minHour)}:00`;
+ }
+ // time type
+ if (!isDateType) {
+ let [hour, minute] = value.split(':');
+ 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(type, innerValue) {
+ const value = new Date(innerValue);
+ const boundary = new Date(this.data[`${type}Date`]);
+ const year = boundary.getFullYear();
+ let month = 1;
+ let date = 1;
+ let hour = 0;
+ let 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 {
+ [`${type}Year`]: year,
+ [`${type}Month`]: month,
+ [`${type}Date`]: date,
+ [`${type}Hour`]: hour,
+ [`${type}Minute`]: minute,
+ };
+ },
+ onCancel() {
+ this.$emit('cancel');
+ },
+ onConfirm() {
+ this.$emit('confirm', this.data.innerValue);
+ },
+ onChange() {
+ const { data } = this;
+ let value;
+ const picker = this.getPicker();
+ const originColumns = this.getOriginColumns();
+ if (data.type === 'time') {
+ const indexes = picker.getIndexes();
+ value = `${+originColumns[0].values[indexes[0]]}:${+originColumns[1]
+ .values[indexes[1]]}`;
+ } else {
+ const indexes = picker.getIndexes();
+ const values = indexes.map(
+ (value, index) => originColumns[index].values[value]
+ );
+ const year = getTrueValue(values[0]);
+ const month = getTrueValue(values[1]);
+ const maxDate = getMonthEndDay(year, month);
+ let date = getTrueValue(values[2]);
+ if (data.type === 'year-month') {
+ date = 1;
+ }
+ date = date > maxDate ? maxDate : date;
+ let hour = 0;
+ let 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(() => {
+ this.$emit('input', value);
+ this.$emit('change', picker);
+ });
+ },
+ updateColumnValue(value) {
+ let values = [];
+ const { type } = this.data;
+ const formatter = this.data.formatter || defaultFormatter;
+ const picker = this.getPicker();
+ if (type === 'time') {
+ const pair = value.split(':');
+ values = [formatter('hour', pair[0]), formatter('minute', pair[1])];
+ } else {
+ const 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(() => this.updateColumns())
+ .then(() => picker.setValues(values));
+ },
+ },
+ created() {
+ const innerValue = this.correctValue(this.data.value);
+ this.updateColumnValue(innerValue).then(() => {
+ 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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/definitions/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/definitions/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..586e7bbd25faad6e0e841ae4e5795ff04f7a48cf
--- /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/node_modules/@vant/weapp/dist/definitions/index.d.ts"
@@ -0,0 +1,43 @@
+///
+interface VantComponentInstance {
+ parent: WechatMiniprogram.Component.TrivialInstance;
+ children: WechatMiniprogram.Component.TrivialInstance[];
+ index: number;
+ $emit: (
+ name: string,
+ detail?: unknown,
+ options?: WechatMiniprogram.Component.TriggerEventOption
+ ) => void;
+}
+export declare type VantComponentOptions<
+ Data extends WechatMiniprogram.Component.DataOption,
+ Props extends WechatMiniprogram.Component.PropertyOption,
+ Methods extends WechatMiniprogram.Component.MethodOption
+> = {
+ data?: Data;
+ field?: boolean;
+ classes?: string[];
+ mixins?: string[];
+ props?: Props;
+ relation?: {
+ relations: Record;
+ mixin: string;
+ };
+ methods?: Methods;
+ beforeCreate?: () => void;
+ created?: () => void;
+ mounted?: () => void;
+ destroyed?: () => void;
+} & ThisType<
+ VantComponentInstance &
+ WechatMiniprogram.Component.Instance<
+ Data & {
+ name: string;
+ value: any;
+ },
+ Props,
+ Methods
+ > &
+ Record
+>;
+export {};
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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/definitions/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/definitions/index.js"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/dialog/dialog.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/dialog/dialog.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..714403263224c158fb92f03c347f040fc92991a3
--- /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/node_modules/@vant/weapp/dist/dialog/dialog.d.ts"
@@ -0,0 +1,80 @@
+///
+export declare type Action = 'confirm' | 'cancel' | 'overlay';
+interface DialogOptions {
+ lang?: string;
+ show?: boolean;
+ title?: string;
+ width?: string | number | null;
+ zIndex?: number;
+ theme?: string;
+ context?:
+ | WechatMiniprogram.Page.TrivialInstance
+ | WechatMiniprogram.Component.TrivialInstance;
+ message?: string;
+ overlay?: boolean;
+ selector?: string;
+ ariaLabel?: string;
+ className?: string;
+ customStyle?: string;
+ transition?: string;
+ /**
+ * @deprecated use beforeClose instead
+ */
+ asyncClose?: boolean;
+ beforeClose?: null | ((action: Action) => Promise | void);
+ businessId?: number;
+ sessionFrom?: string;
+ overlayStyle?: string;
+ appParameter?: string;
+ messageAlign?: string;
+ sendMessageImg?: string;
+ showMessageCard?: boolean;
+ sendMessagePath?: string;
+ sendMessageTitle?: string;
+ confirmButtonText?: string;
+ cancelButtonText?: string;
+ showConfirmButton?: boolean;
+ showCancelButton?: boolean;
+ closeOnClickOverlay?: boolean;
+ confirmButtonOpenType?: string;
+}
+declare const Dialog: {
+ (options: DialogOptions): Promise<
+ WechatMiniprogram.Component.Instance<
+ Record,
+ Record,
+ Record,
+ Record,
+ false
+ >
+ >;
+ alert(
+ options: DialogOptions
+ ): Promise<
+ WechatMiniprogram.Component.Instance<
+ Record,
+ Record,
+ Record,
+ Record,
+ false
+ >
+ >;
+ confirm(
+ options: DialogOptions
+ ): Promise<
+ WechatMiniprogram.Component.Instance<
+ Record,
+ Record,
+ Record,
+ Record,
+ false
+ >
+ >;
+ close(): void;
+ stopLoading(): void;
+ currentOptions: DialogOptions;
+ defaultOptions: DialogOptions;
+ setDefaultOptions(options: DialogOptions): void;
+ resetDefaultOptions(): void;
+};
+export 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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/dialog/dialog.js"
new file mode 100644
index 0000000000000000000000000000000000000000..542c07b0a0ac947b507317a0039643d734a0cb27
--- /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/node_modules/@vant/weapp/dist/dialog/dialog.js"
@@ -0,0 +1,84 @@
+let queue = [];
+const 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: '',
+};
+let currentOptions = Object.assign({}, defaultOptions);
+function getContext() {
+ const pages = getCurrentPages();
+ return pages[pages.length - 1];
+}
+const Dialog = (options) => {
+ options = Object.assign(Object.assign({}, currentOptions), options);
+ return new Promise((resolve, reject) => {
+ const context = options.context || getContext();
+ const dialog = context.selectComponent(options.selector);
+ delete options.context;
+ delete options.selector;
+ if (dialog) {
+ dialog.setData(
+ Object.assign(
+ {
+ callback: (action, instance) => {
+ action === 'confirm' ? resolve(instance) : reject(instance);
+ },
+ },
+ options
+ )
+ );
+ wx.nextTick(() => {
+ dialog.setData({ show: true });
+ });
+ queue.push(dialog);
+ } else {
+ console.warn(
+ '未找到 van-dialog 节点,请确认 selector 及 context 是否正确'
+ );
+ }
+ });
+};
+Dialog.alert = (options) => Dialog(options);
+Dialog.confirm = (options) =>
+ Dialog(Object.assign({ showCancelButton: true }, options));
+Dialog.close = () => {
+ queue.forEach((dialog) => {
+ dialog.close();
+ });
+ queue = [];
+};
+Dialog.stopLoading = () => {
+ queue.forEach((dialog) => {
+ dialog.stopLoading();
+ });
+};
+Dialog.currentOptions = currentOptions;
+Dialog.defaultOptions = defaultOptions;
+Dialog.setDefaultOptions = (options) => {
+ currentOptions = Object.assign(Object.assign({}, currentOptions), options);
+ Dialog.currentOptions = currentOptions;
+};
+Dialog.resetDefaultOptions = () => {
+ currentOptions = Object.assign({}, defaultOptions);
+ Dialog.currentOptions = currentOptions;
+};
+Dialog.resetDefaultOptions();
+export 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/node_modules/@vant/weapp/dist/dialog/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/dialog/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/dialog/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/dialog/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..5388cda5418f4555d6eec4c648638b23334ea8de
--- /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/node_modules/@vant/weapp/dist/dialog/index.js"
@@ -0,0 +1,122 @@
+import { VantComponent } from '../common/component';
+import { button } from '../mixins/button';
+import { openType } from '../mixins/open-type';
+import { GRAY, RED } from '../common/color';
+import { toPromise } from '../common/utils';
+VantComponent({
+ mixins: [button, openType],
+ props: {
+ show: {
+ type: Boolean,
+ observer(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: RED,
+ },
+ cancelButtonColor: {
+ type: String,
+ value: GRAY,
+ },
+ showConfirmButton: {
+ type: Boolean,
+ value: true,
+ },
+ overlay: {
+ type: Boolean,
+ value: true,
+ },
+ transition: {
+ type: String,
+ value: 'scale',
+ },
+ },
+ data: {
+ loading: {
+ confirm: false,
+ cancel: false,
+ },
+ callback: () => {},
+ },
+ methods: {
+ onConfirm() {
+ this.handleAction('confirm');
+ },
+ onCancel() {
+ this.handleAction('cancel');
+ },
+ onClickOverlay() {
+ this.close('overlay');
+ },
+ close(action) {
+ this.setData({ show: false });
+ wx.nextTick(() => {
+ this.$emit('close', action);
+ const { callback } = this.data;
+ if (callback) {
+ callback(action, this);
+ }
+ });
+ },
+ stopLoading() {
+ this.setData({
+ loading: {
+ confirm: false,
+ cancel: false,
+ },
+ });
+ },
+ handleAction(action) {
+ this.$emit(action, { dialog: this });
+ const { asyncClose, beforeClose } = this.data;
+ if (!asyncClose && !beforeClose) {
+ this.close(action);
+ return;
+ }
+ this.setData({
+ [`loading.${action}`]: true,
+ });
+ if (beforeClose) {
+ toPromise(beforeClose(action)).then((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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/dialog/index.wxml"
@@ -0,0 +1,113 @@
+
+
+
+
+
+
+
+ {{ message }}
+
+
+
+
+ {{ 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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/divider/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/divider/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/divider/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/divider/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..e725740818e7687f863f330cf27f52b53544b7fa
--- /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/node_modules/@vant/weapp/dist/divider/index.js"
@@ -0,0 +1,12 @@
+import { VantComponent } from '../common/component';
+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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/dropdown-item/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/dropdown-item/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/dropdown-item/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/dropdown-item/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..95da1eefcaf30c54d0f8777c7066f0d275be10bb
--- /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/node_modules/@vant/weapp/dist/dropdown-item/index.js"
@@ -0,0 +1,111 @@
+import { useParent } from '../common/relation';
+import { VantComponent } from '../common/component';
+VantComponent({
+ field: true,
+ relation: 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() {
+ wx.nextTick(() => {
+ var _a;
+ (_a = this.parent) === null || _a === void 0
+ ? void 0
+ : _a.updateItemListData();
+ });
+ },
+ updateDataFromParent() {
+ if (this.parent) {
+ const {
+ overlay,
+ duration,
+ activeColor,
+ closeOnClickOverlay,
+ direction,
+ } = this.parent.data;
+ this.setData({
+ overlay,
+ duration,
+ activeColor,
+ closeOnClickOverlay,
+ direction,
+ });
+ }
+ },
+ onOpen() {
+ this.$emit('open');
+ },
+ onOpened() {
+ this.$emit('opened');
+ },
+ onClose() {
+ this.$emit('close');
+ },
+ onClosed() {
+ this.$emit('closed');
+ this.setData({ showWrapper: false });
+ },
+ onOptionTap(event) {
+ const { option } = event.currentTarget.dataset;
+ const { value } = option;
+ const shouldEmitChange = this.data.value !== value;
+ this.setData({ showPopup: false, value });
+ this.$emit('close');
+ this.rerender();
+ if (shouldEmitChange) {
+ this.$emit('change', value);
+ }
+ },
+ toggle(show, options = {}) {
+ var _a;
+ const { showPopup } = this.data;
+ 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((wrapperStyle) => {
+ this.setData({ 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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/dropdown-item/shared.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/dropdown-item/shared.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..c90bd9e19caa2a617e0f05d9495905f586a983c9
--- /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/node_modules/@vant/weapp/dist/dropdown-item/shared.d.ts"
@@ -0,0 +1,5 @@
+export interface Option {
+ text: string;
+ value: string | number;
+ icon: 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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/dropdown-item/shared.js"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/dropdown-item/shared.js"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/dropdown-menu/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/dropdown-menu/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/dropdown-menu/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/dropdown-menu/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..aba11b98e0921ffceb516ab6470a90e46648e690
--- /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/node_modules/@vant/weapp/dist/dropdown-menu/index.js"
@@ -0,0 +1,112 @@
+import { VantComponent } from '../common/component';
+import { useChildren } from '../common/relation';
+import { addUnit, getRect, getSystemInfoSync } from '../common/utils';
+let ARRAY = [];
+VantComponent({
+ field: true,
+ relation: 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() {
+ const { windowHeight } = getSystemInfoSync();
+ this.windowHeight = windowHeight;
+ ARRAY.push(this);
+ },
+ destroyed() {
+ ARRAY = ARRAY.filter((item) => item !== this);
+ },
+ methods: {
+ updateItemListData() {
+ this.setData({
+ itemListData: this.children.map((child) => child.data),
+ });
+ },
+ updateChildrenData() {
+ this.children.forEach((child) => {
+ child.updateDataFromParent();
+ });
+ },
+ toggleItem(active) {
+ this.children.forEach((item, index) => {
+ const { showPopup } = item.data;
+ if (index === active) {
+ item.toggle();
+ } else if (showPopup) {
+ item.toggle(false, { immediate: true });
+ }
+ });
+ },
+ close() {
+ this.children.forEach((child) => {
+ child.toggle(false, { immediate: true });
+ });
+ },
+ getChildWrapperStyle() {
+ const { zIndex, direction } = this.data;
+ return getRect(this, '.van-dropdown-menu').then((rect) => {
+ const { top = 0, bottom = 0 } = rect;
+ const offset = direction === 'down' ? bottom : this.windowHeight - top;
+ let wrapperStyle = `z-index: ${zIndex};`;
+ if (direction === 'down') {
+ wrapperStyle += `top: ${addUnit(offset)};`;
+ } else {
+ wrapperStyle += `bottom: ${addUnit(offset)};`;
+ }
+ return wrapperStyle;
+ });
+ },
+ onTitleTap(event) {
+ const { index } = event.currentTarget.dataset;
+ const child = this.children[index];
+ if (!child.data.disabled) {
+ ARRAY.forEach((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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/dropdown-menu/index.wxml"
@@ -0,0 +1,23 @@
+
+
+
+
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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/empty/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/empty/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/empty/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/empty/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..32ec1163a29b2c34906ee0a6aaa039b7685f6032
--- /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/node_modules/@vant/weapp/dist/empty/index.js"
@@ -0,0 +1,10 @@
+import { VantComponent } from '../common/component';
+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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/field/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/field/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/field/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/field/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..fd3472dc53f166ba0dae5ba25e3b380d82b3d225
--- /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/node_modules/@vant/weapp/dist/field/index.js"
@@ -0,0 +1,126 @@
+import { nextTick } from '../common/utils';
+import { VantComponent } from '../common/component';
+import { commonProps, inputProps, textareaProps } from './props';
+VantComponent({
+ field: true,
+ classes: ['input-class', 'right-icon-class', 'label-class'],
+ props: Object.assign(
+ Object.assign(
+ Object.assign(Object.assign({}, commonProps), inputProps),
+ 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() {
+ this.value = this.data.value;
+ this.setData({ innerValue: this.value });
+ },
+ methods: {
+ onInput(event) {
+ const { value = '' } = event.detail || {};
+ this.value = value;
+ this.setShowClear();
+ this.emitChange();
+ },
+ onFocus(event) {
+ this.focused = true;
+ this.setShowClear();
+ this.$emit('focus', event.detail);
+ },
+ onBlur(event) {
+ this.focused = false;
+ this.setShowClear();
+ this.$emit('blur', event.detail);
+ },
+ onClickIcon() {
+ this.$emit('click-icon');
+ },
+ onClickInput(event) {
+ this.$emit('click-input', event.detail);
+ },
+ onClear() {
+ this.setData({ innerValue: '' });
+ this.value = '';
+ this.setShowClear();
+ nextTick(() => {
+ this.emitChange();
+ this.$emit('clear', '');
+ });
+ },
+ onConfirm(event) {
+ const { value = '' } = event.detail || {};
+ this.value = value;
+ this.setShowClear();
+ this.$emit('confirm', value);
+ },
+ setValue(value) {
+ this.value = value;
+ this.setShowClear();
+ if (value === '') {
+ this.setData({ innerValue: '' });
+ }
+ this.emitChange();
+ },
+ onLineChange(event) {
+ this.$emit('linechange', event.detail);
+ },
+ onKeyboardHeightChange(event) {
+ this.$emit('keyboardheightchange', event.detail);
+ },
+ emitChange() {
+ this.setData({ value: this.value });
+ nextTick(() => {
+ this.$emit('input', this.value);
+ this.$emit('change', this.value);
+ });
+ },
+ setShowClear() {
+ const { clearable, readonly } = this.data;
+ const { focused, value } = this;
+ this.setData({
+ showClear: !!clearable && !!focused && !!value && !readonly,
+ });
+ },
+ noop() {},
+ },
+});
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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/field/props.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/field/props.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..5cd130a127920f96ed4f24a02c5d240470b50772
--- /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/node_modules/@vant/weapp/dist/field/props.d.ts"
@@ -0,0 +1,4 @@
+///
+export declare const commonProps: WechatMiniprogram.Component.PropertyOption;
+export declare const inputProps: WechatMiniprogram.Component.PropertyOption;
+export declare const textareaProps: WechatMiniprogram.Component.PropertyOption;
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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/field/props.js"
new file mode 100644
index 0000000000000000000000000000000000000000..218749f8a75a82f5bd25e5cee2b4337968c0c744
--- /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/node_modules/@vant/weapp/dist/field/props.js"
@@ -0,0 +1,63 @@
+export const commonProps = {
+ value: {
+ type: String,
+ observer(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,
+};
+export const inputProps = {
+ type: {
+ type: String,
+ value: 'text',
+ },
+ password: Boolean,
+ confirmType: String,
+ confirmHold: Boolean,
+};
+export const 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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/field/textarea.wxml"
@@ -0,0 +1,29 @@
+
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/node_modules/@vant/weapp/dist/goods-action-button/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/goods-action-button/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/goods-action-button/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/goods-action-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/node_modules/@vant/weapp/dist/goods-action-button/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..6a210c11e49d5e79c354d220f80dc6cf8f639137
--- /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/node_modules/@vant/weapp/dist/goods-action-button/index.js"
@@ -0,0 +1,37 @@
+import { VantComponent } from '../common/component';
+import { useParent } from '../common/relation';
+import { button } from '../mixins/button';
+import { link } from '../mixins/link';
+import { openType } from '../mixins/open-type';
+VantComponent({
+ mixins: [link, button, openType],
+ relation: useParent('goods-action'),
+ props: {
+ text: String,
+ color: String,
+ loading: Boolean,
+ disabled: Boolean,
+ plain: Boolean,
+ type: {
+ type: String,
+ value: 'danger',
+ },
+ },
+ methods: {
+ onClick(event) {
+ this.$emit('click', event.detail);
+ this.jumpLink();
+ },
+ updateStyle() {
+ if (this.parent == null) {
+ return;
+ }
+ const { index } = this;
+ const { children = [] } = this.parent;
+ this.setData({
+ isFirst: index === 0,
+ isLast: index === children.length - 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/node_modules/@vant/weapp/dist/goods-action-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/node_modules/@vant/weapp/dist/goods-action-button/index.json"
new file mode 100644
index 0000000000000000000000000000000000000000..b567686850ec6f95a2a40e909f5dd112d2d03b62
--- /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/node_modules/@vant/weapp/dist/goods-action-button/index.json"
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-button": "../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/node_modules/@vant/weapp/dist/goods-action-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/node_modules/@vant/weapp/dist/goods-action-button/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..3912cedb0c53977f8dacdb834b20ab66b7e406f1
--- /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/node_modules/@vant/weapp/dist/goods-action-button/index.wxml"
@@ -0,0 +1,30 @@
+
+
+ {{ 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/node_modules/@vant/weapp/dist/goods-action-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/node_modules/@vant/weapp/dist/goods-action-button/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..77d16c6711710bbf12ec70c3e7f68462aff0a2e4
--- /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/node_modules/@vant/weapp/dist/goods-action-button/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';:host{-webkit-flex:1;flex:1}.van-goods-action-button{--button-warning-background-color:linear-gradient(90deg,#ffd01e,#ff8917);--button-warning-background-color:var(--goods-action-button-warning-color,linear-gradient(90deg,#ffd01e,#ff8917));--button-danger-background-color:linear-gradient(90deg,#ff6034,#ee0a24);--button-danger-background-color:var(--goods-action-button-danger-color,linear-gradient(90deg,#ff6034,#ee0a24));--button-default-height:40px;--button-default-height:var(--goods-action-button-height,40px);--button-line-height:20px;--button-line-height:var(--goods-action-button-line-height,20px);--button-plain-background-color:#fff;--button-plain-background-color:var(--goods-action-button-plain-color,#fff);display:block;--button-border-width:0}.van-goods-action-button--first{margin-left:5px;--button-border-radius:20px 0 0 20px;--button-border-radius:var(--goods-action-button-border-radius,20px) 0 0 var(--goods-action-button-border-radius,20px)}.van-goods-action-button--last{margin-right:5px;--button-border-radius:0 20px 20px 0;--button-border-radius:0 var(--goods-action-button-border-radius,20px) var(--goods-action-button-border-radius,20px) 0}.van-goods-action-button--first.van-goods-action-button--last{--button-border-radius:20px;--button-border-radius:var(--goods-action-button-border-radius,20px)}.van-goods-action-button--plain{--button-border-width:1px}.van-goods-action-button__inner{width:100%;font-weight:500!important;font-weight:var(--font-weight-bold,500)!important}@media (max-width:321px){.van-goods-action-button{font-size:13px}}
\ 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/node_modules/@vant/weapp/dist/goods-action-icon/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/goods-action-icon/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/goods-action-icon/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/goods-action-icon/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/node_modules/@vant/weapp/dist/goods-action-icon/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..765cd3a286f442252f4dfcb38849e87344e98f6b
--- /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/node_modules/@vant/weapp/dist/goods-action-icon/index.js"
@@ -0,0 +1,22 @@
+import { VantComponent } from '../common/component';
+import { button } from '../mixins/button';
+import { link } from '../mixins/link';
+import { openType } from '../mixins/open-type';
+VantComponent({
+ classes: ['icon-class', 'text-class'],
+ mixins: [link, button, openType],
+ props: {
+ text: String,
+ dot: Boolean,
+ info: String,
+ icon: String,
+ disabled: Boolean,
+ loading: Boolean,
+ },
+ methods: {
+ onClick(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/node_modules/@vant/weapp/dist/goods-action-icon/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/node_modules/@vant/weapp/dist/goods-action-icon/index.json"
new file mode 100644
index 0000000000000000000000000000000000000000..93bfe8abb60e11baa5ebf4aa2402203c430db0ac
--- /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/node_modules/@vant/weapp/dist/goods-action-icon/index.json"
@@ -0,0 +1,7 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-icon": "../icon/index",
+ "van-button": "../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/node_modules/@vant/weapp/dist/goods-action-icon/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/node_modules/@vant/weapp/dist/goods-action-icon/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..1983cae4654e8041a67a3d2159e8d02ef5b11800
--- /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/node_modules/@vant/weapp/dist/goods-action-icon/index.wxml"
@@ -0,0 +1,35 @@
+
+
+
+ {{ 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/node_modules/@vant/weapp/dist/goods-action-icon/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/node_modules/@vant/weapp/dist/goods-action-icon/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..eeef19113b9eb2e81c321ecdfd8b2403c9ac20dd
--- /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/node_modules/@vant/weapp/dist/goods-action-icon/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-goods-action-icon{display:-webkit-flex!important;display:flex!important;-webkit-flex-direction:column;flex-direction:column;-webkit-justify-content:center!important;justify-content:center!important;line-height:1!important;border:none!important;font-size:10px!important;font-size:var(--goods-action-icon-font-size,10px)!important;color:#646566!important;color:var(--goods-action-icon-text-color,#646566)!important;min-width:48px;min-width:var(--goods-action-icon-width,48px);height:50px!important;height:var(--goods-action-icon-height,50px)!important}.van-goods-action-icon__icon{display:-webkit-flex;display:flex;margin:0 auto 5px;color:#323233;color:var(--goods-action-icon-color,#323233);font-size:18px;font-size:var(--goods-action-icon-size,18px)}
\ 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/node_modules/@vant/weapp/dist/goods-action/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/goods-action/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/goods-action/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/goods-action/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/node_modules/@vant/weapp/dist/goods-action/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..c58c38df0e5685399a99511edf34ab2260ab77b1
--- /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/node_modules/@vant/weapp/dist/goods-action/index.js"
@@ -0,0 +1,15 @@
+import { VantComponent } from '../common/component';
+import { useChildren } from '../common/relation';
+VantComponent({
+ relation: useChildren('goods-action-button', function () {
+ this.children.forEach((item) => {
+ item.updateStyle();
+ });
+ }),
+ props: {
+ safeAreaInsetBottom: {
+ 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/node_modules/@vant/weapp/dist/goods-action/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/node_modules/@vant/weapp/dist/goods-action/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/node_modules/@vant/weapp/dist/goods-action/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/node_modules/@vant/weapp/dist/goods-action/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/node_modules/@vant/weapp/dist/goods-action/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..569450c738b936a2a39785eda9778c0efa6c83c4
--- /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/node_modules/@vant/weapp/dist/goods-action/index.wxml"
@@ -0,0 +1,5 @@
+
+
+
+
+
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/node_modules/@vant/weapp/dist/goods-action/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/node_modules/@vant/weapp/dist/goods-action/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..d0def95e14dab0f01319eb27e1fc9620e7e7f28b
--- /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/node_modules/@vant/weapp/dist/goods-action/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-goods-action{position:fixed;right:0;bottom:0;left:0;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;box-sizing:initial;height:50px;height:var(--goods-action-height,50px);background-color:#fff;background-color:var(--goods-action-background-color,#fff)}.van-goods-action--safe{padding-bottom:env(safe-area-inset-bottom)}
\ 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/node_modules/@vant/weapp/dist/grid-item/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/grid-item/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/grid-item/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/grid-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/node_modules/@vant/weapp/dist/grid-item/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..e0083097c68b10b4b50199d1b70acca182b9452d
--- /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/node_modules/@vant/weapp/dist/grid-item/index.js"
@@ -0,0 +1,56 @@
+import { VantComponent } from '../common/component';
+import { useParent } from '../common/relation';
+import { link } from '../mixins/link';
+VantComponent({
+ relation: useParent('grid'),
+ classes: ['content-class', 'icon-class', 'text-class'],
+ mixins: [link],
+ props: {
+ icon: String,
+ iconColor: String,
+ dot: Boolean,
+ info: null,
+ badge: null,
+ text: String,
+ useSlot: Boolean,
+ },
+ data: {
+ viewStyle: '',
+ },
+ mounted() {
+ this.updateStyle();
+ },
+ methods: {
+ updateStyle() {
+ if (!this.parent) {
+ return;
+ }
+ const { data, children } = this.parent;
+ const {
+ columnNum,
+ border,
+ square,
+ gutter,
+ clickable,
+ center,
+ direction,
+ iconSize,
+ } = data;
+ this.setData({
+ center,
+ border,
+ square,
+ gutter,
+ clickable,
+ direction,
+ iconSize,
+ index: children.indexOf(this),
+ columnNum,
+ });
+ },
+ onClick() {
+ this.$emit('click');
+ 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/node_modules/@vant/weapp/dist/grid-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/node_modules/@vant/weapp/dist/grid-item/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/node_modules/@vant/weapp/dist/grid-item/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/node_modules/@vant/weapp/dist/grid-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/node_modules/@vant/weapp/dist/grid-item/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..0070a2bbc617f4508df647957c20bd5a4936a4a1
--- /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/node_modules/@vant/weapp/dist/grid-item/index.wxml"
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ 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/node_modules/@vant/weapp/dist/grid-item/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/node_modules/@vant/weapp/dist/grid-item/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..2cfe37d03ccc8259ffcfb761d6c901027f71cac2
--- /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/node_modules/@vant/weapp/dist/grid-item/index.wxs"
@@ -0,0 +1,32 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function wrapperStyle(data) {
+ var width = 100 / data.columnNum + '%';
+
+ return style({
+ width: width,
+ 'padding-top': data.square ? width : null,
+ 'padding-right': addUnit(data.gutter),
+ 'margin-top':
+ data.index >= data.columnNum && !data.square
+ ? addUnit(data.gutter)
+ : null,
+ });
+}
+
+function contentStyle(data) {
+ return data.square
+ ? style({
+ right: addUnit(data.gutter),
+ bottom: addUnit(data.gutter),
+ height: 'auto',
+ })
+ : '';
+}
+
+module.exports = {
+ wrapperStyle: wrapperStyle,
+ contentStyle: contentStyle,
+};
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/node_modules/@vant/weapp/dist/grid-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/node_modules/@vant/weapp/dist/grid-item/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..ed7facb8e330fa9ec917360063ca9d975de22a0b
--- /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/node_modules/@vant/weapp/dist/grid-item/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-grid-item{position:relative;float:left;box-sizing:border-box}.van-grid-item--square{height:0}.van-grid-item__content{display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;box-sizing:border-box;height:100%;padding:16px 8px;padding:var(--grid-item-content-padding,16px 8px);background-color:#fff;background-color:var(--grid-item-content-background-color,#fff)}.van-grid-item__content:after{z-index:1;border-width:0 1px 1px 0;border-bottom-width:var(--border-width-base,1px);border-right-width:var(--border-width-base,1px);border-top-width:0}.van-grid-item__content--surround:after{border-width:1px;border-width:var(--border-width-base,1px)}.van-grid-item__content--center{-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center}.van-grid-item__content--square{position:absolute;top:0;right:0;left:0}.van-grid-item__content--horizontal{-webkit-flex-direction:row;flex-direction:row}.van-grid-item__content--horizontal .van-grid-item__icon+.van-grid-item__text{margin-top:0;margin-left:8px}.van-grid-item__content--clickable:active{background-color:#f2f3f5;background-color:var(--grid-item-content-active-color,#f2f3f5)}.van-grid-item__icon{display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;font-size:26px;font-size:var(--grid-item-icon-size,26px);height:26px;height:var(--grid-item-icon-size,26px)}.van-grid-item__text{word-wrap:break-word;color:#646566;color:var(--grid-item-text-color,#646566);font-size:12px;font-size:var(--grid-item-text-font-size,12px)}.van-grid-item__icon+.van-grid-item__text{margin-top:8px}
\ 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/node_modules/@vant/weapp/dist/grid/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/grid/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/grid/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/grid/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/node_modules/@vant/weapp/dist/grid/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..73e41cebf0d491963f06e57bf8a6cdb393c7b644
--- /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/node_modules/@vant/weapp/dist/grid/index.js"
@@ -0,0 +1,50 @@
+import { VantComponent } from '../common/component';
+import { useChildren } from '../common/relation';
+VantComponent({
+ relation: useChildren('grid-item'),
+ props: {
+ square: {
+ type: Boolean,
+ observer: 'updateChildren',
+ },
+ gutter: {
+ type: null,
+ value: 0,
+ observer: 'updateChildren',
+ },
+ clickable: {
+ type: Boolean,
+ observer: 'updateChildren',
+ },
+ columnNum: {
+ type: Number,
+ value: 4,
+ observer: 'updateChildren',
+ },
+ center: {
+ type: Boolean,
+ value: true,
+ observer: 'updateChildren',
+ },
+ border: {
+ type: Boolean,
+ value: true,
+ observer: 'updateChildren',
+ },
+ direction: {
+ type: String,
+ observer: 'updateChildren',
+ },
+ iconSize: {
+ type: String,
+ observer: 'updateChildren',
+ },
+ },
+ methods: {
+ updateChildren() {
+ this.children.forEach((child) => {
+ child.updateStyle();
+ });
+ },
+ },
+});
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/node_modules/@vant/weapp/dist/grid/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/node_modules/@vant/weapp/dist/grid/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/node_modules/@vant/weapp/dist/grid/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/node_modules/@vant/weapp/dist/grid/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/node_modules/@vant/weapp/dist/grid/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..2e4118f3583aa3193e488f7121437b4eb176af79
--- /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/node_modules/@vant/weapp/dist/grid/index.wxml"
@@ -0,0 +1,8 @@
+
+
+
+
+
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/node_modules/@vant/weapp/dist/grid/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/node_modules/@vant/weapp/dist/grid/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..cd3b1bd59a948be3912e8051298b63d48f77719b
--- /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/node_modules/@vant/weapp/dist/grid/index.wxs"
@@ -0,0 +1,13 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function rootStyle(data) {
+ return style({
+ 'padding-left': addUnit(data.gutter),
+ });
+}
+
+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/node_modules/@vant/weapp/dist/grid/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/node_modules/@vant/weapp/dist/grid/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..327fc5efd0a95e2527496046f24c6028cf86d7b9
--- /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/node_modules/@vant/weapp/dist/grid/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-grid{position:relative;box-sizing:border-box;overflow:hidden}
\ 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/node_modules/@vant/weapp/dist/icon/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/icon/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/icon/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/icon/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/node_modules/@vant/weapp/dist/icon/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..75f2c946a9a95183da64797a591ee622d8f2634c
--- /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/node_modules/@vant/weapp/dist/icon/index.js"
@@ -0,0 +1,20 @@
+import { VantComponent } from '../common/component';
+VantComponent({
+ props: {
+ dot: Boolean,
+ info: null,
+ size: null,
+ color: String,
+ customStyle: String,
+ classPrefix: {
+ type: String,
+ value: 'van-icon',
+ },
+ name: String,
+ },
+ methods: {
+ onClick() {
+ this.$emit('click');
+ },
+ },
+});
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/node_modules/@vant/weapp/dist/icon/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/node_modules/@vant/weapp/dist/icon/index.json"
new file mode 100644
index 0000000000000000000000000000000000000000..bf0ebe009c3904229ff4005710f4136b55cf57aa
--- /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/node_modules/@vant/weapp/dist/icon/index.json"
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-info": "../info/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/node_modules/@vant/weapp/dist/icon/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/node_modules/@vant/weapp/dist/icon/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..3c701745ba48735071a00b5eae3d9c2975d4a7b6
--- /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/node_modules/@vant/weapp/dist/icon/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/node_modules/@vant/weapp/dist/icon/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/node_modules/@vant/weapp/dist/icon/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..45e3aa0a1f132fbf0bf922943c359b332c667413
--- /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/node_modules/@vant/weapp/dist/icon/index.wxs"
@@ -0,0 +1,39 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function isImage(name) {
+ return name.indexOf('/') !== -1;
+}
+
+function rootClass(data) {
+ var classes = ['custom-class'];
+
+ if (data.classPrefix != null) {
+ classes.push(data.classPrefix);
+ }
+
+ if (isImage(data.name)) {
+ classes.push('van-icon--image');
+ } else if (data.classPrefix != null) {
+ classes.push(data.classPrefix + '-' + data.name);
+ }
+
+ return classes.join(' ');
+}
+
+function rootStyle(data) {
+ return style([
+ {
+ color: data.color,
+ 'font-size': addUnit(data.size),
+ },
+ data.customStyle,
+ ]);
+}
+
+module.exports = {
+ isImage: isImage,
+ rootClass: rootClass,
+ 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/node_modules/@vant/weapp/dist/icon/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/node_modules/@vant/weapp/dist/icon/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..2d5f87998691b472f320d8799321f6469ff4b3c1
--- /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/node_modules/@vant/weapp/dist/icon/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';@font-face{font-weight:400;font-family:vant-icon;font-style:normal;font-display:auto;src:url(https://img01.yzcdn.cn/vant/vant-icon-f463a9.woff2) format("woff2"),url(https://img01.yzcdn.cn/vant/vant-icon-f463a9.woff) format("woff"),url(https://img01.yzcdn.cn/vant/vant-icon-f463a9.ttf) format("truetype")}.van-icon{position:relative;font:normal normal normal 14px/1 vant-icon;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased}.van-icon,.van-icon:before{display:inline-block}.van-icon-add-o:before{content:"\F000"}.van-icon-add-square:before{content:"\F001"}.van-icon-add:before{content:"\F002"}.van-icon-after-sale:before{content:"\F003"}.van-icon-aim:before{content:"\F004"}.van-icon-alipay:before{content:"\F005"}.van-icon-apps-o:before{content:"\F006"}.van-icon-arrow-down:before{content:"\F007"}.van-icon-arrow-left:before{content:"\F008"}.van-icon-arrow-up:before{content:"\F009"}.van-icon-arrow:before{content:"\F00A"}.van-icon-ascending:before{content:"\F00B"}.van-icon-audio:before{content:"\F00C"}.van-icon-award-o:before{content:"\F00D"}.van-icon-award:before{content:"\F00E"}.van-icon-back-top:before{content:"\F0E6"}.van-icon-bag-o:before{content:"\F00F"}.van-icon-bag:before{content:"\F010"}.van-icon-balance-list-o:before{content:"\F011"}.van-icon-balance-list:before{content:"\F012"}.van-icon-balance-o:before{content:"\F013"}.van-icon-balance-pay:before{content:"\F014"}.van-icon-bar-chart-o:before{content:"\F015"}.van-icon-bars:before{content:"\F016"}.van-icon-bell:before{content:"\F017"}.van-icon-bill-o:before{content:"\F018"}.van-icon-bill:before{content:"\F019"}.van-icon-birthday-cake-o:before{content:"\F01A"}.van-icon-bookmark-o:before{content:"\F01B"}.van-icon-bookmark:before{content:"\F01C"}.van-icon-browsing-history-o:before{content:"\F01D"}.van-icon-browsing-history:before{content:"\F01E"}.van-icon-brush-o:before{content:"\F01F"}.van-icon-bulb-o:before{content:"\F020"}.van-icon-bullhorn-o:before{content:"\F021"}.van-icon-calendar-o:before{content:"\F022"}.van-icon-card:before{content:"\F023"}.van-icon-cart-circle-o:before{content:"\F024"}.van-icon-cart-circle:before{content:"\F025"}.van-icon-cart-o:before{content:"\F026"}.van-icon-cart:before{content:"\F027"}.van-icon-cash-back-record:before{content:"\F028"}.van-icon-cash-on-deliver:before{content:"\F029"}.van-icon-cashier-o:before{content:"\F02A"}.van-icon-certificate:before{content:"\F02B"}.van-icon-chart-trending-o:before{content:"\F02C"}.van-icon-chat-o:before{content:"\F02D"}.van-icon-chat:before{content:"\F02E"}.van-icon-checked:before{content:"\F02F"}.van-icon-circle:before{content:"\F030"}.van-icon-clear:before{content:"\F031"}.van-icon-clock-o:before{content:"\F032"}.van-icon-clock:before{content:"\F033"}.van-icon-close:before{content:"\F034"}.van-icon-closed-eye:before{content:"\F035"}.van-icon-cluster-o:before{content:"\F036"}.van-icon-cluster:before{content:"\F037"}.van-icon-column:before{content:"\F038"}.van-icon-comment-circle-o:before{content:"\F039"}.van-icon-comment-circle:before{content:"\F03A"}.van-icon-comment-o:before{content:"\F03B"}.van-icon-comment:before{content:"\F03C"}.van-icon-completed:before{content:"\F03D"}.van-icon-contact:before{content:"\F03E"}.van-icon-coupon-o:before{content:"\F03F"}.van-icon-coupon:before{content:"\F040"}.van-icon-credit-pay:before{content:"\F041"}.van-icon-cross:before{content:"\F042"}.van-icon-debit-pay:before{content:"\F043"}.van-icon-delete-o:before{content:"\F0E9"}.van-icon-delete:before{content:"\F044"}.van-icon-descending:before{content:"\F045"}.van-icon-description:before{content:"\F046"}.van-icon-desktop-o:before{content:"\F047"}.van-icon-diamond-o:before{content:"\F048"}.van-icon-diamond:before{content:"\F049"}.van-icon-discount:before{content:"\F04A"}.van-icon-down:before{content:"\F04B"}.van-icon-ecard-pay:before{content:"\F04C"}.van-icon-edit:before{content:"\F04D"}.van-icon-ellipsis:before{content:"\F04E"}.van-icon-empty:before{content:"\F04F"}.van-icon-enlarge:before{content:"\F0E4"}.van-icon-envelop-o:before{content:"\F050"}.van-icon-exchange:before{content:"\F051"}.van-icon-expand-o:before{content:"\F052"}.van-icon-expand:before{content:"\F053"}.van-icon-eye-o:before{content:"\F054"}.van-icon-eye:before{content:"\F055"}.van-icon-fail:before{content:"\F056"}.van-icon-failure:before{content:"\F057"}.van-icon-filter-o:before{content:"\F058"}.van-icon-fire-o:before{content:"\F059"}.van-icon-fire:before{content:"\F05A"}.van-icon-flag-o:before{content:"\F05B"}.van-icon-flower-o:before{content:"\F05C"}.van-icon-font-o:before{content:"\F0EC"}.van-icon-font:before{content:"\F0EB"}.van-icon-free-postage:before{content:"\F05D"}.van-icon-friends-o:before{content:"\F05E"}.van-icon-friends:before{content:"\F05F"}.van-icon-gem-o:before{content:"\F060"}.van-icon-gem:before{content:"\F061"}.van-icon-gift-card-o:before{content:"\F062"}.van-icon-gift-card:before{content:"\F063"}.van-icon-gift-o:before{content:"\F064"}.van-icon-gift:before{content:"\F065"}.van-icon-gold-coin-o:before{content:"\F066"}.van-icon-gold-coin:before{content:"\F067"}.van-icon-good-job-o:before{content:"\F068"}.van-icon-good-job:before{content:"\F069"}.van-icon-goods-collect-o:before{content:"\F06A"}.van-icon-goods-collect:before{content:"\F06B"}.van-icon-graphic:before{content:"\F06C"}.van-icon-home-o:before{content:"\F06D"}.van-icon-hot-o:before{content:"\F06E"}.van-icon-hot-sale-o:before{content:"\F06F"}.van-icon-hot-sale:before{content:"\F070"}.van-icon-hot:before{content:"\F071"}.van-icon-hotel-o:before{content:"\F072"}.van-icon-idcard:before{content:"\F073"}.van-icon-info-o:before{content:"\F074"}.van-icon-info:before{content:"\F075"}.van-icon-invition:before{content:"\F076"}.van-icon-label-o:before{content:"\F077"}.van-icon-label:before{content:"\F078"}.van-icon-like-o:before{content:"\F079"}.van-icon-like:before{content:"\F07A"}.van-icon-live:before{content:"\F07B"}.van-icon-location-o:before{content:"\F07C"}.van-icon-location:before{content:"\F07D"}.van-icon-lock:before{content:"\F07E"}.van-icon-logistics:before{content:"\F07F"}.van-icon-manager-o:before{content:"\F080"}.van-icon-manager:before{content:"\F081"}.van-icon-map-marked:before{content:"\F082"}.van-icon-medal-o:before{content:"\F083"}.van-icon-medal:before{content:"\F084"}.van-icon-minus:before{content:"\F0E8"}.van-icon-more-o:before{content:"\F085"}.van-icon-more:before{content:"\F086"}.van-icon-music-o:before{content:"\F087"}.van-icon-music:before{content:"\F088"}.van-icon-new-arrival-o:before{content:"\F089"}.van-icon-new-arrival:before{content:"\F08A"}.van-icon-new-o:before{content:"\F08B"}.van-icon-new:before{content:"\F08C"}.van-icon-newspaper-o:before{content:"\F08D"}.van-icon-notes-o:before{content:"\F08E"}.van-icon-orders-o:before{content:"\F08F"}.van-icon-other-pay:before{content:"\F090"}.van-icon-paid:before{content:"\F091"}.van-icon-passed:before{content:"\F092"}.van-icon-pause-circle-o:before{content:"\F093"}.van-icon-pause-circle:before{content:"\F094"}.van-icon-pause:before{content:"\F095"}.van-icon-peer-pay:before{content:"\F096"}.van-icon-pending-payment:before{content:"\F097"}.van-icon-phone-circle-o:before{content:"\F098"}.van-icon-phone-circle:before{content:"\F099"}.van-icon-phone-o:before{content:"\F09A"}.van-icon-phone:before{content:"\F09B"}.van-icon-photo-fail:before{content:"\F0E5"}.van-icon-photo-o:before{content:"\F09C"}.van-icon-photo:before{content:"\F09D"}.van-icon-photograph:before{content:"\F09E"}.van-icon-play-circle-o:before{content:"\F09F"}.van-icon-play-circle:before{content:"\F0A0"}.van-icon-play:before{content:"\F0A1"}.van-icon-plus:before{content:"\F0A2"}.van-icon-point-gift-o:before{content:"\F0A3"}.van-icon-point-gift:before{content:"\F0A4"}.van-icon-points:before{content:"\F0A5"}.van-icon-printer:before{content:"\F0A6"}.van-icon-qr-invalid:before{content:"\F0A7"}.van-icon-qr:before{content:"\F0A8"}.van-icon-question-o:before{content:"\F0A9"}.van-icon-question:before{content:"\F0AA"}.van-icon-records:before{content:"\F0AB"}.van-icon-refund-o:before{content:"\F0AC"}.van-icon-replay:before{content:"\F0AD"}.van-icon-revoke:before{content:"\F0ED"}.van-icon-scan:before{content:"\F0AE"}.van-icon-search:before{content:"\F0AF"}.van-icon-send-gift-o:before{content:"\F0B0"}.van-icon-send-gift:before{content:"\F0B1"}.van-icon-service-o:before{content:"\F0B2"}.van-icon-service:before{content:"\F0B3"}.van-icon-setting-o:before{content:"\F0B4"}.van-icon-setting:before{content:"\F0B5"}.van-icon-share-o:before{content:"\F0E7"}.van-icon-share:before{content:"\F0B6"}.van-icon-shop-collect-o:before{content:"\F0B7"}.van-icon-shop-collect:before{content:"\F0B8"}.van-icon-shop-o:before{content:"\F0B9"}.van-icon-shop:before{content:"\F0BA"}.van-icon-shopping-cart-o:before{content:"\F0BB"}.van-icon-shopping-cart:before{content:"\F0BC"}.van-icon-shrink:before{content:"\F0BD"}.van-icon-sign:before{content:"\F0BE"}.van-icon-smile-comment-o:before{content:"\F0BF"}.van-icon-smile-comment:before{content:"\F0C0"}.van-icon-smile-o:before{content:"\F0C1"}.van-icon-smile:before{content:"\F0C2"}.van-icon-sort:before{content:"\F0EA"}.van-icon-star-o:before{content:"\F0C3"}.van-icon-star:before{content:"\F0C4"}.van-icon-stop-circle-o:before{content:"\F0C5"}.van-icon-stop-circle:before{content:"\F0C6"}.van-icon-stop:before{content:"\F0C7"}.van-icon-success:before{content:"\F0C8"}.van-icon-thumb-circle-o:before{content:"\F0C9"}.van-icon-thumb-circle:before{content:"\F0CA"}.van-icon-todo-list-o:before{content:"\F0CB"}.van-icon-todo-list:before{content:"\F0CC"}.van-icon-tosend:before{content:"\F0CD"}.van-icon-tv-o:before{content:"\F0CE"}.van-icon-umbrella-circle:before{content:"\F0CF"}.van-icon-underway-o:before{content:"\F0D0"}.van-icon-underway:before{content:"\F0D1"}.van-icon-upgrade:before{content:"\F0D2"}.van-icon-user-circle-o:before{content:"\F0D3"}.van-icon-user-o:before{content:"\F0D4"}.van-icon-video-o:before{content:"\F0D5"}.van-icon-video:before{content:"\F0D6"}.van-icon-vip-card-o:before{content:"\F0D7"}.van-icon-vip-card:before{content:"\F0D8"}.van-icon-volume-o:before{content:"\F0D9"}.van-icon-volume:before{content:"\F0DA"}.van-icon-wap-home-o:before{content:"\F0DB"}.van-icon-wap-home:before{content:"\F0DC"}.van-icon-wap-nav:before{content:"\F0DD"}.van-icon-warn-o:before{content:"\F0DE"}.van-icon-warning-o:before{content:"\F0DF"}.van-icon-warning:before{content:"\F0E0"}.van-icon-weapp-nav:before{content:"\F0E1"}.van-icon-wechat-pay:before{content:"\F0E2"}.van-icon-wechat:before{content:"\F0EE"}.van-icon-youzan-shield:before{content:"\F0E3"}:host{display:-webkit-inline-flex;display:inline-flex;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center}.van-icon--image{width:1em;height:1em}.van-icon__image{width:100%;height:100%}.van-icon__info{z-index:1}
\ 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/node_modules/@vant/weapp/dist/image/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/image/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/image/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/image/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/node_modules/@vant/weapp/dist/image/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..9972cb5aa0dd498b54ee0621859e0861ec345930
--- /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/node_modules/@vant/weapp/dist/image/index.js"
@@ -0,0 +1,61 @@
+import { VantComponent } from '../common/component';
+import { button } from '../mixins/button';
+import { openType } from '../mixins/open-type';
+VantComponent({
+ mixins: [button, openType],
+ classes: ['custom-class', 'loading-class', 'error-class', 'image-class'],
+ props: {
+ src: {
+ type: String,
+ observer() {
+ this.setData({
+ error: false,
+ loading: true,
+ });
+ },
+ },
+ round: Boolean,
+ width: null,
+ height: null,
+ radius: null,
+ lazyLoad: Boolean,
+ useErrorSlot: Boolean,
+ useLoadingSlot: Boolean,
+ showMenuByLongpress: Boolean,
+ fit: {
+ type: String,
+ value: 'fill',
+ },
+ showError: {
+ type: Boolean,
+ value: true,
+ },
+ showLoading: {
+ type: Boolean,
+ value: true,
+ },
+ },
+ data: {
+ error: false,
+ loading: true,
+ viewStyle: '',
+ },
+ methods: {
+ onLoad(event) {
+ this.setData({
+ loading: false,
+ });
+ this.$emit('load', event.detail);
+ },
+ onError(event) {
+ this.setData({
+ loading: false,
+ error: true,
+ });
+ this.$emit('error', event.detail);
+ },
+ onClick(event) {
+ this.$emit('click', event.detail);
+ },
+ },
+});
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/node_modules/@vant/weapp/dist/image/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/node_modules/@vant/weapp/dist/image/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/node_modules/@vant/weapp/dist/image/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/node_modules/@vant/weapp/dist/image/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/node_modules/@vant/weapp/dist/image/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..d3092bd927962f5e9b8efecdbfd45d1fec8d1047
--- /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/node_modules/@vant/weapp/dist/image/index.wxml"
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
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/node_modules/@vant/weapp/dist/image/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/node_modules/@vant/weapp/dist/image/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..cec14b8ba8ad2401e523469e2c7cc98c76f7e7d4
--- /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/node_modules/@vant/weapp/dist/image/index.wxs"
@@ -0,0 +1,32 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function rootStyle(data) {
+ return style([
+ {
+ width: addUnit(data.width),
+ height: addUnit(data.height),
+ 'border-radius': addUnit(data.radius),
+ },
+ data.radius ? 'overflow: hidden' : null,
+ ]);
+}
+
+var FIT_MODE_MAP = {
+ none: 'center',
+ fill: 'scaleToFill',
+ cover: 'aspectFill',
+ contain: 'aspectFit',
+ widthFix: 'widthFix',
+ heightFix: 'heightFix',
+};
+
+function mode(fit) {
+ return FIT_MODE_MAP[fit];
+}
+
+module.exports = {
+ rootStyle: rootStyle,
+ mode: mode,
+};
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/node_modules/@vant/weapp/dist/image/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/node_modules/@vant/weapp/dist/image/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..47589109a83a5981d73282c131ccd242976037c2
--- /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/node_modules/@vant/weapp/dist/image/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-image{position:relative;display:inline-block}.van-image--round{overflow:hidden;border-radius:50%}.van-image--round .van-image__img{border-radius:inherit}.van-image__error,.van-image__img,.van-image__loading{display:block;width:100%;height:100%}.van-image__error,.van-image__loading{position:absolute;top:0;left:0;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;color:#969799;color:var(--image-placeholder-text-color,#969799);font-size:14px;font-size:var(--image-placeholder-font-size,14px);background-color:#f7f8fa;background-color:var(--image-placeholder-background-color,#f7f8fa)}.van-image__loading-icon{color:#dcdee0;color:var(--image-loading-icon-color,#dcdee0);font-size:32px!important;font-size:var(--image-loading-icon-size,32px)!important}.van-image__error-icon{color:#dcdee0;color:var(--image-error-icon-color,#dcdee0);font-size:32px!important;font-size:var(--image-error-icon-size,32px)!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/node_modules/@vant/weapp/dist/index-anchor/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/index-anchor/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/index-anchor/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/index-anchor/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/node_modules/@vant/weapp/dist/index-anchor/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..7d81508f15e06a36c85e8064069659ef932a0acc
--- /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/node_modules/@vant/weapp/dist/index-anchor/index.js"
@@ -0,0 +1,25 @@
+import { getRect } from '../common/utils';
+import { VantComponent } from '../common/component';
+import { useParent } from '../common/relation';
+VantComponent({
+ relation: useParent('index-bar'),
+ props: {
+ useSlot: Boolean,
+ index: null,
+ },
+ data: {
+ active: false,
+ wrapperStyle: '',
+ anchorStyle: '',
+ },
+ methods: {
+ scrollIntoView(scrollTop) {
+ getRect(this, '.van-index-anchor-wrapper').then((rect) => {
+ wx.pageScrollTo({
+ duration: 0,
+ scrollTop: scrollTop + rect.top - this.parent.data.stickyOffsetTop,
+ });
+ });
+ },
+ },
+});
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/node_modules/@vant/weapp/dist/index-anchor/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/node_modules/@vant/weapp/dist/index-anchor/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/node_modules/@vant/weapp/dist/index-anchor/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/node_modules/@vant/weapp/dist/index-anchor/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/node_modules/@vant/weapp/dist/index-anchor/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..49affa7c456f035d7698b11e94f2c11294ed4c97
--- /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/node_modules/@vant/weapp/dist/index-anchor/index.wxml"
@@ -0,0 +1,14 @@
+
+
+
+
+ {{ 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/node_modules/@vant/weapp/dist/index-anchor/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/node_modules/@vant/weapp/dist/index-anchor/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..b8c3c0a48f9e0cfe5d4871038bb5daed1a02a298
--- /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/node_modules/@vant/weapp/dist/index-anchor/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-index-anchor{padding:0 16px;padding:var(--index-anchor-padding,0 16px);color:#323233;color:var(--index-anchor-text-color,#323233);font-weight:500;font-weight:var(--index-anchor-font-weight,500);font-size:14px;font-size:var(--index-anchor-font-size,14px);line-height:32px;line-height:var(--index-anchor-line-height,32px);background-color:initial;background-color:var(--index-anchor-background-color,transparent)}.van-index-anchor--active{right:0;left:0;color:#07c160;color:var(--index-anchor-active-text-color,#07c160);background-color:#fff;background-color:var(--index-anchor-active-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/node_modules/@vant/weapp/dist/index-bar/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/index-bar/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/index-bar/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/index-bar/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/node_modules/@vant/weapp/dist/index-bar/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..c092f121359154866afd2e4ff552aa0b73c4dc58
--- /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/node_modules/@vant/weapp/dist/index-bar/index.js"
@@ -0,0 +1,245 @@
+import { GREEN } from '../common/color';
+import { VantComponent } from '../common/component';
+import { useChildren } from '../common/relation';
+import { getRect } from '../common/utils';
+import { pageScrollMixin } from '../mixins/page-scroll';
+const indexList = () => {
+ const indexList = [];
+ const charCodeOfA = 'A'.charCodeAt(0);
+ for (let i = 0; i < 26; i++) {
+ indexList.push(String.fromCharCode(charCodeOfA + i));
+ }
+ return indexList;
+};
+VantComponent({
+ relation: useChildren('index-anchor', function () {
+ this.updateData();
+ }),
+ props: {
+ sticky: {
+ type: Boolean,
+ value: true,
+ },
+ zIndex: {
+ type: Number,
+ value: 1,
+ },
+ highlightColor: {
+ type: String,
+ value: GREEN,
+ },
+ stickyOffsetTop: {
+ type: Number,
+ value: 0,
+ },
+ indexList: {
+ type: Array,
+ value: indexList(),
+ },
+ },
+ mixins: [
+ pageScrollMixin(function (event) {
+ this.scrollTop =
+ (event === null || event === void 0 ? void 0 : event.scrollTop) || 0;
+ this.onScroll();
+ }),
+ ],
+ data: {
+ activeAnchorIndex: null,
+ showSidebar: false,
+ },
+ created() {
+ this.scrollTop = 0;
+ },
+ methods: {
+ updateData() {
+ wx.nextTick(() => {
+ if (this.timer != null) {
+ clearTimeout(this.timer);
+ }
+ this.timer = setTimeout(() => {
+ this.setData({
+ showSidebar: !!this.children.length,
+ });
+ this.setRect().then(() => {
+ this.onScroll();
+ });
+ }, 0);
+ });
+ },
+ setRect() {
+ return Promise.all([
+ this.setAnchorsRect(),
+ this.setListRect(),
+ this.setSiderbarRect(),
+ ]);
+ },
+ setAnchorsRect() {
+ return Promise.all(
+ this.children.map((anchor) =>
+ getRect(anchor, '.van-index-anchor-wrapper').then((rect) => {
+ Object.assign(anchor, {
+ height: rect.height,
+ top: rect.top + this.scrollTop,
+ });
+ })
+ )
+ );
+ },
+ setListRect() {
+ return getRect(this, '.van-index-bar').then((rect) => {
+ Object.assign(this, {
+ height: rect.height,
+ top: rect.top + this.scrollTop,
+ });
+ });
+ },
+ setSiderbarRect() {
+ return getRect(this, '.van-index-bar__sidebar').then((res) => {
+ this.sidebar = {
+ height: res.height,
+ top: res.top,
+ };
+ });
+ },
+ setDiffData({ target, data }) {
+ const diffData = {};
+ Object.keys(data).forEach((key) => {
+ if (target.data[key] !== data[key]) {
+ diffData[key] = data[key];
+ }
+ });
+ if (Object.keys(diffData).length) {
+ target.setData(diffData);
+ }
+ },
+ getAnchorRect(anchor) {
+ return getRect(anchor, '.van-index-anchor-wrapper').then((rect) => ({
+ height: rect.height,
+ top: rect.top,
+ }));
+ },
+ getActiveAnchorIndex() {
+ const { children, scrollTop } = this;
+ const { sticky, stickyOffsetTop } = this.data;
+ for (let i = this.children.length - 1; i >= 0; i--) {
+ const preAnchorHeight = i > 0 ? children[i - 1].height : 0;
+ const reachTop = sticky ? preAnchorHeight + stickyOffsetTop : 0;
+ if (reachTop + scrollTop >= children[i].top) {
+ return i;
+ }
+ }
+ return -1;
+ },
+ onScroll() {
+ const { children = [], scrollTop } = this;
+ if (!children.length) {
+ return;
+ }
+ const { sticky, stickyOffsetTop, zIndex, highlightColor } = this.data;
+ const active = this.getActiveAnchorIndex();
+ this.setDiffData({
+ target: this,
+ data: {
+ activeAnchorIndex: active,
+ },
+ });
+ if (sticky) {
+ let isActiveAnchorSticky = false;
+ if (active !== -1) {
+ isActiveAnchorSticky =
+ children[active].top <= stickyOffsetTop + scrollTop;
+ }
+ children.forEach((item, index) => {
+ if (index === active) {
+ let wrapperStyle = '';
+ let anchorStyle = `
+ color: ${highlightColor};
+ `;
+ if (isActiveAnchorSticky) {
+ wrapperStyle = `
+ height: ${children[index].height}px;
+ `;
+ anchorStyle = `
+ position: fixed;
+ top: ${stickyOffsetTop}px;
+ z-index: ${zIndex};
+ color: ${highlightColor};
+ `;
+ }
+ this.setDiffData({
+ target: item,
+ data: {
+ active: true,
+ anchorStyle,
+ wrapperStyle,
+ },
+ });
+ } else if (index === active - 1) {
+ const currentAnchor = children[index];
+ const currentOffsetTop = currentAnchor.top;
+ const targetOffsetTop =
+ index === children.length - 1
+ ? this.top
+ : children[index + 1].top;
+ const parentOffsetHeight = targetOffsetTop - currentOffsetTop;
+ const translateY = parentOffsetHeight - currentAnchor.height;
+ const anchorStyle = `
+ position: relative;
+ transform: translate3d(0, ${translateY}px, 0);
+ z-index: ${zIndex};
+ color: ${highlightColor};
+ `;
+ this.setDiffData({
+ target: item,
+ data: {
+ active: true,
+ anchorStyle,
+ },
+ });
+ } else {
+ this.setDiffData({
+ target: item,
+ data: {
+ active: false,
+ anchorStyle: '',
+ wrapperStyle: '',
+ },
+ });
+ }
+ });
+ }
+ },
+ onClick(event) {
+ this.scrollToAnchor(event.target.dataset.index);
+ },
+ onTouchMove(event) {
+ const sidebarLength = this.children.length;
+ const touch = event.touches[0];
+ const itemHeight = this.sidebar.height / sidebarLength;
+ let index = Math.floor((touch.clientY - this.sidebar.top) / itemHeight);
+ if (index < 0) {
+ index = 0;
+ } else if (index > sidebarLength - 1) {
+ index = sidebarLength - 1;
+ }
+ this.scrollToAnchor(index);
+ },
+ onTouchStop() {
+ this.scrollToAnchorIndex = null;
+ },
+ scrollToAnchor(index) {
+ if (typeof index !== 'number' || this.scrollToAnchorIndex === index) {
+ return;
+ }
+ this.scrollToAnchorIndex = index;
+ const anchor = this.children.find(
+ (item) => item.data.index === this.data.indexList[index]
+ );
+ if (anchor) {
+ anchor.scrollIntoView(this.scrollTop);
+ this.$emit('select', anchor.data.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/node_modules/@vant/weapp/dist/index-bar/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/node_modules/@vant/weapp/dist/index-bar/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/node_modules/@vant/weapp/dist/index-bar/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/node_modules/@vant/weapp/dist/index-bar/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/node_modules/@vant/weapp/dist/index-bar/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..19a59cf9d4b29e1a17e0d70fb082b0d6e4efb901
--- /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/node_modules/@vant/weapp/dist/index-bar/index.wxml"
@@ -0,0 +1,22 @@
+
+
+
+
+
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/node_modules/@vant/weapp/dist/index-bar/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/node_modules/@vant/weapp/dist/index-bar/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..dba5dc071f0a5c048806a8b1ee7b17a14a6e0651
--- /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/node_modules/@vant/weapp/dist/index-bar/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-index-bar{position:relative}.van-index-bar__sidebar{position:fixed;top:50%;right:0;display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;text-align:center;-webkit-transform:translateY(-50%);transform:translateY(-50%);-webkit-user-select:none;user-select:none}.van-index-bar__index{font-weight:500;padding:0 4px 0 16px;padding:0 var(--padding-base,4px) 0 var(--padding-md,16px);font-size:10px;font-size:var(--index-bar-index-font-size,10px);line-height:14px;line-height:var(--index-bar-index-line-height,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/node_modules/@vant/weapp/dist/info/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/info/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/info/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/info/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/node_modules/@vant/weapp/dist/info/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..489f39cba746fae47834f0d5a99f77be074a097a
--- /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/node_modules/@vant/weapp/dist/info/index.js"
@@ -0,0 +1,8 @@
+import { VantComponent } from '../common/component';
+VantComponent({
+ props: {
+ dot: Boolean,
+ info: null,
+ 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/node_modules/@vant/weapp/dist/info/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/node_modules/@vant/weapp/dist/info/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/node_modules/@vant/weapp/dist/info/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/node_modules/@vant/weapp/dist/info/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/node_modules/@vant/weapp/dist/info/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..b39b52459903981d61ff38bd135cb7eda703df5b
--- /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/node_modules/@vant/weapp/dist/info/index.wxml"
@@ -0,0 +1,7 @@
+
+
+{{ dot ? '' : info }}
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/node_modules/@vant/weapp/dist/info/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/node_modules/@vant/weapp/dist/info/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..953136a585f38379fa646445698d5ffe7fcb1a74
--- /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/node_modules/@vant/weapp/dist/info/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-info{position:absolute;top:0;right:0;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;white-space:nowrap;-webkit-transform:translate(50%,-50%);transform:translate(50%,-50%);-webkit-transform-origin:100%;transform-origin:100%;height:16px;height:var(--info-size,16px);min-width:16px;min-width:var(--info-size,16px);padding:0 3px;padding:var(--info-padding,0 3px);color:#fff;color:var(--info-color,#fff);font-weight:500;font-weight:var(--info-font-weight,500);font-size:12px;font-size:var(--info-font-size,12px);font-family:-apple-system-font,Helvetica Neue,Arial,sans-serif;font-family:var(--info-font-family,-apple-system-font,Helvetica Neue,Arial,sans-serif);background-color:#ee0a24;background-color:var(--info-background-color,#ee0a24);border:1px solid #fff;border:var(--info-border-width,1px) solid var(--white,#fff);border-radius:16px;border-radius:var(--info-size,16px)}.van-info--dot{min-width:0;border-radius:100%;width:8px;width:var(--info-dot-size,8px);height:8px;height:var(--info-dot-size,8px);background-color:#ee0a24;background-color:var(--info-dot-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/node_modules/@vant/weapp/dist/loading/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/loading/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/loading/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/loading/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/node_modules/@vant/weapp/dist/loading/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..2049447c2f0e8c48f41614f440f1e38c3fbef23f
--- /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/node_modules/@vant/weapp/dist/loading/index.js"
@@ -0,0 +1,16 @@
+import { VantComponent } from '../common/component';
+VantComponent({
+ props: {
+ color: String,
+ vertical: Boolean,
+ type: {
+ type: String,
+ value: 'circular',
+ },
+ size: String,
+ textSize: String,
+ },
+ data: {
+ array12: Array.from({ length: 12 }),
+ },
+});
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/node_modules/@vant/weapp/dist/loading/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/node_modules/@vant/weapp/dist/loading/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/node_modules/@vant/weapp/dist/loading/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/node_modules/@vant/weapp/dist/loading/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/node_modules/@vant/weapp/dist/loading/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..7d4a5397bb1347c5530b6f977cb7fd1fdf29b460
--- /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/node_modules/@vant/weapp/dist/loading/index.wxml"
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
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/node_modules/@vant/weapp/dist/loading/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/node_modules/@vant/weapp/dist/loading/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..02a0b800c651e55938ecc3ee12d10e37b3782614
--- /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/node_modules/@vant/weapp/dist/loading/index.wxs"
@@ -0,0 +1,22 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function spinnerStyle(data) {
+ return style({
+ color: data.color,
+ width: addUnit(data.size),
+ height: addUnit(data.size),
+ });
+}
+
+function textStyle(data) {
+ return style({
+ 'font-size': addUnit(data.textSize),
+ });
+}
+
+module.exports = {
+ spinnerStyle: spinnerStyle,
+ textStyle: textStyle,
+};
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/node_modules/@vant/weapp/dist/loading/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/node_modules/@vant/weapp/dist/loading/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..f28a6b46fd4eac7258261e5ef72f692d75341394
--- /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/node_modules/@vant/weapp/dist/loading/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';:host{font-size:0;line-height:1}.van-loading{display:-webkit-inline-flex;display:inline-flex;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center;color:#c8c9cc;color:var(--loading-spinner-color,#c8c9cc)}.van-loading__spinner{position:relative;box-sizing:border-box;width:30px;width:var(--loading-spinner-size,30px);max-width:100%;max-height:100%;height:30px;height:var(--loading-spinner-size,30px);-webkit-animation:van-rotate .8s linear infinite;animation:van-rotate .8s linear infinite;-webkit-animation:van-rotate var(--loading-spinner-animation-duration,.8s) linear infinite;animation:van-rotate var(--loading-spinner-animation-duration,.8s) linear infinite}.van-loading__spinner--spinner{-webkit-animation-timing-function:steps(12);animation-timing-function:steps(12)}.van-loading__spinner--circular{border:1px solid transparent;border-top-color:initial;border-radius:100%}.van-loading__text{margin-left:8px;margin-left:var(--padding-xs,8px);color:#969799;color:var(--loading-text-color,#969799);font-size:14px;font-size:var(--loading-text-font-size,14px);line-height:20px;line-height:var(--loading-text-line-height,20px)}.van-loading__text:empty{display:none}.van-loading--vertical{-webkit-flex-direction:column;flex-direction:column}.van-loading--vertical .van-loading__text{margin:8px 0 0;margin:var(--padding-xs,8px) 0 0}.van-loading__dot{position:absolute;top:0;left:0;width:100%;height:100%}.van-loading__dot:before{display:block;width:2px;height:25%;margin:0 auto;background-color:currentColor;border-radius:40%;content:" "}.van-loading__dot:first-of-type{-webkit-transform:rotate(30deg);transform:rotate(30deg);opacity:1}.van-loading__dot:nth-of-type(2){-webkit-transform:rotate(60deg);transform:rotate(60deg);opacity:.9375}.van-loading__dot:nth-of-type(3){-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:.875}.van-loading__dot:nth-of-type(4){-webkit-transform:rotate(120deg);transform:rotate(120deg);opacity:.8125}.van-loading__dot:nth-of-type(5){-webkit-transform:rotate(150deg);transform:rotate(150deg);opacity:.75}.van-loading__dot:nth-of-type(6){-webkit-transform:rotate(180deg);transform:rotate(180deg);opacity:.6875}.van-loading__dot:nth-of-type(7){-webkit-transform:rotate(210deg);transform:rotate(210deg);opacity:.625}.van-loading__dot:nth-of-type(8){-webkit-transform:rotate(240deg);transform:rotate(240deg);opacity:.5625}.van-loading__dot:nth-of-type(9){-webkit-transform:rotate(270deg);transform:rotate(270deg);opacity:.5}.van-loading__dot:nth-of-type(10){-webkit-transform:rotate(300deg);transform:rotate(300deg);opacity:.4375}.van-loading__dot:nth-of-type(11){-webkit-transform:rotate(330deg);transform:rotate(330deg);opacity:.375}.van-loading__dot:nth-of-type(12){-webkit-transform:rotate(1turn);transform:rotate(1turn);opacity:.3125}@-webkit-keyframes van-rotate{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes van-rotate{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}
\ 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/node_modules/@vant/weapp/dist/mixins/basic.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/mixins/basic.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..b273369000f6e6bf52f7934d65fc62097909c85f
--- /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/node_modules/@vant/weapp/dist/mixins/basic.d.ts"
@@ -0,0 +1 @@
+export declare const basic: 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/node_modules/@vant/weapp/dist/mixins/basic.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/node_modules/@vant/weapp/dist/mixins/basic.js"
new file mode 100644
index 0000000000000000000000000000000000000000..9c59dc3077b63e784937567a05f9e2b9c95d51f1
--- /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/node_modules/@vant/weapp/dist/mixins/basic.js"
@@ -0,0 +1,11 @@
+export const basic = Behavior({
+ methods: {
+ $emit(name, detail, options) {
+ this.triggerEvent(name, detail, options);
+ },
+ set(data) {
+ this.setData(data);
+ return new Promise((resolve) => wx.nextTick(resolve));
+ },
+ },
+});
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/node_modules/@vant/weapp/dist/mixins/button.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/mixins/button.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..b51db875930c7926639ca56610fbeb66ce84e639
--- /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/node_modules/@vant/weapp/dist/mixins/button.d.ts"
@@ -0,0 +1 @@
+export declare const button: 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/node_modules/@vant/weapp/dist/mixins/button.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/node_modules/@vant/weapp/dist/mixins/button.js"
new file mode 100644
index 0000000000000000000000000000000000000000..732fa5cfb0a65c4cf8cb16c28f54edb82ad47f83
--- /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/node_modules/@vant/weapp/dist/mixins/button.js"
@@ -0,0 +1,15 @@
+export const button = Behavior({
+ externalClasses: ['hover-class'],
+ properties: {
+ id: String,
+ lang: String,
+ businessId: Number,
+ sessionFrom: String,
+ sendMessageTitle: String,
+ sendMessagePath: String,
+ sendMessageImg: String,
+ showMessageCard: Boolean,
+ appParameter: String,
+ ariaLabel: 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/node_modules/@vant/weapp/dist/mixins/link.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/mixins/link.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..d58043bc25e7d88c6982bf203ac10fd051dbf265
--- /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/node_modules/@vant/weapp/dist/mixins/link.d.ts"
@@ -0,0 +1 @@
+export declare const link: 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/node_modules/@vant/weapp/dist/mixins/link.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/node_modules/@vant/weapp/dist/mixins/link.js"
new file mode 100644
index 0000000000000000000000000000000000000000..4612e34058f03270e2b663f2efb0b7a8c5a44809
--- /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/node_modules/@vant/weapp/dist/mixins/link.js"
@@ -0,0 +1,24 @@
+export const link = Behavior({
+ properties: {
+ url: String,
+ linkType: {
+ type: String,
+ value: 'navigateTo',
+ },
+ },
+ methods: {
+ jumpLink(urlKey = 'url') {
+ const url = this.data[urlKey];
+ if (url) {
+ if (
+ this.data.linkType === 'navigateTo' &&
+ getCurrentPages().length > 9
+ ) {
+ wx.redirectTo({ url });
+ } else {
+ wx[this.data.linkType]({ url });
+ }
+ }
+ },
+ },
+});
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/node_modules/@vant/weapp/dist/mixins/open-type.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/mixins/open-type.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..64b023d7841b3d2c2961c5a61a41a7167b526877
--- /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/node_modules/@vant/weapp/dist/mixins/open-type.d.ts"
@@ -0,0 +1 @@
+export declare const openType: 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/node_modules/@vant/weapp/dist/mixins/open-type.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/node_modules/@vant/weapp/dist/mixins/open-type.js"
new file mode 100644
index 0000000000000000000000000000000000000000..87219d9cb26661b5a07aa2d58fdcdcaa7c4c0ae3
--- /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/node_modules/@vant/weapp/dist/mixins/open-type.js"
@@ -0,0 +1,26 @@
+// @ts-nocheck
+export const openType = Behavior({
+ properties: {
+ openType: String,
+ },
+ methods: {
+ bindGetUserInfo(event) {
+ this.$emit('getuserinfo', event.detail);
+ },
+ bindContact(event) {
+ this.$emit('contact', event.detail);
+ },
+ bindGetPhoneNumber(event) {
+ this.$emit('getphonenumber', event.detail);
+ },
+ bindError(event) {
+ this.$emit('error', event.detail);
+ },
+ bindLaunchApp(event) {
+ this.$emit('launchapp', event.detail);
+ },
+ bindOpenSetting(event) {
+ this.$emit('opensetting', event.detail);
+ },
+ },
+});
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/node_modules/@vant/weapp/dist/mixins/page-scroll.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/mixins/page-scroll.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..a76f542c968fa24950a38f9aa57941c364666d4b
--- /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/node_modules/@vant/weapp/dist/mixins/page-scroll.d.ts"
@@ -0,0 +1,8 @@
+///
+declare type IPageScrollOption = WechatMiniprogram.Page.IPageScrollOption;
+declare type Scroller = (
+ this: WechatMiniprogram.Component.TrivialInstance,
+ event?: IPageScrollOption
+) => void;
+export declare const pageScrollMixin: (scroller: Scroller) => string;
+export {};
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/node_modules/@vant/weapp/dist/mixins/page-scroll.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/node_modules/@vant/weapp/dist/mixins/page-scroll.js"
new file mode 100644
index 0000000000000000000000000000000000000000..9e4a5f366d24b7193f4be77c6c7d5a17ecadfd57
--- /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/node_modules/@vant/weapp/dist/mixins/page-scroll.js"
@@ -0,0 +1,33 @@
+import { getCurrentPage } from '../common/utils';
+function onPageScroll(event) {
+ const { vanPageScroller = [] } = getCurrentPage();
+ vanPageScroller.forEach((scroller) => {
+ if (typeof scroller === 'function') {
+ // @ts-ignore
+ scroller(event);
+ }
+ });
+}
+export const pageScrollMixin = (scroller) =>
+ Behavior({
+ attached() {
+ const page = getCurrentPage();
+ if (Array.isArray(page.vanPageScroller)) {
+ page.vanPageScroller.push(scroller.bind(this));
+ } else {
+ page.vanPageScroller =
+ typeof page.onPageScroll === 'function'
+ ? [page.onPageScroll.bind(page), scroller.bind(this)]
+ : [scroller.bind(this)];
+ }
+ page.onPageScroll = onPageScroll;
+ },
+ detached() {
+ var _a;
+ const page = getCurrentPage();
+ page.vanPageScroller =
+ ((_a = page.vanPageScroller) === null || _a === void 0
+ ? void 0
+ : _a.filter((item) => item !== scroller)) || [];
+ },
+ });
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/node_modules/@vant/weapp/dist/mixins/touch.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/mixins/touch.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..35ee831d9a0feb9a56a516ff5d6c12c110c0eca0
--- /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/node_modules/@vant/weapp/dist/mixins/touch.d.ts"
@@ -0,0 +1 @@
+export declare const touch: 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/node_modules/@vant/weapp/dist/mixins/touch.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/node_modules/@vant/weapp/dist/mixins/touch.js"
new file mode 100644
index 0000000000000000000000000000000000000000..c6e94c31a70d3eed33c625e228113f5bda42f19b
--- /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/node_modules/@vant/weapp/dist/mixins/touch.js"
@@ -0,0 +1,37 @@
+// @ts-nocheck
+const MIN_DISTANCE = 10;
+function getDirection(x, y) {
+ if (x > y && x > MIN_DISTANCE) {
+ return 'horizontal';
+ }
+ if (y > x && y > MIN_DISTANCE) {
+ return 'vertical';
+ }
+ return '';
+}
+export const touch = Behavior({
+ methods: {
+ resetTouchStatus() {
+ this.direction = '';
+ this.deltaX = 0;
+ this.deltaY = 0;
+ this.offsetX = 0;
+ this.offsetY = 0;
+ },
+ touchStart(event) {
+ this.resetTouchStatus();
+ const touch = event.touches[0];
+ this.startX = touch.clientX;
+ this.startY = touch.clientY;
+ },
+ touchMove(event) {
+ const touch = event.touches[0];
+ this.deltaX = touch.clientX - this.startX;
+ this.deltaY = touch.clientY - this.startY;
+ this.offsetX = Math.abs(this.deltaX);
+ this.offsetY = Math.abs(this.deltaY);
+ this.direction =
+ this.direction || getDirection(this.offsetX, this.offsetY);
+ },
+ },
+});
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/node_modules/@vant/weapp/dist/mixins/transition.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/mixins/transition.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..dd829e5c9f88673fffac7cce28bcff9e9165a613
--- /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/node_modules/@vant/weapp/dist/mixins/transition.d.ts"
@@ -0,0 +1 @@
+export declare function transition(showDefaultValue: boolean): 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/node_modules/@vant/weapp/dist/mixins/transition.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/node_modules/@vant/weapp/dist/mixins/transition.js"
new file mode 100644
index 0000000000000000000000000000000000000000..3b3ec774aea8277ed111a4dc9b1ab877958eca08
--- /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/node_modules/@vant/weapp/dist/mixins/transition.js"
@@ -0,0 +1,115 @@
+// @ts-nocheck
+import { requestAnimationFrame } from '../common/utils';
+import { isObj } from '../common/validator';
+const getClassNames = (name) => ({
+ enter: `van-${name}-enter van-${name}-enter-active enter-class enter-active-class`,
+ 'enter-to': `van-${name}-enter-to van-${name}-enter-active enter-to-class enter-active-class`,
+ leave: `van-${name}-leave van-${name}-leave-active leave-class leave-active-class`,
+ 'leave-to': `van-${name}-leave-to van-${name}-leave-active leave-to-class leave-active-class`,
+});
+export function transition(showDefaultValue) {
+ return Behavior({
+ properties: {
+ customStyle: String,
+ // @ts-ignore
+ show: {
+ type: Boolean,
+ value: showDefaultValue,
+ observer: 'observeShow',
+ },
+ // @ts-ignore
+ duration: {
+ type: null,
+ value: 300,
+ observer: 'observeDuration',
+ },
+ name: {
+ type: String,
+ value: 'fade',
+ },
+ },
+ data: {
+ type: '',
+ inited: false,
+ display: false,
+ },
+ ready() {
+ if (this.data.show === true) {
+ this.observeShow(true, false);
+ }
+ },
+ methods: {
+ observeShow(value, old) {
+ if (value === old) {
+ return;
+ }
+ value ? this.enter() : this.leave();
+ },
+ enter() {
+ const { duration, name } = this.data;
+ const classNames = getClassNames(name);
+ const currentDuration = isObj(duration) ? duration.enter : duration;
+ this.status = 'enter';
+ this.$emit('before-enter');
+ requestAnimationFrame(() => {
+ if (this.status !== 'enter') {
+ return;
+ }
+ this.$emit('enter');
+ this.setData({
+ inited: true,
+ display: true,
+ classes: classNames.enter,
+ currentDuration,
+ });
+ requestAnimationFrame(() => {
+ if (this.status !== 'enter') {
+ return;
+ }
+ this.transitionEnded = false;
+ this.setData({ classes: classNames['enter-to'] });
+ });
+ });
+ },
+ leave() {
+ if (!this.data.display) {
+ return;
+ }
+ const { duration, name } = this.data;
+ const classNames = getClassNames(name);
+ const currentDuration = isObj(duration) ? duration.leave : duration;
+ this.status = 'leave';
+ this.$emit('before-leave');
+ requestAnimationFrame(() => {
+ if (this.status !== 'leave') {
+ return;
+ }
+ this.$emit('leave');
+ this.setData({
+ classes: classNames.leave,
+ currentDuration,
+ });
+ requestAnimationFrame(() => {
+ if (this.status !== 'leave') {
+ return;
+ }
+ this.transitionEnded = false;
+ setTimeout(() => this.onTransitionEnd(), currentDuration);
+ this.setData({ classes: classNames['leave-to'] });
+ });
+ });
+ },
+ onTransitionEnd() {
+ if (this.transitionEnded) {
+ return;
+ }
+ this.transitionEnded = true;
+ this.$emit(`after-${this.status}`);
+ const { show, display } = this.data;
+ if (!show && display) {
+ this.setData({ display: false });
+ }
+ },
+ },
+ });
+}
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/node_modules/@vant/weapp/dist/nav-bar/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/nav-bar/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/nav-bar/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/nav-bar/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/node_modules/@vant/weapp/dist/nav-bar/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..b620a5dd1f818e94eb893c5bd8f4b2b76aecd3a9
--- /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/node_modules/@vant/weapp/dist/nav-bar/index.js"
@@ -0,0 +1,65 @@
+import { VantComponent } from '../common/component';
+import { getRect, getSystemInfoSync } from '../common/utils';
+VantComponent({
+ classes: ['title-class'],
+ props: {
+ title: String,
+ fixed: {
+ type: Boolean,
+ observer: 'setHeight',
+ },
+ placeholder: {
+ type: Boolean,
+ observer: 'setHeight',
+ },
+ leftText: String,
+ rightText: String,
+ customStyle: String,
+ leftArrow: Boolean,
+ border: {
+ type: Boolean,
+ value: true,
+ },
+ zIndex: {
+ type: Number,
+ value: 1,
+ },
+ safeAreaInsetTop: {
+ type: Boolean,
+ value: true,
+ },
+ },
+ data: {
+ height: 46,
+ },
+ created() {
+ const { statusBarHeight } = getSystemInfoSync();
+ this.setData({
+ statusBarHeight,
+ height: 46 + statusBarHeight,
+ });
+ },
+ mounted() {
+ this.setHeight();
+ },
+ methods: {
+ onClickLeft() {
+ this.$emit('click-left');
+ },
+ onClickRight() {
+ this.$emit('click-right');
+ },
+ setHeight() {
+ if (!this.data.fixed || !this.data.placeholder) {
+ return;
+ }
+ wx.nextTick(() => {
+ getRect(this, '.van-nav-bar').then((res) => {
+ if (res && 'height' in res) {
+ this.setData({ height: res.height });
+ }
+ });
+ });
+ },
+ },
+});
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/node_modules/@vant/weapp/dist/nav-bar/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/node_modules/@vant/weapp/dist/nav-bar/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/node_modules/@vant/weapp/dist/nav-bar/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/node_modules/@vant/weapp/dist/nav-bar/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/node_modules/@vant/weapp/dist/nav-bar/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..b6405fd5a35bb49759e1c89813373eddde8e24ec
--- /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/node_modules/@vant/weapp/dist/nav-bar/index.wxml"
@@ -0,0 +1,42 @@
+
+
+
+
+
+
+
+
+
+
+ {{ leftText }}
+
+
+
+
+ {{ title }}
+
+
+
+ {{ rightText }}
+
+
+
+
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/node_modules/@vant/weapp/dist/nav-bar/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/node_modules/@vant/weapp/dist/nav-bar/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..55b4158d14d76e9bbcb2512beab9097d3bf4aae8
--- /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/node_modules/@vant/weapp/dist/nav-bar/index.wxs"
@@ -0,0 +1,13 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+
+function barStyle(data) {
+ return style({
+ 'z-index': data.zIndex,
+ 'padding-top': data.safeAreaInsetTop ? data.statusBarHeight + 'px' : 0,
+ });
+}
+
+module.exports = {
+ barStyle: barStyle,
+};
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/node_modules/@vant/weapp/dist/nav-bar/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/node_modules/@vant/weapp/dist/nav-bar/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..48e9e3f5878f1093495ed4f041cb8f78a9a5c994
--- /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/node_modules/@vant/weapp/dist/nav-bar/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-nav-bar{position:relative;text-align:center;-webkit-user-select:none;user-select:none;height:46px;height:var(--nav-bar-height,46px);line-height:46px;line-height:var(--nav-bar-height,46px);background-color:#fff;background-color:var(--nav-bar-background-color,#fff)}.van-nav-bar__content{position:relative;height:100%}.van-nav-bar__text{display:inline-block;vertical-align:middle;margin:0 -16px;margin:0 -var(--padding-md,16px);padding:0 16px;padding:0 var(--padding-md,16px);color:#1989fa;color:var(--nav-bar-text-color,#1989fa)}.van-nav-bar__text--hover{background-color:#f2f3f5;background-color:var(--active-color,#f2f3f5)}.van-nav-bar__arrow{vertical-align:middle;font-size:16px!important;font-size:var(--nav-bar-arrow-size,16px)!important;color:#1989fa!important;color:var(--nav-bar-icon-color,#1989fa)!important}.van-nav-bar__arrow+.van-nav-bar__text{margin-left:-20px;padding-left:25px}.van-nav-bar--fixed{position:fixed;top:0;left:0;width:100%}.van-nav-bar__title{max-width:60%;margin:0 auto;color:#323233;color:var(--nav-bar-title-text-color,#323233);font-weight:500;font-weight:var(--font-weight-bold,500);font-size:16px;font-size:var(--nav-bar-title-font-size,16px)}.van-nav-bar__left,.van-nav-bar__right{position:absolute;top:0;bottom:0;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;font-size:14px;font-size:var(--font-size-md,14px)}.van-nav-bar__left{left:16px;left:var(--padding-md,16px)}.van-nav-bar__right{right:16px;right:var(--padding-md,16px)}
\ 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/node_modules/@vant/weapp/dist/notice-bar/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/notice-bar/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/notice-bar/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/notice-bar/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/node_modules/@vant/weapp/dist/notice-bar/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..744a7159c2665532e29d9258a79b1c20654c0186
--- /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/node_modules/@vant/weapp/dist/notice-bar/index.js"
@@ -0,0 +1,124 @@
+import { VantComponent } from '../common/component';
+import { getRect, requestAnimationFrame } from '../common/utils';
+VantComponent({
+ props: {
+ text: {
+ type: String,
+ value: '',
+ observer: 'init',
+ },
+ mode: {
+ type: String,
+ value: '',
+ },
+ url: {
+ type: String,
+ value: '',
+ },
+ openType: {
+ type: String,
+ value: 'navigate',
+ },
+ delay: {
+ type: Number,
+ value: 1,
+ },
+ speed: {
+ type: Number,
+ value: 50,
+ observer: 'init',
+ },
+ scrollable: {
+ type: Boolean,
+ value: true,
+ },
+ leftIcon: {
+ type: String,
+ value: '',
+ },
+ color: String,
+ backgroundColor: String,
+ background: String,
+ wrapable: Boolean,
+ },
+ data: {
+ show: true,
+ },
+ created() {
+ this.resetAnimation = wx.createAnimation({
+ duration: 0,
+ timingFunction: 'linear',
+ });
+ },
+ destroyed() {
+ this.timer && clearTimeout(this.timer);
+ },
+ mounted() {
+ this.init();
+ },
+ methods: {
+ init() {
+ requestAnimationFrame(() => {
+ Promise.all([
+ getRect(this, '.van-notice-bar__content'),
+ getRect(this, '.van-notice-bar__wrap'),
+ ]).then((rects) => {
+ const [contentRect, wrapRect] = rects;
+ if (
+ contentRect == null ||
+ wrapRect == null ||
+ !contentRect.width ||
+ !wrapRect.width
+ ) {
+ return;
+ }
+ const { speed, scrollable, delay } = this.data;
+ if (scrollable || wrapRect.width < contentRect.width) {
+ const duration = (contentRect.width / speed) * 1000;
+ this.wrapWidth = wrapRect.width;
+ this.contentWidth = contentRect.width;
+ this.duration = duration;
+ this.animation = wx.createAnimation({
+ duration,
+ timingFunction: 'linear',
+ delay,
+ });
+ this.scroll();
+ }
+ });
+ });
+ },
+ scroll() {
+ this.timer && clearTimeout(this.timer);
+ this.timer = null;
+ this.setData({
+ animationData: this.resetAnimation
+ .translateX(this.wrapWidth)
+ .step()
+ .export(),
+ });
+ requestAnimationFrame(() => {
+ this.setData({
+ animationData: this.animation
+ .translateX(-this.contentWidth)
+ .step()
+ .export(),
+ });
+ });
+ this.timer = setTimeout(() => {
+ this.scroll();
+ }, this.duration);
+ },
+ onClickIcon(event) {
+ if (this.data.mode === 'closeable') {
+ this.timer && clearTimeout(this.timer);
+ this.timer = null;
+ this.setData({ show: false });
+ this.$emit('close', event.detail);
+ }
+ },
+ onClick(event) {
+ this.$emit('click', event);
+ },
+ },
+});
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/node_modules/@vant/weapp/dist/notice-bar/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/node_modules/@vant/weapp/dist/notice-bar/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/node_modules/@vant/weapp/dist/notice-bar/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/node_modules/@vant/weapp/dist/notice-bar/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/node_modules/@vant/weapp/dist/notice-bar/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..be119adc32931b0d59fcb011d6f3e35b3f970b23
--- /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/node_modules/@vant/weapp/dist/notice-bar/index.wxml"
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+
+
+
+ {{ 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/node_modules/@vant/weapp/dist/notice-bar/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/node_modules/@vant/weapp/dist/notice-bar/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..11e6456f9c7334ad1af5c6c54ef6835e367b1e80
--- /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/node_modules/@vant/weapp/dist/notice-bar/index.wxs"
@@ -0,0 +1,15 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function rootStyle(data) {
+ return style({
+ color: data.color,
+ 'background-color': data.backgroundColor,
+ background: data.background,
+ });
+}
+
+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/node_modules/@vant/weapp/dist/notice-bar/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/node_modules/@vant/weapp/dist/notice-bar/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..6a498587043ddd40ed218e8e3f68cdf3f2958dbf
--- /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/node_modules/@vant/weapp/dist/notice-bar/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-notice-bar{display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;height:40px;height:var(--notice-bar-height,40px);padding:0 16px;padding:var(--notice-bar-padding,0 16px);font-size:14px;font-size:var(--notice-bar-font-size,14px);color:#ed6a0c;color:var(--notice-bar-text-color,#ed6a0c);line-height:24px;line-height:var(--notice-bar-line-height,24px);background-color:#fffbe8;background-color:var(--notice-bar-background-color,#fffbe8)}.van-notice-bar--withicon{position:relative;padding-right:40px}.van-notice-bar--wrapable{height:auto;padding:8px 16px;padding:var(--notice-bar-wrapable-padding,8px 16px)}.van-notice-bar--wrapable .van-notice-bar__wrap{height:auto}.van-notice-bar--wrapable .van-notice-bar__content{position:relative;white-space:normal}.van-notice-bar__left-icon{display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;margin-right:4px;vertical-align:middle}.van-notice-bar__left-icon,.van-notice-bar__right-icon{font-size:16px;font-size:var(--notice-bar-icon-size,16px);min-width:22px;min-width:var(--notice-bar-icon-min-width,22px)}.van-notice-bar__right-icon{position:absolute;top:10px;right:15px}.van-notice-bar__wrap{position:relative;-webkit-flex:1;flex:1;overflow:hidden;height:24px;height:var(--notice-bar-line-height,24px)}.van-notice-bar__content{position:absolute;white-space:nowrap}.van-notice-bar__content.van-ellipsis{max-width: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/node_modules/@vant/weapp/dist/notify/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/notify/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/notify/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/notify/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/node_modules/@vant/weapp/dist/notify/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..fda6a2f68040a5f36855dab9edfa6e3ebb71e5aa
--- /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/node_modules/@vant/weapp/dist/notify/index.js"
@@ -0,0 +1,65 @@
+import { VantComponent } from '../common/component';
+import { WHITE } from '../common/color';
+import { getSystemInfoSync } from '../common/utils';
+VantComponent({
+ props: {
+ message: String,
+ background: String,
+ type: {
+ type: String,
+ value: 'danger',
+ },
+ color: {
+ type: String,
+ value: WHITE,
+ },
+ duration: {
+ type: Number,
+ value: 3000,
+ },
+ zIndex: {
+ type: Number,
+ value: 110,
+ },
+ safeAreaInsetTop: {
+ type: Boolean,
+ value: false,
+ },
+ top: null,
+ },
+ data: {
+ show: false,
+ onOpened: null,
+ onClose: null,
+ onClick: null,
+ },
+ created() {
+ const { statusBarHeight } = getSystemInfoSync();
+ this.setData({ statusBarHeight });
+ },
+ methods: {
+ show() {
+ const { duration, onOpened } = this.data;
+ clearTimeout(this.timer);
+ this.setData({ show: true });
+ wx.nextTick(onOpened);
+ if (duration > 0 && duration !== Infinity) {
+ this.timer = setTimeout(() => {
+ this.hide();
+ }, duration);
+ }
+ },
+ hide() {
+ const { onClose } = this.data;
+ clearTimeout(this.timer);
+ this.setData({ show: false });
+ wx.nextTick(onClose);
+ },
+ onTap(event) {
+ const { onClick } = this.data;
+ if (onClick) {
+ onClick(event.detail);
+ }
+ },
+ },
+});
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/node_modules/@vant/weapp/dist/notify/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/node_modules/@vant/weapp/dist/notify/index.json"
new file mode 100644
index 0000000000000000000000000000000000000000..c14a65f6c3f924bd824f5813b33cebd96e005e1a
--- /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/node_modules/@vant/weapp/dist/notify/index.json"
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-transition": "../transition/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/node_modules/@vant/weapp/dist/notify/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/node_modules/@vant/weapp/dist/notify/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..42d913eb5d18c1214c0e238ae006ecd7de4629e3
--- /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/node_modules/@vant/weapp/dist/notify/index.wxml"
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+ {{ message }}
+
+
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/node_modules/@vant/weapp/dist/notify/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/node_modules/@vant/weapp/dist/notify/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..bbb94c28008eca5186f1cfbd7c50736c2f713255
--- /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/node_modules/@vant/weapp/dist/notify/index.wxs"
@@ -0,0 +1,22 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function rootStyle(data) {
+ return style({
+ 'z-index': data.zIndex,
+ top: addUnit(data.top),
+ });
+}
+
+function notifyStyle(data) {
+ return style({
+ background: data.background,
+ color: data.color,
+ });
+}
+
+module.exports = {
+ rootStyle: rootStyle,
+ notifyStyle: notifyStyle,
+};
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/node_modules/@vant/weapp/dist/notify/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/node_modules/@vant/weapp/dist/notify/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..8a7688b3ef928c62312df3f2e3dfc70bd0e5cbda
--- /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/node_modules/@vant/weapp/dist/notify/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-notify{text-align:center;word-wrap:break-word;padding:6px 15px;padding:var(--notify-padding,6px 15px);font-size:14px;font-size:var(--notify-font-size,14px);line-height:20px;line-height:var(--notify-line-height,20px)}.van-notify__container{position:fixed;top:0;left:0;box-sizing:border-box;width:100%}.van-notify--primary{background-color:#1989fa;background-color:var(--notify-primary-background-color,#1989fa)}.van-notify--success{background-color:#07c160;background-color:var(--notify-success-background-color,#07c160)}.van-notify--danger{background-color:#ee0a24;background-color:var(--notify-danger-background-color,#ee0a24)}.van-notify--warning{background-color:#ff976a;background-color:var(--notify-warning-background-color,#ff976a)}
\ 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/node_modules/@vant/weapp/dist/notify/notify.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/notify/notify.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..32f77ad05efb25595254f62eb0483312506f4f7e
--- /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/node_modules/@vant/weapp/dist/notify/notify.d.ts"
@@ -0,0 +1,20 @@
+interface NotifyOptions {
+ type?: 'primary' | 'success' | 'danger' | 'warning';
+ color?: string;
+ zIndex?: number;
+ top?: number;
+ message: string;
+ context?: any;
+ duration?: number;
+ selector?: string;
+ background?: string;
+ safeAreaInsetTop?: boolean;
+ onClick?: () => void;
+ onOpened?: () => void;
+ onClose?: () => void;
+}
+declare function Notify(options: NotifyOptions | string): any;
+declare namespace Notify {
+ var clear: (options?: NotifyOptions | undefined) => void;
+}
+export default Notify;
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/node_modules/@vant/weapp/dist/notify/notify.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/node_modules/@vant/weapp/dist/notify/notify.js"
new file mode 100644
index 0000000000000000000000000000000000000000..ee3c966dd377f850b4bff6637c13ca398cf96485
--- /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/node_modules/@vant/weapp/dist/notify/notify.js"
@@ -0,0 +1,52 @@
+import { WHITE } from '../common/color';
+const defaultOptions = {
+ selector: '#van-notify',
+ type: 'danger',
+ message: '',
+ background: '',
+ duration: 3000,
+ zIndex: 110,
+ top: 0,
+ color: WHITE,
+ safeAreaInsetTop: false,
+ onClick: () => {},
+ onOpened: () => {},
+ onClose: () => {},
+};
+function parseOptions(message) {
+ if (message == null) {
+ return {};
+ }
+ return typeof message === 'string' ? { message } : message;
+}
+function getContext() {
+ const pages = getCurrentPages();
+ return pages[pages.length - 1];
+}
+export default function Notify(options) {
+ options = Object.assign(
+ Object.assign({}, defaultOptions),
+ parseOptions(options)
+ );
+ const context = options.context || getContext();
+ const notify = context.selectComponent(options.selector);
+ delete options.context;
+ delete options.selector;
+ if (notify) {
+ notify.setData(options);
+ notify.show();
+ return notify;
+ }
+ console.warn('未找到 van-notify 节点,请确认 selector 及 context 是否正确');
+}
+Notify.clear = function (options) {
+ options = Object.assign(
+ Object.assign({}, defaultOptions),
+ parseOptions(options)
+ );
+ const context = options.context || getContext();
+ const notify = context.selectComponent(options.selector);
+ if (notify) {
+ notify.hide();
+ }
+};
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/node_modules/@vant/weapp/dist/overlay/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/overlay/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/overlay/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/overlay/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/node_modules/@vant/weapp/dist/overlay/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..b70943198aa1463e365e9c7927d2b31399f9ddb9
--- /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/node_modules/@vant/weapp/dist/overlay/index.js"
@@ -0,0 +1,22 @@
+import { VantComponent } from '../common/component';
+VantComponent({
+ props: {
+ show: Boolean,
+ customStyle: String,
+ duration: {
+ type: null,
+ value: 300,
+ },
+ zIndex: {
+ type: Number,
+ value: 1,
+ },
+ },
+ methods: {
+ onClick() {
+ this.$emit('click');
+ },
+ // for prevent touchmove
+ noop() {},
+ },
+});
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/node_modules/@vant/weapp/dist/overlay/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/node_modules/@vant/weapp/dist/overlay/index.json"
new file mode 100644
index 0000000000000000000000000000000000000000..c14a65f6c3f924bd824f5813b33cebd96e005e1a
--- /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/node_modules/@vant/weapp/dist/overlay/index.json"
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-transition": "../transition/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/node_modules/@vant/weapp/dist/overlay/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/node_modules/@vant/weapp/dist/overlay/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..9212348b0896c2cc5f208082d04eddd2066793c1
--- /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/node_modules/@vant/weapp/dist/overlay/index.wxml"
@@ -0,0 +1,10 @@
+
+
+
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/node_modules/@vant/weapp/dist/overlay/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/node_modules/@vant/weapp/dist/overlay/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..0f9df0e864d79070785805775fcdca7637fb2da1
--- /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/node_modules/@vant/weapp/dist/overlay/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-overlay{position:fixed;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.7);background-color:var(--overlay-background-color,rgba(0,0,0,.7))}
\ 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/node_modules/@vant/weapp/dist/panel/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/panel/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/panel/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/panel/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/node_modules/@vant/weapp/dist/panel/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..4c2406232edf646c2f46b4270ce8bd72926fe807
--- /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/node_modules/@vant/weapp/dist/panel/index.js"
@@ -0,0 +1,10 @@
+import { VantComponent } from '../common/component';
+VantComponent({
+ classes: ['header-class', 'footer-class'],
+ props: {
+ desc: String,
+ title: String,
+ status: String,
+ useFooterSlot: Boolean,
+ },
+});
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/node_modules/@vant/weapp/dist/panel/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/node_modules/@vant/weapp/dist/panel/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/node_modules/@vant/weapp/dist/panel/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/node_modules/@vant/weapp/dist/panel/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/node_modules/@vant/weapp/dist/panel/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..3f135d23daa06e22df8ccbac0786044efd2fe0ea
--- /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/node_modules/@vant/weapp/dist/panel/index.wxml"
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
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/node_modules/@vant/weapp/dist/panel/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/node_modules/@vant/weapp/dist/panel/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..ffd9df91e8d913b4c48d38eae94435d0130b19d0
--- /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/node_modules/@vant/weapp/dist/panel/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-panel{background:#fff;background:var(--panel-background-color,#fff)}.van-panel__header-value{color:#ee0a24;color:var(--panel-header-value-color,#ee0a24)}.van-panel__footer{padding:8px 16px;padding:var(--panel-footer-padding,8px 16px)}
\ 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/node_modules/@vant/weapp/dist/picker-column/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/picker-column/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/picker-column/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/picker-column/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/node_modules/@vant/weapp/dist/picker-column/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..d55d27441a0d3af3a65f22658683dc3fc3e755a3
--- /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/node_modules/@vant/weapp/dist/picker-column/index.js"
@@ -0,0 +1,124 @@
+import { VantComponent } from '../common/component';
+import { range } from '../common/utils';
+import { isObj } from '../common/validator';
+const DEFAULT_DURATION = 200;
+VantComponent({
+ classes: ['active-class'],
+ props: {
+ valueKey: String,
+ className: String,
+ itemHeight: Number,
+ visibleItemCount: Number,
+ initialOptions: {
+ type: Array,
+ value: [],
+ },
+ defaultIndex: {
+ type: Number,
+ value: 0,
+ observer(value) {
+ this.setIndex(value);
+ },
+ },
+ },
+ data: {
+ startY: 0,
+ offset: 0,
+ duration: 0,
+ startOffset: 0,
+ options: [],
+ currentIndex: 0,
+ },
+ created() {
+ const { defaultIndex, initialOptions } = this.data;
+ this.set({
+ currentIndex: defaultIndex,
+ options: initialOptions,
+ }).then(() => {
+ this.setIndex(defaultIndex);
+ });
+ },
+ methods: {
+ getCount() {
+ return this.data.options.length;
+ },
+ onTouchStart(event) {
+ this.setData({
+ startY: event.touches[0].clientY,
+ startOffset: this.data.offset,
+ duration: 0,
+ });
+ },
+ onTouchMove(event) {
+ const { data } = this;
+ const deltaY = event.touches[0].clientY - data.startY;
+ this.setData({
+ offset: range(
+ data.startOffset + deltaY,
+ -(this.getCount() * data.itemHeight),
+ data.itemHeight
+ ),
+ });
+ },
+ onTouchEnd() {
+ const { data } = this;
+ if (data.offset !== data.startOffset) {
+ this.setData({ duration: DEFAULT_DURATION });
+ const index = range(
+ Math.round(-data.offset / data.itemHeight),
+ 0,
+ this.getCount() - 1
+ );
+ this.setIndex(index, true);
+ }
+ },
+ onClickItem(event) {
+ const { index } = event.currentTarget.dataset;
+ this.setIndex(index, true);
+ },
+ adjustIndex(index) {
+ const { data } = this;
+ const count = this.getCount();
+ index = range(index, 0, count);
+ for (let i = index; i < count; i++) {
+ if (!this.isDisabled(data.options[i])) return i;
+ }
+ for (let i = index - 1; i >= 0; i--) {
+ if (!this.isDisabled(data.options[i])) return i;
+ }
+ },
+ isDisabled(option) {
+ return isObj(option) && option.disabled;
+ },
+ getOptionText(option) {
+ const { data } = this;
+ return isObj(option) && data.valueKey in option
+ ? option[data.valueKey]
+ : option;
+ },
+ setIndex(index, userAction) {
+ const { data } = this;
+ index = this.adjustIndex(index) || 0;
+ const offset = -index * data.itemHeight;
+ if (index !== data.currentIndex) {
+ return this.set({ offset, currentIndex: index }).then(() => {
+ userAction && this.$emit('change', index);
+ });
+ }
+ return this.set({ offset });
+ },
+ setValue(value) {
+ const { options } = this.data;
+ for (let i = 0; i < options.length; i++) {
+ if (this.getOptionText(options[i]) === value) {
+ return this.setIndex(i);
+ }
+ }
+ return Promise.resolve();
+ },
+ getValue() {
+ const { data } = this;
+ return data.options[data.currentIndex];
+ },
+ },
+});
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/node_modules/@vant/weapp/dist/picker-column/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/node_modules/@vant/weapp/dist/picker-column/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/node_modules/@vant/weapp/dist/picker-column/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/node_modules/@vant/weapp/dist/picker-column/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/node_modules/@vant/weapp/dist/picker-column/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..cb6b7ba2d2395976c4f37a34bdac40b2545c05bf
--- /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/node_modules/@vant/weapp/dist/picker-column/index.wxml"
@@ -0,0 +1,23 @@
+
+
+
+
+
+ {{ computed.optionText(option, valueKey) }}
+
+
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/node_modules/@vant/weapp/dist/picker-column/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/node_modules/@vant/weapp/dist/picker-column/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..2d5a61172229791cf903d82e9014955615465ee8
--- /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/node_modules/@vant/weapp/dist/picker-column/index.wxs"
@@ -0,0 +1,36 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function isObj(x) {
+ var type = typeof x;
+ return x !== null && (type === 'object' || type === 'function');
+}
+
+function optionText(option, valueKey) {
+ return isObj(option) && option[valueKey] != null ? option[valueKey] : option;
+}
+
+function rootStyle(data) {
+ return style({
+ height: addUnit(data.itemHeight * data.visibleItemCount),
+ });
+}
+
+function wrapperStyle(data) {
+ var offset = addUnit(
+ data.offset + (data.itemHeight * (data.visibleItemCount - 1)) / 2
+ );
+
+ return style({
+ transition: 'transform ' + data.duration + 'ms',
+ 'line-height': addUnit(data.itemHeight),
+ transform: 'translate3d(0, ' + offset + ', 0)',
+ });
+}
+
+module.exports = {
+ optionText: optionText,
+ rootStyle: rootStyle,
+ wrapperStyle: wrapperStyle,
+};
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/node_modules/@vant/weapp/dist/picker-column/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/node_modules/@vant/weapp/dist/picker-column/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..c5c69100146f3c6d22bf0fd7206caf0143de5a55
--- /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/node_modules/@vant/weapp/dist/picker-column/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-picker-column{overflow:hidden;text-align:center;color:#000;color:var(--picker-option-text-color,#000);font-size:16px;font-size:var(--picker-option-font-size,16px)}.van-picker-column__item{padding:0 5px}.van-picker-column__item--selected{font-weight:500;font-weight:var(--font-weight-bold,500);color:#323233;color:var(--picker-option-selected-text-color,#323233)}.van-picker-column__item--disabled{opacity:.3;opacity:var(--picker-option-disabled-opacity,.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/node_modules/@vant/weapp/dist/picker/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/picker/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/picker/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/picker/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..d0ca302537f30cb47b349bd791927048effb21ab
--- /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/node_modules/@vant/weapp/dist/picker/index.js"
@@ -0,0 +1,146 @@
+import { VantComponent } from '../common/component';
+import { pickerProps } from './shared';
+VantComponent({
+ classes: ['active-class', 'toolbar-class', 'column-class'],
+ props: Object.assign(Object.assign({}, pickerProps), {
+ valueKey: {
+ type: String,
+ value: 'text',
+ },
+ toolbarPosition: {
+ type: String,
+ value: 'top',
+ },
+ defaultIndex: {
+ type: Number,
+ value: 0,
+ },
+ columns: {
+ type: Array,
+ value: [],
+ observer(columns = []) {
+ this.simple = columns.length && !columns[0].values;
+ if (Array.isArray(this.children) && this.children.length) {
+ this.setColumns().catch(() => {});
+ }
+ },
+ },
+ }),
+ beforeCreate() {
+ Object.defineProperty(this, 'children', {
+ get: () => this.selectAllComponents('.van-picker__column') || [],
+ });
+ },
+ methods: {
+ noop() {},
+ setColumns() {
+ const { data } = this;
+ const columns = this.simple ? [{ values: data.columns }] : data.columns;
+ const stack = columns.map((column, index) =>
+ this.setColumnValues(index, column.values)
+ );
+ return Promise.all(stack);
+ },
+ emit(event) {
+ const { type } = event.currentTarget.dataset;
+ if (this.simple) {
+ this.$emit(type, {
+ value: this.getColumnValue(0),
+ index: this.getColumnIndex(0),
+ });
+ } else {
+ this.$emit(type, {
+ value: this.getValues(),
+ index: this.getIndexes(),
+ });
+ }
+ },
+ onChange(event) {
+ if (this.simple) {
+ this.$emit('change', {
+ picker: this,
+ value: this.getColumnValue(0),
+ index: this.getColumnIndex(0),
+ });
+ } else {
+ this.$emit('change', {
+ picker: this,
+ value: this.getValues(),
+ index: event.currentTarget.dataset.index,
+ });
+ }
+ },
+ // get column instance by index
+ getColumn(index) {
+ return this.children[index];
+ },
+ // get column value by index
+ getColumnValue(index) {
+ const column = this.getColumn(index);
+ return column && column.getValue();
+ },
+ // set column value by index
+ setColumnValue(index, value) {
+ const column = this.getColumn(index);
+ if (column == null) {
+ return Promise.reject(new Error('setColumnValue: 对应列不存在'));
+ }
+ return column.setValue(value);
+ },
+ // get column option index by column index
+ getColumnIndex(columnIndex) {
+ return (this.getColumn(columnIndex) || {}).data.currentIndex;
+ },
+ // set column option index by column index
+ setColumnIndex(columnIndex, optionIndex) {
+ const column = this.getColumn(columnIndex);
+ if (column == null) {
+ return Promise.reject(new Error('setColumnIndex: 对应列不存在'));
+ }
+ return column.setIndex(optionIndex);
+ },
+ // get options of column by index
+ getColumnValues(index) {
+ return (this.children[index] || {}).data.options;
+ },
+ // set options of column by index
+ setColumnValues(index, options, needReset = true) {
+ const column = this.children[index];
+ if (column == null) {
+ return Promise.reject(new Error('setColumnValues: 对应列不存在'));
+ }
+ const isSame =
+ JSON.stringify(column.data.options) === JSON.stringify(options);
+ if (isSame) {
+ return Promise.resolve();
+ }
+ return column.set({ options }).then(() => {
+ if (needReset) {
+ column.setIndex(0);
+ }
+ });
+ },
+ // get values of all columns
+ getValues() {
+ return this.children.map((child) => child.getValue());
+ },
+ // set values of all columns
+ setValues(values) {
+ const stack = values.map((value, index) =>
+ this.setColumnValue(index, value)
+ );
+ return Promise.all(stack);
+ },
+ // get indexes of all columns
+ getIndexes() {
+ return this.children.map((child) => child.data.currentIndex);
+ },
+ // set indexes of all columns
+ setIndexes(indexes) {
+ const stack = indexes.map((optionIndex, columnIndex) =>
+ this.setColumnIndex(columnIndex, optionIndex)
+ );
+ return Promise.all(stack);
+ },
+ },
+});
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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/picker/index.json"
new file mode 100644
index 0000000000000000000000000000000000000000..2fcec8991bd56bdb28b347a80db78be1a96c2822
--- /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/node_modules/@vant/weapp/dist/picker/index.json"
@@ -0,0 +1,7 @@
+{
+ "component": true,
+ "usingComponents": {
+ "picker-column": "../picker-column/index",
+ "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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/picker/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..dbf124929b2229c67d97d588ce80e5f842b10cf3
--- /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/node_modules/@vant/weapp/dist/picker/index.wxml"
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
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/node_modules/@vant/weapp/dist/picker/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/node_modules/@vant/weapp/dist/picker/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..0abbd10e71099ba4016a54259ca46f7224ab168e
--- /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/node_modules/@vant/weapp/dist/picker/index.wxs"
@@ -0,0 +1,42 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+var array = require('../wxs/array.wxs');
+
+function columnsStyle(data) {
+ return style({
+ height: addUnit(data.itemHeight * data.visibleItemCount),
+ });
+}
+
+function maskStyle(data) {
+ return style({
+ 'background-size':
+ '100% ' + addUnit((data.itemHeight * (data.visibleItemCount - 1)) / 2),
+ });
+}
+
+function frameStyle(data) {
+ return style({
+ height: addUnit(data.itemHeight),
+ });
+}
+
+function columns(columns) {
+ if (!array.isArray(columns)) {
+ return [];
+ }
+
+ if (columns.length && !columns[0].values) {
+ return [{ values: columns }];
+ }
+
+ return columns;
+}
+
+module.exports = {
+ columnsStyle: columnsStyle,
+ frameStyle: frameStyle,
+ maskStyle: maskStyle,
+ columns: columns,
+};
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/node_modules/@vant/weapp/dist/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/node_modules/@vant/weapp/dist/picker/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..f74b164bbe404b0f66e34788872755a98730977a
--- /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/node_modules/@vant/weapp/dist/picker/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-picker{position:relative;overflow:hidden;-webkit-text-size-adjust:100%;-webkit-user-select:none;user-select:none;background-color:#fff;background-color:var(--picker-background-color,#fff)}.van-picker__toolbar{display:-webkit-flex;display:flex;-webkit-justify-content:space-between;justify-content:space-between;height:44px;height:var(--picker-toolbar-height,44px);line-height:44px;line-height:var(--picker-toolbar-height,44px)}.van-picker__cancel,.van-picker__confirm{padding:0 16px;padding:var(--picker-action-padding,0 16px);font-size:14px;font-size:var(--picker-action-font-size,14px)}.van-picker__cancel--hover,.van-picker__confirm--hover{opacity:.7}.van-picker__confirm{color:#576b95;color:var(--picker-confirm-action-color,#576b95)}.van-picker__cancel{color:#969799;color:var(--picker-cancel-action-color,#969799)}.van-picker__title{max-width:50%;text-align:center;font-weight:500;font-weight:var(--font-weight-bold,500);font-size:16px;font-size:var(--picker-option-font-size,16px)}.van-picker__columns{position:relative;display:-webkit-flex;display:flex}.van-picker__column{-webkit-flex:1 1;flex:1 1;width:0}.van-picker__loading{position:absolute;top:0;right:0;bottom:0;left:0;z-index:4;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center;background-color:hsla(0,0%,100%,.9);background-color:var(--picker-loading-mask-color,hsla(0,0%,100%,.9))}.van-picker__mask{top:0;left:0;z-index:2;width:100%;height:100%;background-image:linear-gradient(180deg,hsla(0,0%,100%,.9),hsla(0,0%,100%,.4)),linear-gradient(0deg,hsla(0,0%,100%,.9),hsla(0,0%,100%,.4));background-repeat:no-repeat;background-position:top,bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden}.van-picker__frame,.van-picker__mask{position:absolute;pointer-events:none}.van-picker__frame{top:50%;right:16px;left:16px;z-index:1;-webkit-transform:translateY(-50%);transform:translateY(-50%)}
\ 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/node_modules/@vant/weapp/dist/picker/shared.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/picker/shared.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..c54804595ae5455df2cef97a375dbb6a106916c1
--- /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/node_modules/@vant/weapp/dist/picker/shared.d.ts"
@@ -0,0 +1,21 @@
+export declare const pickerProps: {
+ title: StringConstructor;
+ loading: BooleanConstructor;
+ showToolbar: BooleanConstructor;
+ cancelButtonText: {
+ type: StringConstructor;
+ value: string;
+ };
+ confirmButtonText: {
+ type: StringConstructor;
+ value: string;
+ };
+ visibleItemCount: {
+ type: NumberConstructor;
+ value: number;
+ };
+ itemHeight: {
+ type: NumberConstructor;
+ value: 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/node_modules/@vant/weapp/dist/picker/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/node_modules/@vant/weapp/dist/picker/shared.js"
new file mode 100644
index 0000000000000000000000000000000000000000..8531290b30e7d1aa45e2c71574355a156c78867d
--- /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/node_modules/@vant/weapp/dist/picker/shared.js"
@@ -0,0 +1,21 @@
+export const pickerProps = {
+ title: String,
+ loading: Boolean,
+ showToolbar: Boolean,
+ cancelButtonText: {
+ type: String,
+ value: '取消',
+ },
+ confirmButtonText: {
+ type: String,
+ value: '确认',
+ },
+ visibleItemCount: {
+ type: Number,
+ value: 6,
+ },
+ itemHeight: {
+ type: Number,
+ value: 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/node_modules/@vant/weapp/dist/picker/toolbar.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/node_modules/@vant/weapp/dist/picker/toolbar.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..414f61200741b6e928bb5628267daa1d6675aadc
--- /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/node_modules/@vant/weapp/dist/picker/toolbar.wxml"
@@ -0,0 +1,23 @@
+
+
+ {{ cancelButtonText }}
+
+ {{
+ title
+ }}
+
+ {{ 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/node_modules/@vant/weapp/dist/popup/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/popup/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/popup/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/popup/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/node_modules/@vant/weapp/dist/popup/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..eb2d43e0a7e3af1679fb7688a2f3984751028215
--- /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/node_modules/@vant/weapp/dist/popup/index.js"
@@ -0,0 +1,84 @@
+import { VantComponent } from '../common/component';
+import { transition } from '../mixins/transition';
+VantComponent({
+ classes: [
+ 'enter-class',
+ 'enter-active-class',
+ 'enter-to-class',
+ 'leave-class',
+ 'leave-active-class',
+ 'leave-to-class',
+ 'close-icon-class',
+ ],
+ mixins: [transition(false)],
+ props: {
+ round: Boolean,
+ closeable: Boolean,
+ customStyle: String,
+ overlayStyle: String,
+ transition: {
+ type: String,
+ observer: 'observeClass',
+ },
+ zIndex: {
+ type: Number,
+ value: 100,
+ },
+ overlay: {
+ type: Boolean,
+ value: true,
+ },
+ closeIcon: {
+ type: String,
+ value: 'cross',
+ },
+ closeIconPosition: {
+ type: String,
+ value: 'top-right',
+ },
+ closeOnClickOverlay: {
+ type: Boolean,
+ value: true,
+ },
+ position: {
+ type: String,
+ value: 'center',
+ observer: 'observeClass',
+ },
+ safeAreaInsetBottom: {
+ type: Boolean,
+ value: true,
+ },
+ safeAreaInsetTop: {
+ type: Boolean,
+ value: false,
+ },
+ },
+ created() {
+ this.observeClass();
+ },
+ methods: {
+ onClickCloseIcon() {
+ this.$emit('close');
+ },
+ onClickOverlay() {
+ this.$emit('click-overlay');
+ if (this.data.closeOnClickOverlay) {
+ this.$emit('close');
+ }
+ },
+ observeClass() {
+ const { transition, position, duration } = this.data;
+ const updateData = {
+ name: transition || position,
+ };
+ if (transition === 'none') {
+ updateData.duration = 0;
+ this.originDuration = duration;
+ } else if (this.originDuration != null) {
+ updateData.duration = this.originDuration;
+ }
+ this.setData(updateData);
+ },
+ },
+});
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/node_modules/@vant/weapp/dist/popup/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/node_modules/@vant/weapp/dist/popup/index.json"
new file mode 100644
index 0000000000000000000000000000000000000000..88a6eab2a3d39616b3407376f926947017857a80
--- /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/node_modules/@vant/weapp/dist/popup/index.json"
@@ -0,0 +1,7 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-icon": "../icon/index",
+ "van-overlay": "../overlay/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/node_modules/@vant/weapp/dist/popup/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/node_modules/@vant/weapp/dist/popup/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..0be99d4699a1ed63f9f17fe05ecbaed382ec2023
--- /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/node_modules/@vant/weapp/dist/popup/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/node_modules/@vant/weapp/dist/popup/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/node_modules/@vant/weapp/dist/popup/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..8d59f245a079a1839571f35f95f6bb95c50241f2
--- /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/node_modules/@vant/weapp/dist/popup/index.wxs"
@@ -0,0 +1,18 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+
+function popupStyle(data) {
+ return style([
+ {
+ 'z-index': data.zIndex,
+ '-webkit-transition-duration': data.currentDuration + 'ms',
+ 'transition-duration': data.currentDuration + 'ms',
+ },
+ data.display ? null : 'display: none',
+ data.customStyle,
+ ]);
+}
+
+module.exports = {
+ popupStyle: popupStyle,
+};
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/node_modules/@vant/weapp/dist/popup/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/node_modules/@vant/weapp/dist/popup/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..a3d6e6fd1b37e7b30aa57c5676b0d247baa1ebea
--- /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/node_modules/@vant/weapp/dist/popup/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-popup{position:fixed;box-sizing:border-box;max-height:100%;overflow-y:auto;transition-timing-function:ease;-webkit-animation:ease both;animation:ease both;-webkit-overflow-scrolling:touch;background-color:#fff;background-color:var(--popup-background-color,#fff)}.van-popup--center{top:50%;left:50%;-webkit-transform:translate3d(-50%,-50%,0);transform:translate3d(-50%,-50%,0)}.van-popup--center.van-popup--round{border-radius:16px;border-radius:var(--popup-round-border-radius,16px)}.van-popup--top{top:0;left:0;width:100%}.van-popup--top.van-popup--round{border-radius:0 0 16px 16px;border-radius:0 0 var(--popup-round-border-radius,16px) var(--popup-round-border-radius,16px)}.van-popup--right{top:50%;right:0;-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}.van-popup--right.van-popup--round{border-radius:16px 0 0 16px;border-radius:var(--popup-round-border-radius,16px) 0 0 var(--popup-round-border-radius,16px)}.van-popup--bottom{bottom:0;left:0;width:100%}.van-popup--bottom.van-popup--round{border-radius:16px 16px 0 0;border-radius:var(--popup-round-border-radius,16px) var(--popup-round-border-radius,16px) 0 0}.van-popup--left{top:50%;left:0;-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}.van-popup--left.van-popup--round{border-radius:0 16px 16px 0;border-radius:0 var(--popup-round-border-radius,16px) var(--popup-round-border-radius,16px) 0}.van-popup--bottom.van-popup--safe{padding-bottom:env(safe-area-inset-bottom)}.van-popup--safeTop{padding-top:env(safe-area-inset-top)}.van-popup__close-icon{position:absolute;z-index:1;z-index:var(--popup-close-icon-z-index,1);color:#969799;color:var(--popup-close-icon-color,#969799);font-size:18px;font-size:var(--popup-close-icon-size,18px)}.van-popup__close-icon--top-left{top:16px;top:var(--popup-close-icon-margin,16px);left:16px;left:var(--popup-close-icon-margin,16px)}.van-popup__close-icon--top-right{top:16px;top:var(--popup-close-icon-margin,16px);right:16px;right:var(--popup-close-icon-margin,16px)}.van-popup__close-icon--bottom-left{bottom:16px;bottom:var(--popup-close-icon-margin,16px);left:16px;left:var(--popup-close-icon-margin,16px)}.van-popup__close-icon--bottom-right{right:16px;right:var(--popup-close-icon-margin,16px);bottom:16px;bottom:var(--popup-close-icon-margin,16px)}.van-popup__close-icon:active{opacity:.6}.van-scale-enter-active,.van-scale-leave-active{transition-property:opacity,-webkit-transform;transition-property:opacity,transform;transition-property:opacity,transform,-webkit-transform}.van-scale-enter,.van-scale-leave-to{-webkit-transform:translate3d(-50%,-50%,0) scale(.7);transform:translate3d(-50%,-50%,0) scale(.7);opacity:0}.van-fade-enter-active,.van-fade-leave-active{transition-property:opacity}.van-fade-enter,.van-fade-leave-to{opacity:0}.van-center-enter-active,.van-center-leave-active{transition-property:opacity}.van-center-enter,.van-center-leave-to{opacity:0}.van-bottom-enter-active,.van-bottom-leave-active,.van-left-enter-active,.van-left-leave-active,.van-right-enter-active,.van-right-leave-active,.van-top-enter-active,.van-top-leave-active{transition-property:-webkit-transform;transition-property:transform;transition-property:transform,-webkit-transform}.van-bottom-enter,.van-bottom-leave-to{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}.van-top-enter,.van-top-leave-to{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}.van-left-enter,.van-left-leave-to{-webkit-transform:translate3d(-100%,-50%,0);transform:translate3d(-100%,-50%,0)}.van-right-enter,.van-right-leave-to{-webkit-transform:translate3d(100%,-50%,0);transform:translate3d(100%,-50%,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/node_modules/@vant/weapp/dist/progress/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/progress/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/progress/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/progress/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/node_modules/@vant/weapp/dist/progress/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..ee6a0c15c62f75d9ae261099a6c7782a00008d74
--- /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/node_modules/@vant/weapp/dist/progress/index.js"
@@ -0,0 +1,51 @@
+import { VantComponent } from '../common/component';
+import { BLUE } from '../common/color';
+import { getRect } from '../common/utils';
+VantComponent({
+ props: {
+ inactive: Boolean,
+ percentage: {
+ type: Number,
+ observer: 'setLeft',
+ },
+ pivotText: String,
+ pivotColor: String,
+ trackColor: String,
+ showPivot: {
+ type: Boolean,
+ value: true,
+ },
+ color: {
+ type: String,
+ value: BLUE,
+ },
+ textColor: {
+ type: String,
+ value: '#fff',
+ },
+ strokeWidth: {
+ type: null,
+ value: 4,
+ },
+ },
+ data: {
+ right: 0,
+ },
+ mounted() {
+ this.setLeft();
+ },
+ methods: {
+ setLeft() {
+ Promise.all([
+ getRect(this, '.van-progress'),
+ getRect(this, '.van-progress__pivot'),
+ ]).then(([portion, pivot]) => {
+ if (portion && pivot) {
+ this.setData({
+ right: (pivot.width * (this.data.percentage - 100)) / 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/node_modules/@vant/weapp/dist/progress/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/node_modules/@vant/weapp/dist/progress/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/node_modules/@vant/weapp/dist/progress/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/node_modules/@vant/weapp/dist/progress/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/node_modules/@vant/weapp/dist/progress/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..e81514d05fdce662ca1f2bff2d72841acbf7c08d
--- /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/node_modules/@vant/weapp/dist/progress/index.wxml"
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+ {{ computed.pivotText(pivotText, percentage) }}
+
+
+
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/node_modules/@vant/weapp/dist/progress/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/node_modules/@vant/weapp/dist/progress/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..5b1e8e6bc0440be40af8e27c86b5fcf509d0437f
--- /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/node_modules/@vant/weapp/dist/progress/index.wxs"
@@ -0,0 +1,36 @@
+/* eslint-disable */
+var utils = require('../wxs/utils.wxs');
+var style = require('../wxs/style.wxs');
+
+function pivotText(pivotText, percentage) {
+ return pivotText || percentage + '%';
+}
+
+function rootStyle(data) {
+ return style({
+ 'height': data.strokeWidth ? utils.addUnit(data.strokeWidth) : '',
+ 'background': data.trackColor,
+ });
+}
+
+function portionStyle(data) {
+ return style({
+ background: data.inactive ? '#cacaca' : data.color,
+ width: data.percentage ? data.percentage + '%' : '',
+ });
+}
+
+function pivotStyle(data) {
+ return style({
+ color: data.textColor,
+ right: data.right + 'px',
+ background: data.pivotColor ? data.pivotColor : data.inactive ? '#cacaca' : data.color,
+ });
+}
+
+module.exports = {
+ pivotText: pivotText,
+ rootStyle: rootStyle,
+ portionStyle: portionStyle,
+ pivotStyle: pivotStyle,
+};
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/node_modules/@vant/weapp/dist/progress/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/node_modules/@vant/weapp/dist/progress/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..3844a59eaf40ad2e722c4b82903320cd13a9aa2b
--- /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/node_modules/@vant/weapp/dist/progress/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-progress{position:relative;height:4px;height:var(--progress-height,4px);border-radius:4px;border-radius:var(--progress-height,4px);background:#ebedf0;background:var(--progress-background-color,#ebedf0)}.van-progress__portion{position:absolute;left:0;height:100%;border-radius:inherit;background:#1989fa;background:var(--progress-color,#1989fa)}.van-progress__pivot{position:absolute;top:50%;box-sizing:border-box;min-width:3.6em;text-align:center;word-break:keep-all;border-radius:1em;-webkit-transform:translateY(-50%);transform:translateY(-50%);color:#fff;color:var(--progress-pivot-text-color,#fff);padding:0 5px;padding:var(--progress-pivot-padding,0 5px);font-size:10px;font-size:var(--progress-pivot-font-size,10px);line-height:1.6;line-height:var(--progress-pivot-line-height,1.6);background-color:#1989fa;background-color:var(--progress-pivot-background-color,#1989fa)}
\ 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/node_modules/@vant/weapp/dist/radio-group/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/radio-group/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/radio-group/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/radio-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/node_modules/@vant/weapp/dist/radio-group/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..3b9198e61e5ee8d5143c0bee0074d2759602fe4c
--- /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/node_modules/@vant/weapp/dist/radio-group/index.js"
@@ -0,0 +1,32 @@
+import { VantComponent } from '../common/component';
+import { useChildren } from '../common/relation';
+VantComponent({
+ field: true,
+ relation: useChildren('radio', function (target) {
+ this.updateChild(target);
+ }),
+ props: {
+ value: {
+ type: null,
+ observer: 'updateChildren',
+ },
+ direction: String,
+ disabled: {
+ type: Boolean,
+ observer: 'updateChildren',
+ },
+ },
+ methods: {
+ updateChildren() {
+ this.children.forEach((child) => this.updateChild(child));
+ },
+ updateChild(child) {
+ const { value, disabled, direction } = this.data;
+ child.setData({
+ value,
+ direction,
+ disabled: disabled || child.data.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/node_modules/@vant/weapp/dist/radio-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/node_modules/@vant/weapp/dist/radio-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/node_modules/@vant/weapp/dist/radio-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/node_modules/@vant/weapp/dist/radio-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/node_modules/@vant/weapp/dist/radio-group/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..0ab17afcda065ea624494668ed23f2d3f65a1235
--- /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/node_modules/@vant/weapp/dist/radio-group/index.wxml"
@@ -0,0 +1,5 @@
+
+
+
+
+
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/node_modules/@vant/weapp/dist/radio-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/node_modules/@vant/weapp/dist/radio-group/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..df45fd68339980ac44dd92383959de3ef80a45d7
--- /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/node_modules/@vant/weapp/dist/radio-group/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-radio-group--horizontal{display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap}
\ 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/node_modules/@vant/weapp/dist/radio/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/radio/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/radio/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/radio/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/node_modules/@vant/weapp/dist/radio/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..13d5ba971fda225b2edf86a296d6906eb407f7c6
--- /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/node_modules/@vant/weapp/dist/radio/index.js"
@@ -0,0 +1,45 @@
+import { VantComponent } from '../common/component';
+import { useParent } from '../common/relation';
+VantComponent({
+ field: true,
+ relation: useParent('radio-group'),
+ classes: ['icon-class', 'label-class'],
+ props: {
+ name: null,
+ value: null,
+ disabled: Boolean,
+ useIconSlot: Boolean,
+ checkedColor: String,
+ labelPosition: {
+ type: String,
+ value: 'right',
+ },
+ labelDisabled: Boolean,
+ shape: {
+ type: String,
+ value: 'round',
+ },
+ iconSize: {
+ type: null,
+ value: 20,
+ },
+ },
+ methods: {
+ emitChange(value) {
+ const instance = this.parent || this;
+ instance.$emit('input', value);
+ instance.$emit('change', value);
+ },
+ onChange() {
+ if (!this.data.disabled) {
+ this.emitChange(this.data.name);
+ }
+ },
+ onClickLabel() {
+ const { disabled, labelDisabled, name } = this.data;
+ if (!disabled && !labelDisabled) {
+ this.emitChange(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/node_modules/@vant/weapp/dist/radio/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/node_modules/@vant/weapp/dist/radio/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/node_modules/@vant/weapp/dist/radio/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/node_modules/@vant/weapp/dist/radio/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/node_modules/@vant/weapp/dist/radio/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..4601c0687478d573c27c7f5b7086813380d58645
--- /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/node_modules/@vant/weapp/dist/radio/index.wxml"
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
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/node_modules/@vant/weapp/dist/radio/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/node_modules/@vant/weapp/dist/radio/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..602a69e33e3c0173e3a1845d4b32c09e1a5b6645
--- /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/node_modules/@vant/weapp/dist/radio/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-radio{display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;overflow:hidden;-webkit-user-select:none;user-select:none}.van-radio__icon-wrap{-webkit-flex:none;flex:none}.van-radio--horizontal{margin-right:12px;margin-right:var(--padding-sm,12px)}.van-radio__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;border:1px solid #c8c9cc;border:1px solid var(--radio-border-color,#c8c9cc);font-size:20px;font-size:var(--radio-size,20px);transition-duration:.2s;transition-duration:var(--radio-transition-duration,.2s)}.van-radio__icon--round{border-radius:100%}.van-radio__icon--checked{color:#fff;color:var(--white,#fff);background-color:#1989fa;background-color:var(--radio-checked-icon-color,#1989fa);border-color:#1989fa;border-color:var(--radio-checked-icon-color,#1989fa)}.van-radio__icon--disabled{background-color:#ebedf0;background-color:var(--radio-disabled-background-color,#ebedf0);border-color:#c8c9cc;border-color:var(--radio-disabled-icon-color,#c8c9cc)}.van-radio__icon--disabled.van-radio__icon--checked{color:#c8c9cc;color:var(--radio-disabled-icon-color,#c8c9cc)}.van-radio__label{word-wrap:break-word;margin-left:10px;margin-left:var(--radio-label-margin,10px);color:#323233;color:var(--radio-label-color,#323233);line-height:20px;line-height:var(--radio-size,20px)}.van-radio__label--left{float:left;margin:0 10px 0 0;margin:0 var(--radio-label-margin,10px) 0 0}.van-radio__label--disabled{color:#c8c9cc;color:var(--radio-disabled-label-color,#c8c9cc)}.van-radio__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/node_modules/@vant/weapp/dist/rate/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/rate/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/rate/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/rate/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/node_modules/@vant/weapp/dist/rate/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..0263da144f068269e2fd510cfdd5adc1d7e46654
--- /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/node_modules/@vant/weapp/dist/rate/index.js"
@@ -0,0 +1,88 @@
+import { getAllRect } from '../common/utils';
+import { VantComponent } from '../common/component';
+import { canIUseModel } from '../common/version';
+VantComponent({
+ field: true,
+ classes: ['icon-class'],
+ props: {
+ value: {
+ type: Number,
+ observer(value) {
+ if (value !== this.data.innerValue) {
+ this.setData({ innerValue: value });
+ }
+ },
+ },
+ readonly: Boolean,
+ disabled: Boolean,
+ allowHalf: Boolean,
+ size: null,
+ icon: {
+ type: String,
+ value: 'star',
+ },
+ voidIcon: {
+ type: String,
+ value: 'star-o',
+ },
+ color: {
+ type: String,
+ value: '#ffd21e',
+ },
+ voidColor: {
+ type: String,
+ value: '#c7c7c7',
+ },
+ disabledColor: {
+ type: String,
+ value: '#bdbdbd',
+ },
+ count: {
+ type: Number,
+ value: 5,
+ observer(value) {
+ this.setData({ innerCountArray: Array.from({ length: value }) });
+ },
+ },
+ gutter: null,
+ touchable: {
+ type: Boolean,
+ value: true,
+ },
+ },
+ data: {
+ innerValue: 0,
+ innerCountArray: Array.from({ length: 5 }),
+ },
+ methods: {
+ onSelect(event) {
+ const { data } = this;
+ const { score } = event.currentTarget.dataset;
+ if (!data.disabled && !data.readonly) {
+ this.setData({ innerValue: score + 1 });
+ if (canIUseModel()) {
+ this.setData({ value: score + 1 });
+ }
+ wx.nextTick(() => {
+ this.$emit('input', score + 1);
+ this.$emit('change', score + 1);
+ });
+ }
+ },
+ onTouchMove(event) {
+ const { touchable } = this.data;
+ if (!touchable) return;
+ const { clientX } = event.touches[0];
+ getAllRect(this, '.van-rate__icon').then((list) => {
+ const target = list
+ .sort((item) => item.right - item.left)
+ .find((item) => clientX >= item.left && clientX <= item.right);
+ if (target != null) {
+ this.onSelect(
+ Object.assign(Object.assign({}, event), { currentTarget: target })
+ );
+ }
+ });
+ },
+ },
+});
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/node_modules/@vant/weapp/dist/rate/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/node_modules/@vant/weapp/dist/rate/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/node_modules/@vant/weapp/dist/rate/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/node_modules/@vant/weapp/dist/rate/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/node_modules/@vant/weapp/dist/rate/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..58eee5cdca70917685e29cee0b0111c291a0f486
--- /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/node_modules/@vant/weapp/dist/rate/index.wxml"
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
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/node_modules/@vant/weapp/dist/rate/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/node_modules/@vant/weapp/dist/rate/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..6fd343546d19f25e492a5b217daec17fa37848a5
--- /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/node_modules/@vant/weapp/dist/rate/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-rate{display:-webkit-inline-flex;display:inline-flex;-webkit-user-select:none;user-select:none}.van-rate__item{position:relative;padding:0 2px;padding:0 var(--rate-horizontal-padding,2px)}.van-rate__icon{display:block;height:1em;font-size:20px;font-size:var(--rate-icon-size,20px)}.van-rate__icon--half{position:absolute;top:0;width:.5em;overflow:hidden;left:2px;left:var(--rate-horizontal-padding,2px)}
\ 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/node_modules/@vant/weapp/dist/row/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/row/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/row/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/row/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/node_modules/@vant/weapp/dist/row/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..f2b691bf06d41e5d6489e2ef3107c4607e071600
--- /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/node_modules/@vant/weapp/dist/row/index.js"
@@ -0,0 +1,23 @@
+import { VantComponent } from '../common/component';
+import { useChildren } from '../common/relation';
+VantComponent({
+ relation: useChildren('col', function (target) {
+ const { gutter } = this.data;
+ if (gutter) {
+ target.setData({ gutter });
+ }
+ }),
+ props: {
+ gutter: {
+ type: Number,
+ observer: 'setGutter',
+ },
+ },
+ methods: {
+ setGutter() {
+ this.children.forEach((col) => {
+ col.setData(this.data);
+ });
+ },
+ },
+});
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/node_modules/@vant/weapp/dist/row/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/node_modules/@vant/weapp/dist/row/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/node_modules/@vant/weapp/dist/row/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/node_modules/@vant/weapp/dist/row/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/node_modules/@vant/weapp/dist/row/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..69a4359b16010c1ef2e251ae5ee9533885171db4
--- /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/node_modules/@vant/weapp/dist/row/index.wxml"
@@ -0,0 +1,5 @@
+
+
+
+
+
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/node_modules/@vant/weapp/dist/row/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/node_modules/@vant/weapp/dist/row/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..f5c5958748e6ce3e5a4d97fe7c23f2d3175ea403
--- /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/node_modules/@vant/weapp/dist/row/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({
+ 'margin-right': addUnit(-data.gutter / 2),
+ 'margin-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/node_modules/@vant/weapp/dist/row/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/node_modules/@vant/weapp/dist/row/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..32a098b0ad5df7dbbb02a894c344379d00e5b3b0
--- /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/node_modules/@vant/weapp/dist/row/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-row: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/node_modules/@vant/weapp/dist/search/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/search/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/search/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/search/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/node_modules/@vant/weapp/dist/search/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..778d0056f2079fb2444319524a6b65db9f9934a6
--- /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/node_modules/@vant/weapp/dist/search/index.js"
@@ -0,0 +1,78 @@
+import { VantComponent } from '../common/component';
+import { canIUseModel } from '../common/version';
+VantComponent({
+ field: true,
+ classes: ['field-class', 'input-class', 'cancel-class'],
+ props: {
+ label: String,
+ focus: Boolean,
+ error: Boolean,
+ disabled: Boolean,
+ readonly: Boolean,
+ inputAlign: String,
+ showAction: Boolean,
+ useActionSlot: Boolean,
+ useLeftIconSlot: Boolean,
+ useRightIconSlot: Boolean,
+ leftIcon: {
+ type: String,
+ value: 'search',
+ },
+ rightIcon: String,
+ placeholder: String,
+ placeholderStyle: String,
+ actionText: {
+ type: String,
+ value: '取消',
+ },
+ background: {
+ type: String,
+ value: '#ffffff',
+ },
+ maxlength: {
+ type: Number,
+ value: -1,
+ },
+ shape: {
+ type: String,
+ value: 'square',
+ },
+ clearable: {
+ type: Boolean,
+ value: true,
+ },
+ },
+ methods: {
+ onChange(event) {
+ if (canIUseModel()) {
+ this.setData({ value: event.detail });
+ }
+ this.$emit('change', event.detail);
+ },
+ onCancel() {
+ /**
+ * 修复修改输入框值时,输入框失焦和赋值同时触发,赋值失效
+ * https://github.com/youzan/@vant/weapp/issues/1768
+ */
+ setTimeout(() => {
+ if (canIUseModel()) {
+ this.setData({ value: '' });
+ }
+ this.$emit('cancel');
+ this.$emit('change', '');
+ }, 200);
+ },
+ onSearch(event) {
+ this.$emit('search', event.detail);
+ },
+ onFocus(event) {
+ this.$emit('focus', event.detail);
+ },
+ onBlur(event) {
+ this.$emit('blur', event.detail);
+ },
+ onClear(event) {
+ this.$emit('clear', event.detail);
+ },
+ },
+});
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/node_modules/@vant/weapp/dist/search/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/node_modules/@vant/weapp/dist/search/index.json"
new file mode 100644
index 0000000000000000000000000000000000000000..b4cfe918beacb1fe29d9c7bc488a9fc44968fcf1
--- /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/node_modules/@vant/weapp/dist/search/index.json"
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-field": "../field/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/node_modules/@vant/weapp/dist/search/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/node_modules/@vant/weapp/dist/search/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..1d0e6f1f1177a9a39a324ae314b7c75de5118065
--- /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/node_modules/@vant/weapp/dist/search/index.wxml"
@@ -0,0 +1,50 @@
+
+
+
+
+ {{ label }}
+
+
+
+
+
+
+
+
+
+
+ {{ actionText }}
+
+
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/node_modules/@vant/weapp/dist/search/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/node_modules/@vant/weapp/dist/search/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..c918deb85c2603893653d0256ae87e494fc9e8d1
--- /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/node_modules/@vant/weapp/dist/search/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-search{-webkit-align-items:center;align-items:center;box-sizing:border-box;padding:10px 12px;padding:var(--search-padding,10px 12px)}.van-search,.van-search__content{display:-webkit-flex;display:flex}.van-search__content{-webkit-flex:1;flex:1;padding-left:12px;padding-left:var(--padding-sm,12px);border-radius:2px;border-radius:var(--border-radius-sm,2px);background-color:#f7f8fa;background-color:var(--search-background-color,#f7f8fa)}.van-search__content--round{border-radius:17px;border-radius:calc(var(--search-input-height, 34px)/2)}.van-search__label{padding:0 5px;padding:var(--search-label-padding,0 5px);font-size:14px;font-size:var(--search-label-font-size,14px);line-height:34px;line-height:var(--search-input-height,34px);color:#323233;color:var(--search-label-color,#323233)}.van-search__field{-webkit-flex:1;flex:1}.van-search__field__left-icon{color:#969799;color:var(--search-left-icon-color,#969799)}.van-search--withaction{padding-right:0}.van-search__action{padding:0 8px;padding:var(--search-action-padding,0 8px);font-size:14px;font-size:var(--search-action-font-size,14px);line-height:34px;line-height:var(--search-input-height,34px);color:#323233;color:var(--search-action-text-color,#323233)}.van-search__action--hover{background-color:#f2f3f5;background-color:var(--active-color,#f2f3f5)}
\ 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/node_modules/@vant/weapp/dist/share-sheet/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/share-sheet/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/share-sheet/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/share-sheet/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/node_modules/@vant/weapp/dist/share-sheet/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..27d0c7be7f461c0b5c6f282564971516ccc1e176
--- /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/node_modules/@vant/weapp/dist/share-sheet/index.js"
@@ -0,0 +1,55 @@
+import { VantComponent } from '../common/component';
+VantComponent({
+ props: {
+ // whether to show popup
+ show: Boolean,
+ // overlay custom style
+ overlayStyle: Object,
+ // z-index
+ zIndex: {
+ type: Number,
+ value: 100,
+ },
+ title: String,
+ cancelText: {
+ type: String,
+ value: '取消',
+ },
+ description: String,
+ options: {
+ type: Array,
+ value: [],
+ },
+ overlay: {
+ type: Boolean,
+ value: true,
+ },
+ safeAreaInsetBottom: {
+ type: Boolean,
+ value: true,
+ },
+ closeOnClickOverlay: {
+ type: Boolean,
+ value: true,
+ },
+ duration: {
+ type: null,
+ value: 300,
+ },
+ },
+ methods: {
+ onClickOverlay() {
+ this.$emit('click-overlay');
+ },
+ onCancel() {
+ this.onClose();
+ this.$emit('cancel');
+ },
+ onSelect(event) {
+ this.$emit('select', event.detail);
+ },
+ onClose() {
+ this.$emit('close');
+ },
+ },
+});
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/node_modules/@vant/weapp/dist/share-sheet/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/node_modules/@vant/weapp/dist/share-sheet/index.json"
new file mode 100644
index 0000000000000000000000000000000000000000..15a7c2243dcbd380b0aa0b9416f608cafb90f7b5
--- /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/node_modules/@vant/weapp/dist/share-sheet/index.json"
@@ -0,0 +1,7 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-popup": "../popup/index",
+ "options": "./options"
+ }
+}
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/node_modules/@vant/weapp/dist/share-sheet/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/node_modules/@vant/weapp/dist/share-sheet/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..cefc3af44403c541579e60613262117abe524ab0
--- /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/node_modules/@vant/weapp/dist/share-sheet/index.wxml"
@@ -0,0 +1,46 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
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/node_modules/@vant/weapp/dist/share-sheet/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/node_modules/@vant/weapp/dist/share-sheet/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..2149ee9e43a28f022ab22429a82488c7aed8d2b4
--- /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/node_modules/@vant/weapp/dist/share-sheet/index.wxs"
@@ -0,0 +1,12 @@
+/* eslint-disable */
+function isMulti(options) {
+ if (options == null || options[0] == null) {
+ return false;
+ }
+
+ return "Array" === options.constructor && "Array" === options[0].constructor;
+}
+
+module.exports = {
+ isMulti: isMulti
+};
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/node_modules/@vant/weapp/dist/share-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/node_modules/@vant/weapp/dist/share-sheet/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..8d42eb270f26255df81254b9a9a489aff9ff9c9a
--- /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/node_modules/@vant/weapp/dist/share-sheet/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-share-sheet__header{padding:12px 16px 4px;text-align:center}.van-share-sheet__title{margin-top:8px;color:#323233;font-weight:400;font-size:14px;line-height:20px}.van-share-sheet__title:empty,.van-share-sheet__title:not(:empty)+.van-share-sheet__title{display:none}.van-share-sheet__description{display:block;margin-top:8px;color:#969799;font-size:12px;line-height:16px}.van-share-sheet__description:empty,.van-share-sheet__description:not(:empty)+.van-share-sheet__description{display:none}.van-share-sheet__cancel{display:block;box-sizing:initial;width:100%;height:auto;padding:0;font-size:16px;line-height:48px;text-align:center;background:#fff;border:none}.van-share-sheet__cancel:before{display:block;height:8px;background-color:#f7f8fa;content:" "}.van-share-sheet__cancel:after{display:none}.van-share-sheet__cancel:active{background-color:#f2f3f5}
\ 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/node_modules/@vant/weapp/dist/share-sheet/options.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/share-sheet/options.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/share-sheet/options.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/share-sheet/options.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/node_modules/@vant/weapp/dist/share-sheet/options.js"
new file mode 100644
index 0000000000000000000000000000000000000000..c1bd03b216a573070b7386a383f6c61ea863f9c6
--- /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/node_modules/@vant/weapp/dist/share-sheet/options.js"
@@ -0,0 +1,14 @@
+import { VantComponent } from '../common/component';
+VantComponent({
+ props: {
+ options: Array,
+ showBorder: Boolean,
+ },
+ methods: {
+ onSelect(event) {
+ const { index } = event.currentTarget.dataset;
+ const option = this.data.options[index];
+ this.$emit('select', Object.assign(Object.assign({}, option), { 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/node_modules/@vant/weapp/dist/share-sheet/options.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/node_modules/@vant/weapp/dist/share-sheet/options.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/node_modules/@vant/weapp/dist/share-sheet/options.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/node_modules/@vant/weapp/dist/share-sheet/options.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/node_modules/@vant/weapp/dist/share-sheet/options.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..cad68377251e99662ab45cf854e01eb2751ad0d4
--- /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/node_modules/@vant/weapp/dist/share-sheet/options.wxml"
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+ {{ item.name }}
+
+ {{ item.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/node_modules/@vant/weapp/dist/share-sheet/options.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/node_modules/@vant/weapp/dist/share-sheet/options.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..ab6033b915d37d99dabf034ecf327a5b5cbe59ff
--- /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/node_modules/@vant/weapp/dist/share-sheet/options.wxs"
@@ -0,0 +1,14 @@
+/* eslint-disable */
+var PRESET_ICONS = ['qq', 'weibo', 'wechat', 'link', 'qrcode', 'poster'];
+
+function getIconURL(icon) {
+ if (PRESET_ICONS.indexOf(icon) !== -1) {
+ return 'https://img.yzcdn.cn/vant/share-icon-' + icon + '.png';
+ }
+
+ return icon;
+}
+
+module.exports = {
+ getIconURL: getIconURL,
+};
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/node_modules/@vant/weapp/dist/share-sheet/options.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/node_modules/@vant/weapp/dist/share-sheet/options.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..ca7b02f294e620e4c9cf2e23aa3fae3407f5240c
--- /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/node_modules/@vant/weapp/dist/share-sheet/options.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-share-sheet__options{position:relative;display:-webkit-flex;display:flex;padding:16px 0 16px 8px;overflow-x:auto;overflow-y:visible;-webkit-overflow-scrolling:touch}.van-share-sheet__options--border:before{position:absolute;box-sizing:border-box;-webkit-transform-origin:center;transform-origin:center;content:" ";pointer-events:none;top:0;right:0;left:16px;border-top:1px solid #ebedf0;-webkit-transform:scaleY(.5);transform:scaleY(.5)}.van-share-sheet__options::-webkit-scrollbar{height:0}.van-share-sheet__option{display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;-webkit-align-items:center;align-items:center;-webkit-user-select:none;user-select:none}.van-share-sheet__option:active{opacity:.7}.van-share-sheet__button{height:auto;padding:0;line-height:inherit;background-color:initial;border:0}.van-share-sheet__button:after{border:0}.van-share-sheet__icon{width:48px;height:48px;margin:0 16px}.van-share-sheet__name{margin-top:8px;padding:0 4px;color:#646566;font-size:12px}.van-share-sheet__option-description{padding:0 4px;color:#c8c9cc;font-size:12px}
\ 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/node_modules/@vant/weapp/dist/sidebar-item/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/sidebar-item/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/sidebar-item/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/sidebar-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/node_modules/@vant/weapp/dist/sidebar-item/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..042db596596b795d23ce280c677ec6476a97dc29
--- /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/node_modules/@vant/weapp/dist/sidebar-item/index.js"
@@ -0,0 +1,29 @@
+import { VantComponent } from '../common/component';
+import { useParent } from '../common/relation';
+VantComponent({
+ classes: ['active-class', 'disabled-class'],
+ relation: useParent('sidebar'),
+ props: {
+ dot: Boolean,
+ badge: null,
+ info: null,
+ title: String,
+ disabled: Boolean,
+ },
+ methods: {
+ onClick() {
+ const { parent } = this;
+ if (!parent || this.data.disabled) {
+ return;
+ }
+ const index = parent.children.indexOf(this);
+ parent.setActive(index).then(() => {
+ this.$emit('click', index);
+ parent.$emit('change', index);
+ });
+ },
+ setActive(selected) {
+ return this.setData({ selected });
+ },
+ },
+});
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/node_modules/@vant/weapp/dist/sidebar-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/node_modules/@vant/weapp/dist/sidebar-item/index.json"
new file mode 100644
index 0000000000000000000000000000000000000000..bf0ebe009c3904229ff4005710f4136b55cf57aa
--- /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/node_modules/@vant/weapp/dist/sidebar-item/index.json"
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-info": "../info/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/node_modules/@vant/weapp/dist/sidebar-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/node_modules/@vant/weapp/dist/sidebar-item/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..c5c08a6269a93b5bf5cf484e71759bb9dda6f07a
--- /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/node_modules/@vant/weapp/dist/sidebar-item/index.wxml"
@@ -0,0 +1,18 @@
+
+
+
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/node_modules/@vant/weapp/dist/sidebar-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/node_modules/@vant/weapp/dist/sidebar-item/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..f134528f23c2f0d1701777cd9566ce3e14b4235e
--- /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/node_modules/@vant/weapp/dist/sidebar-item/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-sidebar-item{display:block;box-sizing:border-box;overflow:hidden;border-left:3px solid transparent;-webkit-user-select:none;user-select:none;padding:20px 12px 20px 8px;padding:var(--sidebar-padding,20px 12px 20px 8px);font-size:14px;font-size:var(--sidebar-font-size,14px);line-height:20px;line-height:var(--sidebar-line-height,20px);color:#323233;color:var(--sidebar-text-color,#323233);background-color:#f7f8fa;background-color:var(--sidebar-background-color,#f7f8fa)}.van-sidebar-item__text{position:relative;display:inline-block;word-break:break-all}.van-sidebar-item--hover:not(.van-sidebar-item--disabled){background-color:#f2f3f5;background-color:var(--sidebar-active-color,#f2f3f5)}.van-sidebar-item:after{border-bottom-width:1px}.van-sidebar-item--selected{color:#323233;color:var(--sidebar-selected-text-color,#323233);font-weight:500;font-weight:var(--sidebar-selected-font-weight,500);border-color:#ee0a24;border-color:var(--sidebar-selected-border-color,#ee0a24)}.van-sidebar-item--selected:after{border-right-width:1px}.van-sidebar-item--selected,.van-sidebar-item--selected.van-sidebar-item--hover{background-color:#fff;background-color:var(--sidebar-selected-background-color,#fff)}.van-sidebar-item--disabled{color:#c8c9cc;color:var(--sidebar-disabled-text-color,#c8c9cc)}
\ 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/node_modules/@vant/weapp/dist/sidebar/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/sidebar/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/sidebar/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/sidebar/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/node_modules/@vant/weapp/dist/sidebar/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..e44453307a2339a8b7ebfe5cd05a2ebc9fba343f
--- /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/node_modules/@vant/weapp/dist/sidebar/index.js"
@@ -0,0 +1,34 @@
+import { VantComponent } from '../common/component';
+import { useChildren } from '../common/relation';
+VantComponent({
+ relation: useChildren('sidebar-item', function () {
+ this.setActive(this.data.activeKey);
+ }),
+ props: {
+ activeKey: {
+ type: Number,
+ value: 0,
+ observer: 'setActive',
+ },
+ },
+ beforeCreate() {
+ this.currentActive = -1;
+ },
+ methods: {
+ setActive(activeKey) {
+ const { children, currentActive } = this;
+ if (!children.length) {
+ return Promise.resolve();
+ }
+ this.currentActive = activeKey;
+ const stack = [];
+ if (currentActive !== activeKey && children[currentActive]) {
+ stack.push(children[currentActive].setActive(false));
+ }
+ if (children[activeKey]) {
+ stack.push(children[activeKey].setActive(true));
+ }
+ return Promise.all(stack);
+ },
+ },
+});
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/node_modules/@vant/weapp/dist/sidebar/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/node_modules/@vant/weapp/dist/sidebar/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/node_modules/@vant/weapp/dist/sidebar/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/node_modules/@vant/weapp/dist/sidebar/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/node_modules/@vant/weapp/dist/sidebar/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..96b11c718ee3d34e79a90c18b2a16be06259a1da
--- /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/node_modules/@vant/weapp/dist/sidebar/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/node_modules/@vant/weapp/dist/sidebar/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/node_modules/@vant/weapp/dist/sidebar/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..8ad18841a2d5d1c81931addff1537deb800ea106
--- /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/node_modules/@vant/weapp/dist/sidebar/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-sidebar{width:80px;width:var(--sidebar-width,80px)}
\ 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/node_modules/@vant/weapp/dist/skeleton/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/skeleton/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/skeleton/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/skeleton/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/node_modules/@vant/weapp/dist/skeleton/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..aab922d0f73398c7d4b5816cb7ce800cae1fd6cc
--- /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/node_modules/@vant/weapp/dist/skeleton/index.js"
@@ -0,0 +1,46 @@
+import { VantComponent } from '../common/component';
+VantComponent({
+ classes: ['avatar-class', 'title-class', 'row-class'],
+ props: {
+ row: {
+ type: Number,
+ value: 0,
+ observer(value) {
+ this.setData({ rowArray: Array.from({ length: value }) });
+ },
+ },
+ title: Boolean,
+ avatar: Boolean,
+ loading: {
+ type: Boolean,
+ value: true,
+ },
+ animate: {
+ type: Boolean,
+ value: true,
+ },
+ avatarSize: {
+ type: String,
+ value: '32px',
+ },
+ avatarShape: {
+ type: String,
+ value: 'round',
+ },
+ titleWidth: {
+ type: String,
+ value: '40%',
+ },
+ rowWidth: {
+ type: null,
+ value: '100%',
+ observer(val) {
+ this.setData({ isArray: val instanceof Array });
+ },
+ },
+ },
+ data: {
+ isArray: false,
+ rowArray: [],
+ },
+});
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/node_modules/@vant/weapp/dist/skeleton/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/node_modules/@vant/weapp/dist/skeleton/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/node_modules/@vant/weapp/dist/skeleton/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/node_modules/@vant/weapp/dist/skeleton/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/node_modules/@vant/weapp/dist/skeleton/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..058e2efd1795f88f123873eec84f917902317145
--- /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/node_modules/@vant/weapp/dist/skeleton/index.wxml"
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
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/node_modules/@vant/weapp/dist/skeleton/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/node_modules/@vant/weapp/dist/skeleton/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..565b26e498348dd798c570c4abb86b9cc9fad90a
--- /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/node_modules/@vant/weapp/dist/skeleton/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-skeleton{display:-webkit-flex;display:flex;box-sizing:border-box;width:100%;padding:0 16px;padding:var(--skeleton-padding,0 16px)}.van-skeleton__avatar{-webkit-flex-shrink:0;flex-shrink:0;margin-right:16px;margin-right:var(--padding-md,16px);background-color:#f2f3f5;background-color:var(--skeleton-avatar-background-color,#f2f3f5)}.van-skeleton__avatar--round{border-radius:100%}.van-skeleton__content{-webkit-flex:1;flex:1}.van-skeleton__avatar+.van-skeleton__content{padding-top:8px;padding-top:var(--padding-xs,8px)}.van-skeleton__row,.van-skeleton__title{height:16px;height:var(--skeleton-row-height,16px);background-color:#f2f3f5;background-color:var(--skeleton-row-background-color,#f2f3f5)}.van-skeleton__title{margin:0}.van-skeleton__row:not(:first-child){margin-top:12px;margin-top:var(--skeleton-row-margin-top,12px)}.van-skeleton__title+.van-skeleton__row{margin-top:20px}.van-skeleton--animate{-webkit-animation:van-skeleton-blink 1.2s ease-in-out infinite;animation:van-skeleton-blink 1.2s ease-in-out infinite}@-webkit-keyframes van-skeleton-blink{50%{opacity:.6}}@keyframes van-skeleton-blink{50%{opacity:.6}}
\ 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/node_modules/@vant/weapp/dist/slider/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/slider/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/slider/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/slider/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/node_modules/@vant/weapp/dist/slider/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..36291e7195f76972992c0361f6562b9b94f3d1b3
--- /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/node_modules/@vant/weapp/dist/slider/index.js"
@@ -0,0 +1,107 @@
+import { VantComponent } from '../common/component';
+import { touch } from '../mixins/touch';
+import { canIUseModel } from '../common/version';
+import { getRect } from '../common/utils';
+VantComponent({
+ mixins: [touch],
+ props: {
+ disabled: Boolean,
+ useButtonSlot: Boolean,
+ activeColor: String,
+ inactiveColor: String,
+ max: {
+ type: Number,
+ value: 100,
+ },
+ min: {
+ type: Number,
+ value: 0,
+ },
+ step: {
+ type: Number,
+ value: 1,
+ },
+ value: {
+ type: Number,
+ value: 0,
+ observer(val) {
+ if (val !== this.value) {
+ this.updateValue(val);
+ }
+ },
+ },
+ barHeight: {
+ type: null,
+ value: 2,
+ },
+ },
+ created() {
+ this.updateValue(this.data.value);
+ },
+ methods: {
+ onTouchStart(event) {
+ if (this.data.disabled) return;
+ this.touchStart(event);
+ this.startValue = this.format(this.value);
+ this.dragStatus = 'start';
+ },
+ onTouchMove(event) {
+ if (this.data.disabled) return;
+ if (this.dragStatus === 'start') {
+ this.$emit('drag-start');
+ }
+ this.touchMove(event);
+ this.dragStatus = 'draging';
+ getRect(this, '.van-slider').then((rect) => {
+ const diff = (this.deltaX / rect.width) * this.getRange();
+ this.newValue = this.startValue + diff;
+ this.updateValue(this.newValue, false, true);
+ });
+ },
+ onTouchEnd() {
+ if (this.data.disabled) return;
+ if (this.dragStatus === 'draging') {
+ this.updateValue(this.newValue, true);
+ this.$emit('drag-end');
+ }
+ },
+ onClick(event) {
+ if (this.data.disabled) return;
+ const { min } = this.data;
+ getRect(this, '.van-slider').then((rect) => {
+ const value =
+ ((event.detail.x - rect.left) / rect.width) * this.getRange() + min;
+ this.updateValue(value, true);
+ });
+ },
+ updateValue(value, end, drag) {
+ value = this.format(value);
+ const { min } = this.data;
+ const width = `${((value - min) * 100) / this.getRange()}%`;
+ this.value = value;
+ this.setData({
+ barStyle: `
+ width: ${width};
+ ${drag ? 'transition: none;' : ''}
+ `,
+ });
+ if (drag) {
+ this.$emit('drag', { value });
+ }
+ if (end) {
+ this.$emit('change', value);
+ }
+ if ((drag || end) && canIUseModel()) {
+ this.setData({ value });
+ }
+ },
+ getRange() {
+ const { max, min } = this.data;
+ return max - min;
+ },
+ format(value) {
+ const { max, min, step } = this.data;
+ return Math.round(Math.max(min, Math.min(value, max)) / step) * step;
+ },
+ },
+});
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/node_modules/@vant/weapp/dist/slider/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/node_modules/@vant/weapp/dist/slider/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/node_modules/@vant/weapp/dist/slider/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/node_modules/@vant/weapp/dist/slider/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/node_modules/@vant/weapp/dist/slider/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..6a430f386a5f23350eb66a0ce7eff2e6b3922540
--- /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/node_modules/@vant/weapp/dist/slider/index.wxml"
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
+
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/node_modules/@vant/weapp/dist/slider/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/node_modules/@vant/weapp/dist/slider/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..7c43e6e538d88540791c53a17acdd75de03d6f2d
--- /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/node_modules/@vant/weapp/dist/slider/index.wxs"
@@ -0,0 +1,14 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function barStyle(barHeight, activeColor) {
+ return style({
+ height: addUnit(barHeight),
+ background: activeColor,
+ });
+}
+
+module.exports = {
+ barStyle: barStyle,
+};
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/node_modules/@vant/weapp/dist/slider/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/node_modules/@vant/weapp/dist/slider/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..7886b6065739a504747bc8aa5bab339b83748fb7
--- /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/node_modules/@vant/weapp/dist/slider/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-slider{position:relative;border-radius:999px;border-radius:var(--border-radius-max,999px);background-color:#ebedf0;background-color:var(--slider-inactive-background-color,#ebedf0)}.van-slider:before{position:absolute;right:0;left:0;content:"";top:-8px;top:-var(--padding-xs,8px);bottom:-8px;bottom:-var(--padding-xs,8px)}.van-slider__bar{position:relative;border-radius:inherit;transition:width .2s;transition:width var(--animation-duration-fast,.2s);background-color:#1989fa;background-color:var(--slider-active-background-color,#1989fa)}.van-slider__button{width:24px;height:24px;border-radius:50%;box-shadow:0 1px 2px rgba(0,0,0,.5);background-color:#fff;background-color:var(--slider-button-background-color,#fff)}.van-slider__button-wrapper{position:absolute;top:50%;right:0;-webkit-transform:translate3d(50%,-50%,0);transform:translate3d(50%,-50%,0)}.van-slider--disabled{opacity:.5}
\ 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/node_modules/@vant/weapp/dist/stepper/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/stepper/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/stepper/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/stepper/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/node_modules/@vant/weapp/dist/stepper/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..6ea0da542c7fc543fc084f15fc0fc61287d9caef
--- /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/node_modules/@vant/weapp/dist/stepper/index.js"
@@ -0,0 +1,194 @@
+import { VantComponent } from '../common/component';
+import { isDef } from '../common/validator';
+const LONG_PRESS_START_TIME = 600;
+const LONG_PRESS_INTERVAL = 200;
+// add num and avoid float number
+function add(num1, num2) {
+ const cardinal = Math.pow(10, 10);
+ return Math.round((num1 + num2) * cardinal) / cardinal;
+}
+function equal(value1, value2) {
+ return String(value1) === String(value2);
+}
+VantComponent({
+ field: true,
+ classes: ['input-class', 'plus-class', 'minus-class'],
+ props: {
+ value: {
+ type: null,
+ observer: 'observeValue',
+ },
+ integer: {
+ type: Boolean,
+ observer: 'check',
+ },
+ disabled: Boolean,
+ inputWidth: String,
+ buttonSize: String,
+ asyncChange: Boolean,
+ disableInput: Boolean,
+ decimalLength: {
+ type: Number,
+ value: null,
+ observer: 'check',
+ },
+ min: {
+ type: null,
+ value: 1,
+ observer: 'check',
+ },
+ max: {
+ type: null,
+ value: Number.MAX_SAFE_INTEGER,
+ observer: 'check',
+ },
+ step: {
+ type: null,
+ value: 1,
+ },
+ showPlus: {
+ type: Boolean,
+ value: true,
+ },
+ showMinus: {
+ type: Boolean,
+ value: true,
+ },
+ disablePlus: Boolean,
+ disableMinus: Boolean,
+ longPress: {
+ type: Boolean,
+ value: true,
+ },
+ theme: String,
+ },
+ data: {
+ currentValue: '',
+ },
+ created() {
+ this.setData({
+ currentValue: this.format(this.data.value),
+ });
+ },
+ methods: {
+ observeValue() {
+ const { value, currentValue } = this.data;
+ if (!equal(value, currentValue)) {
+ this.setData({ currentValue: this.format(value) });
+ }
+ },
+ check() {
+ const val = this.format(this.data.currentValue);
+ if (!equal(val, this.data.currentValue)) {
+ this.setData({ currentValue: val });
+ }
+ },
+ isDisabled(type) {
+ const {
+ disabled,
+ disablePlus,
+ disableMinus,
+ currentValue,
+ max,
+ min,
+ } = this.data;
+ if (type === 'plus') {
+ return disabled || disablePlus || currentValue >= max;
+ }
+ return disabled || disableMinus || currentValue <= min;
+ },
+ onFocus(event) {
+ this.$emit('focus', event.detail);
+ },
+ onBlur(event) {
+ const value = this.format(event.detail.value);
+ this.emitChange(value);
+ this.$emit(
+ 'blur',
+ Object.assign(Object.assign({}, event.detail), { value })
+ );
+ },
+ // filter illegal characters
+ filter(value) {
+ value = String(value).replace(/[^0-9.-]/g, '');
+ if (this.data.integer && value.indexOf('.') !== -1) {
+ value = value.split('.')[0];
+ }
+ return value;
+ },
+ // limit value range
+ format(value) {
+ value = this.filter(value);
+ // format range
+ value = value === '' ? 0 : +value;
+ value = Math.max(Math.min(this.data.max, value), this.data.min);
+ // format decimal
+ if (isDef(this.data.decimalLength)) {
+ value = value.toFixed(this.data.decimalLength);
+ }
+ return value;
+ },
+ onInput(event) {
+ const { value = '' } = event.detail || {};
+ // allow input to be empty
+ if (value === '') {
+ return;
+ }
+ let formatted = this.filter(value);
+ // limit max decimal length
+ if (isDef(this.data.decimalLength) && formatted.indexOf('.') !== -1) {
+ const pair = formatted.split('.');
+ formatted = `${pair[0]}.${pair[1].slice(0, this.data.decimalLength)}`;
+ }
+ this.emitChange(formatted);
+ },
+ emitChange(value) {
+ if (!this.data.asyncChange) {
+ this.setData({ currentValue: value });
+ }
+ this.$emit('change', value);
+ },
+ onChange() {
+ const { type } = this;
+ if (this.isDisabled(type)) {
+ this.$emit('overlimit', type);
+ return;
+ }
+ const diff = type === 'minus' ? -this.data.step : +this.data.step;
+ const value = this.format(add(+this.data.currentValue, diff));
+ this.emitChange(value);
+ this.$emit(type);
+ },
+ longPressStep() {
+ this.longPressTimer = setTimeout(() => {
+ this.onChange();
+ this.longPressStep();
+ }, LONG_PRESS_INTERVAL);
+ },
+ onTap(event) {
+ const { type } = event.currentTarget.dataset;
+ this.type = type;
+ this.onChange();
+ },
+ onTouchStart(event) {
+ if (!this.data.longPress) {
+ return;
+ }
+ clearTimeout(this.longPressTimer);
+ const { type } = event.currentTarget.dataset;
+ this.type = type;
+ this.isLongPress = false;
+ this.longPressTimer = setTimeout(() => {
+ this.isLongPress = true;
+ this.onChange();
+ this.longPressStep();
+ }, LONG_PRESS_START_TIME);
+ },
+ onTouchEnd() {
+ if (!this.data.longPress) {
+ return;
+ }
+ clearTimeout(this.longPressTimer);
+ },
+ },
+});
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/node_modules/@vant/weapp/dist/stepper/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/node_modules/@vant/weapp/dist/stepper/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/node_modules/@vant/weapp/dist/stepper/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/node_modules/@vant/weapp/dist/stepper/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/node_modules/@vant/weapp/dist/stepper/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..b49140e50894666d06543a87c844fd590de8366b
--- /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/node_modules/@vant/weapp/dist/stepper/index.wxml"
@@ -0,0 +1,42 @@
+
+
+
+
+
+
+
+
+
+
+
+
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/node_modules/@vant/weapp/dist/stepper/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/node_modules/@vant/weapp/dist/stepper/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..a13e818bffddcd11afb49185715c19fa4c07c091
--- /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/node_modules/@vant/weapp/dist/stepper/index.wxs"
@@ -0,0 +1,22 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function buttonStyle(data) {
+ return style({
+ width: addUnit(data.buttonSize),
+ height: addUnit(data.buttonSize),
+ });
+}
+
+function inputStyle(data) {
+ return style({
+ width: addUnit(data.inputWidth),
+ height: addUnit(data.buttonSize),
+ });
+}
+
+module.exports = {
+ buttonStyle: buttonStyle,
+ 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/node_modules/@vant/weapp/dist/stepper/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/node_modules/@vant/weapp/dist/stepper/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..e924a2b9f6625fb45440ca34de55a786b5bfcc21
--- /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/node_modules/@vant/weapp/dist/stepper/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-stepper{font-size:0}.van-stepper__minus,.van-stepper__plus{position:relative;display:inline-block;box-sizing:border-box;margin:1px;vertical-align:middle;border:0;background-color:#f2f3f5;background-color:var(--stepper-background-color,#f2f3f5);color:#323233;color:var(--stepper-button-icon-color,#323233);width:28px;width:var(--stepper-input-height,28px);height:28px;height:var(--stepper-input-height,28px);padding:4px;padding:var(--padding-base,4px)}.van-stepper__minus:before,.van-stepper__plus:before{width:9px;height:1px}.van-stepper__minus:after,.van-stepper__plus:after{width:1px;height:9px}.van-stepper__minus:empty.van-stepper__minus:after,.van-stepper__minus:empty.van-stepper__minus:before,.van-stepper__minus:empty.van-stepper__plus:after,.van-stepper__minus:empty.van-stepper__plus:before,.van-stepper__plus:empty.van-stepper__minus:after,.van-stepper__plus:empty.van-stepper__minus:before,.van-stepper__plus:empty.van-stepper__plus:after,.van-stepper__plus:empty.van-stepper__plus:before{position:absolute;top:0;right:0;bottom:0;left:0;margin:auto;background-color:currentColor;content:""}.van-stepper__minus--hover,.van-stepper__plus--hover{background-color:#e8e8e8;background-color:var(--stepper-active-color,#e8e8e8)}.van-stepper__minus--disabled,.van-stepper__plus--disabled{color:#c8c9cc;color:var(--stepper-button-disabled-icon-color,#c8c9cc)}.van-stepper__minus--disabled,.van-stepper__minus--disabled.van-stepper__minus--hover,.van-stepper__minus--disabled.van-stepper__plus--hover,.van-stepper__plus--disabled,.van-stepper__plus--disabled.van-stepper__minus--hover,.van-stepper__plus--disabled.van-stepper__plus--hover{background-color:#f7f8fa;background-color:var(--stepper-button-disabled-color,#f7f8fa)}.van-stepper__minus{border-radius:4px 0 0 4px;border-radius:var(--stepper-border-radius,4px) 0 0 var(--stepper-border-radius,4px)}.van-stepper__minus:after{display:none}.van-stepper__plus{border-radius:0 4px 4px 0;border-radius:0 var(--stepper-border-radius,4px) var(--stepper-border-radius,4px) 0}.van-stepper--round .van-stepper__input{background-color:initial!important}.van-stepper--round .van-stepper__minus,.van-stepper--round .van-stepper__plus{border-radius:100%}.van-stepper--round .van-stepper__minus:active,.van-stepper--round .van-stepper__plus:active{opacity:.7}.van-stepper--round .van-stepper__minus--disabled,.van-stepper--round .van-stepper__minus--disabled:active,.van-stepper--round .van-stepper__plus--disabled,.van-stepper--round .van-stepper__plus--disabled:active{opacity:.3}.van-stepper--round .van-stepper__plus{color:#fff;background-color:#ee0a24}.van-stepper--round .van-stepper__minus{color:#ee0a24;background-color:#fff;border:1px solid #ee0a24}.van-stepper__input{display:inline-block;box-sizing:border-box;min-height:0;margin:1px;padding:1px;text-align:center;vertical-align:middle;border:0;border-width:1px 0;border-radius:0;-webkit-appearance:none;font-size:14px;font-size:var(--stepper-input-font-size,14px);color:#323233;color:var(--stepper-input-text-color,#323233);background-color:#f2f3f5;background-color:var(--stepper-background-color,#f2f3f5);width:32px;width:var(--stepper-input-width,32px);height:28px;height:var(--stepper-input-height,28px)}.van-stepper__input--disabled{color:#c8c9cc;color:var(--stepper-input-disabled-text-color,#c8c9cc);background-color:#f2f3f5;background-color:var(--stepper-input-disabled-background-color,#f2f3f5)}
\ 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/node_modules/@vant/weapp/dist/steps/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/steps/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/steps/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/steps/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/node_modules/@vant/weapp/dist/steps/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..a89ed4a8ea4a40113a8d99d4bcce506d0629d2a9
--- /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/node_modules/@vant/weapp/dist/steps/index.js"
@@ -0,0 +1,33 @@
+import { VantComponent } from '../common/component';
+import { GREEN, GRAY_DARK } from '../common/color';
+VantComponent({
+ classes: ['desc-class'],
+ props: {
+ icon: String,
+ steps: Array,
+ active: Number,
+ direction: {
+ type: String,
+ value: 'horizontal',
+ },
+ activeColor: {
+ type: String,
+ value: GREEN,
+ },
+ inactiveColor: {
+ type: String,
+ value: GRAY_DARK,
+ },
+ activeIcon: {
+ type: String,
+ value: 'checked',
+ },
+ inactiveIcon: String,
+ },
+ methods: {
+ onClick(event) {
+ const { index } = event.currentTarget.dataset;
+ this.$emit('click-step', 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/node_modules/@vant/weapp/dist/steps/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/node_modules/@vant/weapp/dist/steps/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/node_modules/@vant/weapp/dist/steps/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/node_modules/@vant/weapp/dist/steps/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/node_modules/@vant/weapp/dist/steps/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..6180b4173e54ca9720c45d8710e798c2b9584531
--- /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/node_modules/@vant/weapp/dist/steps/index.wxml"
@@ -0,0 +1,54 @@
+
+
+
+
+
+
+ {{ item.text }}
+ {{ item.desc }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+function get(index, active) {
+ if (index < active) {
+ return 'finish';
+ } else if (index === active) {
+ return 'process';
+ }
+
+ return 'inactive';
+}
+
+module.exports = get;
+
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/node_modules/@vant/weapp/dist/steps/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/node_modules/@vant/weapp/dist/steps/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..2c50b1abedd7a082e3ce52d2d416a54ca87dc437
--- /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/node_modules/@vant/weapp/dist/steps/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-steps{overflow:hidden;background-color:#fff;background-color:var(--steps-background-color,#fff)}.van-steps--horizontal{padding:10px}.van-steps--horizontal .van-step__wrapper{position:relative;display:-webkit-flex;display:flex;overflow:hidden}.van-steps--vertical{padding-left:10px}.van-steps--vertical .van-step__wrapper{padding:0 0 0 20px}.van-step{position:relative;-webkit-flex:1;flex:1;font-size:14px;font-size:var(--step-font-size,14px);color:#969799;color:var(--step-text-color,#969799)}.van-step--finish{color:#323233;color:var(--step-finish-text-color,#323233)}.van-step__circle{border-radius:50%;width:5px;width:var(--step-circle-size,5px);height:5px;height:var(--step-circle-size,5px);background-color:#969799;background-color:var(--step-circle-color,#969799)}.van-step--horizontal{padding-bottom:14px}.van-step--horizontal:first-child .van-step__title{-webkit-transform:none;transform:none}.van-step--horizontal:first-child .van-step__circle-container{padding:0 8px 0 0;-webkit-transform:translate3d(0,50%,0);transform:translate3d(0,50%,0)}.van-step--horizontal:last-child{position:absolute;right:0;width:auto}.van-step--horizontal:last-child .van-step__title{text-align:right;-webkit-transform:none;transform:none}.van-step--horizontal:last-child .van-step__circle-container{right:0;padding:0 0 0 8px;-webkit-transform:translate3d(0,50%,0);transform:translate3d(0,50%,0)}.van-step--horizontal .van-step__circle-container{position:absolute;bottom:6px;z-index:1;-webkit-transform:translate3d(-50%,50%,0);transform:translate3d(-50%,50%,0);background-color:#fff;background-color:var(--white,#fff);padding:0 8px;padding:0 var(--padding-xs,8px)}.van-step--horizontal .van-step__title{display:inline-block;-webkit-transform:translate3d(-50%,0,0);transform:translate3d(-50%,0,0);font-size:12px;font-size:var(--step-horizontal-title-font-size,12px)}.van-step--horizontal .van-step__line{position:absolute;right:0;bottom:6px;left:0;height:1px;-webkit-transform:translate3d(0,50%,0);transform:translate3d(0,50%,0);background-color:#ebedf0;background-color:var(--step-line-color,#ebedf0)}.van-step--horizontal.van-step--process{color:#323233;color:var(--step-process-text-color,#323233)}.van-step--horizontal.van-step--process .van-step__icon{display:block;line-height:1;font-size:12px;font-size:var(--step-icon-size,12px)}.van-step--vertical{padding:10px 10px 10px 0;line-height:18px}.van-step--vertical:after{border-bottom-width:1px}.van-step--vertical:last-child:after{border-bottom-width:none}.van-step--vertical:first-child:before{position:absolute;top:0;left:-15px;z-index:1;width:1px;height:20px;content:"";background-color:#fff;background-color:var(--white,#fff)}.van-step--vertical .van-step__circle,.van-step--vertical .van-step__icon,.van-step--vertical .van-step__line{position:absolute;top:19px;left:-14px;z-index:2;-webkit-transform:translate3d(-50%,-50%,0);transform:translate3d(-50%,-50%,0)}.van-step--vertical .van-step__icon{line-height:1;font-size:12px;font-size:var(--step-icon-size,12px)}.van-step--vertical .van-step__line{z-index:1;width:1px;height:100%;-webkit-transform:translate3d(-50%,0,0);transform:translate3d(-50%,0,0);background-color:#ebedf0;background-color:var(--step-line-color,#ebedf0)}
\ 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/node_modules/@vant/weapp/dist/sticky/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/sticky/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/sticky/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/sticky/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/node_modules/@vant/weapp/dist/sticky/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..23aa7eaa26e3837d0cda8024cb6bdbcf319c8179
--- /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/node_modules/@vant/weapp/dist/sticky/index.js"
@@ -0,0 +1,113 @@
+import { getRect } from '../common/utils';
+import { VantComponent } from '../common/component';
+import { pageScrollMixin } from '../mixins/page-scroll';
+const ROOT_ELEMENT = '.van-sticky';
+VantComponent({
+ props: {
+ zIndex: {
+ type: Number,
+ value: 99,
+ },
+ offsetTop: {
+ type: Number,
+ value: 0,
+ observer: 'onScroll',
+ },
+ disabled: {
+ type: Boolean,
+ observer: 'onScroll',
+ },
+ container: {
+ type: null,
+ observer: 'onScroll',
+ },
+ scrollTop: {
+ type: null,
+ observer(val) {
+ this.onScroll({ scrollTop: val });
+ },
+ },
+ },
+ mixins: [
+ pageScrollMixin(function (event) {
+ if (this.data.scrollTop != null) {
+ return;
+ }
+ this.onScroll(event);
+ }),
+ ],
+ data: {
+ height: 0,
+ fixed: false,
+ transform: 0,
+ },
+ mounted() {
+ this.onScroll();
+ },
+ methods: {
+ onScroll({ scrollTop } = {}) {
+ const { container, offsetTop, disabled } = this.data;
+ if (disabled) {
+ this.setDataAfterDiff({
+ fixed: false,
+ transform: 0,
+ });
+ return;
+ }
+ this.scrollTop = scrollTop || this.scrollTop;
+ if (typeof container === 'function') {
+ Promise.all([
+ getRect(this, ROOT_ELEMENT),
+ this.getContainerRect(),
+ ]).then(([root, container]) => {
+ if (offsetTop + root.height > container.height + container.top) {
+ this.setDataAfterDiff({
+ fixed: false,
+ transform: container.height - root.height,
+ });
+ } else if (offsetTop >= root.top) {
+ this.setDataAfterDiff({
+ fixed: true,
+ height: root.height,
+ transform: 0,
+ });
+ } else {
+ this.setDataAfterDiff({ fixed: false, transform: 0 });
+ }
+ });
+ return;
+ }
+ getRect(this, ROOT_ELEMENT).then((root) => {
+ if (offsetTop >= root.top) {
+ this.setDataAfterDiff({ fixed: true, height: root.height });
+ this.transform = 0;
+ } else {
+ this.setDataAfterDiff({ fixed: false });
+ }
+ });
+ },
+ setDataAfterDiff(data) {
+ wx.nextTick(() => {
+ const diff = Object.keys(data).reduce((prev, key) => {
+ if (data[key] !== this.data[key]) {
+ prev[key] = data[key];
+ }
+ return prev;
+ }, {});
+ if (Object.keys(diff).length > 0) {
+ this.setData(diff);
+ }
+ this.$emit('scroll', {
+ scrollTop: this.scrollTop,
+ isFixed: data.fixed || this.data.fixed,
+ });
+ });
+ },
+ getContainerRect() {
+ const nodesRef = this.data.container();
+ return new Promise((resolve) =>
+ nodesRef.boundingClientRect(resolve).exec()
+ );
+ },
+ },
+});
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/node_modules/@vant/weapp/dist/sticky/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/node_modules/@vant/weapp/dist/sticky/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/node_modules/@vant/weapp/dist/sticky/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/node_modules/@vant/weapp/dist/sticky/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/node_modules/@vant/weapp/dist/sticky/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..15e9f4a8ae6ebd01ceffa4fc8e6323b0010f7154
--- /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/node_modules/@vant/weapp/dist/sticky/index.wxml"
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
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/node_modules/@vant/weapp/dist/sticky/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/node_modules/@vant/weapp/dist/sticky/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..be99d8931eb610212aa0ee50e053792fede6fb5b
--- /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/node_modules/@vant/weapp/dist/sticky/index.wxs"
@@ -0,0 +1,25 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function wrapStyle(data) {
+ return style({
+ transform: data.transform
+ ? 'translate3d(0, ' + data.transform + 'px, 0)'
+ : '',
+ top: data.fixed ? addUnit(data.offsetTop) : '',
+ 'z-index': data.zIndex,
+ });
+}
+
+function containerStyle(data) {
+ return style({
+ height: data.fixed ? addUnit(data.height) : '',
+ 'z-index': data.zIndex,
+ });
+}
+
+module.exports = {
+ wrapStyle: wrapStyle,
+ containerStyle: containerStyle,
+};
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/node_modules/@vant/weapp/dist/sticky/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/node_modules/@vant/weapp/dist/sticky/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..526938754d16df9f292dcddb7a2ac9f6d0431422
--- /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/node_modules/@vant/weapp/dist/sticky/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-sticky{position:relative}.van-sticky-wrap--fixed{position:fixed;right:0;left: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/node_modules/@vant/weapp/dist/submit-bar/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/submit-bar/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/submit-bar/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/submit-bar/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/node_modules/@vant/weapp/dist/submit-bar/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..4a888fff062b71c05946375074daa73db0cc7e3c
--- /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/node_modules/@vant/weapp/dist/submit-bar/index.js"
@@ -0,0 +1,57 @@
+import { VantComponent } from '../common/component';
+VantComponent({
+ classes: ['bar-class', 'price-class', 'button-class'],
+ props: {
+ tip: {
+ type: null,
+ observer: 'updateTip',
+ },
+ tipIcon: String,
+ type: Number,
+ price: {
+ type: null,
+ observer: 'updatePrice',
+ },
+ label: String,
+ loading: Boolean,
+ disabled: Boolean,
+ buttonText: String,
+ currency: {
+ type: String,
+ value: '¥',
+ },
+ buttonType: {
+ type: String,
+ value: 'danger',
+ },
+ decimalLength: {
+ type: Number,
+ value: 2,
+ observer: 'updatePrice',
+ },
+ suffixLabel: String,
+ safeAreaInsetBottom: {
+ type: Boolean,
+ value: true,
+ },
+ },
+ methods: {
+ updatePrice() {
+ const { price, decimalLength } = this.data;
+ const priceStrArr =
+ typeof price === 'number' &&
+ (price / 100).toFixed(decimalLength).split('.');
+ this.setData({
+ hasPrice: typeof price === 'number',
+ integerStr: priceStrArr && priceStrArr[0],
+ decimalStr: decimalLength && priceStrArr ? `.${priceStrArr[1]}` : '',
+ });
+ },
+ updateTip() {
+ this.setData({ hasTip: typeof this.data.tip === 'string' });
+ },
+ onSubmit(event) {
+ this.$emit('submit', event.detail);
+ },
+ },
+});
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/node_modules/@vant/weapp/dist/submit-bar/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/node_modules/@vant/weapp/dist/submit-bar/index.json"
new file mode 100644
index 0000000000000000000000000000000000000000..bda9b8d338609dd3ae9b10a6dc46a6f649d52b17
--- /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/node_modules/@vant/weapp/dist/submit-bar/index.json"
@@ -0,0 +1,7 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-button": "../button/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/node_modules/@vant/weapp/dist/submit-bar/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/node_modules/@vant/weapp/dist/submit-bar/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..a56dd46ce8c81a4b76275e8f128ae8a108b93ac8
--- /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/node_modules/@vant/weapp/dist/submit-bar/index.wxml"
@@ -0,0 +1,44 @@
+
+
+
+
+
+
+
+
+ {{ tip }}
+
+
+
+
+
+
+
+ {{ label || '合计:' }}
+
+ {{ currency }}
+ {{ integerStr }}{{decimalStr}}
+
+ {{ suffixLabel }}
+
+
+ {{ loading ? '' : buttonText }}
+
+
+
+
+
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/node_modules/@vant/weapp/dist/submit-bar/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/node_modules/@vant/weapp/dist/submit-bar/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..3126e91b80e379505885d841210d2cca263e34ad
--- /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/node_modules/@vant/weapp/dist/submit-bar/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-submit-bar{position:fixed;bottom:0;left:0;width:100%;-webkit-user-select:none;user-select:none;z-index:100;z-index:var(--submit-bar-z-index,100);background-color:#fff;background-color:var(--submit-bar-background-color,#fff)}.van-submit-bar__tip{padding:10px;padding:var(--submit-bar-tip-padding,10px);color:#f56723;color:var(--submit-bar-tip-color,#f56723);font-size:12px;font-size:var(--submit-bar-tip-font-size,12px);line-height:1.5;line-height:var(--submit-bar-tip-line-height,1.5);background-color:#fff7cc;background-color:var(--submit-bar-tip-background-color,#fff7cc)}.van-submit-bar__tip:empty{display:none}.van-submit-bar__tip-icon{width:12px;height:12px;margin-right:4px;vertical-align:middle;font-size:12px;font-size:var(--submit-bar-tip-icon-size,12px);min-width:18px;min-width:calc(var(--submit-bar-tip-icon-size, 12px)*1.5)}.van-submit-bar__tip-text{display:inline;vertical-align:middle}.van-submit-bar__bar{display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;-webkit-justify-content:flex-end;justify-content:flex-end;padding:0 16px;padding:var(--submit-bar-padding,0 16px);height:50px;height:var(--submit-bar-height,50px);font-size:14px;font-size:var(--submit-bar-text-font-size,14px);background-color:#fff;background-color:var(--submit-bar-background-color,#fff)}.van-submit-bar__safe{height:constant(safe-area-inset-bottom);height:env(safe-area-inset-bottom)}.van-submit-bar__text{-webkit-flex:1;flex:1;text-align:right;color:#323233;color:var(--submit-bar-text-color,#323233);padding-right:12px;padding-right:var(--padding-sm,12px)}.van-submit-bar__price,.van-submit-bar__text{font-weight:500;font-weight:var(--font-weight-bold,500)}.van-submit-bar__price{color:#ee0a24;color:var(--submit-bar-price-color,#ee0a24);font-size:12px;font-size:var(--submit-bar-price-font-size,12px)}.van-submit-bar__price-integer{font-size:20px;font-family:Avenir-Heavy,PingFang SC,Helvetica Neue,Arial,sans-serif}.van-submit-bar__currency{font-size:12px;font-size:var(--submit-bar-currency-font-size,12px)}.van-submit-bar__suffix-label{margin-left:5px}.van-submit-bar__button{width:110px;width:var(--submit-bar-button-width,110px);font-weight:500;font-weight:var(--font-weight-bold,500);--button-default-height:40px!important;--button-default-height:var(--submit-bar-button-height,40px)!important;--button-line-height:40px!important;--button-line-height:var(--submit-bar-button-height,40px)!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/node_modules/@vant/weapp/dist/swipe-cell/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/swipe-cell/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/swipe-cell/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/swipe-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/node_modules/@vant/weapp/dist/swipe-cell/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..216ffb0ee3a940bd5d1f38ea594678a3f5cc6252
--- /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/node_modules/@vant/weapp/dist/swipe-cell/index.js"
@@ -0,0 +1,132 @@
+import { VantComponent } from '../common/component';
+import { touch } from '../mixins/touch';
+import { range } from '../common/utils';
+const THRESHOLD = 0.3;
+let ARRAY = [];
+VantComponent({
+ props: {
+ disabled: Boolean,
+ leftWidth: {
+ type: Number,
+ value: 0,
+ observer(leftWidth = 0) {
+ if (this.offset > 0) {
+ this.swipeMove(leftWidth);
+ }
+ },
+ },
+ rightWidth: {
+ type: Number,
+ value: 0,
+ observer(rightWidth = 0) {
+ if (this.offset < 0) {
+ this.swipeMove(-rightWidth);
+ }
+ },
+ },
+ asyncClose: Boolean,
+ name: {
+ type: null,
+ value: '',
+ },
+ },
+ mixins: [touch],
+ data: {
+ catchMove: false,
+ wrapperStyle: '',
+ },
+ created() {
+ this.offset = 0;
+ ARRAY.push(this);
+ },
+ destroyed() {
+ ARRAY = ARRAY.filter((item) => item !== this);
+ },
+ methods: {
+ open(position) {
+ const { leftWidth, rightWidth } = this.data;
+ const offset = position === 'left' ? leftWidth : -rightWidth;
+ this.swipeMove(offset);
+ this.$emit('open', {
+ position,
+ name: this.data.name,
+ });
+ },
+ close() {
+ this.swipeMove(0);
+ },
+ swipeMove(offset = 0) {
+ this.offset = range(offset, -this.data.rightWidth, this.data.leftWidth);
+ const transform = `translate3d(${this.offset}px, 0, 0)`;
+ const transition = this.dragging
+ ? 'none'
+ : 'transform .6s cubic-bezier(0.18, 0.89, 0.32, 1)';
+ this.setData({
+ wrapperStyle: `
+ -webkit-transform: ${transform};
+ -webkit-transition: ${transition};
+ transform: ${transform};
+ transition: ${transition};
+ `,
+ });
+ },
+ swipeLeaveTransition() {
+ const { leftWidth, rightWidth } = this.data;
+ const { offset } = this;
+ if (rightWidth > 0 && -offset > rightWidth * THRESHOLD) {
+ this.open('right');
+ } else if (leftWidth > 0 && offset > leftWidth * THRESHOLD) {
+ this.open('left');
+ } else {
+ this.swipeMove(0);
+ }
+ this.setData({ catchMove: false });
+ },
+ startDrag(event) {
+ if (this.data.disabled) {
+ return;
+ }
+ this.startOffset = this.offset;
+ this.touchStart(event);
+ },
+ noop() {},
+ onDrag(event) {
+ if (this.data.disabled) {
+ return;
+ }
+ this.touchMove(event);
+ if (this.direction !== 'horizontal') {
+ return;
+ }
+ this.dragging = true;
+ ARRAY.filter(
+ (item) => item !== this && item.offset !== 0
+ ).forEach((item) => item.close());
+ this.setData({ catchMove: true });
+ this.swipeMove(this.startOffset + this.deltaX);
+ },
+ endDrag() {
+ if (this.data.disabled) {
+ return;
+ }
+ this.dragging = false;
+ this.swipeLeaveTransition();
+ },
+ onClick(event) {
+ const { key: position = 'outside' } = event.currentTarget.dataset;
+ this.$emit('click', position);
+ if (!this.offset) {
+ return;
+ }
+ if (this.data.asyncClose) {
+ this.$emit('close', {
+ position,
+ instance: this,
+ name: this.data.name,
+ });
+ } else {
+ this.swipeMove(0);
+ }
+ },
+ },
+});
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/node_modules/@vant/weapp/dist/swipe-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/node_modules/@vant/weapp/dist/swipe-cell/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/node_modules/@vant/weapp/dist/swipe-cell/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/node_modules/@vant/weapp/dist/swipe-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/node_modules/@vant/weapp/dist/swipe-cell/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..3f7f7260895d329b8b21a85239a95e084d7ae125
--- /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/node_modules/@vant/weapp/dist/swipe-cell/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/node_modules/@vant/weapp/dist/swipe-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/node_modules/@vant/weapp/dist/swipe-cell/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..d6152709db7ca52744270fff39cfdf819af51847
--- /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/node_modules/@vant/weapp/dist/swipe-cell/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-swipe-cell{position:relative;overflow:hidden}.van-swipe-cell__left,.van-swipe-cell__right{position:absolute;top:0;height:100%}.van-swipe-cell__left{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.van-swipe-cell__right{right:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,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/node_modules/@vant/weapp/dist/switch/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/switch/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/switch/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/switch/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/node_modules/@vant/weapp/dist/switch/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..d25fd27e5f142529bc6e42daf5ff9f2867235a8c
--- /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/node_modules/@vant/weapp/dist/switch/index.js"
@@ -0,0 +1,36 @@
+import { VantComponent } from '../common/component';
+VantComponent({
+ field: true,
+ classes: ['node-class'],
+ props: {
+ checked: null,
+ loading: Boolean,
+ disabled: Boolean,
+ activeColor: String,
+ inactiveColor: String,
+ size: {
+ type: String,
+ value: '30',
+ },
+ activeValue: {
+ type: null,
+ value: true,
+ },
+ inactiveValue: {
+ type: null,
+ value: false,
+ },
+ },
+ methods: {
+ onClick() {
+ const { activeValue, inactiveValue, disabled, loading } = this.data;
+ if (disabled || loading) {
+ return;
+ }
+ const checked = this.data.checked === activeValue;
+ const value = checked ? inactiveValue : activeValue;
+ this.$emit('input', value);
+ this.$emit('change', 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/node_modules/@vant/weapp/dist/switch/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/node_modules/@vant/weapp/dist/switch/index.json"
new file mode 100644
index 0000000000000000000000000000000000000000..01077f5dafe4ea3780999933518963b8b6551d8d
--- /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/node_modules/@vant/weapp/dist/switch/index.json"
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "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/node_modules/@vant/weapp/dist/switch/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/node_modules/@vant/weapp/dist/switch/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..d45829bde48f9bc164249e1a47ec2ee6bdd1634b
--- /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/node_modules/@vant/weapp/dist/switch/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/node_modules/@vant/weapp/dist/switch/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/node_modules/@vant/weapp/dist/switch/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..1fb6530c54b8877603a7f1136f2b0035c56f3a42
--- /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/node_modules/@vant/weapp/dist/switch/index.wxs"
@@ -0,0 +1,26 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function rootStyle(data) {
+ var currentColor = data.checked ? data.activeColor : data.inactiveColor;
+
+ return style({
+ 'font-size': addUnit(data.size),
+ 'background-color': currentColor,
+ });
+}
+
+var BLUE = '#1989fa';
+var GRAY_DARK = '#969799';
+
+function loadingColor(data) {
+ return data.checked
+ ? data.activeColor || BLUE
+ : data.inactiveColor || GRAY_DARK;
+}
+
+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/node_modules/@vant/weapp/dist/switch/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/node_modules/@vant/weapp/dist/switch/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..e32a72ad3e9b6d1e6b7d7a4052afc7f7978f9e31
--- /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/node_modules/@vant/weapp/dist/switch/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-switch{position:relative;display:inline-block;box-sizing:initial;width:2em;width:var(--switch-width,2em);height:1em;height:var(--switch-height,1em);background-color:#fff;background-color:var(--switch-background-color,#fff);border:1px solid rgba(0,0,0,.1);border:var(--switch-border,1px solid rgba(0,0,0,.1));border-radius:1em;border-radius:var(--switch-node-size,1em);transition:background-color .3s;transition:background-color var(--switch-transition-duration,.3s)}.van-switch__node{position:absolute;top:0;left:0;border-radius:100%;z-index:1;z-index:var(--switch-node-z-index,1);width:1em;width:var(--switch-node-size,1em);height:1em;height:var(--switch-node-size,1em);background-color:#fff;background-color:var(--switch-node-background-color,#fff);box-shadow:0 3px 1px 0 rgba(0,0,0,.05),0 2px 2px 0 rgba(0,0,0,.1),0 3px 3px 0 rgba(0,0,0,.05);box-shadow:var(--switch-node-box-shadow,0 3px 1px 0 rgba(0,0,0,.05),0 2px 2px 0 rgba(0,0,0,.1),0 3px 3px 0 rgba(0,0,0,.05));transition:-webkit-transform .3s cubic-bezier(.3,1.05,.4,1.05);transition:transform .3s cubic-bezier(.3,1.05,.4,1.05);transition:transform .3s cubic-bezier(.3,1.05,.4,1.05),-webkit-transform .3s cubic-bezier(.3,1.05,.4,1.05);transition:-webkit-transform var(--switch-transition-duration,.3s) cubic-bezier(.3,1.05,.4,1.05);transition:transform var(--switch-transition-duration,.3s) cubic-bezier(.3,1.05,.4,1.05);transition:transform var(--switch-transition-duration,.3s) cubic-bezier(.3,1.05,.4,1.05),-webkit-transform var(--switch-transition-duration,.3s) cubic-bezier(.3,1.05,.4,1.05)}.van-switch__loading{position:absolute!important;top:25%;left:25%;width:50%;height:50%}.van-switch--on{background-color:#1989fa;background-color:var(--switch-on-background-color,#1989fa)}.van-switch--on .van-switch__node{-webkit-transform:translateX(1em);transform:translateX(1em);-webkit-transform:translateX(calc(var(--switch-width, 2em) - var(--switch-node-size, 1em)));transform:translateX(calc(var(--switch-width, 2em) - var(--switch-node-size, 1em)))}.van-switch--disabled{opacity:.4;opacity:var(--switch-disabled-opacity,.4)}
\ 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/node_modules/@vant/weapp/dist/tab/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/tab/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/tab/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/tab/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/node_modules/@vant/weapp/dist/tab/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..287825e6e501bfc31abda06c091a233161fb7a1d
--- /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/node_modules/@vant/weapp/dist/tab/index.js"
@@ -0,0 +1,56 @@
+import { useParent } from '../common/relation';
+import { VantComponent } from '../common/component';
+VantComponent({
+ relation: useParent('tabs'),
+ props: {
+ dot: {
+ type: Boolean,
+ observer: 'update',
+ },
+ info: {
+ type: null,
+ observer: 'update',
+ },
+ title: {
+ type: String,
+ observer: 'update',
+ },
+ disabled: {
+ type: Boolean,
+ observer: 'update',
+ },
+ titleStyle: {
+ type: String,
+ observer: 'update',
+ },
+ name: {
+ type: null,
+ value: '',
+ },
+ },
+ data: {
+ active: false,
+ },
+ methods: {
+ getComputedName() {
+ if (this.data.name !== '') {
+ return this.data.name;
+ }
+ return this.index;
+ },
+ updateRender(active, parent) {
+ const { data: parentData } = parent;
+ this.inited = this.inited || active;
+ this.setData({
+ active,
+ shouldRender: this.inited || !parentData.lazyRender,
+ shouldShow: active || parentData.animated,
+ });
+ },
+ update() {
+ if (this.parent) {
+ this.parent.updateTabs();
+ }
+ },
+ },
+});
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/node_modules/@vant/weapp/dist/tab/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/node_modules/@vant/weapp/dist/tab/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/node_modules/@vant/weapp/dist/tab/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/node_modules/@vant/weapp/dist/tab/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/node_modules/@vant/weapp/dist/tab/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..f5e99f2145b12c53b3c91150d9bb742ece67d0d9
--- /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/node_modules/@vant/weapp/dist/tab/index.wxml"
@@ -0,0 +1,8 @@
+
+
+
+
+
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/node_modules/@vant/weapp/dist/tab/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/node_modules/@vant/weapp/dist/tab/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..76ddf068482c2ffdd462e37aa0659a7975e813b5
--- /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/node_modules/@vant/weapp/dist/tab/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';:host{-webkit-flex-shrink:0;flex-shrink:0;width:100%}.van-tab__pane,:host{box-sizing:border-box}.van-tab__pane{overflow-y:auto;-webkit-overflow-scrolling:touch}.van-tab__pane--active{height:auto}.van-tab__pane--inactive{height:0;overflow:visible}
\ 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/node_modules/@vant/weapp/dist/tabbar-item/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/tabbar-item/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/tabbar-item/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/tabbar-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/node_modules/@vant/weapp/dist/tabbar-item/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..d323703f606d35ae788388c15df0da82ecc1ea6a
--- /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/node_modules/@vant/weapp/dist/tabbar-item/index.js"
@@ -0,0 +1,56 @@
+import { VantComponent } from '../common/component';
+import { useParent } from '../common/relation';
+VantComponent({
+ props: {
+ info: null,
+ name: null,
+ icon: String,
+ dot: Boolean,
+ iconPrefix: {
+ type: String,
+ value: 'van-icon',
+ },
+ },
+ relation: useParent('tabbar'),
+ data: {
+ active: false,
+ activeColor: '',
+ inactiveColor: '',
+ },
+ methods: {
+ onClick() {
+ const { parent } = this;
+ if (parent) {
+ const index = parent.children.indexOf(this);
+ const active = this.data.name || index;
+ if (active !== this.data.active) {
+ parent.$emit('change', active);
+ }
+ }
+ this.$emit('click');
+ },
+ updateFromParent() {
+ const { parent } = this;
+ if (!parent) {
+ return;
+ }
+ const index = parent.children.indexOf(this);
+ const parentData = parent.data;
+ const { data } = this;
+ const active = (data.name || index) === parentData.active;
+ const patch = {};
+ if (active !== data.active) {
+ patch.active = active;
+ }
+ if (parentData.activeColor !== data.activeColor) {
+ patch.activeColor = parentData.activeColor;
+ }
+ if (parentData.inactiveColor !== data.inactiveColor) {
+ patch.inactiveColor = parentData.inactiveColor;
+ }
+ if (Object.keys(patch).length > 0) {
+ this.setData(patch);
+ }
+ },
+ },
+});
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/node_modules/@vant/weapp/dist/tabbar-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/node_modules/@vant/weapp/dist/tabbar-item/index.json"
new file mode 100644
index 0000000000000000000000000000000000000000..16f174c55fee5e53021a59136c62bc968295a379
--- /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/node_modules/@vant/weapp/dist/tabbar-item/index.json"
@@ -0,0 +1,7 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-icon": "../icon/index",
+ "van-info": "../info/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/node_modules/@vant/weapp/dist/tabbar-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/node_modules/@vant/weapp/dist/tabbar-item/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..524728f34a4f907e1726abc059d760c1d178da95
--- /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/node_modules/@vant/weapp/dist/tabbar-item/index.wxml"
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
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/node_modules/@vant/weapp/dist/tabbar-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/node_modules/@vant/weapp/dist/tabbar-item/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..ff33bd21a10a5488026201585ee8b9add1e7bca8
--- /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/node_modules/@vant/weapp/dist/tabbar-item/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';:host{-webkit-flex:1;flex:1}.van-tabbar-item{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;height:100%;color:#646566;color:var(--tabbar-item-text-color,#646566);font-size:12px;font-size:var(--tabbar-item-font-size,12px);line-height:1;line-height:var(--tabbar-item-line-height,1)}.van-tabbar-item__icon{position:relative;margin-bottom:4px;margin-bottom:var(--tabbar-item-margin-bottom,4px);font-size:22px;font-size:var(--tabbar-item-icon-size,22px)}.van-tabbar-item__icon__inner{display:block;min-width:1em}.van-tabbar-item--active{color:#1989fa;color:var(--tabbar-item-active-color,#1989fa)}.van-tabbar-item__info{margin-top:2px}
\ 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/node_modules/@vant/weapp/dist/tabbar/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/tabbar/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/tabbar/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/tabbar/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/node_modules/@vant/weapp/dist/tabbar/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..33bef09238ad5b8a56d0cd4696260189a7ef1b06
--- /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/node_modules/@vant/weapp/dist/tabbar/index.js"
@@ -0,0 +1,65 @@
+import { VantComponent } from '../common/component';
+import { useChildren } from '../common/relation';
+import { getRect } from '../common/utils';
+VantComponent({
+ relation: useChildren('tabbar-item', function () {
+ this.updateChildren();
+ }),
+ props: {
+ active: {
+ type: null,
+ observer: 'updateChildren',
+ },
+ activeColor: {
+ type: String,
+ observer: 'updateChildren',
+ },
+ inactiveColor: {
+ type: String,
+ observer: 'updateChildren',
+ },
+ fixed: {
+ type: Boolean,
+ value: true,
+ observer: 'setHeight',
+ },
+ placeholder: {
+ type: Boolean,
+ observer: 'setHeight',
+ },
+ border: {
+ type: Boolean,
+ value: true,
+ },
+ zIndex: {
+ type: Number,
+ value: 1,
+ },
+ safeAreaInsetBottom: {
+ type: Boolean,
+ value: true,
+ },
+ },
+ data: {
+ height: 50,
+ },
+ methods: {
+ updateChildren() {
+ const { children } = this;
+ if (!Array.isArray(children) || !children.length) {
+ return;
+ }
+ children.forEach((child) => child.updateFromParent());
+ },
+ setHeight() {
+ if (!this.data.fixed || !this.data.placeholder) {
+ return;
+ }
+ wx.nextTick(() => {
+ getRect(this, '.van-tabbar').then((res) => {
+ this.setData({ height: res.height });
+ });
+ });
+ },
+ },
+});
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/node_modules/@vant/weapp/dist/tabbar/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/node_modules/@vant/weapp/dist/tabbar/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/node_modules/@vant/weapp/dist/tabbar/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/node_modules/@vant/weapp/dist/tabbar/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/node_modules/@vant/weapp/dist/tabbar/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..43bb11111d4cf459dcab0beee536960c863608f2
--- /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/node_modules/@vant/weapp/dist/tabbar/index.wxml"
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
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/node_modules/@vant/weapp/dist/tabbar/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/node_modules/@vant/weapp/dist/tabbar/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..68195697d69acc624250793feb0e0d101cae7b72
--- /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/node_modules/@vant/weapp/dist/tabbar/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-tabbar{display:-webkit-flex;display:flex;box-sizing:initial;width:100%;height:50px;height:var(--tabbar-height,50px);background-color:#fff;background-color:var(--tabbar-background-color,#fff)}.van-tabbar--fixed{position:fixed;bottom:0;left:0}.van-tabbar--safe{padding-bottom:env(safe-area-inset-bottom)}
\ 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/node_modules/@vant/weapp/dist/tabs/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/tabs/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/tabs/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/tabs/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/node_modules/@vant/weapp/dist/tabs/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..ec54096a5f37362f03f82c7c85a97a2577104560
--- /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/node_modules/@vant/weapp/dist/tabs/index.js"
@@ -0,0 +1,271 @@
+import { VantComponent } from '../common/component';
+import { touch } from '../mixins/touch';
+import {
+ getAllRect,
+ getRect,
+ groupSetData,
+ nextTick,
+ requestAnimationFrame,
+} from '../common/utils';
+import { isDef } from '../common/validator';
+import { useChildren } from '../common/relation';
+VantComponent({
+ mixins: [touch],
+ classes: ['nav-class', 'tab-class', 'tab-active-class', 'line-class'],
+ relation: useChildren('tab', function () {
+ this.updateTabs();
+ }),
+ props: {
+ sticky: Boolean,
+ border: Boolean,
+ swipeable: Boolean,
+ titleActiveColor: String,
+ titleInactiveColor: String,
+ color: String,
+ animated: {
+ type: Boolean,
+ observer() {
+ this.children.forEach((child, index) =>
+ child.updateRender(index === this.data.currentIndex, this)
+ );
+ },
+ },
+ lineWidth: {
+ type: null,
+ value: 40,
+ observer: 'resize',
+ },
+ lineHeight: {
+ type: null,
+ value: -1,
+ },
+ active: {
+ type: null,
+ value: 0,
+ observer(name) {
+ if (name !== this.getCurrentName()) {
+ this.setCurrentIndexByName(name);
+ }
+ },
+ },
+ type: {
+ type: String,
+ value: 'line',
+ },
+ ellipsis: {
+ type: Boolean,
+ value: true,
+ },
+ duration: {
+ type: Number,
+ value: 0.3,
+ },
+ zIndex: {
+ type: Number,
+ value: 1,
+ },
+ swipeThreshold: {
+ type: Number,
+ value: 5,
+ observer(value) {
+ this.setData({
+ scrollable: this.children.length > value || !this.data.ellipsis,
+ });
+ },
+ },
+ offsetTop: {
+ type: Number,
+ value: 0,
+ },
+ lazyRender: {
+ type: Boolean,
+ value: true,
+ },
+ },
+ data: {
+ tabs: [],
+ scrollLeft: 0,
+ scrollable: false,
+ currentIndex: 0,
+ container: null,
+ skipTransition: true,
+ lineOffsetLeft: 0,
+ },
+ mounted() {
+ requestAnimationFrame(() => {
+ this.setData({
+ container: () => this.createSelectorQuery().select('.van-tabs'),
+ });
+ this.resize(true);
+ this.scrollIntoView();
+ });
+ },
+ methods: {
+ updateTabs() {
+ const { children = [], data } = this;
+ this.setData({
+ tabs: children.map((child) => child.data),
+ scrollable:
+ this.children.length > data.swipeThreshold || !data.ellipsis,
+ });
+ this.setCurrentIndexByName(data.active || this.getCurrentName());
+ },
+ trigger(eventName, child) {
+ const { currentIndex } = this.data;
+ const currentChild = child || this.children[currentIndex];
+ if (!isDef(currentChild)) {
+ return;
+ }
+ this.$emit(eventName, {
+ index: currentChild.index,
+ name: currentChild.getComputedName(),
+ title: currentChild.data.title,
+ });
+ },
+ onTap(event) {
+ const { index } = event.currentTarget.dataset;
+ const child = this.children[index];
+ if (child.data.disabled) {
+ this.trigger('disabled', child);
+ } else {
+ this.setCurrentIndex(index);
+ nextTick(() => {
+ this.trigger('click');
+ });
+ }
+ },
+ // correct the index of active tab
+ setCurrentIndexByName(name) {
+ const { children = [] } = this;
+ const matched = children.filter(
+ (child) => child.getComputedName() === name
+ );
+ if (matched.length) {
+ this.setCurrentIndex(matched[0].index);
+ }
+ },
+ setCurrentIndex(currentIndex) {
+ const { data, children = [] } = this;
+ if (
+ !isDef(currentIndex) ||
+ currentIndex >= children.length ||
+ currentIndex < 0
+ ) {
+ return;
+ }
+ groupSetData(this, () => {
+ children.forEach((item, index) => {
+ const active = index === currentIndex;
+ if (active !== item.data.active || !item.inited) {
+ item.updateRender(active, this);
+ }
+ });
+ });
+ if (currentIndex === data.currentIndex) {
+ return;
+ }
+ const shouldEmitChange = data.currentIndex !== null;
+ this.setData({ currentIndex });
+ nextTick(() => {
+ this.resize();
+ this.scrollIntoView();
+ this.trigger('input');
+ if (shouldEmitChange) {
+ this.trigger('change');
+ }
+ });
+ },
+ getCurrentName() {
+ const activeTab = this.children[this.data.currentIndex];
+ if (activeTab) {
+ return activeTab.getComputedName();
+ }
+ },
+ resize(skipTransition = false) {
+ if (this.data.type !== 'line') {
+ return;
+ }
+ const { currentIndex, ellipsis } = this.data;
+ Promise.all([
+ getAllRect(this, '.van-tab'),
+ getRect(this, '.van-tabs__line'),
+ ]).then(([rects = [], lineRect]) => {
+ const rect = rects[currentIndex];
+ if (rect == null) {
+ return;
+ }
+ let lineOffsetLeft = rects
+ .slice(0, currentIndex)
+ .reduce((prev, curr) => prev + curr.width, 0);
+ lineOffsetLeft +=
+ (rect.width - lineRect.width) / 2 + (ellipsis ? 0 : 8);
+ this.setData({
+ lineOffsetLeft,
+ skipTransition,
+ });
+ });
+ },
+ // scroll active tab into view
+ scrollIntoView() {
+ const { currentIndex, scrollable } = this.data;
+ if (!scrollable) {
+ return;
+ }
+ Promise.all([
+ getAllRect(this, '.van-tab'),
+ getRect(this, '.van-tabs__nav'),
+ ]).then(([tabRects, navRect]) => {
+ const tabRect = tabRects[currentIndex];
+ const offsetLeft = tabRects
+ .slice(0, currentIndex)
+ .reduce((prev, curr) => prev + curr.width, 0);
+ this.setData({
+ scrollLeft: offsetLeft - (navRect.width - tabRect.width) / 2,
+ });
+ });
+ },
+ onTouchScroll(event) {
+ this.$emit('scroll', event.detail);
+ },
+ onTouchStart(event) {
+ if (!this.data.swipeable) return;
+ this.touchStart(event);
+ },
+ onTouchMove(event) {
+ if (!this.data.swipeable) return;
+ this.touchMove(event);
+ },
+ // watch swipe touch end
+ onTouchEnd() {
+ if (!this.data.swipeable) return;
+ const { direction, deltaX, offsetX } = this;
+ const minSwipeDistance = 50;
+ if (direction === 'horizontal' && offsetX >= minSwipeDistance) {
+ const index = this.getAvaiableTab(deltaX);
+ if (index !== -1) {
+ this.setCurrentIndex(index);
+ }
+ }
+ },
+ getAvaiableTab(direction) {
+ const { tabs, currentIndex } = this.data;
+ const step = direction > 0 ? -1 : 1;
+ for (
+ let i = step;
+ currentIndex + i < tabs.length && currentIndex + i >= 0;
+ i += step
+ ) {
+ const index = currentIndex + i;
+ if (
+ index >= 0 &&
+ index < tabs.length &&
+ tabs[index] &&
+ !tabs[index].disabled
+ ) {
+ return index;
+ }
+ }
+ return -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/node_modules/@vant/weapp/dist/tabs/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/node_modules/@vant/weapp/dist/tabs/index.json"
new file mode 100644
index 0000000000000000000000000000000000000000..19c0bc3a0830569890b895d1da038f64f981879c
--- /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/node_modules/@vant/weapp/dist/tabs/index.json"
@@ -0,0 +1,7 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-info": "../info/index",
+ "van-sticky": "../sticky/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/node_modules/@vant/weapp/dist/tabs/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/node_modules/@vant/weapp/dist/tabs/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..0dc346b2ee87bdb48957248d1b6306545acc182a
--- /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/node_modules/@vant/weapp/dist/tabs/index.wxml"
@@ -0,0 +1,63 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ item.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/node_modules/@vant/weapp/dist/tabs/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/node_modules/@vant/weapp/dist/tabs/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..a027c7b9c35d21d2e7420a9562bac7caf3acdf75
--- /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/node_modules/@vant/weapp/dist/tabs/index.wxs"
@@ -0,0 +1,82 @@
+/* eslint-disable */
+var utils = require('../wxs/utils.wxs');
+var style = require('../wxs/style.wxs');
+
+function tabClass(active, ellipsis) {
+ var classes = ['tab-class'];
+
+ if (active) {
+ classes.push('tab-active-class');
+ }
+
+ if (ellipsis) {
+ classes.push('van-ellipsis');
+ }
+
+ return classes.join(' ');
+}
+
+function tabStyle(data) {
+ var titleColor = data.active
+ ? data.titleActiveColor
+ : data.titleInactiveColor;
+
+ var ellipsis = data.scrollable && data.ellipsis;
+
+ // card theme color
+ if (data.type === 'card') {
+ return style({
+ 'border-color': data.color,
+ 'background-color': !data.disabled && data.active ? data.color : null,
+ color: titleColor || (!data.disabled && !data.active ? data.color : null),
+ 'flex-basis': ellipsis ? 88 / data.swipeThreshold + '%' : null,
+ });
+ }
+
+ return style({
+ color: titleColor,
+ 'flex-basis': ellipsis ? 88 / data.swipeThreshold + '%' : null,
+ });
+}
+
+function navStyle(color, type) {
+ return style({
+ 'border-color': type === 'card' && color ? color : null,
+ });
+}
+
+function trackStyle(data) {
+ if (!data.animated) {
+ return '';
+ }
+
+ return style({
+ left: -100 * data.currentIndex + '%',
+ 'transition-duration': data.duration + 's',
+ '-webkit-transition-duration': data.duration + 's',
+ });
+}
+
+function lineStyle(data) {
+ return style({
+ width: utils.addUnit(data.lineWidth),
+ transform: 'translateX(' + data.lineOffsetLeft + 'px)',
+ '-webkit-transform': 'translateX(' + data.lineOffsetLeft + 'px)',
+ 'background-color': data.color,
+ height: data.lineHeight !== -1 ? utils.addUnit(data.lineHeight) : null,
+ 'border-radius':
+ data.lineHeight !== -1 ? utils.addUnit(data.lineHeight) : null,
+ 'transition-duration': !data.skipTransition ? data.duration + 's' : null,
+ '-webkit-transition-duration': !data.skipTransition
+ ? data.duration + 's'
+ : null,
+ });
+}
+
+module.exports = {
+ tabClass: tabClass,
+ tabStyle: tabStyle,
+ trackStyle: trackStyle,
+ lineStyle: lineStyle,
+ navStyle: navStyle,
+};
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/node_modules/@vant/weapp/dist/tabs/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/node_modules/@vant/weapp/dist/tabs/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..d0449e6acbc579020082288cd3a6790e46f3d9a3
--- /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/node_modules/@vant/weapp/dist/tabs/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-tabs{position:relative;-webkit-tap-highlight-color:transparent}.van-tabs__wrap{display:-webkit-flex;display:flex;overflow:hidden}.van-tabs__wrap--scrollable .van-tab{-webkit-flex:0 0 22%;flex:0 0 22%}.van-tabs__wrap--scrollable .van-tab--complete{-webkit-flex:1 0 auto!important;flex:1 0 auto!important;padding:0 12px}.van-tabs__wrap--scrollable .van-tabs__nav--complete{padding-right:8px;padding-left:8px}.van-tabs__scroll{background-color:#fff;background-color:var(--tabs-nav-background-color,#fff)}.van-tabs__scroll--line{box-sizing:initial;height:calc(100% + 15px)}.van-tabs__scroll--card{margin:0 16px;margin:0 var(--padding-md,16px)}.van-tabs__scroll::-webkit-scrollbar{display:none}.van-tabs__nav{position:relative;display:-webkit-flex;display:flex;-webkit-user-select:none;user-select:none}.van-tabs__nav--card{box-sizing:border-box;height:30px;height:var(--tabs-card-height,30px);border:1px solid #ee0a24;border:var(--border-width-base,1px) solid var(--tabs-default-color,#ee0a24);border-radius:2px;border-radius:var(--border-radius-sm,2px)}.van-tabs__nav--card .van-tab{color:#ee0a24;color:var(--tabs-default-color,#ee0a24);line-height:28px;line-height:calc(var(--tabs-card-height, 30px) - var(--border-width-base, 1px)*2);border-right:1px solid #ee0a24;border-right:var(--border-width-base,1px) solid var(--tabs-default-color,#ee0a24)}.van-tabs__nav--card .van-tab:last-child{border-right:none}.van-tabs__nav--card .van-tab.van-tab--active{color:#fff;color:var(--white,#fff);background-color:#ee0a24;background-color:var(--tabs-default-color,#ee0a24)}.van-tabs__nav--card .van-tab--disabled{color:#c8c9cc;color:var(--tab-disabled-text-color,#c8c9cc)}.van-tabs__line{position:absolute;bottom:0;left:0;z-index:1;height:3px;height:var(--tabs-bottom-bar-height,3px);border-radius:3px;border-radius:var(--tabs-bottom-bar-height,3px);background-color:#ee0a24;background-color:var(--tabs-bottom-bar-color,#ee0a24)}.van-tabs__track{position:relative;width:100%;height:100%}.van-tabs__track--animated{display:-webkit-flex;display:flex;transition-property:left}.van-tabs__content{overflow:hidden}.van-tabs--line .van-tabs__wrap{height:44px;height:var(--tabs-line-height,44px)}.van-tabs--card .van-tabs__wrap{height:30px;height:var(--tabs-card-height,30px)}.van-tab{position:relative;-webkit-flex:1;flex:1;box-sizing:border-box;min-width:0;padding:0 5px;text-align:center;cursor:pointer;color:#646566;color:var(--tab-text-color,#646566);font-size:14px;font-size:var(--tab-font-size,14px);line-height:44px;line-height:var(--tabs-line-height,44px)}.van-tab--active{font-weight:500;font-weight:var(--font-weight-bold,500);color:#323233;color:var(--tab-active-text-color,#323233)}.van-tab--disabled{color:#c8c9cc;color:var(--tab-disabled-text-color,#c8c9cc)}.van-tab__title__info{position:relative!important;top:-1px!important;display:inline-block;-webkit-transform:translateX(0)!important;transform:translateX(0)!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/node_modules/@vant/weapp/dist/tag/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/tag/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/tag/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/tag/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/node_modules/@vant/weapp/dist/tag/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..49627a392dfa6fc103a0e46d9848c03ee32ca6f0
--- /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/node_modules/@vant/weapp/dist/tag/index.js"
@@ -0,0 +1,21 @@
+import { VantComponent } from '../common/component';
+VantComponent({
+ props: {
+ size: String,
+ mark: Boolean,
+ color: String,
+ plain: Boolean,
+ round: Boolean,
+ textColor: String,
+ type: {
+ type: String,
+ value: 'default',
+ },
+ closeable: Boolean,
+ },
+ methods: {
+ onClose() {
+ this.$emit('close');
+ },
+ },
+});
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/node_modules/@vant/weapp/dist/tag/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/node_modules/@vant/weapp/dist/tag/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/node_modules/@vant/weapp/dist/tag/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/node_modules/@vant/weapp/dist/tag/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/node_modules/@vant/weapp/dist/tag/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..59352dddde79329fc3ec90921a821b781ba0e631
--- /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/node_modules/@vant/weapp/dist/tag/index.wxml"
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
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/node_modules/@vant/weapp/dist/tag/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/node_modules/@vant/weapp/dist/tag/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..12d1668ec5f8df1f0cace309484bdb7c4a9377d4
--- /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/node_modules/@vant/weapp/dist/tag/index.wxs"
@@ -0,0 +1,13 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+
+function rootStyle(data) {
+ return style({
+ 'background-color': data.plain ? '' : data.color,
+ color: data.textColor || data.plain ? data.textColor || data.color : '',
+ });
+}
+
+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/node_modules/@vant/weapp/dist/tag/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/node_modules/@vant/weapp/dist/tag/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..46df0da0434441c88237be1e3cf4e5ed2a7c43eb
--- /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/node_modules/@vant/weapp/dist/tag/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-tag{position:relative;display:-webkit-inline-flex;display:inline-flex;-webkit-align-items:center;align-items:center;padding:0 4px;padding:var(--tag-padding,0 4px);color:#fff;color:var(--tag-text-color,#fff);font-size:12px;font-size:var(--tag-font-size,12px);line-height:16px;line-height:var(--tag-line-height,16px);border-radius:2px;border-radius:var(--tag-border-radius,2px)}.van-tag--default{background-color:#969799;background-color:var(--tag-default-color,#969799)}.van-tag--default.van-tag--plain{color:#969799;color:var(--tag-default-color,#969799)}.van-tag--danger{background-color:#ee0a24;background-color:var(--tag-danger-color,#ee0a24)}.van-tag--danger.van-tag--plain{color:#ee0a24;color:var(--tag-danger-color,#ee0a24)}.van-tag--primary{background-color:#1989fa;background-color:var(--tag-primary-color,#1989fa)}.van-tag--primary.van-tag--plain{color:#1989fa;color:var(--tag-primary-color,#1989fa)}.van-tag--success{background-color:#07c160;background-color:var(--tag-success-color,#07c160)}.van-tag--success.van-tag--plain{color:#07c160;color:var(--tag-success-color,#07c160)}.van-tag--warning{background-color:#ff976a;background-color:var(--tag-warning-color,#ff976a)}.van-tag--warning.van-tag--plain{color:#ff976a;color:var(--tag-warning-color,#ff976a)}.van-tag--plain{background-color:#fff;background-color:var(--tag-plain-background-color,#fff)}.van-tag--plain:before{position:absolute;top:0;right:0;bottom:0;left:0;border:1px solid;border-radius:inherit;content:"";pointer-events:none}.van-tag--medium{padding:2px 6px;padding:var(--tag-medium-padding,2px 6px)}.van-tag--large{padding:4px 8px;padding:var(--tag-large-padding,4px 8px);font-size:14px;font-size:var(--tag-large-font-size,14px);border-radius:4px;border-radius:var(--tag-large-border-radius,4px)}.van-tag--mark{border-radius:0 999px 999px 0;border-radius:0 var(--tag-round-border-radius,999px) var(--tag-round-border-radius,999px) 0}.van-tag--mark:after{display:block;width:2px;content:""}.van-tag--round{border-radius:999px;border-radius:var(--tag-round-border-radius,999px)}.van-tag__close{min-width:1em;margin-left:2px}
\ 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/node_modules/@vant/weapp/dist/toast/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/toast/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/toast/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/toast/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/node_modules/@vant/weapp/dist/toast/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..c4c2ed9458b8e111c6a1c32289400660cf2686a0
--- /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/node_modules/@vant/weapp/dist/toast/index.js"
@@ -0,0 +1,29 @@
+import { VantComponent } from '../common/component';
+VantComponent({
+ props: {
+ show: Boolean,
+ mask: Boolean,
+ message: String,
+ forbidClick: Boolean,
+ zIndex: {
+ type: Number,
+ value: 1000,
+ },
+ type: {
+ type: String,
+ value: 'text',
+ },
+ loadingType: {
+ type: String,
+ value: 'circular',
+ },
+ position: {
+ type: String,
+ value: 'middle',
+ },
+ },
+ methods: {
+ // for prevent touchmove
+ noop() {},
+ },
+});
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/node_modules/@vant/weapp/dist/toast/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/node_modules/@vant/weapp/dist/toast/index.json"
new file mode 100644
index 0000000000000000000000000000000000000000..9b1b78c4aa37d522149a65979bb4f4786ecbf2ed
--- /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/node_modules/@vant/weapp/dist/toast/index.json"
@@ -0,0 +1,9 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-icon": "../icon/index",
+ "van-loading": "../loading/index",
+ "van-overlay": "../overlay/index",
+ "van-transition": "../transition/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/node_modules/@vant/weapp/dist/toast/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/node_modules/@vant/weapp/dist/toast/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..635e7d617ea23a55db57542d79e0ae99423ce16b
--- /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/node_modules/@vant/weapp/dist/toast/index.wxml"
@@ -0,0 +1,33 @@
+
+
+
+
+ {{ message }}
+
+
+
+
+
+ {{ message }}
+
+
+
+
+
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/node_modules/@vant/weapp/dist/toast/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/node_modules/@vant/weapp/dist/toast/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..85dc7a8fb11dbe3168ec457766248c2ae2af43f5
--- /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/node_modules/@vant/weapp/dist/toast/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-toast{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:initial;color:#fff;color:var(--toast-text-color,#fff);font-size:14px;font-size:var(--toast-font-size,14px);line-height:20px;line-height:var(--toast-line-height,20px);white-space:pre-wrap;word-wrap:break-word;background-color:rgba(0,0,0,.7);background-color:var(--toast-background-color,rgba(0,0,0,.7));border-radius:8px;border-radius:var(--toast-border-radius,8px)}.van-toast__container{position:fixed;top:50%;left:50%;width:-webkit-fit-content;width:fit-content;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);max-width:70%;max-width:var(--toast-max-width,70%)}.van-toast--text{min-width:96px;min-width:var(--toast-text-min-width,96px);padding:8px 12px;padding:var(--toast-text-padding,8px 12px)}.van-toast--icon{width:88px;width:var(--toast-default-width,88px);min-height:88px;min-height:var(--toast-default-min-height,88px);padding:16px;padding:var(--toast-default-padding,16px)}.van-toast--icon .van-toast__icon{font-size:36px;font-size:var(--toast-icon-size,36px)}.van-toast--icon .van-toast__text{padding-top:8px}.van-toast__loading{margin:10px 0}.van-toast--top{-webkit-transform:translateY(-30vh);transform:translateY(-30vh)}.van-toast--bottom{-webkit-transform:translateY(30vh);transform:translateY(30vh)}
\ 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/node_modules/@vant/weapp/dist/toast/toast.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/toast/toast.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..1b2e209f274a3c0ac07943b51f84d0b00fe70324
--- /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/node_modules/@vant/weapp/dist/toast/toast.d.ts"
@@ -0,0 +1,68 @@
+///
+declare type ToastMessage = string | number;
+interface ToastOptions {
+ show?: boolean;
+ type?: string;
+ mask?: boolean;
+ zIndex?: number;
+ context?:
+ | WechatMiniprogram.Component.TrivialInstance
+ | WechatMiniprogram.Page.TrivialInstance;
+ position?: string;
+ duration?: number;
+ selector?: string;
+ forbidClick?: boolean;
+ loadingType?: string;
+ message?: ToastMessage;
+ onClose?: () => void;
+}
+declare function Toast(
+ toastOptions: ToastOptions | ToastMessage
+):
+ | WechatMiniprogram.Component.Instance<
+ Record,
+ Record,
+ Record,
+ Record,
+ false
+ >
+ | undefined;
+declare namespace Toast {
+ var loading: (
+ options: string | number | ToastOptions
+ ) =>
+ | WechatMiniprogram.Component.Instance<
+ Record,
+ Record,
+ Record,
+ Record,
+ false
+ >
+ | undefined;
+ var success: (
+ options: string | number | ToastOptions
+ ) =>
+ | WechatMiniprogram.Component.Instance<
+ Record,
+ Record,
+ Record,
+ Record,
+ false
+ >
+ | undefined;
+ var fail: (
+ options: string | number | ToastOptions
+ ) =>
+ | WechatMiniprogram.Component.Instance<
+ Record,
+ Record,
+ Record,
+ Record,
+ false
+ >
+ | undefined;
+ var clear: () => void;
+ var setDefaultOptions: (options: ToastOptions) => void;
+ var resetDefaultOptions: () => void;
+}
+export default Toast;
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/node_modules/@vant/weapp/dist/toast/toast.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/node_modules/@vant/weapp/dist/toast/toast.js"
new file mode 100644
index 0000000000000000000000000000000000000000..4a1b63aa712c52b10cccd57059b5c45f80008088
--- /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/node_modules/@vant/weapp/dist/toast/toast.js"
@@ -0,0 +1,70 @@
+import { isObj } from '../common/validator';
+const defaultOptions = {
+ type: 'text',
+ mask: false,
+ message: '',
+ show: true,
+ zIndex: 1000,
+ duration: 2000,
+ position: 'middle',
+ forbidClick: false,
+ loadingType: 'circular',
+ selector: '#van-toast',
+};
+let queue = [];
+let currentOptions = Object.assign({}, defaultOptions);
+function parseOptions(message) {
+ return isObj(message) ? message : { message };
+}
+function getContext() {
+ const pages = getCurrentPages();
+ return pages[pages.length - 1];
+}
+function Toast(toastOptions) {
+ const options = Object.assign(
+ Object.assign({}, currentOptions),
+ parseOptions(toastOptions)
+ );
+ const context = options.context || getContext();
+ const toast = context.selectComponent(options.selector);
+ if (!toast) {
+ console.warn('未找到 van-toast 节点,请确认 selector 及 context 是否正确');
+ return;
+ }
+ delete options.context;
+ delete options.selector;
+ toast.clear = () => {
+ toast.setData({ show: false });
+ if (options.onClose) {
+ options.onClose();
+ }
+ };
+ queue.push(toast);
+ toast.setData(options);
+ clearTimeout(toast.timer);
+ if (options.duration != null && options.duration > 0) {
+ toast.timer = setTimeout(() => {
+ toast.clear();
+ queue = queue.filter((item) => item !== toast);
+ }, options.duration);
+ }
+ return toast;
+}
+const createMethod = (type) => (options) =>
+ Toast(Object.assign({ type }, parseOptions(options)));
+Toast.loading = createMethod('loading');
+Toast.success = createMethod('success');
+Toast.fail = createMethod('fail');
+Toast.clear = () => {
+ queue.forEach((toast) => {
+ toast.clear();
+ });
+ queue = [];
+};
+Toast.setDefaultOptions = (options) => {
+ Object.assign(currentOptions, options);
+};
+Toast.resetDefaultOptions = () => {
+ currentOptions = Object.assign({}, defaultOptions);
+};
+export default Toast;
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/node_modules/@vant/weapp/dist/transition/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/transition/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/transition/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/transition/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/node_modules/@vant/weapp/dist/transition/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..0ebdef0d14b75cfc34d2c49247729a4b86d2be2e
--- /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/node_modules/@vant/weapp/dist/transition/index.js"
@@ -0,0 +1,13 @@
+import { VantComponent } from '../common/component';
+import { transition } from '../mixins/transition';
+VantComponent({
+ classes: [
+ 'enter-class',
+ 'enter-active-class',
+ 'enter-to-class',
+ 'leave-class',
+ 'leave-active-class',
+ 'leave-to-class',
+ ],
+ mixins: [transition(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/node_modules/@vant/weapp/dist/transition/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/node_modules/@vant/weapp/dist/transition/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/node_modules/@vant/weapp/dist/transition/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/node_modules/@vant/weapp/dist/transition/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/node_modules/@vant/weapp/dist/transition/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..2743785269f449afd81c15737578ecef0ecdda0d
--- /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/node_modules/@vant/weapp/dist/transition/index.wxml"
@@ -0,0 +1,10 @@
+
+
+
+
+
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/node_modules/@vant/weapp/dist/transition/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/node_modules/@vant/weapp/dist/transition/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..e0babf62aa21eb45959cfbb9b70009b1895179c9
--- /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/node_modules/@vant/weapp/dist/transition/index.wxs"
@@ -0,0 +1,17 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+
+function rootStyle(data) {
+ return style([
+ {
+ '-webkit-transition-duration': data.currentDuration + 'ms',
+ 'transition-duration': data.currentDuration + 'ms',
+ },
+ data.display ? null : 'display: none',
+ 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/node_modules/@vant/weapp/dist/transition/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/node_modules/@vant/weapp/dist/transition/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..d459f5c123f6044f5c8944f4310efa29ab490eb4
--- /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/node_modules/@vant/weapp/dist/transition/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-transition{transition-timing-function:ease}.van-fade-enter-active,.van-fade-leave-active{transition-property:opacity}.van-fade-enter,.van-fade-leave-to{opacity:0}.van-fade-down-enter-active,.van-fade-down-leave-active,.van-fade-left-enter-active,.van-fade-left-leave-active,.van-fade-right-enter-active,.van-fade-right-leave-active,.van-fade-up-enter-active,.van-fade-up-leave-active{transition-property:opacity,-webkit-transform;transition-property:opacity,transform;transition-property:opacity,transform,-webkit-transform}.van-fade-up-enter,.van-fade-up-leave-to{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);opacity:0}.van-fade-down-enter,.van-fade-down-leave-to{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);opacity:0}.van-fade-left-enter,.van-fade-left-leave-to{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);opacity:0}.van-fade-right-enter,.van-fade-right-leave-to{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);opacity:0}.van-slide-down-enter-active,.van-slide-down-leave-active,.van-slide-left-enter-active,.van-slide-left-leave-active,.van-slide-right-enter-active,.van-slide-right-leave-active,.van-slide-up-enter-active,.van-slide-up-leave-active{transition-property:-webkit-transform;transition-property:transform;transition-property:transform,-webkit-transform}.van-slide-up-enter,.van-slide-up-leave-to{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}.van-slide-down-enter,.van-slide-down-leave-to{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}.van-slide-left-enter,.van-slide-left-leave-to{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.van-slide-right-enter,.van-slide-right-leave-to{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,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/node_modules/@vant/weapp/dist/tree-select/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/tree-select/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/tree-select/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/tree-select/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/node_modules/@vant/weapp/dist/tree-select/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..8dc4ed861e1f08f485a0efa2264e3299060e6df4
--- /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/node_modules/@vant/weapp/dist/tree-select/index.js"
@@ -0,0 +1,68 @@
+import { VantComponent } from '../common/component';
+VantComponent({
+ classes: [
+ 'main-item-class',
+ 'content-item-class',
+ 'main-active-class',
+ 'content-active-class',
+ 'main-disabled-class',
+ 'content-disabled-class',
+ ],
+ props: {
+ items: {
+ type: Array,
+ observer: 'updateSubItems',
+ },
+ activeId: null,
+ mainActiveIndex: {
+ type: Number,
+ value: 0,
+ observer: 'updateSubItems',
+ },
+ height: {
+ type: null,
+ value: 300,
+ },
+ max: {
+ type: Number,
+ value: Infinity,
+ },
+ selectedIcon: {
+ type: String,
+ value: 'success',
+ },
+ },
+ data: {
+ subItems: [],
+ },
+ methods: {
+ // 当一个子项被选择时
+ onSelectItem(event) {
+ const { item } = event.currentTarget.dataset;
+ const isArray = Array.isArray(this.data.activeId);
+ // 判断有没有超出右侧选择的最大数
+ const isOverMax = isArray && this.data.activeId.length >= this.data.max;
+ // 判断该项有没有被选中, 如果有被选中,则忽视是否超出的条件
+ const isSelected = isArray
+ ? this.data.activeId.indexOf(item.id) > -1
+ : this.data.activeId === item.id;
+ if (!item.disabled && (!isOverMax || isSelected)) {
+ this.$emit('click-item', item);
+ }
+ },
+ // 当一个导航被点击时
+ onClickNav(event) {
+ const index = event.detail;
+ const item = this.data.items[index];
+ if (!item.disabled) {
+ this.$emit('click-nav', { index });
+ }
+ },
+ // 更新子项列表
+ updateSubItems() {
+ const { items, mainActiveIndex } = this.data;
+ const { children = [] } = items[mainActiveIndex] || {};
+ this.setData({ subItems: children });
+ },
+ },
+});
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/node_modules/@vant/weapp/dist/tree-select/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/node_modules/@vant/weapp/dist/tree-select/index.json"
new file mode 100644
index 0000000000000000000000000000000000000000..42991a2ad544f292b23eb72b2a95fa823349daed
--- /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/node_modules/@vant/weapp/dist/tree-select/index.json"
@@ -0,0 +1,8 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-icon": "../icon/index",
+ "van-sidebar": "../sidebar/index",
+ "van-sidebar-item": "../sidebar-item/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/node_modules/@vant/weapp/dist/tree-select/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/node_modules/@vant/weapp/dist/tree-select/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..2663e528d3b619155478ef4a8487c29812131c35
--- /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/node_modules/@vant/weapp/dist/tree-select/index.wxml"
@@ -0,0 +1,41 @@
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ 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/node_modules/@vant/weapp/dist/tree-select/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/node_modules/@vant/weapp/dist/tree-select/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..b1cbb39b2d01d296acee604ad0135aed8234cdc5
--- /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/node_modules/@vant/weapp/dist/tree-select/index.wxs"
@@ -0,0 +1,12 @@
+/* eslint-disable */
+var array = require('../wxs/array.wxs');
+
+function isActive (activeList, itemId) {
+ if (array.isArray(activeList)) {
+ return activeList.indexOf(itemId) > -1;
+ }
+
+ return activeList === itemId;
+}
+
+module.exports.isActive = isActive;
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/node_modules/@vant/weapp/dist/tree-select/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/node_modules/@vant/weapp/dist/tree-select/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..3f7cca67d8493dbbb04ebdf3023a01569f8aa257
--- /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/node_modules/@vant/weapp/dist/tree-select/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-tree-select{position:relative;display:-webkit-flex;display:flex;-webkit-user-select:none;user-select:none;font-size:14px;font-size:var(--tree-select-font-size,14px)}.van-tree-select__nav{-webkit-flex:1;flex:1;background-color:#f7f8fa;background-color:var(--tree-select-nav-background-color,#f7f8fa);--sidebar-padding:12px 8px 12px 12px}.van-tree-select__nav__inner{width:100%!important;height:100%}.van-tree-select__content{-webkit-flex:2;flex:2;background-color:#fff;background-color:var(--tree-select-content-background-color,#fff)}.van-tree-select__item{position:relative;font-weight:700;padding:0 32px 0 16px;padding:0 32px 0 var(--padding-md,16px);line-height:44px;line-height:var(--tree-select-item-height,44px)}.van-tree-select__item--active{color:#ee0a24;color:var(--tree-select-item-active-color,#ee0a24)}.van-tree-select__item--disabled{color:#c8c9cc;color:var(--tree-select-item-disabled-color,#c8c9cc)}.van-tree-select__selected{position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);right:16px;right:var(--padding-md,16px)}
\ 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/node_modules/@vant/weapp/dist/uploader/index.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/uploader/index.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..cb0ff5c3b541f646105198ee23ac0fc3d805023e
--- /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/node_modules/@vant/weapp/dist/uploader/index.d.ts"
@@ -0,0 +1 @@
+export {};
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/node_modules/@vant/weapp/dist/uploader/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/node_modules/@vant/weapp/dist/uploader/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..263c50e394623a1c1c65bfdf08ea3d40408947c9
--- /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/node_modules/@vant/weapp/dist/uploader/index.js"
@@ -0,0 +1,201 @@
+import { VantComponent } from '../common/component';
+import { isImageFile, chooseFile, isVideoFile } from './utils';
+import { chooseImageProps, chooseVideoProps } from './shared';
+import { isBoolean, isPromise } from '../common/validator';
+VantComponent({
+ props: Object.assign(
+ Object.assign(
+ {
+ disabled: Boolean,
+ multiple: Boolean,
+ uploadText: String,
+ useBeforeRead: Boolean,
+ afterRead: null,
+ beforeRead: null,
+ previewSize: {
+ type: null,
+ value: 80,
+ },
+ name: {
+ type: null,
+ value: '',
+ },
+ accept: {
+ type: String,
+ value: 'image',
+ },
+ fileList: {
+ type: Array,
+ value: [],
+ observer: 'formatFileList',
+ },
+ maxSize: {
+ type: Number,
+ value: Number.MAX_VALUE,
+ },
+ maxCount: {
+ type: Number,
+ value: 100,
+ },
+ deletable: {
+ type: Boolean,
+ value: true,
+ },
+ showUpload: {
+ type: Boolean,
+ value: true,
+ },
+ previewImage: {
+ type: Boolean,
+ value: true,
+ },
+ previewFullImage: {
+ type: Boolean,
+ value: true,
+ },
+ imageFit: {
+ type: String,
+ value: 'scaleToFill',
+ },
+ uploadIcon: {
+ type: String,
+ value: 'photograph',
+ },
+ },
+ chooseImageProps
+ ),
+ chooseVideoProps
+ ),
+ data: {
+ lists: [],
+ isInCount: true,
+ },
+ methods: {
+ formatFileList() {
+ const { fileList = [], maxCount } = this.data;
+ const lists = fileList.map((item) =>
+ Object.assign(Object.assign({}, item), {
+ isImage: isImageFile(item),
+ isVideo: isVideoFile(item),
+ deletable: isBoolean(item.deletable) ? item.deletable : true,
+ })
+ );
+ this.setData({ lists, isInCount: lists.length < maxCount });
+ },
+ getDetail(index) {
+ return {
+ name: this.data.name,
+ index: index == null ? this.data.fileList.length : index,
+ };
+ },
+ startUpload() {
+ const { maxCount, multiple, lists, disabled } = this.data;
+ if (disabled) return;
+ chooseFile(
+ Object.assign(Object.assign({}, this.data), {
+ maxCount: maxCount - lists.length,
+ })
+ )
+ .then((res) => {
+ this.onBeforeRead(multiple ? res : res[0]);
+ })
+ .catch((error) => {
+ this.$emit('error', error);
+ });
+ },
+ onBeforeRead(file) {
+ const { beforeRead, useBeforeRead } = this.data;
+ let res = true;
+ if (typeof beforeRead === 'function') {
+ res = beforeRead(file, this.getDetail());
+ }
+ if (useBeforeRead) {
+ res = new Promise((resolve, reject) => {
+ this.$emit(
+ 'before-read',
+ Object.assign(Object.assign({ file }, this.getDetail()), {
+ callback: (ok) => {
+ ok ? resolve() : reject();
+ },
+ })
+ );
+ });
+ }
+ if (!res) {
+ return;
+ }
+ if (isPromise(res)) {
+ res.then((data) => this.onAfterRead(data || file));
+ } else {
+ this.onAfterRead(file);
+ }
+ },
+ onAfterRead(file) {
+ const { maxSize, afterRead } = this.data;
+ const oversize = Array.isArray(file)
+ ? file.some((item) => item.size > maxSize)
+ : file.size > maxSize;
+ if (oversize) {
+ this.$emit('oversize', Object.assign({ file }, this.getDetail()));
+ return;
+ }
+ if (typeof afterRead === 'function') {
+ afterRead(file, this.getDetail());
+ }
+ this.$emit('after-read', Object.assign({ file }, this.getDetail()));
+ },
+ deleteItem(event) {
+ const { index } = event.currentTarget.dataset;
+ this.$emit(
+ 'delete',
+ Object.assign(Object.assign({}, this.getDetail(index)), {
+ file: this.data.fileList[index],
+ })
+ );
+ },
+ onPreviewImage(event) {
+ if (!this.data.previewFullImage) return;
+ const { index } = event.currentTarget.dataset;
+ const { lists } = this.data;
+ const item = lists[index];
+ wx.previewImage({
+ urls: lists.filter((item) => isImageFile(item)).map((item) => item.url),
+ current: item.url,
+ fail() {
+ wx.showToast({ title: '预览图片失败', icon: 'none' });
+ },
+ });
+ },
+ onPreviewVideo(event) {
+ if (!this.data.previewFullImage) return;
+ const { index } = event.currentTarget.dataset;
+ const { lists } = this.data;
+ wx.previewMedia({
+ sources: lists
+ .filter((item) => isVideoFile(item))
+ .map((item) =>
+ Object.assign(Object.assign({}, item), { type: 'video' })
+ ),
+ current: index,
+ fail() {
+ wx.showToast({ title: '预览视频失败', icon: 'none' });
+ },
+ });
+ },
+ onPreviewFile(event) {
+ const { index } = event.currentTarget.dataset;
+ wx.openDocument({
+ filePath: this.data.lists[index].url,
+ showMenu: true,
+ });
+ },
+ onClickPreview(event) {
+ const { index } = event.currentTarget.dataset;
+ const item = this.data.lists[index];
+ this.$emit(
+ 'click-preview',
+ Object.assign(Object.assign({}, item), this.getDetail(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/node_modules/@vant/weapp/dist/uploader/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/node_modules/@vant/weapp/dist/uploader/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/node_modules/@vant/weapp/dist/uploader/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/node_modules/@vant/weapp/dist/uploader/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/node_modules/@vant/weapp/dist/uploader/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..50fb0c89255d9c26ed9bd746ce093282221c5eb2
--- /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/node_modules/@vant/weapp/dist/uploader/index.wxml"
@@ -0,0 +1,83 @@
+
+
+
+
+
+
+
+
+
+
+
+ {{ item.name || item.url }}
+
+
+
+
+ {{ item.message }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ uploadText }}
+
+
+
+
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/node_modules/@vant/weapp/dist/uploader/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/node_modules/@vant/weapp/dist/uploader/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..257c7804646f7c791b7b868ff1e16f7980234a32
--- /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/node_modules/@vant/weapp/dist/uploader/index.wxs"
@@ -0,0 +1,14 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function sizeStyle(data) {
+ return style({
+ width: addUnit(data.previewSize),
+ height: addUnit(data.previewSize),
+ });
+}
+
+module.exports = {
+ sizeStyle: sizeStyle,
+};
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/node_modules/@vant/weapp/dist/uploader/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/node_modules/@vant/weapp/dist/uploader/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..5023d716455744d514143bc37600d2f19794b15f
--- /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/node_modules/@vant/weapp/dist/uploader/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-uploader{position:relative;display:inline-block}.van-uploader__wrapper{display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap}.van-uploader__slot:empty{display:none}.van-uploader__slot:not(:empty)+.van-uploader__upload{display:none!important}.van-uploader__upload{position:relative;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;width:80px;width:var(--uploader-size,80px);height:80px;height:var(--uploader-size,80px);margin:0 8px 8px 0;margin:0 var(--padding-xs,8px) var(--padding-xs,8px) 0;background-color:#f7f8fa;background-color:var(--uploader-upload-background-color,#f7f8fa)}.van-uploader__upload:active{background-color:#f2f3f5;background-color:var(--uploader-upload-active-color,#f2f3f5)}.van-uploader__upload-icon{color:#dcdee0;color:var(--uploader-icon-color,#dcdee0);font-size:24px;font-size:var(--uploader-icon-size,24px)}.van-uploader__upload-text{margin-top:8px;margin-top:var(--padding-xs,8px);color:#969799;color:var(--uploader-text-color,#969799);font-size:12px;font-size:var(--uploader-text-font-size,12px)}.van-uploader__upload--disabled{opacity:.5;opacity:var(--uploader-disabled-opacity,.5)}.van-uploader__preview{position:relative;cursor:pointer;margin:0 8px 8px 0;margin:0 var(--padding-xs,8px) var(--padding-xs,8px) 0}.van-uploader__preview-image{display:block;overflow:hidden;width:80px;width:var(--uploader-size,80px);height:80px;height:var(--uploader-size,80px)}.van-uploader__preview-delete{padding:0 0 8px 8px;padding:0 0 var(--padding-xs,8px) var(--padding-xs,8px)}.van-uploader__preview-delete,.van-uploader__preview-delete:after{position:absolute;top:0;right:0;width:14px;width:var(--uploader-delete-icon-size,14px);height:14px;height:var(--uploader-delete-icon-size,14px)}.van-uploader__preview-delete:after{content:"";background-color:rgba(0,0,0,.7);background-color:var(--uploader-delete-background-color,rgba(0,0,0,.7));border-radius:0 0 0 12px;border-radius:0 0 0 calc(var(--uploader-delete-icon-size, 14px) - 2px)}.van-uploader__preview-delete-icon{position:absolute;top:-2px;right:-2px;z-index:1;-webkit-transform:scale(.5);transform:scale(.5);font-size:16px;font-size:calc(var(--uploader-delete-icon-size, 14px) + 2px);color:#fff;color:var(--uploader-delete-color,#fff)}.van-uploader__file{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;width:80px;width:var(--uploader-size,80px);height:80px;height:var(--uploader-size,80px);background-color:#f7f8fa;background-color:var(--uploader-file-background-color,#f7f8fa)}.van-uploader__file-icon{color:#646566;color:var(--uploader-file-icon-color,#646566);font-size:20px;font-size:var(--uploader-file-icon-size,20px)}.van-uploader__file-name{box-sizing:border-box;width:100%;text-align:center;margin-top:8px;margin-top:var(--uploader-file-name-margin-top,8px);padding:0 4px;padding:var(--uploader-file-name-padding,0 4px);color:#646566;color:var(--uploader-file-name-text-color,#646566);font-size:12px;font-size:var(--uploader-file-name-font-size,12px)}.van-uploader__mask{position:absolute;top:0;right:0;bottom:0;left:0;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;color:#fff;color:var(--white,#fff);background-color:rgba(50,50,51,.88);background-color:var(--uploader-mask-background-color,rgba(50,50,51,.88))}.van-uploader__mask-icon{font-size:22px;font-size:var(--uploader-mask-icon-size,22px)}.van-uploader__mask-message{margin-top:6px;padding:0 4px;padding:0 var(--padding-base,4px);font-size:12px;font-size:var(--uploader-mask-message-font-size,12px);line-height:14px;line-height:var(--uploader-mask-message-line-height,14px)}.van-uploader__loading{width:22px;width:var(--uploader-loading-icon-size,22px);height:22px;height:var(--uploader-loading-icon-size,22px);color:#fff!important;color:var(--uploader-loading-icon-color,#fff)!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/node_modules/@vant/weapp/dist/uploader/shared.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/uploader/shared.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..85d50348774eea6fbb196f62969cd4823763539a
--- /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/node_modules/@vant/weapp/dist/uploader/shared.d.ts"
@@ -0,0 +1,28 @@
+export declare const chooseImageProps: {
+ sizeType: {
+ type: ArrayConstructor;
+ value: string[];
+ };
+ capture: {
+ type: ArrayConstructor;
+ value: string[];
+ };
+};
+export declare const chooseVideoProps: {
+ capture: {
+ type: ArrayConstructor;
+ value: string[];
+ };
+ compressed: {
+ type: BooleanConstructor;
+ value: boolean;
+ };
+ maxDuration: {
+ type: NumberConstructor;
+ value: number;
+ };
+ camera: {
+ type: StringConstructor;
+ value: 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/node_modules/@vant/weapp/dist/uploader/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/node_modules/@vant/weapp/dist/uploader/shared.js"
new file mode 100644
index 0000000000000000000000000000000000000000..e097d74e586f986826ae073d25798a81f878c14d
--- /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/node_modules/@vant/weapp/dist/uploader/shared.js"
@@ -0,0 +1,30 @@
+// props for choose image
+export const chooseImageProps = {
+ sizeType: {
+ type: Array,
+ value: ['original', 'compressed'],
+ },
+ capture: {
+ type: Array,
+ value: ['album', 'camera'],
+ },
+};
+// props for choose video
+export const chooseVideoProps = {
+ capture: {
+ type: Array,
+ value: ['album', 'camera'],
+ },
+ compressed: {
+ type: Boolean,
+ value: true,
+ },
+ maxDuration: {
+ type: Number,
+ value: 60,
+ },
+ camera: {
+ type: String,
+ value: 'back',
+ },
+};
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/node_modules/@vant/weapp/dist/uploader/utils.d.ts" "b/\350\224\241\346\226\207\351\276\231/\345\244\251\346\260\224\346\237\245\350\257\242\351\241\271\347\233\256/node_modules/@vant/weapp/dist/uploader/utils.d.ts"
new file mode 100644
index 0000000000000000000000000000000000000000..07b32d088061f6495d89a449e6626ef8153b937f
--- /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/node_modules/@vant/weapp/dist/uploader/utils.d.ts"
@@ -0,0 +1,31 @@
+export interface File {
+ url: string;
+ size?: number;
+ name?: string;
+ type: string;
+ duration?: number;
+ time?: number;
+ isImage?: boolean;
+ isVideo?: boolean;
+}
+export declare function isImageFile(item: File): boolean;
+export declare function isVideoFile(item: File): boolean;
+export declare function chooseFile({
+ accept,
+ multiple,
+ capture,
+ compressed,
+ maxDuration,
+ sizeType,
+ camera,
+ maxCount,
+}: {
+ accept: any;
+ multiple: any;
+ capture: any;
+ compressed: any;
+ maxDuration: any;
+ sizeType: any;
+ camera: any;
+ maxCount: any;
+}): Promise;
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/node_modules/@vant/weapp/dist/uploader/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/node_modules/@vant/weapp/dist/uploader/utils.js"
new file mode 100644
index 0000000000000000000000000000000000000000..bdd4079161bcbcfc77538dc9f9ac05ce1129cfb3
--- /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/node_modules/@vant/weapp/dist/uploader/utils.js"
@@ -0,0 +1,122 @@
+import { pickExclude } from '../common/utils';
+import { isImageUrl, isVideoUrl } from '../common/validator';
+export function isImageFile(item) {
+ if (item.isImage != null) {
+ return item.isImage;
+ }
+ if (item.type) {
+ return item.type === 'image';
+ }
+ if (item.url) {
+ return isImageUrl(item.url);
+ }
+ return false;
+}
+export function isVideoFile(item) {
+ if (item.isVideo != null) {
+ return item.isVideo;
+ }
+ if (item.type) {
+ return item.type === 'video';
+ }
+ if (item.url) {
+ return isVideoUrl(item.url);
+ }
+ return false;
+}
+function formatImage(res) {
+ return res.tempFiles.map((item) =>
+ Object.assign(Object.assign({}, pickExclude(item, ['path'])), {
+ type: 'image',
+ url: item.path,
+ thumb: item.path,
+ })
+ );
+}
+function formatVideo(res) {
+ return [
+ Object.assign(
+ Object.assign(
+ {},
+ pickExclude(res, ['tempFilePath', 'thumbTempFilePath', 'errMsg'])
+ ),
+ { type: 'video', url: res.tempFilePath, thumb: res.thumbTempFilePath }
+ ),
+ ];
+}
+function formatMedia(res) {
+ return res.tempFiles.map((item) =>
+ Object.assign(
+ Object.assign(
+ {},
+ pickExclude(item, ['fileType', 'thumbTempFilePath', 'tempFilePath'])
+ ),
+ {
+ type: res.type,
+ url: item.tempFilePath,
+ thumb:
+ res.type === 'video' ? item.thumbTempFilePath : item.tempFilePath,
+ }
+ )
+ );
+}
+function formatFile(res) {
+ return res.tempFiles.map((item) =>
+ Object.assign(Object.assign({}, pickExclude(item, ['path'])), {
+ url: item.path,
+ })
+ );
+}
+export function chooseFile({
+ accept,
+ multiple,
+ capture,
+ compressed,
+ maxDuration,
+ sizeType,
+ camera,
+ maxCount,
+}) {
+ return new Promise((resolve, reject) => {
+ switch (accept) {
+ case 'image':
+ wx.chooseImage({
+ count: multiple ? Math.min(maxCount, 9) : 1,
+ sourceType: capture,
+ sizeType,
+ success: (res) => resolve(formatImage(res)),
+ fail: reject,
+ });
+ break;
+ case 'media':
+ wx.chooseMedia({
+ count: multiple ? Math.min(maxCount, 9) : 1,
+ sourceType: capture,
+ maxDuration,
+ sizeType,
+ camera,
+ success: (res) => resolve(formatMedia(res)),
+ fail: reject,
+ });
+ break;
+ case 'video':
+ wx.chooseVideo({
+ sourceType: capture,
+ compressed,
+ maxDuration,
+ camera,
+ success: (res) => resolve(formatVideo(res)),
+ fail: reject,
+ });
+ break;
+ default:
+ wx.chooseMessageFile({
+ count: multiple ? maxCount : 1,
+ type: accept,
+ success: (res) => resolve(formatFile(res)),
+ fail: reject,
+ });
+ break;
+ }
+ });
+}
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/node_modules/@vant/weapp/dist/wxs/add-unit.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/node_modules/@vant/weapp/dist/wxs/add-unit.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..4f33462f3871d45d56dcd06d0975f913b67a57bb
--- /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/node_modules/@vant/weapp/dist/wxs/add-unit.wxs"
@@ -0,0 +1,12 @@
+/* eslint-disable */
+var REGEXP = getRegExp('^-?\d+(\.\d+)?$');
+
+function addUnit(value) {
+ if (value == null) {
+ return undefined;
+ }
+
+ return REGEXP.test('' + value) ? value + 'px' : value;
+}
+
+module.exports = addUnit;
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/node_modules/@vant/weapp/dist/wxs/array.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/node_modules/@vant/weapp/dist/wxs/array.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..610089cd5dc6395ff8355fa52550af2427c8dbe7
--- /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/node_modules/@vant/weapp/dist/wxs/array.wxs"
@@ -0,0 +1,5 @@
+function isArray(array) {
+ return array && array.constructor === 'Array';
+}
+
+module.exports.isArray = isArray;
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/node_modules/@vant/weapp/dist/wxs/bem.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/node_modules/@vant/weapp/dist/wxs/bem.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..1efa129ee835ccb888a8b935d3ad6e9f1c834900
--- /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/node_modules/@vant/weapp/dist/wxs/bem.wxs"
@@ -0,0 +1,39 @@
+/* eslint-disable */
+var array = require('./array.wxs');
+var object = require('./object.wxs');
+var PREFIX = 'van-';
+
+function join(name, mods) {
+ name = PREFIX + name;
+ mods = mods.map(function(mod) {
+ return name + '--' + mod;
+ });
+ mods.unshift(name);
+ return mods.join(' ');
+}
+
+function traversing(mods, conf) {
+ if (!conf) {
+ return;
+ }
+
+ if (typeof conf === 'string' || typeof conf === 'number') {
+ mods.push(conf);
+ } else if (array.isArray(conf)) {
+ conf.forEach(function(item) {
+ traversing(mods, item);
+ });
+ } else if (typeof conf === 'object') {
+ object.keys(conf).forEach(function(key) {
+ conf[key] && mods.push(key);
+ });
+ }
+}
+
+function bem(name, conf) {
+ var mods = [];
+ traversing(mods, conf);
+ return join(name, mods);
+}
+
+module.exports = bem;
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/node_modules/@vant/weapp/dist/wxs/memoize.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/node_modules/@vant/weapp/dist/wxs/memoize.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..8f7f46dd23ee6ae7caaf6ac2e95c88b5c15bf835
--- /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/node_modules/@vant/weapp/dist/wxs/memoize.wxs"
@@ -0,0 +1,55 @@
+/**
+ * Simple memoize
+ * wxs doesn't support fn.apply, so this memoize only support up to 2 args
+ */
+/* eslint-disable */
+
+function isPrimitive(value) {
+ var type = typeof value;
+ return (
+ type === 'boolean' ||
+ type === 'number' ||
+ type === 'string' ||
+ type === 'undefined' ||
+ value === null
+ );
+}
+
+// mock simple fn.call in wxs
+function call(fn, args) {
+ if (args.length === 2) {
+ return fn(args[0], args[1]);
+ }
+
+ if (args.length === 1) {
+ return fn(args[0]);
+ }
+
+ return fn();
+}
+
+function serializer(args) {
+ if (args.length === 1 && isPrimitive(args[0])) {
+ return args[0];
+ }
+ var obj = {};
+ for (var i = 0; i < args.length; i++) {
+ obj['key' + i] = args[i];
+ }
+ return JSON.stringify(obj);
+}
+
+function memoize(fn) {
+ var cache = {};
+
+ return function() {
+ var key = serializer(arguments);
+ if (cache[key] === undefined) {
+ cache[key] = call(fn, arguments);
+ }
+
+ return cache[key];
+ };
+}
+
+module.exports = memoize;
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/node_modules/@vant/weapp/dist/wxs/object.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/node_modules/@vant/weapp/dist/wxs/object.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..e07710776c19c994e4859a30777741e51058c0f9
--- /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/node_modules/@vant/weapp/dist/wxs/object.wxs"
@@ -0,0 +1,13 @@
+/* eslint-disable */
+var REGEXP = getRegExp('{|}|"', 'g');
+
+function keys(obj) {
+ return JSON.stringify(obj)
+ .replace(REGEXP, '')
+ .split(',')
+ .map(function(item) {
+ return item.split(':')[0];
+ });
+}
+
+module.exports.keys = keys;
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/node_modules/@vant/weapp/dist/wxs/style.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/node_modules/@vant/weapp/dist/wxs/style.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..c39c810f53ba2682f6f8013652261d48f14f7ebd
--- /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/node_modules/@vant/weapp/dist/wxs/style.wxs"
@@ -0,0 +1,32 @@
+/* eslint-disable */
+var object = require('./object.wxs');
+var array = require('./array.wxs');
+
+function style(styles) {
+ if (array.isArray(styles)) {
+ return styles
+ .filter(function (item) {
+ return item != null && item !== '';
+ })
+ .map(function (item) {
+ return style(item);
+ })
+ .join(';');
+ }
+
+ if ('Object' === styles.constructor) {
+ return object
+ .keys(styles)
+ .filter(function (key) {
+ return styles[key] != null && styles[key] !== '';
+ })
+ .map(function (key) {
+ return [key, [styles[key]]].join(':');
+ })
+ .join(';');
+ }
+
+ return styles;
+}
+
+module.exports = style;
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/node_modules/@vant/weapp/dist/wxs/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/node_modules/@vant/weapp/dist/wxs/utils.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..f66d33a4270856b51af6d7f0c36cc8d82bfb27f8
--- /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/node_modules/@vant/weapp/dist/wxs/utils.wxs"
@@ -0,0 +1,10 @@
+/* eslint-disable */
+var bem = require('./bem.wxs');
+var memoize = require('./memoize.wxs');
+var addUnit = require('./add-unit.wxs');
+
+module.exports = {
+ bem: memoize(bem),
+ memoize: memoize,
+ addUnit: addUnit
+};
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/node_modules/@vant/weapp/lib/action-sheet/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/node_modules/@vant/weapp/lib/action-sheet/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..a9e4b076e603a012a306d176ab62038efbd5a714
--- /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/node_modules/@vant/weapp/lib/action-sheet/index.js"
@@ -0,0 +1,64 @@
+'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');
+component_1.VantComponent({
+ mixins: [button_1.button, open_type_1.openType],
+ props: {
+ show: Boolean,
+ title: String,
+ cancelText: String,
+ description: String,
+ round: {
+ type: Boolean,
+ value: true,
+ },
+ zIndex: {
+ type: Number,
+ value: 100,
+ },
+ actions: {
+ type: Array,
+ value: [],
+ },
+ overlay: {
+ type: Boolean,
+ value: true,
+ },
+ closeOnClickOverlay: {
+ type: Boolean,
+ value: true,
+ },
+ closeOnClickAction: {
+ type: Boolean,
+ value: true,
+ },
+ safeAreaInsetBottom: {
+ type: Boolean,
+ value: true,
+ },
+ },
+ methods: {
+ onSelect: function (event) {
+ var index = event.currentTarget.dataset.index;
+ var item = this.data.actions[index];
+ if (item && !item.disabled && !item.loading) {
+ this.$emit('select', item);
+ if (this.data.closeOnClickAction) {
+ this.onClose();
+ }
+ }
+ },
+ onCancel: function () {
+ this.$emit('cancel');
+ },
+ onClose: function () {
+ this.$emit('close');
+ },
+ onClickOverlay: function () {
+ this.$emit('click-overlay');
+ this.onClose();
+ },
+ },
+});
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/node_modules/@vant/weapp/lib/action-sheet/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/node_modules/@vant/weapp/lib/action-sheet/index.json"
new file mode 100644
index 0000000000000000000000000000000000000000..19bf98915f6b60674e153fca262fc9e6dd595ea1
--- /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/node_modules/@vant/weapp/lib/action-sheet/index.json"
@@ -0,0 +1,8 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-icon": "../icon/index",
+ "van-popup": "../popup/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/node_modules/@vant/weapp/lib/action-sheet/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/node_modules/@vant/weapp/lib/action-sheet/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..c2bebcacf21b463f2086b67def0ed8cd74dd7d14
--- /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/node_modules/@vant/weapp/lib/action-sheet/index.wxml"
@@ -0,0 +1,69 @@
+
+
+
+
+
+ {{ 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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/calendar/calendar.wxml"
@@ -0,0 +1,65 @@
+
+
+
+
+
+
+
+
+
+
+
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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/calendar/components/header/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/card/index.wxml"
@@ -0,0 +1,56 @@
+
+
+
+
+
+
+
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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/dialog/index.wxml"
@@ -0,0 +1,113 @@
+
+
+
+
+
+
+
+ {{ message }}
+
+
+
+
+ {{ 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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/dropdown-menu/index.wxml"
@@ -0,0 +1,23 @@
+
+
+
+
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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/field/textarea.wxml"
@@ -0,0 +1,29 @@
+
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/node_modules/@vant/weapp/lib/goods-action-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/node_modules/@vant/weapp/lib/goods-action-button/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..3149c85122d2fca5d765947ee42d0c9364c37202
--- /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/node_modules/@vant/weapp/lib/goods-action-button/index.js"
@@ -0,0 +1,40 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+var relation_1 = require('../common/relation');
+var button_1 = require('../mixins/button');
+var link_1 = require('../mixins/link');
+var open_type_1 = require('../mixins/open-type');
+component_1.VantComponent({
+ mixins: [link_1.link, button_1.button, open_type_1.openType],
+ relation: relation_1.useParent('goods-action'),
+ props: {
+ text: String,
+ color: String,
+ loading: Boolean,
+ disabled: Boolean,
+ plain: Boolean,
+ type: {
+ type: String,
+ value: 'danger',
+ },
+ },
+ methods: {
+ onClick: function (event) {
+ this.$emit('click', event.detail);
+ this.jumpLink();
+ },
+ updateStyle: function () {
+ if (this.parent == null) {
+ return;
+ }
+ var index = this.index;
+ var _a = this.parent.children,
+ children = _a === void 0 ? [] : _a;
+ this.setData({
+ isFirst: index === 0,
+ isLast: index === children.length - 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/node_modules/@vant/weapp/lib/goods-action-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/node_modules/@vant/weapp/lib/goods-action-button/index.json"
new file mode 100644
index 0000000000000000000000000000000000000000..b567686850ec6f95a2a40e909f5dd112d2d03b62
--- /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/node_modules/@vant/weapp/lib/goods-action-button/index.json"
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-button": "../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/node_modules/@vant/weapp/lib/goods-action-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/node_modules/@vant/weapp/lib/goods-action-button/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..3912cedb0c53977f8dacdb834b20ab66b7e406f1
--- /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/node_modules/@vant/weapp/lib/goods-action-button/index.wxml"
@@ -0,0 +1,30 @@
+
+
+ {{ 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/node_modules/@vant/weapp/lib/goods-action-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/node_modules/@vant/weapp/lib/goods-action-button/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..77d16c6711710bbf12ec70c3e7f68462aff0a2e4
--- /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/node_modules/@vant/weapp/lib/goods-action-button/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';:host{-webkit-flex:1;flex:1}.van-goods-action-button{--button-warning-background-color:linear-gradient(90deg,#ffd01e,#ff8917);--button-warning-background-color:var(--goods-action-button-warning-color,linear-gradient(90deg,#ffd01e,#ff8917));--button-danger-background-color:linear-gradient(90deg,#ff6034,#ee0a24);--button-danger-background-color:var(--goods-action-button-danger-color,linear-gradient(90deg,#ff6034,#ee0a24));--button-default-height:40px;--button-default-height:var(--goods-action-button-height,40px);--button-line-height:20px;--button-line-height:var(--goods-action-button-line-height,20px);--button-plain-background-color:#fff;--button-plain-background-color:var(--goods-action-button-plain-color,#fff);display:block;--button-border-width:0}.van-goods-action-button--first{margin-left:5px;--button-border-radius:20px 0 0 20px;--button-border-radius:var(--goods-action-button-border-radius,20px) 0 0 var(--goods-action-button-border-radius,20px)}.van-goods-action-button--last{margin-right:5px;--button-border-radius:0 20px 20px 0;--button-border-radius:0 var(--goods-action-button-border-radius,20px) var(--goods-action-button-border-radius,20px) 0}.van-goods-action-button--first.van-goods-action-button--last{--button-border-radius:20px;--button-border-radius:var(--goods-action-button-border-radius,20px)}.van-goods-action-button--plain{--button-border-width:1px}.van-goods-action-button__inner{width:100%;font-weight:500!important;font-weight:var(--font-weight-bold,500)!important}@media (max-width:321px){.van-goods-action-button{font-size:13px}}
\ 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/node_modules/@vant/weapp/lib/goods-action-icon/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/node_modules/@vant/weapp/lib/goods-action-icon/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..0631b2120001cca9a916a6ef543256764e27f09b
--- /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/node_modules/@vant/weapp/lib/goods-action-icon/index.js"
@@ -0,0 +1,24 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+var button_1 = require('../mixins/button');
+var link_1 = require('../mixins/link');
+var open_type_1 = require('../mixins/open-type');
+component_1.VantComponent({
+ classes: ['icon-class', 'text-class'],
+ mixins: [link_1.link, button_1.button, open_type_1.openType],
+ props: {
+ text: String,
+ dot: Boolean,
+ info: String,
+ icon: String,
+ disabled: Boolean,
+ loading: Boolean,
+ },
+ 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/node_modules/@vant/weapp/lib/goods-action-icon/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/node_modules/@vant/weapp/lib/goods-action-icon/index.json"
new file mode 100644
index 0000000000000000000000000000000000000000..93bfe8abb60e11baa5ebf4aa2402203c430db0ac
--- /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/node_modules/@vant/weapp/lib/goods-action-icon/index.json"
@@ -0,0 +1,7 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-icon": "../icon/index",
+ "van-button": "../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/node_modules/@vant/weapp/lib/goods-action-icon/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/node_modules/@vant/weapp/lib/goods-action-icon/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..1983cae4654e8041a67a3d2159e8d02ef5b11800
--- /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/node_modules/@vant/weapp/lib/goods-action-icon/index.wxml"
@@ -0,0 +1,35 @@
+
+
+
+ {{ 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/node_modules/@vant/weapp/lib/goods-action-icon/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/node_modules/@vant/weapp/lib/goods-action-icon/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..eeef19113b9eb2e81c321ecdfd8b2403c9ac20dd
--- /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/node_modules/@vant/weapp/lib/goods-action-icon/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-goods-action-icon{display:-webkit-flex!important;display:flex!important;-webkit-flex-direction:column;flex-direction:column;-webkit-justify-content:center!important;justify-content:center!important;line-height:1!important;border:none!important;font-size:10px!important;font-size:var(--goods-action-icon-font-size,10px)!important;color:#646566!important;color:var(--goods-action-icon-text-color,#646566)!important;min-width:48px;min-width:var(--goods-action-icon-width,48px);height:50px!important;height:var(--goods-action-icon-height,50px)!important}.van-goods-action-icon__icon{display:-webkit-flex;display:flex;margin:0 auto 5px;color:#323233;color:var(--goods-action-icon-color,#323233);font-size:18px;font-size:var(--goods-action-icon-size,18px)}
\ 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/node_modules/@vant/weapp/lib/goods-action/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/node_modules/@vant/weapp/lib/goods-action/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..b58ba946438d999290d0f907f5ac71a60e375b6b
--- /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/node_modules/@vant/weapp/lib/goods-action/index.js"
@@ -0,0 +1,17 @@
+'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('goods-action-button', function () {
+ this.children.forEach(function (item) {
+ item.updateStyle();
+ });
+ }),
+ props: {
+ safeAreaInsetBottom: {
+ 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/node_modules/@vant/weapp/lib/goods-action/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/node_modules/@vant/weapp/lib/goods-action/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/node_modules/@vant/weapp/lib/goods-action/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/node_modules/@vant/weapp/lib/goods-action/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/node_modules/@vant/weapp/lib/goods-action/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..569450c738b936a2a39785eda9778c0efa6c83c4
--- /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/node_modules/@vant/weapp/lib/goods-action/index.wxml"
@@ -0,0 +1,5 @@
+
+
+
+
+
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/node_modules/@vant/weapp/lib/goods-action/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/node_modules/@vant/weapp/lib/goods-action/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..d0def95e14dab0f01319eb27e1fc9620e7e7f28b
--- /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/node_modules/@vant/weapp/lib/goods-action/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-goods-action{position:fixed;right:0;bottom:0;left:0;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;box-sizing:initial;height:50px;height:var(--goods-action-height,50px);background-color:#fff;background-color:var(--goods-action-background-color,#fff)}.van-goods-action--safe{padding-bottom:env(safe-area-inset-bottom)}
\ 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/node_modules/@vant/weapp/lib/grid-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/node_modules/@vant/weapp/lib/grid-item/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..d6644781d0d3bbb8c21f6b6f4d7098f88198eb22
--- /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/node_modules/@vant/weapp/lib/grid-item/index.js"
@@ -0,0 +1,58 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+var relation_1 = require('../common/relation');
+var link_1 = require('../mixins/link');
+component_1.VantComponent({
+ relation: relation_1.useParent('grid'),
+ classes: ['content-class', 'icon-class', 'text-class'],
+ mixins: [link_1.link],
+ props: {
+ icon: String,
+ iconColor: String,
+ dot: Boolean,
+ info: null,
+ badge: null,
+ text: String,
+ useSlot: Boolean,
+ },
+ data: {
+ viewStyle: '',
+ },
+ mounted: function () {
+ this.updateStyle();
+ },
+ methods: {
+ updateStyle: function () {
+ if (!this.parent) {
+ return;
+ }
+ var _a = this.parent,
+ data = _a.data,
+ children = _a.children;
+ var columnNum = data.columnNum,
+ border = data.border,
+ square = data.square,
+ gutter = data.gutter,
+ clickable = data.clickable,
+ center = data.center,
+ direction = data.direction,
+ iconSize = data.iconSize;
+ this.setData({
+ center: center,
+ border: border,
+ square: square,
+ gutter: gutter,
+ clickable: clickable,
+ direction: direction,
+ iconSize: iconSize,
+ index: children.indexOf(this),
+ columnNum: columnNum,
+ });
+ },
+ onClick: function () {
+ this.$emit('click');
+ 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/node_modules/@vant/weapp/lib/grid-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/node_modules/@vant/weapp/lib/grid-item/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/node_modules/@vant/weapp/lib/grid-item/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/node_modules/@vant/weapp/lib/grid-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/node_modules/@vant/weapp/lib/grid-item/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..0070a2bbc617f4508df647957c20bd5a4936a4a1
--- /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/node_modules/@vant/weapp/lib/grid-item/index.wxml"
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ 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/node_modules/@vant/weapp/lib/grid-item/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/node_modules/@vant/weapp/lib/grid-item/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..2cfe37d03ccc8259ffcfb761d6c901027f71cac2
--- /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/node_modules/@vant/weapp/lib/grid-item/index.wxs"
@@ -0,0 +1,32 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function wrapperStyle(data) {
+ var width = 100 / data.columnNum + '%';
+
+ return style({
+ width: width,
+ 'padding-top': data.square ? width : null,
+ 'padding-right': addUnit(data.gutter),
+ 'margin-top':
+ data.index >= data.columnNum && !data.square
+ ? addUnit(data.gutter)
+ : null,
+ });
+}
+
+function contentStyle(data) {
+ return data.square
+ ? style({
+ right: addUnit(data.gutter),
+ bottom: addUnit(data.gutter),
+ height: 'auto',
+ })
+ : '';
+}
+
+module.exports = {
+ wrapperStyle: wrapperStyle,
+ contentStyle: contentStyle,
+};
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/node_modules/@vant/weapp/lib/grid-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/node_modules/@vant/weapp/lib/grid-item/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..ed7facb8e330fa9ec917360063ca9d975de22a0b
--- /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/node_modules/@vant/weapp/lib/grid-item/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-grid-item{position:relative;float:left;box-sizing:border-box}.van-grid-item--square{height:0}.van-grid-item__content{display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;box-sizing:border-box;height:100%;padding:16px 8px;padding:var(--grid-item-content-padding,16px 8px);background-color:#fff;background-color:var(--grid-item-content-background-color,#fff)}.van-grid-item__content:after{z-index:1;border-width:0 1px 1px 0;border-bottom-width:var(--border-width-base,1px);border-right-width:var(--border-width-base,1px);border-top-width:0}.van-grid-item__content--surround:after{border-width:1px;border-width:var(--border-width-base,1px)}.van-grid-item__content--center{-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center}.van-grid-item__content--square{position:absolute;top:0;right:0;left:0}.van-grid-item__content--horizontal{-webkit-flex-direction:row;flex-direction:row}.van-grid-item__content--horizontal .van-grid-item__icon+.van-grid-item__text{margin-top:0;margin-left:8px}.van-grid-item__content--clickable:active{background-color:#f2f3f5;background-color:var(--grid-item-content-active-color,#f2f3f5)}.van-grid-item__icon{display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;font-size:26px;font-size:var(--grid-item-icon-size,26px);height:26px;height:var(--grid-item-icon-size,26px)}.van-grid-item__text{word-wrap:break-word;color:#646566;color:var(--grid-item-text-color,#646566);font-size:12px;font-size:var(--grid-item-text-font-size,12px)}.van-grid-item__icon+.van-grid-item__text{margin-top:8px}
\ 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/node_modules/@vant/weapp/lib/grid/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/node_modules/@vant/weapp/lib/grid/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..e138f2e76b05c3e84c9535b9b0d8c40f7714dbaa
--- /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/node_modules/@vant/weapp/lib/grid/index.js"
@@ -0,0 +1,52 @@
+'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('grid-item'),
+ props: {
+ square: {
+ type: Boolean,
+ observer: 'updateChildren',
+ },
+ gutter: {
+ type: null,
+ value: 0,
+ observer: 'updateChildren',
+ },
+ clickable: {
+ type: Boolean,
+ observer: 'updateChildren',
+ },
+ columnNum: {
+ type: Number,
+ value: 4,
+ observer: 'updateChildren',
+ },
+ center: {
+ type: Boolean,
+ value: true,
+ observer: 'updateChildren',
+ },
+ border: {
+ type: Boolean,
+ value: true,
+ observer: 'updateChildren',
+ },
+ direction: {
+ type: String,
+ observer: 'updateChildren',
+ },
+ iconSize: {
+ type: String,
+ observer: 'updateChildren',
+ },
+ },
+ methods: {
+ updateChildren: function () {
+ this.children.forEach(function (child) {
+ child.updateStyle();
+ });
+ },
+ },
+});
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/node_modules/@vant/weapp/lib/grid/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/node_modules/@vant/weapp/lib/grid/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/node_modules/@vant/weapp/lib/grid/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/node_modules/@vant/weapp/lib/grid/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/node_modules/@vant/weapp/lib/grid/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..2e4118f3583aa3193e488f7121437b4eb176af79
--- /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/node_modules/@vant/weapp/lib/grid/index.wxml"
@@ -0,0 +1,8 @@
+
+
+
+
+
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/node_modules/@vant/weapp/lib/grid/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/node_modules/@vant/weapp/lib/grid/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..cd3b1bd59a948be3912e8051298b63d48f77719b
--- /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/node_modules/@vant/weapp/lib/grid/index.wxs"
@@ -0,0 +1,13 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function rootStyle(data) {
+ return style({
+ 'padding-left': addUnit(data.gutter),
+ });
+}
+
+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/node_modules/@vant/weapp/lib/grid/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/node_modules/@vant/weapp/lib/grid/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..327fc5efd0a95e2527496046f24c6028cf86d7b9
--- /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/node_modules/@vant/weapp/lib/grid/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-grid{position:relative;box-sizing:border-box;overflow:hidden}
\ 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/node_modules/@vant/weapp/lib/icon/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/node_modules/@vant/weapp/lib/icon/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..28839c38a6087927f7876d687d9d6b7b04c52f2d
--- /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/node_modules/@vant/weapp/lib/icon/index.js"
@@ -0,0 +1,22 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+component_1.VantComponent({
+ props: {
+ dot: Boolean,
+ info: null,
+ size: null,
+ color: String,
+ customStyle: String,
+ classPrefix: {
+ type: String,
+ value: 'van-icon',
+ },
+ name: String,
+ },
+ methods: {
+ onClick: function () {
+ this.$emit('click');
+ },
+ },
+});
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/node_modules/@vant/weapp/lib/icon/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/node_modules/@vant/weapp/lib/icon/index.json"
new file mode 100644
index 0000000000000000000000000000000000000000..bf0ebe009c3904229ff4005710f4136b55cf57aa
--- /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/node_modules/@vant/weapp/lib/icon/index.json"
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-info": "../info/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/node_modules/@vant/weapp/lib/icon/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/node_modules/@vant/weapp/lib/icon/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..3c701745ba48735071a00b5eae3d9c2975d4a7b6
--- /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/node_modules/@vant/weapp/lib/icon/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/node_modules/@vant/weapp/lib/icon/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/node_modules/@vant/weapp/lib/icon/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..45e3aa0a1f132fbf0bf922943c359b332c667413
--- /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/node_modules/@vant/weapp/lib/icon/index.wxs"
@@ -0,0 +1,39 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function isImage(name) {
+ return name.indexOf('/') !== -1;
+}
+
+function rootClass(data) {
+ var classes = ['custom-class'];
+
+ if (data.classPrefix != null) {
+ classes.push(data.classPrefix);
+ }
+
+ if (isImage(data.name)) {
+ classes.push('van-icon--image');
+ } else if (data.classPrefix != null) {
+ classes.push(data.classPrefix + '-' + data.name);
+ }
+
+ return classes.join(' ');
+}
+
+function rootStyle(data) {
+ return style([
+ {
+ color: data.color,
+ 'font-size': addUnit(data.size),
+ },
+ data.customStyle,
+ ]);
+}
+
+module.exports = {
+ isImage: isImage,
+ rootClass: rootClass,
+ 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/node_modules/@vant/weapp/lib/icon/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/node_modules/@vant/weapp/lib/icon/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..2d5f87998691b472f320d8799321f6469ff4b3c1
--- /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/node_modules/@vant/weapp/lib/icon/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';@font-face{font-weight:400;font-family:vant-icon;font-style:normal;font-display:auto;src:url(https://img01.yzcdn.cn/vant/vant-icon-f463a9.woff2) format("woff2"),url(https://img01.yzcdn.cn/vant/vant-icon-f463a9.woff) format("woff"),url(https://img01.yzcdn.cn/vant/vant-icon-f463a9.ttf) format("truetype")}.van-icon{position:relative;font:normal normal normal 14px/1 vant-icon;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased}.van-icon,.van-icon:before{display:inline-block}.van-icon-add-o:before{content:"\F000"}.van-icon-add-square:before{content:"\F001"}.van-icon-add:before{content:"\F002"}.van-icon-after-sale:before{content:"\F003"}.van-icon-aim:before{content:"\F004"}.van-icon-alipay:before{content:"\F005"}.van-icon-apps-o:before{content:"\F006"}.van-icon-arrow-down:before{content:"\F007"}.van-icon-arrow-left:before{content:"\F008"}.van-icon-arrow-up:before{content:"\F009"}.van-icon-arrow:before{content:"\F00A"}.van-icon-ascending:before{content:"\F00B"}.van-icon-audio:before{content:"\F00C"}.van-icon-award-o:before{content:"\F00D"}.van-icon-award:before{content:"\F00E"}.van-icon-back-top:before{content:"\F0E6"}.van-icon-bag-o:before{content:"\F00F"}.van-icon-bag:before{content:"\F010"}.van-icon-balance-list-o:before{content:"\F011"}.van-icon-balance-list:before{content:"\F012"}.van-icon-balance-o:before{content:"\F013"}.van-icon-balance-pay:before{content:"\F014"}.van-icon-bar-chart-o:before{content:"\F015"}.van-icon-bars:before{content:"\F016"}.van-icon-bell:before{content:"\F017"}.van-icon-bill-o:before{content:"\F018"}.van-icon-bill:before{content:"\F019"}.van-icon-birthday-cake-o:before{content:"\F01A"}.van-icon-bookmark-o:before{content:"\F01B"}.van-icon-bookmark:before{content:"\F01C"}.van-icon-browsing-history-o:before{content:"\F01D"}.van-icon-browsing-history:before{content:"\F01E"}.van-icon-brush-o:before{content:"\F01F"}.van-icon-bulb-o:before{content:"\F020"}.van-icon-bullhorn-o:before{content:"\F021"}.van-icon-calendar-o:before{content:"\F022"}.van-icon-card:before{content:"\F023"}.van-icon-cart-circle-o:before{content:"\F024"}.van-icon-cart-circle:before{content:"\F025"}.van-icon-cart-o:before{content:"\F026"}.van-icon-cart:before{content:"\F027"}.van-icon-cash-back-record:before{content:"\F028"}.van-icon-cash-on-deliver:before{content:"\F029"}.van-icon-cashier-o:before{content:"\F02A"}.van-icon-certificate:before{content:"\F02B"}.van-icon-chart-trending-o:before{content:"\F02C"}.van-icon-chat-o:before{content:"\F02D"}.van-icon-chat:before{content:"\F02E"}.van-icon-checked:before{content:"\F02F"}.van-icon-circle:before{content:"\F030"}.van-icon-clear:before{content:"\F031"}.van-icon-clock-o:before{content:"\F032"}.van-icon-clock:before{content:"\F033"}.van-icon-close:before{content:"\F034"}.van-icon-closed-eye:before{content:"\F035"}.van-icon-cluster-o:before{content:"\F036"}.van-icon-cluster:before{content:"\F037"}.van-icon-column:before{content:"\F038"}.van-icon-comment-circle-o:before{content:"\F039"}.van-icon-comment-circle:before{content:"\F03A"}.van-icon-comment-o:before{content:"\F03B"}.van-icon-comment:before{content:"\F03C"}.van-icon-completed:before{content:"\F03D"}.van-icon-contact:before{content:"\F03E"}.van-icon-coupon-o:before{content:"\F03F"}.van-icon-coupon:before{content:"\F040"}.van-icon-credit-pay:before{content:"\F041"}.van-icon-cross:before{content:"\F042"}.van-icon-debit-pay:before{content:"\F043"}.van-icon-delete-o:before{content:"\F0E9"}.van-icon-delete:before{content:"\F044"}.van-icon-descending:before{content:"\F045"}.van-icon-description:before{content:"\F046"}.van-icon-desktop-o:before{content:"\F047"}.van-icon-diamond-o:before{content:"\F048"}.van-icon-diamond:before{content:"\F049"}.van-icon-discount:before{content:"\F04A"}.van-icon-down:before{content:"\F04B"}.van-icon-ecard-pay:before{content:"\F04C"}.van-icon-edit:before{content:"\F04D"}.van-icon-ellipsis:before{content:"\F04E"}.van-icon-empty:before{content:"\F04F"}.van-icon-enlarge:before{content:"\F0E4"}.van-icon-envelop-o:before{content:"\F050"}.van-icon-exchange:before{content:"\F051"}.van-icon-expand-o:before{content:"\F052"}.van-icon-expand:before{content:"\F053"}.van-icon-eye-o:before{content:"\F054"}.van-icon-eye:before{content:"\F055"}.van-icon-fail:before{content:"\F056"}.van-icon-failure:before{content:"\F057"}.van-icon-filter-o:before{content:"\F058"}.van-icon-fire-o:before{content:"\F059"}.van-icon-fire:before{content:"\F05A"}.van-icon-flag-o:before{content:"\F05B"}.van-icon-flower-o:before{content:"\F05C"}.van-icon-font-o:before{content:"\F0EC"}.van-icon-font:before{content:"\F0EB"}.van-icon-free-postage:before{content:"\F05D"}.van-icon-friends-o:before{content:"\F05E"}.van-icon-friends:before{content:"\F05F"}.van-icon-gem-o:before{content:"\F060"}.van-icon-gem:before{content:"\F061"}.van-icon-gift-card-o:before{content:"\F062"}.van-icon-gift-card:before{content:"\F063"}.van-icon-gift-o:before{content:"\F064"}.van-icon-gift:before{content:"\F065"}.van-icon-gold-coin-o:before{content:"\F066"}.van-icon-gold-coin:before{content:"\F067"}.van-icon-good-job-o:before{content:"\F068"}.van-icon-good-job:before{content:"\F069"}.van-icon-goods-collect-o:before{content:"\F06A"}.van-icon-goods-collect:before{content:"\F06B"}.van-icon-graphic:before{content:"\F06C"}.van-icon-home-o:before{content:"\F06D"}.van-icon-hot-o:before{content:"\F06E"}.van-icon-hot-sale-o:before{content:"\F06F"}.van-icon-hot-sale:before{content:"\F070"}.van-icon-hot:before{content:"\F071"}.van-icon-hotel-o:before{content:"\F072"}.van-icon-idcard:before{content:"\F073"}.van-icon-info-o:before{content:"\F074"}.van-icon-info:before{content:"\F075"}.van-icon-invition:before{content:"\F076"}.van-icon-label-o:before{content:"\F077"}.van-icon-label:before{content:"\F078"}.van-icon-like-o:before{content:"\F079"}.van-icon-like:before{content:"\F07A"}.van-icon-live:before{content:"\F07B"}.van-icon-location-o:before{content:"\F07C"}.van-icon-location:before{content:"\F07D"}.van-icon-lock:before{content:"\F07E"}.van-icon-logistics:before{content:"\F07F"}.van-icon-manager-o:before{content:"\F080"}.van-icon-manager:before{content:"\F081"}.van-icon-map-marked:before{content:"\F082"}.van-icon-medal-o:before{content:"\F083"}.van-icon-medal:before{content:"\F084"}.van-icon-minus:before{content:"\F0E8"}.van-icon-more-o:before{content:"\F085"}.van-icon-more:before{content:"\F086"}.van-icon-music-o:before{content:"\F087"}.van-icon-music:before{content:"\F088"}.van-icon-new-arrival-o:before{content:"\F089"}.van-icon-new-arrival:before{content:"\F08A"}.van-icon-new-o:before{content:"\F08B"}.van-icon-new:before{content:"\F08C"}.van-icon-newspaper-o:before{content:"\F08D"}.van-icon-notes-o:before{content:"\F08E"}.van-icon-orders-o:before{content:"\F08F"}.van-icon-other-pay:before{content:"\F090"}.van-icon-paid:before{content:"\F091"}.van-icon-passed:before{content:"\F092"}.van-icon-pause-circle-o:before{content:"\F093"}.van-icon-pause-circle:before{content:"\F094"}.van-icon-pause:before{content:"\F095"}.van-icon-peer-pay:before{content:"\F096"}.van-icon-pending-payment:before{content:"\F097"}.van-icon-phone-circle-o:before{content:"\F098"}.van-icon-phone-circle:before{content:"\F099"}.van-icon-phone-o:before{content:"\F09A"}.van-icon-phone:before{content:"\F09B"}.van-icon-photo-fail:before{content:"\F0E5"}.van-icon-photo-o:before{content:"\F09C"}.van-icon-photo:before{content:"\F09D"}.van-icon-photograph:before{content:"\F09E"}.van-icon-play-circle-o:before{content:"\F09F"}.van-icon-play-circle:before{content:"\F0A0"}.van-icon-play:before{content:"\F0A1"}.van-icon-plus:before{content:"\F0A2"}.van-icon-point-gift-o:before{content:"\F0A3"}.van-icon-point-gift:before{content:"\F0A4"}.van-icon-points:before{content:"\F0A5"}.van-icon-printer:before{content:"\F0A6"}.van-icon-qr-invalid:before{content:"\F0A7"}.van-icon-qr:before{content:"\F0A8"}.van-icon-question-o:before{content:"\F0A9"}.van-icon-question:before{content:"\F0AA"}.van-icon-records:before{content:"\F0AB"}.van-icon-refund-o:before{content:"\F0AC"}.van-icon-replay:before{content:"\F0AD"}.van-icon-revoke:before{content:"\F0ED"}.van-icon-scan:before{content:"\F0AE"}.van-icon-search:before{content:"\F0AF"}.van-icon-send-gift-o:before{content:"\F0B0"}.van-icon-send-gift:before{content:"\F0B1"}.van-icon-service-o:before{content:"\F0B2"}.van-icon-service:before{content:"\F0B3"}.van-icon-setting-o:before{content:"\F0B4"}.van-icon-setting:before{content:"\F0B5"}.van-icon-share-o:before{content:"\F0E7"}.van-icon-share:before{content:"\F0B6"}.van-icon-shop-collect-o:before{content:"\F0B7"}.van-icon-shop-collect:before{content:"\F0B8"}.van-icon-shop-o:before{content:"\F0B9"}.van-icon-shop:before{content:"\F0BA"}.van-icon-shopping-cart-o:before{content:"\F0BB"}.van-icon-shopping-cart:before{content:"\F0BC"}.van-icon-shrink:before{content:"\F0BD"}.van-icon-sign:before{content:"\F0BE"}.van-icon-smile-comment-o:before{content:"\F0BF"}.van-icon-smile-comment:before{content:"\F0C0"}.van-icon-smile-o:before{content:"\F0C1"}.van-icon-smile:before{content:"\F0C2"}.van-icon-sort:before{content:"\F0EA"}.van-icon-star-o:before{content:"\F0C3"}.van-icon-star:before{content:"\F0C4"}.van-icon-stop-circle-o:before{content:"\F0C5"}.van-icon-stop-circle:before{content:"\F0C6"}.van-icon-stop:before{content:"\F0C7"}.van-icon-success:before{content:"\F0C8"}.van-icon-thumb-circle-o:before{content:"\F0C9"}.van-icon-thumb-circle:before{content:"\F0CA"}.van-icon-todo-list-o:before{content:"\F0CB"}.van-icon-todo-list:before{content:"\F0CC"}.van-icon-tosend:before{content:"\F0CD"}.van-icon-tv-o:before{content:"\F0CE"}.van-icon-umbrella-circle:before{content:"\F0CF"}.van-icon-underway-o:before{content:"\F0D0"}.van-icon-underway:before{content:"\F0D1"}.van-icon-upgrade:before{content:"\F0D2"}.van-icon-user-circle-o:before{content:"\F0D3"}.van-icon-user-o:before{content:"\F0D4"}.van-icon-video-o:before{content:"\F0D5"}.van-icon-video:before{content:"\F0D6"}.van-icon-vip-card-o:before{content:"\F0D7"}.van-icon-vip-card:before{content:"\F0D8"}.van-icon-volume-o:before{content:"\F0D9"}.van-icon-volume:before{content:"\F0DA"}.van-icon-wap-home-o:before{content:"\F0DB"}.van-icon-wap-home:before{content:"\F0DC"}.van-icon-wap-nav:before{content:"\F0DD"}.van-icon-warn-o:before{content:"\F0DE"}.van-icon-warning-o:before{content:"\F0DF"}.van-icon-warning:before{content:"\F0E0"}.van-icon-weapp-nav:before{content:"\F0E1"}.van-icon-wechat-pay:before{content:"\F0E2"}.van-icon-wechat:before{content:"\F0EE"}.van-icon-youzan-shield:before{content:"\F0E3"}:host{display:-webkit-inline-flex;display:inline-flex;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center}.van-icon--image{width:1em;height:1em}.van-icon__image{width:100%;height:100%}.van-icon__info{z-index:1}
\ 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/node_modules/@vant/weapp/lib/image/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/node_modules/@vant/weapp/lib/image/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..cad3c7145193a519c2ff7a1c091f98088d76d8f5
--- /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/node_modules/@vant/weapp/lib/image/index.js"
@@ -0,0 +1,63 @@
+'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');
+component_1.VantComponent({
+ mixins: [button_1.button, open_type_1.openType],
+ classes: ['custom-class', 'loading-class', 'error-class', 'image-class'],
+ props: {
+ src: {
+ type: String,
+ observer: function () {
+ this.setData({
+ error: false,
+ loading: true,
+ });
+ },
+ },
+ round: Boolean,
+ width: null,
+ height: null,
+ radius: null,
+ lazyLoad: Boolean,
+ useErrorSlot: Boolean,
+ useLoadingSlot: Boolean,
+ showMenuByLongpress: Boolean,
+ fit: {
+ type: String,
+ value: 'fill',
+ },
+ showError: {
+ type: Boolean,
+ value: true,
+ },
+ showLoading: {
+ type: Boolean,
+ value: true,
+ },
+ },
+ data: {
+ error: false,
+ loading: true,
+ viewStyle: '',
+ },
+ methods: {
+ onLoad: function (event) {
+ this.setData({
+ loading: false,
+ });
+ this.$emit('load', event.detail);
+ },
+ onError: function (event) {
+ this.setData({
+ loading: false,
+ error: true,
+ });
+ this.$emit('error', event.detail);
+ },
+ onClick: function (event) {
+ this.$emit('click', event.detail);
+ },
+ },
+});
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/node_modules/@vant/weapp/lib/image/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/node_modules/@vant/weapp/lib/image/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/node_modules/@vant/weapp/lib/image/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/node_modules/@vant/weapp/lib/image/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/node_modules/@vant/weapp/lib/image/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..d3092bd927962f5e9b8efecdbfd45d1fec8d1047
--- /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/node_modules/@vant/weapp/lib/image/index.wxml"
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
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/node_modules/@vant/weapp/lib/image/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/node_modules/@vant/weapp/lib/image/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..cec14b8ba8ad2401e523469e2c7cc98c76f7e7d4
--- /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/node_modules/@vant/weapp/lib/image/index.wxs"
@@ -0,0 +1,32 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function rootStyle(data) {
+ return style([
+ {
+ width: addUnit(data.width),
+ height: addUnit(data.height),
+ 'border-radius': addUnit(data.radius),
+ },
+ data.radius ? 'overflow: hidden' : null,
+ ]);
+}
+
+var FIT_MODE_MAP = {
+ none: 'center',
+ fill: 'scaleToFill',
+ cover: 'aspectFill',
+ contain: 'aspectFit',
+ widthFix: 'widthFix',
+ heightFix: 'heightFix',
+};
+
+function mode(fit) {
+ return FIT_MODE_MAP[fit];
+}
+
+module.exports = {
+ rootStyle: rootStyle,
+ mode: mode,
+};
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/node_modules/@vant/weapp/lib/image/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/node_modules/@vant/weapp/lib/image/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..47589109a83a5981d73282c131ccd242976037c2
--- /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/node_modules/@vant/weapp/lib/image/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-image{position:relative;display:inline-block}.van-image--round{overflow:hidden;border-radius:50%}.van-image--round .van-image__img{border-radius:inherit}.van-image__error,.van-image__img,.van-image__loading{display:block;width:100%;height:100%}.van-image__error,.van-image__loading{position:absolute;top:0;left:0;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;color:#969799;color:var(--image-placeholder-text-color,#969799);font-size:14px;font-size:var(--image-placeholder-font-size,14px);background-color:#f7f8fa;background-color:var(--image-placeholder-background-color,#f7f8fa)}.van-image__loading-icon{color:#dcdee0;color:var(--image-loading-icon-color,#dcdee0);font-size:32px!important;font-size:var(--image-loading-icon-size,32px)!important}.van-image__error-icon{color:#dcdee0;color:var(--image-error-icon-color,#dcdee0);font-size:32px!important;font-size:var(--image-error-icon-size,32px)!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/node_modules/@vant/weapp/lib/index-anchor/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/node_modules/@vant/weapp/lib/index-anchor/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..2970257dc7461644e01c6cdd84fd3adf609a4f7b
--- /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/node_modules/@vant/weapp/lib/index-anchor/index.js"
@@ -0,0 +1,28 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var utils_1 = require('../common/utils');
+var component_1 = require('../common/component');
+var relation_1 = require('../common/relation');
+component_1.VantComponent({
+ relation: relation_1.useParent('index-bar'),
+ props: {
+ useSlot: Boolean,
+ index: null,
+ },
+ data: {
+ active: false,
+ wrapperStyle: '',
+ anchorStyle: '',
+ },
+ methods: {
+ scrollIntoView: function (scrollTop) {
+ var _this = this;
+ utils_1.getRect(this, '.van-index-anchor-wrapper').then(function (rect) {
+ wx.pageScrollTo({
+ duration: 0,
+ scrollTop: scrollTop + rect.top - _this.parent.data.stickyOffsetTop,
+ });
+ });
+ },
+ },
+});
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/node_modules/@vant/weapp/lib/index-anchor/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/node_modules/@vant/weapp/lib/index-anchor/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/node_modules/@vant/weapp/lib/index-anchor/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/node_modules/@vant/weapp/lib/index-anchor/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/node_modules/@vant/weapp/lib/index-anchor/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..49affa7c456f035d7698b11e94f2c11294ed4c97
--- /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/node_modules/@vant/weapp/lib/index-anchor/index.wxml"
@@ -0,0 +1,14 @@
+
+
+
+
+ {{ 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/node_modules/@vant/weapp/lib/index-anchor/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/node_modules/@vant/weapp/lib/index-anchor/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..b8c3c0a48f9e0cfe5d4871038bb5daed1a02a298
--- /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/node_modules/@vant/weapp/lib/index-anchor/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-index-anchor{padding:0 16px;padding:var(--index-anchor-padding,0 16px);color:#323233;color:var(--index-anchor-text-color,#323233);font-weight:500;font-weight:var(--index-anchor-font-weight,500);font-size:14px;font-size:var(--index-anchor-font-size,14px);line-height:32px;line-height:var(--index-anchor-line-height,32px);background-color:initial;background-color:var(--index-anchor-background-color,transparent)}.van-index-anchor--active{right:0;left:0;color:#07c160;color:var(--index-anchor-active-text-color,#07c160);background-color:#fff;background-color:var(--index-anchor-active-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/node_modules/@vant/weapp/lib/index-bar/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/node_modules/@vant/weapp/lib/index-bar/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..ebb30545462a69f4bc9eea82eb7a33f4590cdcc9
--- /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/node_modules/@vant/weapp/lib/index-bar/index.js"
@@ -0,0 +1,278 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var color_1 = require('../common/color');
+var component_1 = require('../common/component');
+var relation_1 = require('../common/relation');
+var utils_1 = require('../common/utils');
+var page_scroll_1 = require('../mixins/page-scroll');
+var indexList = function () {
+ var indexList = [];
+ var charCodeOfA = 'A'.charCodeAt(0);
+ for (var i = 0; i < 26; i++) {
+ indexList.push(String.fromCharCode(charCodeOfA + i));
+ }
+ return indexList;
+};
+component_1.VantComponent({
+ relation: relation_1.useChildren('index-anchor', function () {
+ this.updateData();
+ }),
+ props: {
+ sticky: {
+ type: Boolean,
+ value: true,
+ },
+ zIndex: {
+ type: Number,
+ value: 1,
+ },
+ highlightColor: {
+ type: String,
+ value: color_1.GREEN,
+ },
+ stickyOffsetTop: {
+ type: Number,
+ value: 0,
+ },
+ indexList: {
+ type: Array,
+ value: indexList(),
+ },
+ },
+ mixins: [
+ page_scroll_1.pageScrollMixin(function (event) {
+ this.scrollTop =
+ (event === null || event === void 0 ? void 0 : event.scrollTop) || 0;
+ this.onScroll();
+ }),
+ ],
+ data: {
+ activeAnchorIndex: null,
+ showSidebar: false,
+ },
+ created: function () {
+ this.scrollTop = 0;
+ },
+ methods: {
+ updateData: function () {
+ var _this = this;
+ wx.nextTick(function () {
+ if (_this.timer != null) {
+ clearTimeout(_this.timer);
+ }
+ _this.timer = setTimeout(function () {
+ _this.setData({
+ showSidebar: !!_this.children.length,
+ });
+ _this.setRect().then(function () {
+ _this.onScroll();
+ });
+ }, 0);
+ });
+ },
+ setRect: function () {
+ return Promise.all([
+ this.setAnchorsRect(),
+ this.setListRect(),
+ this.setSiderbarRect(),
+ ]);
+ },
+ setAnchorsRect: function () {
+ var _this = this;
+ return Promise.all(
+ this.children.map(function (anchor) {
+ return utils_1
+ .getRect(anchor, '.van-index-anchor-wrapper')
+ .then(function (rect) {
+ Object.assign(anchor, {
+ height: rect.height,
+ top: rect.top + _this.scrollTop,
+ });
+ });
+ })
+ );
+ },
+ setListRect: function () {
+ var _this = this;
+ return utils_1.getRect(this, '.van-index-bar').then(function (rect) {
+ Object.assign(_this, {
+ height: rect.height,
+ top: rect.top + _this.scrollTop,
+ });
+ });
+ },
+ setSiderbarRect: function () {
+ var _this = this;
+ return utils_1
+ .getRect(this, '.van-index-bar__sidebar')
+ .then(function (res) {
+ _this.sidebar = {
+ height: res.height,
+ top: res.top,
+ };
+ });
+ },
+ setDiffData: function (_a) {
+ var target = _a.target,
+ data = _a.data;
+ var diffData = {};
+ Object.keys(data).forEach(function (key) {
+ if (target.data[key] !== data[key]) {
+ diffData[key] = data[key];
+ }
+ });
+ if (Object.keys(diffData).length) {
+ target.setData(diffData);
+ }
+ },
+ getAnchorRect: function (anchor) {
+ return utils_1
+ .getRect(anchor, '.van-index-anchor-wrapper')
+ .then(function (rect) {
+ return {
+ height: rect.height,
+ top: rect.top,
+ };
+ });
+ },
+ getActiveAnchorIndex: function () {
+ var _a = this,
+ children = _a.children,
+ scrollTop = _a.scrollTop;
+ var _b = this.data,
+ sticky = _b.sticky,
+ stickyOffsetTop = _b.stickyOffsetTop;
+ for (var i = this.children.length - 1; i >= 0; i--) {
+ var preAnchorHeight = i > 0 ? children[i - 1].height : 0;
+ var reachTop = sticky ? preAnchorHeight + stickyOffsetTop : 0;
+ if (reachTop + scrollTop >= children[i].top) {
+ return i;
+ }
+ }
+ return -1;
+ },
+ onScroll: function () {
+ var _this = this;
+ var _a = this,
+ _b = _a.children,
+ children = _b === void 0 ? [] : _b,
+ scrollTop = _a.scrollTop;
+ if (!children.length) {
+ return;
+ }
+ var _c = this.data,
+ sticky = _c.sticky,
+ stickyOffsetTop = _c.stickyOffsetTop,
+ zIndex = _c.zIndex,
+ highlightColor = _c.highlightColor;
+ var active = this.getActiveAnchorIndex();
+ this.setDiffData({
+ target: this,
+ data: {
+ activeAnchorIndex: active,
+ },
+ });
+ if (sticky) {
+ var isActiveAnchorSticky_1 = false;
+ if (active !== -1) {
+ isActiveAnchorSticky_1 =
+ children[active].top <= stickyOffsetTop + scrollTop;
+ }
+ children.forEach(function (item, index) {
+ if (index === active) {
+ var wrapperStyle = '';
+ var anchorStyle =
+ '\n color: ' + highlightColor + ';\n ';
+ if (isActiveAnchorSticky_1) {
+ wrapperStyle =
+ '\n height: ' +
+ children[index].height +
+ 'px;\n ';
+ anchorStyle =
+ '\n position: fixed;\n top: ' +
+ stickyOffsetTop +
+ 'px;\n z-index: ' +
+ zIndex +
+ ';\n color: ' +
+ highlightColor +
+ ';\n ';
+ }
+ _this.setDiffData({
+ target: item,
+ data: {
+ active: true,
+ anchorStyle: anchorStyle,
+ wrapperStyle: wrapperStyle,
+ },
+ });
+ } else if (index === active - 1) {
+ var currentAnchor = children[index];
+ var currentOffsetTop = currentAnchor.top;
+ var targetOffsetTop =
+ index === children.length - 1
+ ? _this.top
+ : children[index + 1].top;
+ var parentOffsetHeight = targetOffsetTop - currentOffsetTop;
+ var translateY = parentOffsetHeight - currentAnchor.height;
+ var anchorStyle =
+ '\n position: relative;\n transform: translate3d(0, ' +
+ translateY +
+ 'px, 0);\n z-index: ' +
+ zIndex +
+ ';\n color: ' +
+ highlightColor +
+ ';\n ';
+ _this.setDiffData({
+ target: item,
+ data: {
+ active: true,
+ anchorStyle: anchorStyle,
+ },
+ });
+ } else {
+ _this.setDiffData({
+ target: item,
+ data: {
+ active: false,
+ anchorStyle: '',
+ wrapperStyle: '',
+ },
+ });
+ }
+ });
+ }
+ },
+ onClick: function (event) {
+ this.scrollToAnchor(event.target.dataset.index);
+ },
+ onTouchMove: function (event) {
+ var sidebarLength = this.children.length;
+ var touch = event.touches[0];
+ var itemHeight = this.sidebar.height / sidebarLength;
+ var index = Math.floor((touch.clientY - this.sidebar.top) / itemHeight);
+ if (index < 0) {
+ index = 0;
+ } else if (index > sidebarLength - 1) {
+ index = sidebarLength - 1;
+ }
+ this.scrollToAnchor(index);
+ },
+ onTouchStop: function () {
+ this.scrollToAnchorIndex = null;
+ },
+ scrollToAnchor: function (index) {
+ var _this = this;
+ if (typeof index !== 'number' || this.scrollToAnchorIndex === index) {
+ return;
+ }
+ this.scrollToAnchorIndex = index;
+ var anchor = this.children.find(function (item) {
+ return item.data.index === _this.data.indexList[index];
+ });
+ if (anchor) {
+ anchor.scrollIntoView(this.scrollTop);
+ this.$emit('select', anchor.data.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/node_modules/@vant/weapp/lib/index-bar/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/node_modules/@vant/weapp/lib/index-bar/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/node_modules/@vant/weapp/lib/index-bar/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/node_modules/@vant/weapp/lib/index-bar/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/node_modules/@vant/weapp/lib/index-bar/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..19a59cf9d4b29e1a17e0d70fb082b0d6e4efb901
--- /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/node_modules/@vant/weapp/lib/index-bar/index.wxml"
@@ -0,0 +1,22 @@
+
+
+
+
+
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/node_modules/@vant/weapp/lib/index-bar/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/node_modules/@vant/weapp/lib/index-bar/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..dba5dc071f0a5c048806a8b1ee7b17a14a6e0651
--- /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/node_modules/@vant/weapp/lib/index-bar/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-index-bar{position:relative}.van-index-bar__sidebar{position:fixed;top:50%;right:0;display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;text-align:center;-webkit-transform:translateY(-50%);transform:translateY(-50%);-webkit-user-select:none;user-select:none}.van-index-bar__index{font-weight:500;padding:0 4px 0 16px;padding:0 var(--padding-base,4px) 0 var(--padding-md,16px);font-size:10px;font-size:var(--index-bar-index-font-size,10px);line-height:14px;line-height:var(--index-bar-index-line-height,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/node_modules/@vant/weapp/lib/info/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/node_modules/@vant/weapp/lib/info/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..a08ad2ca8b5a3ac519e6fbb9d8a93ba9fdbbb2b6
--- /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/node_modules/@vant/weapp/lib/info/index.js"
@@ -0,0 +1,10 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+component_1.VantComponent({
+ props: {
+ dot: Boolean,
+ info: null,
+ 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/node_modules/@vant/weapp/lib/info/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/node_modules/@vant/weapp/lib/info/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/node_modules/@vant/weapp/lib/info/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/node_modules/@vant/weapp/lib/info/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/node_modules/@vant/weapp/lib/info/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..b39b52459903981d61ff38bd135cb7eda703df5b
--- /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/node_modules/@vant/weapp/lib/info/index.wxml"
@@ -0,0 +1,7 @@
+
+
+{{ dot ? '' : info }}
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/node_modules/@vant/weapp/lib/info/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/node_modules/@vant/weapp/lib/info/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..953136a585f38379fa646445698d5ffe7fcb1a74
--- /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/node_modules/@vant/weapp/lib/info/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-info{position:absolute;top:0;right:0;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;white-space:nowrap;-webkit-transform:translate(50%,-50%);transform:translate(50%,-50%);-webkit-transform-origin:100%;transform-origin:100%;height:16px;height:var(--info-size,16px);min-width:16px;min-width:var(--info-size,16px);padding:0 3px;padding:var(--info-padding,0 3px);color:#fff;color:var(--info-color,#fff);font-weight:500;font-weight:var(--info-font-weight,500);font-size:12px;font-size:var(--info-font-size,12px);font-family:-apple-system-font,Helvetica Neue,Arial,sans-serif;font-family:var(--info-font-family,-apple-system-font,Helvetica Neue,Arial,sans-serif);background-color:#ee0a24;background-color:var(--info-background-color,#ee0a24);border:1px solid #fff;border:var(--info-border-width,1px) solid var(--white,#fff);border-radius:16px;border-radius:var(--info-size,16px)}.van-info--dot{min-width:0;border-radius:100%;width:8px;width:var(--info-dot-size,8px);height:8px;height:var(--info-dot-size,8px);background-color:#ee0a24;background-color:var(--info-dot-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/node_modules/@vant/weapp/lib/loading/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/node_modules/@vant/weapp/lib/loading/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..5aa2a817d92031f30adea64c7dd5cc7e7898df3b
--- /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/node_modules/@vant/weapp/lib/loading/index.js"
@@ -0,0 +1,18 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+component_1.VantComponent({
+ props: {
+ color: String,
+ vertical: Boolean,
+ type: {
+ type: String,
+ value: 'circular',
+ },
+ size: String,
+ textSize: String,
+ },
+ data: {
+ array12: Array.from({ length: 12 }),
+ },
+});
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/node_modules/@vant/weapp/lib/loading/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/node_modules/@vant/weapp/lib/loading/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/node_modules/@vant/weapp/lib/loading/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/node_modules/@vant/weapp/lib/loading/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/node_modules/@vant/weapp/lib/loading/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..7d4a5397bb1347c5530b6f977cb7fd1fdf29b460
--- /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/node_modules/@vant/weapp/lib/loading/index.wxml"
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
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/node_modules/@vant/weapp/lib/loading/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/node_modules/@vant/weapp/lib/loading/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..02a0b800c651e55938ecc3ee12d10e37b3782614
--- /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/node_modules/@vant/weapp/lib/loading/index.wxs"
@@ -0,0 +1,22 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function spinnerStyle(data) {
+ return style({
+ color: data.color,
+ width: addUnit(data.size),
+ height: addUnit(data.size),
+ });
+}
+
+function textStyle(data) {
+ return style({
+ 'font-size': addUnit(data.textSize),
+ });
+}
+
+module.exports = {
+ spinnerStyle: spinnerStyle,
+ textStyle: textStyle,
+};
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/node_modules/@vant/weapp/lib/loading/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/node_modules/@vant/weapp/lib/loading/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..f28a6b46fd4eac7258261e5ef72f692d75341394
--- /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/node_modules/@vant/weapp/lib/loading/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';:host{font-size:0;line-height:1}.van-loading{display:-webkit-inline-flex;display:inline-flex;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center;color:#c8c9cc;color:var(--loading-spinner-color,#c8c9cc)}.van-loading__spinner{position:relative;box-sizing:border-box;width:30px;width:var(--loading-spinner-size,30px);max-width:100%;max-height:100%;height:30px;height:var(--loading-spinner-size,30px);-webkit-animation:van-rotate .8s linear infinite;animation:van-rotate .8s linear infinite;-webkit-animation:van-rotate var(--loading-spinner-animation-duration,.8s) linear infinite;animation:van-rotate var(--loading-spinner-animation-duration,.8s) linear infinite}.van-loading__spinner--spinner{-webkit-animation-timing-function:steps(12);animation-timing-function:steps(12)}.van-loading__spinner--circular{border:1px solid transparent;border-top-color:initial;border-radius:100%}.van-loading__text{margin-left:8px;margin-left:var(--padding-xs,8px);color:#969799;color:var(--loading-text-color,#969799);font-size:14px;font-size:var(--loading-text-font-size,14px);line-height:20px;line-height:var(--loading-text-line-height,20px)}.van-loading__text:empty{display:none}.van-loading--vertical{-webkit-flex-direction:column;flex-direction:column}.van-loading--vertical .van-loading__text{margin:8px 0 0;margin:var(--padding-xs,8px) 0 0}.van-loading__dot{position:absolute;top:0;left:0;width:100%;height:100%}.van-loading__dot:before{display:block;width:2px;height:25%;margin:0 auto;background-color:currentColor;border-radius:40%;content:" "}.van-loading__dot:first-of-type{-webkit-transform:rotate(30deg);transform:rotate(30deg);opacity:1}.van-loading__dot:nth-of-type(2){-webkit-transform:rotate(60deg);transform:rotate(60deg);opacity:.9375}.van-loading__dot:nth-of-type(3){-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:.875}.van-loading__dot:nth-of-type(4){-webkit-transform:rotate(120deg);transform:rotate(120deg);opacity:.8125}.van-loading__dot:nth-of-type(5){-webkit-transform:rotate(150deg);transform:rotate(150deg);opacity:.75}.van-loading__dot:nth-of-type(6){-webkit-transform:rotate(180deg);transform:rotate(180deg);opacity:.6875}.van-loading__dot:nth-of-type(7){-webkit-transform:rotate(210deg);transform:rotate(210deg);opacity:.625}.van-loading__dot:nth-of-type(8){-webkit-transform:rotate(240deg);transform:rotate(240deg);opacity:.5625}.van-loading__dot:nth-of-type(9){-webkit-transform:rotate(270deg);transform:rotate(270deg);opacity:.5}.van-loading__dot:nth-of-type(10){-webkit-transform:rotate(300deg);transform:rotate(300deg);opacity:.4375}.van-loading__dot:nth-of-type(11){-webkit-transform:rotate(330deg);transform:rotate(330deg);opacity:.375}.van-loading__dot:nth-of-type(12){-webkit-transform:rotate(1turn);transform:rotate(1turn);opacity:.3125}@-webkit-keyframes van-rotate{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes van-rotate{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}
\ 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/node_modules/@vant/weapp/lib/mixins/basic.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/node_modules/@vant/weapp/lib/mixins/basic.js"
new file mode 100644
index 0000000000000000000000000000000000000000..4505ce50b84d7973db7b18d3af51c4d8aa12d9e2
--- /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/node_modules/@vant/weapp/lib/mixins/basic.js"
@@ -0,0 +1,16 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+exports.basic = void 0;
+exports.basic = Behavior({
+ methods: {
+ $emit: function (name, detail, options) {
+ this.triggerEvent(name, detail, options);
+ },
+ set: function (data) {
+ this.setData(data);
+ return new Promise(function (resolve) {
+ return wx.nextTick(resolve);
+ });
+ },
+ },
+});
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/node_modules/@vant/weapp/lib/mixins/button.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/node_modules/@vant/weapp/lib/mixins/button.js"
new file mode 100644
index 0000000000000000000000000000000000000000..8de45e9d3decf9afe401ce1afab6785eac8befb3
--- /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/node_modules/@vant/weapp/lib/mixins/button.js"
@@ -0,0 +1,18 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+exports.button = void 0;
+exports.button = Behavior({
+ externalClasses: ['hover-class'],
+ properties: {
+ id: String,
+ lang: String,
+ businessId: Number,
+ sessionFrom: String,
+ sendMessageTitle: String,
+ sendMessagePath: String,
+ sendMessageImg: String,
+ showMessageCard: Boolean,
+ appParameter: String,
+ ariaLabel: 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/node_modules/@vant/weapp/lib/mixins/link.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/node_modules/@vant/weapp/lib/mixins/link.js"
new file mode 100644
index 0000000000000000000000000000000000000000..0c09dab0fca2f7f7d5fad27d22abbf8965b538c2
--- /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/node_modules/@vant/weapp/lib/mixins/link.js"
@@ -0,0 +1,30 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+exports.link = void 0;
+exports.link = Behavior({
+ properties: {
+ url: String,
+ linkType: {
+ type: String,
+ value: 'navigateTo',
+ },
+ },
+ methods: {
+ jumpLink: function (urlKey) {
+ if (urlKey === void 0) {
+ urlKey = 'url';
+ }
+ var url = this.data[urlKey];
+ if (url) {
+ if (
+ this.data.linkType === 'navigateTo' &&
+ getCurrentPages().length > 9
+ ) {
+ wx.redirectTo({ url: url });
+ } else {
+ wx[this.data.linkType]({ url: url });
+ }
+ }
+ },
+ },
+});
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/node_modules/@vant/weapp/lib/mixins/open-type.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/node_modules/@vant/weapp/lib/mixins/open-type.js"
new file mode 100644
index 0000000000000000000000000000000000000000..45e61554afa744f56ff2df1b52395fa480bb421e
--- /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/node_modules/@vant/weapp/lib/mixins/open-type.js"
@@ -0,0 +1,29 @@
+'use strict';
+// @ts-nocheck
+Object.defineProperty(exports, '__esModule', { value: true });
+exports.openType = void 0;
+exports.openType = Behavior({
+ properties: {
+ openType: String,
+ },
+ methods: {
+ bindGetUserInfo: function (event) {
+ this.$emit('getuserinfo', event.detail);
+ },
+ bindContact: function (event) {
+ this.$emit('contact', event.detail);
+ },
+ bindGetPhoneNumber: function (event) {
+ this.$emit('getphonenumber', event.detail);
+ },
+ bindError: function (event) {
+ this.$emit('error', event.detail);
+ },
+ bindLaunchApp: function (event) {
+ this.$emit('launchapp', event.detail);
+ },
+ bindOpenSetting: function (event) {
+ this.$emit('opensetting', event.detail);
+ },
+ },
+});
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/node_modules/@vant/weapp/lib/mixins/page-scroll.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/node_modules/@vant/weapp/lib/mixins/page-scroll.js"
new file mode 100644
index 0000000000000000000000000000000000000000..7c03259edb880acf8a33c523b97fff2c4fa6c4bd
--- /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/node_modules/@vant/weapp/lib/mixins/page-scroll.js"
@@ -0,0 +1,40 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+exports.pageScrollMixin = void 0;
+var utils_1 = require('../common/utils');
+function onPageScroll(event) {
+ var _a = utils_1.getCurrentPage().vanPageScroller,
+ vanPageScroller = _a === void 0 ? [] : _a;
+ vanPageScroller.forEach(function (scroller) {
+ if (typeof scroller === 'function') {
+ // @ts-ignore
+ scroller(event);
+ }
+ });
+}
+exports.pageScrollMixin = function (scroller) {
+ return Behavior({
+ attached: function () {
+ var page = utils_1.getCurrentPage();
+ if (Array.isArray(page.vanPageScroller)) {
+ page.vanPageScroller.push(scroller.bind(this));
+ } else {
+ page.vanPageScroller =
+ typeof page.onPageScroll === 'function'
+ ? [page.onPageScroll.bind(page), scroller.bind(this)]
+ : [scroller.bind(this)];
+ }
+ page.onPageScroll = onPageScroll;
+ },
+ detached: function () {
+ var _a;
+ var page = utils_1.getCurrentPage();
+ page.vanPageScroller =
+ ((_a = page.vanPageScroller) === null || _a === void 0
+ ? void 0
+ : _a.filter(function (item) {
+ return item !== scroller;
+ })) || [];
+ },
+ });
+};
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/node_modules/@vant/weapp/lib/mixins/touch.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/node_modules/@vant/weapp/lib/mixins/touch.js"
new file mode 100644
index 0000000000000000000000000000000000000000..9c6da11aac831a9badb2ecfd0c25407f6aa90c7d
--- /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/node_modules/@vant/weapp/lib/mixins/touch.js"
@@ -0,0 +1,40 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+exports.touch = void 0;
+// @ts-nocheck
+var MIN_DISTANCE = 10;
+function getDirection(x, y) {
+ if (x > y && x > MIN_DISTANCE) {
+ return 'horizontal';
+ }
+ if (y > x && y > MIN_DISTANCE) {
+ return 'vertical';
+ }
+ return '';
+}
+exports.touch = Behavior({
+ methods: {
+ resetTouchStatus: function () {
+ this.direction = '';
+ this.deltaX = 0;
+ this.deltaY = 0;
+ this.offsetX = 0;
+ this.offsetY = 0;
+ },
+ touchStart: function (event) {
+ this.resetTouchStatus();
+ var touch = event.touches[0];
+ this.startX = touch.clientX;
+ this.startY = touch.clientY;
+ },
+ touchMove: function (event) {
+ var touch = event.touches[0];
+ this.deltaX = touch.clientX - this.startX;
+ this.deltaY = touch.clientY - this.startY;
+ this.offsetX = Math.abs(this.deltaX);
+ this.offsetY = Math.abs(this.deltaY);
+ this.direction =
+ this.direction || getDirection(this.offsetX, this.offsetY);
+ },
+ },
+});
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/node_modules/@vant/weapp/lib/mixins/transition.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/node_modules/@vant/weapp/lib/mixins/transition.js"
new file mode 100644
index 0000000000000000000000000000000000000000..9165aefca65763e1062d2bc1e1393dd8aea2977e
--- /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/node_modules/@vant/weapp/lib/mixins/transition.js"
@@ -0,0 +1,155 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+exports.transition = void 0;
+// @ts-nocheck
+var utils_1 = require('../common/utils');
+var validator_1 = require('../common/validator');
+var getClassNames = function (name) {
+ return {
+ enter:
+ 'van-' +
+ name +
+ '-enter van-' +
+ name +
+ '-enter-active enter-class enter-active-class',
+ 'enter-to':
+ 'van-' +
+ name +
+ '-enter-to van-' +
+ name +
+ '-enter-active enter-to-class enter-active-class',
+ leave:
+ 'van-' +
+ name +
+ '-leave van-' +
+ name +
+ '-leave-active leave-class leave-active-class',
+ 'leave-to':
+ 'van-' +
+ name +
+ '-leave-to van-' +
+ name +
+ '-leave-active leave-to-class leave-active-class',
+ };
+};
+function transition(showDefaultValue) {
+ return Behavior({
+ properties: {
+ customStyle: String,
+ // @ts-ignore
+ show: {
+ type: Boolean,
+ value: showDefaultValue,
+ observer: 'observeShow',
+ },
+ // @ts-ignore
+ duration: {
+ type: null,
+ value: 300,
+ observer: 'observeDuration',
+ },
+ name: {
+ type: String,
+ value: 'fade',
+ },
+ },
+ data: {
+ type: '',
+ inited: false,
+ display: false,
+ },
+ ready: function () {
+ if (this.data.show === true) {
+ this.observeShow(true, false);
+ }
+ },
+ methods: {
+ observeShow: function (value, old) {
+ if (value === old) {
+ return;
+ }
+ value ? this.enter() : this.leave();
+ },
+ enter: function () {
+ var _this = this;
+ var _a = this.data,
+ duration = _a.duration,
+ name = _a.name;
+ var classNames = getClassNames(name);
+ var currentDuration = validator_1.isObj(duration)
+ ? duration.enter
+ : duration;
+ this.status = 'enter';
+ this.$emit('before-enter');
+ utils_1.requestAnimationFrame(function () {
+ if (_this.status !== 'enter') {
+ return;
+ }
+ _this.$emit('enter');
+ _this.setData({
+ inited: true,
+ display: true,
+ classes: classNames.enter,
+ currentDuration: currentDuration,
+ });
+ utils_1.requestAnimationFrame(function () {
+ if (_this.status !== 'enter') {
+ return;
+ }
+ _this.transitionEnded = false;
+ _this.setData({ classes: classNames['enter-to'] });
+ });
+ });
+ },
+ leave: function () {
+ var _this = this;
+ if (!this.data.display) {
+ return;
+ }
+ var _a = this.data,
+ duration = _a.duration,
+ name = _a.name;
+ var classNames = getClassNames(name);
+ var currentDuration = validator_1.isObj(duration)
+ ? duration.leave
+ : duration;
+ this.status = 'leave';
+ this.$emit('before-leave');
+ utils_1.requestAnimationFrame(function () {
+ if (_this.status !== 'leave') {
+ return;
+ }
+ _this.$emit('leave');
+ _this.setData({
+ classes: classNames.leave,
+ currentDuration: currentDuration,
+ });
+ utils_1.requestAnimationFrame(function () {
+ if (_this.status !== 'leave') {
+ return;
+ }
+ _this.transitionEnded = false;
+ setTimeout(function () {
+ return _this.onTransitionEnd();
+ }, currentDuration);
+ _this.setData({ classes: classNames['leave-to'] });
+ });
+ });
+ },
+ onTransitionEnd: function () {
+ if (this.transitionEnded) {
+ return;
+ }
+ this.transitionEnded = true;
+ this.$emit('after-' + this.status);
+ var _a = this.data,
+ show = _a.show,
+ display = _a.display;
+ if (!show && display) {
+ this.setData({ display: false });
+ }
+ },
+ },
+ });
+}
+exports.transition = transition;
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/node_modules/@vant/weapp/lib/nav-bar/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/node_modules/@vant/weapp/lib/nav-bar/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..d207bd034a57107b19366a3be349ca952860dd1e
--- /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/node_modules/@vant/weapp/lib/nav-bar/index.js"
@@ -0,0 +1,68 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+var utils_1 = require('../common/utils');
+component_1.VantComponent({
+ classes: ['title-class'],
+ props: {
+ title: String,
+ fixed: {
+ type: Boolean,
+ observer: 'setHeight',
+ },
+ placeholder: {
+ type: Boolean,
+ observer: 'setHeight',
+ },
+ leftText: String,
+ rightText: String,
+ customStyle: String,
+ leftArrow: Boolean,
+ border: {
+ type: Boolean,
+ value: true,
+ },
+ zIndex: {
+ type: Number,
+ value: 1,
+ },
+ safeAreaInsetTop: {
+ type: Boolean,
+ value: true,
+ },
+ },
+ data: {
+ height: 46,
+ },
+ created: function () {
+ var statusBarHeight = utils_1.getSystemInfoSync().statusBarHeight;
+ this.setData({
+ statusBarHeight: statusBarHeight,
+ height: 46 + statusBarHeight,
+ });
+ },
+ mounted: function () {
+ this.setHeight();
+ },
+ methods: {
+ onClickLeft: function () {
+ this.$emit('click-left');
+ },
+ onClickRight: function () {
+ this.$emit('click-right');
+ },
+ setHeight: function () {
+ var _this = this;
+ if (!this.data.fixed || !this.data.placeholder) {
+ return;
+ }
+ wx.nextTick(function () {
+ utils_1.getRect(_this, '.van-nav-bar').then(function (res) {
+ if (res && 'height' in res) {
+ _this.setData({ height: res.height });
+ }
+ });
+ });
+ },
+ },
+});
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/node_modules/@vant/weapp/lib/nav-bar/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/node_modules/@vant/weapp/lib/nav-bar/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/node_modules/@vant/weapp/lib/nav-bar/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/node_modules/@vant/weapp/lib/nav-bar/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/node_modules/@vant/weapp/lib/nav-bar/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..b6405fd5a35bb49759e1c89813373eddde8e24ec
--- /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/node_modules/@vant/weapp/lib/nav-bar/index.wxml"
@@ -0,0 +1,42 @@
+
+
+
+
+
+
+
+
+
+
+ {{ leftText }}
+
+
+
+
+ {{ title }}
+
+
+
+ {{ rightText }}
+
+
+
+
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/node_modules/@vant/weapp/lib/nav-bar/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/node_modules/@vant/weapp/lib/nav-bar/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..55b4158d14d76e9bbcb2512beab9097d3bf4aae8
--- /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/node_modules/@vant/weapp/lib/nav-bar/index.wxs"
@@ -0,0 +1,13 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+
+function barStyle(data) {
+ return style({
+ 'z-index': data.zIndex,
+ 'padding-top': data.safeAreaInsetTop ? data.statusBarHeight + 'px' : 0,
+ });
+}
+
+module.exports = {
+ barStyle: barStyle,
+};
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/node_modules/@vant/weapp/lib/nav-bar/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/node_modules/@vant/weapp/lib/nav-bar/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..48e9e3f5878f1093495ed4f041cb8f78a9a5c994
--- /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/node_modules/@vant/weapp/lib/nav-bar/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-nav-bar{position:relative;text-align:center;-webkit-user-select:none;user-select:none;height:46px;height:var(--nav-bar-height,46px);line-height:46px;line-height:var(--nav-bar-height,46px);background-color:#fff;background-color:var(--nav-bar-background-color,#fff)}.van-nav-bar__content{position:relative;height:100%}.van-nav-bar__text{display:inline-block;vertical-align:middle;margin:0 -16px;margin:0 -var(--padding-md,16px);padding:0 16px;padding:0 var(--padding-md,16px);color:#1989fa;color:var(--nav-bar-text-color,#1989fa)}.van-nav-bar__text--hover{background-color:#f2f3f5;background-color:var(--active-color,#f2f3f5)}.van-nav-bar__arrow{vertical-align:middle;font-size:16px!important;font-size:var(--nav-bar-arrow-size,16px)!important;color:#1989fa!important;color:var(--nav-bar-icon-color,#1989fa)!important}.van-nav-bar__arrow+.van-nav-bar__text{margin-left:-20px;padding-left:25px}.van-nav-bar--fixed{position:fixed;top:0;left:0;width:100%}.van-nav-bar__title{max-width:60%;margin:0 auto;color:#323233;color:var(--nav-bar-title-text-color,#323233);font-weight:500;font-weight:var(--font-weight-bold,500);font-size:16px;font-size:var(--nav-bar-title-font-size,16px)}.van-nav-bar__left,.van-nav-bar__right{position:absolute;top:0;bottom:0;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;font-size:14px;font-size:var(--font-size-md,14px)}.van-nav-bar__left{left:16px;left:var(--padding-md,16px)}.van-nav-bar__right{right:16px;right:var(--padding-md,16px)}
\ 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/node_modules/@vant/weapp/lib/notice-bar/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/node_modules/@vant/weapp/lib/notice-bar/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..25a8a6d755f453f54101efe4da68aa4e470d74ca
--- /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/node_modules/@vant/weapp/lib/notice-bar/index.js"
@@ -0,0 +1,132 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+var utils_1 = require('../common/utils');
+component_1.VantComponent({
+ props: {
+ text: {
+ type: String,
+ value: '',
+ observer: 'init',
+ },
+ mode: {
+ type: String,
+ value: '',
+ },
+ url: {
+ type: String,
+ value: '',
+ },
+ openType: {
+ type: String,
+ value: 'navigate',
+ },
+ delay: {
+ type: Number,
+ value: 1,
+ },
+ speed: {
+ type: Number,
+ value: 50,
+ observer: 'init',
+ },
+ scrollable: {
+ type: Boolean,
+ value: true,
+ },
+ leftIcon: {
+ type: String,
+ value: '',
+ },
+ color: String,
+ backgroundColor: String,
+ background: String,
+ wrapable: Boolean,
+ },
+ data: {
+ show: true,
+ },
+ created: function () {
+ this.resetAnimation = wx.createAnimation({
+ duration: 0,
+ timingFunction: 'linear',
+ });
+ },
+ destroyed: function () {
+ this.timer && clearTimeout(this.timer);
+ },
+ mounted: function () {
+ this.init();
+ },
+ methods: {
+ init: function () {
+ var _this = this;
+ utils_1.requestAnimationFrame(function () {
+ Promise.all([
+ utils_1.getRect(_this, '.van-notice-bar__content'),
+ utils_1.getRect(_this, '.van-notice-bar__wrap'),
+ ]).then(function (rects) {
+ var contentRect = rects[0],
+ wrapRect = rects[1];
+ if (
+ contentRect == null ||
+ wrapRect == null ||
+ !contentRect.width ||
+ !wrapRect.width
+ ) {
+ return;
+ }
+ var _a = _this.data,
+ speed = _a.speed,
+ scrollable = _a.scrollable,
+ delay = _a.delay;
+ if (scrollable || wrapRect.width < contentRect.width) {
+ var duration = (contentRect.width / speed) * 1000;
+ _this.wrapWidth = wrapRect.width;
+ _this.contentWidth = contentRect.width;
+ _this.duration = duration;
+ _this.animation = wx.createAnimation({
+ duration: duration,
+ timingFunction: 'linear',
+ delay: delay,
+ });
+ _this.scroll();
+ }
+ });
+ });
+ },
+ scroll: function () {
+ var _this = this;
+ this.timer && clearTimeout(this.timer);
+ this.timer = null;
+ this.setData({
+ animationData: this.resetAnimation
+ .translateX(this.wrapWidth)
+ .step()
+ .export(),
+ });
+ utils_1.requestAnimationFrame(function () {
+ _this.setData({
+ animationData: _this.animation
+ .translateX(-_this.contentWidth)
+ .step()
+ .export(),
+ });
+ });
+ this.timer = setTimeout(function () {
+ _this.scroll();
+ }, this.duration);
+ },
+ onClickIcon: function (event) {
+ if (this.data.mode === 'closeable') {
+ this.timer && clearTimeout(this.timer);
+ this.timer = null;
+ this.setData({ show: false });
+ this.$emit('close', event.detail);
+ }
+ },
+ onClick: function (event) {
+ this.$emit('click', event);
+ },
+ },
+});
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/node_modules/@vant/weapp/lib/notice-bar/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/node_modules/@vant/weapp/lib/notice-bar/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/node_modules/@vant/weapp/lib/notice-bar/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/node_modules/@vant/weapp/lib/notice-bar/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/node_modules/@vant/weapp/lib/notice-bar/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..be119adc32931b0d59fcb011d6f3e35b3f970b23
--- /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/node_modules/@vant/weapp/lib/notice-bar/index.wxml"
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+
+
+
+ {{ 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/node_modules/@vant/weapp/lib/notice-bar/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/node_modules/@vant/weapp/lib/notice-bar/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..11e6456f9c7334ad1af5c6c54ef6835e367b1e80
--- /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/node_modules/@vant/weapp/lib/notice-bar/index.wxs"
@@ -0,0 +1,15 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function rootStyle(data) {
+ return style({
+ color: data.color,
+ 'background-color': data.backgroundColor,
+ background: data.background,
+ });
+}
+
+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/node_modules/@vant/weapp/lib/notice-bar/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/node_modules/@vant/weapp/lib/notice-bar/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..6a498587043ddd40ed218e8e3f68cdf3f2958dbf
--- /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/node_modules/@vant/weapp/lib/notice-bar/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-notice-bar{display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;height:40px;height:var(--notice-bar-height,40px);padding:0 16px;padding:var(--notice-bar-padding,0 16px);font-size:14px;font-size:var(--notice-bar-font-size,14px);color:#ed6a0c;color:var(--notice-bar-text-color,#ed6a0c);line-height:24px;line-height:var(--notice-bar-line-height,24px);background-color:#fffbe8;background-color:var(--notice-bar-background-color,#fffbe8)}.van-notice-bar--withicon{position:relative;padding-right:40px}.van-notice-bar--wrapable{height:auto;padding:8px 16px;padding:var(--notice-bar-wrapable-padding,8px 16px)}.van-notice-bar--wrapable .van-notice-bar__wrap{height:auto}.van-notice-bar--wrapable .van-notice-bar__content{position:relative;white-space:normal}.van-notice-bar__left-icon{display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;margin-right:4px;vertical-align:middle}.van-notice-bar__left-icon,.van-notice-bar__right-icon{font-size:16px;font-size:var(--notice-bar-icon-size,16px);min-width:22px;min-width:var(--notice-bar-icon-min-width,22px)}.van-notice-bar__right-icon{position:absolute;top:10px;right:15px}.van-notice-bar__wrap{position:relative;-webkit-flex:1;flex:1;overflow:hidden;height:24px;height:var(--notice-bar-line-height,24px)}.van-notice-bar__content{position:absolute;white-space:nowrap}.van-notice-bar__content.van-ellipsis{max-width: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/node_modules/@vant/weapp/lib/notify/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/node_modules/@vant/weapp/lib/notify/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..f2a9678cc09224722dc84b2c58973432c636bcdb
--- /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/node_modules/@vant/weapp/lib/notify/index.js"
@@ -0,0 +1,70 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+var color_1 = require('../common/color');
+var utils_1 = require('../common/utils');
+component_1.VantComponent({
+ props: {
+ message: String,
+ background: String,
+ type: {
+ type: String,
+ value: 'danger',
+ },
+ color: {
+ type: String,
+ value: color_1.WHITE,
+ },
+ duration: {
+ type: Number,
+ value: 3000,
+ },
+ zIndex: {
+ type: Number,
+ value: 110,
+ },
+ safeAreaInsetTop: {
+ type: Boolean,
+ value: false,
+ },
+ top: null,
+ },
+ data: {
+ show: false,
+ onOpened: null,
+ onClose: null,
+ onClick: null,
+ },
+ created: function () {
+ var statusBarHeight = utils_1.getSystemInfoSync().statusBarHeight;
+ this.setData({ statusBarHeight: statusBarHeight });
+ },
+ methods: {
+ show: function () {
+ var _this = this;
+ var _a = this.data,
+ duration = _a.duration,
+ onOpened = _a.onOpened;
+ clearTimeout(this.timer);
+ this.setData({ show: true });
+ wx.nextTick(onOpened);
+ if (duration > 0 && duration !== Infinity) {
+ this.timer = setTimeout(function () {
+ _this.hide();
+ }, duration);
+ }
+ },
+ hide: function () {
+ var onClose = this.data.onClose;
+ clearTimeout(this.timer);
+ this.setData({ show: false });
+ wx.nextTick(onClose);
+ },
+ onTap: function (event) {
+ var onClick = this.data.onClick;
+ if (onClick) {
+ onClick(event.detail);
+ }
+ },
+ },
+});
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/node_modules/@vant/weapp/lib/notify/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/node_modules/@vant/weapp/lib/notify/index.json"
new file mode 100644
index 0000000000000000000000000000000000000000..c14a65f6c3f924bd824f5813b33cebd96e005e1a
--- /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/node_modules/@vant/weapp/lib/notify/index.json"
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-transition": "../transition/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/node_modules/@vant/weapp/lib/notify/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/node_modules/@vant/weapp/lib/notify/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..42d913eb5d18c1214c0e238ae006ecd7de4629e3
--- /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/node_modules/@vant/weapp/lib/notify/index.wxml"
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+ {{ message }}
+
+
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/node_modules/@vant/weapp/lib/notify/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/node_modules/@vant/weapp/lib/notify/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..bbb94c28008eca5186f1cfbd7c50736c2f713255
--- /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/node_modules/@vant/weapp/lib/notify/index.wxs"
@@ -0,0 +1,22 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function rootStyle(data) {
+ return style({
+ 'z-index': data.zIndex,
+ top: addUnit(data.top),
+ });
+}
+
+function notifyStyle(data) {
+ return style({
+ background: data.background,
+ color: data.color,
+ });
+}
+
+module.exports = {
+ rootStyle: rootStyle,
+ notifyStyle: notifyStyle,
+};
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/node_modules/@vant/weapp/lib/notify/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/node_modules/@vant/weapp/lib/notify/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..8a7688b3ef928c62312df3f2e3dfc70bd0e5cbda
--- /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/node_modules/@vant/weapp/lib/notify/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-notify{text-align:center;word-wrap:break-word;padding:6px 15px;padding:var(--notify-padding,6px 15px);font-size:14px;font-size:var(--notify-font-size,14px);line-height:20px;line-height:var(--notify-line-height,20px)}.van-notify__container{position:fixed;top:0;left:0;box-sizing:border-box;width:100%}.van-notify--primary{background-color:#1989fa;background-color:var(--notify-primary-background-color,#1989fa)}.van-notify--success{background-color:#07c160;background-color:var(--notify-success-background-color,#07c160)}.van-notify--danger{background-color:#ee0a24;background-color:var(--notify-danger-background-color,#ee0a24)}.van-notify--warning{background-color:#ff976a;background-color:var(--notify-warning-background-color,#ff976a)}
\ 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/node_modules/@vant/weapp/lib/notify/notify.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/node_modules/@vant/weapp/lib/notify/notify.js"
new file mode 100644
index 0000000000000000000000000000000000000000..a789af17dfb465e4485d97d213a65e525b8fb8ce
--- /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/node_modules/@vant/weapp/lib/notify/notify.js"
@@ -0,0 +1,64 @@
+'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 color_1 = require('../common/color');
+var defaultOptions = {
+ selector: '#van-notify',
+ type: 'danger',
+ message: '',
+ background: '',
+ duration: 3000,
+ zIndex: 110,
+ top: 0,
+ color: color_1.WHITE,
+ safeAreaInsetTop: false,
+ onClick: function () {},
+ onOpened: function () {},
+ onClose: function () {},
+};
+function parseOptions(message) {
+ if (message == null) {
+ return {};
+ }
+ return typeof message === 'string' ? { message: message } : message;
+}
+function getContext() {
+ var pages = getCurrentPages();
+ return pages[pages.length - 1];
+}
+function Notify(options) {
+ options = __assign(__assign({}, defaultOptions), parseOptions(options));
+ var context = options.context || getContext();
+ var notify = context.selectComponent(options.selector);
+ delete options.context;
+ delete options.selector;
+ if (notify) {
+ notify.setData(options);
+ notify.show();
+ return notify;
+ }
+ console.warn('未找到 van-notify 节点,请确认 selector 及 context 是否正确');
+}
+exports.default = Notify;
+Notify.clear = function (options) {
+ options = __assign(__assign({}, defaultOptions), parseOptions(options));
+ var context = options.context || getContext();
+ var notify = context.selectComponent(options.selector);
+ if (notify) {
+ notify.hide();
+ }
+};
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/node_modules/@vant/weapp/lib/overlay/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/node_modules/@vant/weapp/lib/overlay/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..a0e55eb6baa1d9f016d61b559970208404213937
--- /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/node_modules/@vant/weapp/lib/overlay/index.js"
@@ -0,0 +1,24 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+component_1.VantComponent({
+ props: {
+ show: Boolean,
+ customStyle: String,
+ duration: {
+ type: null,
+ value: 300,
+ },
+ zIndex: {
+ type: Number,
+ value: 1,
+ },
+ },
+ methods: {
+ onClick: function () {
+ this.$emit('click');
+ },
+ // for prevent touchmove
+ 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/node_modules/@vant/weapp/lib/overlay/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/node_modules/@vant/weapp/lib/overlay/index.json"
new file mode 100644
index 0000000000000000000000000000000000000000..c14a65f6c3f924bd824f5813b33cebd96e005e1a
--- /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/node_modules/@vant/weapp/lib/overlay/index.json"
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-transition": "../transition/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/node_modules/@vant/weapp/lib/overlay/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/node_modules/@vant/weapp/lib/overlay/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..9212348b0896c2cc5f208082d04eddd2066793c1
--- /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/node_modules/@vant/weapp/lib/overlay/index.wxml"
@@ -0,0 +1,10 @@
+
+
+
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/node_modules/@vant/weapp/lib/overlay/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/node_modules/@vant/weapp/lib/overlay/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..0f9df0e864d79070785805775fcdca7637fb2da1
--- /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/node_modules/@vant/weapp/lib/overlay/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-overlay{position:fixed;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.7);background-color:var(--overlay-background-color,rgba(0,0,0,.7))}
\ 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/node_modules/@vant/weapp/lib/panel/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/node_modules/@vant/weapp/lib/panel/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..64f3be5b10064bf5f574e71e324334b5aba3b166
--- /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/node_modules/@vant/weapp/lib/panel/index.js"
@@ -0,0 +1,12 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+component_1.VantComponent({
+ classes: ['header-class', 'footer-class'],
+ props: {
+ desc: String,
+ title: String,
+ status: String,
+ useFooterSlot: Boolean,
+ },
+});
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/node_modules/@vant/weapp/lib/panel/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/node_modules/@vant/weapp/lib/panel/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/node_modules/@vant/weapp/lib/panel/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/node_modules/@vant/weapp/lib/panel/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/node_modules/@vant/weapp/lib/panel/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..3f135d23daa06e22df8ccbac0786044efd2fe0ea
--- /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/node_modules/@vant/weapp/lib/panel/index.wxml"
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
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/node_modules/@vant/weapp/lib/panel/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/node_modules/@vant/weapp/lib/panel/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..ffd9df91e8d913b4c48d38eae94435d0130b19d0
--- /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/node_modules/@vant/weapp/lib/panel/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-panel{background:#fff;background:var(--panel-background-color,#fff)}.van-panel__header-value{color:#ee0a24;color:var(--panel-header-value-color,#ee0a24)}.van-panel__footer{padding:8px 16px;padding:var(--panel-footer-padding,8px 16px)}
\ 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/node_modules/@vant/weapp/lib/picker-column/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/node_modules/@vant/weapp/lib/picker-column/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..b2f0632c0ec35a822cc18773ceced1cdbe4b0fe1
--- /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/node_modules/@vant/weapp/lib/picker-column/index.js"
@@ -0,0 +1,132 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+var utils_1 = require('../common/utils');
+var validator_1 = require('../common/validator');
+var DEFAULT_DURATION = 200;
+component_1.VantComponent({
+ classes: ['active-class'],
+ props: {
+ valueKey: String,
+ className: String,
+ itemHeight: Number,
+ visibleItemCount: Number,
+ initialOptions: {
+ type: Array,
+ value: [],
+ },
+ defaultIndex: {
+ type: Number,
+ value: 0,
+ observer: function (value) {
+ this.setIndex(value);
+ },
+ },
+ },
+ data: {
+ startY: 0,
+ offset: 0,
+ duration: 0,
+ startOffset: 0,
+ options: [],
+ currentIndex: 0,
+ },
+ created: function () {
+ var _this = this;
+ var _a = this.data,
+ defaultIndex = _a.defaultIndex,
+ initialOptions = _a.initialOptions;
+ this.set({
+ currentIndex: defaultIndex,
+ options: initialOptions,
+ }).then(function () {
+ _this.setIndex(defaultIndex);
+ });
+ },
+ methods: {
+ getCount: function () {
+ return this.data.options.length;
+ },
+ onTouchStart: function (event) {
+ this.setData({
+ startY: event.touches[0].clientY,
+ startOffset: this.data.offset,
+ duration: 0,
+ });
+ },
+ onTouchMove: function (event) {
+ var data = this.data;
+ var deltaY = event.touches[0].clientY - data.startY;
+ this.setData({
+ offset: utils_1.range(
+ data.startOffset + deltaY,
+ -(this.getCount() * data.itemHeight),
+ data.itemHeight
+ ),
+ });
+ },
+ onTouchEnd: function () {
+ var data = this.data;
+ if (data.offset !== data.startOffset) {
+ this.setData({ duration: DEFAULT_DURATION });
+ var index = utils_1.range(
+ Math.round(-data.offset / data.itemHeight),
+ 0,
+ this.getCount() - 1
+ );
+ this.setIndex(index, true);
+ }
+ },
+ onClickItem: function (event) {
+ var index = event.currentTarget.dataset.index;
+ this.setIndex(index, true);
+ },
+ adjustIndex: function (index) {
+ var data = this.data;
+ var count = this.getCount();
+ index = utils_1.range(index, 0, count);
+ for (var i = index; i < count; i++) {
+ if (!this.isDisabled(data.options[i])) return i;
+ }
+ for (var i = index - 1; i >= 0; i--) {
+ if (!this.isDisabled(data.options[i])) return i;
+ }
+ },
+ isDisabled: function (option) {
+ return validator_1.isObj(option) && option.disabled;
+ },
+ getOptionText: function (option) {
+ var data = this.data;
+ return validator_1.isObj(option) && data.valueKey in option
+ ? option[data.valueKey]
+ : option;
+ },
+ setIndex: function (index, userAction) {
+ var _this = this;
+ var data = this.data;
+ index = this.adjustIndex(index) || 0;
+ var offset = -index * data.itemHeight;
+ if (index !== data.currentIndex) {
+ return this.set({ offset: offset, currentIndex: index }).then(
+ function () {
+ userAction && _this.$emit('change', index);
+ }
+ );
+ }
+ return this.set({ offset: offset });
+ },
+ setValue: function (value) {
+ var options = this.data.options;
+ for (var i = 0; i < options.length; i++) {
+ if (this.getOptionText(options[i]) === value) {
+ return this.setIndex(i);
+ }
+ }
+ return Promise.resolve();
+ },
+ getValue: function () {
+ var data = this.data;
+ return data.options[data.currentIndex];
+ },
+ },
+});
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/node_modules/@vant/weapp/lib/picker-column/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/node_modules/@vant/weapp/lib/picker-column/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/node_modules/@vant/weapp/lib/picker-column/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/node_modules/@vant/weapp/lib/picker-column/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/node_modules/@vant/weapp/lib/picker-column/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..cb6b7ba2d2395976c4f37a34bdac40b2545c05bf
--- /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/node_modules/@vant/weapp/lib/picker-column/index.wxml"
@@ -0,0 +1,23 @@
+
+
+
+
+
+ {{ computed.optionText(option, valueKey) }}
+
+
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/node_modules/@vant/weapp/lib/picker-column/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/node_modules/@vant/weapp/lib/picker-column/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..2d5a61172229791cf903d82e9014955615465ee8
--- /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/node_modules/@vant/weapp/lib/picker-column/index.wxs"
@@ -0,0 +1,36 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function isObj(x) {
+ var type = typeof x;
+ return x !== null && (type === 'object' || type === 'function');
+}
+
+function optionText(option, valueKey) {
+ return isObj(option) && option[valueKey] != null ? option[valueKey] : option;
+}
+
+function rootStyle(data) {
+ return style({
+ height: addUnit(data.itemHeight * data.visibleItemCount),
+ });
+}
+
+function wrapperStyle(data) {
+ var offset = addUnit(
+ data.offset + (data.itemHeight * (data.visibleItemCount - 1)) / 2
+ );
+
+ return style({
+ transition: 'transform ' + data.duration + 'ms',
+ 'line-height': addUnit(data.itemHeight),
+ transform: 'translate3d(0, ' + offset + ', 0)',
+ });
+}
+
+module.exports = {
+ optionText: optionText,
+ rootStyle: rootStyle,
+ wrapperStyle: wrapperStyle,
+};
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/node_modules/@vant/weapp/lib/picker-column/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/node_modules/@vant/weapp/lib/picker-column/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..c5c69100146f3c6d22bf0fd7206caf0143de5a55
--- /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/node_modules/@vant/weapp/lib/picker-column/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-picker-column{overflow:hidden;text-align:center;color:#000;color:var(--picker-option-text-color,#000);font-size:16px;font-size:var(--picker-option-font-size,16px)}.van-picker-column__item{padding:0 5px}.van-picker-column__item--selected{font-weight:500;font-weight:var(--font-weight-bold,500);color:#323233;color:var(--picker-option-selected-text-color,#323233)}.van-picker-column__item--disabled{opacity:.3;opacity:var(--picker-option-disabled-opacity,.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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/picker/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..8e5d11742253c516910c7211a4b5b1f7702dfe97
--- /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/node_modules/@vant/weapp/lib/picker/index.js"
@@ -0,0 +1,179 @@
+'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('./shared');
+component_1.VantComponent({
+ classes: ['active-class', 'toolbar-class', 'column-class'],
+ props: __assign(__assign({}, shared_1.pickerProps), {
+ valueKey: {
+ type: String,
+ value: 'text',
+ },
+ toolbarPosition: {
+ type: String,
+ value: 'top',
+ },
+ defaultIndex: {
+ type: Number,
+ value: 0,
+ },
+ columns: {
+ type: Array,
+ value: [],
+ observer: function (columns) {
+ if (columns === void 0) {
+ columns = [];
+ }
+ this.simple = columns.length && !columns[0].values;
+ if (Array.isArray(this.children) && this.children.length) {
+ this.setColumns().catch(function () {});
+ }
+ },
+ },
+ }),
+ beforeCreate: function () {
+ var _this = this;
+ Object.defineProperty(this, 'children', {
+ get: function () {
+ return _this.selectAllComponents('.van-picker__column') || [];
+ },
+ });
+ },
+ methods: {
+ noop: function () {},
+ setColumns: function () {
+ var _this = this;
+ var data = this.data;
+ var columns = this.simple ? [{ values: data.columns }] : data.columns;
+ var stack = columns.map(function (column, index) {
+ return _this.setColumnValues(index, column.values);
+ });
+ return Promise.all(stack);
+ },
+ emit: function (event) {
+ var type = event.currentTarget.dataset.type;
+ if (this.simple) {
+ this.$emit(type, {
+ value: this.getColumnValue(0),
+ index: this.getColumnIndex(0),
+ });
+ } else {
+ this.$emit(type, {
+ value: this.getValues(),
+ index: this.getIndexes(),
+ });
+ }
+ },
+ onChange: function (event) {
+ if (this.simple) {
+ this.$emit('change', {
+ picker: this,
+ value: this.getColumnValue(0),
+ index: this.getColumnIndex(0),
+ });
+ } else {
+ this.$emit('change', {
+ picker: this,
+ value: this.getValues(),
+ index: event.currentTarget.dataset.index,
+ });
+ }
+ },
+ // get column instance by index
+ getColumn: function (index) {
+ return this.children[index];
+ },
+ // get column value by index
+ getColumnValue: function (index) {
+ var column = this.getColumn(index);
+ return column && column.getValue();
+ },
+ // set column value by index
+ setColumnValue: function (index, value) {
+ var column = this.getColumn(index);
+ if (column == null) {
+ return Promise.reject(new Error('setColumnValue: 对应列不存在'));
+ }
+ return column.setValue(value);
+ },
+ // get column option index by column index
+ getColumnIndex: function (columnIndex) {
+ return (this.getColumn(columnIndex) || {}).data.currentIndex;
+ },
+ // set column option index by column index
+ setColumnIndex: function (columnIndex, optionIndex) {
+ var column = this.getColumn(columnIndex);
+ if (column == null) {
+ return Promise.reject(new Error('setColumnIndex: 对应列不存在'));
+ }
+ return column.setIndex(optionIndex);
+ },
+ // get options of column by index
+ getColumnValues: function (index) {
+ return (this.children[index] || {}).data.options;
+ },
+ // set options of column by index
+ setColumnValues: function (index, options, needReset) {
+ if (needReset === void 0) {
+ needReset = true;
+ }
+ var column = this.children[index];
+ if (column == null) {
+ return Promise.reject(new Error('setColumnValues: 对应列不存在'));
+ }
+ var isSame =
+ JSON.stringify(column.data.options) === JSON.stringify(options);
+ if (isSame) {
+ return Promise.resolve();
+ }
+ return column.set({ options: options }).then(function () {
+ if (needReset) {
+ column.setIndex(0);
+ }
+ });
+ },
+ // get values of all columns
+ getValues: function () {
+ return this.children.map(function (child) {
+ return child.getValue();
+ });
+ },
+ // set values of all columns
+ setValues: function (values) {
+ var _this = this;
+ var stack = values.map(function (value, index) {
+ return _this.setColumnValue(index, value);
+ });
+ return Promise.all(stack);
+ },
+ // get indexes of all columns
+ getIndexes: function () {
+ return this.children.map(function (child) {
+ return child.data.currentIndex;
+ });
+ },
+ // set indexes of all columns
+ setIndexes: function (indexes) {
+ var _this = this;
+ var stack = indexes.map(function (optionIndex, columnIndex) {
+ return _this.setColumnIndex(columnIndex, optionIndex);
+ });
+ return Promise.all(stack);
+ },
+ },
+});
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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/picker/index.json"
new file mode 100644
index 0000000000000000000000000000000000000000..2fcec8991bd56bdb28b347a80db78be1a96c2822
--- /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/node_modules/@vant/weapp/lib/picker/index.json"
@@ -0,0 +1,7 @@
+{
+ "component": true,
+ "usingComponents": {
+ "picker-column": "../picker-column/index",
+ "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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/picker/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..dbf124929b2229c67d97d588ce80e5f842b10cf3
--- /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/node_modules/@vant/weapp/lib/picker/index.wxml"
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
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/node_modules/@vant/weapp/lib/picker/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/node_modules/@vant/weapp/lib/picker/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..0abbd10e71099ba4016a54259ca46f7224ab168e
--- /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/node_modules/@vant/weapp/lib/picker/index.wxs"
@@ -0,0 +1,42 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+var array = require('../wxs/array.wxs');
+
+function columnsStyle(data) {
+ return style({
+ height: addUnit(data.itemHeight * data.visibleItemCount),
+ });
+}
+
+function maskStyle(data) {
+ return style({
+ 'background-size':
+ '100% ' + addUnit((data.itemHeight * (data.visibleItemCount - 1)) / 2),
+ });
+}
+
+function frameStyle(data) {
+ return style({
+ height: addUnit(data.itemHeight),
+ });
+}
+
+function columns(columns) {
+ if (!array.isArray(columns)) {
+ return [];
+ }
+
+ if (columns.length && !columns[0].values) {
+ return [{ values: columns }];
+ }
+
+ return columns;
+}
+
+module.exports = {
+ columnsStyle: columnsStyle,
+ frameStyle: frameStyle,
+ maskStyle: maskStyle,
+ columns: columns,
+};
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/node_modules/@vant/weapp/lib/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/node_modules/@vant/weapp/lib/picker/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..f74b164bbe404b0f66e34788872755a98730977a
--- /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/node_modules/@vant/weapp/lib/picker/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-picker{position:relative;overflow:hidden;-webkit-text-size-adjust:100%;-webkit-user-select:none;user-select:none;background-color:#fff;background-color:var(--picker-background-color,#fff)}.van-picker__toolbar{display:-webkit-flex;display:flex;-webkit-justify-content:space-between;justify-content:space-between;height:44px;height:var(--picker-toolbar-height,44px);line-height:44px;line-height:var(--picker-toolbar-height,44px)}.van-picker__cancel,.van-picker__confirm{padding:0 16px;padding:var(--picker-action-padding,0 16px);font-size:14px;font-size:var(--picker-action-font-size,14px)}.van-picker__cancel--hover,.van-picker__confirm--hover{opacity:.7}.van-picker__confirm{color:#576b95;color:var(--picker-confirm-action-color,#576b95)}.van-picker__cancel{color:#969799;color:var(--picker-cancel-action-color,#969799)}.van-picker__title{max-width:50%;text-align:center;font-weight:500;font-weight:var(--font-weight-bold,500);font-size:16px;font-size:var(--picker-option-font-size,16px)}.van-picker__columns{position:relative;display:-webkit-flex;display:flex}.van-picker__column{-webkit-flex:1 1;flex:1 1;width:0}.van-picker__loading{position:absolute;top:0;right:0;bottom:0;left:0;z-index:4;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;-webkit-justify-content:center;justify-content:center;background-color:hsla(0,0%,100%,.9);background-color:var(--picker-loading-mask-color,hsla(0,0%,100%,.9))}.van-picker__mask{top:0;left:0;z-index:2;width:100%;height:100%;background-image:linear-gradient(180deg,hsla(0,0%,100%,.9),hsla(0,0%,100%,.4)),linear-gradient(0deg,hsla(0,0%,100%,.9),hsla(0,0%,100%,.4));background-repeat:no-repeat;background-position:top,bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden}.van-picker__frame,.van-picker__mask{position:absolute;pointer-events:none}.van-picker__frame{top:50%;right:16px;left:16px;z-index:1;-webkit-transform:translateY(-50%);transform:translateY(-50%)}
\ 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/node_modules/@vant/weapp/lib/picker/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/node_modules/@vant/weapp/lib/picker/shared.js"
new file mode 100644
index 0000000000000000000000000000000000000000..9b2ca48aa09e51df23eb359dfd282d74e8e456dc
--- /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/node_modules/@vant/weapp/lib/picker/shared.js"
@@ -0,0 +1,24 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+exports.pickerProps = void 0;
+exports.pickerProps = {
+ title: String,
+ loading: Boolean,
+ showToolbar: Boolean,
+ cancelButtonText: {
+ type: String,
+ value: '取消',
+ },
+ confirmButtonText: {
+ type: String,
+ value: '确认',
+ },
+ visibleItemCount: {
+ type: Number,
+ value: 6,
+ },
+ itemHeight: {
+ type: Number,
+ value: 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/node_modules/@vant/weapp/lib/picker/toolbar.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/node_modules/@vant/weapp/lib/picker/toolbar.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..414f61200741b6e928bb5628267daa1d6675aadc
--- /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/node_modules/@vant/weapp/lib/picker/toolbar.wxml"
@@ -0,0 +1,23 @@
+
+
+ {{ cancelButtonText }}
+
+ {{
+ title
+ }}
+
+ {{ 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/node_modules/@vant/weapp/lib/popup/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/node_modules/@vant/weapp/lib/popup/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..fbe673cde4c9f72d733ae71b7853e4d2200a61d6
--- /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/node_modules/@vant/weapp/lib/popup/index.js"
@@ -0,0 +1,89 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+var transition_1 = require('../mixins/transition');
+component_1.VantComponent({
+ classes: [
+ 'enter-class',
+ 'enter-active-class',
+ 'enter-to-class',
+ 'leave-class',
+ 'leave-active-class',
+ 'leave-to-class',
+ 'close-icon-class',
+ ],
+ mixins: [transition_1.transition(false)],
+ props: {
+ round: Boolean,
+ closeable: Boolean,
+ customStyle: String,
+ overlayStyle: String,
+ transition: {
+ type: String,
+ observer: 'observeClass',
+ },
+ zIndex: {
+ type: Number,
+ value: 100,
+ },
+ overlay: {
+ type: Boolean,
+ value: true,
+ },
+ closeIcon: {
+ type: String,
+ value: 'cross',
+ },
+ closeIconPosition: {
+ type: String,
+ value: 'top-right',
+ },
+ closeOnClickOverlay: {
+ type: Boolean,
+ value: true,
+ },
+ position: {
+ type: String,
+ value: 'center',
+ observer: 'observeClass',
+ },
+ safeAreaInsetBottom: {
+ type: Boolean,
+ value: true,
+ },
+ safeAreaInsetTop: {
+ type: Boolean,
+ value: false,
+ },
+ },
+ created: function () {
+ this.observeClass();
+ },
+ methods: {
+ onClickCloseIcon: function () {
+ this.$emit('close');
+ },
+ onClickOverlay: function () {
+ this.$emit('click-overlay');
+ if (this.data.closeOnClickOverlay) {
+ this.$emit('close');
+ }
+ },
+ observeClass: function () {
+ var _a = this.data,
+ transition = _a.transition,
+ position = _a.position,
+ duration = _a.duration;
+ var updateData = {
+ name: transition || position,
+ };
+ if (transition === 'none') {
+ updateData.duration = 0;
+ this.originDuration = duration;
+ } else if (this.originDuration != null) {
+ updateData.duration = this.originDuration;
+ }
+ this.setData(updateData);
+ },
+ },
+});
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/node_modules/@vant/weapp/lib/popup/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/node_modules/@vant/weapp/lib/popup/index.json"
new file mode 100644
index 0000000000000000000000000000000000000000..88a6eab2a3d39616b3407376f926947017857a80
--- /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/node_modules/@vant/weapp/lib/popup/index.json"
@@ -0,0 +1,7 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-icon": "../icon/index",
+ "van-overlay": "../overlay/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/node_modules/@vant/weapp/lib/popup/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/node_modules/@vant/weapp/lib/popup/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..0be99d4699a1ed63f9f17fe05ecbaed382ec2023
--- /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/node_modules/@vant/weapp/lib/popup/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/node_modules/@vant/weapp/lib/popup/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/node_modules/@vant/weapp/lib/popup/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..8d59f245a079a1839571f35f95f6bb95c50241f2
--- /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/node_modules/@vant/weapp/lib/popup/index.wxs"
@@ -0,0 +1,18 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+
+function popupStyle(data) {
+ return style([
+ {
+ 'z-index': data.zIndex,
+ '-webkit-transition-duration': data.currentDuration + 'ms',
+ 'transition-duration': data.currentDuration + 'ms',
+ },
+ data.display ? null : 'display: none',
+ data.customStyle,
+ ]);
+}
+
+module.exports = {
+ popupStyle: popupStyle,
+};
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/node_modules/@vant/weapp/lib/popup/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/node_modules/@vant/weapp/lib/popup/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..a3d6e6fd1b37e7b30aa57c5676b0d247baa1ebea
--- /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/node_modules/@vant/weapp/lib/popup/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-popup{position:fixed;box-sizing:border-box;max-height:100%;overflow-y:auto;transition-timing-function:ease;-webkit-animation:ease both;animation:ease both;-webkit-overflow-scrolling:touch;background-color:#fff;background-color:var(--popup-background-color,#fff)}.van-popup--center{top:50%;left:50%;-webkit-transform:translate3d(-50%,-50%,0);transform:translate3d(-50%,-50%,0)}.van-popup--center.van-popup--round{border-radius:16px;border-radius:var(--popup-round-border-radius,16px)}.van-popup--top{top:0;left:0;width:100%}.van-popup--top.van-popup--round{border-radius:0 0 16px 16px;border-radius:0 0 var(--popup-round-border-radius,16px) var(--popup-round-border-radius,16px)}.van-popup--right{top:50%;right:0;-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}.van-popup--right.van-popup--round{border-radius:16px 0 0 16px;border-radius:var(--popup-round-border-radius,16px) 0 0 var(--popup-round-border-radius,16px)}.van-popup--bottom{bottom:0;left:0;width:100%}.van-popup--bottom.van-popup--round{border-radius:16px 16px 0 0;border-radius:var(--popup-round-border-radius,16px) var(--popup-round-border-radius,16px) 0 0}.van-popup--left{top:50%;left:0;-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}.van-popup--left.van-popup--round{border-radius:0 16px 16px 0;border-radius:0 var(--popup-round-border-radius,16px) var(--popup-round-border-radius,16px) 0}.van-popup--bottom.van-popup--safe{padding-bottom:env(safe-area-inset-bottom)}.van-popup--safeTop{padding-top:env(safe-area-inset-top)}.van-popup__close-icon{position:absolute;z-index:1;z-index:var(--popup-close-icon-z-index,1);color:#969799;color:var(--popup-close-icon-color,#969799);font-size:18px;font-size:var(--popup-close-icon-size,18px)}.van-popup__close-icon--top-left{top:16px;top:var(--popup-close-icon-margin,16px);left:16px;left:var(--popup-close-icon-margin,16px)}.van-popup__close-icon--top-right{top:16px;top:var(--popup-close-icon-margin,16px);right:16px;right:var(--popup-close-icon-margin,16px)}.van-popup__close-icon--bottom-left{bottom:16px;bottom:var(--popup-close-icon-margin,16px);left:16px;left:var(--popup-close-icon-margin,16px)}.van-popup__close-icon--bottom-right{right:16px;right:var(--popup-close-icon-margin,16px);bottom:16px;bottom:var(--popup-close-icon-margin,16px)}.van-popup__close-icon:active{opacity:.6}.van-scale-enter-active,.van-scale-leave-active{transition-property:opacity,-webkit-transform;transition-property:opacity,transform;transition-property:opacity,transform,-webkit-transform}.van-scale-enter,.van-scale-leave-to{-webkit-transform:translate3d(-50%,-50%,0) scale(.7);transform:translate3d(-50%,-50%,0) scale(.7);opacity:0}.van-fade-enter-active,.van-fade-leave-active{transition-property:opacity}.van-fade-enter,.van-fade-leave-to{opacity:0}.van-center-enter-active,.van-center-leave-active{transition-property:opacity}.van-center-enter,.van-center-leave-to{opacity:0}.van-bottom-enter-active,.van-bottom-leave-active,.van-left-enter-active,.van-left-leave-active,.van-right-enter-active,.van-right-leave-active,.van-top-enter-active,.van-top-leave-active{transition-property:-webkit-transform;transition-property:transform;transition-property:transform,-webkit-transform}.van-bottom-enter,.van-bottom-leave-to{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}.van-top-enter,.van-top-leave-to{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}.van-left-enter,.van-left-leave-to{-webkit-transform:translate3d(-100%,-50%,0);transform:translate3d(-100%,-50%,0)}.van-right-enter,.van-right-leave-to{-webkit-transform:translate3d(100%,-50%,0);transform:translate3d(100%,-50%,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/node_modules/@vant/weapp/lib/progress/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/node_modules/@vant/weapp/lib/progress/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..f41cf4ff86f0aa66727629fab05cbea09251c9d7
--- /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/node_modules/@vant/weapp/lib/progress/index.js"
@@ -0,0 +1,56 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+var color_1 = require('../common/color');
+var utils_1 = require('../common/utils');
+component_1.VantComponent({
+ props: {
+ inactive: Boolean,
+ percentage: {
+ type: Number,
+ observer: 'setLeft',
+ },
+ pivotText: String,
+ pivotColor: String,
+ trackColor: String,
+ showPivot: {
+ type: Boolean,
+ value: true,
+ },
+ color: {
+ type: String,
+ value: color_1.BLUE,
+ },
+ textColor: {
+ type: String,
+ value: '#fff',
+ },
+ strokeWidth: {
+ type: null,
+ value: 4,
+ },
+ },
+ data: {
+ right: 0,
+ },
+ mounted: function () {
+ this.setLeft();
+ },
+ methods: {
+ setLeft: function () {
+ var _this = this;
+ Promise.all([
+ utils_1.getRect(this, '.van-progress'),
+ utils_1.getRect(this, '.van-progress__pivot'),
+ ]).then(function (_a) {
+ var portion = _a[0],
+ pivot = _a[1];
+ if (portion && pivot) {
+ _this.setData({
+ right: (pivot.width * (_this.data.percentage - 100)) / 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/node_modules/@vant/weapp/lib/progress/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/node_modules/@vant/weapp/lib/progress/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/node_modules/@vant/weapp/lib/progress/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/node_modules/@vant/weapp/lib/progress/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/node_modules/@vant/weapp/lib/progress/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..e81514d05fdce662ca1f2bff2d72841acbf7c08d
--- /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/node_modules/@vant/weapp/lib/progress/index.wxml"
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+ {{ computed.pivotText(pivotText, percentage) }}
+
+
+
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/node_modules/@vant/weapp/lib/progress/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/node_modules/@vant/weapp/lib/progress/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..5b1e8e6bc0440be40af8e27c86b5fcf509d0437f
--- /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/node_modules/@vant/weapp/lib/progress/index.wxs"
@@ -0,0 +1,36 @@
+/* eslint-disable */
+var utils = require('../wxs/utils.wxs');
+var style = require('../wxs/style.wxs');
+
+function pivotText(pivotText, percentage) {
+ return pivotText || percentage + '%';
+}
+
+function rootStyle(data) {
+ return style({
+ 'height': data.strokeWidth ? utils.addUnit(data.strokeWidth) : '',
+ 'background': data.trackColor,
+ });
+}
+
+function portionStyle(data) {
+ return style({
+ background: data.inactive ? '#cacaca' : data.color,
+ width: data.percentage ? data.percentage + '%' : '',
+ });
+}
+
+function pivotStyle(data) {
+ return style({
+ color: data.textColor,
+ right: data.right + 'px',
+ background: data.pivotColor ? data.pivotColor : data.inactive ? '#cacaca' : data.color,
+ });
+}
+
+module.exports = {
+ pivotText: pivotText,
+ rootStyle: rootStyle,
+ portionStyle: portionStyle,
+ pivotStyle: pivotStyle,
+};
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/node_modules/@vant/weapp/lib/progress/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/node_modules/@vant/weapp/lib/progress/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..3844a59eaf40ad2e722c4b82903320cd13a9aa2b
--- /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/node_modules/@vant/weapp/lib/progress/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-progress{position:relative;height:4px;height:var(--progress-height,4px);border-radius:4px;border-radius:var(--progress-height,4px);background:#ebedf0;background:var(--progress-background-color,#ebedf0)}.van-progress__portion{position:absolute;left:0;height:100%;border-radius:inherit;background:#1989fa;background:var(--progress-color,#1989fa)}.van-progress__pivot{position:absolute;top:50%;box-sizing:border-box;min-width:3.6em;text-align:center;word-break:keep-all;border-radius:1em;-webkit-transform:translateY(-50%);transform:translateY(-50%);color:#fff;color:var(--progress-pivot-text-color,#fff);padding:0 5px;padding:var(--progress-pivot-padding,0 5px);font-size:10px;font-size:var(--progress-pivot-font-size,10px);line-height:1.6;line-height:var(--progress-pivot-line-height,1.6);background-color:#1989fa;background-color:var(--progress-pivot-background-color,#1989fa)}
\ 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/node_modules/@vant/weapp/lib/radio-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/node_modules/@vant/weapp/lib/radio-group/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..41fa6f61d340e278497f8ee899fb9800ce351629
--- /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/node_modules/@vant/weapp/lib/radio-group/index.js"
@@ -0,0 +1,40 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+var relation_1 = require('../common/relation');
+component_1.VantComponent({
+ field: true,
+ relation: relation_1.useChildren('radio', function (target) {
+ this.updateChild(target);
+ }),
+ props: {
+ value: {
+ type: null,
+ observer: 'updateChildren',
+ },
+ direction: String,
+ 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,
+ direction = _a.direction;
+ child.setData({
+ value: value,
+ direction: direction,
+ disabled: disabled || child.data.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/node_modules/@vant/weapp/lib/radio-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/node_modules/@vant/weapp/lib/radio-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/node_modules/@vant/weapp/lib/radio-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/node_modules/@vant/weapp/lib/radio-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/node_modules/@vant/weapp/lib/radio-group/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..0ab17afcda065ea624494668ed23f2d3f65a1235
--- /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/node_modules/@vant/weapp/lib/radio-group/index.wxml"
@@ -0,0 +1,5 @@
+
+
+
+
+
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/node_modules/@vant/weapp/lib/radio-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/node_modules/@vant/weapp/lib/radio-group/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..df45fd68339980ac44dd92383959de3ef80a45d7
--- /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/node_modules/@vant/weapp/lib/radio-group/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-radio-group--horizontal{display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap}
\ 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/node_modules/@vant/weapp/lib/radio/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/node_modules/@vant/weapp/lib/radio/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..8f48299801d4e2095eb470875223646a3df14c6a
--- /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/node_modules/@vant/weapp/lib/radio/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({
+ field: true,
+ relation: relation_1.useParent('radio-group'),
+ classes: ['icon-class', 'label-class'],
+ props: {
+ name: null,
+ value: null,
+ disabled: Boolean,
+ useIconSlot: Boolean,
+ checkedColor: String,
+ labelPosition: {
+ type: String,
+ value: 'right',
+ },
+ labelDisabled: Boolean,
+ shape: {
+ type: String,
+ value: 'round',
+ },
+ iconSize: {
+ type: null,
+ value: 20,
+ },
+ },
+ methods: {
+ emitChange: function (value) {
+ var instance = this.parent || this;
+ instance.$emit('input', value);
+ instance.$emit('change', value);
+ },
+ onChange: function () {
+ if (!this.data.disabled) {
+ this.emitChange(this.data.name);
+ }
+ },
+ onClickLabel: function () {
+ var _a = this.data,
+ disabled = _a.disabled,
+ labelDisabled = _a.labelDisabled,
+ name = _a.name;
+ if (!disabled && !labelDisabled) {
+ this.emitChange(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/node_modules/@vant/weapp/lib/radio/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/node_modules/@vant/weapp/lib/radio/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/node_modules/@vant/weapp/lib/radio/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/node_modules/@vant/weapp/lib/radio/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/node_modules/@vant/weapp/lib/radio/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..4601c0687478d573c27c7f5b7086813380d58645
--- /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/node_modules/@vant/weapp/lib/radio/index.wxml"
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
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/node_modules/@vant/weapp/lib/radio/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/node_modules/@vant/weapp/lib/radio/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..602a69e33e3c0173e3a1845d4b32c09e1a5b6645
--- /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/node_modules/@vant/weapp/lib/radio/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-radio{display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;overflow:hidden;-webkit-user-select:none;user-select:none}.van-radio__icon-wrap{-webkit-flex:none;flex:none}.van-radio--horizontal{margin-right:12px;margin-right:var(--padding-sm,12px)}.van-radio__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;border:1px solid #c8c9cc;border:1px solid var(--radio-border-color,#c8c9cc);font-size:20px;font-size:var(--radio-size,20px);transition-duration:.2s;transition-duration:var(--radio-transition-duration,.2s)}.van-radio__icon--round{border-radius:100%}.van-radio__icon--checked{color:#fff;color:var(--white,#fff);background-color:#1989fa;background-color:var(--radio-checked-icon-color,#1989fa);border-color:#1989fa;border-color:var(--radio-checked-icon-color,#1989fa)}.van-radio__icon--disabled{background-color:#ebedf0;background-color:var(--radio-disabled-background-color,#ebedf0);border-color:#c8c9cc;border-color:var(--radio-disabled-icon-color,#c8c9cc)}.van-radio__icon--disabled.van-radio__icon--checked{color:#c8c9cc;color:var(--radio-disabled-icon-color,#c8c9cc)}.van-radio__label{word-wrap:break-word;margin-left:10px;margin-left:var(--radio-label-margin,10px);color:#323233;color:var(--radio-label-color,#323233);line-height:20px;line-height:var(--radio-size,20px)}.van-radio__label--left{float:left;margin:0 10px 0 0;margin:0 var(--radio-label-margin,10px) 0 0}.van-radio__label--disabled{color:#c8c9cc;color:var(--radio-disabled-label-color,#c8c9cc)}.van-radio__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/node_modules/@vant/weapp/lib/rate/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/node_modules/@vant/weapp/lib/rate/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..c8477d4f27ec3b6d98dfb80357474b4ac5dac22e
--- /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/node_modules/@vant/weapp/lib/rate/index.js"
@@ -0,0 +1,111 @@
+'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 version_1 = require('../common/version');
+component_1.VantComponent({
+ field: true,
+ classes: ['icon-class'],
+ props: {
+ value: {
+ type: Number,
+ observer: function (value) {
+ if (value !== this.data.innerValue) {
+ this.setData({ innerValue: value });
+ }
+ },
+ },
+ readonly: Boolean,
+ disabled: Boolean,
+ allowHalf: Boolean,
+ size: null,
+ icon: {
+ type: String,
+ value: 'star',
+ },
+ voidIcon: {
+ type: String,
+ value: 'star-o',
+ },
+ color: {
+ type: String,
+ value: '#ffd21e',
+ },
+ voidColor: {
+ type: String,
+ value: '#c7c7c7',
+ },
+ disabledColor: {
+ type: String,
+ value: '#bdbdbd',
+ },
+ count: {
+ type: Number,
+ value: 5,
+ observer: function (value) {
+ this.setData({ innerCountArray: Array.from({ length: value }) });
+ },
+ },
+ gutter: null,
+ touchable: {
+ type: Boolean,
+ value: true,
+ },
+ },
+ data: {
+ innerValue: 0,
+ innerCountArray: Array.from({ length: 5 }),
+ },
+ methods: {
+ onSelect: function (event) {
+ var _this = this;
+ var data = this.data;
+ var score = event.currentTarget.dataset.score;
+ if (!data.disabled && !data.readonly) {
+ this.setData({ innerValue: score + 1 });
+ if (version_1.canIUseModel()) {
+ this.setData({ value: score + 1 });
+ }
+ wx.nextTick(function () {
+ _this.$emit('input', score + 1);
+ _this.$emit('change', score + 1);
+ });
+ }
+ },
+ onTouchMove: function (event) {
+ var _this = this;
+ var touchable = this.data.touchable;
+ if (!touchable) return;
+ var clientX = event.touches[0].clientX;
+ utils_1.getAllRect(this, '.van-rate__icon').then(function (list) {
+ var target = list
+ .sort(function (item) {
+ return item.right - item.left;
+ })
+ .find(function (item) {
+ return clientX >= item.left && clientX <= item.right;
+ });
+ if (target != null) {
+ _this.onSelect(
+ __assign(__assign({}, event), { currentTarget: target })
+ );
+ }
+ });
+ },
+ },
+});
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/node_modules/@vant/weapp/lib/rate/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/node_modules/@vant/weapp/lib/rate/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/node_modules/@vant/weapp/lib/rate/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/node_modules/@vant/weapp/lib/rate/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/node_modules/@vant/weapp/lib/rate/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..58eee5cdca70917685e29cee0b0111c291a0f486
--- /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/node_modules/@vant/weapp/lib/rate/index.wxml"
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
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/node_modules/@vant/weapp/lib/rate/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/node_modules/@vant/weapp/lib/rate/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..6fd343546d19f25e492a5b217daec17fa37848a5
--- /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/node_modules/@vant/weapp/lib/rate/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-rate{display:-webkit-inline-flex;display:inline-flex;-webkit-user-select:none;user-select:none}.van-rate__item{position:relative;padding:0 2px;padding:0 var(--rate-horizontal-padding,2px)}.van-rate__icon{display:block;height:1em;font-size:20px;font-size:var(--rate-icon-size,20px)}.van-rate__icon--half{position:absolute;top:0;width:.5em;overflow:hidden;left:2px;left:var(--rate-horizontal-padding,2px)}
\ 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/node_modules/@vant/weapp/lib/row/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/node_modules/@vant/weapp/lib/row/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..a107b64917b89e9cfe08a22f92b61a4acfb13f7d
--- /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/node_modules/@vant/weapp/lib/row/index.js"
@@ -0,0 +1,26 @@
+'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('col', function (target) {
+ var gutter = this.data.gutter;
+ if (gutter) {
+ target.setData({ gutter: gutter });
+ }
+ }),
+ props: {
+ gutter: {
+ type: Number,
+ observer: 'setGutter',
+ },
+ },
+ methods: {
+ setGutter: function () {
+ var _this = this;
+ this.children.forEach(function (col) {
+ col.setData(_this.data);
+ });
+ },
+ },
+});
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/node_modules/@vant/weapp/lib/row/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/node_modules/@vant/weapp/lib/row/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/node_modules/@vant/weapp/lib/row/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/node_modules/@vant/weapp/lib/row/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/node_modules/@vant/weapp/lib/row/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..69a4359b16010c1ef2e251ae5ee9533885171db4
--- /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/node_modules/@vant/weapp/lib/row/index.wxml"
@@ -0,0 +1,5 @@
+
+
+
+
+
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/node_modules/@vant/weapp/lib/row/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/node_modules/@vant/weapp/lib/row/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..f5c5958748e6ce3e5a4d97fe7c23f2d3175ea403
--- /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/node_modules/@vant/weapp/lib/row/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({
+ 'margin-right': addUnit(-data.gutter / 2),
+ 'margin-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/node_modules/@vant/weapp/lib/row/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/node_modules/@vant/weapp/lib/row/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..32a098b0ad5df7dbbb02a894c344379d00e5b3b0
--- /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/node_modules/@vant/weapp/lib/row/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-row: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/node_modules/@vant/weapp/lib/search/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/node_modules/@vant/weapp/lib/search/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..2e61ab9bcc18c6d72490d47dde7d6d46fced9a0d
--- /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/node_modules/@vant/weapp/lib/search/index.js"
@@ -0,0 +1,81 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+var version_1 = require('../common/version');
+component_1.VantComponent({
+ field: true,
+ classes: ['field-class', 'input-class', 'cancel-class'],
+ props: {
+ label: String,
+ focus: Boolean,
+ error: Boolean,
+ disabled: Boolean,
+ readonly: Boolean,
+ inputAlign: String,
+ showAction: Boolean,
+ useActionSlot: Boolean,
+ useLeftIconSlot: Boolean,
+ useRightIconSlot: Boolean,
+ leftIcon: {
+ type: String,
+ value: 'search',
+ },
+ rightIcon: String,
+ placeholder: String,
+ placeholderStyle: String,
+ actionText: {
+ type: String,
+ value: '取消',
+ },
+ background: {
+ type: String,
+ value: '#ffffff',
+ },
+ maxlength: {
+ type: Number,
+ value: -1,
+ },
+ shape: {
+ type: String,
+ value: 'square',
+ },
+ clearable: {
+ type: Boolean,
+ value: true,
+ },
+ },
+ methods: {
+ onChange: function (event) {
+ if (version_1.canIUseModel()) {
+ this.setData({ value: event.detail });
+ }
+ this.$emit('change', event.detail);
+ },
+ onCancel: function () {
+ var _this = this;
+ /**
+ * 修复修改输入框值时,输入框失焦和赋值同时触发,赋值失效
+ * https://github.com/youzan/@vant/weapp/issues/1768
+ */
+ setTimeout(function () {
+ if (version_1.canIUseModel()) {
+ _this.setData({ value: '' });
+ }
+ _this.$emit('cancel');
+ _this.$emit('change', '');
+ }, 200);
+ },
+ onSearch: function (event) {
+ this.$emit('search', event.detail);
+ },
+ onFocus: function (event) {
+ this.$emit('focus', event.detail);
+ },
+ onBlur: function (event) {
+ this.$emit('blur', event.detail);
+ },
+ onClear: function (event) {
+ this.$emit('clear', event.detail);
+ },
+ },
+});
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/node_modules/@vant/weapp/lib/search/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/node_modules/@vant/weapp/lib/search/index.json"
new file mode 100644
index 0000000000000000000000000000000000000000..b4cfe918beacb1fe29d9c7bc488a9fc44968fcf1
--- /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/node_modules/@vant/weapp/lib/search/index.json"
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-field": "../field/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/node_modules/@vant/weapp/lib/search/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/node_modules/@vant/weapp/lib/search/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..1d0e6f1f1177a9a39a324ae314b7c75de5118065
--- /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/node_modules/@vant/weapp/lib/search/index.wxml"
@@ -0,0 +1,50 @@
+
+
+
+
+ {{ label }}
+
+
+
+
+
+
+
+
+
+
+ {{ actionText }}
+
+
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/node_modules/@vant/weapp/lib/search/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/node_modules/@vant/weapp/lib/search/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..c918deb85c2603893653d0256ae87e494fc9e8d1
--- /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/node_modules/@vant/weapp/lib/search/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-search{-webkit-align-items:center;align-items:center;box-sizing:border-box;padding:10px 12px;padding:var(--search-padding,10px 12px)}.van-search,.van-search__content{display:-webkit-flex;display:flex}.van-search__content{-webkit-flex:1;flex:1;padding-left:12px;padding-left:var(--padding-sm,12px);border-radius:2px;border-radius:var(--border-radius-sm,2px);background-color:#f7f8fa;background-color:var(--search-background-color,#f7f8fa)}.van-search__content--round{border-radius:17px;border-radius:calc(var(--search-input-height, 34px)/2)}.van-search__label{padding:0 5px;padding:var(--search-label-padding,0 5px);font-size:14px;font-size:var(--search-label-font-size,14px);line-height:34px;line-height:var(--search-input-height,34px);color:#323233;color:var(--search-label-color,#323233)}.van-search__field{-webkit-flex:1;flex:1}.van-search__field__left-icon{color:#969799;color:var(--search-left-icon-color,#969799)}.van-search--withaction{padding-right:0}.van-search__action{padding:0 8px;padding:var(--search-action-padding,0 8px);font-size:14px;font-size:var(--search-action-font-size,14px);line-height:34px;line-height:var(--search-input-height,34px);color:#323233;color:var(--search-action-text-color,#323233)}.van-search__action--hover{background-color:#f2f3f5;background-color:var(--active-color,#f2f3f5)}
\ 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/node_modules/@vant/weapp/lib/share-sheet/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/node_modules/@vant/weapp/lib/share-sheet/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..440caf84f9c9fbb327fea960d812d22bd26b97cc
--- /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/node_modules/@vant/weapp/lib/share-sheet/index.js"
@@ -0,0 +1,57 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+component_1.VantComponent({
+ props: {
+ // whether to show popup
+ show: Boolean,
+ // overlay custom style
+ overlayStyle: Object,
+ // z-index
+ zIndex: {
+ type: Number,
+ value: 100,
+ },
+ title: String,
+ cancelText: {
+ type: String,
+ value: '取消',
+ },
+ description: String,
+ options: {
+ type: Array,
+ value: [],
+ },
+ overlay: {
+ type: Boolean,
+ value: true,
+ },
+ safeAreaInsetBottom: {
+ type: Boolean,
+ value: true,
+ },
+ closeOnClickOverlay: {
+ type: Boolean,
+ value: true,
+ },
+ duration: {
+ type: null,
+ value: 300,
+ },
+ },
+ methods: {
+ onClickOverlay: function () {
+ this.$emit('click-overlay');
+ },
+ onCancel: function () {
+ this.onClose();
+ this.$emit('cancel');
+ },
+ onSelect: function (event) {
+ this.$emit('select', event.detail);
+ },
+ onClose: function () {
+ this.$emit('close');
+ },
+ },
+});
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/node_modules/@vant/weapp/lib/share-sheet/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/node_modules/@vant/weapp/lib/share-sheet/index.json"
new file mode 100644
index 0000000000000000000000000000000000000000..15a7c2243dcbd380b0aa0b9416f608cafb90f7b5
--- /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/node_modules/@vant/weapp/lib/share-sheet/index.json"
@@ -0,0 +1,7 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-popup": "../popup/index",
+ "options": "./options"
+ }
+}
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/node_modules/@vant/weapp/lib/share-sheet/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/node_modules/@vant/weapp/lib/share-sheet/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..cefc3af44403c541579e60613262117abe524ab0
--- /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/node_modules/@vant/weapp/lib/share-sheet/index.wxml"
@@ -0,0 +1,46 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
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/node_modules/@vant/weapp/lib/share-sheet/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/node_modules/@vant/weapp/lib/share-sheet/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..2149ee9e43a28f022ab22429a82488c7aed8d2b4
--- /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/node_modules/@vant/weapp/lib/share-sheet/index.wxs"
@@ -0,0 +1,12 @@
+/* eslint-disable */
+function isMulti(options) {
+ if (options == null || options[0] == null) {
+ return false;
+ }
+
+ return "Array" === options.constructor && "Array" === options[0].constructor;
+}
+
+module.exports = {
+ isMulti: isMulti
+};
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/node_modules/@vant/weapp/lib/share-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/node_modules/@vant/weapp/lib/share-sheet/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..8d42eb270f26255df81254b9a9a489aff9ff9c9a
--- /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/node_modules/@vant/weapp/lib/share-sheet/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-share-sheet__header{padding:12px 16px 4px;text-align:center}.van-share-sheet__title{margin-top:8px;color:#323233;font-weight:400;font-size:14px;line-height:20px}.van-share-sheet__title:empty,.van-share-sheet__title:not(:empty)+.van-share-sheet__title{display:none}.van-share-sheet__description{display:block;margin-top:8px;color:#969799;font-size:12px;line-height:16px}.van-share-sheet__description:empty,.van-share-sheet__description:not(:empty)+.van-share-sheet__description{display:none}.van-share-sheet__cancel{display:block;box-sizing:initial;width:100%;height:auto;padding:0;font-size:16px;line-height:48px;text-align:center;background:#fff;border:none}.van-share-sheet__cancel:before{display:block;height:8px;background-color:#f7f8fa;content:" "}.van-share-sheet__cancel:after{display:none}.van-share-sheet__cancel:active{background-color:#f2f3f5}
\ 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/node_modules/@vant/weapp/lib/share-sheet/options.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/node_modules/@vant/weapp/lib/share-sheet/options.js"
new file mode 100644
index 0000000000000000000000000000000000000000..f503f4c6b3a8a5a54e1519f1651fd3a4f8b613c8
--- /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/node_modules/@vant/weapp/lib/share-sheet/options.js"
@@ -0,0 +1,31 @@
+'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');
+component_1.VantComponent({
+ props: {
+ options: Array,
+ showBorder: Boolean,
+ },
+ methods: {
+ onSelect: function (event) {
+ var index = event.currentTarget.dataset.index;
+ var option = this.data.options[index];
+ this.$emit('select', __assign(__assign({}, option), { index: 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/node_modules/@vant/weapp/lib/share-sheet/options.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/node_modules/@vant/weapp/lib/share-sheet/options.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/node_modules/@vant/weapp/lib/share-sheet/options.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/node_modules/@vant/weapp/lib/share-sheet/options.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/node_modules/@vant/weapp/lib/share-sheet/options.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..cad68377251e99662ab45cf854e01eb2751ad0d4
--- /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/node_modules/@vant/weapp/lib/share-sheet/options.wxml"
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+ {{ item.name }}
+
+ {{ item.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/node_modules/@vant/weapp/lib/share-sheet/options.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/node_modules/@vant/weapp/lib/share-sheet/options.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..ab6033b915d37d99dabf034ecf327a5b5cbe59ff
--- /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/node_modules/@vant/weapp/lib/share-sheet/options.wxs"
@@ -0,0 +1,14 @@
+/* eslint-disable */
+var PRESET_ICONS = ['qq', 'weibo', 'wechat', 'link', 'qrcode', 'poster'];
+
+function getIconURL(icon) {
+ if (PRESET_ICONS.indexOf(icon) !== -1) {
+ return 'https://img.yzcdn.cn/vant/share-icon-' + icon + '.png';
+ }
+
+ return icon;
+}
+
+module.exports = {
+ getIconURL: getIconURL,
+};
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/node_modules/@vant/weapp/lib/share-sheet/options.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/node_modules/@vant/weapp/lib/share-sheet/options.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..ca7b02f294e620e4c9cf2e23aa3fae3407f5240c
--- /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/node_modules/@vant/weapp/lib/share-sheet/options.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-share-sheet__options{position:relative;display:-webkit-flex;display:flex;padding:16px 0 16px 8px;overflow-x:auto;overflow-y:visible;-webkit-overflow-scrolling:touch}.van-share-sheet__options--border:before{position:absolute;box-sizing:border-box;-webkit-transform-origin:center;transform-origin:center;content:" ";pointer-events:none;top:0;right:0;left:16px;border-top:1px solid #ebedf0;-webkit-transform:scaleY(.5);transform:scaleY(.5)}.van-share-sheet__options::-webkit-scrollbar{height:0}.van-share-sheet__option{display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;-webkit-align-items:center;align-items:center;-webkit-user-select:none;user-select:none}.van-share-sheet__option:active{opacity:.7}.van-share-sheet__button{height:auto;padding:0;line-height:inherit;background-color:initial;border:0}.van-share-sheet__button:after{border:0}.van-share-sheet__icon{width:48px;height:48px;margin:0 16px}.van-share-sheet__name{margin-top:8px;padding:0 4px;color:#646566;font-size:12px}.van-share-sheet__option-description{padding:0 4px;color:#c8c9cc;font-size:12px}
\ 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/node_modules/@vant/weapp/lib/sidebar-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/node_modules/@vant/weapp/lib/sidebar-item/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..a5ed300b8a879f86eba4cabd699c12627517591f
--- /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/node_modules/@vant/weapp/lib/sidebar-item/index.js"
@@ -0,0 +1,32 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+var relation_1 = require('../common/relation');
+component_1.VantComponent({
+ classes: ['active-class', 'disabled-class'],
+ relation: relation_1.useParent('sidebar'),
+ props: {
+ dot: Boolean,
+ badge: null,
+ info: null,
+ title: String,
+ disabled: Boolean,
+ },
+ methods: {
+ onClick: function () {
+ var _this = this;
+ var parent = this.parent;
+ if (!parent || this.data.disabled) {
+ return;
+ }
+ var index = parent.children.indexOf(this);
+ parent.setActive(index).then(function () {
+ _this.$emit('click', index);
+ parent.$emit('change', index);
+ });
+ },
+ setActive: function (selected) {
+ return this.setData({ selected: selected });
+ },
+ },
+});
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/node_modules/@vant/weapp/lib/sidebar-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/node_modules/@vant/weapp/lib/sidebar-item/index.json"
new file mode 100644
index 0000000000000000000000000000000000000000..bf0ebe009c3904229ff4005710f4136b55cf57aa
--- /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/node_modules/@vant/weapp/lib/sidebar-item/index.json"
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-info": "../info/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/node_modules/@vant/weapp/lib/sidebar-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/node_modules/@vant/weapp/lib/sidebar-item/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..c5c08a6269a93b5bf5cf484e71759bb9dda6f07a
--- /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/node_modules/@vant/weapp/lib/sidebar-item/index.wxml"
@@ -0,0 +1,18 @@
+
+
+
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/node_modules/@vant/weapp/lib/sidebar-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/node_modules/@vant/weapp/lib/sidebar-item/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..f134528f23c2f0d1701777cd9566ce3e14b4235e
--- /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/node_modules/@vant/weapp/lib/sidebar-item/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-sidebar-item{display:block;box-sizing:border-box;overflow:hidden;border-left:3px solid transparent;-webkit-user-select:none;user-select:none;padding:20px 12px 20px 8px;padding:var(--sidebar-padding,20px 12px 20px 8px);font-size:14px;font-size:var(--sidebar-font-size,14px);line-height:20px;line-height:var(--sidebar-line-height,20px);color:#323233;color:var(--sidebar-text-color,#323233);background-color:#f7f8fa;background-color:var(--sidebar-background-color,#f7f8fa)}.van-sidebar-item__text{position:relative;display:inline-block;word-break:break-all}.van-sidebar-item--hover:not(.van-sidebar-item--disabled){background-color:#f2f3f5;background-color:var(--sidebar-active-color,#f2f3f5)}.van-sidebar-item:after{border-bottom-width:1px}.van-sidebar-item--selected{color:#323233;color:var(--sidebar-selected-text-color,#323233);font-weight:500;font-weight:var(--sidebar-selected-font-weight,500);border-color:#ee0a24;border-color:var(--sidebar-selected-border-color,#ee0a24)}.van-sidebar-item--selected:after{border-right-width:1px}.van-sidebar-item--selected,.van-sidebar-item--selected.van-sidebar-item--hover{background-color:#fff;background-color:var(--sidebar-selected-background-color,#fff)}.van-sidebar-item--disabled{color:#c8c9cc;color:var(--sidebar-disabled-text-color,#c8c9cc)}
\ 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/node_modules/@vant/weapp/lib/sidebar/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/node_modules/@vant/weapp/lib/sidebar/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..5265361dccfd1d2ce5edd5aed43b3eee4445a695
--- /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/node_modules/@vant/weapp/lib/sidebar/index.js"
@@ -0,0 +1,38 @@
+'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('sidebar-item', function () {
+ this.setActive(this.data.activeKey);
+ }),
+ props: {
+ activeKey: {
+ type: Number,
+ value: 0,
+ observer: 'setActive',
+ },
+ },
+ beforeCreate: function () {
+ this.currentActive = -1;
+ },
+ methods: {
+ setActive: function (activeKey) {
+ var _a = this,
+ children = _a.children,
+ currentActive = _a.currentActive;
+ if (!children.length) {
+ return Promise.resolve();
+ }
+ this.currentActive = activeKey;
+ var stack = [];
+ if (currentActive !== activeKey && children[currentActive]) {
+ stack.push(children[currentActive].setActive(false));
+ }
+ if (children[activeKey]) {
+ stack.push(children[activeKey].setActive(true));
+ }
+ return Promise.all(stack);
+ },
+ },
+});
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/node_modules/@vant/weapp/lib/sidebar/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/node_modules/@vant/weapp/lib/sidebar/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/node_modules/@vant/weapp/lib/sidebar/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/node_modules/@vant/weapp/lib/sidebar/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/node_modules/@vant/weapp/lib/sidebar/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..96b11c718ee3d34e79a90c18b2a16be06259a1da
--- /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/node_modules/@vant/weapp/lib/sidebar/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/node_modules/@vant/weapp/lib/sidebar/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/node_modules/@vant/weapp/lib/sidebar/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..8ad18841a2d5d1c81931addff1537deb800ea106
--- /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/node_modules/@vant/weapp/lib/sidebar/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-sidebar{width:80px;width:var(--sidebar-width,80px)}
\ 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/node_modules/@vant/weapp/lib/skeleton/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/node_modules/@vant/weapp/lib/skeleton/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..52137fa89092635bd44861d65fa72928e7db59ab
--- /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/node_modules/@vant/weapp/lib/skeleton/index.js"
@@ -0,0 +1,48 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+component_1.VantComponent({
+ classes: ['avatar-class', 'title-class', 'row-class'],
+ props: {
+ row: {
+ type: Number,
+ value: 0,
+ observer: function (value) {
+ this.setData({ rowArray: Array.from({ length: value }) });
+ },
+ },
+ title: Boolean,
+ avatar: Boolean,
+ loading: {
+ type: Boolean,
+ value: true,
+ },
+ animate: {
+ type: Boolean,
+ value: true,
+ },
+ avatarSize: {
+ type: String,
+ value: '32px',
+ },
+ avatarShape: {
+ type: String,
+ value: 'round',
+ },
+ titleWidth: {
+ type: String,
+ value: '40%',
+ },
+ rowWidth: {
+ type: null,
+ value: '100%',
+ observer: function (val) {
+ this.setData({ isArray: val instanceof Array });
+ },
+ },
+ },
+ data: {
+ isArray: false,
+ rowArray: [],
+ },
+});
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/node_modules/@vant/weapp/lib/skeleton/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/node_modules/@vant/weapp/lib/skeleton/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/node_modules/@vant/weapp/lib/skeleton/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/node_modules/@vant/weapp/lib/skeleton/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/node_modules/@vant/weapp/lib/skeleton/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..058e2efd1795f88f123873eec84f917902317145
--- /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/node_modules/@vant/weapp/lib/skeleton/index.wxml"
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
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/node_modules/@vant/weapp/lib/skeleton/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/node_modules/@vant/weapp/lib/skeleton/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..565b26e498348dd798c570c4abb86b9cc9fad90a
--- /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/node_modules/@vant/weapp/lib/skeleton/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-skeleton{display:-webkit-flex;display:flex;box-sizing:border-box;width:100%;padding:0 16px;padding:var(--skeleton-padding,0 16px)}.van-skeleton__avatar{-webkit-flex-shrink:0;flex-shrink:0;margin-right:16px;margin-right:var(--padding-md,16px);background-color:#f2f3f5;background-color:var(--skeleton-avatar-background-color,#f2f3f5)}.van-skeleton__avatar--round{border-radius:100%}.van-skeleton__content{-webkit-flex:1;flex:1}.van-skeleton__avatar+.van-skeleton__content{padding-top:8px;padding-top:var(--padding-xs,8px)}.van-skeleton__row,.van-skeleton__title{height:16px;height:var(--skeleton-row-height,16px);background-color:#f2f3f5;background-color:var(--skeleton-row-background-color,#f2f3f5)}.van-skeleton__title{margin:0}.van-skeleton__row:not(:first-child){margin-top:12px;margin-top:var(--skeleton-row-margin-top,12px)}.van-skeleton__title+.van-skeleton__row{margin-top:20px}.van-skeleton--animate{-webkit-animation:van-skeleton-blink 1.2s ease-in-out infinite;animation:van-skeleton-blink 1.2s ease-in-out infinite}@-webkit-keyframes van-skeleton-blink{50%{opacity:.6}}@keyframes van-skeleton-blink{50%{opacity:.6}}
\ 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/node_modules/@vant/weapp/lib/slider/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/node_modules/@vant/weapp/lib/slider/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..82fb5f4c110d794247212bcba698262574423806
--- /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/node_modules/@vant/weapp/lib/slider/index.js"
@@ -0,0 +1,118 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+var touch_1 = require('../mixins/touch');
+var version_1 = require('../common/version');
+var utils_1 = require('../common/utils');
+component_1.VantComponent({
+ mixins: [touch_1.touch],
+ props: {
+ disabled: Boolean,
+ useButtonSlot: Boolean,
+ activeColor: String,
+ inactiveColor: String,
+ max: {
+ type: Number,
+ value: 100,
+ },
+ min: {
+ type: Number,
+ value: 0,
+ },
+ step: {
+ type: Number,
+ value: 1,
+ },
+ value: {
+ type: Number,
+ value: 0,
+ observer: function (val) {
+ if (val !== this.value) {
+ this.updateValue(val);
+ }
+ },
+ },
+ barHeight: {
+ type: null,
+ value: 2,
+ },
+ },
+ created: function () {
+ this.updateValue(this.data.value);
+ },
+ methods: {
+ onTouchStart: function (event) {
+ if (this.data.disabled) return;
+ this.touchStart(event);
+ this.startValue = this.format(this.value);
+ this.dragStatus = 'start';
+ },
+ onTouchMove: function (event) {
+ var _this = this;
+ if (this.data.disabled) return;
+ if (this.dragStatus === 'start') {
+ this.$emit('drag-start');
+ }
+ this.touchMove(event);
+ this.dragStatus = 'draging';
+ utils_1.getRect(this, '.van-slider').then(function (rect) {
+ var diff = (_this.deltaX / rect.width) * _this.getRange();
+ _this.newValue = _this.startValue + diff;
+ _this.updateValue(_this.newValue, false, true);
+ });
+ },
+ onTouchEnd: function () {
+ if (this.data.disabled) return;
+ if (this.dragStatus === 'draging') {
+ this.updateValue(this.newValue, true);
+ this.$emit('drag-end');
+ }
+ },
+ onClick: function (event) {
+ var _this = this;
+ if (this.data.disabled) return;
+ var min = this.data.min;
+ utils_1.getRect(this, '.van-slider').then(function (rect) {
+ var value =
+ ((event.detail.x - rect.left) / rect.width) * _this.getRange() + min;
+ _this.updateValue(value, true);
+ });
+ },
+ updateValue: function (value, end, drag) {
+ value = this.format(value);
+ var min = this.data.min;
+ var width = ((value - min) * 100) / this.getRange() + '%';
+ this.value = value;
+ this.setData({
+ barStyle:
+ '\n width: ' +
+ width +
+ ';\n ' +
+ (drag ? 'transition: none;' : '') +
+ '\n ',
+ });
+ if (drag) {
+ this.$emit('drag', { value: value });
+ }
+ if (end) {
+ this.$emit('change', value);
+ }
+ if ((drag || end) && version_1.canIUseModel()) {
+ this.setData({ value: value });
+ }
+ },
+ getRange: function () {
+ var _a = this.data,
+ max = _a.max,
+ min = _a.min;
+ return max - min;
+ },
+ format: function (value) {
+ var _a = this.data,
+ max = _a.max,
+ min = _a.min,
+ step = _a.step;
+ return Math.round(Math.max(min, Math.min(value, max)) / step) * step;
+ },
+ },
+});
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/node_modules/@vant/weapp/lib/slider/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/node_modules/@vant/weapp/lib/slider/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/node_modules/@vant/weapp/lib/slider/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/node_modules/@vant/weapp/lib/slider/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/node_modules/@vant/weapp/lib/slider/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..6a430f386a5f23350eb66a0ce7eff2e6b3922540
--- /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/node_modules/@vant/weapp/lib/slider/index.wxml"
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
+
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/node_modules/@vant/weapp/lib/slider/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/node_modules/@vant/weapp/lib/slider/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..7c43e6e538d88540791c53a17acdd75de03d6f2d
--- /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/node_modules/@vant/weapp/lib/slider/index.wxs"
@@ -0,0 +1,14 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function barStyle(barHeight, activeColor) {
+ return style({
+ height: addUnit(barHeight),
+ background: activeColor,
+ });
+}
+
+module.exports = {
+ barStyle: barStyle,
+};
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/node_modules/@vant/weapp/lib/slider/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/node_modules/@vant/weapp/lib/slider/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..7886b6065739a504747bc8aa5bab339b83748fb7
--- /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/node_modules/@vant/weapp/lib/slider/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-slider{position:relative;border-radius:999px;border-radius:var(--border-radius-max,999px);background-color:#ebedf0;background-color:var(--slider-inactive-background-color,#ebedf0)}.van-slider:before{position:absolute;right:0;left:0;content:"";top:-8px;top:-var(--padding-xs,8px);bottom:-8px;bottom:-var(--padding-xs,8px)}.van-slider__bar{position:relative;border-radius:inherit;transition:width .2s;transition:width var(--animation-duration-fast,.2s);background-color:#1989fa;background-color:var(--slider-active-background-color,#1989fa)}.van-slider__button{width:24px;height:24px;border-radius:50%;box-shadow:0 1px 2px rgba(0,0,0,.5);background-color:#fff;background-color:var(--slider-button-background-color,#fff)}.van-slider__button-wrapper{position:absolute;top:50%;right:0;-webkit-transform:translate3d(50%,-50%,0);transform:translate3d(50%,-50%,0)}.van-slider--disabled{opacity:.5}
\ 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/node_modules/@vant/weapp/lib/stepper/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/node_modules/@vant/weapp/lib/stepper/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..b8b061d61c432563d0123c36a13f0b65380f8db7
--- /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/node_modules/@vant/weapp/lib/stepper/index.js"
@@ -0,0 +1,218 @@
+'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 validator_1 = require('../common/validator');
+var LONG_PRESS_START_TIME = 600;
+var LONG_PRESS_INTERVAL = 200;
+// add num and avoid float number
+function add(num1, num2) {
+ var cardinal = Math.pow(10, 10);
+ return Math.round((num1 + num2) * cardinal) / cardinal;
+}
+function equal(value1, value2) {
+ return String(value1) === String(value2);
+}
+component_1.VantComponent({
+ field: true,
+ classes: ['input-class', 'plus-class', 'minus-class'],
+ props: {
+ value: {
+ type: null,
+ observer: 'observeValue',
+ },
+ integer: {
+ type: Boolean,
+ observer: 'check',
+ },
+ disabled: Boolean,
+ inputWidth: String,
+ buttonSize: String,
+ asyncChange: Boolean,
+ disableInput: Boolean,
+ decimalLength: {
+ type: Number,
+ value: null,
+ observer: 'check',
+ },
+ min: {
+ type: null,
+ value: 1,
+ observer: 'check',
+ },
+ max: {
+ type: null,
+ value: Number.MAX_SAFE_INTEGER,
+ observer: 'check',
+ },
+ step: {
+ type: null,
+ value: 1,
+ },
+ showPlus: {
+ type: Boolean,
+ value: true,
+ },
+ showMinus: {
+ type: Boolean,
+ value: true,
+ },
+ disablePlus: Boolean,
+ disableMinus: Boolean,
+ longPress: {
+ type: Boolean,
+ value: true,
+ },
+ theme: String,
+ },
+ data: {
+ currentValue: '',
+ },
+ created: function () {
+ this.setData({
+ currentValue: this.format(this.data.value),
+ });
+ },
+ methods: {
+ observeValue: function () {
+ var _a = this.data,
+ value = _a.value,
+ currentValue = _a.currentValue;
+ if (!equal(value, currentValue)) {
+ this.setData({ currentValue: this.format(value) });
+ }
+ },
+ check: function () {
+ var val = this.format(this.data.currentValue);
+ if (!equal(val, this.data.currentValue)) {
+ this.setData({ currentValue: val });
+ }
+ },
+ isDisabled: function (type) {
+ var _a = this.data,
+ disabled = _a.disabled,
+ disablePlus = _a.disablePlus,
+ disableMinus = _a.disableMinus,
+ currentValue = _a.currentValue,
+ max = _a.max,
+ min = _a.min;
+ if (type === 'plus') {
+ return disabled || disablePlus || currentValue >= max;
+ }
+ return disabled || disableMinus || currentValue <= min;
+ },
+ onFocus: function (event) {
+ this.$emit('focus', event.detail);
+ },
+ onBlur: function (event) {
+ var value = this.format(event.detail.value);
+ this.emitChange(value);
+ this.$emit(
+ 'blur',
+ __assign(__assign({}, event.detail), { value: value })
+ );
+ },
+ // filter illegal characters
+ filter: function (value) {
+ value = String(value).replace(/[^0-9.-]/g, '');
+ if (this.data.integer && value.indexOf('.') !== -1) {
+ value = value.split('.')[0];
+ }
+ return value;
+ },
+ // limit value range
+ format: function (value) {
+ value = this.filter(value);
+ // format range
+ value = value === '' ? 0 : +value;
+ value = Math.max(Math.min(this.data.max, value), this.data.min);
+ // format decimal
+ if (validator_1.isDef(this.data.decimalLength)) {
+ value = value.toFixed(this.data.decimalLength);
+ }
+ return value;
+ },
+ onInput: function (event) {
+ var _a = (event.detail || {}).value,
+ value = _a === void 0 ? '' : _a;
+ // allow input to be empty
+ if (value === '') {
+ return;
+ }
+ var formatted = this.filter(value);
+ // limit max decimal length
+ if (
+ validator_1.isDef(this.data.decimalLength) &&
+ formatted.indexOf('.') !== -1
+ ) {
+ var pair = formatted.split('.');
+ formatted = pair[0] + '.' + pair[1].slice(0, this.data.decimalLength);
+ }
+ this.emitChange(formatted);
+ },
+ emitChange: function (value) {
+ if (!this.data.asyncChange) {
+ this.setData({ currentValue: value });
+ }
+ this.$emit('change', value);
+ },
+ onChange: function () {
+ var type = this.type;
+ if (this.isDisabled(type)) {
+ this.$emit('overlimit', type);
+ return;
+ }
+ var diff = type === 'minus' ? -this.data.step : +this.data.step;
+ var value = this.format(add(+this.data.currentValue, diff));
+ this.emitChange(value);
+ this.$emit(type);
+ },
+ longPressStep: function () {
+ var _this = this;
+ this.longPressTimer = setTimeout(function () {
+ _this.onChange();
+ _this.longPressStep();
+ }, LONG_PRESS_INTERVAL);
+ },
+ onTap: function (event) {
+ var type = event.currentTarget.dataset.type;
+ this.type = type;
+ this.onChange();
+ },
+ onTouchStart: function (event) {
+ var _this = this;
+ if (!this.data.longPress) {
+ return;
+ }
+ clearTimeout(this.longPressTimer);
+ var type = event.currentTarget.dataset.type;
+ this.type = type;
+ this.isLongPress = false;
+ this.longPressTimer = setTimeout(function () {
+ _this.isLongPress = true;
+ _this.onChange();
+ _this.longPressStep();
+ }, LONG_PRESS_START_TIME);
+ },
+ onTouchEnd: function () {
+ if (!this.data.longPress) {
+ return;
+ }
+ clearTimeout(this.longPressTimer);
+ },
+ },
+});
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/node_modules/@vant/weapp/lib/stepper/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/node_modules/@vant/weapp/lib/stepper/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/node_modules/@vant/weapp/lib/stepper/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/node_modules/@vant/weapp/lib/stepper/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/node_modules/@vant/weapp/lib/stepper/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..b49140e50894666d06543a87c844fd590de8366b
--- /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/node_modules/@vant/weapp/lib/stepper/index.wxml"
@@ -0,0 +1,42 @@
+
+
+
+
+
+
+
+
+
+
+
+
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/node_modules/@vant/weapp/lib/stepper/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/node_modules/@vant/weapp/lib/stepper/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..a13e818bffddcd11afb49185715c19fa4c07c091
--- /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/node_modules/@vant/weapp/lib/stepper/index.wxs"
@@ -0,0 +1,22 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function buttonStyle(data) {
+ return style({
+ width: addUnit(data.buttonSize),
+ height: addUnit(data.buttonSize),
+ });
+}
+
+function inputStyle(data) {
+ return style({
+ width: addUnit(data.inputWidth),
+ height: addUnit(data.buttonSize),
+ });
+}
+
+module.exports = {
+ buttonStyle: buttonStyle,
+ 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/node_modules/@vant/weapp/lib/stepper/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/node_modules/@vant/weapp/lib/stepper/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..e924a2b9f6625fb45440ca34de55a786b5bfcc21
--- /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/node_modules/@vant/weapp/lib/stepper/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-stepper{font-size:0}.van-stepper__minus,.van-stepper__plus{position:relative;display:inline-block;box-sizing:border-box;margin:1px;vertical-align:middle;border:0;background-color:#f2f3f5;background-color:var(--stepper-background-color,#f2f3f5);color:#323233;color:var(--stepper-button-icon-color,#323233);width:28px;width:var(--stepper-input-height,28px);height:28px;height:var(--stepper-input-height,28px);padding:4px;padding:var(--padding-base,4px)}.van-stepper__minus:before,.van-stepper__plus:before{width:9px;height:1px}.van-stepper__minus:after,.van-stepper__plus:after{width:1px;height:9px}.van-stepper__minus:empty.van-stepper__minus:after,.van-stepper__minus:empty.van-stepper__minus:before,.van-stepper__minus:empty.van-stepper__plus:after,.van-stepper__minus:empty.van-stepper__plus:before,.van-stepper__plus:empty.van-stepper__minus:after,.van-stepper__plus:empty.van-stepper__minus:before,.van-stepper__plus:empty.van-stepper__plus:after,.van-stepper__plus:empty.van-stepper__plus:before{position:absolute;top:0;right:0;bottom:0;left:0;margin:auto;background-color:currentColor;content:""}.van-stepper__minus--hover,.van-stepper__plus--hover{background-color:#e8e8e8;background-color:var(--stepper-active-color,#e8e8e8)}.van-stepper__minus--disabled,.van-stepper__plus--disabled{color:#c8c9cc;color:var(--stepper-button-disabled-icon-color,#c8c9cc)}.van-stepper__minus--disabled,.van-stepper__minus--disabled.van-stepper__minus--hover,.van-stepper__minus--disabled.van-stepper__plus--hover,.van-stepper__plus--disabled,.van-stepper__plus--disabled.van-stepper__minus--hover,.van-stepper__plus--disabled.van-stepper__plus--hover{background-color:#f7f8fa;background-color:var(--stepper-button-disabled-color,#f7f8fa)}.van-stepper__minus{border-radius:4px 0 0 4px;border-radius:var(--stepper-border-radius,4px) 0 0 var(--stepper-border-radius,4px)}.van-stepper__minus:after{display:none}.van-stepper__plus{border-radius:0 4px 4px 0;border-radius:0 var(--stepper-border-radius,4px) var(--stepper-border-radius,4px) 0}.van-stepper--round .van-stepper__input{background-color:initial!important}.van-stepper--round .van-stepper__minus,.van-stepper--round .van-stepper__plus{border-radius:100%}.van-stepper--round .van-stepper__minus:active,.van-stepper--round .van-stepper__plus:active{opacity:.7}.van-stepper--round .van-stepper__minus--disabled,.van-stepper--round .van-stepper__minus--disabled:active,.van-stepper--round .van-stepper__plus--disabled,.van-stepper--round .van-stepper__plus--disabled:active{opacity:.3}.van-stepper--round .van-stepper__plus{color:#fff;background-color:#ee0a24}.van-stepper--round .van-stepper__minus{color:#ee0a24;background-color:#fff;border:1px solid #ee0a24}.van-stepper__input{display:inline-block;box-sizing:border-box;min-height:0;margin:1px;padding:1px;text-align:center;vertical-align:middle;border:0;border-width:1px 0;border-radius:0;-webkit-appearance:none;font-size:14px;font-size:var(--stepper-input-font-size,14px);color:#323233;color:var(--stepper-input-text-color,#323233);background-color:#f2f3f5;background-color:var(--stepper-background-color,#f2f3f5);width:32px;width:var(--stepper-input-width,32px);height:28px;height:var(--stepper-input-height,28px)}.van-stepper__input--disabled{color:#c8c9cc;color:var(--stepper-input-disabled-text-color,#c8c9cc);background-color:#f2f3f5;background-color:var(--stepper-input-disabled-background-color,#f2f3f5)}
\ 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/node_modules/@vant/weapp/lib/steps/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/node_modules/@vant/weapp/lib/steps/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..c41e5adea6603c81d0fc1832ecf32a43b1fe900a
--- /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/node_modules/@vant/weapp/lib/steps/index.js"
@@ -0,0 +1,35 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+var color_1 = require('../common/color');
+component_1.VantComponent({
+ classes: ['desc-class'],
+ props: {
+ icon: String,
+ steps: Array,
+ active: Number,
+ direction: {
+ type: String,
+ value: 'horizontal',
+ },
+ activeColor: {
+ type: String,
+ value: color_1.GREEN,
+ },
+ inactiveColor: {
+ type: String,
+ value: color_1.GRAY_DARK,
+ },
+ activeIcon: {
+ type: String,
+ value: 'checked',
+ },
+ inactiveIcon: String,
+ },
+ methods: {
+ onClick: function (event) {
+ var index = event.currentTarget.dataset.index;
+ this.$emit('click-step', 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/node_modules/@vant/weapp/lib/steps/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/node_modules/@vant/weapp/lib/steps/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/node_modules/@vant/weapp/lib/steps/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/node_modules/@vant/weapp/lib/steps/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/node_modules/@vant/weapp/lib/steps/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..6180b4173e54ca9720c45d8710e798c2b9584531
--- /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/node_modules/@vant/weapp/lib/steps/index.wxml"
@@ -0,0 +1,54 @@
+
+
+
+
+
+
+ {{ item.text }}
+ {{ item.desc }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+function get(index, active) {
+ if (index < active) {
+ return 'finish';
+ } else if (index === active) {
+ return 'process';
+ }
+
+ return 'inactive';
+}
+
+module.exports = get;
+
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/node_modules/@vant/weapp/lib/steps/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/node_modules/@vant/weapp/lib/steps/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..2c50b1abedd7a082e3ce52d2d416a54ca87dc437
--- /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/node_modules/@vant/weapp/lib/steps/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-steps{overflow:hidden;background-color:#fff;background-color:var(--steps-background-color,#fff)}.van-steps--horizontal{padding:10px}.van-steps--horizontal .van-step__wrapper{position:relative;display:-webkit-flex;display:flex;overflow:hidden}.van-steps--vertical{padding-left:10px}.van-steps--vertical .van-step__wrapper{padding:0 0 0 20px}.van-step{position:relative;-webkit-flex:1;flex:1;font-size:14px;font-size:var(--step-font-size,14px);color:#969799;color:var(--step-text-color,#969799)}.van-step--finish{color:#323233;color:var(--step-finish-text-color,#323233)}.van-step__circle{border-radius:50%;width:5px;width:var(--step-circle-size,5px);height:5px;height:var(--step-circle-size,5px);background-color:#969799;background-color:var(--step-circle-color,#969799)}.van-step--horizontal{padding-bottom:14px}.van-step--horizontal:first-child .van-step__title{-webkit-transform:none;transform:none}.van-step--horizontal:first-child .van-step__circle-container{padding:0 8px 0 0;-webkit-transform:translate3d(0,50%,0);transform:translate3d(0,50%,0)}.van-step--horizontal:last-child{position:absolute;right:0;width:auto}.van-step--horizontal:last-child .van-step__title{text-align:right;-webkit-transform:none;transform:none}.van-step--horizontal:last-child .van-step__circle-container{right:0;padding:0 0 0 8px;-webkit-transform:translate3d(0,50%,0);transform:translate3d(0,50%,0)}.van-step--horizontal .van-step__circle-container{position:absolute;bottom:6px;z-index:1;-webkit-transform:translate3d(-50%,50%,0);transform:translate3d(-50%,50%,0);background-color:#fff;background-color:var(--white,#fff);padding:0 8px;padding:0 var(--padding-xs,8px)}.van-step--horizontal .van-step__title{display:inline-block;-webkit-transform:translate3d(-50%,0,0);transform:translate3d(-50%,0,0);font-size:12px;font-size:var(--step-horizontal-title-font-size,12px)}.van-step--horizontal .van-step__line{position:absolute;right:0;bottom:6px;left:0;height:1px;-webkit-transform:translate3d(0,50%,0);transform:translate3d(0,50%,0);background-color:#ebedf0;background-color:var(--step-line-color,#ebedf0)}.van-step--horizontal.van-step--process{color:#323233;color:var(--step-process-text-color,#323233)}.van-step--horizontal.van-step--process .van-step__icon{display:block;line-height:1;font-size:12px;font-size:var(--step-icon-size,12px)}.van-step--vertical{padding:10px 10px 10px 0;line-height:18px}.van-step--vertical:after{border-bottom-width:1px}.van-step--vertical:last-child:after{border-bottom-width:none}.van-step--vertical:first-child:before{position:absolute;top:0;left:-15px;z-index:1;width:1px;height:20px;content:"";background-color:#fff;background-color:var(--white,#fff)}.van-step--vertical .van-step__circle,.van-step--vertical .van-step__icon,.van-step--vertical .van-step__line{position:absolute;top:19px;left:-14px;z-index:2;-webkit-transform:translate3d(-50%,-50%,0);transform:translate3d(-50%,-50%,0)}.van-step--vertical .van-step__icon{line-height:1;font-size:12px;font-size:var(--step-icon-size,12px)}.van-step--vertical .van-step__line{z-index:1;width:1px;height:100%;-webkit-transform:translate3d(-50%,0,0);transform:translate3d(-50%,0,0);background-color:#ebedf0;background-color:var(--step-line-color,#ebedf0)}
\ 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/node_modules/@vant/weapp/lib/sticky/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/node_modules/@vant/weapp/lib/sticky/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..8adcef1f60c103e7484cd189421e3c9f0115f1c5
--- /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/node_modules/@vant/weapp/lib/sticky/index.js"
@@ -0,0 +1,123 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var utils_1 = require('../common/utils');
+var component_1 = require('../common/component');
+var page_scroll_1 = require('../mixins/page-scroll');
+var ROOT_ELEMENT = '.van-sticky';
+component_1.VantComponent({
+ props: {
+ zIndex: {
+ type: Number,
+ value: 99,
+ },
+ offsetTop: {
+ type: Number,
+ value: 0,
+ observer: 'onScroll',
+ },
+ disabled: {
+ type: Boolean,
+ observer: 'onScroll',
+ },
+ container: {
+ type: null,
+ observer: 'onScroll',
+ },
+ scrollTop: {
+ type: null,
+ observer: function (val) {
+ this.onScroll({ scrollTop: val });
+ },
+ },
+ },
+ mixins: [
+ page_scroll_1.pageScrollMixin(function (event) {
+ if (this.data.scrollTop != null) {
+ return;
+ }
+ this.onScroll(event);
+ }),
+ ],
+ data: {
+ height: 0,
+ fixed: false,
+ transform: 0,
+ },
+ mounted: function () {
+ this.onScroll();
+ },
+ methods: {
+ onScroll: function (_a) {
+ var _this = this;
+ var scrollTop = (_a === void 0 ? {} : _a).scrollTop;
+ var _b = this.data,
+ container = _b.container,
+ offsetTop = _b.offsetTop,
+ disabled = _b.disabled;
+ if (disabled) {
+ this.setDataAfterDiff({
+ fixed: false,
+ transform: 0,
+ });
+ return;
+ }
+ this.scrollTop = scrollTop || this.scrollTop;
+ if (typeof container === 'function') {
+ Promise.all([
+ utils_1.getRect(this, ROOT_ELEMENT),
+ this.getContainerRect(),
+ ]).then(function (_a) {
+ var root = _a[0],
+ container = _a[1];
+ if (offsetTop + root.height > container.height + container.top) {
+ _this.setDataAfterDiff({
+ fixed: false,
+ transform: container.height - root.height,
+ });
+ } else if (offsetTop >= root.top) {
+ _this.setDataAfterDiff({
+ fixed: true,
+ height: root.height,
+ transform: 0,
+ });
+ } else {
+ _this.setDataAfterDiff({ fixed: false, transform: 0 });
+ }
+ });
+ return;
+ }
+ utils_1.getRect(this, ROOT_ELEMENT).then(function (root) {
+ if (offsetTop >= root.top) {
+ _this.setDataAfterDiff({ fixed: true, height: root.height });
+ _this.transform = 0;
+ } else {
+ _this.setDataAfterDiff({ fixed: false });
+ }
+ });
+ },
+ setDataAfterDiff: function (data) {
+ var _this = this;
+ wx.nextTick(function () {
+ var diff = Object.keys(data).reduce(function (prev, key) {
+ if (data[key] !== _this.data[key]) {
+ prev[key] = data[key];
+ }
+ return prev;
+ }, {});
+ if (Object.keys(diff).length > 0) {
+ _this.setData(diff);
+ }
+ _this.$emit('scroll', {
+ scrollTop: _this.scrollTop,
+ isFixed: data.fixed || _this.data.fixed,
+ });
+ });
+ },
+ getContainerRect: function () {
+ var nodesRef = this.data.container();
+ return new Promise(function (resolve) {
+ return nodesRef.boundingClientRect(resolve).exec();
+ });
+ },
+ },
+});
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/node_modules/@vant/weapp/lib/sticky/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/node_modules/@vant/weapp/lib/sticky/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/node_modules/@vant/weapp/lib/sticky/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/node_modules/@vant/weapp/lib/sticky/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/node_modules/@vant/weapp/lib/sticky/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..15e9f4a8ae6ebd01ceffa4fc8e6323b0010f7154
--- /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/node_modules/@vant/weapp/lib/sticky/index.wxml"
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
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/node_modules/@vant/weapp/lib/sticky/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/node_modules/@vant/weapp/lib/sticky/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..be99d8931eb610212aa0ee50e053792fede6fb5b
--- /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/node_modules/@vant/weapp/lib/sticky/index.wxs"
@@ -0,0 +1,25 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function wrapStyle(data) {
+ return style({
+ transform: data.transform
+ ? 'translate3d(0, ' + data.transform + 'px, 0)'
+ : '',
+ top: data.fixed ? addUnit(data.offsetTop) : '',
+ 'z-index': data.zIndex,
+ });
+}
+
+function containerStyle(data) {
+ return style({
+ height: data.fixed ? addUnit(data.height) : '',
+ 'z-index': data.zIndex,
+ });
+}
+
+module.exports = {
+ wrapStyle: wrapStyle,
+ containerStyle: containerStyle,
+};
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/node_modules/@vant/weapp/lib/sticky/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/node_modules/@vant/weapp/lib/sticky/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..526938754d16df9f292dcddb7a2ac9f6d0431422
--- /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/node_modules/@vant/weapp/lib/sticky/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-sticky{position:relative}.van-sticky-wrap--fixed{position:fixed;right:0;left: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/node_modules/@vant/weapp/lib/submit-bar/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/node_modules/@vant/weapp/lib/submit-bar/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..2b06332bc436e44bc22b758b75bda81ee189a59e
--- /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/node_modules/@vant/weapp/lib/submit-bar/index.js"
@@ -0,0 +1,61 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+component_1.VantComponent({
+ classes: ['bar-class', 'price-class', 'button-class'],
+ props: {
+ tip: {
+ type: null,
+ observer: 'updateTip',
+ },
+ tipIcon: String,
+ type: Number,
+ price: {
+ type: null,
+ observer: 'updatePrice',
+ },
+ label: String,
+ loading: Boolean,
+ disabled: Boolean,
+ buttonText: String,
+ currency: {
+ type: String,
+ value: '¥',
+ },
+ buttonType: {
+ type: String,
+ value: 'danger',
+ },
+ decimalLength: {
+ type: Number,
+ value: 2,
+ observer: 'updatePrice',
+ },
+ suffixLabel: String,
+ safeAreaInsetBottom: {
+ type: Boolean,
+ value: true,
+ },
+ },
+ methods: {
+ updatePrice: function () {
+ var _a = this.data,
+ price = _a.price,
+ decimalLength = _a.decimalLength;
+ var priceStrArr =
+ typeof price === 'number' &&
+ (price / 100).toFixed(decimalLength).split('.');
+ this.setData({
+ hasPrice: typeof price === 'number',
+ integerStr: priceStrArr && priceStrArr[0],
+ decimalStr: decimalLength && priceStrArr ? '.' + priceStrArr[1] : '',
+ });
+ },
+ updateTip: function () {
+ this.setData({ hasTip: typeof this.data.tip === 'string' });
+ },
+ onSubmit: function (event) {
+ this.$emit('submit', event.detail);
+ },
+ },
+});
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/node_modules/@vant/weapp/lib/submit-bar/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/node_modules/@vant/weapp/lib/submit-bar/index.json"
new file mode 100644
index 0000000000000000000000000000000000000000..bda9b8d338609dd3ae9b10a6dc46a6f649d52b17
--- /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/node_modules/@vant/weapp/lib/submit-bar/index.json"
@@ -0,0 +1,7 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-button": "../button/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/node_modules/@vant/weapp/lib/submit-bar/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/node_modules/@vant/weapp/lib/submit-bar/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..a56dd46ce8c81a4b76275e8f128ae8a108b93ac8
--- /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/node_modules/@vant/weapp/lib/submit-bar/index.wxml"
@@ -0,0 +1,44 @@
+
+
+
+
+
+
+
+
+ {{ tip }}
+
+
+
+
+
+
+
+ {{ label || '合计:' }}
+
+ {{ currency }}
+ {{ integerStr }}{{decimalStr}}
+
+ {{ suffixLabel }}
+
+
+ {{ loading ? '' : buttonText }}
+
+
+
+
+
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/node_modules/@vant/weapp/lib/submit-bar/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/node_modules/@vant/weapp/lib/submit-bar/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..3126e91b80e379505885d841210d2cca263e34ad
--- /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/node_modules/@vant/weapp/lib/submit-bar/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-submit-bar{position:fixed;bottom:0;left:0;width:100%;-webkit-user-select:none;user-select:none;z-index:100;z-index:var(--submit-bar-z-index,100);background-color:#fff;background-color:var(--submit-bar-background-color,#fff)}.van-submit-bar__tip{padding:10px;padding:var(--submit-bar-tip-padding,10px);color:#f56723;color:var(--submit-bar-tip-color,#f56723);font-size:12px;font-size:var(--submit-bar-tip-font-size,12px);line-height:1.5;line-height:var(--submit-bar-tip-line-height,1.5);background-color:#fff7cc;background-color:var(--submit-bar-tip-background-color,#fff7cc)}.van-submit-bar__tip:empty{display:none}.van-submit-bar__tip-icon{width:12px;height:12px;margin-right:4px;vertical-align:middle;font-size:12px;font-size:var(--submit-bar-tip-icon-size,12px);min-width:18px;min-width:calc(var(--submit-bar-tip-icon-size, 12px)*1.5)}.van-submit-bar__tip-text{display:inline;vertical-align:middle}.van-submit-bar__bar{display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;-webkit-justify-content:flex-end;justify-content:flex-end;padding:0 16px;padding:var(--submit-bar-padding,0 16px);height:50px;height:var(--submit-bar-height,50px);font-size:14px;font-size:var(--submit-bar-text-font-size,14px);background-color:#fff;background-color:var(--submit-bar-background-color,#fff)}.van-submit-bar__safe{height:constant(safe-area-inset-bottom);height:env(safe-area-inset-bottom)}.van-submit-bar__text{-webkit-flex:1;flex:1;text-align:right;color:#323233;color:var(--submit-bar-text-color,#323233);padding-right:12px;padding-right:var(--padding-sm,12px)}.van-submit-bar__price,.van-submit-bar__text{font-weight:500;font-weight:var(--font-weight-bold,500)}.van-submit-bar__price{color:#ee0a24;color:var(--submit-bar-price-color,#ee0a24);font-size:12px;font-size:var(--submit-bar-price-font-size,12px)}.van-submit-bar__price-integer{font-size:20px;font-family:Avenir-Heavy,PingFang SC,Helvetica Neue,Arial,sans-serif}.van-submit-bar__currency{font-size:12px;font-size:var(--submit-bar-currency-font-size,12px)}.van-submit-bar__suffix-label{margin-left:5px}.van-submit-bar__button{width:110px;width:var(--submit-bar-button-width,110px);font-weight:500;font-weight:var(--font-weight-bold,500);--button-default-height:40px!important;--button-default-height:var(--submit-bar-button-height,40px)!important;--button-line-height:40px!important;--button-line-height:var(--submit-bar-button-height,40px)!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/node_modules/@vant/weapp/lib/swipe-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/node_modules/@vant/weapp/lib/swipe-cell/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..bf6648affca3f421ed9181f8473308064e33b640
--- /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/node_modules/@vant/weapp/lib/swipe-cell/index.js"
@@ -0,0 +1,162 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+var touch_1 = require('../mixins/touch');
+var utils_1 = require('../common/utils');
+var THRESHOLD = 0.3;
+var ARRAY = [];
+component_1.VantComponent({
+ props: {
+ disabled: Boolean,
+ leftWidth: {
+ type: Number,
+ value: 0,
+ observer: function (leftWidth) {
+ if (leftWidth === void 0) {
+ leftWidth = 0;
+ }
+ if (this.offset > 0) {
+ this.swipeMove(leftWidth);
+ }
+ },
+ },
+ rightWidth: {
+ type: Number,
+ value: 0,
+ observer: function (rightWidth) {
+ if (rightWidth === void 0) {
+ rightWidth = 0;
+ }
+ if (this.offset < 0) {
+ this.swipeMove(-rightWidth);
+ }
+ },
+ },
+ asyncClose: Boolean,
+ name: {
+ type: null,
+ value: '',
+ },
+ },
+ mixins: [touch_1.touch],
+ data: {
+ catchMove: false,
+ wrapperStyle: '',
+ },
+ created: function () {
+ this.offset = 0;
+ ARRAY.push(this);
+ },
+ destroyed: function () {
+ var _this = this;
+ ARRAY = ARRAY.filter(function (item) {
+ return item !== _this;
+ });
+ },
+ methods: {
+ open: function (position) {
+ var _a = this.data,
+ leftWidth = _a.leftWidth,
+ rightWidth = _a.rightWidth;
+ var offset = position === 'left' ? leftWidth : -rightWidth;
+ this.swipeMove(offset);
+ this.$emit('open', {
+ position: position,
+ name: this.data.name,
+ });
+ },
+ close: function () {
+ this.swipeMove(0);
+ },
+ swipeMove: function (offset) {
+ if (offset === void 0) {
+ offset = 0;
+ }
+ this.offset = utils_1.range(
+ offset,
+ -this.data.rightWidth,
+ this.data.leftWidth
+ );
+ var transform = 'translate3d(' + this.offset + 'px, 0, 0)';
+ var transition = this.dragging
+ ? 'none'
+ : 'transform .6s cubic-bezier(0.18, 0.89, 0.32, 1)';
+ this.setData({
+ wrapperStyle:
+ '\n -webkit-transform: ' +
+ transform +
+ ';\n -webkit-transition: ' +
+ transition +
+ ';\n transform: ' +
+ transform +
+ ';\n transition: ' +
+ transition +
+ ';\n ',
+ });
+ },
+ swipeLeaveTransition: function () {
+ var _a = this.data,
+ leftWidth = _a.leftWidth,
+ rightWidth = _a.rightWidth;
+ var offset = this.offset;
+ if (rightWidth > 0 && -offset > rightWidth * THRESHOLD) {
+ this.open('right');
+ } else if (leftWidth > 0 && offset > leftWidth * THRESHOLD) {
+ this.open('left');
+ } else {
+ this.swipeMove(0);
+ }
+ this.setData({ catchMove: false });
+ },
+ startDrag: function (event) {
+ if (this.data.disabled) {
+ return;
+ }
+ this.startOffset = this.offset;
+ this.touchStart(event);
+ },
+ noop: function () {},
+ onDrag: function (event) {
+ var _this = this;
+ if (this.data.disabled) {
+ return;
+ }
+ this.touchMove(event);
+ if (this.direction !== 'horizontal') {
+ return;
+ }
+ this.dragging = true;
+ ARRAY.filter(function (item) {
+ return item !== _this && item.offset !== 0;
+ }).forEach(function (item) {
+ return item.close();
+ });
+ this.setData({ catchMove: true });
+ this.swipeMove(this.startOffset + this.deltaX);
+ },
+ endDrag: function () {
+ if (this.data.disabled) {
+ return;
+ }
+ this.dragging = false;
+ this.swipeLeaveTransition();
+ },
+ onClick: function (event) {
+ var _a = event.currentTarget.dataset.key,
+ position = _a === void 0 ? 'outside' : _a;
+ this.$emit('click', position);
+ if (!this.offset) {
+ return;
+ }
+ if (this.data.asyncClose) {
+ this.$emit('close', {
+ position: position,
+ instance: this,
+ name: this.data.name,
+ });
+ } else {
+ this.swipeMove(0);
+ }
+ },
+ },
+});
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/node_modules/@vant/weapp/lib/swipe-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/node_modules/@vant/weapp/lib/swipe-cell/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/node_modules/@vant/weapp/lib/swipe-cell/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/node_modules/@vant/weapp/lib/swipe-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/node_modules/@vant/weapp/lib/swipe-cell/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..3f7f7260895d329b8b21a85239a95e084d7ae125
--- /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/node_modules/@vant/weapp/lib/swipe-cell/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/node_modules/@vant/weapp/lib/swipe-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/node_modules/@vant/weapp/lib/swipe-cell/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..d6152709db7ca52744270fff39cfdf819af51847
--- /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/node_modules/@vant/weapp/lib/swipe-cell/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-swipe-cell{position:relative;overflow:hidden}.van-swipe-cell__left,.van-swipe-cell__right{position:absolute;top:0;height:100%}.van-swipe-cell__left{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.van-swipe-cell__right{right:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,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/node_modules/@vant/weapp/lib/switch/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/node_modules/@vant/weapp/lib/switch/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..8c98e99d03325e0d4e3225229a4e4b56e96f7abb
--- /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/node_modules/@vant/weapp/lib/switch/index.js"
@@ -0,0 +1,42 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+component_1.VantComponent({
+ field: true,
+ classes: ['node-class'],
+ props: {
+ checked: null,
+ loading: Boolean,
+ disabled: Boolean,
+ activeColor: String,
+ inactiveColor: String,
+ size: {
+ type: String,
+ value: '30',
+ },
+ activeValue: {
+ type: null,
+ value: true,
+ },
+ inactiveValue: {
+ type: null,
+ value: false,
+ },
+ },
+ methods: {
+ onClick: function () {
+ var _a = this.data,
+ activeValue = _a.activeValue,
+ inactiveValue = _a.inactiveValue,
+ disabled = _a.disabled,
+ loading = _a.loading;
+ if (disabled || loading) {
+ return;
+ }
+ var checked = this.data.checked === activeValue;
+ var value = checked ? inactiveValue : activeValue;
+ this.$emit('input', value);
+ this.$emit('change', 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/node_modules/@vant/weapp/lib/switch/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/node_modules/@vant/weapp/lib/switch/index.json"
new file mode 100644
index 0000000000000000000000000000000000000000..01077f5dafe4ea3780999933518963b8b6551d8d
--- /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/node_modules/@vant/weapp/lib/switch/index.json"
@@ -0,0 +1,6 @@
+{
+ "component": true,
+ "usingComponents": {
+ "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/node_modules/@vant/weapp/lib/switch/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/node_modules/@vant/weapp/lib/switch/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..d45829bde48f9bc164249e1a47ec2ee6bdd1634b
--- /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/node_modules/@vant/weapp/lib/switch/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/node_modules/@vant/weapp/lib/switch/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/node_modules/@vant/weapp/lib/switch/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..1fb6530c54b8877603a7f1136f2b0035c56f3a42
--- /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/node_modules/@vant/weapp/lib/switch/index.wxs"
@@ -0,0 +1,26 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function rootStyle(data) {
+ var currentColor = data.checked ? data.activeColor : data.inactiveColor;
+
+ return style({
+ 'font-size': addUnit(data.size),
+ 'background-color': currentColor,
+ });
+}
+
+var BLUE = '#1989fa';
+var GRAY_DARK = '#969799';
+
+function loadingColor(data) {
+ return data.checked
+ ? data.activeColor || BLUE
+ : data.inactiveColor || GRAY_DARK;
+}
+
+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/node_modules/@vant/weapp/lib/switch/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/node_modules/@vant/weapp/lib/switch/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..e32a72ad3e9b6d1e6b7d7a4052afc7f7978f9e31
--- /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/node_modules/@vant/weapp/lib/switch/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-switch{position:relative;display:inline-block;box-sizing:initial;width:2em;width:var(--switch-width,2em);height:1em;height:var(--switch-height,1em);background-color:#fff;background-color:var(--switch-background-color,#fff);border:1px solid rgba(0,0,0,.1);border:var(--switch-border,1px solid rgba(0,0,0,.1));border-radius:1em;border-radius:var(--switch-node-size,1em);transition:background-color .3s;transition:background-color var(--switch-transition-duration,.3s)}.van-switch__node{position:absolute;top:0;left:0;border-radius:100%;z-index:1;z-index:var(--switch-node-z-index,1);width:1em;width:var(--switch-node-size,1em);height:1em;height:var(--switch-node-size,1em);background-color:#fff;background-color:var(--switch-node-background-color,#fff);box-shadow:0 3px 1px 0 rgba(0,0,0,.05),0 2px 2px 0 rgba(0,0,0,.1),0 3px 3px 0 rgba(0,0,0,.05);box-shadow:var(--switch-node-box-shadow,0 3px 1px 0 rgba(0,0,0,.05),0 2px 2px 0 rgba(0,0,0,.1),0 3px 3px 0 rgba(0,0,0,.05));transition:-webkit-transform .3s cubic-bezier(.3,1.05,.4,1.05);transition:transform .3s cubic-bezier(.3,1.05,.4,1.05);transition:transform .3s cubic-bezier(.3,1.05,.4,1.05),-webkit-transform .3s cubic-bezier(.3,1.05,.4,1.05);transition:-webkit-transform var(--switch-transition-duration,.3s) cubic-bezier(.3,1.05,.4,1.05);transition:transform var(--switch-transition-duration,.3s) cubic-bezier(.3,1.05,.4,1.05);transition:transform var(--switch-transition-duration,.3s) cubic-bezier(.3,1.05,.4,1.05),-webkit-transform var(--switch-transition-duration,.3s) cubic-bezier(.3,1.05,.4,1.05)}.van-switch__loading{position:absolute!important;top:25%;left:25%;width:50%;height:50%}.van-switch--on{background-color:#1989fa;background-color:var(--switch-on-background-color,#1989fa)}.van-switch--on .van-switch__node{-webkit-transform:translateX(1em);transform:translateX(1em);-webkit-transform:translateX(calc(var(--switch-width, 2em) - var(--switch-node-size, 1em)));transform:translateX(calc(var(--switch-width, 2em) - var(--switch-node-size, 1em)))}.van-switch--disabled{opacity:.4;opacity:var(--switch-disabled-opacity,.4)}
\ 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/node_modules/@vant/weapp/lib/tab/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/node_modules/@vant/weapp/lib/tab/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..f8b22c349722c462c4c4f28a642f3a3a92710278
--- /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/node_modules/@vant/weapp/lib/tab/index.js"
@@ -0,0 +1,58 @@
+'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('tabs'),
+ props: {
+ dot: {
+ type: Boolean,
+ observer: 'update',
+ },
+ info: {
+ type: null,
+ observer: 'update',
+ },
+ title: {
+ type: String,
+ observer: 'update',
+ },
+ disabled: {
+ type: Boolean,
+ observer: 'update',
+ },
+ titleStyle: {
+ type: String,
+ observer: 'update',
+ },
+ name: {
+ type: null,
+ value: '',
+ },
+ },
+ data: {
+ active: false,
+ },
+ methods: {
+ getComputedName: function () {
+ if (this.data.name !== '') {
+ return this.data.name;
+ }
+ return this.index;
+ },
+ updateRender: function (active, parent) {
+ var parentData = parent.data;
+ this.inited = this.inited || active;
+ this.setData({
+ active: active,
+ shouldRender: this.inited || !parentData.lazyRender,
+ shouldShow: active || parentData.animated,
+ });
+ },
+ update: function () {
+ if (this.parent) {
+ this.parent.updateTabs();
+ }
+ },
+ },
+});
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/node_modules/@vant/weapp/lib/tab/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/node_modules/@vant/weapp/lib/tab/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/node_modules/@vant/weapp/lib/tab/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/node_modules/@vant/weapp/lib/tab/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/node_modules/@vant/weapp/lib/tab/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..f5e99f2145b12c53b3c91150d9bb742ece67d0d9
--- /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/node_modules/@vant/weapp/lib/tab/index.wxml"
@@ -0,0 +1,8 @@
+
+
+
+
+
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/node_modules/@vant/weapp/lib/tab/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/node_modules/@vant/weapp/lib/tab/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..76ddf068482c2ffdd462e37aa0659a7975e813b5
--- /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/node_modules/@vant/weapp/lib/tab/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';:host{-webkit-flex-shrink:0;flex-shrink:0;width:100%}.van-tab__pane,:host{box-sizing:border-box}.van-tab__pane{overflow-y:auto;-webkit-overflow-scrolling:touch}.van-tab__pane--active{height:auto}.van-tab__pane--inactive{height:0;overflow:visible}
\ 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/node_modules/@vant/weapp/lib/tabbar-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/node_modules/@vant/weapp/lib/tabbar-item/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..32dcfd6ca37868dbb479012270173479d760dc65
--- /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/node_modules/@vant/weapp/lib/tabbar-item/index.js"
@@ -0,0 +1,58 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+var relation_1 = require('../common/relation');
+component_1.VantComponent({
+ props: {
+ info: null,
+ name: null,
+ icon: String,
+ dot: Boolean,
+ iconPrefix: {
+ type: String,
+ value: 'van-icon',
+ },
+ },
+ relation: relation_1.useParent('tabbar'),
+ data: {
+ active: false,
+ activeColor: '',
+ inactiveColor: '',
+ },
+ methods: {
+ onClick: function () {
+ var parent = this.parent;
+ if (parent) {
+ var index = parent.children.indexOf(this);
+ var active = this.data.name || index;
+ if (active !== this.data.active) {
+ parent.$emit('change', active);
+ }
+ }
+ this.$emit('click');
+ },
+ updateFromParent: function () {
+ var parent = this.parent;
+ if (!parent) {
+ return;
+ }
+ var index = parent.children.indexOf(this);
+ var parentData = parent.data;
+ var data = this.data;
+ var active = (data.name || index) === parentData.active;
+ var patch = {};
+ if (active !== data.active) {
+ patch.active = active;
+ }
+ if (parentData.activeColor !== data.activeColor) {
+ patch.activeColor = parentData.activeColor;
+ }
+ if (parentData.inactiveColor !== data.inactiveColor) {
+ patch.inactiveColor = parentData.inactiveColor;
+ }
+ if (Object.keys(patch).length > 0) {
+ this.setData(patch);
+ }
+ },
+ },
+});
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/node_modules/@vant/weapp/lib/tabbar-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/node_modules/@vant/weapp/lib/tabbar-item/index.json"
new file mode 100644
index 0000000000000000000000000000000000000000..16f174c55fee5e53021a59136c62bc968295a379
--- /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/node_modules/@vant/weapp/lib/tabbar-item/index.json"
@@ -0,0 +1,7 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-icon": "../icon/index",
+ "van-info": "../info/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/node_modules/@vant/weapp/lib/tabbar-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/node_modules/@vant/weapp/lib/tabbar-item/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..524728f34a4f907e1726abc059d760c1d178da95
--- /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/node_modules/@vant/weapp/lib/tabbar-item/index.wxml"
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
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/node_modules/@vant/weapp/lib/tabbar-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/node_modules/@vant/weapp/lib/tabbar-item/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..ff33bd21a10a5488026201585ee8b9add1e7bca8
--- /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/node_modules/@vant/weapp/lib/tabbar-item/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';:host{-webkit-flex:1;flex:1}.van-tabbar-item{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;height:100%;color:#646566;color:var(--tabbar-item-text-color,#646566);font-size:12px;font-size:var(--tabbar-item-font-size,12px);line-height:1;line-height:var(--tabbar-item-line-height,1)}.van-tabbar-item__icon{position:relative;margin-bottom:4px;margin-bottom:var(--tabbar-item-margin-bottom,4px);font-size:22px;font-size:var(--tabbar-item-icon-size,22px)}.van-tabbar-item__icon__inner{display:block;min-width:1em}.van-tabbar-item--active{color:#1989fa;color:var(--tabbar-item-active-color,#1989fa)}.van-tabbar-item__info{margin-top:2px}
\ 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/node_modules/@vant/weapp/lib/tabbar/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/node_modules/@vant/weapp/lib/tabbar/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..0ed7cd8883800ebd9756ef0e579f4ec9190693e2
--- /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/node_modules/@vant/weapp/lib/tabbar/index.js"
@@ -0,0 +1,70 @@
+'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');
+component_1.VantComponent({
+ relation: relation_1.useChildren('tabbar-item', function () {
+ this.updateChildren();
+ }),
+ props: {
+ active: {
+ type: null,
+ observer: 'updateChildren',
+ },
+ activeColor: {
+ type: String,
+ observer: 'updateChildren',
+ },
+ inactiveColor: {
+ type: String,
+ observer: 'updateChildren',
+ },
+ fixed: {
+ type: Boolean,
+ value: true,
+ observer: 'setHeight',
+ },
+ placeholder: {
+ type: Boolean,
+ observer: 'setHeight',
+ },
+ border: {
+ type: Boolean,
+ value: true,
+ },
+ zIndex: {
+ type: Number,
+ value: 1,
+ },
+ safeAreaInsetBottom: {
+ type: Boolean,
+ value: true,
+ },
+ },
+ data: {
+ height: 50,
+ },
+ methods: {
+ updateChildren: function () {
+ var children = this.children;
+ if (!Array.isArray(children) || !children.length) {
+ return;
+ }
+ children.forEach(function (child) {
+ return child.updateFromParent();
+ });
+ },
+ setHeight: function () {
+ var _this = this;
+ if (!this.data.fixed || !this.data.placeholder) {
+ return;
+ }
+ wx.nextTick(function () {
+ utils_1.getRect(_this, '.van-tabbar').then(function (res) {
+ _this.setData({ height: res.height });
+ });
+ });
+ },
+ },
+});
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/node_modules/@vant/weapp/lib/tabbar/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/node_modules/@vant/weapp/lib/tabbar/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/node_modules/@vant/weapp/lib/tabbar/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/node_modules/@vant/weapp/lib/tabbar/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/node_modules/@vant/weapp/lib/tabbar/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..43bb11111d4cf459dcab0beee536960c863608f2
--- /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/node_modules/@vant/weapp/lib/tabbar/index.wxml"
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
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/node_modules/@vant/weapp/lib/tabbar/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/node_modules/@vant/weapp/lib/tabbar/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..68195697d69acc624250793feb0e0d101cae7b72
--- /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/node_modules/@vant/weapp/lib/tabbar/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-tabbar{display:-webkit-flex;display:flex;box-sizing:initial;width:100%;height:50px;height:var(--tabbar-height,50px);background-color:#fff;background-color:var(--tabbar-background-color,#fff)}.van-tabbar--fixed{position:fixed;bottom:0;left:0}.van-tabbar--safe{padding-bottom:env(safe-area-inset-bottom)}
\ 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/node_modules/@vant/weapp/lib/tabs/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/node_modules/@vant/weapp/lib/tabs/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..18bea14ab23d6a06b5296e07874f9c16793bf364
--- /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/node_modules/@vant/weapp/lib/tabs/index.js"
@@ -0,0 +1,305 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+var touch_1 = require('../mixins/touch');
+var utils_1 = require('../common/utils');
+var validator_1 = require('../common/validator');
+var relation_1 = require('../common/relation');
+component_1.VantComponent({
+ mixins: [touch_1.touch],
+ classes: ['nav-class', 'tab-class', 'tab-active-class', 'line-class'],
+ relation: relation_1.useChildren('tab', function () {
+ this.updateTabs();
+ }),
+ props: {
+ sticky: Boolean,
+ border: Boolean,
+ swipeable: Boolean,
+ titleActiveColor: String,
+ titleInactiveColor: String,
+ color: String,
+ animated: {
+ type: Boolean,
+ observer: function () {
+ var _this = this;
+ this.children.forEach(function (child, index) {
+ return child.updateRender(index === _this.data.currentIndex, _this);
+ });
+ },
+ },
+ lineWidth: {
+ type: null,
+ value: 40,
+ observer: 'resize',
+ },
+ lineHeight: {
+ type: null,
+ value: -1,
+ },
+ active: {
+ type: null,
+ value: 0,
+ observer: function (name) {
+ if (name !== this.getCurrentName()) {
+ this.setCurrentIndexByName(name);
+ }
+ },
+ },
+ type: {
+ type: String,
+ value: 'line',
+ },
+ ellipsis: {
+ type: Boolean,
+ value: true,
+ },
+ duration: {
+ type: Number,
+ value: 0.3,
+ },
+ zIndex: {
+ type: Number,
+ value: 1,
+ },
+ swipeThreshold: {
+ type: Number,
+ value: 5,
+ observer: function (value) {
+ this.setData({
+ scrollable: this.children.length > value || !this.data.ellipsis,
+ });
+ },
+ },
+ offsetTop: {
+ type: Number,
+ value: 0,
+ },
+ lazyRender: {
+ type: Boolean,
+ value: true,
+ },
+ },
+ data: {
+ tabs: [],
+ scrollLeft: 0,
+ scrollable: false,
+ currentIndex: 0,
+ container: null,
+ skipTransition: true,
+ lineOffsetLeft: 0,
+ },
+ mounted: function () {
+ var _this = this;
+ utils_1.requestAnimationFrame(function () {
+ _this.setData({
+ container: function () {
+ return _this.createSelectorQuery().select('.van-tabs');
+ },
+ });
+ _this.resize(true);
+ _this.scrollIntoView();
+ });
+ },
+ methods: {
+ updateTabs: function () {
+ var _a = this,
+ _b = _a.children,
+ children = _b === void 0 ? [] : _b,
+ data = _a.data;
+ this.setData({
+ tabs: children.map(function (child) {
+ return child.data;
+ }),
+ scrollable:
+ this.children.length > data.swipeThreshold || !data.ellipsis,
+ });
+ this.setCurrentIndexByName(data.active || this.getCurrentName());
+ },
+ trigger: function (eventName, child) {
+ var currentIndex = this.data.currentIndex;
+ var currentChild = child || this.children[currentIndex];
+ if (!validator_1.isDef(currentChild)) {
+ return;
+ }
+ this.$emit(eventName, {
+ index: currentChild.index,
+ name: currentChild.getComputedName(),
+ title: currentChild.data.title,
+ });
+ },
+ onTap: function (event) {
+ var _this = this;
+ var index = event.currentTarget.dataset.index;
+ var child = this.children[index];
+ if (child.data.disabled) {
+ this.trigger('disabled', child);
+ } else {
+ this.setCurrentIndex(index);
+ utils_1.nextTick(function () {
+ _this.trigger('click');
+ });
+ }
+ },
+ // correct the index of active tab
+ setCurrentIndexByName: function (name) {
+ var _a = this.children,
+ children = _a === void 0 ? [] : _a;
+ var matched = children.filter(function (child) {
+ return child.getComputedName() === name;
+ });
+ if (matched.length) {
+ this.setCurrentIndex(matched[0].index);
+ }
+ },
+ setCurrentIndex: function (currentIndex) {
+ var _this = this;
+ var _a = this,
+ data = _a.data,
+ _b = _a.children,
+ children = _b === void 0 ? [] : _b;
+ if (
+ !validator_1.isDef(currentIndex) ||
+ currentIndex >= children.length ||
+ currentIndex < 0
+ ) {
+ return;
+ }
+ utils_1.groupSetData(this, function () {
+ children.forEach(function (item, index) {
+ var active = index === currentIndex;
+ if (active !== item.data.active || !item.inited) {
+ item.updateRender(active, _this);
+ }
+ });
+ });
+ if (currentIndex === data.currentIndex) {
+ return;
+ }
+ var shouldEmitChange = data.currentIndex !== null;
+ this.setData({ currentIndex: currentIndex });
+ utils_1.nextTick(function () {
+ _this.resize();
+ _this.scrollIntoView();
+ _this.trigger('input');
+ if (shouldEmitChange) {
+ _this.trigger('change');
+ }
+ });
+ },
+ getCurrentName: function () {
+ var activeTab = this.children[this.data.currentIndex];
+ if (activeTab) {
+ return activeTab.getComputedName();
+ }
+ },
+ resize: function (skipTransition) {
+ var _this = this;
+ if (skipTransition === void 0) {
+ skipTransition = false;
+ }
+ if (this.data.type !== 'line') {
+ return;
+ }
+ var _a = this.data,
+ currentIndex = _a.currentIndex,
+ ellipsis = _a.ellipsis;
+ Promise.all([
+ utils_1.getAllRect(this, '.van-tab'),
+ utils_1.getRect(this, '.van-tabs__line'),
+ ]).then(function (_a) {
+ var _b = _a[0],
+ rects = _b === void 0 ? [] : _b,
+ lineRect = _a[1];
+ var rect = rects[currentIndex];
+ if (rect == null) {
+ return;
+ }
+ var lineOffsetLeft = rects
+ .slice(0, currentIndex)
+ .reduce(function (prev, curr) {
+ return prev + curr.width;
+ }, 0);
+ lineOffsetLeft +=
+ (rect.width - lineRect.width) / 2 + (ellipsis ? 0 : 8);
+ _this.setData({
+ lineOffsetLeft: lineOffsetLeft,
+ skipTransition: skipTransition,
+ });
+ });
+ },
+ // scroll active tab into view
+ scrollIntoView: function () {
+ var _this = this;
+ var _a = this.data,
+ currentIndex = _a.currentIndex,
+ scrollable = _a.scrollable;
+ if (!scrollable) {
+ return;
+ }
+ Promise.all([
+ utils_1.getAllRect(this, '.van-tab'),
+ utils_1.getRect(this, '.van-tabs__nav'),
+ ]).then(function (_a) {
+ var tabRects = _a[0],
+ navRect = _a[1];
+ var tabRect = tabRects[currentIndex];
+ var offsetLeft = tabRects
+ .slice(0, currentIndex)
+ .reduce(function (prev, curr) {
+ return prev + curr.width;
+ }, 0);
+ _this.setData({
+ scrollLeft: offsetLeft - (navRect.width - tabRect.width) / 2,
+ });
+ });
+ },
+ onTouchScroll: function (event) {
+ this.$emit('scroll', event.detail);
+ },
+ onTouchStart: function (event) {
+ if (!this.data.swipeable) return;
+ this.touchStart(event);
+ },
+ onTouchMove: function (event) {
+ if (!this.data.swipeable) return;
+ this.touchMove(event);
+ },
+ // watch swipe touch end
+ onTouchEnd: function () {
+ if (!this.data.swipeable) return;
+ var _a = this,
+ direction = _a.direction,
+ deltaX = _a.deltaX,
+ offsetX = _a.offsetX;
+ var minSwipeDistance = 50;
+ if (direction === 'horizontal' && offsetX >= minSwipeDistance) {
+ var index = this.getAvaiableTab(deltaX);
+ if (index !== -1) {
+ this.setCurrentIndex(index);
+ }
+ }
+ },
+ getAvaiableTab: function (direction) {
+ var _a = this.data,
+ tabs = _a.tabs,
+ currentIndex = _a.currentIndex;
+ var step = direction > 0 ? -1 : 1;
+ for (
+ var i = step;
+ currentIndex + i < tabs.length && currentIndex + i >= 0;
+ i += step
+ ) {
+ var index = currentIndex + i;
+ if (
+ index >= 0 &&
+ index < tabs.length &&
+ tabs[index] &&
+ !tabs[index].disabled
+ ) {
+ return index;
+ }
+ }
+ return -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/node_modules/@vant/weapp/lib/tabs/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/node_modules/@vant/weapp/lib/tabs/index.json"
new file mode 100644
index 0000000000000000000000000000000000000000..19c0bc3a0830569890b895d1da038f64f981879c
--- /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/node_modules/@vant/weapp/lib/tabs/index.json"
@@ -0,0 +1,7 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-info": "../info/index",
+ "van-sticky": "../sticky/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/node_modules/@vant/weapp/lib/tabs/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/node_modules/@vant/weapp/lib/tabs/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..0dc346b2ee87bdb48957248d1b6306545acc182a
--- /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/node_modules/@vant/weapp/lib/tabs/index.wxml"
@@ -0,0 +1,63 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ item.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/node_modules/@vant/weapp/lib/tabs/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/node_modules/@vant/weapp/lib/tabs/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..a027c7b9c35d21d2e7420a9562bac7caf3acdf75
--- /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/node_modules/@vant/weapp/lib/tabs/index.wxs"
@@ -0,0 +1,82 @@
+/* eslint-disable */
+var utils = require('../wxs/utils.wxs');
+var style = require('../wxs/style.wxs');
+
+function tabClass(active, ellipsis) {
+ var classes = ['tab-class'];
+
+ if (active) {
+ classes.push('tab-active-class');
+ }
+
+ if (ellipsis) {
+ classes.push('van-ellipsis');
+ }
+
+ return classes.join(' ');
+}
+
+function tabStyle(data) {
+ var titleColor = data.active
+ ? data.titleActiveColor
+ : data.titleInactiveColor;
+
+ var ellipsis = data.scrollable && data.ellipsis;
+
+ // card theme color
+ if (data.type === 'card') {
+ return style({
+ 'border-color': data.color,
+ 'background-color': !data.disabled && data.active ? data.color : null,
+ color: titleColor || (!data.disabled && !data.active ? data.color : null),
+ 'flex-basis': ellipsis ? 88 / data.swipeThreshold + '%' : null,
+ });
+ }
+
+ return style({
+ color: titleColor,
+ 'flex-basis': ellipsis ? 88 / data.swipeThreshold + '%' : null,
+ });
+}
+
+function navStyle(color, type) {
+ return style({
+ 'border-color': type === 'card' && color ? color : null,
+ });
+}
+
+function trackStyle(data) {
+ if (!data.animated) {
+ return '';
+ }
+
+ return style({
+ left: -100 * data.currentIndex + '%',
+ 'transition-duration': data.duration + 's',
+ '-webkit-transition-duration': data.duration + 's',
+ });
+}
+
+function lineStyle(data) {
+ return style({
+ width: utils.addUnit(data.lineWidth),
+ transform: 'translateX(' + data.lineOffsetLeft + 'px)',
+ '-webkit-transform': 'translateX(' + data.lineOffsetLeft + 'px)',
+ 'background-color': data.color,
+ height: data.lineHeight !== -1 ? utils.addUnit(data.lineHeight) : null,
+ 'border-radius':
+ data.lineHeight !== -1 ? utils.addUnit(data.lineHeight) : null,
+ 'transition-duration': !data.skipTransition ? data.duration + 's' : null,
+ '-webkit-transition-duration': !data.skipTransition
+ ? data.duration + 's'
+ : null,
+ });
+}
+
+module.exports = {
+ tabClass: tabClass,
+ tabStyle: tabStyle,
+ trackStyle: trackStyle,
+ lineStyle: lineStyle,
+ navStyle: navStyle,
+};
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/node_modules/@vant/weapp/lib/tabs/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/node_modules/@vant/weapp/lib/tabs/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..d0449e6acbc579020082288cd3a6790e46f3d9a3
--- /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/node_modules/@vant/weapp/lib/tabs/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-tabs{position:relative;-webkit-tap-highlight-color:transparent}.van-tabs__wrap{display:-webkit-flex;display:flex;overflow:hidden}.van-tabs__wrap--scrollable .van-tab{-webkit-flex:0 0 22%;flex:0 0 22%}.van-tabs__wrap--scrollable .van-tab--complete{-webkit-flex:1 0 auto!important;flex:1 0 auto!important;padding:0 12px}.van-tabs__wrap--scrollable .van-tabs__nav--complete{padding-right:8px;padding-left:8px}.van-tabs__scroll{background-color:#fff;background-color:var(--tabs-nav-background-color,#fff)}.van-tabs__scroll--line{box-sizing:initial;height:calc(100% + 15px)}.van-tabs__scroll--card{margin:0 16px;margin:0 var(--padding-md,16px)}.van-tabs__scroll::-webkit-scrollbar{display:none}.van-tabs__nav{position:relative;display:-webkit-flex;display:flex;-webkit-user-select:none;user-select:none}.van-tabs__nav--card{box-sizing:border-box;height:30px;height:var(--tabs-card-height,30px);border:1px solid #ee0a24;border:var(--border-width-base,1px) solid var(--tabs-default-color,#ee0a24);border-radius:2px;border-radius:var(--border-radius-sm,2px)}.van-tabs__nav--card .van-tab{color:#ee0a24;color:var(--tabs-default-color,#ee0a24);line-height:28px;line-height:calc(var(--tabs-card-height, 30px) - var(--border-width-base, 1px)*2);border-right:1px solid #ee0a24;border-right:var(--border-width-base,1px) solid var(--tabs-default-color,#ee0a24)}.van-tabs__nav--card .van-tab:last-child{border-right:none}.van-tabs__nav--card .van-tab.van-tab--active{color:#fff;color:var(--white,#fff);background-color:#ee0a24;background-color:var(--tabs-default-color,#ee0a24)}.van-tabs__nav--card .van-tab--disabled{color:#c8c9cc;color:var(--tab-disabled-text-color,#c8c9cc)}.van-tabs__line{position:absolute;bottom:0;left:0;z-index:1;height:3px;height:var(--tabs-bottom-bar-height,3px);border-radius:3px;border-radius:var(--tabs-bottom-bar-height,3px);background-color:#ee0a24;background-color:var(--tabs-bottom-bar-color,#ee0a24)}.van-tabs__track{position:relative;width:100%;height:100%}.van-tabs__track--animated{display:-webkit-flex;display:flex;transition-property:left}.van-tabs__content{overflow:hidden}.van-tabs--line .van-tabs__wrap{height:44px;height:var(--tabs-line-height,44px)}.van-tabs--card .van-tabs__wrap{height:30px;height:var(--tabs-card-height,30px)}.van-tab{position:relative;-webkit-flex:1;flex:1;box-sizing:border-box;min-width:0;padding:0 5px;text-align:center;cursor:pointer;color:#646566;color:var(--tab-text-color,#646566);font-size:14px;font-size:var(--tab-font-size,14px);line-height:44px;line-height:var(--tabs-line-height,44px)}.van-tab--active{font-weight:500;font-weight:var(--font-weight-bold,500);color:#323233;color:var(--tab-active-text-color,#323233)}.van-tab--disabled{color:#c8c9cc;color:var(--tab-disabled-text-color,#c8c9cc)}.van-tab__title__info{position:relative!important;top:-1px!important;display:inline-block;-webkit-transform:translateX(0)!important;transform:translateX(0)!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/node_modules/@vant/weapp/lib/tag/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/node_modules/@vant/weapp/lib/tag/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..b51d3fbbf3ed1b91fea20bae813494cc0fc102a2
--- /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/node_modules/@vant/weapp/lib/tag/index.js"
@@ -0,0 +1,23 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+component_1.VantComponent({
+ props: {
+ size: String,
+ mark: Boolean,
+ color: String,
+ plain: Boolean,
+ round: Boolean,
+ textColor: String,
+ type: {
+ type: String,
+ value: 'default',
+ },
+ closeable: Boolean,
+ },
+ methods: {
+ onClose: function () {
+ this.$emit('close');
+ },
+ },
+});
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/node_modules/@vant/weapp/lib/tag/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/node_modules/@vant/weapp/lib/tag/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/node_modules/@vant/weapp/lib/tag/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/node_modules/@vant/weapp/lib/tag/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/node_modules/@vant/weapp/lib/tag/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..59352dddde79329fc3ec90921a821b781ba0e631
--- /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/node_modules/@vant/weapp/lib/tag/index.wxml"
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
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/node_modules/@vant/weapp/lib/tag/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/node_modules/@vant/weapp/lib/tag/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..12d1668ec5f8df1f0cace309484bdb7c4a9377d4
--- /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/node_modules/@vant/weapp/lib/tag/index.wxs"
@@ -0,0 +1,13 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+
+function rootStyle(data) {
+ return style({
+ 'background-color': data.plain ? '' : data.color,
+ color: data.textColor || data.plain ? data.textColor || data.color : '',
+ });
+}
+
+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/node_modules/@vant/weapp/lib/tag/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/node_modules/@vant/weapp/lib/tag/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..46df0da0434441c88237be1e3cf4e5ed2a7c43eb
--- /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/node_modules/@vant/weapp/lib/tag/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-tag{position:relative;display:-webkit-inline-flex;display:inline-flex;-webkit-align-items:center;align-items:center;padding:0 4px;padding:var(--tag-padding,0 4px);color:#fff;color:var(--tag-text-color,#fff);font-size:12px;font-size:var(--tag-font-size,12px);line-height:16px;line-height:var(--tag-line-height,16px);border-radius:2px;border-radius:var(--tag-border-radius,2px)}.van-tag--default{background-color:#969799;background-color:var(--tag-default-color,#969799)}.van-tag--default.van-tag--plain{color:#969799;color:var(--tag-default-color,#969799)}.van-tag--danger{background-color:#ee0a24;background-color:var(--tag-danger-color,#ee0a24)}.van-tag--danger.van-tag--plain{color:#ee0a24;color:var(--tag-danger-color,#ee0a24)}.van-tag--primary{background-color:#1989fa;background-color:var(--tag-primary-color,#1989fa)}.van-tag--primary.van-tag--plain{color:#1989fa;color:var(--tag-primary-color,#1989fa)}.van-tag--success{background-color:#07c160;background-color:var(--tag-success-color,#07c160)}.van-tag--success.van-tag--plain{color:#07c160;color:var(--tag-success-color,#07c160)}.van-tag--warning{background-color:#ff976a;background-color:var(--tag-warning-color,#ff976a)}.van-tag--warning.van-tag--plain{color:#ff976a;color:var(--tag-warning-color,#ff976a)}.van-tag--plain{background-color:#fff;background-color:var(--tag-plain-background-color,#fff)}.van-tag--plain:before{position:absolute;top:0;right:0;bottom:0;left:0;border:1px solid;border-radius:inherit;content:"";pointer-events:none}.van-tag--medium{padding:2px 6px;padding:var(--tag-medium-padding,2px 6px)}.van-tag--large{padding:4px 8px;padding:var(--tag-large-padding,4px 8px);font-size:14px;font-size:var(--tag-large-font-size,14px);border-radius:4px;border-radius:var(--tag-large-border-radius,4px)}.van-tag--mark{border-radius:0 999px 999px 0;border-radius:0 var(--tag-round-border-radius,999px) var(--tag-round-border-radius,999px) 0}.van-tag--mark:after{display:block;width:2px;content:""}.van-tag--round{border-radius:999px;border-radius:var(--tag-round-border-radius,999px)}.van-tag__close{min-width:1em;margin-left:2px}
\ 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/node_modules/@vant/weapp/lib/toast/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/node_modules/@vant/weapp/lib/toast/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..da703bb59a99e628f7c73230e91f79da5f5f98fc
--- /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/node_modules/@vant/weapp/lib/toast/index.js"
@@ -0,0 +1,31 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+component_1.VantComponent({
+ props: {
+ show: Boolean,
+ mask: Boolean,
+ message: String,
+ forbidClick: Boolean,
+ zIndex: {
+ type: Number,
+ value: 1000,
+ },
+ type: {
+ type: String,
+ value: 'text',
+ },
+ loadingType: {
+ type: String,
+ value: 'circular',
+ },
+ position: {
+ type: String,
+ value: 'middle',
+ },
+ },
+ methods: {
+ // for prevent touchmove
+ 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/node_modules/@vant/weapp/lib/toast/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/node_modules/@vant/weapp/lib/toast/index.json"
new file mode 100644
index 0000000000000000000000000000000000000000..9b1b78c4aa37d522149a65979bb4f4786ecbf2ed
--- /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/node_modules/@vant/weapp/lib/toast/index.json"
@@ -0,0 +1,9 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-icon": "../icon/index",
+ "van-loading": "../loading/index",
+ "van-overlay": "../overlay/index",
+ "van-transition": "../transition/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/node_modules/@vant/weapp/lib/toast/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/node_modules/@vant/weapp/lib/toast/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..635e7d617ea23a55db57542d79e0ae99423ce16b
--- /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/node_modules/@vant/weapp/lib/toast/index.wxml"
@@ -0,0 +1,33 @@
+
+
+
+
+ {{ message }}
+
+
+
+
+
+ {{ message }}
+
+
+
+
+
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/node_modules/@vant/weapp/lib/toast/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/node_modules/@vant/weapp/lib/toast/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..85dc7a8fb11dbe3168ec457766248c2ae2af43f5
--- /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/node_modules/@vant/weapp/lib/toast/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-toast{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:initial;color:#fff;color:var(--toast-text-color,#fff);font-size:14px;font-size:var(--toast-font-size,14px);line-height:20px;line-height:var(--toast-line-height,20px);white-space:pre-wrap;word-wrap:break-word;background-color:rgba(0,0,0,.7);background-color:var(--toast-background-color,rgba(0,0,0,.7));border-radius:8px;border-radius:var(--toast-border-radius,8px)}.van-toast__container{position:fixed;top:50%;left:50%;width:-webkit-fit-content;width:fit-content;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);max-width:70%;max-width:var(--toast-max-width,70%)}.van-toast--text{min-width:96px;min-width:var(--toast-text-min-width,96px);padding:8px 12px;padding:var(--toast-text-padding,8px 12px)}.van-toast--icon{width:88px;width:var(--toast-default-width,88px);min-height:88px;min-height:var(--toast-default-min-height,88px);padding:16px;padding:var(--toast-default-padding,16px)}.van-toast--icon .van-toast__icon{font-size:36px;font-size:var(--toast-icon-size,36px)}.van-toast--icon .van-toast__text{padding-top:8px}.van-toast__loading{margin:10px 0}.van-toast--top{-webkit-transform:translateY(-30vh);transform:translateY(-30vh)}.van-toast--bottom{-webkit-transform:translateY(30vh);transform:translateY(30vh)}
\ 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/node_modules/@vant/weapp/lib/toast/toast.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/node_modules/@vant/weapp/lib/toast/toast.js"
new file mode 100644
index 0000000000000000000000000000000000000000..20f00f7e7ea8889da42bffc59e890fe3f1d08b00
--- /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/node_modules/@vant/weapp/lib/toast/toast.js"
@@ -0,0 +1,92 @@
+'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 validator_1 = require('../common/validator');
+var defaultOptions = {
+ type: 'text',
+ mask: false,
+ message: '',
+ show: true,
+ zIndex: 1000,
+ duration: 2000,
+ position: 'middle',
+ forbidClick: false,
+ loadingType: 'circular',
+ selector: '#van-toast',
+};
+var queue = [];
+var currentOptions = __assign({}, defaultOptions);
+function parseOptions(message) {
+ return validator_1.isObj(message) ? message : { message: message };
+}
+function getContext() {
+ var pages = getCurrentPages();
+ return pages[pages.length - 1];
+}
+function Toast(toastOptions) {
+ var options = __assign(
+ __assign({}, currentOptions),
+ parseOptions(toastOptions)
+ );
+ var context = options.context || getContext();
+ var toast = context.selectComponent(options.selector);
+ if (!toast) {
+ console.warn('未找到 van-toast 节点,请确认 selector 及 context 是否正确');
+ return;
+ }
+ delete options.context;
+ delete options.selector;
+ toast.clear = function () {
+ toast.setData({ show: false });
+ if (options.onClose) {
+ options.onClose();
+ }
+ };
+ queue.push(toast);
+ toast.setData(options);
+ clearTimeout(toast.timer);
+ if (options.duration != null && options.duration > 0) {
+ toast.timer = setTimeout(function () {
+ toast.clear();
+ queue = queue.filter(function (item) {
+ return item !== toast;
+ });
+ }, options.duration);
+ }
+ return toast;
+}
+var createMethod = function (type) {
+ return function (options) {
+ return Toast(__assign({ type: type }, parseOptions(options)));
+ };
+};
+Toast.loading = createMethod('loading');
+Toast.success = createMethod('success');
+Toast.fail = createMethod('fail');
+Toast.clear = function () {
+ queue.forEach(function (toast) {
+ toast.clear();
+ });
+ queue = [];
+};
+Toast.setDefaultOptions = function (options) {
+ Object.assign(currentOptions, options);
+};
+Toast.resetDefaultOptions = function () {
+ currentOptions = __assign({}, defaultOptions);
+};
+exports.default = Toast;
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/node_modules/@vant/weapp/lib/transition/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/node_modules/@vant/weapp/lib/transition/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..f3c96e4227b2cd1cdda6a62a8253a7b888890a2d
--- /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/node_modules/@vant/weapp/lib/transition/index.js"
@@ -0,0 +1,15 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+var transition_1 = require('../mixins/transition');
+component_1.VantComponent({
+ classes: [
+ 'enter-class',
+ 'enter-active-class',
+ 'enter-to-class',
+ 'leave-class',
+ 'leave-active-class',
+ 'leave-to-class',
+ ],
+ mixins: [transition_1.transition(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/node_modules/@vant/weapp/lib/transition/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/node_modules/@vant/weapp/lib/transition/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/node_modules/@vant/weapp/lib/transition/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/node_modules/@vant/weapp/lib/transition/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/node_modules/@vant/weapp/lib/transition/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..2743785269f449afd81c15737578ecef0ecdda0d
--- /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/node_modules/@vant/weapp/lib/transition/index.wxml"
@@ -0,0 +1,10 @@
+
+
+
+
+
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/node_modules/@vant/weapp/lib/transition/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/node_modules/@vant/weapp/lib/transition/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..e0babf62aa21eb45959cfbb9b70009b1895179c9
--- /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/node_modules/@vant/weapp/lib/transition/index.wxs"
@@ -0,0 +1,17 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+
+function rootStyle(data) {
+ return style([
+ {
+ '-webkit-transition-duration': data.currentDuration + 'ms',
+ 'transition-duration': data.currentDuration + 'ms',
+ },
+ data.display ? null : 'display: none',
+ 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/node_modules/@vant/weapp/lib/transition/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/node_modules/@vant/weapp/lib/transition/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..d459f5c123f6044f5c8944f4310efa29ab490eb4
--- /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/node_modules/@vant/weapp/lib/transition/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-transition{transition-timing-function:ease}.van-fade-enter-active,.van-fade-leave-active{transition-property:opacity}.van-fade-enter,.van-fade-leave-to{opacity:0}.van-fade-down-enter-active,.van-fade-down-leave-active,.van-fade-left-enter-active,.van-fade-left-leave-active,.van-fade-right-enter-active,.van-fade-right-leave-active,.van-fade-up-enter-active,.van-fade-up-leave-active{transition-property:opacity,-webkit-transform;transition-property:opacity,transform;transition-property:opacity,transform,-webkit-transform}.van-fade-up-enter,.van-fade-up-leave-to{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);opacity:0}.van-fade-down-enter,.van-fade-down-leave-to{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);opacity:0}.van-fade-left-enter,.van-fade-left-leave-to{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);opacity:0}.van-fade-right-enter,.van-fade-right-leave-to{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);opacity:0}.van-slide-down-enter-active,.van-slide-down-leave-active,.van-slide-left-enter-active,.van-slide-left-leave-active,.van-slide-right-enter-active,.van-slide-right-leave-active,.van-slide-up-enter-active,.van-slide-up-leave-active{transition-property:-webkit-transform;transition-property:transform;transition-property:transform,-webkit-transform}.van-slide-up-enter,.van-slide-up-leave-to{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}.van-slide-down-enter,.van-slide-down-leave-to{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}.van-slide-left-enter,.van-slide-left-leave-to{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.van-slide-right-enter,.van-slide-right-leave-to{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,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/node_modules/@vant/weapp/lib/tree-select/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/node_modules/@vant/weapp/lib/tree-select/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..9796507e875c5ee84092a64db4d75b8b33cf6464
--- /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/node_modules/@vant/weapp/lib/tree-select/index.js"
@@ -0,0 +1,73 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+var component_1 = require('../common/component');
+component_1.VantComponent({
+ classes: [
+ 'main-item-class',
+ 'content-item-class',
+ 'main-active-class',
+ 'content-active-class',
+ 'main-disabled-class',
+ 'content-disabled-class',
+ ],
+ props: {
+ items: {
+ type: Array,
+ observer: 'updateSubItems',
+ },
+ activeId: null,
+ mainActiveIndex: {
+ type: Number,
+ value: 0,
+ observer: 'updateSubItems',
+ },
+ height: {
+ type: null,
+ value: 300,
+ },
+ max: {
+ type: Number,
+ value: Infinity,
+ },
+ selectedIcon: {
+ type: String,
+ value: 'success',
+ },
+ },
+ data: {
+ subItems: [],
+ },
+ methods: {
+ // 当一个子项被选择时
+ onSelectItem: function (event) {
+ var item = event.currentTarget.dataset.item;
+ var isArray = Array.isArray(this.data.activeId);
+ // 判断有没有超出右侧选择的最大数
+ var isOverMax = isArray && this.data.activeId.length >= this.data.max;
+ // 判断该项有没有被选中, 如果有被选中,则忽视是否超出的条件
+ var isSelected = isArray
+ ? this.data.activeId.indexOf(item.id) > -1
+ : this.data.activeId === item.id;
+ if (!item.disabled && (!isOverMax || isSelected)) {
+ this.$emit('click-item', item);
+ }
+ },
+ // 当一个导航被点击时
+ onClickNav: function (event) {
+ var index = event.detail;
+ var item = this.data.items[index];
+ if (!item.disabled) {
+ this.$emit('click-nav', { index: index });
+ }
+ },
+ // 更新子项列表
+ updateSubItems: function () {
+ var _a = this.data,
+ items = _a.items,
+ mainActiveIndex = _a.mainActiveIndex;
+ var _b = (items[mainActiveIndex] || {}).children,
+ children = _b === void 0 ? [] : _b;
+ this.setData({ subItems: children });
+ },
+ },
+});
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/node_modules/@vant/weapp/lib/tree-select/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/node_modules/@vant/weapp/lib/tree-select/index.json"
new file mode 100644
index 0000000000000000000000000000000000000000..42991a2ad544f292b23eb72b2a95fa823349daed
--- /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/node_modules/@vant/weapp/lib/tree-select/index.json"
@@ -0,0 +1,8 @@
+{
+ "component": true,
+ "usingComponents": {
+ "van-icon": "../icon/index",
+ "van-sidebar": "../sidebar/index",
+ "van-sidebar-item": "../sidebar-item/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/node_modules/@vant/weapp/lib/tree-select/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/node_modules/@vant/weapp/lib/tree-select/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..2663e528d3b619155478ef4a8487c29812131c35
--- /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/node_modules/@vant/weapp/lib/tree-select/index.wxml"
@@ -0,0 +1,41 @@
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ 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/node_modules/@vant/weapp/lib/tree-select/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/node_modules/@vant/weapp/lib/tree-select/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..b1cbb39b2d01d296acee604ad0135aed8234cdc5
--- /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/node_modules/@vant/weapp/lib/tree-select/index.wxs"
@@ -0,0 +1,12 @@
+/* eslint-disable */
+var array = require('../wxs/array.wxs');
+
+function isActive (activeList, itemId) {
+ if (array.isArray(activeList)) {
+ return activeList.indexOf(itemId) > -1;
+ }
+
+ return activeList === itemId;
+}
+
+module.exports.isActive = isActive;
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/node_modules/@vant/weapp/lib/tree-select/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/node_modules/@vant/weapp/lib/tree-select/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..3f7cca67d8493dbbb04ebdf3023a01569f8aa257
--- /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/node_modules/@vant/weapp/lib/tree-select/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-tree-select{position:relative;display:-webkit-flex;display:flex;-webkit-user-select:none;user-select:none;font-size:14px;font-size:var(--tree-select-font-size,14px)}.van-tree-select__nav{-webkit-flex:1;flex:1;background-color:#f7f8fa;background-color:var(--tree-select-nav-background-color,#f7f8fa);--sidebar-padding:12px 8px 12px 12px}.van-tree-select__nav__inner{width:100%!important;height:100%}.van-tree-select__content{-webkit-flex:2;flex:2;background-color:#fff;background-color:var(--tree-select-content-background-color,#fff)}.van-tree-select__item{position:relative;font-weight:700;padding:0 32px 0 16px;padding:0 32px 0 var(--padding-md,16px);line-height:44px;line-height:var(--tree-select-item-height,44px)}.van-tree-select__item--active{color:#ee0a24;color:var(--tree-select-item-active-color,#ee0a24)}.van-tree-select__item--disabled{color:#c8c9cc;color:var(--tree-select-item-disabled-color,#c8c9cc)}.van-tree-select__selected{position:absolute;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);right:16px;right:var(--padding-md,16px)}
\ 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/node_modules/@vant/weapp/lib/uploader/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/node_modules/@vant/weapp/lib/uploader/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..ca3c43ad5dfbbe4dc45271fcd744cdc081c16bec
--- /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/node_modules/@vant/weapp/lib/uploader/index.js"
@@ -0,0 +1,246 @@
+'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 utils_1 = require('./utils');
+var shared_1 = require('./shared');
+var validator_1 = require('../common/validator');
+component_1.VantComponent({
+ props: __assign(
+ __assign(
+ {
+ disabled: Boolean,
+ multiple: Boolean,
+ uploadText: String,
+ useBeforeRead: Boolean,
+ afterRead: null,
+ beforeRead: null,
+ previewSize: {
+ type: null,
+ value: 80,
+ },
+ name: {
+ type: null,
+ value: '',
+ },
+ accept: {
+ type: String,
+ value: 'image',
+ },
+ fileList: {
+ type: Array,
+ value: [],
+ observer: 'formatFileList',
+ },
+ maxSize: {
+ type: Number,
+ value: Number.MAX_VALUE,
+ },
+ maxCount: {
+ type: Number,
+ value: 100,
+ },
+ deletable: {
+ type: Boolean,
+ value: true,
+ },
+ showUpload: {
+ type: Boolean,
+ value: true,
+ },
+ previewImage: {
+ type: Boolean,
+ value: true,
+ },
+ previewFullImage: {
+ type: Boolean,
+ value: true,
+ },
+ imageFit: {
+ type: String,
+ value: 'scaleToFill',
+ },
+ uploadIcon: {
+ type: String,
+ value: 'photograph',
+ },
+ },
+ shared_1.chooseImageProps
+ ),
+ shared_1.chooseVideoProps
+ ),
+ data: {
+ lists: [],
+ isInCount: true,
+ },
+ methods: {
+ formatFileList: function () {
+ var _a = this.data,
+ _b = _a.fileList,
+ fileList = _b === void 0 ? [] : _b,
+ maxCount = _a.maxCount;
+ var lists = fileList.map(function (item) {
+ return __assign(__assign({}, item), {
+ isImage: utils_1.isImageFile(item),
+ isVideo: utils_1.isVideoFile(item),
+ deletable: validator_1.isBoolean(item.deletable)
+ ? item.deletable
+ : true,
+ });
+ });
+ this.setData({ lists: lists, isInCount: lists.length < maxCount });
+ },
+ getDetail: function (index) {
+ return {
+ name: this.data.name,
+ index: index == null ? this.data.fileList.length : index,
+ };
+ },
+ startUpload: function () {
+ var _this = this;
+ var _a = this.data,
+ maxCount = _a.maxCount,
+ multiple = _a.multiple,
+ lists = _a.lists,
+ disabled = _a.disabled;
+ if (disabled) return;
+ utils_1
+ .chooseFile(
+ __assign(__assign({}, this.data), {
+ maxCount: maxCount - lists.length,
+ })
+ )
+ .then(function (res) {
+ _this.onBeforeRead(multiple ? res : res[0]);
+ })
+ .catch(function (error) {
+ _this.$emit('error', error);
+ });
+ },
+ onBeforeRead: function (file) {
+ var _this = this;
+ var _a = this.data,
+ beforeRead = _a.beforeRead,
+ useBeforeRead = _a.useBeforeRead;
+ var res = true;
+ if (typeof beforeRead === 'function') {
+ res = beforeRead(file, this.getDetail());
+ }
+ if (useBeforeRead) {
+ res = new Promise(function (resolve, reject) {
+ _this.$emit(
+ 'before-read',
+ __assign(__assign({ file: file }, _this.getDetail()), {
+ callback: function (ok) {
+ ok ? resolve() : reject();
+ },
+ })
+ );
+ });
+ }
+ if (!res) {
+ return;
+ }
+ if (validator_1.isPromise(res)) {
+ res.then(function (data) {
+ return _this.onAfterRead(data || file);
+ });
+ } else {
+ this.onAfterRead(file);
+ }
+ },
+ onAfterRead: function (file) {
+ var _a = this.data,
+ maxSize = _a.maxSize,
+ afterRead = _a.afterRead;
+ var oversize = Array.isArray(file)
+ ? file.some(function (item) {
+ return item.size > maxSize;
+ })
+ : file.size > maxSize;
+ if (oversize) {
+ this.$emit('oversize', __assign({ file: file }, this.getDetail()));
+ return;
+ }
+ if (typeof afterRead === 'function') {
+ afterRead(file, this.getDetail());
+ }
+ this.$emit('after-read', __assign({ file: file }, this.getDetail()));
+ },
+ deleteItem: function (event) {
+ var index = event.currentTarget.dataset.index;
+ this.$emit(
+ 'delete',
+ __assign(__assign({}, this.getDetail(index)), {
+ file: this.data.fileList[index],
+ })
+ );
+ },
+ onPreviewImage: function (event) {
+ if (!this.data.previewFullImage) return;
+ var index = event.currentTarget.dataset.index;
+ var lists = this.data.lists;
+ var item = lists[index];
+ wx.previewImage({
+ urls: lists
+ .filter(function (item) {
+ return utils_1.isImageFile(item);
+ })
+ .map(function (item) {
+ return item.url;
+ }),
+ current: item.url,
+ fail: function () {
+ wx.showToast({ title: '预览图片失败', icon: 'none' });
+ },
+ });
+ },
+ onPreviewVideo: function (event) {
+ if (!this.data.previewFullImage) return;
+ var index = event.currentTarget.dataset.index;
+ var lists = this.data.lists;
+ wx.previewMedia({
+ sources: lists
+ .filter(function (item) {
+ return utils_1.isVideoFile(item);
+ })
+ .map(function (item) {
+ return __assign(__assign({}, item), { type: 'video' });
+ }),
+ current: index,
+ fail: function () {
+ wx.showToast({ title: '预览视频失败', icon: 'none' });
+ },
+ });
+ },
+ onPreviewFile: function (event) {
+ var index = event.currentTarget.dataset.index;
+ wx.openDocument({
+ filePath: this.data.lists[index].url,
+ showMenu: true,
+ });
+ },
+ onClickPreview: function (event) {
+ var index = event.currentTarget.dataset.index;
+ var item = this.data.lists[index];
+ this.$emit(
+ 'click-preview',
+ __assign(__assign({}, item), this.getDetail(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/node_modules/@vant/weapp/lib/uploader/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/node_modules/@vant/weapp/lib/uploader/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/node_modules/@vant/weapp/lib/uploader/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/node_modules/@vant/weapp/lib/uploader/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/node_modules/@vant/weapp/lib/uploader/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..50fb0c89255d9c26ed9bd746ce093282221c5eb2
--- /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/node_modules/@vant/weapp/lib/uploader/index.wxml"
@@ -0,0 +1,83 @@
+
+
+
+
+
+
+
+
+
+
+
+ {{ item.name || item.url }}
+
+
+
+
+ {{ item.message }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ uploadText }}
+
+
+
+
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/node_modules/@vant/weapp/lib/uploader/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/node_modules/@vant/weapp/lib/uploader/index.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..257c7804646f7c791b7b868ff1e16f7980234a32
--- /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/node_modules/@vant/weapp/lib/uploader/index.wxs"
@@ -0,0 +1,14 @@
+/* eslint-disable */
+var style = require('../wxs/style.wxs');
+var addUnit = require('../wxs/add-unit.wxs');
+
+function sizeStyle(data) {
+ return style({
+ width: addUnit(data.previewSize),
+ height: addUnit(data.previewSize),
+ });
+}
+
+module.exports = {
+ sizeStyle: sizeStyle,
+};
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/node_modules/@vant/weapp/lib/uploader/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/node_modules/@vant/weapp/lib/uploader/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..5023d716455744d514143bc37600d2f19794b15f
--- /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/node_modules/@vant/weapp/lib/uploader/index.wxss"
@@ -0,0 +1 @@
+@import '../common/index.wxss';.van-uploader{position:relative;display:inline-block}.van-uploader__wrapper{display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap}.van-uploader__slot:empty{display:none}.van-uploader__slot:not(:empty)+.van-uploader__upload{display:none!important}.van-uploader__upload{position:relative;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;width:80px;width:var(--uploader-size,80px);height:80px;height:var(--uploader-size,80px);margin:0 8px 8px 0;margin:0 var(--padding-xs,8px) var(--padding-xs,8px) 0;background-color:#f7f8fa;background-color:var(--uploader-upload-background-color,#f7f8fa)}.van-uploader__upload:active{background-color:#f2f3f5;background-color:var(--uploader-upload-active-color,#f2f3f5)}.van-uploader__upload-icon{color:#dcdee0;color:var(--uploader-icon-color,#dcdee0);font-size:24px;font-size:var(--uploader-icon-size,24px)}.van-uploader__upload-text{margin-top:8px;margin-top:var(--padding-xs,8px);color:#969799;color:var(--uploader-text-color,#969799);font-size:12px;font-size:var(--uploader-text-font-size,12px)}.van-uploader__upload--disabled{opacity:.5;opacity:var(--uploader-disabled-opacity,.5)}.van-uploader__preview{position:relative;cursor:pointer;margin:0 8px 8px 0;margin:0 var(--padding-xs,8px) var(--padding-xs,8px) 0}.van-uploader__preview-image{display:block;overflow:hidden;width:80px;width:var(--uploader-size,80px);height:80px;height:var(--uploader-size,80px)}.van-uploader__preview-delete{padding:0 0 8px 8px;padding:0 0 var(--padding-xs,8px) var(--padding-xs,8px)}.van-uploader__preview-delete,.van-uploader__preview-delete:after{position:absolute;top:0;right:0;width:14px;width:var(--uploader-delete-icon-size,14px);height:14px;height:var(--uploader-delete-icon-size,14px)}.van-uploader__preview-delete:after{content:"";background-color:rgba(0,0,0,.7);background-color:var(--uploader-delete-background-color,rgba(0,0,0,.7));border-radius:0 0 0 12px;border-radius:0 0 0 calc(var(--uploader-delete-icon-size, 14px) - 2px)}.van-uploader__preview-delete-icon{position:absolute;top:-2px;right:-2px;z-index:1;-webkit-transform:scale(.5);transform:scale(.5);font-size:16px;font-size:calc(var(--uploader-delete-icon-size, 14px) + 2px);color:#fff;color:var(--uploader-delete-color,#fff)}.van-uploader__file{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;width:80px;width:var(--uploader-size,80px);height:80px;height:var(--uploader-size,80px);background-color:#f7f8fa;background-color:var(--uploader-file-background-color,#f7f8fa)}.van-uploader__file-icon{color:#646566;color:var(--uploader-file-icon-color,#646566);font-size:20px;font-size:var(--uploader-file-icon-size,20px)}.van-uploader__file-name{box-sizing:border-box;width:100%;text-align:center;margin-top:8px;margin-top:var(--uploader-file-name-margin-top,8px);padding:0 4px;padding:var(--uploader-file-name-padding,0 4px);color:#646566;color:var(--uploader-file-name-text-color,#646566);font-size:12px;font-size:var(--uploader-file-name-font-size,12px)}.van-uploader__mask{position:absolute;top:0;right:0;bottom:0;left:0;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;color:#fff;color:var(--white,#fff);background-color:rgba(50,50,51,.88);background-color:var(--uploader-mask-background-color,rgba(50,50,51,.88))}.van-uploader__mask-icon{font-size:22px;font-size:var(--uploader-mask-icon-size,22px)}.van-uploader__mask-message{margin-top:6px;padding:0 4px;padding:0 var(--padding-base,4px);font-size:12px;font-size:var(--uploader-mask-message-font-size,12px);line-height:14px;line-height:var(--uploader-mask-message-line-height,14px)}.van-uploader__loading{width:22px;width:var(--uploader-loading-icon-size,22px);height:22px;height:var(--uploader-loading-icon-size,22px);color:#fff!important;color:var(--uploader-loading-icon-color,#fff)!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/node_modules/@vant/weapp/lib/uploader/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/node_modules/@vant/weapp/lib/uploader/shared.js"
new file mode 100644
index 0000000000000000000000000000000000000000..9418618628443c7aeec8e026466d418db5944206
--- /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/node_modules/@vant/weapp/lib/uploader/shared.js"
@@ -0,0 +1,33 @@
+'use strict';
+Object.defineProperty(exports, '__esModule', { value: true });
+exports.chooseVideoProps = exports.chooseImageProps = void 0;
+// props for choose image
+exports.chooseImageProps = {
+ sizeType: {
+ type: Array,
+ value: ['original', 'compressed'],
+ },
+ capture: {
+ type: Array,
+ value: ['album', 'camera'],
+ },
+};
+// props for choose video
+exports.chooseVideoProps = {
+ capture: {
+ type: Array,
+ value: ['album', 'camera'],
+ },
+ compressed: {
+ type: Boolean,
+ value: true,
+ },
+ maxDuration: {
+ type: Number,
+ value: 60,
+ },
+ camera: {
+ type: String,
+ value: 'back',
+ },
+};
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/node_modules/@vant/weapp/lib/uploader/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/node_modules/@vant/weapp/lib/uploader/utils.js"
new file mode 100644
index 0000000000000000000000000000000000000000..d8eb852247d6c33cd4209dccfea7dab533485b03
--- /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/node_modules/@vant/weapp/lib/uploader/utils.js"
@@ -0,0 +1,158 @@
+'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 });
+exports.chooseFile = exports.isVideoFile = exports.isImageFile = void 0;
+var utils_1 = require('../common/utils');
+var validator_1 = require('../common/validator');
+function isImageFile(item) {
+ if (item.isImage != null) {
+ return item.isImage;
+ }
+ if (item.type) {
+ return item.type === 'image';
+ }
+ if (item.url) {
+ return validator_1.isImageUrl(item.url);
+ }
+ return false;
+}
+exports.isImageFile = isImageFile;
+function isVideoFile(item) {
+ if (item.isVideo != null) {
+ return item.isVideo;
+ }
+ if (item.type) {
+ return item.type === 'video';
+ }
+ if (item.url) {
+ return validator_1.isVideoUrl(item.url);
+ }
+ return false;
+}
+exports.isVideoFile = isVideoFile;
+function formatImage(res) {
+ return res.tempFiles.map(function (item) {
+ return __assign(__assign({}, utils_1.pickExclude(item, ['path'])), {
+ type: 'image',
+ url: item.path,
+ thumb: item.path,
+ });
+ });
+}
+function formatVideo(res) {
+ return [
+ __assign(
+ __assign(
+ {},
+ utils_1.pickExclude(res, [
+ 'tempFilePath',
+ 'thumbTempFilePath',
+ 'errMsg',
+ ])
+ ),
+ { type: 'video', url: res.tempFilePath, thumb: res.thumbTempFilePath }
+ ),
+ ];
+}
+function formatMedia(res) {
+ return res.tempFiles.map(function (item) {
+ return __assign(
+ __assign(
+ {},
+ utils_1.pickExclude(item, [
+ 'fileType',
+ 'thumbTempFilePath',
+ 'tempFilePath',
+ ])
+ ),
+ {
+ type: res.type,
+ url: item.tempFilePath,
+ thumb:
+ res.type === 'video' ? item.thumbTempFilePath : item.tempFilePath,
+ }
+ );
+ });
+}
+function formatFile(res) {
+ return res.tempFiles.map(function (item) {
+ return __assign(__assign({}, utils_1.pickExclude(item, ['path'])), {
+ url: item.path,
+ });
+ });
+}
+function chooseFile(_a) {
+ var accept = _a.accept,
+ multiple = _a.multiple,
+ capture = _a.capture,
+ compressed = _a.compressed,
+ maxDuration = _a.maxDuration,
+ sizeType = _a.sizeType,
+ camera = _a.camera,
+ maxCount = _a.maxCount;
+ return new Promise(function (resolve, reject) {
+ switch (accept) {
+ case 'image':
+ wx.chooseImage({
+ count: multiple ? Math.min(maxCount, 9) : 1,
+ sourceType: capture,
+ sizeType: sizeType,
+ success: function (res) {
+ return resolve(formatImage(res));
+ },
+ fail: reject,
+ });
+ break;
+ case 'media':
+ wx.chooseMedia({
+ count: multiple ? Math.min(maxCount, 9) : 1,
+ sourceType: capture,
+ maxDuration: maxDuration,
+ sizeType: sizeType,
+ camera: camera,
+ success: function (res) {
+ return resolve(formatMedia(res));
+ },
+ fail: reject,
+ });
+ break;
+ case 'video':
+ wx.chooseVideo({
+ sourceType: capture,
+ compressed: compressed,
+ maxDuration: maxDuration,
+ camera: camera,
+ success: function (res) {
+ return resolve(formatVideo(res));
+ },
+ fail: reject,
+ });
+ break;
+ default:
+ wx.chooseMessageFile({
+ count: multiple ? maxCount : 1,
+ type: accept,
+ success: function (res) {
+ return resolve(formatFile(res));
+ },
+ fail: reject,
+ });
+ break;
+ }
+ });
+}
+exports.chooseFile = chooseFile;
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/node_modules/@vant/weapp/lib/wxs/add-unit.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/node_modules/@vant/weapp/lib/wxs/add-unit.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..4f33462f3871d45d56dcd06d0975f913b67a57bb
--- /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/node_modules/@vant/weapp/lib/wxs/add-unit.wxs"
@@ -0,0 +1,12 @@
+/* eslint-disable */
+var REGEXP = getRegExp('^-?\d+(\.\d+)?$');
+
+function addUnit(value) {
+ if (value == null) {
+ return undefined;
+ }
+
+ return REGEXP.test('' + value) ? value + 'px' : value;
+}
+
+module.exports = addUnit;
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/node_modules/@vant/weapp/lib/wxs/array.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/node_modules/@vant/weapp/lib/wxs/array.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..610089cd5dc6395ff8355fa52550af2427c8dbe7
--- /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/node_modules/@vant/weapp/lib/wxs/array.wxs"
@@ -0,0 +1,5 @@
+function isArray(array) {
+ return array && array.constructor === 'Array';
+}
+
+module.exports.isArray = isArray;
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/node_modules/@vant/weapp/lib/wxs/bem.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/node_modules/@vant/weapp/lib/wxs/bem.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..1efa129ee835ccb888a8b935d3ad6e9f1c834900
--- /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/node_modules/@vant/weapp/lib/wxs/bem.wxs"
@@ -0,0 +1,39 @@
+/* eslint-disable */
+var array = require('./array.wxs');
+var object = require('./object.wxs');
+var PREFIX = 'van-';
+
+function join(name, mods) {
+ name = PREFIX + name;
+ mods = mods.map(function(mod) {
+ return name + '--' + mod;
+ });
+ mods.unshift(name);
+ return mods.join(' ');
+}
+
+function traversing(mods, conf) {
+ if (!conf) {
+ return;
+ }
+
+ if (typeof conf === 'string' || typeof conf === 'number') {
+ mods.push(conf);
+ } else if (array.isArray(conf)) {
+ conf.forEach(function(item) {
+ traversing(mods, item);
+ });
+ } else if (typeof conf === 'object') {
+ object.keys(conf).forEach(function(key) {
+ conf[key] && mods.push(key);
+ });
+ }
+}
+
+function bem(name, conf) {
+ var mods = [];
+ traversing(mods, conf);
+ return join(name, mods);
+}
+
+module.exports = bem;
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/node_modules/@vant/weapp/lib/wxs/memoize.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/node_modules/@vant/weapp/lib/wxs/memoize.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..8f7f46dd23ee6ae7caaf6ac2e95c88b5c15bf835
--- /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/node_modules/@vant/weapp/lib/wxs/memoize.wxs"
@@ -0,0 +1,55 @@
+/**
+ * Simple memoize
+ * wxs doesn't support fn.apply, so this memoize only support up to 2 args
+ */
+/* eslint-disable */
+
+function isPrimitive(value) {
+ var type = typeof value;
+ return (
+ type === 'boolean' ||
+ type === 'number' ||
+ type === 'string' ||
+ type === 'undefined' ||
+ value === null
+ );
+}
+
+// mock simple fn.call in wxs
+function call(fn, args) {
+ if (args.length === 2) {
+ return fn(args[0], args[1]);
+ }
+
+ if (args.length === 1) {
+ return fn(args[0]);
+ }
+
+ return fn();
+}
+
+function serializer(args) {
+ if (args.length === 1 && isPrimitive(args[0])) {
+ return args[0];
+ }
+ var obj = {};
+ for (var i = 0; i < args.length; i++) {
+ obj['key' + i] = args[i];
+ }
+ return JSON.stringify(obj);
+}
+
+function memoize(fn) {
+ var cache = {};
+
+ return function() {
+ var key = serializer(arguments);
+ if (cache[key] === undefined) {
+ cache[key] = call(fn, arguments);
+ }
+
+ return cache[key];
+ };
+}
+
+module.exports = memoize;
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/node_modules/@vant/weapp/lib/wxs/object.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/node_modules/@vant/weapp/lib/wxs/object.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..e07710776c19c994e4859a30777741e51058c0f9
--- /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/node_modules/@vant/weapp/lib/wxs/object.wxs"
@@ -0,0 +1,13 @@
+/* eslint-disable */
+var REGEXP = getRegExp('{|}|"', 'g');
+
+function keys(obj) {
+ return JSON.stringify(obj)
+ .replace(REGEXP, '')
+ .split(',')
+ .map(function(item) {
+ return item.split(':')[0];
+ });
+}
+
+module.exports.keys = keys;
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/node_modules/@vant/weapp/lib/wxs/style.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/node_modules/@vant/weapp/lib/wxs/style.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..c39c810f53ba2682f6f8013652261d48f14f7ebd
--- /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/node_modules/@vant/weapp/lib/wxs/style.wxs"
@@ -0,0 +1,32 @@
+/* eslint-disable */
+var object = require('./object.wxs');
+var array = require('./array.wxs');
+
+function style(styles) {
+ if (array.isArray(styles)) {
+ return styles
+ .filter(function (item) {
+ return item != null && item !== '';
+ })
+ .map(function (item) {
+ return style(item);
+ })
+ .join(';');
+ }
+
+ if ('Object' === styles.constructor) {
+ return object
+ .keys(styles)
+ .filter(function (key) {
+ return styles[key] != null && styles[key] !== '';
+ })
+ .map(function (key) {
+ return [key, [styles[key]]].join(':');
+ })
+ .join(';');
+ }
+
+ return styles;
+}
+
+module.exports = style;
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/node_modules/@vant/weapp/lib/wxs/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/node_modules/@vant/weapp/lib/wxs/utils.wxs"
new file mode 100644
index 0000000000000000000000000000000000000000..f66d33a4270856b51af6d7f0c36cc8d82bfb27f8
--- /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/node_modules/@vant/weapp/lib/wxs/utils.wxs"
@@ -0,0 +1,10 @@
+/* eslint-disable */
+var bem = require('./bem.wxs');
+var memoize = require('./memoize.wxs');
+var addUnit = require('./add-unit.wxs');
+
+module.exports = {
+ bem: memoize(bem),
+ memoize: memoize,
+ addUnit: addUnit
+};
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/node_modules/@vant/weapp/package.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/node_modules/@vant/weapp/package.json"
new file mode 100644
index 0000000000000000000000000000000000000000..1b4a9a6773f92b60066e2ef60289772b6eacb0df
--- /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/node_modules/@vant/weapp/package.json"
@@ -0,0 +1,131 @@
+{
+ "_from": "@vant/weapp",
+ "_id": "@vant/weapp@1.6.8",
+ "_inBundle": false,
+ "_integrity": "sha512-CvRgAZdGUtJKEnd2wmjw3oaRYXBq/YqerFTmf19cTd3G9+vRR67nSXPMUNQEoPPSm7LZo6gF6Xk/5pYx4Q4C0Q==",
+ "_location": "/@vant/weapp",
+ "_phantomChildren": {},
+ "_requested": {
+ "type": "tag",
+ "registry": true,
+ "raw": "@vant/weapp",
+ "name": "@vant/weapp",
+ "escapedName": "@vant%2fweapp",
+ "scope": "@vant",
+ "rawSpec": "",
+ "saveSpec": null,
+ "fetchSpec": "latest"
+ },
+ "_requiredBy": [
+ "#USER",
+ "/"
+ ],
+ "_resolved": "https://registry.npmjs.org/@vant/weapp/-/weapp-1.6.8.tgz",
+ "_shasum": "948ae16fba07c5a2054c52783f22aaf6a04453e1",
+ "_spec": "@vant/weapp",
+ "_where": "D:\\wechatProject\\tianqi",
+ "author": {
+ "name": "youzan"
+ },
+ "browserslist": [
+ "Chrome >= 53",
+ "ChromeAndroid >= 53",
+ "iOS >= 8"
+ ],
+ "bugs": {
+ "url": "https://github.com/youzan/vant-weapp/issues"
+ },
+ "bundleDependencies": false,
+ "dependencies": {},
+ "deprecated": false,
+ "description": "轻量、可靠的小程序 UI 组件库",
+ "devDependencies": {
+ "@babel/core": "^7.5.5",
+ "@babel/plugin-syntax-dynamic-import": "^7.2.0",
+ "@babel/preset-env": "^7.5.5",
+ "@vant/cli": "^1.0.3",
+ "@vant/doc": "^2.5.5",
+ "@vant/eslint-config": "^2.2.2",
+ "@vant/icons": "1.5.2",
+ "@vant/markdown-loader": "^2.3.0",
+ "@vant/stylelint-config": "^1.3.0",
+ "autoprefixer": "^10.0.0",
+ "babel-loader": "^8.0.0",
+ "cross-env": "^7.0.0",
+ "css-loader": "^5.0.0",
+ "cssnano": "^4.1.10",
+ "eslint": "^6.1.0",
+ "gh-pages": "^3.0.0",
+ "gulp": "^4.0.2",
+ "gulp-insert": "^0.5.0",
+ "gulp-less": "^4.0.1",
+ "gulp-postcss": "^9.0.0",
+ "gulp-rename": "^2.0.0",
+ "html-webpack-plugin": "^4.0.0",
+ "less": "^3.9.0",
+ "less-loader": "^7.0.0",
+ "lint-staged": "^10.0.0",
+ "miniprogram-api-typings": "^3.1.6",
+ "miniprogram-ci": "^1.0.27",
+ "postcss": "^8.1.1",
+ "postcss-loader": "^4.0.0",
+ "prettier": "^2.0.5",
+ "progress-bar-webpack-plugin": "^2.0.0",
+ "style-loader": "^2.0.0",
+ "stylelint": "^13.0.0",
+ "tscpaths": "^0.0.9",
+ "typescript": "^4.0.0",
+ "vue": "2.6.10",
+ "vue-loader": "^15.7.1",
+ "vue-router": "^3.1.1",
+ "vue-template-compiler": "2.6.10",
+ "webpack": "^4.39.1",
+ "webpack-cli": "^3.3.6",
+ "webpack-serve": "^2.0.3"
+ },
+ "files": [
+ "dist",
+ "lib"
+ ],
+ "homepage": "https://github.com/youzan/vant-weapp#readme",
+ "husky": {
+ "hooks": {
+ "pre-commit": "lint-staged",
+ "commit-msg": "vant commit-lint"
+ }
+ },
+ "license": "MIT",
+ "lint-staged": {
+ "*.{ts,js}": [
+ "eslint --fix",
+ "prettier --write"
+ ],
+ "*.{css,less}": [
+ "stylelint --fix",
+ "prettier --write"
+ ]
+ },
+ "miniprogram": "lib",
+ "name": "@vant/weapp",
+ "prettier": {
+ "singleQuote": true,
+ "proseWrap": "never"
+ },
+ "publishConfig": {
+ "access": "public"
+ },
+ "repository": {
+ "type": "git",
+ "url": "git+ssh://git@github.com/youzan/vant-weapp.git"
+ },
+ "scripts": {
+ "build:changelog": "vant changelog --tag v1.3.0 ./docs/markdown/changelog.generated.md",
+ "build:lib": "yarn && npx gulp -f build/compiler.js --series buildEs buildLib",
+ "dev": "node build/dev.js",
+ "lint": "eslint ./packages --ext .js,.ts --fix && stylelint \"packages/**/*.less\" --fix",
+ "release": "sh build/release.sh",
+ "release:site": "sh build/release-site.sh",
+ "upload:weapp": "node build/upload.js"
+ },
+ "version": "1.6.8"
+}
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/package-lock.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/package-lock.json"
new file mode 100644
index 0000000000000000000000000000000000000000..e27e11bb48da9efc1ca894fc2fedc39e2a08f741
--- /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/package-lock.json"
@@ -0,0 +1,13 @@
+{
+ "name": "tianqi",
+ "version": "1.0.0",
+ "lockfileVersion": 1,
+ "requires": true,
+ "dependencies": {
+ "@vant/weapp": {
+ "version": "1.6.8",
+ "resolved": "https://registry.npmjs.org/@vant/weapp/-/weapp-1.6.8.tgz",
+ "integrity": "sha512-CvRgAZdGUtJKEnd2wmjw3oaRYXBq/YqerFTmf19cTd3G9+vRR67nSXPMUNQEoPPSm7LZo6gF6Xk/5pYx4Q4C0Q=="
+ }
+ }
+}
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/package.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/package.json"
new file mode 100644
index 0000000000000000000000000000000000000000..14a7c53b7b49454c4151ab40e6ee87411f8b3119
--- /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/package.json"
@@ -0,0 +1,18 @@
+{
+ "name": "tianqi",
+ "version": "1.0.0",
+ "description": "",
+ "main": "app.js",
+ "scripts": {
+ "test": "echo \"Error: no test specified\" && exit 1"
+ },
+ "repository": {
+ "type": "git",
+ "url": "https://gitee.com/llhz15621009715/wechat-weather-forecast-applet.git"
+ },
+ "author": "",
+ "license": "ISC",
+ "dependencies": {
+ "@vant/weapp": "^1.6.8"
+ }
+}
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/pages/index/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/pages/index/index.js"
new file mode 100644
index 0000000000000000000000000000000000000000..9be0a5b214762e9b010fb27cabd1d89a6e88642f
--- /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/pages/index/index.js"
@@ -0,0 +1,178 @@
+//index.js
+//获取应用实例
+const app = getApp()
+var QQMapWX = require('../../utils/qqmap-wx-jssdk.js');
+var qqmapsdk;
+
+Page({
+ data: {
+ weatherweek:[],//七日精确天气
+ weatherRoughweek:[],//七日天气简略版
+ nowWeatherImg:"/img/qing.png",//实时天气图片
+ weatherImgList:[],//24小时天气的图片list
+ province:"",//省份
+ city:"",//城市
+ district:"",//地区
+ latitude:"",//经度
+ longitude:"",//纬度
+ huanhang:"\n",//换行
+ },
+ onLoad: function (options) {
+ qqmapsdk = new QQMapWX({
+ key:'GTDBZ-FUEOK-FXEJU-AGZST-UO6P5-SIBDJ' //这里自己的key秘钥进行填充
+ });
+
+ this.getUserInfo();
+
+ this.setData({
+ latitude:options.latitude ?? '',
+ longitude:options.longitude ?? ''
+ })
+
+ console.log('lat1111',this.data.latitude,'lng22',this.data.longitude)
+ },
+ getUserInfo:function(){
+ let vm = this;
+ wx.getSetting({
+ success: (res) => {
+ // res.authSetting['scope.userLocation'] == undefined 表示 初始化进入该页面
+ // res.authSetting['scope.userLocation'] == false 表示 非初始化进入该页面,且未授权
+ // res.authSetting['scope.userLocation'] == true 表示 地理位置授权
+ if (res.authSetting['scope.userLocation'] != undefined && res.authSetting['scope.userLocation'] != true) {
+ wx.showModal({
+ title: '请求授权当前位置',
+ content: '需要获取您的地理位置,请确认授权',
+ success: function (res) {
+ if (res.cancel) {
+ wx.showToast({
+ title: '拒绝授权',
+ icon: 'none',
+ duration: 1000
+ })
+ } else if (res.confirm) {
+ wx.openSetting({
+ success: function (dataAu) {
+ if (dataAu.authSetting["scope.userLocation"] == true) {
+ wx.showToast({
+ title: '授权成功',
+ icon: 'success',
+ duration: 1000
+ })
+ } else {
+ wx.showToast({
+ title: '授权失败',
+ icon: 'none',
+ duration: 1000
+ })
+ }
+ }
+ })
+ }
+ }
+ })
+ } else if (res.authSetting['scope.userLocation'] == undefined) {
+ //调用wx.getLocation的API
+ vm.getLocation();
+ }else {
+ //调用wx.getLocation的API
+ vm.getLocation();
+ }
+ }
+ })
+ },
+ // 微信获得经纬度
+ getLocation: function () {
+ let vm = this;
+ wx.getLocation({
+ type: 'wgs84',
+ success: function (res) {
+ var latitude = res.latitude
+ var longitude = res.longitude
+ var speed = res.speed
+ var accuracy = res.accuracy;
+ console.log('lat3333',vm.data.latitude,'lng4444',vm.data.longitude)
+ if(vm.data.latitude&&vm.data.longitude){
+ vm.getLocal(vm.data.latitude,vm.data.longitude)
+ }else{
+ vm.getLocal(latitude, longitude)
+ }
+ },
+ fail: function (res) {
+ console.log('fail' + JSON.stringify(res))
+ }
+ })
+ },
+ // 获取当前地理位置
+ getLocal: function (latitude, longitude) {
+ let vm = this;
+ qqmapsdk.reverseGeocoder({
+ location: {
+ latitude: latitude,
+ longitude: longitude
+ },
+ success: function (res) {
+ console.log('diliweizhi11111',res)
+
+ let province = res.result.ad_info.province
+ let city = res.result.ad_info.city
+ let district = res.result.ad_info.district
+ app.setLocal(city)
+ district = district.substring(0, district.length - 1);
+
+ vm.setData({
+ province: province,
+ city: city,
+ latitude: latitude,
+ longitude: longitude,
+ district: district
+ })
+
+ vm.weatherweekday(district);
+ },
+ fail: function (res) {
+ console.log(res);
+ },
+ complete: function (res) {
+ // console.log(res);
+ }
+ });
+ },
+
+
+ // 天气api天气获取, 请更换为自己的appid和appsecret
+ weatherweekday: function (district) {
+ var _this = this;
+ wx.request({
+ url: 'https://www.tianqiapi.com/api/?version=v9&appid=75683827&appsecret=0Jh3TCAh&vue=1',
+ // url: 'https://www.tianqiapi.com/free/week?appid=75683827&appsecret=0Jh3TCAh',
+ data: {
+ 'city': district,
+ // 'cityid': "101120302"
+ },
+ method: 'GET',
+ header: {
+ 'content-type': 'application/x-www-form-urlencoded'
+ },
+ success: function (res) {
+ var weatherImg = [];
+ res.data.data[0].hours.forEach(element => {
+ weatherImg.push("/img/" + element.wea_img + ".png",)
+ });
+
+ _this.setData({
+ weatherweek: res.data,
+ nowWeatherImg: "/img/" + res.data.data[0].wea_img + ".png",
+ weatherImgList: weatherImg,
+ });
+ console.log('天气api接口返回数据',_this.data.weatherweek)
+ }
+ });
+ },
+ onTapAddress(options) {
+ wx.navigateTo({
+ url: '../search/search'
+ })
+
+ // this.getLocal(this.data.latitude,this.data.longitude)
+ }
+})
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/pages/index/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/pages/index/index.json"
new file mode 100644
index 0000000000000000000000000000000000000000..56cf6d3874bd87a7fd81d66a6e4a818b23c97edd
--- /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/pages/index/index.json"
@@ -0,0 +1,8 @@
+{
+ "usingComponents": {
+ "van-grid": "@vant/weapp/grid/index",
+ "van-grid-item": "@vant/weapp/grid-item/index",
+ "van-icon": "@vant/weapp/icon/index",
+ "van-cell": "@vant/weapp/cell/index"
+ }
+}
\ 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/pages/index/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/pages/index/index.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..e827cc51bcb21faef09e3bc2328dbc1ce78810f9
--- /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/pages/index/index.wxml"
@@ -0,0 +1,160 @@
+
+
+
+
+
+ 切换城市
+ 上次更新时间:{{weatherweek.aqi.update_time}}
+
+
+
+
+
+
+ {{city}} {{district}}
+
+
+
+
+ {{weatherweek.data[0].tem}}℃
+
+ {{weatherweek.data[0].tem2}}℃/
+ {{weatherweek.data[0].tem1}}℃
+
+ {{weatherweek.data[0].wea}} 风力{{weatherweek.data[0].hours[0].win_speed}}
+
+
+
+
+
+
+
+ {{item.hours}}
+ {{item.tem}}℃
+ {{item.wea}}
+ {{item.win_speed}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{item.week}}
+ {{huanhang}}
+ {{item.date}}
+
+ {{item.wea}}
+ {{item.tem2}} - {{item.tem1}}℃
+
+
+
+
+
+
+
+
+
+
+
+ 日出
+ {{weatherweek.data[0].sunrise}}
+
+
+
+ 日落
+ {{weatherweek.data[0].sunset}}
+
+
+
+ 降雨率
+ --
+
+
+
+ 潮湿度
+ --
+
+
+
+ 风速
+ {{weatherweek.data[0].win_meter}}
+
+
+
+
+
+
+
+
+ 生活指数
+
+
+
+ 紫外线指数
+ {{weatherweek.data[0].index[0].level}}
+
+
+
+ 血糖指数
+ {{weatherweek.data[0].index[2].level}}
+
+
+
+ 空气质量
+ {{weatherweek.data[0].index[5].level}}
+
+
+
+ 穿衣指数
+ {{weatherweek.data[0].index[3].level}}
+ -
+
+
+
+
+
+
+
+
+
+
+
+
+
\ 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/pages/index/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/pages/index/index.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..13125b7b2ba3cc597ba0349d9b93b859a62acec7
--- /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/pages/index/index.wxss"
@@ -0,0 +1,32 @@
+/**app.wxss**/
+.container {
+ height: 100%;
+ text-align:center; background:#f6f8f8; padding:20rpx;font-size:16px;
+}
+.padb{
+ padding-bottom: 15rpx;
+}
+.label-grid-item{
+ margin-top: 1px;
+ font-size: 14px;
+}
+/*设置包裹*/
+
+.out {
+ background: white;
+ padding: 20px 10px;
+ width: 100%;
+ white-space: nowrap;
+ box-sizing: border-box;
+}
+
+/*设置行内块*/
+
+.out .item {
+ width: 65px;
+ height: 80px;
+ border: 1px solid white;
+ background: white;
+ display: inline-block;
+ margin-right: 10px;
+}
\ 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/pages/logs/logs.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/pages/logs/logs.js"
new file mode 100644
index 0000000000000000000000000000000000000000..b2b967d8ed9d14fb7decf903c9aad84eda43333e
--- /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/pages/logs/logs.js"
@@ -0,0 +1,15 @@
+//logs.js
+const util = require('../../utils/util.js')
+
+Page({
+ data: {
+ logs: []
+ },
+ onLoad: function () {
+ this.setData({
+ logs: (wx.getStorageSync('logs') || []).map(log => {
+ return util.formatTime(new Date(log))
+ })
+ })
+ }
+})
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/pages/logs/logs.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/pages/logs/logs.json"
new file mode 100644
index 0000000000000000000000000000000000000000..3ee76c183c748834923c80f78292e46d739d556e
--- /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/pages/logs/logs.json"
@@ -0,0 +1,4 @@
+{
+ "navigationBarTitleText": "查看启动日志",
+ "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/pages/logs/logs.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/pages/logs/logs.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..b5a85ac67e4158607bed3093dbf541ce76ab4a2a
--- /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/pages/logs/logs.wxml"
@@ -0,0 +1,6 @@
+
+
+
+ {{index + 1}}. {{log}}
+
+
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/pages/logs/logs.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/pages/logs/logs.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..1f3e6b7b07ac35f6990a3b9bb5c201b1441791d1
--- /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/pages/logs/logs.wxss"
@@ -0,0 +1,12 @@
+
+
+
+
+.log-list {
+ display: flex;
+ flex-direction: column;
+ padding: 40rpx;
+}
+.log-item {
+ margin: 10rpx;
+}
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/pages/search/search.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/pages/search/search.js"
new file mode 100644
index 0000000000000000000000000000000000000000..d7ed812081437a2b3def71f57f555093ff5d582b
--- /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/pages/search/search.js"
@@ -0,0 +1,99 @@
+import QQMap from '../../utils/qq-map.js'
+
+const app = getApp();
+Page({
+ data: {
+ isSearch: false,
+ result: [],
+ value: '',
+ hotCity: app.globalData.hotCity,
+ history: [],
+ huanhang:'\n',
+ },
+ inputHandle(e) {
+ console.log('eee1111111111111',e)
+ const { value } = e.detail
+ if (value) {
+ QQMap.getSuggestion({
+ keyword: value,
+ success: (res) => {
+ console.log("inputvalue",res.data)
+ this.setData({
+ isSearch: true,
+ result: res.data,
+ })
+ }
+ });
+ }
+ },
+ onLoad() {
+ this.setData({
+ history: app.getLocal()
+ })
+ },
+ cancelHandle() {
+ wx.navigateBack()
+ },
+ selectItem(e) {
+ console.log("selectItem",e.currentTarget);
+ const { lat, lng } = e.currentTarget.dataset
+ console.log('1e',e);
+ wx.navigateTo({
+ url: `../index/index?latitude=${lat}&longitude=${lng}`
+ })
+ },
+ clearHandle() {
+ this.setData({
+ value: ''
+ })
+ },
+ clearHistory() {
+ wx.removeStorage({ key: 'history'})
+ this.setData({
+ history: []
+ })
+ },
+ dwHandle() {
+ wx.navigateTo({
+ url: `../index/index`
+ })
+ },
+ hotHandle(e) {
+ const { value } = e.currentTarget.dataset
+ console.log('e2222222222222',e);
+ this.setLocal(value)
+ QQMap.geocoder({
+ address: value,
+ success: (res) => {
+ const { location: { lat, lng } } = res.result
+ console.log(2222222222222,res);
+ wx.navigateTo({
+ url: `../index/index?latitude=${lat}&longitude=${lng}`
+ })
+ }
+ });
+ },
+ // 设置历史记录
+ setLocal(val) {
+ console.log('历史记录',val)
+ const arr = app.getLocal()
+ if (!arr.includes(val)) {
+ console.log(arr)
+ arr.push(val)
+ wx.setStorageSync('history', arr)
+ }
+ },
+
+ delHandle(e) {
+ const { value } = e.currentTarget.dataset
+ const arr = app.getLocal()
+ if (arr.includes(value)) {
+ const index = arr.indexOf(value)
+ arr.splice(index, 1)
+ wx.setStorageSync('history', arr)
+ this.setData({
+ history: arr
+ })
+ }
+ }
+})
\ 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/pages/search/search.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/pages/search/search.json"
new file mode 100644
index 0000000000000000000000000000000000000000..8835af0699ccec004cbe685ef938cd2d63ea7037
--- /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/pages/search/search.json"
@@ -0,0 +1,3 @@
+{
+ "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/pages/search/search.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/pages/search/search.wxml"
new file mode 100644
index 0000000000000000000000000000000000000000..24d48b0ff02df64b49db45b54d8804dcbc2273f9
--- /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/pages/search/search.wxml"
@@ -0,0 +1,44 @@
+
+
+
+
+
+
+
+
+
+
+
+ {{item.title}},
+ {{item.city}},
+ {{item.province}}
+
+
+
+ 热门城市
+
+ 当前定位
+ {{item}}
+
+
+ 历史搜索
+
+
+ {{item}}
+
+
+
+ 清空历史
+
+
\ 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/pages/search/search.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/pages/search/search.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..804baa910d7bd353cd2e241704b733463f57396b
--- /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/pages/search/search.wxss"
@@ -0,0 +1,80 @@
+.search-input {
+ padding: 10px;
+ display: flex;
+}
+
+.search-input .input-wrap {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ margin: 0 10px;
+ font-size: 14px;
+ flex: 1;
+}
+.search-input .icon-search {
+ margin-right: 10px;
+}
+.search-input .icon-del {
+ color: #e9e9e9;
+}
+.search-input .input {
+ flex: 1;
+}
+
+.search-input .cancel{
+ font-size: 14px;
+ border: 0;
+}
+
+.result .item {
+ font-size: 12px;
+ padding: 10px;
+}
+
+.history .clear {
+ font-size: 14px;
+}
+
+.default .title {
+ display: block;
+ padding: 10px;
+ font-size: 14px;
+}
+
+.hot,
+.history {
+ width:calc(100% - 20px);
+ margin: auto;
+}
+.hot .item.dw {
+ background: rgb(123, 180, 228);
+ border-radius: 5px;
+ color: #fff;
+}
+
+.hot .item,
+.history .item {
+ float: left;
+ font-size: 14px;
+ width:calc((100% - 30px) / 3);
+ margin-right: 10px;
+ margin-bottom: 10px;
+ text-align: center;
+ line-height: 30px;
+}
+
+.hot .item:nth-child(3n),
+.hot .history:nth-child(3n) {
+ margin-right: 10px;
+}
+
+.history .icon-del {
+ padding: 10px;
+}
+
+.clear-h {
+ color: rgb(211, 210, 210);
+ display: block;
+ font-size: 14px;
+ text-align: center;
+}
\ 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/project.config.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/project.config.json"
new file mode 100644
index 0000000000000000000000000000000000000000..03e23a719bf4a53544db3deb53c0c4863231bea6
--- /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/project.config.json"
@@ -0,0 +1,71 @@
+{
+ "description": "项目配置文件",
+ "packOptions": {
+ "ignore": []
+ },
+ "setting": {
+ "urlCheck": false,
+ "es6": true,
+ "enhance": false,
+ "postcss": true,
+ "preloadBackgroundData": false,
+ "minified": true,
+ "newFeature": true,
+ "coverView": true,
+ "nodeModules": true,
+ "autoAudits": false,
+ "showShadowRootInWxmlPanel": true,
+ "scopeDataCheck": false,
+ "uglifyFileName": false,
+ "checkInvalidKey": true,
+ "checkSiteMap": true,
+ "uploadWithSourceMap": true,
+ "compileHotReLoad": false,
+ "lazyloadPlaceholderEnable": false,
+ "useMultiFrameRuntime": true,
+ "useApiHook": true,
+ "useApiHostProcess": true,
+ "babelSetting": {
+ "ignore": [],
+ "disablePlugins": [],
+ "outputPath": ""
+ },
+ "enableEngineNative": false,
+ "useIsolateContext": true,
+ "userConfirmedBundleSwitch": false,
+ "packNpmManually": true,
+ "packNpmRelationList": [
+ {
+ "packageJsonPath": "./package.json",
+ "miniprogramNpmDistDir": "./"
+ }
+ ],
+ "minifyWXSS": true,
+ "showES6CompileOption": false
+ },
+ "compileType": "miniprogram",
+ "libVersion": "2.11.3",
+ "appid": "wxcf116c60951c5461",
+ "projectname": "芹菜天气",
+ "debugOptions": {
+ "hidedInDevtools": []
+ },
+ "isGameTourist": false,
+ "simulatorType": "wechat",
+ "simulatorPluginLibVersion": {},
+ "condition": {
+ "search": {
+ "list": []
+ },
+ "conversation": {
+ "list": []
+ },
+ "game": {
+ "currentL": -1,
+ "list": []
+ },
+ "miniprogram": {
+ "list": []
+ }
+ }
+}
\ 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/server/type.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/server/type.js"
new file mode 100644
index 0000000000000000000000000000000000000000..a1ef85dd4dd4fc2c8062d5e4ec1c8a30eb130d41
--- /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/server/type.js"
@@ -0,0 +1,6 @@
+const Base = "http://localhost:2222/weather"
+
+export const LocalDetails = `${Base}/`
+export const LocalInfo = `${Base}/local-info`
+export const Recently = `${Base}/recently`
+export const TianQiApi = `${Base}/tianqiapi`
\ 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/sitemap.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/sitemap.json"
new file mode 100644
index 0000000000000000000000000000000000000000..ca02add20b581be471b8d17f887b8e8337070546
--- /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/sitemap.json"
@@ -0,0 +1,7 @@
+{
+ "desc": "关于本文件的更多信息,请参考文档 https://developers.weixin.qq.com/miniprogram/dev/framework/sitemap.html",
+ "rules": [{
+ "action": "allow",
+ "page": "*"
+ }]
+}
\ 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/utils/qq-map.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/utils/qq-map.js"
new file mode 100644
index 0000000000000000000000000000000000000000..254db252bc0b60b8712e2ba63f030baf8eecea71
--- /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/utils/qq-map.js"
@@ -0,0 +1,6 @@
+import QQMapWX from '../libs/qqmap-wx-jssdk.min.js'
+const QQMap = new QQMapWX({
+ key: 'GTDBZ-FUEOK-FXEJU-AGZST-UO6P5-SIBDJ' // key
+})
+
+export default QQMap
\ 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/utils/qqmap-wx-jssdk.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/utils/qqmap-wx-jssdk.js"
new file mode 100644
index 0000000000000000000000000000000000000000..4d53c58e3e2d235fd10b2a6a59c7365527bc14fc
--- /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/utils/qqmap-wx-jssdk.js"
@@ -0,0 +1,462 @@
+/**
+ * 微信小程序JavaScriptSDK
+ *
+ * @version 1.0
+ * @date 2017-01-10
+ * @author jaysonzhou@tencent.com
+ */
+
+var ERROR_CONF = {
+ KEY_ERR: 311,
+ KEY_ERR_MSG: 'key格式错误',
+ PARAM_ERR: 310,
+ PARAM_ERR_MSG: '请求参数信息有误',
+ SYSTEM_ERR: 600,
+ SYSTEM_ERR_MSG: '系统错误',
+ WX_ERR_CODE: 1000,
+ WX_OK_CODE: 200
+};
+var BASE_URL = 'https://apis.map.qq.com/ws/';
+var URL_SEARCH = BASE_URL + 'place/v1/search';
+var URL_SUGGESTION = BASE_URL + 'place/v1/suggestion';
+var URL_GET_GEOCODER = BASE_URL + 'geocoder/v1/';
+var URL_CITY_LIST = BASE_URL + 'district/v1/list';
+var URL_AREA_LIST = BASE_URL + 'district/v1/getchildren';
+var URL_DISTANCE = BASE_URL + 'distance/v1/';
+var Utils = {
+ /**
+ * 得到终点query字符串
+ * @param {Array|String} 检索数据
+ */
+ location2query(data) {
+ if (typeof data == 'string') {
+ return data;
+ }
+ var query = '';
+ for (var i = 0; i < data.length; i++) {
+ var d = data[i];
+ if (!!query) {
+ query += ';';
+ }
+ if (d.location) {
+ query = query + d.location.lat + ',' + d.location.lng;
+ }
+ if (d.latitude && d.longitude) {
+ query = query + d.latitude + ',' + d.longitude;
+ }
+ }
+ return query;
+ },
+
+ /**
+ * 使用微信接口进行定位
+ */
+ getWXLocation(success, fail, complete) {
+ wx.getLocation({
+ type: 'gcj02',
+ success: success,
+ fail: fail,
+ complete: complete
+ });
+ },
+
+ /**
+ * 获取location参数
+ */
+ getLocationParam(location) {
+ if (typeof location == 'string') {
+ var locationArr = location.split(',');
+ if (locationArr.length === 2) {
+ location = {
+ latitude: location.split(',')[0],
+ longitude: location.split(',')[1]
+ };
+ } else {
+ location = {};
+ }
+ }
+ return location;
+ },
+
+ /**
+ * 回调函数默认处理
+ */
+ polyfillParam(param) {
+ param.success = param.success || function () { };
+ param.fail = param.fail || function () { };
+ param.complete = param.complete || function () { };
+ },
+
+ /**
+ * 验证param对应的key值是否为空
+ *
+ * @param {Object} param 接口参数
+ * @param {String} key 对应参数的key
+ */
+ checkParamKeyEmpty(param, key) {
+ if (!param[key]) {
+ var errconf = this.buildErrorConfig(ERROR_CONF.PARAM_ERR, ERROR_CONF.PARAM_ERR_MSG + key +'参数格式有误');
+ param.fail(errconf);
+ param.complete(errconf);
+ return true;
+ }
+ return false;
+ },
+
+ /**
+ * 验证参数中是否存在检索词keyword
+ *
+ * @param {Object} param 接口参数
+ */
+ checkKeyword(param){
+ return !this.checkParamKeyEmpty(param, 'keyword');
+ },
+
+ /**
+ * 验证location值
+ *
+ * @param {Object} param 接口参数
+ */
+ checkLocation(param) {
+ var location = this.getLocationParam(param.location);
+ if (!location || !location.latitude || !location.longitude) {
+ var errconf = this.buildErrorConfig(ERROR_CONF.PARAM_ERR, ERROR_CONF.PARAM_ERR_MSG + ' location参数格式有误')
+ param.fail(errconf);
+ param.complete(errconf);
+ return false;
+ }
+ return true;
+ },
+
+ /**
+ * 构造错误数据结构
+ * @param {Number} errCode 错误码
+ * @param {Number} errMsg 错误描述
+ */
+ buildErrorConfig(errCode, errMsg) {
+ return {
+ status: errCode,
+ message: errMsg
+ };
+ },
+
+ /**
+ * 构造微信请求参数,公共属性处理
+ *
+ * @param {Object} param 接口参数
+ * @param {Object} param 配置项
+ */
+ buildWxRequestConfig(param, options) {
+ var that = this;
+ options.header = { "content-type": "application/json" };
+ options.method = 'GET';
+ options.success = function (res) {
+ var data = res.data;
+ if (data.status === 0) {
+ param.success(data);
+ } else {
+ param.fail(data);
+ }
+ };
+ options.fail = function (res) {
+ res.statusCode = ERROR_CONF.WX_ERR_CODE;
+ param.fail(that.buildErrorConfig(ERROR_CONF.WX_ERR_CODE, result.errMsg));
+ };
+ options.complete = function (res) {
+ var statusCode = +res.statusCode;
+ switch(statusCode) {
+ case ERROR_CONF.WX_ERR_CODE: {
+ param.complete(that.buildErrorConfig(ERROR_CONF.WX_ERR_CODE, res.errMsg));
+ break;
+ }
+ case ERROR_CONF.WX_OK_CODE: {
+ var data = res.data;
+ if (data.status === 0) {
+ param.complete(data);
+ } else {
+ param.complete(that.buildErrorConfig(data.status, data.message));
+ }
+ break;
+ }
+ default:{
+ param.complete(that.buildErrorConfig(ERROR_CONF.SYSTEM_ERR, ERROR_CONF.SYSTEM_ERR_MSG));
+ }
+
+ }
+ }
+ return options;
+ },
+
+ /**
+ * 处理用户参数是否传入坐标进行不同的处理
+ */
+ locationProcess(param, locationsuccess, locationfail, locationcomplete) {
+ var that = this;
+ locationfail = locationfail || function (res) {
+ res.statusCode = ERROR_CONF.WX_ERR_CODE;
+ param.fail(that.buildErrorConfig(ERROR_CONF.WX_ERR_CODE, res.errMsg));
+ };
+ locationcomplete = locationcomplete || function (res) {
+ if (res.statusCode == ERROR_CONF.WX_ERR_CODE) {
+ param.complete(that.buildErrorConfig(ERROR_CONF.WX_ERR_CODE, res.errMsg));
+ }
+ };
+ if (!param.location) {
+ that.getWXLocation(locationsuccess, locationfail, locationcomplete);
+ } else if (that.checkLocation(param)) {
+ var location = Utils.getLocationParam(param.location);
+ locationsuccess(location);
+ }
+ }
+}
+
+
+class QQMapWX {
+
+ /**
+ * 构造函数
+ *
+ * @param {Object} options 接口参数,key 为必选参数
+ */
+ constructor(options) {
+ if (!options.key) {
+ throw Error('key值不能为空');
+ }
+ this.key = options.key;
+ }
+
+ /**
+ * POI周边检索
+ *
+ * @param {Object} options 接口参数对象
+ *
+ * 参数对象结构可以参考
+ * @see http://lbs.qq.com/webservice_v1/guide-search.html
+ */
+ search(options) {
+ var that = this;
+ options = options || {};
+
+ Utils.polyfillParam(options);
+
+ if (!Utils.checkKeyword(options)) {
+ return;
+ }
+
+ var requestParam = {
+ keyword: options.keyword,
+ orderby: options.orderby || '_distance',
+ page_size: options.page_size || 10,
+ page_index: options.page_index || 1,
+ output: 'json',
+ key: that.key
+ };
+
+ if (options.address_format) {
+ requestParam.address_format = options.address_format;
+ }
+
+ if (options.filter) {
+ requestParam.filter = options.filter;
+ }
+
+ var distance = options.distance || "1000";
+ var auto_extend = options.auto_extend || 1;
+
+ var locationsuccess = function (result) {
+ requestParam.boundary = "nearby(" + result.latitude + "," + result.longitude + "," + distance + "," + auto_extend +")";
+ wx.request(Utils.buildWxRequestConfig(options, {
+ url: URL_SEARCH,
+ data: requestParam
+ }));
+ }
+ Utils.locationProcess(options, locationsuccess);
+ }
+
+ /**
+ * sug模糊检索
+ *
+ * @param {Object} options 接口参数对象
+ *
+ * 参数对象结构可以参考
+ * http://lbs.qq.com/webservice_v1/guide-suggestion.html
+ */
+ getSuggestion(options) {
+ var that = this;
+ options = options || {};
+ Utils.polyfillParam(options);
+
+ if (!Utils.checkKeyword(options)) {
+ return;
+ }
+
+ var requestParam = {
+ keyword: options.keyword,
+ region: options.region || '全国',
+ region_fix: options.region_fix || 0,
+ policy: options.policy || 0,
+ output: 'json',
+ key: that.key
+ };
+ wx.request(Utils.buildWxRequestConfig(options, {
+ url: URL_SUGGESTION,
+ data: requestParam
+ }));
+ }
+
+ /**
+ * 逆地址解析
+ *
+ * @param {Object} options 接口参数对象
+ *
+ * 请求参数结构可以参考
+ * http://lbs.qq.com/webservice_v1/guide-gcoder.html
+ */
+ reverseGeocoder(options) {
+ var that = this;
+ options = options || {};
+ Utils.polyfillParam(options);
+ var requestParam = {
+ coord_type: options.coord_type || 5,
+ get_poi: options.get_poi || 0,
+ output: 'json',
+ key: that.key
+ };
+ if (options.poi_options) {
+ requestParam.poi_options = options.poi_options
+ }
+
+ var locationsuccess = function (result) {
+ requestParam.location = result.latitude + ',' + result.longitude;
+ wx.request(Utils.buildWxRequestConfig(options, {
+ url: URL_GET_GEOCODER,
+ data: requestParam
+ }));
+ };
+ Utils.locationProcess(options, locationsuccess);
+ }
+
+ /**
+ * 地址解析
+ *
+ * @param {Object} options 接口参数对象
+ *
+ * 请求参数结构可以参考
+ * http://lbs.qq.com/webservice_v1/guide-geocoder.html
+ */
+ geocoder(options) {
+ var that = this;
+ options = options || {};
+ Utils.polyfillParam(options);
+
+ if (Utils.checkParamKeyEmpty(options, 'address')) {
+ return;
+ }
+
+ var requestParam = {
+ address: options.address,
+ output: 'json',
+ key: that.key
+ };
+
+ wx.request(Utils.buildWxRequestConfig(options, {
+ url: URL_GET_GEOCODER,
+ data: requestParam
+ }));
+ }
+
+
+ /**
+ * 获取城市列表
+ *
+ * @param {Object} options 接口参数对象
+ *
+ * 请求参数结构可以参考
+ * http://lbs.qq.com/webservice_v1/guide-region.html
+ */
+ getCityList(options) {
+ var that = this;
+ options = options || {};
+ Utils.polyfillParam(options);
+ var requestParam = {
+ output: 'json',
+ key: that.key
+ };
+
+ wx.request(Utils.buildWxRequestConfig(options, {
+ url: URL_CITY_LIST,
+ data: requestParam
+ }));
+ }
+
+ /**
+ * 获取对应城市ID的区县列表
+ *
+ * @param {Object} options 接口参数对象
+ *
+ * 请求参数结构可以参考
+ * http://lbs.qq.com/webservice_v1/guide-region.html
+ */
+ getDistrictByCityId(options) {
+ var that = this;
+ options = options || {};
+ Utils.polyfillParam(options);
+
+ if (Utils.checkParamKeyEmpty(options, 'id')) {
+ return;
+ }
+
+ var requestParam = {
+ id: options.id || '',
+ output: 'json',
+ key: that.key
+ };
+
+ wx.request(Utils.buildWxRequestConfig(options, {
+ url: URL_AREA_LIST,
+ data: requestParam
+ }));
+ }
+
+ /**
+ * 用于单起点到多终点的路线距离(非直线距离)计算:
+ * 支持两种距离计算方式:步行和驾车。
+ * 起点到终点最大限制直线距离10公里。
+ *
+ * @param {Object} options 接口参数对象
+ *
+ * 请求参数结构可以参考
+ * http://lbs.qq.com/webservice_v1/guide-distance.html
+ */
+ calculateDistance(options) {
+ var that = this;
+ options = options || {};
+ Utils.polyfillParam(options);
+
+ if (Utils.checkParamKeyEmpty(options, 'to')) {
+ return;
+ }
+
+ var requestParam = {
+ mode: options.mode || 'walking',
+ to: Utils.location2query(options.to),
+ output: 'json',
+ key: that.key
+ };
+
+ var locationsuccess = function (result) {
+ requestParam.from = result.latitude + ',' + result.longitude;
+ wx.request(Utils.buildWxRequestConfig(options, {
+ url: URL_DISTANCE,
+ data: requestParam
+ }));
+ }
+ if (options.from) {
+ options.location = options.from;
+ }
+
+ Utils.locationProcess(options, locationsuccess);
+ }
+}
+
+module.exports = QQMapWX;
\ 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/utils/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/utils/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/utils/qqmap-wx-jssdk.min.js"
@@ -0,0 +1,2 @@
+var _createClass=function(){function a(e,c){for(var b=0;b {
+ const _city = CityCode.find(i => {
+ const regCit = new RegExp(i.cityZh)
+ return regCit.test(cityName)
+ })
+ return {
+ ..._city,
+ id: _city.id.replace('CN', '')
+ }
+}
+
+
+const formatTime = date => {
+ const year = date.getFullYear()
+ const month = date.getMonth() + 1
+ const day = date.getDate()
+ const hour = date.getHours()
+ const minute = date.getMinutes()
+ const second = date.getSeconds()
+
+ return [year, month, day].map(formatNumber).join('/') + ' ' + [hour, minute, second].map(formatNumber).join(':')
+}
+
+const formatNumber = n => {
+ n = n.toString()
+ return n[1] ? n : '0' + n
+}
+module.exports = {
+ formatTime,
+ getCity
+}
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/weui/base/fn.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/weui/base/fn.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..a83d320fe0b32d0984ea6c27368ff45d6d3374c7
--- /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/weui/base/fn.wxss"
@@ -0,0 +1,5 @@
+/*!
+ * WeUI v1.1.1 (https://github.com/weui/weui-wxss)
+ * Copyright 2017 Tencent, Inc.
+ * Licensed under the MIT license
+ */
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/weui/base/mixin/setArrow.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/weui/base/mixin/setArrow.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..a83d320fe0b32d0984ea6c27368ff45d6d3374c7
--- /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/weui/base/mixin/setArrow.wxss"
@@ -0,0 +1,5 @@
+/*!
+ * WeUI v1.1.1 (https://github.com/weui/weui-wxss)
+ * Copyright 2017 Tencent, Inc.
+ * Licensed under the MIT license
+ */
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/weui/base/mixin/setOnepx.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/weui/base/mixin/setOnepx.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..a83d320fe0b32d0984ea6c27368ff45d6d3374c7
--- /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/weui/base/mixin/setOnepx.wxss"
@@ -0,0 +1,5 @@
+/*!
+ * WeUI v1.1.1 (https://github.com/weui/weui-wxss)
+ * Copyright 2017 Tencent, Inc.
+ * Licensed under the MIT license
+ */
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/weui/base/mixin/text.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/weui/base/mixin/text.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..a83d320fe0b32d0984ea6c27368ff45d6d3374c7
--- /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/weui/base/mixin/text.wxss"
@@ -0,0 +1,5 @@
+/*!
+ * WeUI v1.1.1 (https://github.com/weui/weui-wxss)
+ * Copyright 2017 Tencent, Inc.
+ * Licensed under the MIT license
+ */
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/weui/base/reset.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/weui/base/reset.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..b702157e068c27cd8ff0dc295c8331a571826686
--- /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/weui/base/reset.wxss"
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v1.1.1 (https://github.com/weui/weui-wxss)
+ * Copyright 2017 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+page{line-height:1.6;font-family:-apple-system-font,Helvetica Neue,sans-serif}icon{vertical-align:middle}
\ 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/weui/base/variable/color.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/weui/base/variable/color.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..a83d320fe0b32d0984ea6c27368ff45d6d3374c7
--- /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/weui/base/variable/color.wxss"
@@ -0,0 +1,5 @@
+/*!
+ * WeUI v1.1.1 (https://github.com/weui/weui-wxss)
+ * Copyright 2017 Tencent, Inc.
+ * Licensed under the MIT license
+ */
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/weui/base/variable/global.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/weui/base/variable/global.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..a83d320fe0b32d0984ea6c27368ff45d6d3374c7
--- /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/weui/base/variable/global.wxss"
@@ -0,0 +1,5 @@
+/*!
+ * WeUI v1.1.1 (https://github.com/weui/weui-wxss)
+ * Copyright 2017 Tencent, Inc.
+ * Licensed under the MIT license
+ */
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/weui/base/variable/weui-button.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/weui/base/variable/weui-button.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..a83d320fe0b32d0984ea6c27368ff45d6d3374c7
--- /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/weui/base/variable/weui-button.wxss"
@@ -0,0 +1,5 @@
+/*!
+ * WeUI v1.1.1 (https://github.com/weui/weui-wxss)
+ * Copyright 2017 Tencent, Inc.
+ * Licensed under the MIT license
+ */
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/weui/base/variable/weui-cell.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/weui/base/variable/weui-cell.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..a83d320fe0b32d0984ea6c27368ff45d6d3374c7
--- /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/weui/base/variable/weui-cell.wxss"
@@ -0,0 +1,5 @@
+/*!
+ * WeUI v1.1.1 (https://github.com/weui/weui-wxss)
+ * Copyright 2017 Tencent, Inc.
+ * Licensed under the MIT license
+ */
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/weui/base/variable/weui-dialog.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/weui/base/variable/weui-dialog.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..a83d320fe0b32d0984ea6c27368ff45d6d3374c7
--- /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/weui/base/variable/weui-dialog.wxss"
@@ -0,0 +1,5 @@
+/*!
+ * WeUI v1.1.1 (https://github.com/weui/weui-wxss)
+ * Copyright 2017 Tencent, Inc.
+ * Licensed under the MIT license
+ */
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/weui/base/variable/weui-grid.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/weui/base/variable/weui-grid.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..a83d320fe0b32d0984ea6c27368ff45d6d3374c7
--- /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/weui/base/variable/weui-grid.wxss"
@@ -0,0 +1,5 @@
+/*!
+ * WeUI v1.1.1 (https://github.com/weui/weui-wxss)
+ * Copyright 2017 Tencent, Inc.
+ * Licensed under the MIT license
+ */
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/weui/base/variable/weui-msg.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/weui/base/variable/weui-msg.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..a83d320fe0b32d0984ea6c27368ff45d6d3374c7
--- /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/weui/base/variable/weui-msg.wxss"
@@ -0,0 +1,5 @@
+/*!
+ * WeUI v1.1.1 (https://github.com/weui/weui-wxss)
+ * Copyright 2017 Tencent, Inc.
+ * Licensed under the MIT license
+ */
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/weui/base/variable/weui-progress.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/weui/base/variable/weui-progress.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..a83d320fe0b32d0984ea6c27368ff45d6d3374c7
--- /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/weui/base/variable/weui-progress.wxss"
@@ -0,0 +1,5 @@
+/*!
+ * WeUI v1.1.1 (https://github.com/weui/weui-wxss)
+ * Copyright 2017 Tencent, Inc.
+ * Licensed under the MIT license
+ */
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/weui/weui.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/weui/weui.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..3d6cfacfa71a08316e9ef193616fae47fbcd5eaa
--- /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/weui/weui.wxss"
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v1.1.1 (https://github.com/weui/weui-wxss)
+ * Copyright 2017 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+page{line-height:1.6;font-family:-apple-system-font,Helvetica Neue,sans-serif}icon{vertical-align:middle}.weui-cells{position:relative;margin-top:1.17647059em;background-color:#fff;line-height:1.41176471;font-size:17px}.weui-cells:before{top:0;border-top:1rpx solid #d9d9d9}.weui-cells:after,.weui-cells:before{content:" ";position:absolute;left:0;right:0;height:1px;color:#d9d9d9}.weui-cells:after{bottom:0;border-bottom:1rpx solid #d9d9d9}.weui-cells__title{margin-top:.77em;margin-bottom:.3em;padding-left:15px;padding-right:15px;color:#999;font-size:14px}.weui-cells_after-title{margin-top:0}.weui-cells__tips{margin-top:.3em;color:#999;padding-left:15px;padding-right:15px;font-size:14px}.weui-cell{padding:10px 15px;position:relative;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.weui-cell:before{content:" ";position:absolute;left:0;top:0;right:0;height:1px;border-top:1rpx solid #d9d9d9;color:#d9d9d9;left:15px}.weui-cell:first-child:before{display:none}.weui-cell_active{background-color:#ececec}.weui-cell_primary{-webkit-box-align:start;-webkit-align-items:flex-start;align-items:flex-start}.weui-cell__bd{-webkit-box-flex:1;-webkit-flex:1;flex:1}.weui-cell__ft{text-align:right;color:#999}.weui-cell_access{color:inherit}.weui-cell__ft_in-access{padding-right:13px;position:relative}.weui-cell__ft_in-access:after{content:" ";display:inline-block;height:6px;width:6px;border-width:2px 2px 0 0;border-color:#c8c8cd;border-style:solid;-webkit-transform:matrix(.71,.71,-.71,.71,0,0);transform:matrix(.71,.71,-.71,.71,0,0);position:relative;top:-2px;position:absolute;top:50%;margin-top:-4px;right:2px}.weui-cell_link{color:#586c94;font-size:14px}.weui-cell_link:active{background-color:#ececec}.weui-cell_link:first-child:before{display:block}.weui-icon-radio{margin-left:3.2px;margin-right:3.2px}.weui-icon-checkbox_circle,.weui-icon-checkbox_success{margin-left:4.6px;margin-right:4.6px}.weui-check__label:active{background-color:#ececec}.weui-check{position:absolute;left:-9999px}.weui-check__hd_in-checkbox{padding-right:.35em}.weui-cell__ft_in-radio{padding-left:.35em}.weui-cell_input{padding-top:0;padding-bottom:0}.weui-label{width:105px;word-wrap:break-word;word-break:break-all}.weui-input{height:2.58823529em;min-height:2.58823529em;line-height:2.58823529em}.weui-toptips{position:fixed;-webkit-transform:translateZ(0);transform:translateZ(0);top:0;left:0;right:0;padding:5px;font-size:14px;text-align:center;color:#fff;z-index:5000;word-wrap:break-word;word-break:break-all}.weui-toptips_warn{background-color:#e64340}.weui-textarea{display:block;width:100%}.weui-textarea-counter{color:#b2b2b2;text-align:right}.weui-cell_warn,.weui-textarea-counter_warn{color:#e64340}.weui-form-preview{position:relative;background-color:#fff}.weui-form-preview:before{top:0;border-top:1rpx solid #d9d9d9}.weui-form-preview:after,.weui-form-preview:before{content:" ";position:absolute;left:0;right:0;height:1px;color:#d9d9d9}.weui-form-preview:after{bottom:0;border-bottom:1rpx solid #d9d9d9}.weui-form-preview__value{font-size:14px}.weui-form-preview__value_in-hd{font-size:26px}.weui-form-preview__hd{position:relative;padding:10px 15px;text-align:right;line-height:2.5em}.weui-form-preview__hd:after{content:" ";position:absolute;left:0;bottom:0;right:0;height:1px;border-bottom:1rpx solid #d9d9d9;color:#d9d9d9;left:15px}.weui-form-preview__bd{padding:10px 15px;font-size:.9em;text-align:right;color:#999;line-height:2}.weui-form-preview__ft{position:relative;line-height:50px;display:-webkit-box;display:-webkit-flex;display:flex}.weui-form-preview__ft:after{content:" ";position:absolute;left:0;top:0;right:0;height:1px;border-top:1rpx solid #d5d5d6;color:#d5d5d6}.weui-form-preview__item{overflow:hidden}.weui-form-preview__label{float:left;margin-right:1em;min-width:4em;color:#999;text-align:justify;text-align-last:justify}.weui-form-preview__value{display:block;overflow:hidden;word-break:normal;word-wrap:break-word}.weui-form-preview__btn{position:relative;display:block;-webkit-box-flex:1;-webkit-flex:1;flex:1;color:#3cc51f;text-align:center}.weui-form-preview__btn:after{content:" ";position:absolute;left:0;top:0;width:1px;bottom:0;border-left:1rpx solid #d5d5d6;color:#d5d5d6}.weui-form-preview__btn:first-child:after{display:none}.weui-form-preview__btn_active{background-color:#eee}.weui-form-preview__btn_default{color:#999}.weui-form-preview__btn_primary{color:#0bb20c}.weui-cell_select{padding:0}.weui-select{position:relative;padding-left:15px;padding-right:30px;height:2.58823529em;min-height:2.58823529em;line-height:2.58823529em;border-right:1rpx solid #d9d9d9}.weui-select:before{content:" ";display:inline-block;height:6px;width:6px;border-width:2px 2px 0 0;border-color:#c8c8cd;border-style:solid;-webkit-transform:matrix(.71,.71,-.71,.71,0,0);transform:matrix(.71,.71,-.71,.71,0,0);position:relative;top:-2px;position:absolute;top:50%;right:15px;margin-top:-4px}.weui-select_in-select-after{padding-left:0}.weui-cell__bd_in-select-before,.weui-cell__hd_in-select-after{padding-left:15px}.weui-cell_vcode{padding-right:0}.weui-vcode-btn,.weui-vcode-img{margin-left:5px;height:2.58823529em;vertical-align:middle}.weui-vcode-btn{display:inline-block;padding:0 .6em 0 .7em;border-left:1px solid #e5e5e5;line-height:2.58823529em;font-size:17px;color:#3cc51f;white-space:nowrap}.weui-vcode-btn:active{color:#52a341}.weui-cell_switch{padding-top:6px;padding-bottom:6px}.weui-uploader__hd{display:-webkit-box;display:-webkit-flex;display:flex;padding-bottom:10px;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.weui-uploader__title{-webkit-box-flex:1;-webkit-flex:1;flex:1}.weui-uploader__info{color:#b2b2b2}.weui-uploader__bd{margin-bottom:-4px;margin-right:-9px;overflow:hidden}.weui-uploader__file{float:left;margin-right:9px;margin-bottom:9px}.weui-uploader__img{display:block;width:79px;height:79px}.weui-uploader__file_status{position:relative}.weui-uploader__file_status:before{content:" ";position:absolute;top:0;right:0;bottom:0;left:0;background-color:rgba(0,0,0,.5)}.weui-uploader__file-content{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);color:#fff}.weui-uploader__input-box{float:left;position:relative;margin-right:9px;margin-bottom:9px;width:77px;height:77px;border:1px solid #d9d9d9}.weui-uploader__input-box:after,.weui-uploader__input-box:before{content:" ";position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);background-color:#d9d9d9}.weui-uploader__input-box:before{width:2px;height:39.5px}.weui-uploader__input-box:after{width:39.5px;height:2px}.weui-uploader__input-box:active{border-color:#999}.weui-uploader__input-box:active:after,.weui-uploader__input-box:active:before{background-color:#999}.weui-uploader__input{position:absolute;z-index:1;top:0;left:0;width:100%;height:100%;opacity:0}.weui-article{padding:20px 15px;font-size:15px}.weui-article__section{margin-bottom:1.5em}.weui-article__h1{font-size:18px;font-weight:400;margin-bottom:.9em}.weui-article__h2{font-size:16px;font-weight:400;margin-bottom:.34em}.weui-article__h3{font-weight:400;font-size:15px;margin-bottom:.34em}.weui-article__p{margin:0 0 .8em}.weui-msg{padding-top:36px;text-align:center}.weui-msg__link{display:inline;color:#586c94}.weui-msg__icon-area{margin-bottom:30px}.weui-msg__text-area{margin-bottom:25px;padding:0 20px}.weui-msg__title{margin-bottom:5px;font-weight:400;font-size:20px}.weui-msg__desc{font-size:14px;color:#999}.weui-msg__opr-area{margin-bottom:25px}.weui-msg__extra-area{margin-bottom:15px;font-size:14px;color:#999}@media screen and (min-height:438px){.weui-msg__extra-area{position:fixed;left:0;bottom:0;width:100%;text-align:center}}.weui-flex{display:-webkit-box;display:-webkit-flex;display:flex}.weui-flex__item{-webkit-box-flex:1;-webkit-flex:1;flex:1}.weui-btn{margin-top:15px}.weui-btn:first-child{margin-top:0}.weui-btn-area{margin:1.17647059em 15px .3em}.weui-agree{display:block;padding:.5em 15px;font-size:13px}.weui-agree__text{color:#999}.weui-agree__link{display:inline;color:#586c94}.weui-agree__checkbox{position:absolute;left:-9999px}.weui-agree__checkbox-icon{position:relative;top:2px;display:inline-block;border:1px solid #d1d1d1;background-color:#fff;border-radius:3px;width:11px;height:11px}.weui-agree__checkbox-icon-check{position:absolute;top:1px;left:1px}.weui-footer{color:#999;font-size:14px;text-align:center}.weui-footer_fixed-bottom{position:fixed;bottom:.52em;left:0;right:0}.weui-footer__links{font-size:0}.weui-footer__link{display:inline-block;vertical-align:top;margin:0 .62em;position:relative;font-size:14px;color:#586c94}.weui-footer__link:before{content:" ";position:absolute;left:0;top:0;width:1px;bottom:0;border-left:1rpx solid #c7c7c7;color:#c7c7c7;left:-.65em;top:.36em;bottom:.36em}.weui-footer__link:first-child:before{display:none}.weui-footer__text{padding:0 .34em;font-size:12px}.weui-grids{border-top:1rpx solid #d9d9d9;border-left:1rpx solid #d9d9d9;overflow:hidden}.weui-grid{position:relative;float:left;padding:20px 10px;width:33.33333333%;box-sizing:border-box;border-right:1rpx solid #d9d9d9;border-bottom:1rpx solid #d9d9d9}.weui-grid_active{background-color:#ececec}.weui-grid__icon{display:block;width:28px;height:28px;margin:0 auto}.weui-grid__label{margin-top:5px;display:block;text-align:center;color:#000;font-size:14px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.weui-loading{margin:0 5px;width:20px;height:20px;display:inline-block;vertical-align:middle;-webkit-animation:a 1s steps(12) infinite;animation:a 1s steps(12) infinite;background:transparent url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMjAiIGhlaWdodD0iMTIwIiB2aWV3Qm94PSIwIDAgMTAwIDEwMCI+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgxMDB2MTAwSDB6Ii8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjRTlFOUU5IiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgLTMwKSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iIzk4OTY5NyIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSgzMCAxMDUuOTggNjUpIi8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjOUI5OTlBIiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0icm90YXRlKDYwIDc1Ljk4IDY1KSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iI0EzQTFBMiIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSg5MCA2NSA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNBQkE5QUEiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoMTIwIDU4LjY2IDY1KSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iI0IyQjJCMiIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSgxNTAgNTQuMDIgNjUpIi8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjQkFCOEI5IiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0icm90YXRlKDE4MCA1MCA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNDMkMwQzEiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoLTE1MCA0NS45OCA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNDQkNCQ0IiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoLTEyMCA0MS4zNCA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNEMkQyRDIiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoLTkwIDM1IDY1KSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iI0RBREFEQSIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSgtNjAgMjQuMDIgNjUpIi8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjRTJFMkUyIiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0icm90YXRlKC0zMCAtNS45OCA2NSkiLz48L3N2Zz4=) no-repeat;background-size:100%}.weui-loading.weui-loading_transparent{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 100 100'%3E%3Cpath fill='none' d='M0 0h100v100H0z'/%3E%3Crect xmlns='http://www.w3.org/2000/svg' width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.56)' rx='5' ry='5' transform='translate(0 -30)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.5)' rx='5' ry='5' transform='rotate(30 105.98 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.43)' rx='5' ry='5' transform='rotate(60 75.98 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.38)' rx='5' ry='5' transform='rotate(90 65 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.32)' rx='5' ry='5' transform='rotate(120 58.66 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.28)' rx='5' ry='5' transform='rotate(150 54.02 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.25)' rx='5' ry='5' transform='rotate(180 50 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.2)' rx='5' ry='5' transform='rotate(-150 45.98 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.17)' rx='5' ry='5' transform='rotate(-120 41.34 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.14)' rx='5' ry='5' transform='rotate(-90 35 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.1)' rx='5' ry='5' transform='rotate(-60 24.02 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.03)' rx='5' ry='5' transform='rotate(-30 -5.98 65)'/%3E%3C/svg%3E")}@-webkit-keyframes a{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes a{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.weui-badge{display:inline-block;padding:.15em .4em;min-width:8px;border-radius:18px;background-color:#e64340;color:#fff;line-height:1.2;text-align:center;font-size:12px;vertical-align:middle}.weui-badge_dot{padding:.4em;min-width:0}.weui-loadmore{width:65%;margin:1.5em auto;line-height:1.6em;font-size:14px;text-align:center}.weui-loadmore__tips{display:inline-block;vertical-align:middle}.weui-loadmore_line{border-top:1px solid #e5e5e5;margin-top:2.4em}.weui-loadmore__tips_in-line{position:relative;top:-.9em;padding:0 .55em;background-color:#fff;color:#999}.weui-loadmore__tips_in-dot{position:relative;padding:0 .16em;width:4px;height:1.6em}.weui-loadmore__tips_in-dot:before{content:" ";position:absolute;top:50%;left:50%;margin-top:-1px;margin-left:-2px;width:4px;height:4px;border-radius:50%;background-color:#e5e5e5}.weui-panel{background-color:#fff;margin-top:10px;position:relative;overflow:hidden}.weui-panel:first-child{margin-top:0}.weui-panel:before{top:0;border-top:1rpx solid #e5e5e5}.weui-panel:after,.weui-panel:before{content:" ";position:absolute;left:0;right:0;height:1px;color:#e5e5e5}.weui-panel:after{bottom:0;border-bottom:1rpx solid #e5e5e5}.weui-panel__hd{padding:14px 15px 10px;color:#999;font-size:13px;position:relative}.weui-panel__hd:after{content:" ";position:absolute;left:0;bottom:0;right:0;height:1px;border-bottom:1rpx solid #e5e5e5;color:#e5e5e5;left:15px}.weui-media-box{padding:15px;position:relative}.weui-media-box:before{content:" ";position:absolute;left:0;top:0;right:0;height:1px;border-top:1rpx solid #e5e5e5;color:#e5e5e5;left:15px}.weui-media-box:first-child:before{display:none}.weui-media-box__title{font-weight:400;font-size:17px;width:auto;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;word-wrap:normal;word-wrap:break-word;word-break:break-all}.weui-media-box__desc{color:#999;font-size:13px;line-height:1.2;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2}.weui-media-box__info{margin-top:15px;padding-bottom:5px;font-size:13px;color:#cecece;line-height:1em;list-style:none;overflow:hidden}.weui-media-box__info__meta{float:left;padding-right:1em}.weui-media-box__info__meta_extra{padding-left:1em;border-left:1px solid #cecece}.weui-media-box__title_in-text{margin-bottom:8px}.weui-media-box_appmsg{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.weui-media-box__thumb{width:100%;height:100%;vertical-align:top}.weui-media-box__hd_in-appmsg{margin-right:.8em;width:60px;height:60px;line-height:60px;text-align:center}.weui-media-box__bd_in-appmsg{-webkit-box-flex:1;-webkit-flex:1;flex:1;min-width:0}.weui-media-box_small-appmsg{padding:0}.weui-cells_in-small-appmsg{margin-top:0}.weui-cells_in-small-appmsg:before{display:none}.weui-progress{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.weui-progress__bar{-webkit-box-flex:1;-webkit-flex:1;flex:1}.weui-progress__opr{margin-left:15px;font-size:0}.weui-navbar{display:-webkit-box;display:-webkit-flex;display:flex;position:absolute;z-index:500;top:0;width:100%;border-bottom:1rpx solid #ccc}.weui-navbar__item{position:relative;display:block;-webkit-box-flex:1;-webkit-flex:1;flex:1;padding:13px 0;text-align:center;font-size:0}.weui-navbar__item.weui-bar__item_on{color:#1aad19}.weui-navbar__slider{position:absolute;content:" ";left:0;bottom:0;width:6em;height:3px;background-color:#1aad19;-webkit-transition:-webkit-transform .3s;transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s,-webkit-transform .3s}.weui-navbar__title{display:inline-block;font-size:15px;max-width:8em;width:auto;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;word-wrap:normal}.weui-tab{position:relative;height:100%}.weui-tab__panel{box-sizing:border-box;height:100%;padding-top:50px;overflow:auto;-webkit-overflow-scrolling:touch}.weui-search-bar{position:relative;padding:8px 10px;display:-webkit-box;display:-webkit-flex;display:flex;box-sizing:border-box;background-color:#efeff4;border-top:1rpx solid #d7d6dc;border-bottom:1rpx solid #d7d6dc}.weui-icon-search{margin-right:8px;font-size:inherit}.weui-icon-search_in-box{position:absolute;left:10px;top:7px}.weui-search-bar__text{display:inline-block;font-size:14px;vertical-align:middle}.weui-search-bar__form{position:relative;-webkit-box-flex:1;-webkit-flex:auto;flex:auto;border-radius:5px;background:#fff;border:1rpx solid #e6e6ea}.weui-search-bar__box{position:relative;padding-left:30px;padding-right:30px;width:100%;box-sizing:border-box;z-index:1}.weui-search-bar__input{height:28px;line-height:28px;font-size:14px}.weui-icon-clear{position:absolute;top:0;right:0;padding:7px 8px;font-size:0}.weui-search-bar__label{position:absolute;top:0;right:0;bottom:0;left:0;z-index:2;border-radius:3px;text-align:center;color:#9b9b9b;background:#fff;line-height:28px}.weui-search-bar__cancel-btn{margin-left:10px;line-height:28px;color:#09bb07;white-space:nowrap}
\ 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/weui/widget/weui-agree/weui-agree.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/weui/widget/weui-agree/weui-agree.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..22edb23e17e329e0c887fbe5f84d6703bd086760
--- /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/weui/widget/weui-agree/weui-agree.wxss"
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v1.1.1 (https://github.com/weui/weui-wxss)
+ * Copyright 2017 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-agree{display:block;padding:.5em 15px;font-size:13px}.weui-agree__text{color:#999}.weui-agree__link{display:inline;color:#586c94}.weui-agree__checkbox{position:absolute;left:-9999px}.weui-agree__checkbox-icon{position:relative;top:2px;display:inline-block;border:1px solid #d1d1d1;background-color:#fff;border-radius:3px;width:11px;height:11px}.weui-agree__checkbox-icon-check{position:absolute;top:1px;left: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/weui/widget/weui-animate/weui-animate.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/weui/widget/weui-animate/weui-animate.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..30cf15044b8e4c1eea24896b3f08b999ecd52412
--- /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/weui/widget/weui-animate/weui-animate.wxss"
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v1.1.1 (https://github.com/weui/weui-wxss)
+ * Copyright 2017 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+@-webkit-keyframes a{0%{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes a{0%{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.weui-animate-slide-up{-webkit-animation:a ease .3s forwards;animation:a ease .3s forwards}@-webkit-keyframes b{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes b{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.weui-animate-slide-down{-webkit-animation:b ease .3s forwards;animation:b ease .3s forwards}@-webkit-keyframes c{0%{opacity:0}to{opacity:1}}@keyframes c{0%{opacity:0}to{opacity:1}}.weui-animate-fade-in{-webkit-animation:c ease .3s forwards;animation:c ease .3s forwards}@-webkit-keyframes d{0%{opacity:1}to{opacity:0}}@keyframes d{0%{opacity:1}to{opacity:0}}.weui-animate-fade-out{-webkit-animation:d ease .3s forwards;animation:d ease .3s forwards}
\ 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/weui/widget/weui-button/weui-button.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/weui/widget/weui-button/weui-button.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..e6fa993560c18d51464fe50f0552f209d7b82fb6
--- /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/weui/widget/weui-button/weui-button.wxss"
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v1.1.1 (https://github.com/weui/weui-wxss)
+ * Copyright 2017 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-btn{margin-top:15px}.weui-btn:first-child{margin-top:0}.weui-btn-area{margin:1.17647059em 15px .3em}
\ 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/weui/widget/weui-cell/weui-access.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/weui/widget/weui-cell/weui-access.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..e797ca20177f00ed80041a9e06f2365b2de2eb9d
--- /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/weui/widget/weui-cell/weui-access.wxss"
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v1.1.1 (https://github.com/weui/weui-wxss)
+ * Copyright 2017 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-cell_access{color:inherit}.weui-cell__ft_in-access{padding-right:13px;position:relative}.weui-cell__ft_in-access:after{content:" ";display:inline-block;height:6px;width:6px;border-width:2px 2px 0 0;border-color:#c8c8cd;border-style:solid;-webkit-transform:matrix(.71,.71,-.71,.71,0,0);transform:matrix(.71,.71,-.71,.71,0,0);position:relative;top:-2px;position:absolute;top:50%;margin-top:-4px;right:2px}.weui-cell_link{color:#586c94;font-size:14px}.weui-cell_link:active{background-color:#ececec}.weui-cell_link:first-child:before{display:block}
\ 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/weui/widget/weui-cell/weui-cell.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/weui/widget/weui-cell/weui-cell.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..652bc1dc8461773d4d53b276628854dc615dea62
--- /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/weui/widget/weui-cell/weui-cell.wxss"
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v1.1.1 (https://github.com/weui/weui-wxss)
+ * Copyright 2017 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-cells{position:relative;margin-top:1.17647059em;background-color:#fff;line-height:1.41176471;font-size:17px}.weui-cells:before{top:0;border-top:1rpx solid #d9d9d9}.weui-cells:after,.weui-cells:before{content:" ";position:absolute;left:0;right:0;height:1px;color:#d9d9d9}.weui-cells:after{bottom:0;border-bottom:1rpx solid #d9d9d9}.weui-cells__title{margin-top:.77em;margin-bottom:.3em;padding-left:15px;padding-right:15px;color:#999;font-size:14px}.weui-cells_after-title{margin-top:0}.weui-cells__tips{margin-top:.3em;color:#999;padding-left:15px;padding-right:15px;font-size:14px}.weui-cell{padding:10px 15px;position:relative;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.weui-cell:before{content:" ";position:absolute;left:0;top:0;right:0;height:1px;border-top:1rpx solid #d9d9d9;color:#d9d9d9;left:15px}.weui-cell:first-child:before{display:none}.weui-cell_active{background-color:#ececec}.weui-cell_primary{-webkit-box-align:start;-webkit-align-items:flex-start;align-items:flex-start}.weui-cell__bd{-webkit-box-flex:1;-webkit-flex:1;flex:1}.weui-cell__ft{text-align:right;color:#999}
\ 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/weui/widget/weui-cell/weui-check.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/weui/widget/weui-cell/weui-check.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..5c3de674d9b3309b9f30d872a0d817e5ed07e109
--- /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/weui/widget/weui-cell/weui-check.wxss"
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v1.1.1 (https://github.com/weui/weui-wxss)
+ * Copyright 2017 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-icon-radio{margin-left:3.2px;margin-right:3.2px}.weui-icon-checkbox_circle,.weui-icon-checkbox_success{margin-left:4.6px;margin-right:4.6px}.weui-check__label:active{background-color:#ececec}.weui-check{position:absolute;left:-9999px}.weui-check__hd_in-checkbox{padding-right:.35em}.weui-cell__ft_in-radio{padding-left:.35em}
\ 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/weui/widget/weui-cell/weui-form.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/weui/widget/weui-cell/weui-form.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..0c0b93c340690d45d3e46916a6669e817e3654d9
--- /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/weui/widget/weui-cell/weui-form.wxss"
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v1.1.1 (https://github.com/weui/weui-wxss)
+ * Copyright 2017 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-cell_input{padding-top:0;padding-bottom:0}.weui-label{width:105px;word-wrap:break-word;word-break:break-all}.weui-input{height:2.58823529em;min-height:2.58823529em;line-height:2.58823529em}.weui-toptips{position:fixed;-webkit-transform:translateZ(0);transform:translateZ(0);top:0;left:0;right:0;padding:5px;font-size:14px;text-align:center;color:#fff;z-index:5000;word-wrap:break-word;word-break:break-all}.weui-toptips_warn{background-color:#e64340}.weui-textarea{display:block;width:100%}.weui-textarea-counter{color:#b2b2b2;text-align:right}.weui-cell_warn,.weui-textarea-counter_warn{color:#e64340}.weui-form-preview{position:relative;background-color:#fff}.weui-form-preview:before{top:0;border-top:1rpx solid #d9d9d9}.weui-form-preview:after,.weui-form-preview:before{content:" ";position:absolute;left:0;right:0;height:1px;color:#d9d9d9}.weui-form-preview:after{bottom:0;border-bottom:1rpx solid #d9d9d9}.weui-form-preview__value{font-size:14px}.weui-form-preview__value_in-hd{font-size:26px}.weui-form-preview__hd{position:relative;padding:10px 15px;text-align:right;line-height:2.5em}.weui-form-preview__hd:after{content:" ";position:absolute;left:0;bottom:0;right:0;height:1px;border-bottom:1rpx solid #d9d9d9;color:#d9d9d9;left:15px}.weui-form-preview__bd{padding:10px 15px;font-size:.9em;text-align:right;color:#999;line-height:2}.weui-form-preview__ft{position:relative;line-height:50px;display:-webkit-box;display:-webkit-flex;display:flex}.weui-form-preview__ft:after{content:" ";position:absolute;left:0;top:0;right:0;height:1px;border-top:1rpx solid #d5d5d6;color:#d5d5d6}.weui-form-preview__item{overflow:hidden}.weui-form-preview__label{float:left;margin-right:1em;min-width:4em;color:#999;text-align:justify;text-align-last:justify}.weui-form-preview__value{display:block;overflow:hidden;word-break:normal;word-wrap:break-word}.weui-form-preview__btn{position:relative;display:block;-webkit-box-flex:1;-webkit-flex:1;flex:1;color:#3cc51f;text-align:center}.weui-form-preview__btn:after{content:" ";position:absolute;left:0;top:0;width:1px;bottom:0;border-left:1rpx solid #d5d5d6;color:#d5d5d6}.weui-form-preview__btn:first-child:after{display:none}.weui-form-preview__btn_active{background-color:#eee}.weui-form-preview__btn_default{color:#999}.weui-form-preview__btn_primary{color:#0bb20c}.weui-cell_select{padding:0}.weui-select{position:relative;padding-left:15px;padding-right:30px;height:2.58823529em;min-height:2.58823529em;line-height:2.58823529em;border-right:1rpx solid #d9d9d9}.weui-select:before{content:" ";display:inline-block;height:6px;width:6px;border-width:2px 2px 0 0;border-color:#c8c8cd;border-style:solid;-webkit-transform:matrix(.71,.71,-.71,.71,0,0);transform:matrix(.71,.71,-.71,.71,0,0);position:relative;top:-2px;position:absolute;top:50%;right:15px;margin-top:-4px}.weui-select_in-select-after{padding-left:0}.weui-cell__bd_in-select-before,.weui-cell__hd_in-select-after{padding-left:15px}.weui-cell_vcode{padding-right:0}.weui-vcode-btn,.weui-vcode-img{margin-left:5px;height:2.58823529em;vertical-align:middle}.weui-vcode-btn{display:inline-block;padding:0 .6em 0 .7em;border-left:1px solid #e5e5e5;line-height:2.58823529em;font-size:17px;color:#3cc51f;white-space:nowrap}.weui-vcode-btn:active{color:#52a341}
\ 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/weui/widget/weui-cell/weui-form/weui-form-preview.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/weui/widget/weui-cell/weui-form/weui-form-preview.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..c1d78a6cdd7e02e6ab1ec263f9729e198143eddd
--- /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/weui/widget/weui-cell/weui-form/weui-form-preview.wxss"
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v1.1.1 (https://github.com/weui/weui-wxss)
+ * Copyright 2017 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-form-preview{position:relative;background-color:#fff}.weui-form-preview:before{top:0;border-top:1rpx solid #d9d9d9}.weui-form-preview:after,.weui-form-preview:before{content:" ";position:absolute;left:0;right:0;height:1px;color:#d9d9d9}.weui-form-preview:after{bottom:0;border-bottom:1rpx solid #d9d9d9}.weui-form-preview__value{font-size:14px}.weui-form-preview__value_in-hd{font-size:26px}.weui-form-preview__hd{position:relative;padding:10px 15px;text-align:right;line-height:2.5em}.weui-form-preview__hd:after{content:" ";position:absolute;left:0;bottom:0;right:0;height:1px;border-bottom:1rpx solid #d9d9d9;color:#d9d9d9;left:15px}.weui-form-preview__bd{padding:10px 15px;font-size:.9em;text-align:right;color:#999;line-height:2}.weui-form-preview__ft{position:relative;line-height:50px;display:-webkit-box;display:-webkit-flex;display:flex}.weui-form-preview__ft:after{content:" ";position:absolute;left:0;top:0;right:0;height:1px;border-top:1rpx solid #d5d5d6;color:#d5d5d6}.weui-form-preview__item{overflow:hidden}.weui-form-preview__label{float:left;margin-right:1em;min-width:4em;color:#999;text-align:justify;text-align-last:justify}.weui-form-preview__value{display:block;overflow:hidden;word-break:normal;word-wrap:break-word}.weui-form-preview__btn{position:relative;display:block;-webkit-box-flex:1;-webkit-flex:1;flex:1;color:#3cc51f;text-align:center}.weui-form-preview__btn:after{content:" ";position:absolute;left:0;top:0;width:1px;bottom:0;border-left:1rpx solid #d5d5d6;color:#d5d5d6}.weui-form-preview__btn:first-child:after{display:none}.weui-form-preview__btn_active{background-color:#eee}.weui-form-preview__btn_default{color:#999}.weui-form-preview__btn_primary{color:#0bb20c}
\ 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/weui/widget/weui-cell/weui-form/weui-form_common.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/weui/widget/weui-cell/weui-form/weui-form_common.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..cbc4386ba40ebbc1f8adc26aaa6479d4510cd6b9
--- /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/weui/widget/weui-cell/weui-form/weui-form_common.wxss"
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v1.1.1 (https://github.com/weui/weui-wxss)
+ * Copyright 2017 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-cell_input{padding-top:0;padding-bottom:0}.weui-label{width:105px;word-wrap:break-word;word-break:break-all}.weui-input{height:2.58823529em;min-height:2.58823529em;line-height:2.58823529em}.weui-toptips{position:fixed;-webkit-transform:translateZ(0);transform:translateZ(0);top:0;left:0;right:0;padding:5px;font-size:14px;text-align:center;color:#fff;z-index:5000;word-wrap:break-word;word-break:break-all}.weui-toptips_warn{background-color:#e64340}.weui-textarea{display:block;width:100%}.weui-textarea-counter{color:#b2b2b2;text-align:right}.weui-cell_warn,.weui-textarea-counter_warn{color:#e64340}
\ 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/weui/widget/weui-cell/weui-form/weui-select.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/weui/widget/weui-cell/weui-form/weui-select.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..7b12b1527b6831554be34d2e1421c383bd203cd3
--- /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/weui/widget/weui-cell/weui-form/weui-select.wxss"
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v1.1.1 (https://github.com/weui/weui-wxss)
+ * Copyright 2017 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-cell_select{padding:0}.weui-select{position:relative;padding-left:15px;padding-right:30px;height:2.58823529em;min-height:2.58823529em;line-height:2.58823529em;border-right:1rpx solid #d9d9d9}.weui-select:before{content:" ";display:inline-block;height:6px;width:6px;border-width:2px 2px 0 0;border-color:#c8c8cd;border-style:solid;-webkit-transform:matrix(.71,.71,-.71,.71,0,0);transform:matrix(.71,.71,-.71,.71,0,0);position:relative;top:-2px;position:absolute;top:50%;right:15px;margin-top:-4px}.weui-select_in-select-after{padding-left:0}.weui-cell__bd_in-select-before,.weui-cell__hd_in-select-after{padding-left:15px}
\ 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/weui/widget/weui-cell/weui-form/weui-vcode.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/weui/widget/weui-cell/weui-form/weui-vcode.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..0d3560eae1e22e9c52dfae1401bb7b0322a943e8
--- /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/weui/widget/weui-cell/weui-form/weui-vcode.wxss"
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v1.1.1 (https://github.com/weui/weui-wxss)
+ * Copyright 2017 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-cell_vcode{padding-right:0}.weui-vcode-btn,.weui-vcode-img{margin-left:5px;height:2.58823529em;vertical-align:middle}.weui-vcode-btn{display:inline-block;padding:0 .6em 0 .7em;border-left:1px solid #e5e5e5;line-height:2.58823529em;font-size:17px;color:#3cc51f;white-space:nowrap}.weui-vcode-btn:active{color:#52a341}
\ 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/weui/widget/weui-cell/weui-switch.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/weui/widget/weui-cell/weui-switch.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..0b142617ba69d62687636d15e4e9f50b1e0b602a
--- /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/weui/widget/weui-cell/weui-switch.wxss"
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v1.1.1 (https://github.com/weui/weui-wxss)
+ * Copyright 2017 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-cell_switch{padding-top:6px;padding-bottom:6px}
\ 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/weui/widget/weui-cell/weui-uploader.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/weui/widget/weui-cell/weui-uploader.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..d20ba247f75d8574a1ca002e3cf547adb1c7dfb1
--- /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/weui/widget/weui-cell/weui-uploader.wxss"
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v1.1.1 (https://github.com/weui/weui-wxss)
+ * Copyright 2017 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-uploader__hd{display:-webkit-box;display:-webkit-flex;display:flex;padding-bottom:10px;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.weui-uploader__title{-webkit-box-flex:1;-webkit-flex:1;flex:1}.weui-uploader__info{color:#b2b2b2}.weui-uploader__bd{margin-bottom:-4px;margin-right:-9px;overflow:hidden}.weui-uploader__file{float:left;margin-right:9px;margin-bottom:9px}.weui-uploader__img{display:block;width:79px;height:79px}.weui-uploader__file_status{position:relative}.weui-uploader__file_status:before{content:" ";position:absolute;top:0;right:0;bottom:0;left:0;background-color:rgba(0,0,0,.5)}.weui-uploader__file-content{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);color:#fff}.weui-uploader__input-box{float:left;position:relative;margin-right:9px;margin-bottom:9px;width:77px;height:77px;border:1px solid #d9d9d9}.weui-uploader__input-box:after,.weui-uploader__input-box:before{content:" ";position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);background-color:#d9d9d9}.weui-uploader__input-box:before{width:2px;height:39.5px}.weui-uploader__input-box:after{width:39.5px;height:2px}.weui-uploader__input-box:active{border-color:#999}.weui-uploader__input-box:active:after,.weui-uploader__input-box:active:before{background-color:#999}.weui-uploader__input{position:absolute;z-index:1;top:0;left:0;width:100%;height:100%;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/weui/widget/weui-flex/weui-flex.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/weui/widget/weui-flex/weui-flex.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..a26a647b0868815f3eb22f4850201344851ee496
--- /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/weui/widget/weui-flex/weui-flex.wxss"
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v1.1.1 (https://github.com/weui/weui-wxss)
+ * Copyright 2017 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-flex{display:-webkit-box;display:-webkit-flex;display:flex}.weui-flex__item{-webkit-box-flex:1;-webkit-flex:1;flex:1}
\ 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/weui/widget/weui-footer/weui-footer.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/weui/widget/weui-footer/weui-footer.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..1743507116c70a92e7d9d34af2399de156aaabfc
--- /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/weui/widget/weui-footer/weui-footer.wxss"
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v1.1.1 (https://github.com/weui/weui-wxss)
+ * Copyright 2017 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-footer{color:#999;font-size:14px;text-align:center}.weui-footer_fixed-bottom{position:fixed;bottom:.52em;left:0;right:0}.weui-footer__links{font-size:0}.weui-footer__link{display:inline-block;vertical-align:top;margin:0 .62em;position:relative;font-size:14px;color:#586c94}.weui-footer__link:before{content:" ";position:absolute;left:0;top:0;width:1px;bottom:0;border-left:1rpx solid #c7c7c7;color:#c7c7c7;left:-.65em;top:.36em;bottom:.36em}.weui-footer__link:first-child:before{display:none}.weui-footer__text{padding:0 .34em;font-size:12px}
\ 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/weui/widget/weui-grid/weui-grid.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/weui/widget/weui-grid/weui-grid.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..7ecb4061f96eb02d1b5afe46c34b732eb26269d8
--- /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/weui/widget/weui-grid/weui-grid.wxss"
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v1.1.1 (https://github.com/weui/weui-wxss)
+ * Copyright 2017 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-grids{border-top:1rpx solid #d9d9d9;border-left:1rpx solid #d9d9d9;overflow:hidden}.weui-grid{position:relative;float:left;padding:20px 10px;width:33.33333333%;box-sizing:border-box;border-right:1rpx solid #d9d9d9;border-bottom:1rpx solid #d9d9d9}.weui-grid_active{background-color:#ececec}.weui-grid__icon{display:block;width:28px;height:28px;margin:0 auto}.weui-grid__label{margin-top:5px;display:block;text-align:center;color:#000;font-size:14px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}
\ 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/weui/widget/weui-loading/weui-loading.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/weui/widget/weui-loading/weui-loading.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..336d593ae21637c9a0e4eaea3eefe38fe9323e6d
--- /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/weui/widget/weui-loading/weui-loading.wxss"
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v1.1.1 (https://github.com/weui/weui-wxss)
+ * Copyright 2017 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-loading{margin:0 5px;width:20px;height:20px;display:inline-block;vertical-align:middle;-webkit-animation:a 1s steps(12) infinite;animation:a 1s steps(12) infinite;background:transparent url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMjAiIGhlaWdodD0iMTIwIiB2aWV3Qm94PSIwIDAgMTAwIDEwMCI+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgxMDB2MTAwSDB6Ii8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjRTlFOUU5IiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgLTMwKSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iIzk4OTY5NyIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSgzMCAxMDUuOTggNjUpIi8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjOUI5OTlBIiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0icm90YXRlKDYwIDc1Ljk4IDY1KSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iI0EzQTFBMiIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSg5MCA2NSA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNBQkE5QUEiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoMTIwIDU4LjY2IDY1KSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iI0IyQjJCMiIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSgxNTAgNTQuMDIgNjUpIi8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjQkFCOEI5IiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0icm90YXRlKDE4MCA1MCA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNDMkMwQzEiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoLTE1MCA0NS45OCA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNDQkNCQ0IiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoLTEyMCA0MS4zNCA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNEMkQyRDIiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoLTkwIDM1IDY1KSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iI0RBREFEQSIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSgtNjAgMjQuMDIgNjUpIi8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjRTJFMkUyIiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0icm90YXRlKC0zMCAtNS45OCA2NSkiLz48L3N2Zz4=) no-repeat;background-size:100%}.weui-loading.weui-loading_transparent{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 100 100'%3E%3Cpath fill='none' d='M0 0h100v100H0z'/%3E%3Crect xmlns='http://www.w3.org/2000/svg' width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.56)' rx='5' ry='5' transform='translate(0 -30)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.5)' rx='5' ry='5' transform='rotate(30 105.98 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.43)' rx='5' ry='5' transform='rotate(60 75.98 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.38)' rx='5' ry='5' transform='rotate(90 65 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.32)' rx='5' ry='5' transform='rotate(120 58.66 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.28)' rx='5' ry='5' transform='rotate(150 54.02 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.25)' rx='5' ry='5' transform='rotate(180 50 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.2)' rx='5' ry='5' transform='rotate(-150 45.98 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.17)' rx='5' ry='5' transform='rotate(-120 41.34 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.14)' rx='5' ry='5' transform='rotate(-90 35 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.1)' rx='5' ry='5' transform='rotate(-60 24.02 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.03)' rx='5' ry='5' transform='rotate(-30 -5.98 65)'/%3E%3C/svg%3E")}@-webkit-keyframes a{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes a{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}
\ 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/weui/widget/weui-media-box/weui-media-box.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/weui/widget/weui-media-box/weui-media-box.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..ec93f2cbf7aeea51f5c1cf4f8355470709b528bc
--- /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/weui/widget/weui-media-box/weui-media-box.wxss"
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v1.1.1 (https://github.com/weui/weui-wxss)
+ * Copyright 2017 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-media-box{padding:15px;position:relative}.weui-media-box:before{content:" ";position:absolute;left:0;top:0;right:0;height:1px;border-top:1rpx solid #e5e5e5;color:#e5e5e5;left:15px}.weui-media-box:first-child:before{display:none}.weui-media-box__title{font-weight:400;font-size:17px;width:auto;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;word-wrap:normal;word-wrap:break-word;word-break:break-all}.weui-media-box__desc{color:#999;font-size:13px;line-height:1.2;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2}.weui-media-box__info{margin-top:15px;padding-bottom:5px;font-size:13px;color:#cecece;line-height:1em;list-style:none;overflow:hidden}.weui-media-box__info__meta{float:left;padding-right:1em}.weui-media-box__info__meta_extra{padding-left:1em;border-left:1px solid #cecece}.weui-media-box__title_in-text{margin-bottom:8px}.weui-media-box_appmsg{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.weui-media-box__thumb{width:100%;height:100%;vertical-align:top}.weui-media-box__hd_in-appmsg{margin-right:.8em;width:60px;height:60px;line-height:60px;text-align:center}.weui-media-box__bd_in-appmsg{-webkit-box-flex:1;-webkit-flex:1;flex:1;min-width:0}.weui-media-box_small-appmsg{padding:0}.weui-cells_in-small-appmsg{margin-top:0}.weui-cells_in-small-appmsg:before{display:none}
\ 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/weui/widget/weui-page/weui-article.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/weui/widget/weui-page/weui-article.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..4163c30b85e727b9852f9dc16e0317b0f549c08c
--- /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/weui/widget/weui-page/weui-article.wxss"
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v1.1.1 (https://github.com/weui/weui-wxss)
+ * Copyright 2017 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-article{padding:20px 15px;font-size:15px}.weui-article__section{margin-bottom:1.5em}.weui-article__h1{font-size:18px;font-weight:400;margin-bottom:.9em}.weui-article__h2{font-size:16px;font-weight:400;margin-bottom:.34em}.weui-article__h3{font-weight:400;font-size:15px;margin-bottom:.34em}.weui-article__p{margin:0 0 .8em}
\ 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/weui/widget/weui-page/weui-msg.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/weui/widget/weui-page/weui-msg.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..82e84e38a1088b3611a51f698ac94d62aa74f87e
--- /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/weui/widget/weui-page/weui-msg.wxss"
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v1.1.1 (https://github.com/weui/weui-wxss)
+ * Copyright 2017 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-msg{padding-top:36px;text-align:center}.weui-msg__link{display:inline;color:#586c94}.weui-msg__icon-area{margin-bottom:30px}.weui-msg__text-area{margin-bottom:25px;padding:0 20px}.weui-msg__title{margin-bottom:5px;font-weight:400;font-size:20px}.weui-msg__desc{font-size:14px;color:#999}.weui-msg__opr-area{margin-bottom:25px}.weui-msg__extra-area{margin-bottom:15px;font-size:14px;color:#999}@media screen and (min-height:438px){.weui-msg__extra-area{position:fixed;left:0;bottom:0;width:100%;text-align:center}}
\ 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/weui/widget/weui-panel/weui-panel.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/weui/widget/weui-panel/weui-panel.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..5b5b047d714554a3d7d02d77d9b4b3d65129d49c
--- /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/weui/widget/weui-panel/weui-panel.wxss"
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v1.1.1 (https://github.com/weui/weui-wxss)
+ * Copyright 2017 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-panel{background-color:#fff;margin-top:10px;position:relative;overflow:hidden}.weui-panel:first-child{margin-top:0}.weui-panel:before{top:0;border-top:1rpx solid #e5e5e5}.weui-panel:after,.weui-panel:before{content:" ";position:absolute;left:0;right:0;height:1px;color:#e5e5e5}.weui-panel:after{bottom:0;border-bottom:1rpx solid #e5e5e5}.weui-panel__hd{padding:14px 15px 10px;color:#999;font-size:13px;position:relative}.weui-panel__hd:after{content:" ";position:absolute;left:0;bottom:0;right:0;height:1px;border-bottom:1rpx solid #e5e5e5;color:#e5e5e5;left:15px}
\ 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/weui/widget/weui-progress/weui-progress.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/weui/widget/weui-progress/weui-progress.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..a46cf96e68422f23fc3f9c17c067ed9e94a8657a
--- /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/weui/widget/weui-progress/weui-progress.wxss"
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v1.1.1 (https://github.com/weui/weui-wxss)
+ * Copyright 2017 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-progress{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.weui-progress__bar{-webkit-box-flex:1;-webkit-flex:1;flex:1}.weui-progress__opr{margin-left:15px;font-size: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/weui/widget/weui-searchbar/weui-searchbar.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/weui/widget/weui-searchbar/weui-searchbar.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..c3954ef6c560a24891592c0f91a636f6a4d7ac13
--- /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/weui/widget/weui-searchbar/weui-searchbar.wxss"
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v1.1.1 (https://github.com/weui/weui-wxss)
+ * Copyright 2017 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-search-bar{position:relative;padding:8px 10px;display:-webkit-box;display:-webkit-flex;display:flex;box-sizing:border-box;background-color:#efeff4;border-top:1rpx solid #d7d6dc;border-bottom:1rpx solid #d7d6dc}.weui-icon-search{margin-right:8px;font-size:inherit}.weui-icon-search_in-box{position:absolute;left:10px;top:7px}.weui-search-bar__text{display:inline-block;font-size:14px;vertical-align:middle}.weui-search-bar__form{position:relative;-webkit-box-flex:1;-webkit-flex:auto;flex:auto;border-radius:5px;background:#fff;border:1rpx solid #e6e6ea}.weui-search-bar__box{position:relative;padding-left:30px;padding-right:30px;width:100%;box-sizing:border-box;z-index:1}.weui-search-bar__input{height:28px;line-height:28px;font-size:14px}.weui-icon-clear{position:absolute;top:0;right:0;padding:7px 8px;font-size:0}.weui-search-bar__label{position:absolute;top:0;right:0;bottom:0;left:0;z-index:2;border-radius:3px;text-align:center;color:#9b9b9b;background:#fff;line-height:28px}.weui-search-bar__cancel-btn{margin-left:10px;line-height:28px;color:#09bb07;white-space:nowrap}
\ 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/weui/widget/weui-tab/weui-navbar.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/weui/widget/weui-tab/weui-navbar.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..16844435f858b59f6a177de927226cbb8a729c26
--- /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/weui/widget/weui-tab/weui-navbar.wxss"
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v1.1.1 (https://github.com/weui/weui-wxss)
+ * Copyright 2017 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-navbar{display:-webkit-box;display:-webkit-flex;display:flex;position:absolute;z-index:500;top:0;width:100%;border-bottom:1rpx solid #ccc}.weui-navbar__item{position:relative;display:block;-webkit-box-flex:1;-webkit-flex:1;flex:1;padding:13px 0;text-align:center;font-size:0}.weui-navbar__item.weui-bar__item_on{color:#1aad19}.weui-navbar__slider{position:absolute;content:" ";left:0;bottom:0;width:6em;height:3px;background-color:#1aad19;-webkit-transition:-webkit-transform .3s;transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s,-webkit-transform .3s}.weui-navbar__title{display:inline-block;font-size:15px;max-width:8em;width:auto;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;word-wrap:normal}
\ 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/weui/widget/weui-tab/weui-tab.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/weui/widget/weui-tab/weui-tab.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..10a9cf7a3f10164843527ebbf808b8a787bd40fd
--- /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/weui/widget/weui-tab/weui-tab.wxss"
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v1.1.1 (https://github.com/weui/weui-wxss)
+ * Copyright 2017 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-navbar{display:-webkit-box;display:-webkit-flex;display:flex;position:absolute;z-index:500;top:0;width:100%;border-bottom:1rpx solid #ccc}.weui-navbar__item{position:relative;display:block;-webkit-box-flex:1;-webkit-flex:1;flex:1;padding:13px 0;text-align:center;font-size:0}.weui-navbar__item.weui-bar__item_on{color:#1aad19}.weui-navbar__slider{position:absolute;content:" ";left:0;bottom:0;width:6em;height:3px;background-color:#1aad19;-webkit-transition:-webkit-transform .3s;transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s,-webkit-transform .3s}.weui-navbar__title{display:inline-block;font-size:15px;max-width:8em;width:auto;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;word-wrap:normal}.weui-tab{position:relative;height:100%}.weui-tab__panel{box-sizing:border-box;height:100%;padding-top:50px;overflow:auto;-webkit-overflow-scrolling:touch}
\ 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/weui/widget/weui-tips/weui-badge.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/weui/widget/weui-tips/weui-badge.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..e30802c12308dd84adc9ca4309d5835bb460648e
--- /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/weui/widget/weui-tips/weui-badge.wxss"
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v1.1.1 (https://github.com/weui/weui-wxss)
+ * Copyright 2017 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-badge{display:inline-block;padding:.15em .4em;min-width:8px;border-radius:18px;background-color:#e64340;color:#fff;line-height:1.2;text-align:center;font-size:12px;vertical-align:middle}.weui-badge_dot{padding:.4em;min-width: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/weui/widget/weui-tips/weui-loadmore.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/weui/widget/weui-tips/weui-loadmore.wxss"
new file mode 100644
index 0000000000000000000000000000000000000000..a86d27b91a6af2f4143a876a95774be4d144f82f
--- /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/weui/widget/weui-tips/weui-loadmore.wxss"
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v1.1.1 (https://github.com/weui/weui-wxss)
+ * Copyright 2017 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-loadmore{width:65%;margin:1.5em auto;line-height:1.6em;font-size:14px;text-align:center}.weui-loadmore__tips{display:inline-block;vertical-align:middle}.weui-loadmore_line{border-top:1px solid #e5e5e5;margin-top:2.4em}.weui-loadmore__tips_in-line{position:relative;top:-.9em;padding:0 .55em;background-color:#fff;color:#999}.weui-loadmore__tips_in-dot{position:relative;padding:0 .16em;width:4px;height:1.6em}.weui-loadmore__tips_in-dot:before{content:" ";position:absolute;top:50%;left:50%;margin-top:-1px;margin-left:-2px;width:4px;height:4px;border-radius:50%;background-color:#e5e5e5}
\ No newline at end of file