(function(t,e){"object"===typeof exports&&"object"===typeof module?module.exports=e(require("vue")):"function"===typeof define&&define.amd?define([],e):"object"===typeof exports?exports["uni"]=e(require("vue")):t["uni"]=e(t["Vue"])})("undefined"!==typeof self?self:this,(function(t){return function(t){var e={};function i(n){if(e[n])return e[n].exports;var r=e[n]={i:n,l:!1,exports:{}};return t[n].call(r.exports,r,r.exports,i),r.l=!0,r.exports}return i.m=t,i.c=e,i.d=function(t,e,n){i.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:n})},i.r=function(t){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},i.t=function(t,e){if(1&e&&(t=i(t)),8&e)return t;if(4&e&&"object"===typeof t&&t&&t.__esModule)return t;var n=Object.create(null);if(i.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var r in t)i.d(n,r,function(e){return t[e]}.bind(null,r));return n},i.n=function(t){var e=t&&t.__esModule?function(){return t["default"]}:function(){return t};return i.d(e,"a",e),e},i.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},i.p="",i(i.s="fae3")}({"01ab":function(t,e,i){},"03df":function(t,e,i){"use strict";i.r(e);var n=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("uni-web-view",t._g({},t.$listeners))},r=[],o=i("ed56"),s=o["a"],a=(i("2df3"),i("2877")),c=Object(a["a"])(s,n,r,!1,null,null,null);e["default"]=c.exports},"0516":function(t,e,i){"use strict";(function(t,n){i.d(e,"a",(function(){return d}));var r=i("f2b3"),o=i("33ed"),s=i("2522"),a=i("a20d"),c=!!r["i"]&&{passive:!1};function u(e){var i=e.windowTop,n=e.windowBottom;if(t.__WINDOW_TOP=i,t.__WINDOW_BOTTOM=n,uni.canIUse("css.var")){var r=document.documentElement.style;r.setProperty("--window-top",i+"px"),r.setProperty("--window-bottom",n+"px"),r.setProperty("--status-bar-height",plus.navigator.getStatusbarHeight()+"px")}}function l(t,e){var i=t.windowTop,n=t.windowBottom,r=t.disableScroll,s=t.onPageScroll,a=t.onPageReachBottom,l=t.onReachBottomDistance;u({windowTop:i,windowBottom:n}),r?document.addEventListener("touchmove",o["b"],c):(s||a)&&requestAnimationFrame((function(){document.addEventListener("scroll",Object(o["a"])(e,{enablePageScroll:s,enablePageReachBottom:a,onReachBottomDistance:l}))}))}function h(){n.publishHandler("webviewReady")}function d(t){t(a["k"],h),t(s["a"],l)}}).call(this,i("c8ba"),i("501c"))},"0741":function(t,e,i){"use strict";var n=i("3c79"),r=i.n(n);r.a},"0998":function(t,e,i){"use strict";var n=i("927d"),r=i.n(n);r.a},"0aa0":function(t,e,i){"use strict";e["a"]={name:"Native",data:function(){return{position:{top:"0px",left:"0px",width:"0px",height:"0px",position:"static"},hidden:!1}},created:function(){this.isNative=!0,this.onCanInsertCallbacks=[]},mounted:function(){var t=this;this._updatePosition(),this.$nextTick((function(){t.onCanInsertCallbacks.forEach((function(t){return t()}))})),this.$on("uni-view-update",this._requestPositionUpdate)},methods:{_updatePosition:function(){var t=this,e=(this.$refs.container||this.$el).getBoundingClientRect();this.hidden=0===e.width||0===e.height,this.hidden||["top","left","width","height"].forEach((function(i){var n=e[i];n="top"===i?n+(document.documentElement.scrollTop||document.body.scrollTop||0):n,t.position[i]=n+"px"}))},_requestPositionUpdate:function(){var t=this;this._positionUpdateRequest&&cancelAnimationFrame(this._positionUpdateRequest),this._positionUpdateRequest=requestAnimationFrame((function(){delete t._positionUpdateRequest,t._updatePosition()}))}}}},"0f55":function(t,e,i){"use strict";var n=i("2190"),r=i.n(n);r.a},1082:function(t,e,i){"use strict";i.r(e);var n=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("uni-image",t._g({},t.$listeners),[i("div",{ref:"content",style:t.modeStyle}),i("img",{attrs:{src:t.realImagePath}}),"widthFix"===t.mode?i("v-uni-resize-sensor",{ref:"sensor",on:{resize:t._resize}}):t._e()],1)},r=[];function o(t){return o="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"===typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},o(t)}var s={name:"Image",props:{src:{type:String,default:""},mode:{type:String,default:"scaleToFill"},lazyLoad:{type:[Boolean,String],default:!1}},data:function(){return{originalWidth:0,originalHeight:0,availHeight:"",sizeFixed:!1}},computed:{ratio:function(){return this.originalWidth&&this.originalHeight?this.originalWidth/this.originalHeight:0},realImagePath:function(){return this.src&&this.$getRealPath(this.src)},modeStyle:function(){var t="auto",e="",i="no-repeat";switch(this.mode){case"aspectFit":t="contain",e="center center";break;case"aspectFill":t="cover",e="center center";break;case"widthFix":t="100% 100%";break;case"top":e="center top";break;case"bottom":e="center bottom";break;case"center":e="center center";break;case"left":e="left center";break;case"right":e="right center";break;case"top left":e="left top";break;case"top right":e="right top";break;case"bottom left":e="left bottom";break;case"bottom right":e="right bottom";break;default:t="100% 100%",e="0% 0%";break}return"background-position:".concat(e,";background-size:").concat(t,";background-repeat:").concat(i,";")}},watch:{src:function(t,e){this._setContentImage(),this._loadImage()},mode:function(t,e){"widthFix"===e&&(this.$el.style.height=this.availHeight,this.sizeFixed=!1),"widthFix"===t&&this.ratio&&this._fixSize()}},mounted:function(){this.availHeight=this.$el.style.height||"",this._setContentImage(),this.realImagePath&&this._loadImage()},methods:{_resize:function(){"widthFix"!==this.mode||this.sizeFixed||this._fixSize()},_fixSize:function(){var t=this._getWidth();if(t){var e=t/this.ratio;("undefined"===typeof navigator||o(navigator))&&"Google Inc."===navigator.vendor&&e>10&&(e=2*Math.round(e/2)),this.$el.style.height=e+"px",this.sizeFixed=!0}},_setContentImage:function(){this.$refs.content.style.backgroundImage=this.src?"url(".concat(this.realImagePath,")"):"none"},_loadImage:function(){var t=this,e=new Image;e.onload=function(e){t.originalWidth=this.width,t.originalHeight=this.height,"widthFix"===t.mode&&t._fixSize(),t.$trigger("load",e,{width:this.width,height:this.height})},e.onerror=function(e){t.$trigger("error",e,{errMsg:"GET ".concat(t.src," 404 (Not Found)")})},e.src=this.realImagePath},_getWidth:function(){var t=window.getComputedStyle(this.$el),e=(parseFloat(t.borderLeftWidth,10)||0)+(parseFloat(t.borderRightWidth,10)||0),i=(parseFloat(t.paddingLeft,10)||0)+(parseFloat(t.paddingRight,10)||0);return this.$el.offsetWidth-e-i}}},a=s,c=(i("db18"),i("2877")),u=Object(c["a"])(a,n,r,!1,null,null,null);e["default"]=u.exports},1307:function(t,e,i){},1364:function(t,e,i){"use strict";(function(t){function n(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function r(t,e){for(var i=0;i should have url attribute when using navigateTo, redirectTo, reLaunch or switchTab")}}},c=a,u=(i("f7fd"),i("2877")),l=Object(u["a"])(c,n,r,!1,null,null,null);e["default"]=l.exports},"18fd":function(t,e,i){"use strict";i.d(e,"a",(function(){return d}));var n=/^<([-A-Za-z0-9_]+)((?:\s+[a-zA-Z_:][-a-zA-Z0-9_:.]*(?:\s*=\s*(?:(?:"[^"]*")|(?:'[^']*')|[^>\s]+))?)*)\s*(\/?)>/,r=/^<\/([-A-Za-z0-9_]+)[^>]*>/,o=/([a-zA-Z_:][-a-zA-Z0-9_:.]*)(?:\s*=\s*(?:(?:"((?:\\.|[^"])*)")|(?:'((?:\\.|[^'])*)')|([^>\s]+)))?/g,s=f("area,base,basefont,br,col,frame,hr,img,input,link,meta,param,embed,command,keygen,source,track,wbr"),a=f("a,address,article,applet,aside,audio,blockquote,button,canvas,center,dd,del,dir,div,dl,dt,fieldset,figcaption,figure,footer,form,frameset,h1,h2,h3,h4,h5,h6,header,hgroup,hr,iframe,isindex,li,map,menu,noframes,noscript,object,ol,output,p,pre,section,script,table,tbody,td,tfoot,th,thead,tr,ul,video"),c=f("abbr,acronym,applet,b,basefont,bdo,big,br,button,cite,code,del,dfn,em,font,i,iframe,img,input,ins,kbd,label,map,object,q,s,samp,script,select,small,span,strike,strong,sub,sup,textarea,tt,u,var"),u=f("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr"),l=f("checked,compact,declare,defer,disabled,ismap,multiple,nohref,noresize,noshade,nowrap,readonly,selected"),h=f("script,style");function d(t,e){var i,d,f,p=[],m=t;p.last=function(){return this[this.length-1]};while(t){if(d=!0,p.last()&&h[p.last()])t=t.replace(new RegExp("([\\s\\S]*?)]*>"),(function(t,i){return i=i.replace(/|/g,"$1$2"),e.chars&&e.chars(i),""})),_("",p.last());else if(0==t.indexOf("\x3c!--")?(i=t.indexOf("--\x3e"),i>=0&&(e.comment&&e.comment(t.substring(4,i)),t=t.substring(i+3),d=!1)):0==t.indexOf("=0;n--)if(p[n]==i)break}else var n=0;if(n>=0){for(var r=p.length-1;r>=n;r--)e.end&&e.end(p[r]);p.length=n}}_()}function f(t){for(var e={},i=t.split(","),n=0;n*{height: ").concat(t,"px;overflow: hidden;}"),document.head.appendChild(e)},_handleTrack:function(t){if(this._scroller)switch(t.detail.state){case"start":this._handleTouchStart(t),Object(a["b"])({disable:!0});break;case"move":this._handleTouchMove(t);break;case"end":case"cancel":this._handleTouchEnd(t),Object(a["b"])({disable:!1})}},_handleTap:function(t){var e=t.clientY;if(!this._scroller.isScrolling()){var i=this.$el.getBoundingClientRect(),n=e-i.top-this.height/2,r=this.indicatorHeight/2;if(!(Math.abs(n)<=r)){var o=Math.ceil((Math.abs(n)-r)/this.indicatorHeight),s=n<0?-o:o,a=Math.min(this.current+s,this.length-1);this.current=a=Math.max(a,0),this._scroller.scrollTo(a*this.indicatorHeight)}}},_handleWheel:function(t){var e=this.deltaY+t.deltaY;if(Math.abs(e)>10){this.deltaY=0;var i=Math.min(this.current+(e<0?-1:1),this.length-1);this.current=i=Math.max(i,0),this._scroller.scrollTo(i*this.indicatorHeight)}else this.deltaY=e;t.preventDefault()},setCurrent:function(t){t!==this.current&&(this.current=t,this.inited&&this.update())},init:function(){var t=this;this.initScroller(this.$refs.content,{enableY:!0,enableX:!1,enableSnap:!0,itemSize:this.indicatorHeight,friction:new o["a"](1e-4),spring:new s["a"](2,90,20),onSnap:function(e){isNaN(e)||e===t.current||(t.current=e)}}),this.inited=!0},update:function(){var t=this;this.$nextTick((function(){var e=Math.min(t.current,t.length-1);e=Math.max(e,0),t._scroller.update(e*t.indicatorHeight,void 0,t.indicatorHeight)}))},_resize:function(t){var e=t.height;this.indicatorHeight=e}},render:function(t){return this.length=this.$slots.default&&this.$slots.default.length||0,t("uni-picker-view-column",{on:{on:this.$listeners}},[t("div",{ref:"main",staticClass:"uni-picker-view-group",on:{wheel:this._handleWheel}},[t("div",{ref:"mask",staticClass:"uni-picker-view-mask",class:this.maskClass,style:"background-size: 100% ".concat(this.maskSize,"px;").concat(this.maskStyle)}),t("div",{ref:"indicator",staticClass:"uni-picker-view-indicator",class:this.indicatorClass,style:this.indicatorStyle},[t("v-uni-resize-sensor",{attrs:{initial:!0},on:{resize:this._resize}})]),t("div",{ref:"content",staticClass:"uni-picker-view-content",class:this.scope,style:"padding: ".concat(this.maskSize,"px 0;")},[this.$slots.default])])])}},d=h,f=(i("edfa"),i("2877")),p=Object(f["a"])(d,u,l,!1,null,null,null);e["default"]=p.exports},"1b6f":function(t,e,i){"use strict";(function(t){var n=i("f2b3");e["a"]={mounted:function(){var t=this;this._toggleListeners("subscribe",this.id),this.$watch("id",(function(e,i){t._toggleListeners("unsubscribe",i,!0),t._toggleListeners("subscribe",e,!0)}))},beforeDestroy:function(){this._toggleListeners("unsubscribe",this.id),this._contextId&&this._toggleListeners("unsubscribe",this._contextId)},methods:{_toggleListeners:function(e,i,r){r&&!i||Object(n["e"])(this._handleSubscribe)&&t[e](this.$page.id+"-"+this.$options.name.replace(/VUni([A-Z])/,"$1").toLowerCase()+"-"+i,this._handleSubscribe)},_getContextInfo:function(){var t="context-".concat(this._uid);return this._contextId||(this._toggleListeners("subscribe",t),this._contextId=t),{name:this.$options.name.replace(/VUni([A-Z])/,"$1").toLowerCase(),id:t,page:this.$page.id}}}}}).call(this,i("501c"))},"1c64":function(t,e,i){"use strict";var n=i("60ee"),r=i.n(n);r.a},"1e88":function(t,e,i){"use strict";function n(){return{top:0,bottom:0}}i.d(e,"a",(function(){return n}))},"1efd":function(t,e,i){"use strict";i.r(e);var n=i("8bbf"),r=i.n(n);function o(t,e){if(e){if(0===e.indexOf("/"))return e}else{if(e=t,0===e.indexOf("/"))return e;var i=getCurrentPages();t=i.length?i[i.length-1].$page.route:""}if(0===e.indexOf("./"))return o(t,e.substr(2));for(var n=e.split("/"),r=n.length,s=0;s0?t.split("/"):[];return a.splice(a.length-s-1,s+1),"/"+a.concat(n).join("/")}var s,a=/^([a-z-]+:)?\/\//i,c=/^data:.*,.*/;function u(t){return plus.io.convertLocalFileSystemURL(t).replace(/^\/?apps\//,"/android_asset/apps/").replace(/\/$/,"")}function l(t){return s||(s="file://"+u("_www")+"/"),s+t}function h(t){if(0===t.indexOf("/")){if(0!==t.indexOf("//"))return l(t.substr(1));t="https:"+t}if(a.test(t)||c.test(t)||0===t.indexOf("blob:"))return t;if(0===t.indexOf("_www")||0===t.indexOf("_do"))return"file://"+u(t);var e=getCurrentPages();return e.length?l(o(e[e.length-1].$page.route,t).substr(1)):t}var d=i("d4b6"),f={methods:{$getRealPath:function(t){return h(t)},$trigger:function(t,e,i){this.$emit(t,d["b"].call(this,t,e,i,this.$el,this.$el))}}};function p(t){return v(t)||g(t)||m()}function m(){throw new TypeError("Invalid attempt to spread non-iterable instance")}function g(t){if(Symbol.iterator in Object(t)||"[object Arguments]"===Object.prototype.toString.call(t))return Array.from(t)}function v(t){if(Array.isArray(t)){for(var e=0,i=new Array(t.length);e=0&&(s.length=1),u.push("".concat(o,"(").concat(s.join(","),")"));else if(n.concat(r).includes(s[0])){o=s[0];var a=s[1];c[o]=r.includes(o)?_(a):a}})),c.transform=c.webkitTransform=u.join(" "),c.transition=c.webkitTransition=Object.keys(c).map((function(t){return"".concat(b(t)," ").concat(a.duration,"ms ").concat(a.timingFunction," ").concat(a.delay,"ms")})).join(","),c.transformOrigin=c.webkitTransformOrigin=s.transformOrigin,c}function w(t){var e=t.animation;if(e&&e.actions&&e.actions.length){var i=0,n=e.actions,r=e.actions.length;o()}function o(){var e=n[i],s=e.option.transition,a=y(e);Object.keys(a).forEach((function(e){t.$el.style[e]=a[e]})),i+=1,i0&&void 0!==arguments[0]?arguments[0]:{};t.$trigger(i,{},e)}))}))},beforeDestroy:function(){this.video&&this.video.close(),delete this.video},methods:{_handleSubscribe:function(t){var e=t.type,i=t.data,n=void 0===i?{}:i;if(c.includes(e)){if("object"===a(n))switch(e){case"seek":n=n.position;break;case"playbackRate":n=n.rate;break}this.video&&this.video[e](n)}}}},d=h,f=(i("7f2f"),i("2877")),p=Object(f["a"])(d,n,r,!1,null,null,null);e["default"]=p.exports},2190:function(t,e,i){},"21c3":function(t,e,i){"use strict";var n=i("2937"),r=i.n(n);r.a},2376:function(t,e,i){"use strict";i.d(e,"a",(function(){return o})),i.d(e,"b",(function(){return s}));var n=i("f2b3"),r=Object.create(null);function o(t,e){r[t]=e}var s=Object(n["a"])((function(t){return r[t]()}))},"250d":function(t,e,i){"use strict";i.r(e);var n=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("uni-input",t._g({on:{change:function(t){t.stopPropagation()}}},t.$listeners),[i("div",{ref:"wrapper",staticClass:"uni-input-wrapper"},[i("div",{directives:[{name:"show",rawName:"v-show",value:!(t.composing||t.inputValue.length),expression:"!(composing || inputValue.length)"}],ref:"placeholder",staticClass:"uni-input-placeholder",class:t.placeholderClass,style:t.placeholderStyle},[t._v(t._s(t.placeholder))]),"checkbox"===t.inputType?i("input",{directives:[{name:"model",rawName:"v-model",value:t.inputValue,expression:"inputValue"}],ref:"input",staticClass:"uni-input-input",attrs:{disabled:t.disabled,maxlength:t.maxlength,step:t.step,autocomplete:"off",type:"checkbox"},domProps:{checked:Array.isArray(t.inputValue)?t._i(t.inputValue,null)>-1:t.inputValue},on:{focus:t._onFocus,blur:t._onBlur,input:function(e){return e.stopPropagation(),t._onInput(e)},compositionstart:t._onComposition,compositionend:t._onComposition,keyup:function(e){return e.stopPropagation(),t._onKeyup(e)},change:function(e){var i=t.inputValue,n=e.target,r=!!n.checked;if(Array.isArray(i)){var o=null,s=t._i(i,o);n.checked?s<0&&(t.inputValue=i.concat([o])):s>-1&&(t.inputValue=i.slice(0,s).concat(i.slice(s+1)))}else t.inputValue=r}}}):"radio"===t.inputType?i("input",{directives:[{name:"model",rawName:"v-model",value:t.inputValue,expression:"inputValue"}],ref:"input",staticClass:"uni-input-input",attrs:{disabled:t.disabled,maxlength:t.maxlength,step:t.step,autocomplete:"off",type:"radio"},domProps:{checked:t._q(t.inputValue,null)},on:{focus:t._onFocus,blur:t._onBlur,input:function(e){return e.stopPropagation(),t._onInput(e)},compositionstart:t._onComposition,compositionend:t._onComposition,keyup:function(e){return e.stopPropagation(),t._onKeyup(e)},change:function(e){t.inputValue=null}}}):i("input",{directives:[{name:"model",rawName:"v-model",value:t.inputValue,expression:"inputValue"}],ref:"input",staticClass:"uni-input-input",attrs:{disabled:t.disabled,maxlength:t.maxlength,step:t.step,autocomplete:"off",type:t.inputType},domProps:{value:t.inputValue},on:{focus:t._onFocus,blur:t._onBlur,input:[function(e){e.target.composing||(t.inputValue=e.target.value)},function(e){return e.stopPropagation(),t._onInput(e)}],compositionstart:t._onComposition,compositionend:t._onComposition,keyup:function(e){return e.stopPropagation(),t._onKeyup(e)}}})])])},r=[],o=i("8af1"),s=["text","number","idcard","digit","password"],a=["number","digit"],c={name:"Input",mixins:[o["a"],o["c"]],model:{prop:"value",event:"update:value"},props:{name:{type:String,default:""},value:{type:[String,Number],default:""},type:{type:String,default:"text"},password:{type:[Boolean,String],default:!1},placeholder:{type:String,default:""},placeholderStyle:{type:String,default:""},placeholderClass:{type:String,default:""},disabled:{type:[Boolean,String],default:!1},maxlength:{type:[Number,String],default:140},focus:{type:[Boolean,String],default:!1},confirmType:{type:String,default:"done"}},data:function(){return{inputValue:this.value+"",composing:!1,wrapperHeight:0,cachedValue:""}},computed:{inputType:function(){var t="";switch(this.type){case"text":"search"===this.confirmType&&(t="search");break;case"idcard":t="text";break;case"digit":t="number";break;default:t=~s.indexOf(this.type)?this.type:"text";break}return this.password?"password":t},step:function(){return~a.indexOf(this.type)?"0.000000000000000001":""}},watch:{focus:function(t){t&&this._focusInput()},value:function(t){this.inputValue=t+""},inputValue:function(t){this.$emit("update:value",t)},maxlength:function(t){var e=this.inputValue.slice(0,parseInt(t,10));e!==this.inputValue&&(this.inputValue=e)}},created:function(){this.$dispatch("Form","uni-form-group-update",{type:"add",vm:this})},mounted:function(){if("search"===this.confirmType){var t=document.createElement("form");t.action="",t.onsubmit=function(){return!1},t.className="uni-input-form",t.appendChild(this.$refs.input),this.$refs.wrapper.appendChild(t)}var e=this;while(e){var i=e.$options._scopeId;i&&this.$refs.placeholder.setAttribute(i,""),e=e.$parent}this.initKeyboard(this.$refs.input),this.focus&&this._focusInput()},beforeDestroy:function(){this.$dispatch("Form","uni-form-group-update",{type:"remove",vm:this})},methods:{_onKeyup:function(t){13===t.keyCode&&this.$trigger("confirm",t,{value:t.target.value})},_onInput:function(t){if(!this.composing){if(~a.indexOf(this.type)){if(this.$refs.input.validity&&!this.$refs.input.validity.valid)return t.target.value=this.cachedValue,void(this.inputValue=t.target.value);this.cachedValue=this.inputValue}if("number"===this.inputType){var e=parseInt(this.maxlength,10);if(e>0&&t.target.value.length>e)return t.target.value=t.target.value.slice(0,e),void(this.inputValue=t.target.value)}this.$trigger("input",t,{value:this.inputValue})}},_onFocus:function(t){this.$trigger("focus",t,{value:t.target.value})},_onBlur:function(t){this.$trigger("blur",t,{value:t.target.value})},_focusInput:function(){var t=this;setTimeout((function(){t.$refs.input.focus()}),350)},_blurInput:function(){var t=this;setTimeout((function(){t.$refs.input.blur()}),350)},_onComposition:function(t){"compositionstart"===t.type?this.composing=!0:this.composing=!1},_resetFormData:function(){this.inputValue=""},_getFormData:function(){return this.name?{value:this.inputValue,key:this.name}:{}}}},u=c,l=(i("0f55"),i("2877")),h=Object(l["a"])(u,n,r,!1,null,null,null);e["default"]=h.exports},2522:function(t,e,i){"use strict";i.d(e,"a",(function(){return n}));var n="onPageCreate"},"25ce":function(t,e,i){"use strict";i.r(e);var n=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("uni-checkbox-group",t._g({},t.$listeners),[t._t("default")],2)},r=[],o=i("8af1"),s={name:"CheckboxGroup",mixins:[o["a"],o["d"]],props:{name:{type:String,default:""}},data:function(){return{checkboxList:[]}},listeners:{"@checkbox-change":"_changeHandler","@checkbox-group-update":"_checkboxGroupUpdateHandler"},created:function(){this.$dispatch("Form","uni-form-group-update",{type:"add",vm:this})},beforeDestroy:function(){this.$dispatch("Form","uni-form-group-update",{type:"remove",vm:this})},methods:{_changeHandler:function(t){var e=[];this.checkboxList.forEach((function(t){t.checkboxChecked&&e.push(t.value)})),this.$trigger("change",t,{value:e})},_checkboxGroupUpdateHandler:function(t){if("add"===t.type)this.checkboxList.push(t.vm);else{var e=this.checkboxList.indexOf(t.vm);this.checkboxList.splice(e,1)}},_getFormData:function(){var t={};if(""!==this.name){var e=[];this.checkboxList.forEach((function(t){t.checkboxChecked&&e.push(t.value)})),t["value"]=e,t["key"]=this.name}return t}}},a=s,c=(i("0998"),i("2877")),u=Object(c["a"])(a,n,r,!1,null,null,null);e["default"]=u.exports},"27ab":function(t,e,i){"use strict";function n(t){return s(t)||o(t)||r()}function r(){throw new TypeError("Invalid attempt to spread non-iterable instance")}function o(t){if(Symbol.iterator in Object(t)||"[object Arguments]"===Object.prototype.toString.call(t))return Array.from(t)}function s(t){if(Array.isArray(t)){for(var e=0,i=new Array(t.length);e0&&t>e&&i+e+c>=t,r=Math.abs(t-a)>c;return!n||h&&!r?(!n&&h&&(h=!1),!1):(a=t,h=!0,!0)}function p(){var i=getCurrentPages();if(i.length&&i[i.length-1].$page.id===e){var a=window.pageYOffset;o&&Object(r["a"])("onPageScroll",{scrollTop:a},e),u&&t.emit("onPageScroll",{scrollTop:a}),s&&d&&(c()||(n=setTimeout(c,300))),l=!1}function c(){if(f())return Object(r["a"])("onReachBottom",{},e),d=!1,setTimeout((function(){d=!0}),350),!0}}return function(){clearTimeout(n),l||requestAnimationFrame(p),l=!0}}}).call(this,i("501c"))},"39ba":function(t,e,i){"use strict";i.r(e);var n=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("uni-cover-view",t._g({},t.$listeners),[i("div",{ref:"container",staticClass:"uni-cover-view"})])},r=[],o=i("0aa0"),s=i("5077"),a={name:"CoverView",mixins:[o["a"],s["a"]],props:{},data:function(){return{coverType:"text",coverContent:""}},watch:{},mounted:function(){this._updateContent(),this.$watch("$slot",this._updateContent)},methods:{_updateContent:function(t){var e=this,i=this.$slots.default||[];i.forEach((function(t){t.tag||(e.coverContent+=t.text||"")}))}}},c=a,u=(i("4ba9"),i("2877")),l=Object(u["a"])(c,n,r,!1,null,null,null);e["default"]=l.exports},"3c47":function(t,e,i){"use strict";(function(t){var n=i("8af1");e["a"]={name:"Label",mixins:[n["a"]],props:{for:{type:String,default:""}},methods:{_onClick:function(e){var i=/^uni-(checkbox|radio|switch)-/.test(e.target.className);i||(i=/^uni-(checkbox|radio|switch|button)$/i.test(e.target.tagName)),i||(this.for?t.emit("uni-label-click-"+this.$page.id+"-"+this.for,e,!0):this.$broadcast(["Checkbox","Radio","Switch","Button"],"uni-label-click",e,!0))}}}}).call(this,i("501c"))},"3c79":function(t,e,i){},"3e4d":function(t,e,i){"use strict";(function(t){var n=i("8af1"),r=i("18fd"),o=i("b253");function s(t){return s="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"===typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},s(t)}e["a"]={name:"Editor",mixins:[n["e"],n["a"],n["c"]],props:{id:{type:String,default:""},readOnly:{type:[Boolean,String],default:!1},placeholder:{type:String,default:""},showImgSize:{type:[Boolean,String],default:!1},showImgToolbar:{type:[Boolean,String],default:!1},showImgResize:{type:[Boolean,String],default:!1}},data:function(){return{quillReady:!1}},computed:{},watch:{readOnly:function(t){if(this.quillReady){var e=this.quill;e.enable(!t),t||e.blur()}},placeholder:function(t){this.quillReady&&this.quill.root.setAttribute("data-placeholder",t)}},mounted:function(){var t=this,e=[];this.showImgSize&&e.push("DisplaySize"),this.showImgToolbar&&e.push("Toolbar"),this.showImgResize&&e.push("Resize"),this.loadQuill((function(){e.length?t.loadImageResizeModule((function(){t.initQuill(e)})):t.initQuill(e)}))},methods:{_handleSubscribe:function(e){var i,n,r,o=e.type,a=e.data,c=a.options,u=a.callbackId,l=this.quill,h=window.Quill;if(this.quillReady)switch(o){case"format":var d=c.name,f=void 0===d?"":d,p=c.value,m=void 0!==p&&p;n=l.getSelection(!0);var g=l.getFormat(n)[f]||!1;if(["bold","italic","underline","strike","ins"].includes(f))m=!g;else if("direction"===f){m=("rtl"!==m||!g)&&m;var v=l.getFormat(n).align;"rtl"!==m||v?m||"right"!==v||l.format("align",!1,h.sources.USER):l.format("align","right",h.sources.USER)}else if("indent"===f){var _="rtl"===l.getFormat(n).direction;m="+1"===m,_&&(m=!m),m=m?"+1":"-1"}else"list"===f&&(m="check"===m?"unchecked":m,g="checked"===g?"unchecked":g),m=g&&g!==(m||!1)||!g&&m?m:!g;l.format(f,m,h.sources.USER);break;case"insertDivider":n=l.getSelection(!0),l.insertText(n.index,"\n",h.sources.USER),l.insertEmbed(n.index+1,"divider",!0,h.sources.USER),l.setSelection(n.index+2,h.sources.SILENT);break;case"insertImage":n=l.getSelection(!0);var b=c.src,y=void 0===b?"":b,w=c.alt,S=void 0===w?"":w,x=c.data,k=void 0===x?{}:x;l.insertEmbed(n.index,"image",this.$getRealPath(y),h.sources.USER),l.formatText(n.index,1,"alt",S),l.formatText(n.index,1,"data-custom",Object.keys(k).map((function(t){return"".concat(t,"=").concat(k[t])})).join("&")),l.setSelection(n.index+1,h.sources.SILENT);break;case"insertText":n=l.getSelection(!0);var T=c.text,$=void 0===T?"":T;l.insertText(n.index,$,h.sources.USER),l.setSelection(n.index+$.length,0,h.sources.SILENT);break;case"setContents":var C=c.delta,E=c.html;"object"===s(C)?l.setContents(C,h.sources.SILENT):"string"===typeof E?l.setContents(this.html2delta(E),h.sources.SILENT):r="contents is missing";break;case"getContents":i=this.getContents();break;case"clear":l.setContents([]);break;case"removeFormat":n=l.getSelection(!0);var O=h.import("parchment");n.length?l.removeFormat(n,h.sources.USER):Object.keys(l.getFormat(n)).forEach((function(t){O.query(t,O.Scope.INLINE)&&l.format(t,!1)}));break;case"undo":l.history.undo();break;case"redo":l.history.redo();break;default:break}else r="not ready";u&&t.publishHandler("onEditorMethodCallback",{callbackId:u,data:Object.assign({},i,{errMsg:"".concat(o,":").concat(r?"fail "+r:"ok")})},this.$page.id)},loadQuill:function(t){if("function"!==typeof window.Quill){var e=document.createElement("script");e.src=window.plus?"./__uniappquill.js":"https://unpkg.com/quill@1.3.7/dist/quill.min.js",document.body.appendChild(e),e.onload=t}else"function"===typeof t&&t()},loadImageResizeModule:function(t){if("function"!==typeof window.ImageResize){var e=document.createElement("script");e.src=window.plus?"./__uniappquillimageresize.js":"https://unpkg.com/quill-image-resize-mp@3.0.1/image-resize.min.js",document.body.appendChild(e),e.onload=t}else"function"===typeof t&&t()},initQuill:function(t){var e=this,i=window.Quill;i.register("modules/ImageResize",window.ImageResize.default),o["a"](i);var n=this.quill=new i(this.$el,{toolbar:!1,readOnly:this.readOnly,placeholder:this.placeholder,modules:{ImageResize:{modules:t}}}),r=n.root,s=["focus","blur"];s.forEach((function(t){r.addEventListener(t,(function(i){e.$trigger(t,i,e.getContents())}))})),n.on(i.events.TEXT_CHANGE,(function(){e.$trigger("input",{},e.getContents())})),n.clipboard.addMatcher(Node.ELEMENT_NODE,(function(t,i){return e.skipMatcher?i:{ops:i.ops.filter((function(t){var e=t.insert;return"string"===typeof e})).map((function(t){var e=t.insert;return{insert:e}}))}})),this.initKeyboard(r),this.quillReady=!0,this.$trigger("ready",event,{})},getContents:function(){var t=this.quill,e=t.root.innerHTML,i=t.getText(),n=t.getContents();return{html:e,text:i,delta:n}},html2delta:function(t){var e,i=["span","strong","b","ins","em","i","u","a","del","s","sub","sup","img","div","p","h1","h2","h3","h4","h5","h6","hr","ol","ul","li"],n="";Object(r["a"])(t,{start:function(t,r,o){if(i.includes(t)){e=!1;var s=r.map((function(t){var e=t.name,i=t.value;return"".concat(e,'="').concat(i,'"')})).join(" "),a="<".concat(t," ").concat(s," ").concat(o?"/":"",">");n+=a}else e=!o},end:function(t){e||(n+=""))},chars:function(t){e||(n+=t)}}),this.skipMatcher=!0;var o=this.quill.clipboard.convert(n);return this.skipMatcher=!1,o}}}}).call(this,i("501c"))},"3e5d":function(t,e,i){"use strict";(function(t){i.d(e,"b",(function(){return r})),i.d(e,"a",(function(){return T}));var n,r,o,s=i("8bbf"),a=i.n(s),c=i("a20d"),u=i("2522"),l=i("9d20"),h=i("9856"),d=i("2376");function f(t,e,i){return e in t?Object.defineProperty(t,e,{value:i,enumerable:!0,configurable:!0,writable:!0}):t[e]=i,t}function p(t,e){return v(t)||g(t,e)||m()}function m(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}function g(t,e){if(Symbol.iterator in Object(t)||"[object Arguments]"===Object.prototype.toString.call(t)){var i=[],n=!0,r=!1,o=void 0;try{for(var s,a=t[Symbol.iterator]();!(n=(s=a.next()).done);n=!0)if(i.push(s.value),e&&i.length===e)break}catch(c){r=!0,o=c}finally{try{n||null==a["return"]||a["return"]()}finally{if(r)throw o}}return i}}function v(t){if(Array.isArray(t))return t}var _=(n={},f(n,c["d"],(function(e){var i=p(e,3),n=i[0],s=i[1],a=i[2];document.title="".concat(s,"[").concat(n,"]"),Object(h["b"])(n,s),t.subscribeHandler(u["a"],a,n),o=Object(d["b"])(s),r=new l["a"](n)})),f(n,c["c"],(function(t){r.addVData.apply(r,t)})),f(n,c["g"],(function(t){r.updateVData.apply(r,t)})),f(n,c["e"],(function(t){var e=p(t,2),i=e[0],n=e[1],r=getCurrentPages()[0];r.$vm=new o({mpType:"page",pageId:i,pagePath:n}).$mount("#app")})),n);function b(t,e,i){for(var n=arguments.length,r=new Array(n>3?n-3:0),o=3;o").replace(/&/g,"&").replace(/"/g,'"').replace(/'/g,"'")),t}},render:function(t){var e=this,i=[];return this.$slots.default&&this.$slots.default.forEach((function(n){if(n.text){var r=n.text.replace(/\\n/g,"\n"),o=r.split("\n");o.forEach((function(n,r){i.push(e._decodeHtml(n)),r!==o.length-1&&i.push(t("br"))}))}else n.componentOptions&&"v-uni-text"!==n.componentOptions.tag&&console.warn(" 组件内只支持嵌套 ,不支持其它组件或自定义组件,否则会引发在不同平台的渲染差异。"),i.push(n)})),t("uni-text",{on:this.$listeners,attrs:{selectable:!!this.selectable}},[t("span",{},i)])}},a=s,c=(i("c8ed"),i("2877")),u=Object(c["a"])(a,n,r,!1,null,null,null);e["default"]=u.exports},"4e0b":function(t,e,i){},"4f1c":function(t,e,i){"use strict";i.r(e);var n=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("uni-switch",t._g({on:{click:t._onClick}},t.$listeners),[i("div",{staticClass:"uni-switch-wrapper"},[i("div",{directives:[{name:"show",rawName:"v-show",value:"switch"===t.type,expression:"type === 'switch'"}],staticClass:"uni-switch-input",class:[t.switchChecked?"uni-switch-input-checked":""],style:{backgroundColor:t.switchChecked?t.color:"#DFDFDF",borderColor:t.switchChecked?t.color:"#DFDFDF"}}),i("div",{directives:[{name:"show",rawName:"v-show",value:"checkbox"===t.type,expression:"type === 'checkbox'"}],staticClass:"uni-checkbox-input",class:[t.switchChecked?"uni-checkbox-input-checked":""],style:{color:t.color}})])])},r=[],o=i("8af1"),s={name:"Switch",mixins:[o["a"],o["d"]],props:{name:{type:String,default:""},checked:{type:[Boolean,String],default:!1},type:{type:String,default:"switch"},id:{type:String,default:""},disabled:{type:[Boolean,String],default:!1},color:{type:String,default:"#007aff"}},data:function(){return{switchChecked:this.checked}},watch:{checked:function(t){this.switchChecked=t}},created:function(){this.$dispatch("Form","uni-form-group-update",{type:"add",vm:this})},beforeDestroy:function(){this.$dispatch("Form","uni-form-group-update",{type:"remove",vm:this})},listeners:{"label-click":"_onClick","@label-click":"_onClick"},methods:{_onClick:function(t){this.disabled||(this.switchChecked=!this.switchChecked,this.$trigger("change",t,{value:this.switchChecked}))},_resetFormData:function(){this.switchChecked=!1},_getFormData:function(){var t={};return""!==this.name&&(t["value"]=this.switchChecked,t["key"]=this.name),t}}},a=s,c=(i("a5ec"),i("2877")),u=Object(c["a"])(a,n,r,!1,null,null,null);e["default"]=u.exports},"501c":function(t,e,i){"use strict";i.r(e);var n=i("8bbf"),r=i.n(n),o=i("6bdf"),s=i("5dc1"),a={requestComponentInfo:o["a"],requestComponentObserver:s["b"],destroyComponentObserver:s["a"]},c=i("33ed"),u=i("7107"),l=i("0516");function h(t){Object.keys(a).forEach((function(e){t(e,a[e])})),t("pageScrollTo",c["c"]),t("loadFontFace",u["a"]),Object(l["a"])(t)}var d=i("5bb5");i.d(e,"on",(function(){return p})),i.d(e,"off",(function(){return m})),i.d(e,"once",(function(){return g})),i.d(e,"emit",(function(){return v})),i.d(e,"subscribe",(function(){return _})),i.d(e,"unsubscribe",(function(){return b})),i.d(e,"subscribeHandler",(function(){return y})),i.d(e,"publishHandler",(function(){return d["a"]}));var f=new r.a,p=f.$on.bind(f),m=f.$off.bind(f),g=f.$once.bind(f),v=f.$emit.bind(f);function _(t,e){return p("service."+t,e)}function b(t,e){return m("service."+t,e)}function y(t,e,i){v("service."+t,e,i)}h(_)},5077:function(t,e,i){"use strict";var n=["padding","borderRadius","borderColor","borderWidth","backgroundColor"],r=["color","textAlign","lineHeight","fontSize","fontWeight","textOverflow","whiteSpace"],o=[],s={start:"left",end:"right"},a=0;e["a"]={name:"Cover",data:function(){return{style:{}}},computed:{viewPosition:function(){var t={};for(var e in this.position){var i=this.position[e],n=parseFloat(i),r=parseFloat(this.$parent.position[e]);if("top"===e||"left"===e)i=Math.max(n,r)+"px";else if("width"===e||"height"===e){var o="left",s=parseFloat(this.$parent.position[o]),a=parseFloat(this.position[o]),c=Math.max(s-a,0),u=Math.max(a+n-(s+r),0);i=Math.max(n-c-u,0)+"px"}t[e]=i}return t},tags:function(){var t=this._getTagPosition(),e=this.style;return[{tag:"rect",position:t,rectStyles:{color:e.backgroundColor,radius:e.borderRadius,borderColor:e.borderColor,borderWidth:e.borderWidth}},"image"===this.coverType?{tag:"img",position:t,src:this.coverContent}:{tag:"font",position:t,textStyles:{align:s[e.textAlign]||e.textAlign,color:e.color,decoration:"none",lineSpacing:parseFloat(e.lineHeight)-parseFloat(e.fontSize)+"px",margin:e.padding,overflow:e.textOverflow,size:e.fontSize,verticalAlign:"top",weight:e.fontWeight,whiteSpace:e.whiteSpace},text:this.coverContent}]}},mounted:function(){var t=this;this._updateStyle();var e=this.$parent;e.isNative&&(e._isMounted?this._onCanInsert():e.onCanInsertCallbacks.push((function(){t._onCanInsert()})),this.$watch("hidden",(function(e){t.cover&&t.cover[e?"hide":"show"]()})),this.$watch("viewPosition",(function(e){t.cover&&t.cover.setStyle(e)}),{deep:!0}),this.$watch("tags",(function(){var e=t.cover;e&&(e.reset(),e.draw(t.tags))}),{deep:!0}),this.$on("uni-view-update",this._requestStyleUpdate))},beforeDestroy:function(){this.$parent.isNative&&(this.cover&&this.cover.close(),delete this.cover)},methods:{_onCanInsert:function(){var t=this,e=this.cover=new plus.nativeObj.View("cover-".concat(Date.now(),"-").concat(a++),this.viewPosition,this.tags);plus.webview.currentWebview().append(e),this.hidden&&e.hide(),e.addEventListener("click",(function(){t.$trigger("click",{},{})}))},_getTagPosition:function(){var t={};for(var e in this.position){var i=this.position[e];"top"!==e&&"left"!==e||(i=Math.min(parseFloat(i)-parseFloat(this.$parent.position[e]),0)+"px"),t[e]=i}return t},_updateStyle:function(){var t=this,e=getComputedStyle(this.$el);n.concat(r,o).forEach((function(i){t.style[i]=e[i]}))},_requestStyleUpdate:function(){var t=this;this._styleUpdateRequest&&cancelAnimationFrame(this._styleUpdateRequest),this._styleUpdateRequest=requestAnimationFrame((function(){delete t._styleUpdateRequest,t._updateStyle()}))}}}},5129:function(t,e){t.exports=["uni-app","uni-tabbar","uni-page","uni-page-head","uni-page-wrapper","uni-page-body","uni-page-refresh","uni-actionsheet","uni-modal","uni-toast","uni-resize-sensor","uni-shadow-root","uni-ad","uni-audio","uni-button","uni-camera","uni-canvas","uni-checkbox","uni-checkbox-group","uni-cover-image","uni-cover-view","uni-editor","uni-form","uni-functional-page-navigator","uni-icon","uni-image","uni-input","uni-label","uni-live-player","uni-live-pusher","uni-map","uni-movable-area","uni-movable-view","uni-navigator","uni-official-account","uni-open-data","uni-picker","uni-picker-view","uni-picker-view-column","uni-progress","uni-radio","uni-radio-group","uni-rich-text","uni-scroll-view","uni-slider","uni-swiper","uni-swiper-item","uni-switch","uni-text","uni-textarea","uni-video","uni-view","uni-web-view"]},"515d":function(t,e,i){},5363:function(t,e,i){"use strict";function n(t){this._drag=t,this._dragLog=Math.log(t),this._x=0,this._v=0,this._startTime=0}i.d(e,"a",(function(){return n})),n.prototype.set=function(t,e){this._x=t,this._v=e,this._startTime=(new Date).getTime()},n.prototype.setVelocityByEnd=function(t){this._v=(t-this._x)*this._dragLog/(Math.pow(this._drag,100)-1)},n.prototype.x=function(t){var e;return void 0===t&&(t=((new Date).getTime()-this._startTime)/1e3),e=t===this._dt&&this._powDragDt?this._powDragDt:this._powDragDt=Math.pow(this._drag,t),this._dt=t,this._x+this._v*e/this._dragLog-this._v/this._dragLog},n.prototype.dx=function(t){var e;return void 0===t&&(t=((new Date).getTime()-this._startTime)/1e3),e=t===this._dt&&this._powDragDt?this._powDragDt:this._powDragDt=Math.pow(this._drag,t),this._dt=t,this._v*e},n.prototype.done=function(){return Math.abs(this.dx())<3},n.prototype.reconfigure=function(t){var e=this.x(),i=this.dx();this._drag=t,this._dragLog=Math.log(t),this.set(e,i)},n.prototype.configuration=function(){var t=this;return[{label:"Friction",read:function(){return t._drag},write:function(e){t.reconfigure(e)},min:.001,max:.1,step:.001}]}},5408:function(t,e,i){var n={"./button/index.vue":"d3bd","./canvas/index.vue":"bacd","./checkbox-group/index.vue":"25ce","./checkbox/index.vue":"7bb3","./editor/index.vue":"27c2","./form/index.vue":"b34d","./icon/index.vue":"9a8b","./image/index.vue":"1082","./input/index.vue":"250d","./label/index.vue":"70f4","./movable-area/index.vue":"c61c","./movable-view/index.vue":"8842","./navigator/index.vue":"17fd","./picker-view-column/index.vue":"1955","./picker-view/index.vue":"27ab","./progress/index.vue":"9b1f","./radio-group/index.vue":"d5ec","./radio/index.vue":"6491","./resize-sensor/index.vue":"3e8c","./rich-text/index.vue":"b705","./scroll-view/index.vue":"f1ef","./slider/index.vue":"9f96","./swiper-item/index.vue":"9213","./swiper/index.vue":"5513","./switch/index.vue":"4f1c","./text/index.vue":"4da7","./textarea/index.vue":"5768","./view/index.vue":"2bbe"};function r(t){var e=o(t);return i(e)}function o(t){if(!i.o(n,t)){var e=new Error("Cannot find module '"+t+"'");throw e.code="MODULE_NOT_FOUND",e}return n[t]}r.keys=function(){return Object.keys(n)},r.resolve=o,t.exports=r,r.id="5408"},"54bc":function(t,e,i){},5513:function(t,e,i){"use strict";i.r(e);var n,r,o=i("ba15"),s={name:"Swiper",mixins:[o["a"]],props:{indicatorDots:{type:[Boolean,String],default:!1},vertical:{type:[Boolean,String],default:!1},autoplay:{type:[Boolean,String],default:!1},circular:{type:[Boolean,String],default:!1},interval:{type:[Number,String],default:5e3},duration:{type:[Number,String],default:500},current:{type:[Number,String],default:0},indicatorColor:{type:String,default:""},indicatorActiveColor:{type:String,default:""},previousMargin:{type:String,default:""},nextMargin:{type:String,default:""},currentItemId:{type:String,default:""},skipHiddenItemLayout:{type:[Boolean,String],default:!1},displayMultipleItems:{type:[Number,String],default:1}},data:function(){return{currentSync:Math.round(this.current)||0,currentItemIdSync:this.currentItemId||"",userTracking:!1,currentChangeSource:"",items:[]}},computed:{intervalNumber:function(){var t=Number(this.interval);return isNaN(t)?5e3:t},durationNumber:function(){var t=Number(this.duration);return isNaN(t)?500:t},displayMultipleItemsNumber:function(){var t=Math.round(this.displayMultipleItems);return isNaN(t)?1:t},slidesStyle:function(){var t={};return(this.nextMargin||this.previousMargin)&&(t=this.vertical?{left:0,right:0,top:this._upx2px(this.previousMargin),bottom:this._upx2px(this.nextMargin)}:{top:0,bottom:0,left:this._upx2px(this.previousMargin),right:this._upx2px(this.nextMargin)}),t},slideFrameStyle:function(){var t=Math.abs(100/this.displayMultipleItemsNumber)+"%";return{width:this.vertical?"100%":t,height:this.vertical?t:"100%"}},circularEnabled:function(){return this.circular&&this.items.length>this.displayMultipleItemsNumber}},watch:{vertical:function(){this._resetLayout()},circular:function(){this._resetLayout()},intervalNumber:function(t){this._timer&&(this._cancelSchedule(),this._scheduleAutoplay())},current:function(t){this._currentCheck()},currentSync:function(t){this._currentChanged(t),this.$emit("update:current",t)},currentItemId:function(t){this._currentCheck()},currentItemIdSync:function(t){this.$emit("update:currentItemId",t)},displayMultipleItemsNumber:function(){this._resetLayout()}},created:function(){this._invalid=!0,this._viewportPosition=0,this._viewportMoveRatio=1,this._animating=null,this._requestedAnimation=!1,this._userDirectionChecked=!1,this._contentTrackViewport=0,this._contentTrackSpeed=0,this._contentTrackT=0},mounted:function(){var t=this;this._currentCheck(),this.touchtrack(this.$refs.slidesWrapper,"_handleContentTrack",!0),this._resetLayout(),this.$watch((function(){return t.autoplay&&!t.userTracking}),this._inintAutoplay),this._inintAutoplay(this.autoplay&&!this.userTracking),this.$watch("items.length",this._resetLayout)},beforeDestroy:function(){this._cancelSchedule()},methods:{_inintAutoplay:function(t){t?this._scheduleAutoplay():this._cancelSchedule()},_currentCheck:function(){var t=-1;if(this.currentItemId)for(var e=0,i=this.items;ee-this.displayMultipleItemsNumber)return e-this.displayMultipleItemsNumber;return i},_upx2px:function(t){return/\d+[ur]px$/i.test(t)&&t.replace(/\d+[ur]px$/i,(function(t){return"".concat(uni.upx2px(parseFloat(t)),"px")})),t||""},_resetLayout:function(){if(this._isMounted){this._cancelSchedule(),this._endViewportAnimation();for(var t=this.items,e=0;e0&&this._viewportMoveRatio<1||(this._viewportMoveRatio=1)}var r=this._viewportPosition;this._viewportPosition=-2;var o=this.currentSync;o>=0?(this._invalid=!1,this.userTracking?(this._updateViewport(r+o-this._contentTrackViewport),this._contentTrackViewport=o):(this._updateViewport(o),this.autoplay&&this._scheduleAutoplay())):(this._invalid=!0,this._updateViewport(-this.displayMultipleItemsNumber-1))}},_checkCircularLayout:function(t){if(!this._invalid)for(var e=this.items,i=e.length,n=t+this.displayMultipleItemsNumber,r=0;r=this.items.length&&(t-=this.items.length),t=this._transitionStart%1>.5||this._transitionStart<0?t-1:t,this.$trigger("transition",{},{dx:this.vertical?0:t*r.offsetWidth,dy:this.vertical?t*r.offsetHeight:0})},_animateFrameFuncProto:function(){var t=this;if(this._animating){var e=this._animating,i=e.toPos,n=e.acc,r=e.endTime,o=e.source,s=r-Date.now();if(s<=0){this._updateViewport(i),this._animating=null,this._requestedAnimation=!1,this._transitionStart=null;var a=this.items[this.currentSync];a&&this._itemReady(a,(function(){var e=a.componentInstance.itemId||"";t.$trigger("animationfinish",{},{current:t.currentSync,currentItemId:e,source:o})}))}else{var c=n*s*s/2,u=i+c;this._updateViewport(u),requestAnimationFrame(this._animateFrameFuncProto.bind(this))}}else this._requestedAnimation=!1},_animateViewport:function(t,e,i){this._cancelViewportAnimation();var n=this.durationNumber,r=this.items.length,o=this._viewportPosition;if(this.circularEnabled)if(i<0){for(;ot;)o-=r}else if(i>0){for(;o>t;)o-=r;for(;o+rt;)o-=r;o+r-tr)&&(n<0?n=-o(-n):n>r&&(n=r+o(n-r)),e._contentTrackSpeed=0),e._updateViewport(n)}var a=this._contentTrackT-i||1;this.vertical?s(-t.dy/this.$refs.slideFrame.offsetHeight,-t.ddy/a):s(-t.dx/this.$refs.slideFrame.offsetWidth,-t.ddx/a)},_handleTrackEnd:function(t){this.userTracking=!1;var e=this._contentTrackSpeed/Math.abs(this._contentTrackSpeed),i=0;!t&&Math.abs(this._contentTrackSpeed)>.2&&(i=.5*e);var n=this._normalizeCurrentValue(this._viewportPosition+i);t?this._updateViewport(this._contentTrackViewport):(this.currentChangeSource="touch",this.currentSync=n,this._animateViewport(n,"touch",0!==i?i:0===n&&this.circularEnabled&&this._viewportPosition>=1?1:0))},_handleContentTrack:function(t){if(!this._invalid){if("start"===t.detail.state)return this.userTracking=!0,this._userDirectionChecked=!1,this._handleTrackStart();if("end"===t.detail.state)return this._handleTrackEnd(!1);if("cancel"===t.detail.state)return this._handleTrackEnd(!0);if(this.userTracking){if(!this._userDirectionChecked){this._userDirectionChecked=!0;var e=Math.abs(t.detail.dx),i=Math.abs(t.detail.dy);if(e>=i&&this.vertical?this.userTracking=!1:e<=i&&!this.vertical&&(this.userTracking=!1),!this.userTracking)return void(this.autoplay&&this._scheduleAutoplay())}return this._handleTrackMove(t.detail),!1}}}},render:function(t){var e=[],i=[];this.$slots.default&&this.$slots.default.forEach((function(t){t.componentOptions&&"v-uni-swiper-item"===t.componentOptions.tag&&i.push(t)}));for(var n=0,r=i.length;n=o||n-1&&this.selectionEndNumber>-1&&(this.$refs.textarea.selectionStart=this.selectionStartNumber,this.$refs.textarea.selectionEnd=this.selectionEndNumber)},_checkCursor:function(){this.focusSync&&("focus"===this.focusChangeSource||!this.focusChangeSource&&this.selectionStartNumber<0&&this.selectionEndNumber<0)&&this.cursorNumber>-1&&(this.$refs.textarea.selectionEnd=this.$refs.textarea.selectionStart=this.cursorNumber)},_blur:function(t){this.focusSync=!1,this.$trigger("blur",t,{value:this.valueSync,cursor:this.$refs.textarea.selectionEnd})},_compositionstart:function(t){this.composition=!0},_compositionend:function(t){this.composition=!1},_confirm:function(t){this.$trigger("confirm",t,{value:this.valueSync})},_linechange:function(t){this.$trigger("linechange",t,{value:this.valueSync})},_touchstart:function(){this.focusChangeSource="touch"},_resize:function(t){var e=t.height;this.height=e},_input:function(t){this.composition&&(this.valueComposition=t.target.value)},_getFormData:function(){return{value:this.valueSync,key:this.name}},_resetFormData:function(){this.valueSync=""},_checkEmpty:function(t){return t||!1}}},a=s,c=(i("9400"),i("2877")),u=Object(c["a"])(a,n,r,!1,null,null,null);e["default"]=u.exports},"599d":function(t,e,i){"use strict";var n=1e-4,r=750,o=!1,s=0,a=0;function c(){var t=uni.getSystemInfoSync(),e=t.platform,i=t.pixelRatio,n=t.windowWidth;s=n,a=i,o="ios"===e}function u(t,e){if(0===s&&c(),t=Number(t),0===t)return 0;var i=t/r*(e||s);return i<0&&(i=-i),i=Math.floor(i+n),0===i?1!==a&&o?.5:1:t<0?-i:i}var l=i("f2b8"),h=i("1e88"),d=i("d8c8"),f=i.n(d),p=navigator.userAgent,m=/android/i.test(p),g=/iphone|ipad|ipod/i.test(p);function v(){var t,e,i,n=window.innerWidth,r=window.innerHeight,o=window.screen,s=window.devicePixelRatio,a=o.width,c=o.height,u=navigator.language,l=0;if(g){t="iOS";var d=p.match(/OS\s([\w_]+)\slike/);d&&(e=d[1].replace(/_/g,"."));var v=p.match(/\(([a-zA-Z]+);/);v&&(i=v[1])}else if(m){t="Android";var _=p.match(/Android[\s/]([\w\.]+)[;\s]/);_&&(e=_[1]);for(var b=p.match(/\((.+?)\)/),y=b?b[1].split(";"):p.split(" "),w=[/\bAndroid\b/i,/\bLinux\b/i,/\bU\b/i,/^\s?[a-z][a-z]$/i,/^\s?[a-z][a-z]-[a-z][a-z]$/i,/\bwv\b/i,/\/[\d\.,]+$/,/^\s?[\d\.,]+$/,/\bBrowser\b/i,/\bMobile\b/i],S=0;S0){i=x.split("Build")[0].trim();break}for(var k=void 0,T=0;T0}});else{var t=window.document,e=[];n.prototype.THROTTLE_TIMEOUT=100,n.prototype.POLL_INTERVAL=null,n.prototype.USE_MUTATION_OBSERVER=!0,n.prototype.observe=function(t){var e=this._observationTargets.some((function(e){return e.element==t}));if(!e){if(!t||1!=t.nodeType)throw new Error("target must be an Element");this._registerInstance(),this._observationTargets.push({element:t,entry:null}),this._monitorIntersections(),this._checkForIntersections()}},n.prototype.unobserve=function(t){this._observationTargets=this._observationTargets.filter((function(e){return e.element!=t})),this._observationTargets.length||(this._unmonitorIntersections(),this._unregisterInstance())},n.prototype.disconnect=function(){this._observationTargets=[],this._unmonitorIntersections(),this._unregisterInstance()},n.prototype.takeRecords=function(){var t=this._queuedEntries.slice();return this._queuedEntries=[],t},n.prototype._initThresholds=function(t){var e=t||[0];return Array.isArray(e)||(e=[e]),e.sort().filter((function(t,e,i){if("number"!=typeof t||isNaN(t)||t<0||t>1)throw new Error("threshold must be a number between 0 and 1 inclusively");return t!==i[e-1]}))},n.prototype._parseRootMargin=function(t){var e=t||"0px",i=e.split(/\s+/).map((function(t){var e=/^(-?\d*\.?\d+)(px|%)$/.exec(t);if(!e)throw new Error("rootMargin must be specified in pixels or percent");return{value:parseFloat(e[1]),unit:e[2]}}));return i[1]=i[1]||i[0],i[2]=i[2]||i[0],i[3]=i[3]||i[1],i},n.prototype._monitorIntersections=function(){this._monitoringIntersections||(this._monitoringIntersections=!0,this.POLL_INTERVAL?this._monitoringInterval=setInterval(this._checkForIntersections,this.POLL_INTERVAL):(s(window,"resize",this._checkForIntersections,!0),s(t,"scroll",this._checkForIntersections,!0),this.USE_MUTATION_OBSERVER&&"MutationObserver"in window&&(this._domObserver=new MutationObserver(this._checkForIntersections),this._domObserver.observe(t,{attributes:!0,childList:!0,characterData:!0,subtree:!0}))))},n.prototype._unmonitorIntersections=function(){this._monitoringIntersections&&(this._monitoringIntersections=!1,clearInterval(this._monitoringInterval),this._monitoringInterval=null,a(window,"resize",this._checkForIntersections,!0),a(t,"scroll",this._checkForIntersections,!0),this._domObserver&&(this._domObserver.disconnect(),this._domObserver=null))},n.prototype._checkForIntersections=function(){var t=this._rootIsInDom(),e=t?this._getRootRect():l();this._observationTargets.forEach((function(n){var o=n.element,s=u(o),a=this._rootContainsTarget(o),c=n.entry,l=t&&a&&this._computeTargetAndRootIntersection(o,e),h=n.entry=new i({time:r(),target:o,boundingClientRect:s,rootBounds:e,intersectionRect:l});c?t&&a?this._hasCrossedThreshold(c,h)&&this._queuedEntries.push(h):c&&c.isIntersecting&&this._queuedEntries.push(h):this._queuedEntries.push(h)}),this),this._queuedEntries.length&&this._callback(this.takeRecords(),this)},n.prototype._computeTargetAndRootIntersection=function(e,i){if("none"!=window.getComputedStyle(e).display){var n=u(e),r=n,o=d(e),s=!1;while(!s){var a=null,l=1==o.nodeType?window.getComputedStyle(o):{};if("none"==l.display)return;if(o==this.root||o==t?(s=!0,a=i):o!=t.body&&o!=t.documentElement&&"visible"!=l.overflow&&(a=u(o)),a&&(r=c(a,r),!r))break;o=d(o)}return r}},n.prototype._getRootRect=function(){var e;if(this.root)e=u(this.root);else{var i=t.documentElement,n=t.body;e={top:0,left:0,right:i.clientWidth||n.clientWidth,width:i.clientWidth||n.clientWidth,bottom:i.clientHeight||n.clientHeight,height:i.clientHeight||n.clientHeight}}return this._expandRectByRootMargin(e)},n.prototype._expandRectByRootMargin=function(t){var e=this._rootMarginValues.map((function(e,i){return"px"==e.unit?e.value:e.value*(i%2?t.width:t.height)/100})),i={top:t.top-e[0],right:t.right+e[1],bottom:t.bottom+e[2],left:t.left-e[3]};return i.width=i.right-i.left,i.height=i.bottom-i.top,i},n.prototype._hasCrossedThreshold=function(t,e){var i=t&&t.isIntersecting?t.intersectionRatio||0:-1,n=e.isIntersecting?e.intersectionRatio||0:-1;if(i!==n)for(var r=0;r=0&&a>=0&&{top:i,bottom:n,left:r,right:o,width:s,height:a}}function u(t){var e;try{e=t.getBoundingClientRect()}catch(i){}return e?(e.width&&e.height||(e={top:e.top,right:e.right,bottom:e.bottom,left:e.left,width:e.right-e.left,height:e.bottom-e.top}),e):l()}function l(){return{top:0,bottom:0,left:0,right:0,width:0,height:0}}function h(t,e){var i=e;while(i){if(i==t)return!0;i=d(i)}return!1}function d(t){var e=t.parentNode;return e&&11==e.nodeType&&e.host?e.host:e&&e.assignedSlot?e.assignedSlot.parentNode:e}})()},"5bb5":function(t,e,i){"use strict";i.d(e,"a",(function(){return o}));var n=i("a20d"),r=i("f2b3");function o(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};Object(r["h"])((function(){var i=plus.webview.currentWebview().id;plus.webview.postMessageToUniNView({type:"subscribeHandler",args:{type:t,data:e,pageId:i}},n["a"])}))}},"5dc1":function(t,e,i){"use strict";(function(t){i.d(e,"b",(function(){return a})),i.d(e,"a",(function(){return c}));i("5abe");var n=i("85b6"),r=i("db8e");function o(t){return{bottom:t.bottom,height:t.height,left:t.left,right:t.right,top:t.top,width:t.width}}var s={};function a(e,i){var a=e.reqId,c=e.component,u=e.options,l=getCurrentPages(),h=l.find((function(t){return t.$page.id===i}));if(!h)throw new Error("Not Found:Page[".concat(i,"]"));var d=h.$vm,f=Object(r["a"])(c,d),p=u.relativeToSelector?f.querySelector(u.relativeToSelector):null,m=s[a]=new IntersectionObserver((function(e,i){e.forEach((function(e){t.publishHandler("onRequestComponentObserver",{reqId:a,res:{intersectionRatio:e.intersectionRatio,intersectionRect:o(e.intersectionRect),boundingClientRect:o(e.boundingClientRect),relativeRect:o(e.rootBounds),time:Date.now(),dataset:Object(n["b"])(e.target.dataset||{}),id:e.target.id}},d.$page.id)}))}),{root:p,rootMargin:u.rootMargin,threshold:u.thresholds});u.observeAll?(m.USE_MUTATION_OBSERVER=!0,Array.prototype.map.call(f.querySelectorAll(u.selector),(function(t){m.observe(t)}))):(m.USE_MUTATION_OBSERVER=!1,m.observe(f.querySelector(u.selector)))}function c(e){var i=e.reqId,n=s[i];n&&(n.disconnect(),t.publishHandler("onRequestComponentObserver",{reqId:i,reqEnd:!0}))}}).call(this,i("501c"))},"5dc4":function(t,e,i){},6062:function(t,e,i){"use strict";var n=i("ef36"),r=i.n(n);r.a},"60ee":function(t,e,i){},"61c2":function(t,e,i){"use strict";var n=i("f2b3"),r=i("8af1");function o(){this.$dispatch("Form","uni-form-group-update",{type:"add",vm:this})}function s(){this.$dispatch("Form","uni-form-group-update",{type:"remove",vm:this})}var a={name:"uni://form-field",init:function(t,e){e.constructor.options.props&&e.constructor.options.props.name&&e.constructor.options.props.value||(e.constructor.options.props||(e.constructor.options.props={}),e.constructor.options.props.name||(e.constructor.options.props.name=t.props.name={type:String}),e.constructor.options.props.value||(e.constructor.options.props.value=t.props.value={type:null})),t.propsData||(t.propsData={});var i=e.$vnode;if(i&&i.data&&i.data.attrs&&(Object(n["d"])(i.data.attrs,"name")&&(t.propsData.name=i.data.attrs.name),Object(n["d"])(i.data.attrs,"value")&&(t.propsData.value=i.data.attrs.value)),!e.constructor.options.methods||!e.constructor.options.methods._getFormData){e.constructor.options.methods||(e.constructor.options.methods={}),t.methods||(t.methods={});var a={_getFormData:function(){return this.name?{key:this.name,value:this.value}:{}},_resetFormData:function(){this.value=""}};Object.assign(e.constructor.options.methods,a),Object.assign(t.methods,a),Object.assign(e.constructor.options.methods,r["a"].methods),Object.assign(t.methods,r["a"].methods);var c=t["created"];e.constructor.options["created"]=t["created"]=c?[].concat(o,c):[o];var u=t["beforeDestroy"];e.constructor.options["beforeDestroy"]=t["beforeDestroy"]=u?[].concat(s,u):[s]}}};function c(t,e,i){return e in t?Object.defineProperty(t,e,{value:i,enumerable:!0,configurable:!0,writable:!0}):t[e]=i,t}i.d(e,"a",(function(){return l}));var u=c({},a.name,a);function l(t,e){t.behaviors.forEach((function(i){var n=u[i];n&&n.init(t,e)}))}},"630f":function(t,e,i){"use strict";i.r(e);var n=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("uni-cover-image",t._g({style:t.imageInfo,attrs:{src:t.src}},t.$listeners),[i("div",{ref:"container",staticClass:"uni-cover-image"})])},r=[],o=i("0aa0"),s=i("5077"),a=i("f2b3"),c="_doc/uniapp_temp",u="".concat(c,"_").concat(Date.now()),l={name:"CoverImage",mixins:[o["a"],s["a"]],props:{src:{type:String,default:""},autoSize:{type:[Boolean,String],default:!1}},data:function(){return{coverType:"image",coverContent:"",imageInfo:{}}},watch:{src:function(){this.loadImage()}},created:function(){this.loadImage()},beforeDestroy:function(){var t=this.downloaTask;t&&t.state<4&&t.abort()},methods:{loadImage:function(){var t=this;this.coverContent="",this.imageInfo=this.autoSize?{width:0,height:0}:{};var e=this.src?this.$getRealPath(this.src):"";0===e.indexOf("http://")||0===e.indexOf("https://")?Object(a["h"])((function(){t.downloaTask=plus.downloader.createDownload(e,{filename:u+"/download/"},(function(e,i){200===i?t.getImageInfo(e.filename):t.$trigger("error",{},{errMsg:"error"})})).start()})):e&&this.getImageInfo(e)},getImageInfo:function(t){var e=this;this.coverContent=t,Object(a["h"])((function(){plus.io.getImageInfo({src:t,success:function(t){var i=t.width,n=t.height;e.autoSize&&(e.imageInfo={width:"".concat(i,"px"),height:"".concat(n,"px")},e._isMounted&&e._requestPositionUpdate()),e.$trigger("load",{},{width:i,height:n})},fail:function(){e.$trigger("error",{},{errMsg:"error"})}})}))}}},h=l,d=(i("21c3"),i("2877")),f=Object(d["a"])(h,n,r,!1,null,null,null);e["default"]=f.exports},"634a":function(t,e,i){"use strict";(function(t,n){var r=i("8bbf"),o=i.n(r),s=(i("7522"),i("2376")),a=i("9856"),c=i("7d0f"),u=i("599d");i.d(e,"a",(function(){return u["a"]})),i.d(e,"b",(function(){return u["b"]})),i.d(e,"c",(function(){return u["c"]})),i.d(e,"d",(function(){return u["d"]})),i.d(e,"e",(function(){return u["e"]})),i.d(e,"f",(function(){return u["f"]})),i.d(e,"g",(function(){return u["g"]})),i.d(e,"h",(function(){return u["h"]})),n.UniViewJSBridge={publishHandler:t.publishHandler,subscribeHandler:t.subscribeHandler},n.getCurrentPages=a["a"],n.__definePage=s["a"],n.Vue=o.a,o.a.use(c["a"]),i("1efd")}).call(this,i("501c"),i("c8ba"))},6428:function(t,e,i){"use strict";var n=i("f756"),r=i.n(n);r.a},6491:function(t,e,i){"use strict";i.r(e);var n=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("uni-radio",t._g({on:{click:t._onClick}},t.$listeners),[i("div",{staticClass:"uni-radio-wrapper"},[i("div",{staticClass:"uni-radio-input",class:t.radioChecked?"uni-radio-input-checked":"",style:t.radioChecked?t.checkedStyle:""}),t._t("default")],2)])},r=[],o=i("8af1"),s={name:"Radio",mixins:[o["a"],o["d"]],props:{checked:{type:[Boolean,String],default:!1},id:{type:String,default:""},disabled:{type:[Boolean,String],default:!1},color:{type:String,default:"#007AFF"},value:{type:String,default:""}},data:function(){return{radioChecked:this.checked,radioValue:this.value}},computed:{checkedStyle:function(){return"background-color: ".concat(this.color,";border-color: ").concat(this.color,";")}},watch:{checked:function(t){this.radioChecked=t},value:function(t){this.radioValue=t}},listeners:{"label-click":"_onClick","@label-click":"_onClick"},created:function(){this.$dispatch("RadioGroup","uni-radio-group-update",{type:"add",vm:this}),this.$dispatch("Form","uni-form-group-update",{type:"add",vm:this})},beforeDestroy:function(){this.$dispatch("RadioGroup","uni-radio-group-update",{type:"remove",vm:this}),this.$dispatch("Form","uni-form-group-update",{type:"remove",vm:this})},methods:{_onClick:function(t){this.disabled||this.radioChecked||(this.radioChecked=!0,this.$dispatch("RadioGroup","uni-radio-change",t,this))},_resetFormData:function(){this.radioChecked=this.min}}},a=s,c=(i("c96e"),i("2877")),u=Object(c["a"])(a,n,r,!1,null,null,null);e["default"]=u.exports},"64d0":function(t,e,i){"use strict";var n=i("c0e5"),r=i.n(n);r.a},"6bdf":function(t,e,i){"use strict";(function(t){i.d(e,"a",(function(){return u}));var n=i("85b6"),r=i("1e88"),o=i("db8e");function s(t){var e={};return t.id&&(e.id=""),t.dataset&&(e.dataset={}),t.rect&&(e.left=0,e.right=0,e.top=0,e.bottom=0),t.size&&(e.width=document.documentElement.clientWidth,e.height=document.documentElement.clientHeight),t.scrollOffset&&(e.scrollLeft=document.documentElement.scrollLeft||document.body.scrollLeft||0,e.scrollTop=document.documentElement.scrollTop||document.body.scrollTop||0),e}function a(t,e){var i={},o=Object(r["a"])(),s=o.top;if(e.id&&(i.id=t.id),e.dataset&&(i.dataset=Object(n["b"])(t.dataset||{})),e.rect||e.size){var a=t.getBoundingClientRect();e.rect&&(i.left=a.left,i.right=a.right,i.top=a.top-s,i.bottom=a.bottom),e.size&&(i.width=a.width,i.height=a.height)}return e.properties&&e.properties.forEach((function(t){t=t.replace(/-([a-z])/g,(function(t,e){return e.toUpperCase()}))})),e.scrollOffset&&("UNI-SCROLL-VIEW"===t.tagName&&t.__vue__&&t.__vue__.getScrollPosition?Object.assign(i,t.__vue__.getScrollPosition()):(i.scrollLeft=0,i.scrollTop=0)),e.context&&t.__vue__&&t.__vue__._getContextInfo&&(i.context=t.__vue__._getContextInfo()),i}function c(t,e,i,n,r){var s=Object(o["a"])(e,t);if(n){var c=s&&(s.matches(i)?s:s.querySelector(i));return c?a(c,r):null}if(s){var u=[],l=s.querySelectorAll(i);return l&&l.length&&(u=[].map.call(l,(function(t){return a(t,r)}))),s.matches(i)&&u.unshift(s),u}return[]}function u(e,i){var n=e.reqId,r=e.reqs,o=getCurrentPages(),a=o.find((function(t){return t.$page.id===i}));if(!a)throw new Error("Not Found:Page[".concat(i,"]"));var u=a.$vm,l=[];r.forEach((function(t){var e=t.component,i=t.selector,n=t.single,r=t.fields;0===e?l.push(s(r)):l.push(c(u,e,i,n,r))})),t.publishHandler("onRequestComponentInfo",{reqId:n,res:l},u.$page.id)}}).call(this,i("501c"))},"70f4":function(t,e,i){"use strict";i.r(e);var n=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("uni-label",t._g({on:{click:t._onClick}},t.$listeners),[t._t("default")],2)},r=[],o=i("3c47"),s=o["a"],a=i("2877"),c=Object(a["a"])(s,n,r,!1,null,null,null);e["default"]=c.exports},7107:function(t,e,i){"use strict";(function(t){function n(e){var i=e.options,n=e.callbackId,r=i.family,o=i.source,s=i.desc,a=void 0===s?{}:s,c=document.fonts;if(c){var u=new FontFace(r,o,a);u.load().then((function(){c.add(u),t.publishHandler("onLoadFontFaceCallback",{callbackId:n,data:{errMsg:"loadFontFace:ok"}})})).catch((function(e){t.publishHandler("onLoadFontFaceCallback",{callbackId:n,data:{errMsg:"loadFontFace:fail ".concat(e)}})}))}else{var l=document.createElement("style");l.innerText='@font-face{font-family:"'.concat(r,'";src:').concat(o,";font-style:").concat(a.style,";font-weight:").concat(a.weight,";font-stretch:").concat(a.stretch,";unicode-range:").concat(a.unicodeRange,";font-variant:").concat(a.variant,";font-feature-settings:").concat(a.featureSettings,";}"),document.head.appendChild(l),t.publishHandler("onLoadFontFaceCallback",{callbackId:n,data:{errMsg:"loadFontFace:ok"}})}}i.d(e,"a",(function(){return n}))}).call(this,i("501c"))},"72ad":function(t,e,i){},"72b3":function(t,e,i){"use strict";function n(t,e,i){return t>e-i&&t0){var u=(-i-Math.sqrt(o))/(2*n),l=(-i+Math.sqrt(o))/(2*n),h=(e-u*t)/(l-u),d=t-h;return{x:function(t){var e,i;return t===this._t&&(e=this._powER1T,i=this._powER2T),this._t=t,e||(e=this._powER1T=Math.pow(Math.E,u*t)),i||(i=this._powER2T=Math.pow(Math.E,l*t)),d*e+h*i},dx:function(t){var e,i;return t===this._t&&(e=this._powER1T,i=this._powER2T),this._t=t,e||(e=this._powER1T=Math.pow(Math.E,u*t)),i||(i=this._powER2T=Math.pow(Math.E,l*t)),d*u*e+h*l*i}}}var f=Math.sqrt(4*n*r-i*i)/(2*n),p=-i/2*n,m=t,g=(e-p*t)/f;return{x:function(t){return Math.pow(Math.E,p*t)*(m*Math.cos(f*t)+g*Math.sin(f*t))},dx:function(t){var e=Math.pow(Math.E,p*t),i=Math.cos(f*t),n=Math.sin(f*t);return e*(g*f*i-m*f*n)+p*e*(g*n+m*i)}}},o.prototype.x=function(t){return void 0===t&&(t=((new Date).getTime()-this._startTime)/1e3),this._solution?this._endPosition+this._solution.x(t):0},o.prototype.dx=function(t){return void 0===t&&(t=((new Date).getTime()-this._startTime)/1e3),this._solution?this._solution.dx(t):0},o.prototype.setEnd=function(t,e,i){if(i||(i=(new Date).getTime()),t!==this._endPosition||!r(e,.4)){e=e||0;var n=this._endPosition;this._solution&&(r(e,.4)&&(e=this._solution.dx((i-this._startTime)/1e3)),n=this._solution.x((i-this._startTime)/1e3),r(e,.4)&&(e=0),r(n,.4)&&(n=0),n+=this._endPosition),this._solution&&r(n-t,.4)&&r(e,.4)||(this._endPosition=t,this._solution=this._solve(n-this._endPosition,e),this._startTime=i)}},o.prototype.snap=function(t){this._startTime=(new Date).getTime(),this._endPosition=t,this._solution={x:function(){return 0},dx:function(){return 0}}},o.prototype.done=function(t){return t||(t=(new Date).getTime()),n(this.x(),this._endPosition,.4)&&r(this.dx(),.4)},o.prototype.reconfigure=function(t,e,i){this._m=t,this._k=e,this._c=i,this.done()||(this._solution=this._solve(this.x()-this._endPosition,this.dx()),this._startTime=(new Date).getTime())},o.prototype.springConstant=function(){return this._k},o.prototype.damping=function(){return this._c},o.prototype.configuration=function(){function t(t,e){t.reconfigure(1,e,t.damping())}function e(t,e){t.reconfigure(1,t.springConstant(),e)}return[{label:"Spring Constant",read:this.springConstant.bind(this),write:t.bind(this,this),min:100,max:1e3},{label:"Damping",read:this.damping.bind(this),write:e.bind(this,this),min:1,max:500}]}},7466:function(t,e,i){"use strict";i.r(e);var n=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("uni-map",t._g(t._b({},"uni-map",t.attrs,!1),t.$listeners),[i("div",{ref:"container",staticClass:"uni-map-container"}),t._l(t.mapControls,(function(e,n){return i("v-uni-cover-image",{key:n,style:e.position,attrs:{src:e.iconPath,"auto-size":""},on:{click:function(i){return t.controlclick(e)}}})})),i("div",{staticClass:"uni-map-slot"},[t._t("default")],2)],2)},r=[],o=i("8af1"),s=i("0aa0"),a=["getCenterLocation","moveToLocation","getRegion","getScale","$getAppMap"],c=["latitude","longitude","scale","markers","polyline","circles","controls","show-location"],u=function(t,e,i){i({coord:{latitude:e,longitude:t}})};function l(t){if(0!==t.indexOf("#"))return{color:t,opacity:1};var e=t.substr(7,2);return{color:t.substr(0,7),opacity:e?Number("0x"+e)/255:1}}var h={name:"Map",mixins:[o["e"],s["a"]],props:{id:{type:String,default:""},latitude:{type:[Number,String],default:""},longitude:{type:[Number,String],default:""},scale:{type:[String,Number],default:1},markers:{type:Array,default:function(){return[]}},polyline:{type:Array,default:function(){return[]}},circles:{type:Array,default:function(){return[]}},controls:{type:Array,default:function(){return[]}}},data:function(){return{style:{top:"0px",left:"0px",width:"0px",height:"0px",position:"static"},hidden:!1}},computed:{attrs:function(){var t=this,e={};return c.forEach((function(i){var n=t.$props[i];n="src"===i?t.$getRealPath(n):n,e[i.replace(/[A-Z]/g,(function(t){return"-"+t.toLowerCase()}))]=n})),e},mapControls:function(){var t=this,e=this.controls.map((function(e){var i={position:"absolute"};return["top","left","width","height"].forEach((function(t){i[t]=e.position[t]+"px"})),{id:e.id,iconPath:t.$getRealPath(e.iconPath),position:i}}));return e}},watch:{hidden:function(t){this.map&&this.map[t?"hide":"show"]()}},listeners:{"@view-update":"_requestUpdate"},mounted:function(){var t=this;this._updateStyle();var e=Object.assign({},this.attrs,this.style);this.latitude&&this.longitude&&(e.center=new plus.maps.Point(this.longitude,this.latitude));var i=this.map=plus.maps.create("map"+Date.now(),e);i.__markers__={},i.__lines__=[],i.__circles__=[],plus.webview.currentWebview().append(i),this.hidden&&i.hide(),this.$watch("attrs",(function(){t.map&&t.map.setStyles(t.attrs)}),{deep:!0}),this.$watch("style",(function(){t.map&&t.map.setStyles(t.style)}),{deep:!0}),i.onclick((function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};t.$trigger("tap",{},e)})),i.onstatuschanged((function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};t.$trigger("end",{},e)})),this._addMarkers(this.markers),this._addMapLines(this.polyline),this._addMapCircles(this.circles)},beforeDestroy:function(){delete this.map},methods:{_handleSubscribe:function(t){var e=t.type,i=t.data,n=void 0===i?{}:i;a.includes(e)&&this.map&&this[e](n)},getRegion:function(){},getScale:function(){},_updateStyle:function(){var t=this,e=this.$refs.container.getBoundingClientRect();this.hidden=!1,["top","left","width","height"].forEach((function(i){var n=e[i];n="top"===i?n+(document.documentElement.scrollTop||document.body.scrollTop||0):n,n||"width"!==i&&"height"!==i||(t.hidden=!0),t.style[i]=n+"px"}))},_requestUpdate:function(){var t=this;this._animationFrame&&cancelAnimationFrame(this._animationFrame),this.video&&(this._animationFrame=requestAnimationFrame((function(){delete t._animationFrame,t._updateStyle()})))},controlclick:function(t){this.$trigger("controltap",{},{id:t.id})},_addMarker:function(t,e){var i=this,n=e.id,r=e.latitude,o=e.longitude,s=e.iconPath,a=e.callout,c=e.label;u(o,r,(function(e){var r=e.coord,o=r.latitude,u=r.longitude,l=new plus.maps.Marker(new plus.maps.Point(u,o));s&&l.setIcon(i.$getRealPath(s)),c&&c.content&&l.setLabel(c.content);var h=!1;a&&a.content&&(h=new plus.maps.Bubble(a.content)),h&&l.setBubble(h),(n||0===n)&&(l.onclick=function(t){i.$trigger("markertap",{},{id:n})},h&&(h.onclick=function(){i.$trigger("callouttap",{},{id:n})})),t.addOverlay(l),t.__markers__[n+""]=l}))},_addMarkers:function(t,e){var i=this;return this.map?(e&&this.map.clearOverlays(),t.forEach((function(t){i._addMarker(i.map,t)})),{errMsg:"addMapMarkers:ok"}):{errMsg:"addMapMarkers:fail:请先创建地图元素"}},_translateMapMarker:function(t){t.autoRotate,t.callbackId;var e=t.destination,i=(t.duration,t.markerId);if(this.map){var n=this.map.__markers__[i+""];n&&n.setPoint(new plus.maps.Point(e.longitude,e.latitude))}return{errMsg:"translateMapMarker:ok"}},_addMapLines:function(t){var e=this.map;return e?(e.__lines__.length>0&&(e.__lines__.forEach((function(t){e.removeOverlay(t)})),e.__lines__=[]),t.forEach((function(t){var i=t.color,n=t.width,r=t.points.map((function(t){return new plus.maps.Point(t.longitude,t.latitude)})),o=new plus.maps.Polyline(r);if(i){var s=l(i);o.setStrokeColor(s.color),o.setStrokeOpacity(s.opacity)}n&&o.setLineWidth(n),e.addOverlay(o),e.__lines__.push(o)})),{errMsg:"addMapLines:ok"}):{errMsg:"addMapLines:fail:请先创建地图元素"}},_addMapCircles:function(t){var e=this.map;return e?(e.__circles__.length>0&&(e.__circles__.forEach((function(t){e.removeOverlay(t)})),e.__circles__=[]),t.forEach((function(t){var i=t.latitude,n=t.longitude,r=t.color,o=t.fillColor,s=t.radius,a=t.strokeWidth,c=new plus.maps.Circle(new plus.maps.Point(n,i),s);if(r){var u=l(r);c.setStrokeColor(u.color),c.setStrokeOpacity(u.opacity)}if(o){var h=l(o);c.setFillColor(h.color),c.setFillOpacity(h.opacity)}a&&c.setLineWidth(a),e.addOverlay(c),e.__circles__.push(c)})),{errMsg:"addMapCircles:ok"}):{errMsg:"addMapCircles:fail:请先创建地图元素"}}}},d=h,f=(i("a252"),i("2877")),p=Object(f["a"])(d,n,r,!1,null,null,null);e["default"]=p.exports},7522:function(t,e,i){},"76a8":function(t,e,i){"use strict";var n=i("3fe7"),r=i.n(n);r.a},"7bb3":function(t,e,i){"use strict";i.r(e);var n=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("uni-checkbox",t._g({on:{click:t._onClick}},t.$listeners),[i("div",{staticClass:"uni-checkbox-wrapper"},[i("div",{staticClass:"uni-checkbox-input",class:[t.checkboxChecked?"uni-checkbox-input-checked":""],style:{color:t.color}}),t._t("default")],2)])},r=[],o=i("8af1"),s={name:"Checkbox",mixins:[o["a"],o["d"]],props:{checked:{type:[Boolean,String],default:!1},id:{type:String,default:""},disabled:{type:[Boolean,String],default:!1},color:{type:String,default:"#007aff"},value:{type:String,default:""}},data:function(){return{checkboxChecked:this.checked,checkboxValue:this.value}},watch:{checked:function(t){this.checkboxChecked=t},value:function(t){this.checkboxValue=t}},listeners:{"label-click":"_onClick","@label-click":"_onClick"},created:function(){this.$dispatch("CheckboxGroup","uni-checkbox-group-update",{type:"add",vm:this}),this.$dispatch("Form","uni-form-group-update",{type:"add",vm:this})},beforeDestroy:function(){this.$dispatch("CheckboxGroup","uni-checkbox-group-update",{type:"remove",vm:this}),this.$dispatch("Form","uni-form-group-update",{type:"remove",vm:this})},methods:{_onClick:function(t){this.disabled||(this.checkboxChecked=!this.checkboxChecked,this.$dispatch("CheckboxGroup","uni-checkbox-change",t))},_resetFormData:function(){this.checkboxChecked=!1}}},a=s,c=(i("f53a"),i("2877")),u=Object(c["a"])(a,n,r,!1,null,null,null);e["default"]=u.exports},"7c2b":function(t,e,i){"use strict";var n=i("2c45"),r=i.n(n);r.a},"7d0f":function(t,e,i){"use strict";var n=i("5129"),r=i.n(n);function o(t){var e=t.config.isReservedTag;t.config.isReservedTag=function(t){return-1!==r.a.indexOf(t)||e(t)},t.config.ignoredElements=r.a;var i=t.config.getTagNamespace,n=["switch","image","text","view"];t.config.getTagNamespace=function(t){return!~n.indexOf(t)&&(i(t)||!1)}}var s=i("8c15"),a=i("3e5d");function c(t){Object.defineProperty(t.prototype,"$page",{get:function(){return getCurrentPages()[0].$page}}),t.prototype.$handleVModelEvent=function(t,e){a["b"].sendUIEvent(this._$id,t,{type:"input",target:{value:e}})},t.prototype.$handleViewEvent=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};e.stop&&t.stopPropagation(),e.prevent&&t.preventDefault();var i=this.$handleEvent(t),n=this._$id,r=t.currentTarget===this.$el?0:i.options.nid;if("undefined"===typeof r)return console.error("[".concat(n,"] nid not found"));delete i._processed,delete i.mp,delete i.preventDefault,delete i.stopPropagation,delete i.options,a["b"].sendUIEvent(n,r,i)}}e["a"]={install:function(t,e){o(t),s["a"].install(t,e),Object(a["a"])(t),c(t)}}},"7df2":function(t,e,i){},"7e6a":function(t,e,i){"use strict";var n=i("515d"),r=i.n(n);r.a},"7f2f":function(t,e,i){"use strict";var n=i("ce51"),r=i.n(n);r.a},"83a6":function(t,e,i){"use strict";e["a"]={data:function(){return{hovering:!1}},props:{hoverClass:{type:String,default:"none"},hoverStopPropagation:{type:Boolean,default:!1},hoverStartTime:{type:[Number,String],default:50},hoverStayTime:{type:[Number,String],default:400}},methods:{_hoverTouchStart:function(t){var e=this;t._hoverPropagationStopped||this.hoverClass&&"none"!==this.hoverClass&&!this.disabled&&(t.touches.length>1||(this.hoverStopPropagation&&(t._hoverPropagationStopped=!0),this._hoverTouch=!0,this._hoverStartTimer=setTimeout((function(){e.hovering=!0,e._hoverTouch||e._hoverReset()}),this.hoverStartTime)))},_hoverTouchEnd:function(t){this._hoverTouch=!1,this.hovering&&this._hoverReset()},_hoverReset:function(){var t=this;requestAnimationFrame((function(){clearTimeout(t._hoverStayTimer),t._hoverStayTimer=setTimeout((function(){t.hovering=!1}),t.hoverStayTime)}))},_hoverTouchCancel:function(t){this._hoverTouch=!1,this.hovering=!1,clearTimeout(this._hoverStartTimer)}}}},"85b6":function(t,e,i){"use strict";i.d(e,"a",(function(){return r})),i.d(e,"b",(function(){return o}));var n=["SystemAsyncLoading","SystemAsyncError"];function r(t){return!(!t.$parent||"PageBody"!==t.$parent.$options.name)&&-1===n.indexOf(t.$options.name)}function o(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=JSON.parse(JSON.stringify(t));return e}},8779:function(t,e,i){},8842:function(t,e,i){"use strict";i.r(e);var n=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("uni-movable-view",t._g({},t.$listeners),[i("v-uni-resize-sensor",{on:{resize:t.setParent}}),t._t("default")],2)},r=[],o=i("ba15");function s(t,e,i){return t>e-i&&tthis._t&&(t=this._t,this._lastDt=t);var e=this._x_v*t+.5*this._x_a*Math.pow(t,2)+this._x_s,i=this._y_v*t+.5*this._y_a*Math.pow(t,2)+this._y_s;return(this._x_a>0&&ethis._endPositionX)&&(e=this._endPositionX),(this._y_a>0&&ithis._endPositionY)&&(i=this._endPositionY),{x:e,y:i}},u.prototype.ds=function(t){return void 0===t&&(t=((new Date).getTime()-this._startTime)/1e3),t>this._t&&(t=this._t),{dx:this._x_v+this._x_a*t,dy:this._y_v+this._y_a*t}},u.prototype.delta=function(){return{x:-1.5*Math.pow(this._x_v,2)/this._x_a||0,y:-1.5*Math.pow(this._y_v,2)/this._y_a||0}},u.prototype.dt=function(){return-this._x_v/this._x_a},u.prototype.done=function(){var t=s(this.s().x,this._endPositionX)||s(this.s().y,this._endPositionY)||this._lastDt===this._t;return this._lastDt=null,t},u.prototype.setEnd=function(t,e){this._endPositionX=t,this._endPositionY=e},u.prototype.reconfigure=function(t,e){this._m=t,this._f=1e3*e},l.prototype._solve=function(t,e){var i=this._c,n=this._m,r=this._k,o=i*i-4*n*r;if(0===o){var s=-i/(2*n),a=t,c=e/(s*t);return{x:function(t){return(a+c*t)*Math.pow(Math.E,s*t)},dx:function(t){var e=Math.pow(Math.E,s*t);return s*(a+c*t)*e+c*e}}}if(o>0){var u=(-i-Math.sqrt(o))/(2*n),l=(-i+Math.sqrt(o))/(2*n),h=(e-u*t)/(l-u),d=t-h;return{x:function(t){var e,i;return t===this._t&&(e=this._powER1T,i=this._powER2T),this._t=t,e||(e=this._powER1T=Math.pow(Math.E,u*t)),i||(i=this._powER2T=Math.pow(Math.E,l*t)),d*e+h*i},dx:function(t){var e,i;return t===this._t&&(e=this._powER1T,i=this._powER2T),this._t=t,e||(e=this._powER1T=Math.pow(Math.E,u*t)),i||(i=this._powER2T=Math.pow(Math.E,l*t)),d*u*e+h*l*i}}}var f=Math.sqrt(4*n*r-i*i)/(2*n),p=-i/2*n,m=t,g=(e-p*t)/f;return{x:function(t){return Math.pow(Math.E,p*t)*(m*Math.cos(f*t)+g*Math.sin(f*t))},dx:function(t){var e=Math.pow(Math.E,p*t),i=Math.cos(f*t),n=Math.sin(f*t);return e*(g*f*i-m*f*n)+p*e*(g*n+m*i)}}},l.prototype.x=function(t){return void 0===t&&(t=((new Date).getTime()-this._startTime)/1e3),this._solution?this._endPosition+this._solution.x(t):0},l.prototype.dx=function(t){return void 0===t&&(t=((new Date).getTime()-this._startTime)/1e3),this._solution?this._solution.dx(t):0},l.prototype.setEnd=function(t,e,i){if(i||(i=(new Date).getTime()),t!==this._endPosition||!a(e,.1)){e=e||0;var n=this._endPosition;this._solution&&(a(e,.1)&&(e=this._solution.dx((i-this._startTime)/1e3)),n=this._solution.x((i-this._startTime)/1e3),a(e,.1)&&(e=0),a(n,.1)&&(n=0),n+=this._endPosition),this._solution&&a(n-t,.1)&&a(e,.1)||(this._endPosition=t,this._solution=this._solve(n-this._endPosition,e),this._startTime=i)}},l.prototype.snap=function(t){this._startTime=(new Date).getTime(),this._endPosition=t,this._solution={x:function(){return 0},dx:function(){return 0}}},l.prototype.done=function(t){return t||(t=(new Date).getTime()),s(this.x(),this._endPosition,.1)&&a(this.dx(),.1)},l.prototype.reconfigure=function(t,e,i){this._m=t,this._k=e,this._c=i,this.done()||(this._solution=this._solve(this.x()-this._endPosition,this.dx()),this._startTime=(new Date).getTime())},l.prototype.springConstant=function(){return this._k},l.prototype.damping=function(){return this._c},l.prototype.configuration=function(){function t(t,e){t.reconfigure(1,e,t.damping())}function e(t,e){t.reconfigure(1,t.springConstant(),e)}return[{label:"Spring Constant",read:this.springConstant.bind(this),write:t.bind(this,this),min:100,max:1e3},{label:"Damping",read:this.damping.bind(this),write:e.bind(this,this),min:1,max:500}]},h.prototype.setEnd=function(t,e,i,n){var r=(new Date).getTime();this._springX.setEnd(t,n,r),this._springY.setEnd(e,n,r),this._springScale.setEnd(i,n,r),this._startTime=r},h.prototype.x=function(){var t=((new Date).getTime()-this._startTime)/1e3;return{x:this._springX.x(t),y:this._springY.x(t),scale:this._springScale.x(t)}},h.prototype.done=function(){var t=(new Date).getTime();return this._springX.done(t)&&this._springY.done(t)&&this._springScale.done(t)},h.prototype.reconfigure=function(t,e,i){this._springX.reconfigure(t,e,i),this._springY.reconfigure(t,e,i),this._springScale.reconfigure(t,e,i)};var d=i("f2b3"),f=!1;function p(t){f||(f=!0,requestAnimationFrame((function(){t(),f=!1})))}function m(t,e){if(t===e)return 0;var i=t.offsetLeft;return t.offsetParent?i+=m(t.offsetParent,e):0}function g(t,e){if(t===e)return 0;var i=t.offsetTop;return t.offsetParent?i+=g(t.offsetParent,e):0}function v(t,e){return+((1e3*t-1e3*e)/1e3).toFixed(1)}function _(t,e,i){var n=function(t){t&&t.id&&cancelAnimationFrame(t.id),t&&(t.cancelled=!0)},r={id:0,cancelled:!1};function o(e,i,n,r){if(!e||!e.cancelled){n(i);var s=t.done();s||e.cancelled||(e.id=requestAnimationFrame(o.bind(null,e,i,n,r))),s&&r&&r(i)}}return o(r,t,e,i),{cancel:n.bind(null,r),model:t}}var b={name:"MovableView",mixins:[o["a"]],props:{direction:{type:String,default:"none"},inertia:{type:[Boolean,String],default:!1},outOfBounds:{type:[Boolean,String],default:!1},x:{type:[Number,String],default:0},y:{type:[Number,String],default:0},damping:{type:[Number,String],default:20},friction:{type:[Number,String],default:2},disabled:{type:[Boolean,String],default:!1},scale:{type:[Boolean,String],default:!1},scaleMin:{type:[Number,String],default:.5},scaleMax:{type:[Number,String],default:10},scaleValue:{type:[Number,String],default:1},animation:{type:[Boolean,String],default:!0}},data:function(){return{xSync:this._getPx(this.x),ySync:this._getPx(this.y),scaleValueSync:Number(this.scaleValue)||1,width:0,height:0,minX:0,minY:0,maxX:0,maxY:0}},computed:{dampingNumber:function(){var t=Number(this.damping);return isNaN(t)?20:t},frictionNumber:function(){var t=Number(this.friction);return isNaN(t)||t<=0?2:t},scaleMinNumber:function(){var t=Number(this.scaleMin);return isNaN(t)?.5:t},scaleMaxNumber:function(){var t=Number(this.scaleMax);return isNaN(t)?10:t},xMove:function(){return"all"===this.direction||"horizontal"===this.direction},yMove:function(){return"all"===this.direction||"vertical"===this.direction}},watch:{x:function(t){this.xSync=this._getPx(t)},xSync:function(t){this._setX(t)},y:function(t){this.ySync=this._getPx(t)},ySync:function(t){this._setY(t)},scaleValue:function(t){this.scaleValueSync=Number(t)||0},scaleValueSync:function(t){this._setScaleValue(t)},scaleMinNumber:function(){this._setScaleMinOrMax()},scaleMaxNumber:function(){this._setScaleMinOrMax()}},created:function(){this._offset={x:0,y:0},this._scaleOffset={x:0,y:0},this._translateX=0,this._translateY=0,this._scale=1,this._oldScale=1,this._STD=new h(1,9*Math.pow(this.dampingNumber,2)/40,this.dampingNumber),this._friction=new u(1,this.frictionNumber),this._declineX=new c,this._declineY=new c,this.__touchInfo={historyX:[0,0],historyY:[0,0],historyT:[0,0]}},mounted:function(){this.touchtrack(this.$el,"_onTrack"),this.setParent(),this._friction.reconfigure(1,this.frictionNumber),this._STD.reconfigure(1,9*Math.pow(this.dampingNumber,2)/40,this.dampingNumber),this.$el.style.transformOrigin="center"},methods:{_getPx:function(t){return/\d+[ur]px$/i.test(t)?uni.upx2px(parseFloat(t)):Number(t)||0},_setX:function(t){if(this.xMove){if(t+this._scaleOffset.x===this._translateX)return this._translateX;this._SFA&&this._SFA.cancel(),this._animationTo(t+this._scaleOffset.x,this.ySync+this._scaleOffset.y,this._scale)}return t},_setY:function(t){if(this.yMove){if(t+this._scaleOffset.y===this._translateY)return this._translateY;this._SFA&&this._SFA.cancel(),this._animationTo(this.xSync+this._scaleOffset.x,t+this._scaleOffset.y,this._scale)}return t},_setScaleMinOrMax:function(){if(!this.scale)return!1;this._updateScale(this._scale,!0),this._updateOldScale(this._scale)},_setScaleValue:function(t){return!!this.scale&&(t=this._adjustScale(t),this._updateScale(t,!0),this._updateOldScale(t),t)},__handleTouchStart:function(){this._isScaling||this.disabled||(Object(d["b"])({disable:!0}),this._FA&&this._FA.cancel(),this._SFA&&this._SFA.cancel(),this.__touchInfo.historyX=[0,0],this.__touchInfo.historyY=[0,0],this.__touchInfo.historyT=[0,0],this.xMove&&(this.__baseX=this._translateX),this.yMove&&(this.__baseY=this._translateY),this.$el.style.willChange="transform",this._checkCanMove=null,this._firstMoveDirection=null,this._isTouching=!0)},__handleTouchMove:function(t){var e=this;if(!this._isScaling&&!this.disabled&&this._isTouching){var i=this._translateX,n=this._translateY;if(null===this._firstMoveDirection&&(this._firstMoveDirection=Math.abs(t.detail.dx/t.detail.dy)>1?"htouchmove":"vtouchmove"),this.xMove&&(i=t.detail.dx+this.__baseX,this.__touchInfo.historyX.shift(),this.__touchInfo.historyX.push(i),this.yMove||!0!==this._checkCanMove&&(Math.abs(t.detail.dx/t.detail.dy)>1?this._checkCanMove=!1:this._checkCanMove=!0)),this.yMove&&(n=t.detail.dy+this.__baseY,this.__touchInfo.historyY.shift(),this.__touchInfo.historyY.push(n),this.xMove||!0!==this._checkCanMove&&(Math.abs(t.detail.dy/t.detail.dx)>1?this._checkCanMove=!1:this._checkCanMove=!0)),this.__touchInfo.historyT.shift(),this.__touchInfo.historyT.push(t.detail.timeStamp),!this._checkCanMove){t.preventDefault();var r="touch";ithis.maxX&&(this.outOfBounds?(r="touch-out-of-bounds",i=this.maxX+this._declineX.x(i-this.maxX)):i=this.maxX),nthis.maxY&&(this.outOfBounds?(r="touch-out-of-bounds",n=this.maxY+this._declineY.x(n-this.maxY)):n=this.maxY),p((function(){e._setTransform(i,n,e._scale,r)}))}}},__handleTouchEnd:function(){var t=this;if(!this._isScaling&&!this.disabled&&this._isTouching&&(Object(d["b"])({disable:!0}),this.$el.style.willChange="auto",this._isTouching=!1,!this._checkCanMove&&!this._revise("out-of-bounds")&&this.inertia)){var e=1e3*(this.__touchInfo.historyX[1]-this.__touchInfo.historyX[0])/(this.__touchInfo.historyT[1]-this.__touchInfo.historyT[0]),i=1e3*(this.__touchInfo.historyY[1]-this.__touchInfo.historyY[0])/(this.__touchInfo.historyT[1]-this.__touchInfo.historyT[0]);this._friction.setV(e,i),this._friction.setS(this._translateX,this._translateY);var n=this._friction.delta().x,r=this._friction.delta().y,o=n+this._translateX,s=r+this._translateY;othis.maxX&&(o=this.maxX,s=this._translateY+(this.maxX-this._translateX)*r/n),sthis.maxY&&(s=this.maxY,o=this._translateX+(this.maxY-this._translateY)*n/r),this._friction.setEnd(o,s),this._FA=_(this._friction,(function(){var e=t._friction.s(),i=e.x,n=e.y;t._setTransform(i,n,t._scale,"friction")}),(function(){t._FA.cancel()}))}},_onTrack:function(t){switch(t.detail.state){case"start":this.__handleTouchStart();break;case"move":this.__handleTouchMove(t);break;case"end":this.__handleTouchEnd()}},_getLimitXY:function(t,e){var i=!1;return t>this.maxX?(t=this.maxX,i=!0):tthis.maxY?(e=this.maxY,i=!0):e3&&void 0!==arguments[3]?arguments[3]:"",r=arguments.length>4?arguments[4]:void 0,o=arguments.length>5?arguments[5]:void 0;null!==t&&"NaN"!==t.toString()&&"number"===typeof t||(t=this._translateX||0),null!==e&&"NaN"!==e.toString()&&"number"===typeof e||(e=this._translateY||0),t=Number(t.toFixed(1)),e=Number(e.toFixed(1)),i=Number(i.toFixed(1)),this._translateX===t&&this._translateY===e||r||this.$trigger("change",{},{x:v(t,this._scaleOffset.x),y:v(e,this._scaleOffset.y),source:n}),this.scale||(i=this._scale),i=this._adjustScale(i),i=+i.toFixed(3),o&&i!==this._scale&&this.$trigger("scale",{},{x:t,y:e,scale:i});var s="translateX("+t+"px) translateY("+e+"px) translateZ(0px) scale("+i+")";this.$el.style.transform=s,this.$el.style.webkitTransform=s,this._translateX=t,this._translateY=e,this._scale=i}}},y=b,w=(i("7c2b"),i("2877")),S=Object(w["a"])(y,n,r,!1,null,null,null);e["default"]=S.exports},"8a36":function(t,e,i){"use strict";(function(t){var n=i("f2b3");e["a"]={props:{id:{type:String,default:""}},created:function(){var t=this;this._addListeners(this.id),this.$watch("id",(function(e,i){t._removeListeners(i,!0),t._addListeners(e,!0)}))},beforeDestroy:function(){this._removeListeners(this.id)},methods:{_addListeners:function(e,i){var r=this;if(!i||e){var o=this.$options.listeners;Object(n["f"])(o)&&Object.keys(o).forEach((function(n){i?0!==n.indexOf("@")&&0!==n.indexOf("uni-")&&t.on("uni-".concat(n,"-").concat(r.$page.id,"-").concat(e),r[o[n]]):0===n.indexOf("@")?r.$on("uni-".concat(n.substr(1)),r[o[n]]):0===n.indexOf("uni-")?t.on(n,r[o[n]]):e&&t.on("uni-".concat(n,"-").concat(r.$page.id,"-").concat(e),r[o[n]])}))}},_removeListeners:function(e,i){var r=this;if(!i||e){var o=this.$options.listeners;Object(n["f"])(o)&&Object.keys(o).forEach((function(n){i?0!==n.indexOf("@")&&0!==n.indexOf("uni-")&&t.off("uni-".concat(n,"-").concat(r.$page.id,"-").concat(e),r[o[n]]):0===n.indexOf("@")?r.$off("uni-".concat(n.substr(1)),r[o[n]]):0===n.indexOf("uni-")?t.off(n,r[o[n]]):e&&t.off("uni-".concat(n,"-").concat(r.$page.id,"-").concat(e),r[o[n]])}))}}}}}).call(this,i("501c"))},"8aec":function(t,e,i){"use strict";var n=i("5363"),r=i("72b3");function o(t,e,i){this._extent=t,this._friction=e||new n["a"](.01),this._spring=i||new r["a"](1,90,20),this._startTime=0,this._springing=!1,this._springOffset=0}function s(t,e,i){function n(t,e,i,r){if(!t||!t.cancelled){i(e);var o=e.done();o||t.cancelled||(t.id=requestAnimationFrame(n.bind(null,t,e,i,r))),o&&r&&r(e)}}function r(t){t&&t.id&&cancelAnimationFrame(t.id),t&&(t.cancelled=!0)}var o={id:0,cancelled:!1};return n(o,t,e,i),{cancel:r.bind(null,o),model:t}}function a(t,e){e=e||{},this._element=t,this._options=e,this._enableSnap=e.enableSnap||!1,this._itemSize=e.itemSize||0,this._enableX=e.enableX||!1,this._enableY=e.enableY||!1,this._shouldDispatchScrollEvent=!!e.onScroll,this._enableX?(this._extent=(e.scrollWidth||this._element.offsetWidth)-this._element.parentElement.offsetWidth,this._scrollWidth=e.scrollWidth):(this._extent=(e.scrollHeight||this._element.offsetHeight)-this._element.parentElement.offsetHeight,this._scrollHeight=e.scrollHeight),this._position=0,this._scroll=new o(this._extent,e.friction,e.spring),this._onTransitionEnd=this.onTransitionEnd.bind(this),this.updatePosition()}o.prototype.snap=function(t,e){this._springOffset=0,this._springing=!0,this._spring.snap(t),this._spring.setEnd(e)},o.prototype.set=function(t,e){this._friction.set(t,e),t>0&&e>=0?(this._springOffset=0,this._springing=!0,this._spring.snap(t),this._spring.setEnd(0)):t<-this._extent&&e<=0?(this._springOffset=0,this._springing=!0,this._spring.snap(t),this._spring.setEnd(-this._extent)):this._springing=!1,this._startTime=(new Date).getTime()},o.prototype.x=function(t){if(!this._startTime)return 0;if(t||(t=((new Date).getTime()-this._startTime)/1e3),this._springing)return this._spring.x()+this._springOffset;var e=this._friction.x(t),i=this.dx(t);return(e>0&&i>=0||e<-this._extent&&i<=0)&&(this._springing=!0,this._spring.setEnd(0,i),e<-this._extent?this._springOffset=-this._extent:this._springOffset=0,e=this._spring.x()+this._springOffset),e},o.prototype.dx=function(t){var e=0;return e=this._lastTime===t?this._lastDx:this._springing?this._spring.dx(t):this._friction.dx(t),this._lastTime=t,this._lastDx=e,e},o.prototype.done=function(){return this._springing?this._spring.done():this._friction.done()},o.prototype.setVelocityByEnd=function(t){this._friction.setVelocityByEnd(t)},o.prototype.configuration=function(){var t=this._friction.configuration();return t.push.apply(t,this._spring.configuration()),t},a.prototype.onTouchStart=function(){this._startPosition=this._position,this._lastChangePos=this._startPosition,this._startPosition>0?this._startPosition/=.5:this._startPosition<-this._extent&&(this._startPosition=(this._startPosition+this._extent)/.5-this._extent),this._animation&&(this._animation.cancel(),this._scrolling=!1),this.updatePosition()},a.prototype.onTouchMove=function(t,e){var i=this._startPosition;this._enableX?i+=t:this._enableY&&(i+=e),i>0?i*=.5:i<-this._extent&&(i=.5*(i+this._extent)-this._extent),this._position=i,this.updatePosition(),this.dispatchScroll()},a.prototype.onTouchEnd=function(t,e,i){var n=this;if(this._enableSnap&&this._position>-this._extent&&this._position<0){if(this._enableY&&(Math.abs(e)this._itemSize/2?r-(this._itemSize-Math.abs(o)):r-o;a<=0&&a>=-this._extent&&this._scroll.setVelocityByEnd(a)}this._lastTime=Date.now(),this._lastDelay=0,this._scrolling=!0,this._lastChangePos=this._position,this._lastIdx=Math.floor(Math.abs(this._position/this._itemSize)),this._animation=s(this._scroll,(function(){var t=Date.now(),e=(t-n._scroll._startTime)/1e3,i=n._scroll.x(e);n._position=i,n.updatePosition();var r=n._scroll.dx(e);n._shouldDispatchScrollEvent&&t-n._lastTime>n._lastDelay&&(n.dispatchScroll(),n._lastDelay=Math.abs(2e3/r),n._lastTime=t)}),(function(){n._enableSnap&&(a<=0&&a>=-n._extent&&(n._position=a,n.updatePosition()),"function"===typeof n._options.onSnap&&n._options.onSnap(Math.floor(Math.abs(n._position)/n._itemSize))),n._shouldDispatchScrollEvent&&n.dispatchScroll(),n._scrolling=!1}))},a.prototype.onTransitionEnd=function(){this._element.style.transition="",this._element.style.webkitTransition="",this._element.removeEventListener("transitionend",this._onTransitionEnd),this._element.removeEventListener("webkitTransitionEnd",this._onTransitionEnd),this._snapping&&(this._snapping=!1),this.dispatchScroll()},a.prototype.snap=function(){var t=this._itemSize,e=this._position%t,i=Math.abs(e)>this._itemSize/2?this._position-(t-Math.abs(e)):this._position-e;this._position!==i&&(this._snapping=!0,this.scrollTo(-i),"function"===typeof this._options.onSnap&&this._options.onSnap(Math.floor(Math.abs(this._position)/this._itemSize)))},a.prototype.scrollTo=function(t,e){this._animation&&(this._animation.cancel(),this._scrolling=!1),"number"===typeof t&&(this._position=-t),this._position<-this._extent?this._position=-this._extent:this._position>0&&(this._position=0),this._element.style.transition="transform "+(e||.2)+"s ease-out",this._element.style.webkitTransition="-webkit-transform "+(e||.2)+"s ease-out",this.updatePosition(),this._element.addEventListener("transitionend",this._onTransitionEnd),this._element.addEventListener("webkitTransitionEnd",this._onTransitionEnd)},a.prototype.dispatchScroll=function(){if("function"===typeof this._options.onScroll&&Math.round(this._lastPos)!==Math.round(this._position)){this._lastPos=this._position;var t={target:{scrollLeft:this._enableX?-this._position:0,scrollTop:this._enableY?-this._position:0,scrollHeight:this._scrollHeight||this._element.offsetHeight,scrollWidth:this._scrollWidth||this._element.offsetWidth,offsetHeight:this._element.parentElement.offsetHeight,offsetWidth:this._element.parentElement.offsetWidth}};this._options.onScroll(t)}},a.prototype.update=function(t,e,i){var n=0,r=this._position;this._enableX?(n=this._element.childNodes.length?(e||this._element.offsetWidth)-this._element.parentElement.offsetWidth:0,this._scrollWidth=e):(n=this._element.childNodes.length?(e||this._element.offsetHeight)-this._element.parentElement.offsetHeight:0,this._scrollHeight=e),"number"===typeof t&&(this._position=-t),this._position<-n?this._position=-n:this._position>0&&(this._position=0),this._itemSize=i||this._itemSize,this.updatePosition(),r!==this._position&&(this.dispatchScroll(),"function"===typeof this._options.onSnap&&this._options.onSnap(Math.floor(Math.abs(this._position)/this._itemSize))),this._extent=n,this._scroll._extent=n},a.prototype.updatePosition=function(){var t="";this._enableX?t="translateX("+this._position+"px) translateZ(0)":this._enableY&&(t="translateY("+this._position+"px) translateZ(0)"),this._element.style.webkitTransform=t,this._element.style.transform=t},a.prototype.isScrolling=function(){return this._scrolling||this._snapping};e["a"]={methods:{initScroller:function(t,e){this._touchInfo={trackingID:-1,maxDy:0,maxDx:0},this._scroller=new a(t,e),this.__handleTouchStart=this._handleTouchStart.bind(this),this.__handleTouchMove=this._handleTouchMove.bind(this),this.__handleTouchEnd=this._handleTouchEnd.bind(this),this._initedScroller=!0},_findDelta:function(t){var e=this._touchInfo;return"move"===t.detail.state||"end"===t.detail.state?{x:t.detail.dx,y:t.detail.dy}:{x:t.screenX-e.x,y:t.screenY-e.y}},_handleTouchStart:function(t){var e=this._touchInfo,i=this._scroller;i&&("start"===t.detail.state?(e.trackingID="touch",e.x=t.detail.x,e.y=t.detail.y):(e.trackingID="mouse",e.x=t.screenX,e.y=t.screenY),e.maxDx=0,e.maxDy=0,e.historyX=[0],e.historyY=[0],e.historyTime=[t.detail.timeStamp],e.listener=i,i.onTouchStart&&i.onTouchStart(),event.preventDefault())},_handleTouchMove:function(t){var e=this._touchInfo;if(-1!==e.trackingID){t.preventDefault();var i=this._findDelta(t);if(i){for(e.maxDy=Math.max(e.maxDy,Math.abs(i.y)),e.maxDx=Math.max(e.maxDx,Math.abs(i.x)),e.historyX.push(i.x),e.historyY.push(i.y),e.historyTime.push(t.detail.timeStamp);e.historyTime.length>10;)e.historyTime.shift(),e.historyX.shift(),e.historyY.shift();e.listener&&e.listener.onTouchMove&&e.listener.onTouchMove(i.x,i.y,t.detail.timeStamp)}}},_handleTouchEnd:function(t){var e=this._touchInfo;if(-1!==e.trackingID){t.preventDefault();var i=this._findDelta(t);if(i){var n=e.listener;e.trackingID=-1,e.listener=null;var r=e.historyTime.length,o={x:0,y:0};if(r>2)for(var s=e.historyTime.length-1,a=e.historyTime[s],c=e.historyX[s],u=e.historyY[s];s>0;){s--;var l=e.historyTime[s],h=a-l;if(h>30&&h<50){o.x=(c-e.historyX[s])/(h/1e3),o.y=(u-e.historyY[s])/(h/1e3);break}}e.historyTime=[],e.historyX=[],e.historyY=[],n&&n.onTouchEnd&&n.onTouchEnd(i.x,i.y,o)}}}}}},"8af1":function(t,e,i){"use strict";function n(t,e){for(var i=this.$children,r=i.length,o=arguments.length,s=new Array(o>2?o-2:0),a=2;a2?r-2:0),s=2;s2?i-2:0),o=2;o1&&void 0!==arguments[1]?arguments[1]:{};e.routes;Object(r["a"])();var i=function(t,e){for(var i=t.target;i&&i!==e;i=i.parentNode)if(i.tagName&&0===i.tagName.indexOf("UNI-"))break;return i};t.prototype.$handleEvent=function(t){if(t instanceof Event){var e=i(t,this.$el);t=r["b"].call(this,t.type,t,{},e||t.target,t.currentTarget)}return t},t.prototype.$getComponentDescriptor=function(t,e){return Object(s["a"])(t||this,e)},t.prototype.$handleWxsEvent=function(t){if(t instanceof Event){var e=t.currentTarget,n=e&&e.__vue__&&e.__vue__.$getComponentDescriptor(e.__vue__,!1);t=r["b"].call(this,t.type,t,{},i(t,this.$el)||t.target,t.currentTarget),t.instance=n}return t},t.mixin({beforeCreate:function(){var t=this,e=this.$options,i=e.wxs;i&&Object.keys(i).forEach((function(e){t[e]=i[e]})),e.behaviors&&e.behaviors.length&&Object(o["a"])(e,this),Object(n["a"])(this)&&(e.mounted=e.mounted?[].concat(a,e.mounted):[a])}})}}}).call(this,i("501c"))},9213:function(t,e,i){"use strict";i.r(e);var n=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("uni-swiper-item",t._g({},t.$listeners),[t._t("default")],2)},r=[],o={name:"SwiperItem",props:{itemId:{type:String,default:""}},mounted:function(){var t=this.$el;t.style.position="absolute",t.style.width="100%",t.style.height="100%";var e=this.$vnode._callbacks;e&&e.forEach((function(t){t()}))}},s=o,a=(i("bfea"),i("2877")),c=Object(a["a"])(s,n,r,!1,null,null,null);e["default"]=c.exports},"927d":function(t,e,i){},9400:function(t,e,i){"use strict";var n=i("cc89"),r=i.n(n);r.a},"944e":function(t,e,i){"use strict";var n=i("a6bb"),r=i.n(n);r.a},9856:function(t,e,i){"use strict";i.d(e,"a",(function(){return r})),i.d(e,"b",(function(){return o}));var n=[];function r(){return n}function o(t,e){n.length=0,n.push({$page:{id:t,route:e}})}},"98e0":function(t,e,i){"use strict";i.r(e);var n=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("uni-picker",t._g({on:{click:function(e){return e.stopPropagation(),t._show(e)}}},t.$listeners),[t._t("default")],2)},r=[],o=i("8af1"),s=i("1364"),a={SELECTOR:"selector",MULTISELECTOR:"multiSelector",TIME:"time",DATE:"date"},c={YEAR:"year",MONTH:"month",DAY:"day"};function u(t){return t>9?t:"0".concat(t)}function l(t,e){var i=new Date;return e===a.TIME?(t=t.split(":"),2===t.length&&i.setHours(parseInt(t[0]),parseInt(t[1]))):(t=t.split("-"),3===t.length&&i.setFullYear(parseInt(t[0]),parseInt(t[1]-1),parseInt(t[2]))),i}var h={name:"Picker",mixins:[o["a"]],props:{name:{type:String,default:""},range:{type:Array,default:function(){return[]}},rangeKey:{type:String,default:""},value:{type:[Number,String,Array],default:0},mode:{type:String,default:a.SELECTOR,validator:function(t){return Object.values(a).indexOf(t)>=0}},fields:{type:String,default:"day",validator:function(t){return Object.values(c).indexOf(t)>=0}},start:{type:String,default:function(){if(this.mode===a.TIME)return"00:00";if(this.mode===a.DATE){var t=(new Date).getFullYear()-60;switch(this.fields){case c.YEAR:return t;case c.MONTH:return t+"-01";case c.DAY:return t+"-01-01"}}return""}},end:{type:String,default:function(){if(this.mode===a.TIME)return"23:59";if(this.mode===a.DATE){var t=(new Date).getFullYear()+60;switch(this.fields){case c.YEAR:return t;case c.MONTH:return t+"-12";case c.DAY:return t+"-12-31"}}return""}},disabled:{type:[Boolean,String],default:!1}},created:function(){var t=this;this.$dispatch("Form","uni-form-group-update",{type:"add",vm:this}),Object.keys(this.$props).forEach((function(e){"name"!==e&&t.$watch(e,(function(i){var n={};n[e]=i,t._updatePicker(n)}))}))},beforeDestroy:function(){this.$dispatch("Form","uni-form-group-update",{type:"remove",vm:this})},methods:{_show:function(){this.disabled||this._showPicker(Object.assign({},this.$props))},_showPicker:function(t){var e=this;if(this.mode===a.TIME||this.mode===a.DATE)plus.nativeUI[this.mode===a.TIME?"pickTime":"pickDate"]((function(t){var i=t.date;e.$trigger("change",{},{value:e.mode===a.TIME?"".concat(u(i.getHours()),":").concat(u(i.getMinutes())):"".concat(i.getFullYear(),"-").concat(u(i.getMonth()+1),"-").concat(u(i.getDate()))})}),(function(){e.$trigger("cancel",{},{})}),this.mode===a.TIME?{time:l(this.value,a.TIME)}:{date:l(this.value,a.DATE),minDate:l(this.start,a.DATE),maxDate:l(this.end,a.DATE)});else{var i={event:"cancel"};this.page=Object(s["a"])({url:"__uniapppicker",data:t,style:{titleNView:!1,animationType:"none",animationDuration:0,background:"rgba(0,0,0,0)",popGesture:"none"},onMessage:function(n){var r=n.event;if("created"!==r)return"columnchange"===r?(delete n.event,void e.$trigger(r,{},n)):void(i=n);e._updatePicker(t)},onClose:function(){e.page=null;var t=i.event;delete i.event,e.$trigger(t,{},i)}})}},_updatePicker:function(t){this.page&&this.page.sendMessage(t)}}},d=h,f=(i("76a8"),i("2877")),p=Object(f["a"])(d,n,r,!1,null,null,null);e["default"]=p.exports},"9a8b":function(t,e,i){"use strict";i.r(e);var n=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("uni-icon",t._g({},t.$listeners),[i("i",{class:"uni-icon-"+t.type,style:{"font-size":t._converPx(t.size),color:t.color},attrs:{role:"img"}})])},r=[],o={name:"Icon",props:{type:{type:String,required:!0,default:""},size:{type:[String,Number],default:23},color:{type:String,default:""}},methods:{_converPx:function(t){if(/\d+[ur]px$/i.test(t))t.replace(/\d+[ur]px$/i,(function(t){return"".concat(uni.upx2px(parseFloat(t)),"px")}));else if(/^-?[\d\.]+$/.test(t))return"".concat(t,"px");return t||""}}},s=o,a=(i("7e6a"),i("2877")),c=Object(a["a"])(s,n,r,!1,null,null,null);e["default"]=c.exports},"9b1f":function(t,e,i){"use strict";i.r(e);var n=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("uni-progress",t._g({staticClass:"uni-progress"},t.$listeners),[i("div",{staticClass:"uni-progress-bar",style:t.outerBarStyle},[i("div",{staticClass:"uni-progress-inner-bar",style:t.innerBarStyle})]),t.showInfo?[i("p",{staticClass:"uni-progress-info"},[t._v(t._s(t.currentPercent)+"%")])]:t._e()],2)},r=[],o={activeColor:"#007AFF",backgroundColor:"#EBEBEB",activeMode:"backwards"},s={name:"Progress",props:{percent:{type:[Number,String],default:0,validator:function(t){return!isNaN(parseFloat(t,10))}},showInfo:{type:[Boolean,String],default:!1},strokeWidth:{type:[Number,String],default:6,validator:function(t){return!isNaN(parseFloat(t,10))}},color:{type:String,default:o.activeColor},activeColor:{type:String,default:o.activeColor},backgroundColor:{type:String,default:o.backgroundColor},active:{type:[Boolean,String],default:!1},activeMode:{type:String,default:o.activeMode}},data:function(){return{currentPercent:0,strokeTimer:0,lastPercent:0}},computed:{outerBarStyle:function(){return"background-color: ".concat(this.backgroundColor,"; height: ").concat(this.strokeWidth,"px;")},innerBarStyle:function(){var t="";return t=this.color!==o.activeColor&&this.activeColor===o.activeColor?this.color:this.activeColor,"width: ".concat(this.currentPercent,"%;background-color: ").concat(t)},realPercent:function(){var t=parseFloat(this.percent,10);return t<0&&(t=0),t>100&&(t=100),t}},watch:{realPercent:function(t,e){this.strokeTimer&&clearInterval(this.strokeTimer),this.lastPercent=e||0,this._activeAnimation()}},created:function(){this._activeAnimation()},methods:{_activeAnimation:function(){var t=this;this.active?(this.currentPercent=this.activeMode===o.activeMode?0:this.lastPercent,this.strokeTimer=setInterval((function(){t.currentPercent+1>t.realPercent?(t.currentPercent=t.realPercent,t.strokeTimer&&clearInterval(t.strokeTimer)):t.currentPercent+=1}),30)):this.currentPercent=this.realPercent}}},a=s,c=(i("944e"),i("2877")),u=Object(c["a"])(a,n,r,!1,null,null,null);e["default"]=u.exports},"9d20":function(t,e,i){"use strict";(function(t){i.d(e,"a",(function(){return d}));var n=i("f2b3"),r=i("a20d");function o(t,e){return c(t)||a(t,e)||s()}function s(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}function a(t,e){if(Symbol.iterator in Object(t)||"[object Arguments]"===Object.prototype.toString.call(t)){var i=[],n=!0,r=!1,o=void 0;try{for(var s,a=t[Symbol.iterator]();!(n=(s=a.next()).done);n=!0)if(i.push(s.value),e&&i.length===e)break}catch(c){r=!0,o=c}finally{try{n||null==a["return"]||a["return"]()}finally{if(r)throw o}}return i}}function c(t){if(Array.isArray(t))return t}function u(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function l(t,e){for(var i=0;i1&&void 0!==arguments[1]?arguments[1]:{},i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};this.addBatchVData.push([t,e,i])}},{key:"updateVData",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this.updateBatchVData.push([t,e])}},{key:"initVm",value:function(t){var e=this.addBatchVData.shift(),i=o(e,3),r=i[0],s=i[1],a=i[2];r?t._$id=r:(t._$id=Object(n["c"])(),console.error("cid unmatched",t)),Object.assign(t.$options,a),t.$r=s||Object.create(null),this.vms[t._$id]=t}},{key:"sendUIEvent",value:function(e,i,n){t.publishHandler(r["h"],{data:[[r["f"],[[e,i,n]]]],options:{timestamp:Date.now()}})}},{key:"clearAddBatchVData",value:function(){this.addBatchVData.length=0}},{key:"flush",value:function(){var t=this;this.updateBatchVData.forEach((function(e){var i=o(e,2),n=i[0],r=i[1],s=t.vms[n];if(!s)return console.error("Not found ".concat(n));Object.keys(r).forEach((function(t){Object.assign(s.$r[t]||(s.$r[t]=Object.create(null)),r[t])})),s.$forceUpdate()})),this.updateBatchVData.length=0}}]),e}()}).call(this,i("501c"))},"9f96":function(t,e,i){"use strict";i.r(e);var n=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("uni-slider",t._g({ref:"uni-slider",on:{click:t._onClick}},t.$listeners),[i("div",{staticClass:"uni-slider-wrapper"},[i("div",{staticClass:"uni-slider-tap-area"},[i("div",{staticClass:"uni-slider-handle-wrapper",style:t.setBgColor},[i("div",{ref:"uni-slider-handle",staticClass:"uni-slider-handle",style:t.setBlockBg}),i("div",{staticClass:"uni-slider-thumb",style:t.setBlockStyle}),i("div",{staticClass:"uni-slider-track",style:t.setActiveColor})])]),i("span",{directives:[{name:"show",rawName:"v-show",value:t.showValue,expression:"showValue"}],staticClass:"uni-slider-value"},[t._v(t._s(t.sliderValue))])]),t._t("default")],2)},r=[],o=i("8af1"),s=i("ba15"),a={name:"Slider",mixins:[o["a"],o["d"],s["a"]],props:{name:{type:String,default:""},min:{type:[Number,String],default:0},max:{type:[Number,String],default:100},value:{type:[Number,String],default:0},step:{type:[Number,String],default:1},disabled:{type:[Boolean,String],default:!1},color:{type:String,default:"#e9e9e9"},backgroundColor:{type:String,default:"#e9e9e9"},activeColor:{type:String,default:"#007aff"},selectedColor:{type:String,default:"#007aff"},blockColor:{type:String,default:"#ffffff"},blockSize:{type:[Number,String],default:28},showValue:{type:[Boolean,String],default:!1}},data:function(){return{sliderValue:Number(this.value)}},computed:{setBlockStyle:function(){return{width:this.blockSize+"px",height:this.blockSize+"px",marginLeft:-this.blockSize/2+"px",marginTop:-this.blockSize/2+"px",left:this._getValueWidth(),backgroundColor:this.blockColor}},setBgColor:function(){return{backgroundColor:this._getBgColor()}},setBlockBg:function(){return{left:this._getValueWidth()}},setActiveColor:function(){return{backgroundColor:this._getActiveColor(),width:this._getValueWidth()}}},watch:{value:function(t){this.sliderValue=Number(t)}},mounted:function(){this.touchtrack(this.$refs["uni-slider-handle"],"_onTrack")},created:function(){this.$dispatch("Form","uni-form-group-update",{type:"add",vm:this})},beforeDestroy:function(){this.$dispatch("Form","uni-form-group-update",{type:"remove",vm:this})},methods:{_onUserChangedValue:function(t){var e=this.$refs["uni-slider"],i=e.offsetWidth,n=e.getBoundingClientRect().left,r=(t.x-n)*(this.max-this.min)/i+Number(this.min);this.sliderValue=this._filterValue(r)},_filterValue:function(t){return tthis.max?this.max:Math.round((t-this.min)/this.step)*this.step+Number(this.min)},_getValueWidth:function(){return 100*(this.sliderValue-this.min)/(this.max-this.min)+"%"},_getBgColor:function(){return"#e9e9e9"!==this.backgroundColor?this.backgroundColor:"#007aff"!==this.color?this.color:"#007aff"},_getActiveColor:function(){return"#007aff"!==this.activeColor?this.activeColor:"#e9e9e9"!==this.selectedColor?this.selectedColor:"#e9e9e9"},_onTrack:function(t){if(!this.disabled)return"move"===t.detail.state?(this._onUserChangedValue({x:t.detail.x0}),this.$trigger("changing",t,{value:this.sliderValue}),!1):void("end"===t.detail.state&&this.$trigger("change",t,{value:this.sliderValue}))},_onClick:function(t){this.disabled||(this._onUserChangedValue(t),this.$trigger("change",t,{value:this.sliderValue}))},_resetFormData:function(){this.sliderValue=this.min},_getFormData:function(){var t={};return""!==this.name&&(t["value"]=this.sliderValue,t["key"]=this.name),t}}},c=a,u=(i("6428"),i("2877")),l=Object(u["a"])(c,n,r,!1,null,null,null);e["default"]=l.exports},a20d:function(t,e,i){"use strict";i.d(e,"d",(function(){return n})),i.d(e,"c",(function(){return r})),i.d(e,"g",(function(){return o})),i.d(e,"e",(function(){return s})),i.d(e,"f",(function(){return a})),i.d(e,"h",(function(){return c})),i.d(e,"a",(function(){return u})),i.d(e,"k",(function(){return l})),i.d(e,"i",(function(){return h})),i.d(e,"b",(function(){return d})),i.d(e,"j",(function(){return f})),i.d(e,"l",(function(){return p}));var n=2,r=4,o=6,s=10,a=20,c="vdSync",u="__uniapp__service",l="webviewReady",h="vdSyncCallback",d="invokeApi",f="webviewInserted",p="webviewRemoved"},a20f:function(t,e,i){"use strict";i.d(e,"a",(function(){return n})),i.d(e,"b",(function(){return a}));var n=function(){var t=document.createElement("canvas"),e=t.getContext("2d"),i=e.backingStorePixelRatio||e.webkitBackingStorePixelRatio||e.mozBackingStorePixelRatio||e.msBackingStorePixelRatio||e.oBackingStorePixelRatio||e.backingStorePixelRatio||1;return(window.devicePixelRatio||1)/i}(),r=function(t,e){for(var i in t)t.hasOwnProperty(i)&&e(t[i],i)},o={fillRect:"all",clearRect:"all",strokeRect:"all",moveTo:"all",lineTo:"all",arc:[0,1,2],arcTo:"all",bezierCurveTo:"all",isPointinPath:"all",isPointinStroke:"all",quadraticCurveTo:"all",rect:"all",translate:"all",createRadialGradient:"all",createLinearGradient:"all",setTransform:[4,5]};if(1!==n){var s=CanvasRenderingContext2D.prototype;r(o,(function(t,e){s[e]=function(e){return function(){if(!this.__hidpi__)return e.apply(this,arguments);var i=Array.prototype.slice.call(arguments);if("all"===t)i=i.map((function(t){return t*n}));else if(Array.isArray(t))for(var r=0;r0&&this.children.tail.format(t,e)}},{key:"formats",value:function(){return S({},this.statics.blotName,this.statics.formats(this.domNode))}},{key:"insertBefore",value:function(t,e){if(t instanceof n)M(N(i.prototype),"insertBefore",this).call(this,t,e);else{var r=null==e?this.length():e.offset(this),o=this.split(r);o.parent.insertBefore(t,o)}}},{key:"optimize",value:function(t){M(N(i.prototype),"optimize",this).call(this,t);var e=this.next;null!=e&&e.prev===this&&e.statics.blotName===this.statics.blotName&&e.domNode.tagName===this.domNode.tagName&&e.domNode.getAttribute("data-checked")===this.domNode.getAttribute("data-checked")&&(e.moveChildren(this),e.remove())}},{key:"replace",value:function(t){if(t.statics.blotName!==this.statics.blotName){var n=e.create(this.statics.defaultChild);t.moveChildren(n),this.appendChild(n)}M(N(i.prototype),"replace",this).call(this,t)}}]),i}(i);return r.blotName="list",r.scope=e.Scope.BLOCK_BLOT,r.tagName=["OL","UL"],r.defaultChild="list-item",r.allowedChildren=[n],{"formats/list":r}},L=function(t){var e=t.import("parchment"),i=e.Scope,n=t.import("formats/background"),r=new n.constructor("backgroundColor","background-color",{scope:i.INLINE});return{"formats/backgroundColor":r}},D=i("f2b3"),j=function(t){var e=t.import("parchment"),i=e.Scope,n=e.Attributor,r={scope:i.BLOCK},o=["margin","marginTop","marginBottom","marginLeft","marginRight"],s=["padding","paddingTop","paddingBottom","paddingLeft","paddingRight"],a={};return o.concat(s).forEach((function(t){a["formats/".concat(t)]=new n.Style(t,Object(D["g"])(t),r)})),a},A=function(t){var e=t.import("parchment"),i=e.Scope,n=e.Attributor,r={scope:i.INLINE},o=["font","fontSize","fontStyle","fontVariant","fontWeight","fontFamily"],s={};return o.forEach((function(t){s["formats/".concat(t)]=new n.Style(t,Object(D["g"])(t),r)})),s},R=function(t){var e=t.import("parchment"),i=e.Scope,n=e.Attributor,r=[{name:"lineHeight",scope:i.BLOCK},{name:"letterSpacing",scope:i.INLINE},{name:"textDecoration",scope:i.INLINE},{name:"textIndent",scope:i.BLOCK}],o={};return r.forEach((function(t){var e=t.name,i=t.scope;o["formats/".concat(e)]=new n.Style(e,Object(D["g"])(e),{scope:i})})),o},F=function(t){var e=t.import("formats/image");e.sanitize=function(t){return t}};function B(t){var e={divider:l,ins:_,align:b,direction:y,list:P,background:L,box:j,font:A,text:R,image:F},i={};Object.values(e).forEach((function(e){return Object.assign(i,e(t))})),t.register(i,!0)}i.d(e,"a",(function(){return B}))},b2bb:function(t,e,i){},b34d:function(t,e,i){"use strict";i.r(e);var n=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("uni-form",t._g({},t.$listeners),[i("span",[t._t("default")],2)])},r=[],o=i("8af1"),s={name:"Form",mixins:[o["d"]],data:function(){return{childrenList:[]}},listeners:{"@form-submit":"_onSubmit","@form-reset":"_onReset","@form-group-update":"_formGroupUpdateHandler"},methods:{_onSubmit:function(t){var e={};this.childrenList.forEach((function(t){t._getFormData&&t._getFormData().key&&(e[t._getFormData().key]=t._getFormData().value)})),this.$trigger("submit",t,{value:e})},_onReset:function(t){this.$trigger("reset",t,{}),this.childrenList.forEach((function(t){t._resetFormData&&t._resetFormData()}))},_formGroupUpdateHandler:function(t){if("add"===t.type)this.childrenList.push(t.vm);else{var e=this.childrenList.indexOf(t.vm);this.childrenList.splice(e,1)}}}},a=s,c=i("2877"),u=Object(c["a"])(a,n,r,!1,null,null,null);e["default"]=u.exports},b705:function(t,e,i){"use strict";i.r(e);var n=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("uni-rich-text",t._g({},t.$listeners),[i("div")])},r=[],o=i("18fd");function s(t){return t.replace(/<\?xml.*\?>\n/,"").replace(/\n/,"").replace(/\n/,"")}function a(t){return t.reduce((function(t,e){var i=e.value,n=e.name;return i.match(/ /)&&"style"!==n&&(i=i.split(" ")),t[n]?Array.isArray(t[n])?t[n].push(i):t[n]=[t[n],i]:t[n]=i,t}),{})}function c(t){t=s(t);var e=[],i={node:"root",children:[]};return Object(o["a"])(t,{start:function(t,n,r){var o={name:t};if(0!==n.length&&(o.attrs=a(n)),r){var s=e[0]||i;s.children||(s.children=[]),s.children.push(o)}else e.unshift(o)},end:function(t){var n=e.shift();if(n.name!==t&&console.error("invalid state: mismatch end tag"),0===e.length)i.children.push(n);else{var r=e[0];r.children||(r.children=[]),r.children.push(n)}},chars:function(t){var n={type:"text",text:t};if(0===e.length)i.children.push(n);else{var r=e[0];r.children||(r.children=[]),r.children.push(n)}},comment:function(t){var i={node:"comment",text:t},n=e[0];n.children||(n.children=[]),n.children.push(i)}}),i.children}var u=i("f2b3"),l={a:"",abbr:"",b:"",blockquote:"",br:"",code:"",col:["span","width"],colgroup:["span","width"],dd:"",del:"",div:"",dl:"",dt:"",em:"",fieldset:"",h1:"",h2:"",h3:"",h4:"",h5:"",h6:"",hr:"",i:"",img:["alt","src","height","width"],ins:"",label:"",legend:"",li:"",ol:["start","type"],p:"",q:"",span:"",strong:"",sub:"",sup:"",table:["width"],tbody:"",td:["colspan","rowspan","height","width"],tfoot:"",th:["colspan","rowspan","height","width"],thead:"",tr:"",ul:""},h={amp:"&",gt:">",lt:"<",nbsp:" ",quot:'"',apos:"'"};function d(t){return t.replace(/&(([a-zA-Z]+)|(#x{0,1}[\da-zA-Z]+));/gi,(function(t,e){if(Object(u["d"])(h,e)&&h[e])return h[e];if(/^#[0-9]{1,4}$/.test(e))return String.fromCharCode(e.slice(1));if(/^#x[0-9a-f]{1,4}$/i.test(e))return String.fromCharCode("0"+e.slice(1));var i=document.createElement("div");return i.innerHTML=t,i.innerText||i.textContent}))}function f(t,e){return t.forEach((function(t){if(Object(u["f"])(t))if(Object(u["d"])(t,"type")&&"node"!==t.type)"text"===t.type&&"string"===typeof t.text&&""!==t.text&&e.appendChild(document.createTextNode(d(t.text)));else{if("string"!==typeof t.name||!t.name)return;var i=t.name.toLowerCase();if(!Object(u["d"])(l,i))return;var n=document.createElement(i);if(!n)return;var r=t.attrs;if(Object(u["f"])(r)){var o=l[i]||[];Object.keys(r).forEach((function(t){var e=r[t];switch(t){case"class":Array.isArray(e)&&(e=e.join(" "));case"style":n.setAttribute(t,e);break;default:-1!==o.indexOf(t)&&n.setAttribute(t,e)}}))}var s=t.children;Array.isArray(s)&&s.length&&f(t.children,n),e.appendChild(n)}})),e}var p={name:"RichText",props:{nodes:{type:[Array,String],default:function(){return[]}}},watch:{nodes:function(t){this._renderNodes(t)}},mounted:function(){this._renderNodes(this.nodes)},methods:{_renderNodes:function(t){"string"===typeof t&&(t=c(t));var e=f(t,document.createDocumentFragment());this.$el.firstChild.innerHTML="",this.$el.firstChild.appendChild(e)}}},m=p,g=i("2877"),v=Object(g["a"])(m,n,r,!1,null,null,null);e["default"]=v.exports},ba15:function(t,e,i){"use strict";var n=function(t,e,i,n){t.addEventListener(e,(function(t){"function"===typeof i&&!1===i(t)&&(t.preventDefault(),t.stopPropagation())}),{passive:!1})};e["a"]={methods:{touchtrack:function(t,e,i){var r=this,o=0,s=0,a=0,c=0,u=function(t,i,n,u){if(!1===r[e]({target:t.target,currentTarget:t.currentTarget,preventDefault:t.preventDefault.bind(t),stopPropagation:t.stopPropagation.bind(t),touches:t.touches,changedTouches:t.changedTouches,detail:{state:i,x0:n,y0:u,dx:n-o,dy:u-s,ddx:n-a,ddy:u-c,timeStamp:t.timeStamp}}))return!1},l=null;n(t,"touchstart",(function(t){if(1===t.touches.length&&!l)return l=t,o=a=t.touches[0].pageX,s=c=t.touches[0].pageY,u(t,"start",o,s)})),n(t,"touchmove",(function(t){if(1===t.touches.length&&l){var e=u(t,"move",t.touches[0].pageX,t.touches[0].pageY);return a=t.touches[0].pageX,c=t.touches[0].pageY,e}})),n(t,"touchend",(function(t){if(0===t.touches.length&&l)return l=null,u(t,"end",t.changedTouches[0].pageX,t.changedTouches[0].pageY)})),n(t,"touchcancel",(function(t){if(l){var e=l;return l=null,u(t,i?"cancel":"end",e.touches[0].pageX,e.touches[0].pageY)}}))}}}},bacd:function(t,e,i){"use strict";i.r(e);var n=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("uni-canvas",t._g({attrs:{"canvas-id":t.canvasId,"disable-scroll":t.disableScroll}},t._listeners),[i("canvas",{ref:"canvas",attrs:{width:"300",height:"150"}}),i("div",{staticStyle:{position:"absolute",top:"0",left:"0",width:"100%",height:"100%",overflow:"hidden"}},[t._t("default")],2),i("v-uni-resize-sensor",{ref:"sensor",on:{resize:t._resize}})],1)},r=[],o=i("e1df"),s=o["a"],a=(i("0741"),i("2877")),c=Object(a["a"])(s,n,r,!1,null,null,null);e["default"]=c.exports},bfea:function(t,e,i){"use strict";var n=i("4e0b"),r=i.n(n);r.a},c0e5:function(t,e,i){},c33a:function(t,e,i){},c418:function(t,e,i){},c4c5:function(t,e,i){"use strict";(function(t,n){i.d(e,"a",(function(){return f}));var r=i("f2b3");function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function s(t,e){for(var i=0;i1&&(e[i[0].trim()]=i[1].trim())}})),e}var d=function(){function e(t){o(this,e),this.$vm=t,this.$el=t.$el}return a(e,[{key:"selectComponent",value:function(t){if(this.$el&&t){var e=this.$el.querySelector(t);return e&&e.__vue__&&f(e.__vue__,!1)}}},{key:"selectAllComponents",value:function(t){if(!this.$el||!t)return[];for(var e=[],i=this.$el.querySelectorAll(t),n=0;n1&&void 0!==arguments[1]?arguments[1]:{};this.$vm[e]?this.$vm[e](JSON.parse(JSON.stringify(i))):this.$vm._$id&&t.publishHandler("onWxsInvokeCallMethod",{cid:this.$vm._$id,method:e,args:i})}},{key:"requestAnimationFrame",value:function(t){return n.requestAnimationFrame(t),this}},{key:"getState",value:function(){return this.$el&&(this.$el.__wxsState||(this.$el.__wxsState={}))}},{key:"triggerEvent",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};arguments.length>2&&void 0!==arguments[2]&&arguments[2];return this.$vm.$emit(t,e),this}}]),e}();function f(t){var e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];if(e&&t&&t.$options.name&&0===t.$options.name.indexOf("VUni")&&(t=t.$parent),t&&t.$el)return t.$el.__wxsComponentDescriptor||(t.$el.__wxsComponentDescriptor=new d(t)),t.$el.__wxsComponentDescriptor}}).call(this,i("501c"),i("c8ba"))},c61c:function(t,e,i){"use strict";i.r(e);var n=i("f2b3");function r(t){return Math.sqrt(t.x*t.x+t.y*t.y)}var o,s,a={name:"MovableArea",props:{scaleArea:{type:Boolean,default:!1}},data:function(){return{width:0,height:0,items:[]}},created:function(){this.gapV={x:null,y:null},this.pinchStartLen=null},mounted:function(){this._resize()},methods:{_resize:function(){this._getWH(),this.items.forEach((function(t,e){t.componentInstance.setParent()}))},_find:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.items,i=this.$el;function n(t){for(var r=0;r1){var i={x:e[1].pageX-e[0].pageX,y:e[1].pageY-e[0].pageY};if(this.pinchStartLen=r(i),this.gapV=i,!this.scaleArea){var o=this._find(e[0].target),s=this._find(e[1].target);this._scaleMovableView=o&&o===s?o:null}}},_touchmove:function(t){var e=t.touches;if(e&&e.length>1){t.preventDefault();var i={x:e[1].pageX-e[0].pageX,y:e[1].pageY-e[0].pageY};if(null!==this.gapV.x&&this.pinchStartLen>0){var n=r(i)/this.pinchStartLen;this._updateScale(n)}this.gapV=i}},_touchend:function(t){Object(n["b"])({disable:!1});var e=t.touches;e&&e.length||t.changedTouches&&(this.gapV.x=0,this.gapV.y=0,this.pinchStartLen=null,this.scaleArea?this.items.forEach((function(t){t.componentInstance._endScale()})):this._scaleMovableView&&this._scaleMovableView.componentInstance._endScale())},_updateScale:function(t){t&&1!==t&&(this.scaleArea?this.items.forEach((function(e){e.componentInstance._setScale(t)})):this._scaleMovableView&&this._scaleMovableView.componentInstance._setScale(t))},_getWH:function(){var t=window.getComputedStyle(this.$el),e=this.$el.getBoundingClientRect();this.width=e.width-["Left","Right"].reduce((function(e,i){return e+parseFloat(t["border"+i+"Width"])+parseFloat(t["padding"+i])}),0),this.height=e.height-["Top","Bottom"].reduce((function(e,i){return e+parseFloat(t["border"+i+"Width"])+parseFloat(t["padding"+i])}),0)}},render:function(t){var e=this,i=[];this.$slots.default&&this.$slots.default.forEach((function(t){t.componentOptions&&"v-uni-movable-view"===t.componentOptions.tag&&i.push(t)})),this.items=i;var n=Object.assign({},this.$listeners),r=["touchstart","touchmove","touchend"];return r.forEach((function(t){var i=n[t],r=e["_".concat(t)];n[t]=i?[].concat(i,r):r})),t("uni-movable-area",{on:n},[t("v-uni-resize-sensor",{on:{resize:this._resize}})].concat(i))}},c=a,u=(i("a3e5"),i("2877")),l=Object(u["a"])(c,o,s,!1,null,null,null);e["default"]=l.exports},c8ba:function(t,e){var i;i=function(){return this}();try{i=i||new Function("return this")()}catch(n){"object"===typeof window&&(i=window)}t.exports=i},c8ed:function(t,e,i){"use strict";var n=i("72ad"),r=i.n(n);r.a},c96e:function(t,e,i){"use strict";var n=i("1307"),r=i.n(n);r.a},cc89:function(t,e,i){},ce51:function(t,e,i){},d3bd:function(t,e,i){"use strict";i.r(e);var n,r,o=i("8af1"),s={name:"Button",mixins:[o["b"],o["a"],o["d"]],props:{hoverClass:{type:String,default:"button-hover"},disabled:{type:[Boolean,String],default:!1},id:{type:String,default:""},hoverStopPropagation:{type:Boolean,default:!1},hoverStartTime:{type:[Number,String],default:20},hoverStayTime:{type:[Number,String],default:70},formType:{type:String,default:"",validator:function(t){return~["","submit","reset"].indexOf(t)}}},data:function(){return{clickFunction:null}},methods:{_onClick:function(t,e){this.disabled||(e&&this.$el.click(),this.formType&&this.$dispatch("Form","submit"===this.formType?"uni-form-submit":"uni-form-reset",{type:this.formType}))},_bindObjectListeners:function(t,e){if(e)for(var i in e){var n=t.on[i],r=e[i];t.on[i]=n?[].concat(n,r):r}return t}},render:function(t){var e=this,i=Object.create(null);return this.$listeners&&Object.keys(this.$listeners).forEach((function(t){(!e.disabled||"click"!==t&&"tap"!==t)&&(i[t]=e.$listeners[t])})),this.hoverClass&&"none"!==this.hoverClass?t("uni-button",this._bindObjectListeners({class:[this.hovering?this.hoverClass:""],attrs:{disabled:this.disabled},on:{touchstart:this._hoverTouchStart,touchend:this._hoverTouchEnd,touchcancel:this._hoverTouchCancel,click:this._onClick}},i),this.$slots.default):t("uni-button",this._bindObjectListeners({class:[this.hovering?this.hoverClass:""],attrs:{disabled:this.disabled},on:{click:this._onClick}},i),this.$slots.default)},listeners:{"label-click":"_onClick","@label-click":"_onClick"}},a=s,c=(i("5676"),i("2877")),u=Object(c["a"])(a,n,r,!1,null,null,null);e["default"]=u.exports},d4b6:function(t,e,i){"use strict";var n=i("f2b3"),r=i("85b6");function o(t){return Object.assign({mp:t,_processed:!0},t)}var s=i("1e88");function a(t,e){arguments.length>2&&void 0!==arguments[2]&&arguments[2];var i={id:t.id,offsetLeft:t.offsetLeft,offsetTop:t.offsetTop,dataset:Object(r["b"])(t.dataset)};return e&&Object.assign(i,e),i}function c(t){if(t){for(var e=[],i=Object(s["a"])(),n=i.top,r=0;r1&&void 0!==arguments[1]?arguments[1]:{},i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},r=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{};if(e._processed)return e.type=i.type||t,e;if("click"===t){var u=Object(s["a"])(),l=u.top;i={x:e.x,y:e.y-l},e.touches=e.changedTouches=[{force:1,identifier:0,clientX:e.clientX,clientY:e.clientY,pageX:e.pageX,pageY:e.pageY}]}var h=o({type:i.type||t,timeStamp:e.timeStamp||0,detail:i,target:a(n,i),currentTarget:a(r,!1,!0),touches:e instanceof Event||e instanceof CustomEvent?c(e.touches):e.touches,changedTouches:e instanceof Event||e instanceof CustomEvent?c(e.changedTouches):e.changedTouches,preventDefault:function(){},stopPropagation:function(){}}),d=r.getAttribute("_i");return h.options={nid:d},h}i.d(e,"b",(function(){return u})),i.d(e,"a",(function(){return b}));var l=350,h=10,d=!!n["i"]&&{passive:!0},f=!1;function p(){f&&(clearTimeout(f),f=!1)}var m=0,g=0;function v(t){if(p(),1===t.touches.length){var e=t.touches[0],i=e.pageX,n=e.pageY;m=i,g=n,f=setTimeout((function(){var e=new CustomEvent("longpress",{bubbles:!0,cancelable:!0,target:t.target,currentTarget:t.currentTarget});e.touches=t.touches,e.changedTouches=t.changedTouches,t.target.dispatchEvent(e)}),l)}}function _(t){if(f){if(1!==t.touches.length)return p();var e=t.touches[0],i=e.pageX,n=e.pageY;return Math.abs(i-m)>h||Math.abs(n-g)>h?p():void 0}}function b(){window.addEventListener("touchstart",v,d),window.addEventListener("touchmove",_,d),window.addEventListener("touchend",p,d),window.addEventListener("touchcancel",p,d)}},d5ec:function(t,e,i){"use strict";i.r(e);var n=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("uni-radio-group",t._g({},t.$listeners),[t._t("default")],2)},r=[],o=i("8af1"),s={name:"RadioGroup",mixins:[o["a"],o["d"]],props:{name:{type:String,default:""}},data:function(){return{radioList:[]}},listeners:{"@radio-change":"_changeHandler","@radio-group-update":"_radioGroupUpdateHandler"},mounted:function(){this._resetRadioGroupValue(this.radioList.length-1)},created:function(){this.$dispatch("Form","uni-form-group-update",{type:"add",vm:this})},beforeDestroy:function(){this.$dispatch("Form","uni-form-group-update",{type:"remove",vm:this})},methods:{_changeHandler:function(t,e){var i=this.radioList.indexOf(e);this._resetRadioGroupValue(i,!0),this.$trigger("change",t,{value:e.radioValue})},_radioGroupUpdateHandler:function(t){if("add"===t.type)this.radioList.push(t.vm);else{var e=this.radioList.indexOf(t.vm);this.radioList.splice(e,1)}},_resetRadioGroupValue:function(t,e){var i=this;this.radioList.forEach((function(n,r){r!==t&&(e?i.radioList[r].radioChecked=!1:i.radioList.forEach((function(t,e){r>=e||i.radioList[e].radioChecked&&(i.radioList[r].radioChecked=!1)})))}))},_getFormData:function(){var t={};if(""!==this.name){var e="";this.radioList.forEach((function(t){t.radioChecked&&(e=t.value)})),t["value"]=e,t["key"]=this.name}return t}}},a=s,c=(i("fb61"),i("2877")),u=Object(c["a"])(a,n,r,!1,null,null,null);e["default"]=u.exports},d8c8:function(t,e,i){"use strict";var n,r,o=["top","left","right","bottom"],s={};function a(){return r="CSS"in window&&"function"==typeof CSS.supports?CSS.supports("top: env(safe-area-inset-top)")?"env":CSS.supports("top: constant(safe-area-inset-top)")?"constant":"":"",r}function c(){if(r="string"===typeof r?r:a(),r){var t=[],e=!1;try{var i=Object.defineProperty({},"passive",{get:function(){e={passive:!0}}});window.addEventListener("test",null,i)}catch(f){}var c=document.createElement("div");u(c,{position:"absolute",left:"0",top:"0",width:"0",height:"0",zIndex:"-1",overflow:"hidden",visibility:"hidden"}),o.forEach((function(t){d(c,t)})),document.body.appendChild(c),l(),n=!0}else o.forEach((function(t){s[t]=0}));function u(t,e){var i=t.style;Object.keys(e).forEach((function(t){var n=e[t];i[t]=n}))}function l(e){e?t.push(e):t.forEach((function(t){t()}))}function d(t,i){var n=document.createElement("div"),o=document.createElement("div"),a=document.createElement("div"),c=document.createElement("div"),d=100,f=1e4,p={position:"absolute",width:d+"px",height:"200px",boxSizing:"border-box",overflow:"hidden",paddingBottom:r+"(safe-area-inset-"+i+")"};u(n,p),u(o,p),u(a,{transition:"0s",animation:"none",width:"400px",height:"400px"}),u(c,{transition:"0s",animation:"none",width:"250%",height:"250%"}),n.appendChild(a),o.appendChild(c),t.appendChild(n),t.appendChild(o),l((function(){n.scrollTop=o.scrollTop=f;var t=n.scrollTop,r=o.scrollTop;function s(){this.scrollTop!==(this===n?t:r)&&(n.scrollTop=o.scrollTop=f,t=n.scrollTop,r=o.scrollTop,h(i))}n.addEventListener("scroll",s,e),o.addEventListener("scroll",s,e)}));var m=getComputedStyle(n);Object.defineProperty(s,i,{configurable:!0,get:function(){return parseFloat(m.paddingBottom)}})}}function u(t){return n||c(),s[t]}var l=[];function h(t){l.length||setTimeout((function(){var t={};l.forEach((function(e){t[e]=s[e]})),l.length=0,d.forEach((function(e){e(t)}))}),0),l.push(t)}var d=[];function f(t){a()&&(n||c(),"function"===typeof t&&d.push(t))}function p(t){var e=d.indexOf(t);e>=0&&d.splice(e,1)}var m={get support(){return 0!=("string"===typeof r?r:a()).length},get top(){return u("top")},get left(){return u("left")},get right(){return u("right")},get bottom(){return u("bottom")},onChange:f,offChange:p};t.exports=m},db18:function(t,e,i){"use strict";var n=i("db76"),r=i.n(n);r.a},db76:function(t,e,i){},db8e:function(t,e,i){"use strict";function n(t,e){if(t===e._$id)return e;for(var i=e.$children,r=i.length,o=0;o=0;n--){var r=t[n];"."===r?t.splice(n,1):".."===r?(t.splice(n,1),i++):i&&(t.splice(n,1),i--)}if(e)for(;i--;i)t.unshift("..");return t}function n(t){"string"!==typeof t&&(t+="");var e,i=0,n=-1,r=!0;for(e=t.length-1;e>=0;--e)if(47===t.charCodeAt(e)){if(!r){i=e+1;break}}else-1===n&&(r=!1,n=e+1);return-1===n?"":t.slice(i,n)}function r(t,e){if(t.filter)return t.filter(e);for(var i=[],n=0;n=-1&&!n;o--){var s=o>=0?arguments[o]:t.cwd();if("string"!==typeof s)throw new TypeError("Arguments to path.resolve must be strings");s&&(e=s+"/"+e,n="/"===s.charAt(0))}return e=i(r(e.split("/"),(function(t){return!!t})),!n).join("/"),(n?"/":"")+e||"."},e.normalize=function(t){var n=e.isAbsolute(t),s="/"===o(t,-1);return t=i(r(t.split("/"),(function(t){return!!t})),!n).join("/"),t||n||(t="."),t&&s&&(t+="/"),(n?"/":"")+t},e.isAbsolute=function(t){return"/"===t.charAt(0)},e.join=function(){var t=Array.prototype.slice.call(arguments,0);return e.normalize(r(t,(function(t,e){if("string"!==typeof t)throw new TypeError("Arguments to path.join must be strings");return t})).join("/"))},e.relative=function(t,i){function n(t){for(var e=0;e=0;i--)if(""!==t[i])break;return e>i?[]:t.slice(e,i-e+1)}t=e.resolve(t).substr(1),i=e.resolve(i).substr(1);for(var r=n(t.split("/")),o=n(i.split("/")),s=Math.min(r.length,o.length),a=s,c=0;c=1;--o)if(e=t.charCodeAt(o),47===e){if(!r){n=o;break}}else r=!1;return-1===n?i?"/":".":i&&1===n?"/":t.slice(0,n)},e.basename=function(t,e){var i=n(t);return e&&i.substr(-1*e.length)===e&&(i=i.substr(0,i.length-e.length)),i},e.extname=function(t){"string"!==typeof t&&(t+="");for(var e=-1,i=0,n=-1,r=!0,o=0,s=t.length-1;s>=0;--s){var a=t.charCodeAt(s);if(47!==a)-1===n&&(r=!1,n=s+1),46===a?-1===e?e=s:1!==o&&(o=1):-1!==e&&(o=-1);else if(!r){i=s+1;break}}return-1===e||-1===n||0===o||1===o&&e===n-1&&e===i+1?"":t.slice(e,n)};var o="b"==="ab".substr(-1)?function(t,e,i){return t.substr(e,i)}:function(t,e,i){return e<0&&(e=t.length+e),t.substr(e,i)}}).call(this,i("4362"))},e1df:function(t,e,i){"use strict";(function(t){var n=i("8af1"),r=i("a20f");function o(t){return c(t)||a(t)||s()}function s(){throw new TypeError("Invalid attempt to spread non-iterable instance")}function a(t){if(Symbol.iterator in Object(t)||"[object Arguments]"===Object.prototype.toString.call(t))return Array.from(t)}function c(t){if(Array.isArray(t)){for(var e=0,i=new Array(t.length);eMath.abs(o-e.y))if(t.scrollX){if(0===s.scrollLeft&&r>e.x)return void(i=!1);if(s.scrollWidth===s.offsetWidth+s.scrollLeft&&re.y)return void(i=!1);if(s.scrollHeight===s.offsetHeight+s.scrollTop&&oi.scrollWidth-i.offsetWidth?t=i.scrollWidth-i.offsetWidth:"y"===e&&t>i.scrollHeight-i.offsetHeight&&(t=i.scrollHeight-i.offsetHeight);var n=0,r="";"x"===e?n=i.scrollLeft-t:"y"===e&&(n=i.scrollTop-t),0!==n&&(this.$refs.content.style.transition="transform .3s ease-out",this.$refs.content.style.webkitTransition="-webkit-transform .3s ease-out","x"===e?r="translateX("+n+"px) translateZ(0)":"y"===e&&(r="translateY("+n+"px) translateZ(0)"),this.$refs.content.removeEventListener("transitionend",this.__transitionEnd),this.$refs.content.removeEventListener("webkitTransitionEnd",this.__transitionEnd),this.__transitionEnd=this._transitionEnd.bind(this,t,e),this.$refs.content.addEventListener("transitionend",this.__transitionEnd),this.$refs.content.addEventListener("webkitTransitionEnd",this.__transitionEnd),"x"===e?i.style.overflowX="hidden":"y"===e&&(i.style.overflowY="hidden"),this.$refs.content.style.transform=r,this.$refs.content.style.webkitTransform=r)},_handleTrack:function(t){if("start"===t.detail.state)return this._x=t.detail.x,this._y=t.detail.y,void(this._noBubble=null);"end"===t.detail.state&&(this._noBubble=!1),null===this._noBubble&&this.scrollY&&(Math.abs(this._y-t.detail.y)/Math.abs(this._x-t.detail.x)>1?this._noBubble=!0:this._noBubble=!1),null===this._noBubble&&this.scrollX&&(Math.abs(this._x-t.detail.x)/Math.abs(this._y-t.detail.y)>1?this._noBubble=!0:this._noBubble=!1),this._x=t.detail.x,this._y=t.detail.y,this._noBubble&&t.stopPropagation()},_handleScroll:function(t){if(!(t.timeStamp-this._lastScrollTime<20)){this._lastScrollTime=t.timeStamp;var e=t.target;this.$trigger("scroll",t,{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop,scrollHeight:e.scrollHeight,scrollWidth:e.scrollWidth,deltaX:this.lastScrollLeft-e.scrollLeft,deltaY:this.lastScrollTop-e.scrollTop}),this.scrollY&&(e.scrollTop<=this.upperThresholdNumber&&this.lastScrollTop-e.scrollTop>0&&t.timeStamp-this.lastScrollToUpperTime>200&&(this.$trigger("scrolltoupper",t,{direction:"top"}),this.lastScrollToUpperTime=t.timeStamp),e.scrollTop+e.offsetHeight+this.lowerThresholdNumber>=e.scrollHeight&&this.lastScrollTop-e.scrollTop<0&&t.timeStamp-this.lastScrollToLowerTime>200&&(this.$trigger("scrolltolower",t,{direction:"bottom"}),this.lastScrollToLowerTime=t.timeStamp)),this.scrollX&&(e.scrollLeft<=this.upperThresholdNumber&&this.lastScrollLeft-e.scrollLeft>0&&t.timeStamp-this.lastScrollToUpperTime>200&&(this.$trigger("scrolltoupper",t,{direction:"left"}),this.lastScrollToUpperTime=t.timeStamp),e.scrollLeft+e.offsetWidth+this.lowerThresholdNumber>=e.scrollWidth&&this.lastScrollLeft-e.scrollLeft<0&&t.timeStamp-this.lastScrollToLowerTime>200&&(this.$trigger("scrolltolower",t,{direction:"right"}),this.lastScrollToLowerTime=t.timeStamp)),this.lastScrollTop=e.scrollTop,this.lastScrollLeft=e.scrollLeft}},_scrollTopChanged:function(t){this.scrollY&&(this._innerSetScrollTop?this._innerSetScrollTop=!1:this.scrollWithAnimation?this.scrollTo(t,"y"):this.$refs.main.scrollTop=t)},_scrollLeftChanged:function(t){this.scrollX&&(this._innerSetScrollLeft?this._innerSetScrollLeft=!1:this.scrollWithAnimation?this.scrollTo(t,"x"):this.$refs.main.scrollLeft=t)},_scrollIntoViewChanged:function(t){if(t){if(!/^[_a-zA-Z][-_a-zA-Z0-9:]*$/.test(t))return console.group('scroll-into-view="'+t+'" 有误'),console.error("id 属性值格式错误。如不能以数字开头。"),void console.groupEnd();var e=this.$el.querySelector("#"+t);if(e){var i=this.$refs.main.getBoundingClientRect(),n=e.getBoundingClientRect();if(this.scrollX){var r=n.left-i.left,o=this.$refs.main.scrollLeft,s=o+r;this.scrollWithAnimation?this.scrollTo(s,"x"):this.$refs.main.scrollLeft=s}if(this.scrollY){var a=n.top-i.top,c=this.$refs.main.scrollTop,u=c+a;this.scrollWithAnimation?this.scrollTo(u,"y"):this.$refs.main.scrollTop=u}}}},_transitionEnd:function(t,e){this.$refs.content.style.transition="",this.$refs.content.style.webkitTransition="",this.$refs.content.style.transform="",this.$refs.content.style.webkitTransform="";var i=this.$refs.main;"x"===e?(i.style.overflowX=this.scrollX?"auto":"hidden",i.scrollLeft=t):"y"===e&&(i.style.overflowY=this.scrollY?"auto":"hidden",i.scrollTop=t),this.$refs.content.removeEventListener("transitionend",this.__transitionEnd),this.$refs.content.removeEventListener("webkitTransitionEnd",this.__transitionEnd)},getScrollPosition:function(){var t=this.$refs.main;return{scrollLeft:t.scrollLeft,scrollTop:t.scrollTop}}}},u=c,l=(i("5ab3"),i("2877")),h=Object(l["a"])(u,n,r,!1,null,null,null);e["default"]=h.exports},f2b3:function(t,e,i){"use strict";var n=!1;try{var r={};Object.defineProperty(r,"passive",{get:function(){n=!0}}),window.addEventListener("test-passive",null,r)}catch(b){}var o=Object.prototype.toString,s=Object.prototype.hasOwnProperty;function a(t){return"function"===typeof t}function c(t){return"[object Object]"===o.call(t)}function u(t,e){return s.call(t,e)}function l(t){var e=Object.create(null);return function(i){var n=e[i];return n||(e[i]=t(i))}}var h=/-(\w)/g;l((function(t){return t.replace(h,(function(t,e){return e?e.toUpperCase():""}))}));function d(){return Math.floor(4294967296*(1+Math.random())).toString(16).slice(1)}function f(t){return t.replace(/[A-Z]/g,(function(t){return"-"+t.toLowerCase()}))}var p,m,g;decodeURIComponent;function v(t){if("function"===typeof t)return window.plus?t():void document.addEventListener("plusready",t)}function _(t){var e=t.disable;function i(){p||(p=plus.webview.currentWebview()),g||(m=(p.getStyle()||{}).pullToRefresh||{}),g=e,m.support&&p.setPullToRefresh(Object.assign({},m,{support:!e}))}v((function(){"iOS"===plus.os.name?setTimeout(i,20):i()}))}i.d(e,"i",(function(){return n})),i.d(e,"e",(function(){return a})),i.d(e,"f",(function(){return c})),i.d(e,"d",(function(){return u})),i.d(e,"a",(function(){return l})),i.d(e,"c",(function(){return d})),i.d(e,"g",(function(){return f})),i.d(e,"b",(function(){return _})),i.d(e,"h",(function(){return v}))},f2b8:function(t,e,i){"use strict";(function(t){i.d(e,"b",(function(){return o})),i.d(e,"a",(function(){return s})),i.d(e,"c",(function(){return a})),i.d(e,"d",(function(){return c})),i.d(e,"e",(function(){return u}));var n=i("a20d");function r(e){var i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};t.publishHandler(n["b"],{data:{method:e,args:i},options:{timestamp:Date.now()}})}function o(t){r("navigateTo",t)}function s(t){r("navigateBack",t)}function a(t){r("reLaunch",t)}function c(t){r("redirectTo",t)}function u(t){r("switchTab",t)}}).call(this,i("501c"))},f53a:function(t,e,i){"use strict";var n=i("f735"),r=i.n(n);r.a},f6fd:function(t,e){(function(t){var e="currentScript",i=t.getElementsByTagName("script");e in t||Object.defineProperty(t,e,{get:function(){try{throw new Error}catch(n){var t,e=(/.*at [^\(]*\((.*):.+:.+\)$/gi.exec(n.stack)||[!1])[1];for(t in i)if(i[t].src==e||"interactive"==i[t].readyState)return i[t];return null}}})})(document)},f735:function(t,e,i){},f756:function(t,e,i){},f7fd:function(t,e,i){"use strict";var n=i("33b4"),r=i.n(n);r.a},fae3:function(t,e,i){"use strict";var n;(i.r(e),"undefined"!==typeof window)&&(i("f6fd"),(n=window.document.currentScript)&&(n=n.src.match(/(.+\/)[^/]+\.js(\?.*)?$/))&&(i.p=n[1]));var r=i("634a");i.d(e,"upx2px",(function(){return r["h"]})),i.d(e,"getSystemInfoSync",(function(){return r["b"]})),i.d(e,"canIUse",(function(){return r["a"]})),i.d(e,"navigateTo",(function(){return r["d"]})),i.d(e,"navigateBack",(function(){return r["c"]})),i.d(e,"reLaunch",(function(){return r["e"]})),i.d(e,"redirectTo",(function(){return r["f"]})),i.d(e,"switchTab",(function(){return r["g"]}))},fb61:function(t,e,i){"use strict";var n=i("7df2"),r=i.n(n);r.a}})}));