commit 40bbb82db102eceb1939a4e92249fdc12ea948a2 Author: weipengfei <2187978347@qq.com> Date: Sat Jan 13 14:21:46 2024 +0800 初始化 diff --git a/App.vue b/App.vue new file mode 100644 index 0000000..8c2b732 --- /dev/null +++ b/App.vue @@ -0,0 +1,17 @@ + + + diff --git a/api/app.js b/api/app.js new file mode 100644 index 0000000..eae912d --- /dev/null +++ b/api/app.js @@ -0,0 +1,11 @@ + +import requset from "@/utils/request.js" + +export const getInfo = ()=>{ + return requset.get('/app/version?type=3'); +} + +// 提交邀请码 +export const postCode = (data)=>{ + return requset.post('/promote_writing', data); +} \ No newline at end of file diff --git a/component/my_icon.vue b/component/my_icon.vue new file mode 100644 index 0000000..a961e8f --- /dev/null +++ b/component/my_icon.vue @@ -0,0 +1,20 @@ + + + + + \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..c3ff205 --- /dev/null +++ b/index.html @@ -0,0 +1,20 @@ + + + + + + + + + + +
+ + + diff --git a/main.js b/main.js new file mode 100644 index 0000000..c1caf36 --- /dev/null +++ b/main.js @@ -0,0 +1,22 @@ +import App from './App' + +// #ifndef VUE3 +import Vue from 'vue' +import './uni.promisify.adaptor' +Vue.config.productionTip = false +App.mpType = 'app' +const app = new Vue({ + ...App +}) +app.$mount() +// #endif + +// #ifdef VUE3 +import { createSSRApp } from 'vue' +export function createApp() { + const app = createSSRApp(App) + return { + app + } +} +// #endif \ No newline at end of file diff --git a/manifest.json b/manifest.json new file mode 100644 index 0000000..39c2918 --- /dev/null +++ b/manifest.json @@ -0,0 +1,84 @@ +{ + "name" : "H5_download", + "appid" : "__UNI__F01D55C", + "description" : "", + "versionName" : "1.0.0", + "versionCode" : "100", + "transformPx" : false, + /* 5+App特有相关 */ + "app-plus" : { + "usingComponents" : true, + "nvueStyleCompiler" : "uni-app", + "compilerVersion" : 3, + "splashscreen" : { + "alwaysShowBeforeRender" : true, + "waiting" : true, + "autoclose" : true, + "delay" : 0 + }, + /* 模块配置 */ + "modules" : {}, + /* 应用发布信息 */ + "distribute" : { + /* android打包配置 */ + "android" : { + "permissions" : [ + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "", + "" + ] + }, + /* ios打包配置 */ + "ios" : {}, + /* SDK配置 */ + "sdkConfigs" : { + "speech" : {} + } + } + }, + /* 快应用特有相关 */ + "quickapp" : {}, + /* 小程序特有相关 */ + "mp-weixin" : { + "appid" : "", + "setting" : { + "urlCheck" : false + }, + "usingComponents" : true + }, + "mp-alipay" : { + "usingComponents" : true + }, + "mp-baidu" : { + "usingComponents" : true + }, + "mp-toutiao" : { + "usingComponents" : true + }, + "uniStatistics" : { + "enable" : false + }, + "vueVersion" : "3", + "h5" : { + "title" : "惠农生活", + "devServer" : { + "port" : 6173 + }, + "router" : { + "mode" : "hash", + "base" : "./" + } + } +} diff --git a/pages.json b/pages.json new file mode 100644 index 0000000..ef34cc5 --- /dev/null +++ b/pages.json @@ -0,0 +1,21 @@ +{ + "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages + { + "path": "pages/index/index", + "style": { + "navigationBarTitleText": "", + "app-plus": { + "titleNView": false, + "bounce": "none" + } + } + } + ], + "globalStyle": { + "navigationBarTextStyle": "black", + "navigationBarTitleText": "uni-app", + "navigationBarBackgroundColor": "#F8F8F8", + "backgroundColor": "#F8F8F8" + }, + "uniIdRouter": {} +} diff --git a/pages/index/index.vue b/pages/index/index.vue new file mode 100644 index 0000000..0dd7c6f --- /dev/null +++ b/pages/index/index.vue @@ -0,0 +1,164 @@ + + + + + \ No newline at end of file diff --git a/static/bg.jpg b/static/bg.jpg new file mode 100644 index 0000000..5b24e4b Binary files /dev/null and b/static/bg.jpg differ diff --git a/static/logo.png b/static/logo.png new file mode 100644 index 0000000..b5771e2 Binary files /dev/null and b/static/logo.png differ diff --git a/static/tip.png b/static/tip.png new file mode 100644 index 0000000..714237d Binary files /dev/null and b/static/tip.png differ diff --git a/uni.promisify.adaptor.js b/uni.promisify.adaptor.js new file mode 100644 index 0000000..47fbce1 --- /dev/null +++ b/uni.promisify.adaptor.js @@ -0,0 +1,10 @@ +uni.addInterceptor({ + returnValue (res) { + if (!(!!res && (typeof res === "object" || typeof res === "function") && typeof res.then === "function")) { + return res; + } + return new Promise((resolve, reject) => { + res.then((res) => res[0] ? reject(res[0]) : resolve(res[1])); + }); + }, +}); \ No newline at end of file diff --git a/uni.scss b/uni.scss new file mode 100644 index 0000000..a05adb4 --- /dev/null +++ b/uni.scss @@ -0,0 +1,76 @@ +/** + * 这里是uni-app内置的常用样式变量 + * + * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 + * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App + * + */ + +/** + * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 + * + * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 + */ + +/* 颜色变量 */ + +/* 行为相关颜色 */ +$uni-color-primary: #007aff; +$uni-color-success: #4cd964; +$uni-color-warning: #f0ad4e; +$uni-color-error: #dd524d; + +/* 文字基本颜色 */ +$uni-text-color:#333;//基本色 +$uni-text-color-inverse:#fff;//反色 +$uni-text-color-grey:#999;//辅助灰色,如加载更多的提示信息 +$uni-text-color-placeholder: #808080; +$uni-text-color-disable:#c0c0c0; + +/* 背景颜色 */ +$uni-bg-color:#ffffff; +$uni-bg-color-grey:#f8f8f8; +$uni-bg-color-hover:#f1f1f1;//点击状态颜色 +$uni-bg-color-mask:rgba(0, 0, 0, 0.4);//遮罩颜色 + +/* 边框颜色 */ +$uni-border-color:#c8c7cc; + +/* 尺寸变量 */ + +/* 文字尺寸 */ +$uni-font-size-sm:12px; +$uni-font-size-base:14px; +$uni-font-size-lg:16; + +/* 图片尺寸 */ +$uni-img-size-sm:20px; +$uni-img-size-base:26px; +$uni-img-size-lg:40px; + +/* Border Radius */ +$uni-border-radius-sm: 2px; +$uni-border-radius-base: 3px; +$uni-border-radius-lg: 6px; +$uni-border-radius-circle: 50%; + +/* 水平间距 */ +$uni-spacing-row-sm: 5px; +$uni-spacing-row-base: 10px; +$uni-spacing-row-lg: 15px; + +/* 垂直间距 */ +$uni-spacing-col-sm: 4px; +$uni-spacing-col-base: 8px; +$uni-spacing-col-lg: 12px; + +/* 透明度 */ +$uni-opacity-disabled: 0.3; // 组件禁用态的透明度 + +/* 文章场景相关 */ +$uni-color-title: #2C405A; // 文章标题颜色 +$uni-font-size-title:20px; +$uni-color-subtitle: #555555; // 二级标题颜色 +$uni-font-size-subtitle:26px; +$uni-color-paragraph: #3F536E; // 文章段落颜色 +$uni-font-size-paragraph:15px; diff --git a/unpackage/dist/build/h5/assets/bg-1998f5fb.jpg b/unpackage/dist/build/h5/assets/bg-1998f5fb.jpg new file mode 100644 index 0000000..5b24e4b Binary files /dev/null and b/unpackage/dist/build/h5/assets/bg-1998f5fb.jpg differ diff --git a/unpackage/dist/build/h5/assets/index-44297b41.css b/unpackage/dist/build/h5/assets/index-44297b41.css new file mode 100644 index 0000000..ffd3980 --- /dev/null +++ b/unpackage/dist/build/h5/assets/index-44297b41.css @@ -0,0 +1 @@ +*{margin:0;-webkit-tap-highlight-color:transparent}html,body{-webkit-user-select:none;user-select:none;width:100%;height:100%}body,uni-page-body{background-color:var(--UI-BG-0);color:var(--UI-FG-0)}body{overflow-x:hidden;font-size:16px}uni-app,uni-page,uni-page-wrapper,uni-page-body{display:block;box-sizing:border-box;width:100%}uni-page-wrapper{position:relative}#app,uni-app,uni-page,uni-page-wrapper{height:100%}.uni-mask{position:fixed;z-index:999;top:0;right:0;left:0;bottom:0;background:rgba(0,0,0,.5)}.uni-fade-enter-active,.uni-fade-leave-active{transition-duration:.25s;transition-property:opacity;transition-timing-function:ease}.uni-fade-enter-from,.uni-fade-leave-active{opacity:0}.uni-loading,uni-button[loading]:before{background-color:transparent;background-image:url(data:image/svg+xml;base64,\ PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMjAiIGhlaWdodD0iMTIwIiB2aWV3Qm94PSIwIDAgMTAwIDEwMCI+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgxMDB2MTAwSDB6Ii8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjRTlFOUU5IiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgLTMwKSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iIzk4OTY5NyIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSgzMCAxMDUuOTggNjUpIi8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjOUI5OTlBIiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0icm90YXRlKDYwIDc1Ljk4IDY1KSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iI0EzQTFBMiIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSg5MCA2NSA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNBQkE5QUEiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoMTIwIDU4LjY2IDY1KSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iI0IyQjJCMiIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSgxNTAgNTQuMDIgNjUpIi8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjQkFCOEI5IiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0icm90YXRlKDE4MCA1MCA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNDMkMwQzEiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoLTE1MCA0NS45OCA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNDQkNCQ0IiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoLTEyMCA0MS4zNCA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNEMkQyRDIiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoLTkwIDM1IDY1KSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iI0RBREFEQSIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSgtNjAgMjQuMDIgNjUpIi8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjRTJFMkUyIiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0icm90YXRlKC0zMCAtNS45OCA2NSkiLz48L3N2Zz4=);background-repeat:no-repeat}.uni-loading{width:20px;height:20px;display:inline-block;vertical-align:middle;animation:uni-loading 1s steps(12,end) infinite;background-size:100%}@keyframes uni-loading{0%{transform:rotate3d(0,0,1,0)}to{transform:rotate3d(0,0,1,360deg)}}html{--primary-color: #007aff;--UI-BG: #fff;--UI-BG-1: #f7f7f7;--UI-BG-2: #fff;--UI-BG-3: #f7f7f7;--UI-BG-4: #4c4c4c;--UI-BG-5: #fff;--UI-FG: #000;--UI-FG-0: rgba(0, 0, 0, .9);--UI-FG-HALF: rgba(0, 0, 0, .9);--UI-FG-1: rgba(0, 0, 0, .5);--UI-FG-2: rgba(0, 0, 0, .3);--UI-FG-3: rgba(0, 0, 0, .1)}body:after{position:fixed;content:"";left:-1000px;top:-1000px;animation:shadow-preload .1s;animation-delay:3s}@keyframes shadow-preload{0%{background-image:url(https://cdn.dcloud.net.cn/img/shadow-grey.png)}to{background-image:url(https://cdn.dcloud.net.cn/img/shadow-grey.png)}}.uni-async-error{position:absolute;left:0;right:0;top:0;bottom:0;color:#999;padding:100px 10px;text-align:center}.uni-async-loading{box-sizing:border-box;width:100%;padding:50px;text-align:center}.uni-async-loading .uni-loading{width:30px;height:30px} diff --git a/unpackage/dist/build/h5/assets/index-9d172a4b.js b/unpackage/dist/build/h5/assets/index-9d172a4b.js new file mode 100644 index 0000000..0c7e923 --- /dev/null +++ b/unpackage/dist/build/h5/assets/index-9d172a4b.js @@ -0,0 +1,6 @@ +!function(){const e=document.createElement("link").relList;if(!(e&&e.supports&&e.supports("modulepreload"))){for(const e of document.querySelectorAll('link[rel="modulepreload"]'))t(e);new MutationObserver((e=>{for(const n of e)if("childList"===n.type)for(const e of n.addedNodes)"LINK"===e.tagName&&"modulepreload"===e.rel&&t(e)})).observe(document,{childList:!0,subtree:!0})}function t(e){if(e.ep)return;e.ep=!0;const t=function(e){const t={};return e.integrity&&(t.integrity=e.integrity),e.referrerPolicy&&(t.referrerPolicy=e.referrerPolicy),"use-credentials"===e.crossOrigin?t.credentials="include":"anonymous"===e.crossOrigin?t.credentials="omit":t.credentials="same-origin",t}(e);fetch(e.href,t)}}();const e={},t=function(t,n,o){if(!n||0===n.length)return t();const r=document.getElementsByTagName("link");return Promise.all(n.map((t=>{if(t=function(e,t){return new URL(e,t).href}(t,o),t in e)return;e[t]=!0;const n=t.endsWith(".css"),i=n?'[rel="stylesheet"]':"";if(!!o)for(let e=r.length-1;e>=0;e--){const o=r[e];if(o.href===t&&(!n||"stylesheet"===o.rel))return}else if(document.querySelector(`link[href="${t}"]${i}`))return;const s=document.createElement("link");return s.rel=n?"stylesheet":"modulepreload",n||(s.as="script",s.crossOrigin=""),s.href=t,document.head.appendChild(s),n?new Promise(((e,n)=>{s.addEventListener("load",e),s.addEventListener("error",(()=>n(new Error(`Unable to preload CSS for ${t}`))))})):void 0}))).then((()=>t()))};function n(e,t){const n=Object.create(null),o=e.split(",");for(let r=0;r!!n[e.toLowerCase()]:e=>!!n[e]}function o(e){if(x(e)){const t={};for(let n=0;n{if(e){const n=e.split(i);n.length>1&&(t[n[0].trim()]=n[1].trim())}})),t}function c(e){let t="";if(T(e))t=e;else if(x(e))for(let n=0;n{},h=()=>!1,g=/^on[^a-z]/,m=e=>g.test(e),v=e=>e.startsWith("onUpdate:"),y=Object.assign,b=(e,t)=>{const n=e.indexOf(t);n>-1&&e.splice(n,1)},_=Object.prototype.hasOwnProperty,w=(e,t)=>_.call(e,t),x=Array.isArray,C=e=>"[object Map]"===L(e),S=e=>"function"==typeof e,T=e=>"string"==typeof e,k=e=>"symbol"==typeof e,E=e=>null!==e&&"object"==typeof e,$=e=>E(e)&&S(e.then)&&S(e.catch),O=Object.prototype.toString,L=e=>O.call(e),A=e=>"[object Object]"===L(e),P=e=>T(e)&&"NaN"!==e&&"-"!==e[0]&&""+parseInt(e,10)===e,M=n(",key,ref,ref_for,ref_key,onVnodeBeforeMount,onVnodeMounted,onVnodeBeforeUpdate,onVnodeUpdated,onVnodeBeforeUnmount,onVnodeUnmounted"),N=e=>{const t=Object.create(null);return n=>t[n]||(t[n]=e(n))},j=/-(\w)/g,R=N((e=>e.replace(j,((e,t)=>t?t.toUpperCase():"")))),F=/\B([A-Z])/g,B=N((e=>e.replace(F,"-$1").toLowerCase())),I=N((e=>e.charAt(0).toUpperCase()+e.slice(1))),V=N((e=>e?`on${I(e)}`:"")),W=(e,t)=>!Object.is(e,t),H=(e,t)=>{for(let n=0;n{Object.defineProperty(e,t,{configurable:!0,enumerable:!1,value:n})},D=e=>{const t=parseFloat(e);return isNaN(t)?e:t};let U;const q=["ad","ad-content-page","ad-draw","audio","button","camera","canvas","checkbox","checkbox-group","cover-image","cover-view","editor","form","functional-page-navigator","icon","image","input","label","live-player","live-pusher","map","movable-area","movable-view","navigator","official-account","open-data","picker","picker-view","picker-view-column","progress","radio","radio-group","rich-text","scroll-view","slider","swiper","swiper-item","switch","text","textarea","video","view","web-view"].map((e=>"uni-"+e));const X=/^([a-z-]+:)?\/\//i,K=/^data:.*,.*/,Y="onLoad";function J(e){if(!e)return;let t=e.type.name;for(;t&&(n=B(t),-1!==q.indexOf("uni-"+n.replace("v-uni-","")));)t=(e=e.parent).type.name;var n;return e.proxy}function G(e){return 1===e.nodeType}function Z(e){return 0===e.indexOf("/")}function Q(e){return Z(e)?e:"/"+e}function ee(e,t=null){let n;return(...o)=>(e&&(n=e.apply(t,o),e=null),n)}function te(e){return R(e.substring(5))}const ne=ee((()=>{const e=HTMLElement.prototype,t=e.setAttribute;e.setAttribute=function(e,n){if(e.startsWith("data-")&&this.tagName.startsWith("UNI-")){(this.__uniDataset||(this.__uniDataset={}))[te(e)]=n}t.call(this,e,n)};const n=e.removeAttribute;e.removeAttribute=function(e){this.__uniDataset&&e.startsWith("data-")&&this.tagName.startsWith("UNI-")&&delete this.__uniDataset[te(e)],n.call(this,e)}}));function oe(e){return y({},e.dataset,e.__uniDataset)}const re=new RegExp("\"[^\"]+\"|'[^']+'|url\\([^)]+\\)|(\\d*\\.?\\d+)[r|u]px","g");function ie(e){return{passive:e}}function se(e){const{id:t,offsetTop:n,offsetLeft:o}=e;return{id:t,dataset:oe(e),offsetTop:n,offsetLeft:o}}function ae(e){try{return decodeURIComponent(""+e)}catch(t){}return""+e}function ce(e={}){const t={};return Object.keys(e).forEach((n=>{try{t[n]=ae(e[n])}catch(o){t[n]=e[n]}})),t}const le=/\+/g;function ue(e){const t={};if(""===e||"?"===e)return t;const n=("?"===e[0]?e.slice(1):e).split("&");for(let o=0;o{this.on(e,t[e])}))}emit(e,...t){const n=this.listener[e];if(!n)return this.emitCache.push({eventName:e,args:t});n.forEach((e=>{e.fn.apply(e.fn,t)})),this.listener[e]=n.filter((e=>"once"!==e.type))}on(e,t){this._addListener(e,"on",t),this._clearCache(e)}once(e,t){this._addListener(e,"once",t),this._clearCache(e)}off(e,t){const n=this.listener[e];if(n)if(t)for(let o=0;o{if(S(e._component.onError))return t(e)})),ve=function(){};ve.prototype={on:function(e,t,n){var o=this.e||(this.e={});return(o[e]||(o[e]=[])).push({fn:t,ctx:n}),this},once:function(e,t,n){var o=this;function r(){o.off(e,r),t.apply(n,arguments)}return r._=t,this.on(e,r,n)},emit:function(e){for(var t=[].slice.call(arguments,1),n=((this.e||(this.e={}))[e]||[]).slice(),o=0,r=n.length;o{let s=e[i];r[i]=(()=>{if(A(s))return _e(s,t,n);if(x(s))return s.map((e=>A(e)?_e(e,t,n):e));if(T(s)&&s.startsWith("@")){const t=s.replace("@","");let n=o[t]||s;switch(i){case"titleColor":n="black"===n?"#000000":"#ffffff";break;case"borderStyle":n=(e=n)&&e in be?be[e]:e}return n}var e;return s})()})),r):e}let we;class xe{constructor(e=!1){this.detached=e,this._active=!0,this.effects=[],this.cleanups=[],this.parent=we,!e&&we&&(this.index=(we.scopes||(we.scopes=[])).push(this)-1)}get active(){return this._active}run(e){if(this._active){const t=we;try{return we=this,e()}finally{we=t}}}on(){we=this}off(){we=this.parent}stop(e){if(this._active){let t,n;for(t=0,n=this.effects.length;t{const t=new Set(e);return t.w=0,t.n=0,t},Te=e=>(e.w&Oe)>0,ke=e=>(e.n&Oe)>0,Ee=new WeakMap;let $e=0,Oe=1;let Le;const Ae=Symbol(""),Pe=Symbol("");class Me{constructor(e,t=null,n){this.fn=e,this.scheduler=t,this.active=!0,this.deps=[],this.parent=void 0,function(e,t=we){t&&t.active&&t.effects.push(e)}(this,n)}run(){if(!this.active)return this.fn();let e=Le,t=je;for(;e;){if(e===this)return;e=e.parent}try{return this.parent=Le,Le=this,je=!0,Oe=1<<++$e,$e<=30?(({deps:e})=>{if(e.length)for(let t=0;t{const{deps:t}=e;if(t.length){let n=0;for(let o=0;o{("length"===n||n>=e)&&a.push(t)}))}else switch(void 0!==n&&a.push(s.get(n)),t){case"add":x(e)?P(n)&&a.push(s.get("length")):(a.push(s.get(Ae)),C(e)&&a.push(s.get(Pe)));break;case"delete":x(e)||(a.push(s.get(Ae)),C(e)&&a.push(s.get(Pe)));break;case"set":C(e)&&a.push(s.get(Ae))}if(1===a.length)a[0]&&He(a[0]);else{const e=[];for(const t of a)t&&e.push(...t);He(Se(e))}}function He(e,t){const n=x(e)?e:[...e];for(const o of n)o.computed&&ze(o);for(const o of n)o.computed||ze(o)}function ze(e,t){(e!==Le||e.allowRecurse)&&(e.scheduler?e.scheduler():e.run())}const De=n("__proto__,__v_isRef,__isVue"),Ue=new Set(Object.getOwnPropertyNames(Symbol).filter((e=>"arguments"!==e&&"caller"!==e)).map((e=>Symbol[e])).filter(k)),qe=Ze(),Xe=Ze(!1,!0),Ke=Ze(!0),Ye=Je();function Je(){const e={};return["includes","indexOf","lastIndexOf"].forEach((t=>{e[t]=function(...e){const n=Rt(this);for(let t=0,r=this.length;t{e[t]=function(...e){Fe();const n=Rt(this)[t].apply(this,e);return Be(),n}})),e}function Ge(e){const t=Rt(this);return Ie(t,0,e),t.hasOwnProperty(e)}function Ze(e=!1,t=!1){return function(n,o,r){if("__v_isReactive"===o)return!e;if("__v_isReadonly"===o)return e;if("__v_isShallow"===o)return t;if("__v_raw"===o&&r===(e?t?Et:kt:t?Tt:St).get(n))return n;const i=x(n);if(!e){if(i&&w(Ye,o))return Reflect.get(Ye,o,r);if("hasOwnProperty"===o)return Ge}const s=Reflect.get(n,o,r);return(k(o)?Ue.has(o):De(o))?s:(e||Ie(n,0,o),t?s:Ht(s)?i&&P(o)?s:s.value:E(s)?e?Lt(s):Ot(s):s)}}function Qe(e=!1){return function(t,n,o,r){let i=t[n];if(Mt(i)&&Ht(i)&&!Ht(o))return!1;if(!e&&(Nt(o)||Mt(o)||(i=Rt(i),o=Rt(o)),!x(t)&&Ht(i)&&!Ht(o)))return i.value=o,!0;const s=x(t)&&P(n)?Number(n)!0,deleteProperty:(e,t)=>!0},nt=y({},et,{get:Xe,set:Qe(!0)}),ot=e=>e,rt=e=>Reflect.getPrototypeOf(e);function it(e,t,n=!1,o=!1){const r=Rt(e=e.__v_raw),i=Rt(t);n||(t!==i&&Ie(r,0,t),Ie(r,0,i));const{has:s}=rt(r),a=o?ot:n?It:Bt;return s.call(r,t)?a(e.get(t)):s.call(r,i)?a(e.get(i)):void(e!==r&&e.get(t))}function st(e,t=!1){const n=this.__v_raw,o=Rt(n),r=Rt(e);return t||(e!==r&&Ie(o,0,e),Ie(o,0,r)),e===r?n.has(e):n.has(e)||n.has(r)}function at(e,t=!1){return e=e.__v_raw,!t&&Ie(Rt(e),0,Ae),Reflect.get(e,"size",e)}function ct(e){e=Rt(e);const t=Rt(this);return rt(t).has.call(t,e)||(t.add(e),We(t,"add",e,e)),this}function lt(e,t){t=Rt(t);const n=Rt(this),{has:o,get:r}=rt(n);let i=o.call(n,e);i||(e=Rt(e),i=o.call(n,e));const s=r.call(n,e);return n.set(e,t),i?W(t,s)&&We(n,"set",e,t):We(n,"add",e,t),this}function ut(e){const t=Rt(this),{has:n,get:o}=rt(t);let r=n.call(t,e);r||(e=Rt(e),r=n.call(t,e)),o&&o.call(t,e);const i=t.delete(e);return r&&We(t,"delete",e,void 0),i}function dt(){const e=Rt(this),t=0!==e.size,n=e.clear();return t&&We(e,"clear",void 0,void 0),n}function ft(e,t){return function(n,o){const r=this,i=r.__v_raw,s=Rt(i),a=t?ot:e?It:Bt;return!e&&Ie(s,0,Ae),i.forEach(((e,t)=>n.call(o,a(e),a(t),r)))}}function pt(e,t,n){return function(...o){const r=this.__v_raw,i=Rt(r),s=C(i),a="entries"===e||e===Symbol.iterator&&s,c="keys"===e&&s,l=r[e](...o),u=n?ot:t?It:Bt;return!t&&Ie(i,0,c?Pe:Ae),{next(){const{value:e,done:t}=l.next();return t?{value:e,done:t}:{value:a?[u(e[0]),u(e[1])]:u(e),done:t}},[Symbol.iterator](){return this}}}}function ht(e){return function(...t){return"delete"!==e&&this}}function gt(){const e={get(e){return it(this,e)},get size(){return at(this)},has:st,add:ct,set:lt,delete:ut,clear:dt,forEach:ft(!1,!1)},t={get(e){return it(this,e,!1,!0)},get size(){return at(this)},has:st,add:ct,set:lt,delete:ut,clear:dt,forEach:ft(!1,!0)},n={get(e){return it(this,e,!0)},get size(){return at(this,!0)},has(e){return st.call(this,e,!0)},add:ht("add"),set:ht("set"),delete:ht("delete"),clear:ht("clear"),forEach:ft(!0,!1)},o={get(e){return it(this,e,!0,!0)},get size(){return at(this,!0)},has(e){return st.call(this,e,!0)},add:ht("add"),set:ht("set"),delete:ht("delete"),clear:ht("clear"),forEach:ft(!0,!0)};return["keys","values","entries",Symbol.iterator].forEach((r=>{e[r]=pt(r,!1,!1),n[r]=pt(r,!0,!1),t[r]=pt(r,!1,!0),o[r]=pt(r,!0,!0)})),[e,n,t,o]}const[mt,vt,yt,bt]=gt();function _t(e,t){const n=t?e?bt:yt:e?vt:mt;return(t,o,r)=>"__v_isReactive"===o?!e:"__v_isReadonly"===o?e:"__v_raw"===o?t:Reflect.get(w(n,o)&&o in t?n:t,o,r)}const wt={get:_t(!1,!1)},xt={get:_t(!1,!0)},Ct={get:_t(!0,!1)},St=new WeakMap,Tt=new WeakMap,kt=new WeakMap,Et=new WeakMap;function $t(e){return e.__v_skip||!Object.isExtensible(e)?0:function(e){switch(e){case"Object":case"Array":return 1;case"Map":case"Set":case"WeakMap":case"WeakSet":return 2;default:return 0}}((e=>L(e).slice(8,-1))(e))}function Ot(e){return Mt(e)?e:At(e,!1,et,wt,St)}function Lt(e){return At(e,!0,tt,Ct,kt)}function At(e,t,n,o,r){if(!E(e))return e;if(e.__v_raw&&(!t||!e.__v_isReactive))return e;const i=r.get(e);if(i)return i;const s=$t(e);if(0===s)return e;const a=new Proxy(e,2===s?o:n);return r.set(e,a),a}function Pt(e){return Mt(e)?Pt(e.__v_raw):!(!e||!e.__v_isReactive)}function Mt(e){return!(!e||!e.__v_isReadonly)}function Nt(e){return!(!e||!e.__v_isShallow)}function jt(e){return Pt(e)||Mt(e)}function Rt(e){const t=e&&e.__v_raw;return t?Rt(t):e}function Ft(e){return z(e,"__v_skip",!0),e}const Bt=e=>E(e)?Ot(e):e,It=e=>E(e)?Lt(e):e;function Vt(e){je&&Le&&Ve((e=Rt(e)).dep||(e.dep=Se()))}function Wt(e,t){const n=(e=Rt(e)).dep;n&&He(n)}function Ht(e){return!(!e||!0!==e.__v_isRef)}function zt(e){return function(e,t){if(Ht(e))return e;return new Dt(e,t)}(e,!1)}class Dt{constructor(e,t){this.__v_isShallow=t,this.dep=void 0,this.__v_isRef=!0,this._rawValue=t?e:Rt(e),this._value=t?e:Bt(e)}get value(){return Vt(this),this._value}set value(e){const t=this.__v_isShallow||Nt(e)||Mt(e);e=t?e:Rt(e),W(e,this._rawValue)&&(this._rawValue=e,this._value=t?e:Bt(e),Wt(this))}}const Ut={get:(e,t,n)=>{return Ht(o=Reflect.get(e,t,n))?o.value:o;var o},set:(e,t,n,o)=>{const r=e[t];return Ht(r)&&!Ht(n)?(r.value=n,!0):Reflect.set(e,t,n,o)}};function qt(e){return Pt(e)?e:new Proxy(e,Ut)}var Xt;class Kt{constructor(e,t,n,o){this._setter=t,this.dep=void 0,this.__v_isRef=!0,this[Xt]=!1,this._dirty=!0,this.effect=new Me(e,(()=>{this._dirty||(this._dirty=!0,Wt(this))})),this.effect.computed=this,this.effect.active=this._cacheable=!o,this.__v_isReadonly=n}get value(){const e=Rt(this);return Vt(e),!e._dirty&&e._cacheable||(e._dirty=!1,e._value=e.effect.run()),e._value}set value(e){this._setter(e)}}function Yt(e,t,n,o){let r;try{r=o?e(...o):e()}catch(i){Gt(i,t,n)}return r}function Jt(e,t,n,o){if(S(e)){const r=Yt(e,t,n,o);return r&&$(r)&&r.catch((e=>{Gt(e,t,n)})),r}const r=[];for(let i=0;i>>1;pn(en[o])pn(e)-pn(t))),rn=0;rnnull==e.id?1/0:e.id,hn=(e,t)=>{const n=pn(e)-pn(t);if(0===n){if(e.pre&&!t.pre)return-1;if(t.pre&&!e.pre)return 1}return n};function gn(e){Qt=!1,Zt=!0,en.sort(hn);try{for(tn=0;tnT(e)?e.trim():e))),t&&(r=n.map(D))}let a,c=o[a=V(t)]||o[a=V(R(t))];!c&&i&&(c=o[a=V(B(t))]),c&&Jt(c,e,6,vn(e,c,r));const l=o[a+"Once"];if(l){if(e.emitted){if(e.emitted[a])return}else e.emitted={};e.emitted[a]=!0,Jt(l,e,6,vn(e,l,r))}}function vn(e,t,n){if(1!==n.length)return n;if(S(t)){if(t.length<2)return n}else if(!t.find((e=>e.length>=2)))return n;const o=n[0];if(o&&w(o,"type")&&w(o,"timeStamp")&&w(o,"target")&&w(o,"currentTarget")&&w(o,"detail")){const t=e.proxy,o=t.$gcd(t,!0);o&&n.push(o)}return n}function yn(e,t,n=!1){const o=t.emitsCache,r=o.get(e);if(void 0!==r)return r;const i=e.emits;let s={},a=!1;if(!S(e)){const o=e=>{const n=yn(e,t,!0);n&&(a=!0,y(s,n))};!n&&t.mixins.length&&t.mixins.forEach(o),e.extends&&o(e.extends),e.mixins&&e.mixins.forEach(o)}return i||a?(x(i)?i.forEach((e=>s[e]=null)):y(s,i),E(e)&&o.set(e,s),s):(E(e)&&o.set(e,null),null)}function bn(e,t){return!(!e||!m(t))&&(t=t.slice(2).replace(/Once$/,""),w(e,t[0].toLowerCase()+t.slice(1))||w(e,B(t))||w(e,t))}let _n=null,wn=null;function xn(e){const t=_n;return _n=e,wn=e&&e.type.__scopeId||null,t}function Cn(e,t=_n,n){if(!t)return e;if(e._n)return e;const o=(...n)=>{o._d&&ur(-1);const r=xn(t);let i;try{i=e(...n)}finally{xn(r),o._d&&ur(1)}return i};return o._n=!0,o._c=!0,o._d=!0,o}function Sn(e){const{type:t,vnode:n,proxy:o,withProxy:r,props:i,propsOptions:[s],slots:a,attrs:c,emit:l,render:u,renderCache:d,data:f,setupState:p,ctx:h,inheritAttrs:g}=e;let m,y;const b=xn(e);try{if(4&n.shapeFlag){const e=r||o;m=Sr(u.call(e,e,d,i,p,f,h)),y=c}else{const e=t;0,m=Sr(e.length>1?e(i,{attrs:c,slots:a,emit:l}):e(i,null)),y=t.props?c:Tn(c)}}catch(w){sr.length=0,Gt(w,e,1),m=_r(rr)}let _=m;if(y&&!1!==g){const e=Object.keys(y),{shapeFlag:t}=_;e.length&&7&t&&(s&&e.some(v)&&(y=kn(y,s)),_=wr(_,y))}return n.dirs&&(_=wr(_),_.dirs=_.dirs?_.dirs.concat(n.dirs):n.dirs),n.transition&&(_.transition=n.transition),m=_,xn(b),m}const Tn=e=>{let t;for(const n in e)("class"===n||"style"===n||m(n))&&((t||(t={}))[n]=e[n]);return t},kn=(e,t)=>{const n={};for(const o in e)v(o)&&o.slice(9)in t||(n[o]=e[o]);return n};function En(e,t,n){const o=Object.keys(t);if(o.length!==Object.keys(e).length)return!0;for(let r=0;r1)return n&&S(t)?t.call(o.proxy):t}}function Ln(e,t){return Mn(e,null,t)}const An={};function Pn(e,t,n){return Mn(e,t,n)}function Mn(e,t,{immediate:n,deep:o,flush:r,onTrack:i,onTrigger:s}=d){const a=we===(null==Ar?void 0:Ar.scope)?Ar:null;let c,l,u=!1,f=!1;if(Ht(e)?(c=()=>e.value,u=Nt(e)):Pt(e)?(c=()=>e,o=!0):x(e)?(f=!0,u=e.some((e=>Pt(e)||Nt(e))),c=()=>e.map((e=>Ht(e)?e.value:Pt(e)?Rn(e):S(e)?Yt(e,a,2):void 0))):c=S(e)?t?()=>Yt(e,a,2):()=>{if(!a||!a.isUnmounted)return l&&l(),Jt(e,a,3,[g])}:p,t&&o){const e=c;c=()=>Rn(e())}let h,g=e=>{l=_.onStop=()=>{Yt(e,a,4)}};if(Rr){if(g=p,t?n&&Jt(t,a,3,[c(),f?[]:void 0,g]):c(),"sync"!==r)return p;{const e=Hr();h=e.__watcherHandles||(e.__watcherHandles=[])}}let m=f?new Array(e.length).fill(An):An;const v=()=>{if(_.active)if(t){const e=_.run();(o||u||(f?e.some(((e,t)=>W(e,m[t]))):W(e,m)))&&(l&&l(),Jt(t,a,3,[e,m===An?void 0:f&&m[0]===An?[]:m,g]),m=e)}else _.run()};let y;v.allowRecurse=!!t,"sync"===r?y=v:"post"===r?y=()=>Zo(v,a&&a.suspense):(v.pre=!0,a&&(v.id=a.uid),y=()=>ln(v));const _=new Me(c,y);t?n?v():m=_.run():"post"===r?Zo(_.run.bind(_),a&&a.suspense):_.run();const w=()=>{_.stop(),a&&a.scope&&b(a.scope.effects,_)};return h&&h.push(w),w}function Nn(e,t,n){const o=this.proxy,r=T(e)?e.includes(".")?jn(o,e):()=>o[e]:e.bind(o,o);let i;S(t)?i=t:(i=t.handler,n=t);const s=Ar;Mr(this);const a=Mn(r,i.bind(o),n);return s?Mr(s):Nr(),a}function jn(e,t){const n=t.split(".");return()=>{let t=e;for(let e=0;e{Rn(e,t)}));else if(A(e))for(const n in e)Rn(e[n],t);return e}const Fn=[Function,Array],Bn={mode:String,appear:Boolean,persisted:Boolean,onBeforeEnter:Fn,onEnter:Fn,onAfterEnter:Fn,onEnterCancelled:Fn,onBeforeLeave:Fn,onLeave:Fn,onAfterLeave:Fn,onLeaveCancelled:Fn,onBeforeAppear:Fn,onAppear:Fn,onAfterAppear:Fn,onAppearCancelled:Fn},In={name:"BaseTransition",props:Bn,setup(e,{slots:t}){const n=Pr(),o=function(){const e={isMounted:!1,isLeaving:!1,isUnmounting:!1,leavingVNodes:new Map};return oo((()=>{e.isMounted=!0})),so((()=>{e.isUnmounting=!0})),e}();let r;return()=>{const i=t.default&&Un(t.default(),!0);if(!i||!i.length)return;let s=i[0];if(i.length>1)for(const e of i)if(e.type!==rr){s=e;break}const a=Rt(e),{mode:c}=a;if(o.isLeaving)return Hn(s);const l=zn(s);if(!l)return Hn(s);const u=Wn(l,a,o,n);Dn(l,u);const d=n.subTree,f=d&&zn(d);let p=!1;const{getTransitionKey:h}=l.type;if(h){const e=h();void 0===r?r=e:e!==r&&(r=e,p=!0)}if(f&&f.type!==rr&&(!gr(l,f)||p)){const e=Wn(f,a,o,n);if(Dn(f,e),"out-in"===c)return o.isLeaving=!0,e.afterLeave=()=>{o.isLeaving=!1,!1!==n.update.active&&n.update()},Hn(s);"in-out"===c&&l.type!==rr&&(e.delayLeave=(e,t,n)=>{Vn(o,f)[String(f.key)]=f,e._leaveCb=()=>{t(),e._leaveCb=void 0,delete u.delayedLeave},u.delayedLeave=n})}return s}}};function Vn(e,t){const{leavingVNodes:n}=e;let o=n.get(t.type);return o||(o=Object.create(null),n.set(t.type,o)),o}function Wn(e,t,n,o){const{appear:r,mode:i,persisted:s=!1,onBeforeEnter:a,onEnter:c,onAfterEnter:l,onEnterCancelled:u,onBeforeLeave:d,onLeave:f,onAfterLeave:p,onLeaveCancelled:h,onBeforeAppear:g,onAppear:m,onAfterAppear:v,onAppearCancelled:y}=t,b=String(e.key),_=Vn(n,e),w=(e,t)=>{e&&Jt(e,o,9,t)},C=(e,t)=>{const n=t[1];w(e,t),x(e)?e.every((e=>e.length<=1))&&n():e.length<=1&&n()},S={mode:i,persisted:s,beforeEnter(t){let o=a;if(!n.isMounted){if(!r)return;o=g||a}t._leaveCb&&t._leaveCb(!0);const i=_[b];i&&gr(e,i)&&i.el._leaveCb&&i.el._leaveCb(),w(o,[t])},enter(e){let t=c,o=l,i=u;if(!n.isMounted){if(!r)return;t=m||c,o=v||l,i=y||u}let s=!1;const a=e._enterCb=t=>{s||(s=!0,w(t?i:o,[e]),S.delayedLeave&&S.delayedLeave(),e._enterCb=void 0)};t?C(t,[e,a]):a()},leave(t,o){const r=String(e.key);if(t._enterCb&&t._enterCb(!0),n.isUnmounting)return o();w(d,[t]);let i=!1;const s=t._leaveCb=n=>{i||(i=!0,o(),w(n?h:p,[t]),t._leaveCb=void 0,_[r]===e&&delete _[r])};_[r]=e,f?C(f,[t,s]):s()},clone:e=>Wn(e,t,n,o)};return S}function Hn(e){if(Yn(e))return(e=wr(e)).children=null,e}function zn(e){return Yn(e)?e.children?e.children[0]:void 0:e}function Dn(e,t){6&e.shapeFlag&&e.component?Dn(e.component.subTree,t):128&e.shapeFlag?(e.ssContent.transition=t.clone(e.ssContent),e.ssFallback.transition=t.clone(e.ssFallback)):e.transition=t}function Un(e,t=!1,n){let o=[],r=0;for(let i=0;i1)for(let i=0;i!!e.type.__asyncLoader;function Kn(e,t){const{ref:n,props:o,children:r,ce:i}=t.vnode,s=_r(e,o,r);return s.ref=n,s.ce=i,delete t.vnode.ce,s}const Yn=e=>e.type.__isKeepAlive;function Jn(e,t){Zn(e,"a",t)}function Gn(e,t){Zn(e,"da",t)}function Zn(e,t,n=Ar){const o=e.__wdc||(e.__wdc=()=>{let t=n;for(;t;){if(t.isDeactivated)return;t=t.parent}return e()});if(o.__called=!1,eo(t,o,n),n){let e=n.parent;for(;e&&e.parent;)Yn(e.parent.vnode)&&Qn(o,t,n,e),e=e.parent}}function Qn(e,t,n,o){const r=eo(t,e,o,!0);ao((()=>{b(o[t],r)}),n)}function eo(e,t,n=Ar,o=!1){if(n){if(r=e,fe.indexOf(r)>-1&&n.$pageInstance){if(n.type.__reserved)return;if(n!==n.$pageInstance&&(n=n.$pageInstance,function(e){return pe.indexOf(e)>-1}(e))){const o=n.proxy;Jt(t.bind(o),n,e,"onLoad"===e?[o.$page.options]:[])}}const i=n[e]||(n[e]=[]),s=t.__weh||(t.__weh=(...o)=>{if(n.isUnmounted)return;Fe(),Mr(n);const r=Jt(t,n,e,o);return Nr(),Be(),r});return o?i.unshift(s):i.push(s),s}var r}const to=e=>(t,n=Ar)=>(!Rr||"sp"===e)&&eo(e,((...e)=>t(...e)),n),no=to("bm"),oo=to("m"),ro=to("bu"),io=to("u"),so=to("bum"),ao=to("um"),co=to("sp"),lo=to("rtg"),uo=to("rtc");function fo(e,t=Ar){eo("ec",e,t)}function po(e,t){const n=_n;if(null===n)return e;const o=Ir(n)||n.proxy,r=e.dirs||(e.dirs=[]);for(let i=0;i!hr(e)||e.type!==rr&&!(e.type===nr&&!bo(e.children))))?e:null}const _o=e=>e?jr(e)?Ir(e)||e.proxy:_o(e.parent):null,wo=y(Object.create(null),{$:e=>e,$el:e=>e.vnode.el,$data:e=>e.data,$props:e=>e.props,$attrs:e=>e.attrs,$slots:e=>e.slots,$refs:e=>e.refs,$parent:e=>_o(e.parent),$root:e=>_o(e.root),$emit:e=>e.emit,$options:e=>$o(e),$forceUpdate:e=>e.f||(e.f=()=>ln(e.update)),$nextTick:e=>e.n||(e.n=cn.bind(e.proxy)),$watch:e=>Nn.bind(e)}),xo=(e,t)=>e!==d&&!e.__isScriptSetup&&w(e,t),Co={get({_:e},t){const{ctx:n,setupState:o,data:r,props:i,accessCache:s,type:a,appContext:c}=e;let l;if("$"!==t[0]){const a=s[t];if(void 0!==a)switch(a){case 1:return o[t];case 2:return r[t];case 4:return n[t];case 3:return i[t]}else{if(xo(o,t))return s[t]=1,o[t];if(r!==d&&w(r,t))return s[t]=2,r[t];if((l=e.propsOptions[0])&&w(l,t))return s[t]=3,i[t];if(n!==d&&w(n,t))return s[t]=4,n[t];So&&(s[t]=0)}}const u=wo[t];let f,p;return u?("$attrs"===t&&Ie(e,0,t),u(e)):(f=a.__cssModules)&&(f=f[t])?f:n!==d&&w(n,t)?(s[t]=4,n[t]):(p=c.config.globalProperties,w(p,t)?p[t]:void 0)},set({_:e},t,n){const{data:o,setupState:r,ctx:i}=e;return xo(r,t)?(r[t]=n,!0):o!==d&&w(o,t)?(o[t]=n,!0):!w(e.props,t)&&(("$"!==t[0]||!(t.slice(1)in e))&&(i[t]=n,!0))},has({_:{data:e,setupState:t,accessCache:n,ctx:o,appContext:r,propsOptions:i}},s){let a;return!!n[s]||e!==d&&w(e,s)||xo(t,s)||(a=i[0])&&w(a,s)||w(o,s)||w(wo,s)||w(r.config.globalProperties,s)},defineProperty(e,t,n){return null!=n.get?e._.accessCache[t]=0:w(n,"value")&&this.set(e,t,n.value,null),Reflect.defineProperty(e,t,n)}};let So=!0;function To(e){const t=$o(e),n=e.proxy,o=e.ctx;So=!1,t.beforeCreate&&ko(t.beforeCreate,e,"bc");const{data:r,computed:i,methods:s,watch:a,provide:c,inject:l,created:u,beforeMount:d,mounted:f,beforeUpdate:h,updated:g,activated:m,deactivated:v,beforeDestroy:y,beforeUnmount:b,destroyed:_,unmounted:w,render:C,renderTracked:T,renderTriggered:k,errorCaptured:$,serverPrefetch:O,expose:L,inheritAttrs:A,components:P,directives:M,filters:N}=t;if(l&&function(e,t,n=p,o=!1){x(e)&&(e=Po(e));for(const r in e){const n=e[r];let i;i=E(n)?"default"in n?On(n.from||r,n.default,!0):On(n.from||r):On(n),Ht(i)&&o?Object.defineProperty(t,r,{enumerable:!0,configurable:!0,get:()=>i.value,set:e=>i.value=e}):t[r]=i}}(l,o,null,e.appContext.config.unwrapInjectedRef),s)for(const p in s){const e=s[p];S(e)&&(o[p]=e.bind(n))}if(r){const t=r.call(n,n);E(t)&&(e.data=Ot(t))}if(So=!0,i)for(const x in i){const e=i[x],t=S(e)?e.bind(n,n):S(e.get)?e.get.bind(n,n):p,r=!S(e)&&S(e.set)?e.set.bind(n):p,s=Vr({get:t,set:r});Object.defineProperty(o,x,{enumerable:!0,configurable:!0,get:()=>s.value,set:e=>s.value=e})}if(a)for(const p in a)Eo(a[p],o,n,p);if(c){const e=S(c)?c.call(n):c;Reflect.ownKeys(e).forEach((t=>{$n(t,e[t])}))}function j(e,t){x(t)?t.forEach((t=>e(t.bind(n)))):t&&e(t.bind(n))}if(u&&ko(u,e,"c"),j(no,d),j(oo,f),j(ro,h),j(io,g),j(Jn,m),j(Gn,v),j(fo,$),j(uo,T),j(lo,k),j(so,b),j(ao,w),j(co,O),x(L))if(L.length){const t=e.exposed||(e.exposed={});L.forEach((e=>{Object.defineProperty(t,e,{get:()=>n[e],set:t=>n[e]=t})}))}else e.exposed||(e.exposed={});C&&e.render===p&&(e.render=C),null!=A&&(e.inheritAttrs=A),P&&(e.components=P),M&&(e.directives=M);const R=e.appContext.config.globalProperties.$applyOptions;R&&R(t,e,n)}function ko(e,t,n){Jt(x(e)?e.map((e=>e.bind(t.proxy))):e.bind(t.proxy),t,n)}function Eo(e,t,n,o){const r=o.includes(".")?jn(n,o):()=>n[o];if(T(e)){const n=t[e];S(n)&&Pn(r,n)}else if(S(e))Pn(r,e.bind(n));else if(E(e))if(x(e))e.forEach((e=>Eo(e,t,n,o)));else{const o=S(e.handler)?e.handler.bind(n):t[e.handler];S(o)&&Pn(r,o,e)}}function $o(e){const t=e.type,{mixins:n,extends:o}=t,{mixins:r,optionsCache:i,config:{optionMergeStrategies:s}}=e.appContext,a=i.get(t);let c;return a?c=a:r.length||n||o?(c={},r.length&&r.forEach((e=>Oo(c,e,s,!0))),Oo(c,t,s)):c=t,E(t)&&i.set(t,c),c}function Oo(e,t,n,o=!1){const{mixins:r,extends:i}=t;i&&Oo(e,i,n,!0),r&&r.forEach((t=>Oo(e,t,n,!0)));for(const s in t)if(o&&"expose"===s);else{const o=Lo[s]||n&&n[s];e[s]=o?o(e[s],t[s]):t[s]}return e}const Lo={data:Ao,props:No,emits:No,methods:No,computed:No,beforeCreate:Mo,created:Mo,beforeMount:Mo,mounted:Mo,beforeUpdate:Mo,updated:Mo,beforeDestroy:Mo,beforeUnmount:Mo,destroyed:Mo,unmounted:Mo,activated:Mo,deactivated:Mo,errorCaptured:Mo,serverPrefetch:Mo,components:No,directives:No,watch:function(e,t){if(!e)return t;if(!t)return e;const n=y(Object.create(null),e);for(const o in t)n[o]=Mo(e[o],t[o]);return n},provide:Ao,inject:function(e,t){return No(Po(e),Po(t))}};function Ao(e,t){return t?e?function(){return y(S(e)?e.call(this,this):e,S(t)?t.call(this,this):t)}:t:e}function Po(e){if(x(e)){const t={};for(let n=0;n{c=!0;const[n,o]=Bo(e,t,!0);y(s,n),o&&a.push(...o)};!n&&t.mixins.length&&t.mixins.forEach(o),e.extends&&o(e.extends),e.mixins&&e.mixins.forEach(o)}if(!i&&!c)return E(e)&&o.set(e,f),f;if(x(i))for(let u=0;u-1,n[1]=o<0||t-1||w(n,"default"))&&a.push(e)}}}const l=[s,a];return E(e)&&o.set(e,l),l}function Io(e){return"$"!==e[0]}function Vo(e){const t=e&&e.toString().match(/^\s*(function|class) (\w+)/);return t?t[2]:null===e?"null":""}function Wo(e,t){return Vo(e)===Vo(t)}function Ho(e,t){return x(t)?t.findIndex((t=>Wo(t,e))):S(t)&&Wo(t,e)?0:-1}const zo=e=>"_"===e[0]||"$stable"===e,Do=e=>x(e)?e.map(Sr):[Sr(e)],Uo=(e,t,n)=>{if(t._n)return t;const o=Cn(((...e)=>Do(t(...e))),n);return o._c=!1,o},qo=(e,t,n)=>{const o=e._ctx;for(const r in e){if(zo(r))continue;const n=e[r];if(S(n))t[r]=Uo(0,n,o);else if(null!=n){const e=Do(n);t[r]=()=>e}}},Xo=(e,t)=>{const n=Do(t);e.slots.default=()=>n};function Ko(){return{app:null,config:{isNativeTag:h,performance:!1,globalProperties:{},optionMergeStrategies:{},errorHandler:void 0,warnHandler:void 0,compilerOptions:{}},mixins:[],components:{},directives:{},provides:Object.create(null),optionsCache:new WeakMap,propsCache:new WeakMap,emitsCache:new WeakMap}}let Yo=0;function Jo(e,t){return function(n,o=null){S(n)||(n=Object.assign({},n)),null==o||E(o)||(o=null);const r=Ko(),i=new Set;let s=!1;const a=r.app={_uid:Yo++,_component:n,_props:o,_container:null,_context:r,_instance:null,version:zr,get config(){return r.config},set config(e){},use:(e,...t)=>(i.has(e)||(e&&S(e.install)?(i.add(e),e.install(a,...t)):S(e)&&(i.add(e),e(a,...t))),a),mixin:e=>(r.mixins.includes(e)||r.mixins.push(e),a),component:(e,t)=>t?(r.components[e]=t,a):r.components[e],directive:(e,t)=>t?(r.directives[e]=t,a):r.directives[e],mount(i,c,l){if(!s){const u=_r(n,o);return u.appContext=r,c&&t?t(u,i):e(u,i,l),s=!0,a._container=i,i.__vue_app__=a,a._instance=u.component,Ir(u.component)||u.component.proxy}},unmount(){s&&(e(null,a._container),delete a._container.__vue_app__)},provide:(e,t)=>(r.provides[e]=t,a)};return a}}function Go(e,t,n,o,r=!1){if(x(e))return void e.forEach(((e,i)=>Go(e,t&&(x(t)?t[i]:t),n,o,r)));if(Xn(o)&&!r)return;const i=4&o.shapeFlag?Ir(o.component)||o.component.proxy:o.el,s=r?null:i,{i:a,r:c}=e,l=t&&t.r,u=a.refs===d?a.refs={}:a.refs,f=a.setupState;if(null!=l&&l!==c&&(T(l)?(u[l]=null,w(f,l)&&(f[l]=null)):Ht(l)&&(l.value=null)),S(c))Yt(c,a,12,[s,u]);else{const t=T(c),o=Ht(c);if(t||o){const a=()=>{if(e.f){const n=t?w(f,c)?f[c]:u[c]:c.value;r?x(n)&&b(n,i):x(n)?n.includes(i)||n.push(i):t?(u[c]=[i],w(f,c)&&(f[c]=u[c])):(c.value=[i],e.k&&(u[e.k]=c.value))}else t?(u[c]=s,w(f,c)&&(f[c]=s)):o&&(c.value=s,e.k&&(u[e.k]=s))};s?(a.id=-1,Zo(a,n)):a()}}}const Zo=function(e,t){var n;t&&t.pendingBranch?x(e)?t.effects.push(...e):t.effects.push(e):(x(n=e)?nn.push(...n):on&&on.includes(n,n.allowRecurse?rn+1:rn)||nn.push(n),un())};function Qo(e){return function(e,t){(U||(U="undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:"undefined"!=typeof window?window:"undefined"!=typeof global?global:{})).__VUE__=!0;const{insert:n,remove:o,patchProp:r,forcePatchProp:i,createElement:s,createText:a,createComment:c,setText:l,setElementText:u,parentNode:h,nextSibling:g,setScopeId:m=p,insertStaticContent:v}=e,b=(e,t,n,o=null,r=null,i=null,s=!1,a=null,c=!!t.dynamicChildren)=>{if(e===t)return;e&&!gr(e,t)&&(o=te(e),J(e,r,i,!0),e=null),-2===t.patchFlag&&(c=!1,t.dynamicChildren=null);const{type:l,ref:u,shapeFlag:d}=t;switch(l){case or:_(e,t,n,o);break;case rr:x(e,t,n,o);break;case ir:null==e&&C(t,n,o,s);break;case nr:j(e,t,n,o,r,i,s,a,c);break;default:1&d?k(e,t,n,o,r,i,s,a,c):6&d?F(e,t,n,o,r,i,s,a,c):(64&d||128&d)&&l.process(e,t,n,o,r,i,s,a,c,oe)}null!=u&&r&&Go(u,e&&e.ref,i,t||e,!t)},_=(e,t,o,r)=>{if(null==e)n(t.el=a(t.children),o,r);else{const n=t.el=e.el;t.children!==e.children&&l(n,t.children)}},x=(e,t,o,r)=>{null==e?n(t.el=c(t.children||""),o,r):t.el=e.el},C=(e,t,n,o)=>{[e.el,e.anchor]=v(e.children,t,n,o,e.el,e.anchor)},S=({el:e,anchor:t},o,r)=>{let i;for(;e&&e!==t;)i=g(e),n(e,o,r),e=i;n(t,o,r)},T=({el:e,anchor:t})=>{let n;for(;e&&e!==t;)n=g(e),o(e),e=n;o(t)},k=(e,t,n,o,r,i,s,a,c)=>{s=s||"svg"===t.type,null==e?E(t,n,o,r,i,s,a,c):A(e,t,r,i,s,a,c)},E=(e,t,o,i,a,c,l,d)=>{let f,p;const{type:h,props:g,shapeFlag:m,transition:v,dirs:y}=e;if(f=e.el=s(e.type,c,g&&g.is,g),8&m?u(f,e.children):16&m&&L(e.children,f,null,i,a,c&&"foreignObject"!==h,l,d),y&&ho(e,null,i,"created"),O(f,e,e.scopeId,l,i),g){for(const t in g)"value"===t||M(t)||r(f,t,null,g[t],c,e.children,i,a,ee);"value"in g&&r(f,"value",null,g.value),(p=g.onVnodeBeforeMount)&&$r(p,i,e)}Object.defineProperty(f,"__vueParentComponent",{value:i,enumerable:!1}),y&&ho(e,null,i,"beforeMount");const b=(!a||a&&!a.pendingBranch)&&v&&!v.persisted;b&&v.beforeEnter(f),n(f,t,o),((p=g&&g.onVnodeMounted)||b||y)&&Zo((()=>{p&&$r(p,i,e),b&&v.enter(f),y&&ho(e,null,i,"mounted")}),a)},O=(e,t,n,o,r)=>{if(n&&m(e,n),o)for(let i=0;i{for(let l=c;l{const l=t.el=e.el;let{patchFlag:f,dynamicChildren:p,dirs:h}=t;f|=16&e.patchFlag;const g=e.props||d,m=t.props||d;let v;n&&er(n,!1),(v=m.onVnodeBeforeUpdate)&&$r(v,n,t,e),h&&ho(t,e,n,"beforeUpdate"),n&&er(n,!0);const y=s&&"foreignObject"!==t.type;if(p?P(e.dynamicChildren,p,l,n,o,y,a):c||q(e,t,l,null,n,o,y,a,!1),f>0){if(16&f)N(l,t,g,m,n,o,s);else if(2&f&&g.class!==m.class&&r(l,"class",null,m.class,s),4&f&&r(l,"style",g.style,m.style,s),8&f){const a=t.dynamicProps;for(let t=0;t{v&&$r(v,n,t,e),h&&ho(t,e,n,"updated")}),o)},P=(e,t,n,o,r,i,s)=>{for(let a=0;a{if(n!==o){if(n!==d)for(const i in n)M(i)||i in o||r(e,i,n[i],null,c,t.children,s,a,ee);for(const l in o){if(M(l))continue;const u=o[l],d=n[l];(u!==d&&"value"!==l||i&&i(e,l))&&r(e,l,d,u,c,t.children,s,a,ee)}"value"in o&&r(e,"value",n.value,o.value)}},j=(e,t,o,r,i,s,c,l,u)=>{const d=t.el=e?e.el:a(""),f=t.anchor=e?e.anchor:a("");let{patchFlag:p,dynamicChildren:h,slotScopeIds:g}=t;g&&(l=l?l.concat(g):g),null==e?(n(d,o,r),n(f,o,r),L(t.children,o,f,i,s,c,l,u)):p>0&&64&p&&h&&e.dynamicChildren?(P(e.dynamicChildren,h,o,i,s,c,l),(null!=t.key||i&&t===i.subTree)&&tr(e,t,!0)):q(e,t,o,f,i,s,c,l,u)},F=(e,t,n,o,r,i,s,a,c)=>{t.slotScopeIds=a,null==e?512&t.shapeFlag?r.ctx.activate(t,n,o,s,c):I(t,n,o,r,i,s,c):V(e,t,c)},I=(e,t,n,o,r,i,s)=>{const a=e.component=function(e,t,n){const o=e.type,r=(t?t.appContext:e.appContext)||Or,i={uid:Lr++,vnode:e,type:o,parent:t,appContext:r,root:null,next:null,subTree:null,effect:null,update:null,scope:new xe(!0),render:null,proxy:null,exposed:null,exposeProxy:null,withProxy:null,provides:t?t.provides:Object.create(r.provides),accessCache:null,renderCache:[],components:null,directives:null,propsOptions:Bo(o,r),emitsOptions:yn(o,r),emit:null,emitted:null,propsDefaults:d,inheritAttrs:o.inheritAttrs,ctx:d,data:d,props:d,attrs:d,slots:d,refs:d,setupState:d,setupContext:null,suspense:n,suspenseId:n?n.pendingId:0,asyncDep:null,asyncResolved:!1,isMounted:!1,isUnmounted:!1,isDeactivated:!1,bc:null,c:null,bm:null,m:null,bu:null,u:null,um:null,bum:null,bda:null,da:null,ba:null,a:null,rtg:null,rtc:null,ec:null,sp:null};i.ctx={_:i},i.root=t?t.root:i,i.emit=mn.bind(null,i),i.$pageInstance=t&&t.$pageInstance,e.ce&&e.ce(i);return i}(e,o,r);if(Yn(e)&&(a.ctx.renderer=oe),function(e,t=!1){Rr=t;const{props:n,children:o}=e.vnode,r=jr(e);jo(e,n,r,t),((e,t)=>{if(32&e.vnode.shapeFlag){const n=t._;n?(e.slots=Rt(t),z(t,"_",n)):qo(t,e.slots={})}else e.slots={},t&&Xo(e,t);z(e.slots,mr,1)})(e,o);const i=r?function(e,t){const n=e.type;e.accessCache=Object.create(null),e.proxy=Ft(new Proxy(e.ctx,Co));const{setup:o}=n;if(o){const n=e.setupContext=o.length>1?function(e){const t=t=>{e.exposed=t||{}};let n;return{get attrs(){return n||(n=function(e){return new Proxy(e.attrs,{get:(t,n)=>(Ie(e,0,"$attrs"),t[n])})}(e))},slots:e.slots,emit:e.emit,expose:t}}(e):null;Mr(e),Fe();const r=Yt(o,e,0,[e.props,n]);if(Be(),Nr(),$(r)){if(r.then(Nr,Nr),t)return r.then((n=>{Fr(e,n,t)})).catch((t=>{Gt(t,e,0)}));e.asyncDep=r}else Fr(e,r,t)}else Br(e,t)}(e,t):void 0;Rr=!1}(a),a.asyncDep){if(r&&r.registerDep(a,W),!e.el){const e=a.subTree=_r(rr);x(null,e,t,n)}}else W(a,e,t,n,r,i,s)},V=(e,t,n)=>{const o=t.component=e.component;if(function(e,t,n){const{props:o,children:r,component:i}=e,{props:s,children:a,patchFlag:c}=t,l=i.emitsOptions;if(t.dirs||t.transition)return!0;if(!(n&&c>=0))return!(!r&&!a||a&&a.$stable)||o!==s&&(o?!s||En(o,s,l):!!s);if(1024&c)return!0;if(16&c)return o?En(o,s,l):!!s;if(8&c){const e=t.dynamicProps;for(let t=0;ttn&&en.splice(t,1)}(o.update),o.update()}else t.el=e.el,o.vnode=t},W=(e,t,n,o,r,i,s)=>{const a=()=>{if(e.isMounted){let t,{next:n,bu:o,u:a,parent:c,vnode:l}=e,u=n;er(e,!1),n?(n.el=l.el,D(e,n,s)):n=l,o&&H(o),(t=n.props&&n.props.onVnodeBeforeUpdate)&&$r(t,c,n,l),er(e,!0);const d=Sn(e),f=e.subTree;e.subTree=d,b(f,d,h(f.el),te(f),e,r,i),n.el=d.el,null===u&&function({vnode:e,parent:t},n){for(;t&&t.subTree===e;)(e=t.vnode).el=n,t=t.parent}(e,d.el),a&&Zo(a,r),(t=n.props&&n.props.onVnodeUpdated)&&Zo((()=>$r(t,c,n,l)),r)}else{let s;const{el:a,props:c}=t,{bm:l,m:u,parent:d}=e,f=Xn(t);if(er(e,!1),l&&H(l),!f&&(s=c&&c.onVnodeBeforeMount)&&$r(s,d,t),er(e,!0),a&&ie){const n=()=>{e.subTree=Sn(e),ie(a,e.subTree,e,r,null)};f?t.type.__asyncLoader().then((()=>!e.isUnmounted&&n())):n()}else{const s=e.subTree=Sn(e);b(null,s,n,o,e,r,i),t.el=s.el}if(u&&Zo(u,r),!f&&(s=c&&c.onVnodeMounted)){const e=t;Zo((()=>$r(s,d,e)),r)}const{ba:p,a:h}=e;(256&t.shapeFlag||d&&Xn(d.vnode)&&256&d.vnode.shapeFlag)&&(p&&function(e){for(let t=0;t{p.forEach((e=>e.__called=!1))}),r)),e.isMounted=!0,t=n=o=null}},c=e.effect=new Me(a,(()=>ln(l)),e.scope),l=e.update=()=>c.run();l.id=e.uid,er(e,!0),l()},D=(e,t,n)=>{t.component=e;const o=e.vnode.props;e.vnode=t,e.next=null,function(e,t,n,o){const{props:r,attrs:i,vnode:{patchFlag:s}}=e,a=Rt(r),[c]=e.propsOptions;let l=!1;if(!(o||s>0)||16&s){let o;Ro(e,t,r,i)&&(l=!0);for(const i in a)t&&(w(t,i)||(o=B(i))!==i&&w(t,o))||(c?!n||void 0===n[i]&&void 0===n[o]||(r[i]=Fo(c,a,i,void 0,e,!0)):delete r[i]);if(i!==a)for(const e in i)t&&w(t,e)||(delete i[e],l=!0)}else if(8&s){const n=e.vnode.dynamicProps;for(let o=0;o{const{vnode:o,slots:r}=e;let i=!0,s=d;if(32&o.shapeFlag){const e=t._;e?n&&1===e?i=!1:(y(r,t),n||1!==e||delete r._):(i=!t.$stable,qo(t,r)),s=t}else t&&(Xo(e,t),s={default:1});if(i)for(const a in r)zo(a)||a in s||delete r[a]})(e,t.children,n),Fe(),dn(),Be()},q=(e,t,n,o,r,i,s,a,c=!1)=>{const l=e&&e.children,d=e?e.shapeFlag:0,f=t.children,{patchFlag:p,shapeFlag:h}=t;if(p>0){if(128&p)return void K(l,f,n,o,r,i,s,a,c);if(256&p)return void X(l,f,n,o,r,i,s,a,c)}8&h?(16&d&&ee(l,r,i),f!==l&&u(n,f)):16&d?16&h?K(l,f,n,o,r,i,s,a,c):ee(l,r,i,!0):(8&d&&u(n,""),16&h&&L(f,n,o,r,i,s,a,c))},X=(e,t,n,o,r,i,s,a,c)=>{t=t||f;const l=(e=e||f).length,u=t.length,d=Math.min(l,u);let p;for(p=0;pu?ee(e,r,i,!0,!1,d):L(t,n,o,r,i,s,a,c,d)},K=(e,t,n,o,r,i,s,a,c)=>{let l=0;const u=t.length;let d=e.length-1,p=u-1;for(;l<=d&&l<=p;){const o=e[l],u=t[l]=c?Tr(t[l]):Sr(t[l]);if(!gr(o,u))break;b(o,u,n,null,r,i,s,a,c),l++}for(;l<=d&&l<=p;){const o=e[d],l=t[p]=c?Tr(t[p]):Sr(t[p]);if(!gr(o,l))break;b(o,l,n,null,r,i,s,a,c),d--,p--}if(l>d){if(l<=p){const e=p+1,d=ep)for(;l<=d;)J(e[l],r,i,!0),l++;else{const h=l,g=l,m=new Map;for(l=g;l<=p;l++){const e=t[l]=c?Tr(t[l]):Sr(t[l]);null!=e.key&&m.set(e.key,l)}let v,y=0;const _=p-g+1;let w=!1,x=0;const C=new Array(_);for(l=0;l<_;l++)C[l]=0;for(l=h;l<=d;l++){const o=e[l];if(y>=_){J(o,r,i,!0);continue}let u;if(null!=o.key)u=m.get(o.key);else for(v=g;v<=p;v++)if(0===C[v-g]&&gr(o,t[v])){u=v;break}void 0===u?J(o,r,i,!0):(C[u-g]=l+1,u>=x?x=u:w=!0,b(o,t[u],n,null,r,i,s,a,c),y++)}const S=w?function(e){const t=e.slice(),n=[0];let o,r,i,s,a;const c=e.length;for(o=0;o>1,e[n[a]]0&&(t[o]=n[i-1]),n[i]=o)}}i=n.length,s=n[i-1];for(;i-- >0;)n[i]=s,s=t[s];return n}(C):f;for(v=S.length-1,l=_-1;l>=0;l--){const e=g+l,d=t[e],f=e+1{const{el:s,type:a,transition:c,children:l,shapeFlag:u}=e;if(6&u)return void Y(e.component.subTree,t,o,r);if(128&u)return void e.suspense.move(t,o,r);if(64&u)return void a.move(e,t,o,oe);if(a===nr){n(s,t,o);for(let e=0;ec.enter(s)),i);else{const{leave:e,delayLeave:r,afterLeave:i}=c,a=()=>n(s,t,o),l=()=>{e(s,(()=>{a(),i&&i()}))};r?r(s,a,l):l()}else n(s,t,o)},J=(e,t,n,o=!1,r=!1)=>{const{type:i,props:s,ref:a,children:c,dynamicChildren:l,shapeFlag:u,patchFlag:d,dirs:f}=e;if(null!=a&&Go(a,null,n,e,!0),256&u)return void t.ctx.deactivate(e);const p=1&u&&f,h=!Xn(e);let g;if(h&&(g=s&&s.onVnodeBeforeUnmount)&&$r(g,t,e),6&u)Q(e.component,n,o);else{if(128&u)return void e.suspense.unmount(n,o);p&&ho(e,null,t,"beforeUnmount"),64&u?e.type.remove(e,t,n,r,oe,o):l&&(i!==nr||d>0&&64&d)?ee(l,t,n,!1,!0):(i===nr&&384&d||!r&&16&u)&&ee(c,t,n),o&&G(e)}(h&&(g=s&&s.onVnodeUnmounted)||p)&&Zo((()=>{g&&$r(g,t,e),p&&ho(e,null,t,"unmounted")}),n)},G=e=>{const{type:t,el:n,anchor:r,transition:i}=e;if(t===nr)return void Z(n,r);if(t===ir)return void T(e);const s=()=>{o(n),i&&!i.persisted&&i.afterLeave&&i.afterLeave()};if(1&e.shapeFlag&&i&&!i.persisted){const{leave:t,delayLeave:o}=i,r=()=>t(n,s);o?o(e.el,s,r):r()}else s()},Z=(e,t)=>{let n;for(;e!==t;)n=g(e),o(e),e=n;o(t)},Q=(e,t,n)=>{const{bum:o,scope:r,update:i,subTree:s,um:a}=e;o&&H(o),r.stop(),i&&(i.active=!1,J(s,e,t,n)),a&&Zo(a,t),Zo((()=>{e.isUnmounted=!0}),t),t&&t.pendingBranch&&!t.isUnmounted&&e.asyncDep&&!e.asyncResolved&&e.suspenseId===t.pendingId&&(t.deps--,0===t.deps&&t.resolve())},ee=(e,t,n,o=!1,r=!1,i=0)=>{for(let s=i;s6&e.shapeFlag?te(e.component.subTree):128&e.shapeFlag?e.suspense.next():g(e.anchor||e.el),ne=(e,t,n)=>{null==e?t._vnode&&J(t._vnode,null,null,!0):b(t._vnode||null,e,t,null,null,null,n),dn(),fn(),t._vnode=e},oe={p:b,um:J,m:Y,r:G,mt:I,mc:L,pc:q,pbc:P,n:te,o:e};let re,ie;t&&([re,ie]=t(oe));return{render:ne,hydrate:re,createApp:Jo(ne,re)}}(e)}function er({effect:e,update:t},n){e.allowRecurse=t.allowRecurse=n}function tr(e,t,n=!1){const o=e.children,r=t.children;if(x(o)&&x(r))for(let i=0;i0?ar||f:null,sr.pop(),ar=sr[sr.length-1]||null,lr>0&&ar&&ar.push(e),e}function fr(e,t,n,o,r,i){return dr(br(e,t,n,o,r,i,!0))}function pr(e,t,n,o,r){return dr(_r(e,t,n,o,r,!0))}function hr(e){return!!e&&!0===e.__v_isVNode}function gr(e,t){return e.type===t.type&&e.key===t.key}const mr="__vInternal",vr=({key:e})=>null!=e?e:null,yr=({ref:e,ref_key:t,ref_for:n})=>null!=e?T(e)||Ht(e)||S(e)?{i:_n,r:e,k:t,f:!!n}:e:null;function br(e,t=null,n=null,o=0,r=null,i=(e===nr?0:1),s=!1,a=!1){const c={__v_isVNode:!0,__v_skip:!0,type:e,props:t,key:t&&vr(t),ref:t&&yr(t),scopeId:wn,slotScopeIds:null,children:n,component:null,suspense:null,ssContent:null,ssFallback:null,dirs:null,transition:null,el:null,anchor:null,target:null,targetAnchor:null,staticCount:0,shapeFlag:i,patchFlag:o,dynamicProps:r,dynamicChildren:null,appContext:null,ctx:_n};return a?(kr(c,n),128&i&&e.normalize(c)):n&&(c.shapeFlag|=T(n)?8:16),lr>0&&!s&&ar&&(c.patchFlag>0||6&i)&&32!==c.patchFlag&&ar.push(c),c}const _r=function(e,t=null,n=null,r=0,i=null,s=!1){e&&e!==mo||(e=rr);if(hr(e)){const o=wr(e,t,!0);return n&&kr(o,n),lr>0&&!s&&ar&&(6&o.shapeFlag?ar[ar.indexOf(e)]=o:ar.push(o)),o.patchFlag|=-2,o}a=e,S(a)&&"__vccOpts"in a&&(e=e.__vccOpts);var a;if(t){t=function(e){return e?jt(e)||mr in e?y({},e):e:null}(t);let{class:e,style:n}=t;e&&!T(e)&&(t.class=c(e)),E(n)&&(jt(n)&&!x(n)&&(n=y({},n)),t.style=o(n))}const l=T(e)?1:(e=>e.__isSuspense)(e)?128:(e=>e.__isTeleport)(e)?64:E(e)?4:S(e)?2:0;return br(e,t,n,r,i,l,s,!0)};function wr(e,t,n=!1){const{props:o,ref:r,patchFlag:i,children:s}=e,a=t?Er(o||{},t):o;return{__v_isVNode:!0,__v_skip:!0,type:e.type,props:a,key:a&&vr(a),ref:t&&t.ref?n&&r?x(r)?r.concat(yr(t)):[r,yr(t)]:yr(t):r,scopeId:e.scopeId,slotScopeIds:e.slotScopeIds,children:s,target:e.target,targetAnchor:e.targetAnchor,staticCount:e.staticCount,shapeFlag:e.shapeFlag,patchFlag:t&&e.type!==nr?-1===i?16:16|i:i,dynamicProps:e.dynamicProps,dynamicChildren:e.dynamicChildren,appContext:e.appContext,dirs:e.dirs,transition:e.transition,component:e.component,suspense:e.suspense,ssContent:e.ssContent&&wr(e.ssContent),ssFallback:e.ssFallback&&wr(e.ssFallback),el:e.el,anchor:e.anchor,ctx:e.ctx,ce:e.ce}}function xr(e=" ",t=0){return _r(or,null,e,t)}function Cr(e="",t=!1){return t?(cr(),pr(rr,null,e)):_r(rr,null,e)}function Sr(e){return null==e||"boolean"==typeof e?_r(rr):x(e)?_r(nr,null,e.slice()):"object"==typeof e?Tr(e):_r(or,null,String(e))}function Tr(e){return null===e.el&&-1!==e.patchFlag||e.memo?e:wr(e)}function kr(e,t){let n=0;const{shapeFlag:o}=e;if(null==t)t=null;else if(x(t))n=16;else if("object"==typeof t){if(65&o){const n=t.default;return void(n&&(n._c&&(n._d=!1),kr(e,n()),n._c&&(n._d=!0)))}{n=32;const o=t._;o||mr in t?3===o&&_n&&(1===_n.slots._?t._=1:(t._=2,e.patchFlag|=1024)):t._ctx=_n}}else S(t)?(t={default:t,_ctx:_n},n=32):(t=String(t),64&o?(n=16,t=[xr(t)]):n=8);e.children=t,e.shapeFlag|=n}function Er(...e){const t={};for(let n=0;nAr||_n,Mr=e=>{Ar=e,e.scope.on()},Nr=()=>{Ar&&Ar.scope.off(),Ar=null};function jr(e){return 4&e.vnode.shapeFlag}let Rr=!1;function Fr(e,t,n){S(t)?e.type.__ssrInlineRender?e.ssrRender=t:e.render=t:E(t)&&(e.setupState=qt(t)),Br(e,n)}function Br(e,t,n){const o=e.type;e.render||(e.render=o.render||p),Mr(e),Fe(),To(e),Be(),Nr()}function Ir(e){if(e.exposed)return e.exposeProxy||(e.exposeProxy=new Proxy(qt(Ft(e.exposed)),{get:(t,n)=>n in t?t[n]:n in wo?wo[n](e):void 0,has:(e,t)=>t in e||t in wo}))}const Vr=(e,t)=>function(e,t,n=!1){let o,r;const i=S(e);return i?(o=e,r=p):(o=e.get,r=e.set),new Kt(o,r,i||!r,n)}(e,0,Rr);const Wr=Symbol(""),Hr=()=>On(Wr),zr="3.2.47",Dr="undefined"!=typeof document?document:null,Ur=Dr&&Dr.createElement("template"),qr={insert:(e,t,n)=>{t.insertBefore(e,n||null)},remove:e=>{const t=e.parentNode;t&&t.removeChild(e)},createElement:(e,t,n,o)=>{const r=t?Dr.createElementNS("http://www.w3.org/2000/svg",e):Dr.createElement(e,n?{is:n}:void 0);return"select"===e&&o&&null!=o.multiple&&r.setAttribute("multiple",o.multiple),r},createText:e=>Dr.createTextNode(e),createComment:e=>Dr.createComment(e),setText:(e,t)=>{e.nodeValue=t},setElementText:(e,t)=>{e.textContent=t},parentNode:e=>e.parentNode,nextSibling:e=>e.nextSibling,querySelector:e=>Dr.querySelector(e),setScopeId(e,t){e.setAttribute(t,"")},insertStaticContent(e,t,n,o,r,i){const s=n?n.previousSibling:t.lastChild;if(r&&(r===i||r.nextSibling))for(;t.insertBefore(r.cloneNode(!0),n),r!==i&&(r=r.nextSibling););else{Ur.innerHTML=o?`${e}`:e;const r=Ur.content;if(o){const e=r.firstChild;for(;e.firstChild;)r.appendChild(e.firstChild);r.removeChild(e)}t.insertBefore(r,n)}return[s?s.nextSibling:t.firstChild,n?n.previousSibling:t.lastChild]}};const Xr=/\s*!important$/;function Kr(e,t,n){if(x(n))n.forEach((n=>Kr(e,t,n)));else if(null==n&&(n=""),n=ri(n),t.startsWith("--"))e.setProperty(t,n);else{const o=function(e,t){const n=Jr[t];if(n)return n;let o=R(t);if("filter"!==o&&o in e)return Jr[t]=o;o=I(o);for(let r=0;re.replace(re,((e,t)=>{if(!t)return e;if(1===ni)return`${t}${ti}`;const n=function(e,t){const n=Math.pow(10,t+1),o=Math.floor(e*n);return 10*Math.round(o/10)/n}(parseFloat(t)*ni,oi);return 0===n?"0":`${n}${ti}`})));var ti,ni,oi;const ri=e=>T(e)?ei(e):e,ii="http://www.w3.org/1999/xlink";function si(e,t,n,o,r=null){const i=e._vei||(e._vei={}),s=i[t];if(o&&s)s.value=o;else{const[n,a]=function(e){let t;if(ai.test(e)){let n;for(t={};n=e.match(ai);)e=e.slice(0,e.length-n[0].length),t[n[0].toLowerCase()]=!0}return[":"===e[2]?e.slice(3):B(e.slice(2)),t]}(t);if(o){const s=i[t]=function(e,t){const n=e=>{if(e._vts){if(e._vts<=n.attached)return}else e._vts=Date.now();const o=t&&t.proxy,r=o&&o.$nne,{value:i}=n;if(r&&x(i)){const n=ui(e,i);for(let o=0;oci||(li.then((()=>ci=0)),ci=Date.now()))(),n}(o,r);!function(e,t,n,o){e.addEventListener(t,n,o)}(e,n,s,a)}else s&&(!function(e,t,n,o){e.removeEventListener(t,n,o)}(e,n,s,a),i[t]=void 0)}}const ai=/(?:Once|Passive|Capture)$/;let ci=0;const li=Promise.resolve();function ui(e,t){if(x(t)){const n=e.stopImmediatePropagation;return e.stopImmediatePropagation=()=>{n.call(e),e._stopped=!0},t.map((e=>{const t=t=>!t._stopped&&e&&e(t);return t.__wwe=e.__wwe,t}))}return t}const di=/^on[a-z]/;const fi="transition",pi=(e,{slots:t})=>function(e,t,n){const o=arguments.length;return 2===o?E(t)&&!x(t)?hr(t)?_r(e,null,[t]):_r(e,t):_r(e,null,t):(o>3?n=Array.prototype.slice.call(arguments,2):3===o&&hr(n)&&(n=[n]),_r(e,t,n))}(In,function(e){const t={};for(const y in e)y in hi||(t[y]=e[y]);if(!1===e.css)return t;const{name:n="v",type:o,duration:r,enterFromClass:i=`${n}-enter-from`,enterActiveClass:s=`${n}-enter-active`,enterToClass:a=`${n}-enter-to`,appearFromClass:c=i,appearActiveClass:l=s,appearToClass:u=a,leaveFromClass:d=`${n}-leave-from`,leaveActiveClass:f=`${n}-leave-active`,leaveToClass:p=`${n}-leave-to`}=e,h=function(e){if(null==e)return null;if(E(e))return[vi(e.enter),vi(e.leave)];{const t=vi(e);return[t,t]}}(r),g=h&&h[0],m=h&&h[1],{onBeforeEnter:v,onEnter:b,onEnterCancelled:_,onLeave:w,onLeaveCancelled:x,onBeforeAppear:C=v,onAppear:S=b,onAppearCancelled:T=_}=t,k=(e,t,n)=>{bi(e,t?u:a),bi(e,t?l:s),n&&n()},$=(e,t)=>{e._isLeaving=!1,bi(e,d),bi(e,p),bi(e,f),t&&t()},O=e=>(t,n)=>{const r=e?S:b,s=()=>k(t,e,n);gi(r,[t,s]),_i((()=>{bi(t,e?c:i),yi(t,e?u:a),mi(r)||xi(t,o,g,s)}))};return y(t,{onBeforeEnter(e){gi(v,[e]),yi(e,i),yi(e,s)},onBeforeAppear(e){gi(C,[e]),yi(e,c),yi(e,l)},onEnter:O(!1),onAppear:O(!0),onLeave(e,t){e._isLeaving=!0;const n=()=>$(e,t);yi(e,d),document.body.offsetHeight,yi(e,f),_i((()=>{e._isLeaving&&(bi(e,d),yi(e,p),mi(w)||xi(e,o,m,n))})),gi(w,[e,n])},onEnterCancelled(e){k(e,!1),gi(_,[e])},onAppearCancelled(e){k(e,!0),gi(T,[e])},onLeaveCancelled(e){$(e),gi(x,[e])}})}(e),t);pi.displayName="Transition";const hi={name:String,type:String,css:{type:Boolean,default:!0},duration:[String,Number,Object],enterFromClass:String,enterActiveClass:String,enterToClass:String,appearFromClass:String,appearActiveClass:String,appearToClass:String,leaveFromClass:String,leaveActiveClass:String,leaveToClass:String};pi.props=y({},Bn,hi);const gi=(e,t=[])=>{x(e)?e.forEach((e=>e(...t))):e&&e(...t)},mi=e=>!!e&&(x(e)?e.some((e=>e.length>1)):e.length>1);function vi(e){const t=(e=>{const t=T(e)?Number(e):NaN;return isNaN(t)?e:t})(e);return t}function yi(e,t){t.split(/\s+/).forEach((t=>t&&e.classList.add(t))),(e._vtc||(e._vtc=new Set)).add(t)}function bi(e,t){t.split(/\s+/).forEach((t=>t&&e.classList.remove(t)));const{_vtc:n}=e;n&&(n.delete(t),n.size||(e._vtc=void 0))}function _i(e){requestAnimationFrame((()=>{requestAnimationFrame(e)}))}let wi=0;function xi(e,t,n,o){const r=e._endId=++wi,i=()=>{r===e._endId&&o()};if(n)return setTimeout(i,n);const{type:s,timeout:a,propCount:c}=function(e,t){const n=window.getComputedStyle(e),o=e=>(n[e]||"").split(", "),r=o("transitionDelay"),i=o("transitionDuration"),s=Ci(r,i),a=o("animationDelay"),c=o("animationDuration"),l=Ci(a,c);let u=null,d=0,f=0;t===fi?s>0&&(u=fi,d=s,f=i.length):"animation"===t?l>0&&(u="animation",d=l,f=c.length):(d=Math.max(s,l),u=d>0?s>l?fi:"animation":null,f=u?u===fi?i.length:c.length:0);const p=u===fi&&/\b(transform|all)(,|$)/.test(o("transitionProperty").toString());return{type:u,timeout:d,propCount:f,hasTransform:p}}(e,t);if(!s)return o();const l=s+"end";let u=0;const d=()=>{e.removeEventListener(l,f),i()},f=t=>{t.target===e&&++u>=c&&d()};setTimeout((()=>{uSi(t)+Si(e[n]))))}function Si(e){return 1e3*Number(e.slice(0,-1).replace(",","."))}const Ti=["ctrl","shift","alt","meta"],ki={stop:e=>e.stopPropagation(),prevent:e=>e.preventDefault(),self:e=>e.target!==e.currentTarget,ctrl:e=>!e.ctrlKey,shift:e=>!e.shiftKey,alt:e=>!e.altKey,meta:e=>!e.metaKey,left:e=>"button"in e&&0!==e.button,middle:e=>"button"in e&&1!==e.button,right:e=>"button"in e&&2!==e.button,exact:(e,t)=>Ti.some((n=>e[`${n}Key`]&&!t.includes(n)))},Ei=(e,t)=>(n,...o)=>{for(let e=0;e{Oi(e,!1)})):Oi(e,t))},beforeUnmount(e,{value:t}){Oi(e,t)}};function Oi(e,t){e.style.display=t?e._vod:"none"}const Li=y({patchProp:(e,t,n,o,r=!1,i,s,a,c)=>{if(0===t.indexOf("change:"))return function(e,t,n,o=null){if(!n||!o)return;const r=t.replace("change:",""),{attrs:i}=o,s=i[r],a=(e.__wxsProps||(e.__wxsProps={}))[r];if(a===s)return;e.__wxsProps[r]=s;const c=o.proxy;cn((()=>{n(s,a,c.$gcd(c,!0),c.$gcd(c,!1))}))}(e,t,o,s);"class"===t?function(e,t,n){const{__wxsAddClass:o,__wxsRemoveClass:r}=e;r&&r.length&&(t=(t||"").split(/\s+/).filter((e=>-1===r.indexOf(e))).join(" "),r.length=0),o&&o.length&&(t=(t||"")+" "+o.join(" "));const i=e._vtc;i&&(t=(t?[t,...i]:[...i]).join(" ")),null==t?e.removeAttribute("class"):n?e.setAttribute("class",t):e.className=t}(e,o,r):"style"===t?function(e,t,n){const o=e.style,r=T(n);if(n&&!r){if(t&&!T(t))for(const e in t)null==n[e]&&Kr(o,e,"");for(const e in n)Kr(o,e,n[e])}else{const i=o.display;r?t!==n&&(o.cssText=n):t&&e.removeAttribute("style"),"_vod"in e&&(o.display=i)}const{__wxsStyle:i}=e;if(i)for(const s in i)Kr(o,s,i[s])}(e,n,o):m(t)?v(t)||si(e,t,0,o,s):("."===t[0]?(t=t.slice(1),1):"^"===t[0]?(t=t.slice(1),0):function(e,t,n,o){if(o)return"innerHTML"===t||"textContent"===t||!!(t in e&&di.test(t)&&S(n));if("spellcheck"===t||"draggable"===t||"translate"===t)return!1;if("form"===t)return!1;if("list"===t&&"INPUT"===e.tagName)return!1;if("type"===t&&"TEXTAREA"===e.tagName)return!1;if(di.test(t)&&T(n))return!1;return t in e}(e,t,o,r))?function(e,t,n,o,r,i,s){if("innerHTML"===t||"textContent"===t)return o&&s(o,r,i),void(e[t]=null==n?"":n);if("value"===t&&"PROGRESS"!==e.tagName&&!e.tagName.includes("-")){e._value=n;const o=null==n?"":n;return e.value===o&&"OPTION"!==e.tagName||(e.value=o),void(null==n&&e.removeAttribute(t))}let a=!1;if(""===n||null==n){const o=typeof e[t];"boolean"===o?n=u(n):null==n&&"string"===o?(n="",a=!0):"number"===o&&(n=0,a=!0)}try{e[t]=n}catch(c){}a&&e.removeAttribute(t)}(e,t,o,i,s,a,c):("true-value"===t?e._trueValue=o:"false-value"===t&&(e._falseValue=o),function(e,t,n,o,r){if(o&&t.startsWith("xlink:"))null==n?e.removeAttributeNS(ii,t.slice(6,t.length)):e.setAttributeNS(ii,t,n);else{const o=l(t);null==n||o&&!u(n)?e.removeAttribute(t):e.setAttribute(t,o?"":n)}}(e,t,o,r))},forcePatchProp:(e,t)=>0===t.indexOf("change:")||("class"===t&&e.__wxsClassChanged?(e.__wxsClassChanged=!1,!0):!("style"!==t||!e.__wxsStyleChanged)&&(e.__wxsStyleChanged=!1,!0))},qr);let Ai;const Pi=(...e)=>{const t=(Ai||(Ai=Qo(Li))).createApp(...e),{mount:n}=t;return t.mount=e=>{const o=function(e){if(T(e)){return document.querySelector(e)}return e}(e);if(!o)return;const r=t._component;S(r)||r.render||r.template||(r.template=o.innerHTML),o.innerHTML="";const i=n(o,!1,o instanceof SVGElement);return o instanceof Element&&(o.removeAttribute("v-cloak"),o.setAttribute("data-v-app","")),i},t};const Mi=["{","}"];const Ni=/^(?:\d)+/,ji=/^(?:\w)+/;const Ri=Object.prototype.hasOwnProperty,Fi=(e,t)=>Ri.call(e,t),Bi=new class{constructor(){this._caches=Object.create(null)}interpolate(e,t,n=Mi){if(!t)return[e];let o=this._caches[e];return o||(o=function(e,[t,n]){const o=[];let r=0,i="";for(;r-1?"zh-Hans":e.indexOf("-hant")>-1?"zh-Hant":(n=e,["-tw","-hk","-mo","-cht"].find((e=>-1!==n.indexOf(e)))?"zh-Hant":"zh-Hans");var n;let o=["en","fr","es"];t&&Object.keys(t).length>0&&(o=Object.keys(t));const r=function(e,t){return t.find((t=>0===e.indexOf(t)))}(e,o);return r||void 0}class Vi{constructor({locale:e,fallbackLocale:t,messages:n,watcher:o,formater:r}){this.locale="en",this.fallbackLocale="en",this.message={},this.messages={},this.watchers=[],t&&(this.fallbackLocale=t),this.formater=r||Bi,this.messages=n||{},this.setLocale(e||"en"),o&&this.watchLocale(o)}setLocale(e){const t=this.locale;this.locale=Ii(e,this.messages)||this.fallbackLocale,this.messages[this.locale]||(this.messages[this.locale]={}),this.message=this.messages[this.locale],t!==this.locale&&this.watchers.forEach((e=>{e(this.locale,t)}))}getLocale(){return this.locale}watchLocale(e){const t=this.watchers.push(e)-1;return()=>{this.watchers.splice(t,1)}}add(e,t,n=!0){const o=this.messages[e];o?n?Object.assign(o,t):Object.keys(t).forEach((e=>{Fi(o,e)||(o[e]=t[e])})):this.messages[e]=t}f(e,t,n){return this.formater.interpolate(e,t,n).join("")}t(e,t,n){let o=this.message;return"string"==typeof t?(t=Ii(t,this.messages))&&(o=this.messages[t]):n=t,Fi(o,e)?this.formater.interpolate(o[e],n).join(""):(console.warn(`Cannot translate the value of keypath ${e}. Use the value of keypath as default.`),e)}}function Wi(e,t={},n,o){"string"!=typeof e&&([e,t]=[t,e]),"string"!=typeof e&&(e="undefined"!=typeof uni&&_c?_c():"undefined"!=typeof global&&global.getLocale?global.getLocale():"en"),"string"!=typeof n&&(n="undefined"!=typeof __uniConfig&&__uniConfig.fallbackLocale||"en");const r=new Vi({locale:e,fallbackLocale:n,messages:t,watcher:o});let i=(e,t)=>{{let e=!1;i=function(t,n){const o=Al().$vm;return o&&(o.$locale,e||(e=!0,function(e,t){e.$watchLocale?e.$watchLocale((e=>{t.setLocale(e)})):e.$watch((()=>e.$locale),(e=>{t.setLocale(e)}))}(o,r))),r.t(t,n)}}return i(e,t)};return{i18n:r,f:(e,t,n)=>r.f(e,t,n),t:(e,t)=>i(e,t),add:(e,t,n=!0)=>r.add(e,t,n),watch:e=>r.watchLocale(e),getLocale:()=>r.getLocale(),setLocale:e=>r.setLocale(e)}} +/*! + * vue-router v4.1.6 + * (c) 2022 Eduardo San Martin Morote + * @license MIT + */var Hi,zi,Di,Ui;(zi=Hi||(Hi={})).pop="pop",zi.push="push",(Ui=Di||(Di={})).back="back",Ui.forward="forward",Ui.unknown="";Symbol("");var qi,Xi;(Xi=qi||(qi={}))[Xi.aborted=4]="aborted",Xi[Xi.cancelled=8]="cancelled",Xi[Xi.duplicated=16]="duplicated";const Ki=ee((()=>"undefined"!=typeof __uniConfig&&__uniConfig.locales&&!!Object.keys(__uniConfig.locales).length));let Yi;function Ji(){if(!Yi){let e;if(e=navigator.cookieEnabled&&window.localStorage&&localStorage.UNI_LOCALE||__uniConfig.locale||navigator.language,Yi=Wi(e),Ki()){const t=Object.keys(__uniConfig.locales||{});t.length&&t.forEach((e=>Yi.add(e,__uniConfig.locales[e]))),Yi.setLocale(e)}}return Yi}function Gi(e,t,n){return t.reduce(((t,o,r)=>(t[e+o]=n[r],t)),{})}const Zi=ee((()=>{const e="uni.async.",t=["error"];Ji().add("en",Gi(e,t,["The connection timed out, click the screen to try again."]),!1),Ji().add("es",Gi(e,t,["Se agotó el tiempo de conexión, haga clic en la pantalla para volver a intentarlo."]),!1),Ji().add("fr",Gi(e,t,["La connexion a expiré, cliquez sur l'écran pour réessayer."]),!1),Ji().add("zh-Hans",Gi(e,t,["连接服务器超时,点击屏幕重试"]),!1),Ji().add("zh-Hant",Gi(e,t,["連接服務器超時,點擊屏幕重試"]),!1)})),Qi=ee((()=>{const e="uni.showToast.",t=["unpaired"];Ji().add("en",Gi(e,t,["Please note showToast must be paired with hideToast"]),!1),Ji().add("es",Gi(e,t,["Tenga en cuenta que showToast debe estar emparejado con hideToast"]),!1),Ji().add("fr",Gi(e,t,["Veuillez noter que showToast doit être associé à hideToast"]),!1),Ji().add("zh-Hans",Gi(e,t,["请注意 showToast 与 hideToast 必须配对使用"]),!1),Ji().add("zh-Hant",Gi(e,t,["請注意 showToast 與 hideToast 必須配對使用"]),!1)})),es=ee((()=>{const e="uni.showLoading.",t=["unpaired"];Ji().add("en",Gi(e,t,["Please note showLoading must be paired with hideLoading"]),!1),Ji().add("es",Gi(e,t,["Tenga en cuenta que showLoading debe estar emparejado con hideLoading"]),!1),Ji().add("fr",Gi(e,t,["Veuillez noter que showLoading doit être associé à hideLoading"]),!1),Ji().add("zh-Hans",Gi(e,t,["请注意 showLoading 与 hideLoading 必须配对使用"]),!1),Ji().add("zh-Hant",Gi(e,t,["請注意 showLoading 與 hideLoading 必須配對使用"]),!1)}));function ts(e){const t=new ye;return{on:(e,n)=>t.on(e,n),once:(e,n)=>t.once(e,n),off:(e,n)=>t.off(e,n),emit:(e,...n)=>t.emit(e,...n),subscribe(n,o,r=!1){t[r?"once":"on"](`${e}.${n}`,o)},unsubscribe(n,o){t.off(`${e}.${n}`,o)},subscribeHandler(n,o,r){t.emit(`${e}.${n}`,o,r)}}}let ns=1;const os=Object.create(null);function rs(e,t){return e+"."+t}function is({id:e,name:t,args:n},o){t=rs(o,t);const r=t=>{e&&vu.publishHandler("invokeViewApi."+e,t)},i=os[t];i?i(n,r):r({})}const ss=y(ts("service"),{invokeServiceMethod:(e,t,n)=>{const{subscribe:o,publishHandler:r}=vu,i=n?ns++:0;n&&o("invokeServiceApi."+i,n,!0),r("invokeServiceApi",{id:i,name:e,args:t})}}),as=ie(!0);let cs;function ls(){cs&&(clearTimeout(cs),cs=null)}let us=0,ds=0;function fs(e){if(ls(),1!==e.touches.length)return;const{pageX:t,pageY:n}=e.touches[0];us=t,ds=n,cs=setTimeout((function(){const t=new CustomEvent("longpress",{bubbles:!0,cancelable:!0,target:e.target,currentTarget:e.currentTarget});t.touches=e.touches,t.changedTouches=e.changedTouches,e.target.dispatchEvent(t)}),350)}function ps(e){if(!cs)return;if(1!==e.touches.length)return ls();const{pageX:t,pageY:n}=e.touches[0];return Math.abs(t-us)>10||Math.abs(n-ds)>10?ls():void 0}function hs(e,t){const n=Number(e);return isNaN(n)?t:n}function gs(){const e=__uniConfig.globalStyle||{},t=hs(e.rpxCalcMaxDeviceWidth,960),n=hs(e.rpxCalcBaseDeviceWidth,375);function o(){let e=function(){const e=/^Apple/.test(navigator.vendor)&&"number"==typeof window.orientation,t=e&&90===Math.abs(window.orientation);var n=e?Math[t?"max":"min"](screen.width,screen.height):screen.width;return Math.min(window.innerWidth,document.documentElement.clientWidth,n)||n}();e=e<=t?e:n,document.documentElement.style.fontSize=e/23.4375+"px"}o(),document.addEventListener("DOMContentLoaded",o),window.addEventListener("load",o),window.addEventListener("resize",o)}function ms(){gs(),ne(),window.addEventListener("touchstart",fs,as),window.addEventListener("touchmove",ps,as),window.addEventListener("touchend",ls,as),window.addEventListener("touchcancel",ls,as)}function vs(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var ys,bs,_s=["top","left","right","bottom"],ws={};function xs(){return bs="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":"":""}function Cs(){if(bs="string"==typeof bs?bs:xs()){var e=[],t=!1;try{var n=Object.defineProperty({},"passive",{get:function(){t={passive:!0}}});window.addEventListener("test",null,n)}catch(a){}var o=document.createElement("div");r(o,{position:"absolute",left:"0",top:"0",width:"0",height:"0",zIndex:"-1",overflow:"hidden",visibility:"hidden"}),_s.forEach((function(e){s(o,e)})),document.body.appendChild(o),i(),ys=!0}else _s.forEach((function(e){ws[e]=0}));function r(e,t){var n=e.style;Object.keys(t).forEach((function(e){var o=t[e];n[e]=o}))}function i(t){t?e.push(t):e.forEach((function(e){e()}))}function s(e,n){var o=document.createElement("div"),s=document.createElement("div"),a=document.createElement("div"),c=document.createElement("div"),l={position:"absolute",width:"100px",height:"200px",boxSizing:"border-box",overflow:"hidden",paddingBottom:bs+"(safe-area-inset-"+n+")"};r(o,l),r(s,l),r(a,{transition:"0s",animation:"none",width:"400px",height:"400px"}),r(c,{transition:"0s",animation:"none",width:"250%",height:"250%"}),o.appendChild(a),s.appendChild(c),e.appendChild(o),e.appendChild(s),i((function(){o.scrollTop=s.scrollTop=1e4;var e=o.scrollTop,r=s.scrollTop;function i(){this.scrollTop!==(this===o?e:r)&&(o.scrollTop=s.scrollTop=1e4,e=o.scrollTop,r=s.scrollTop,function(e){Ts.length||setTimeout((function(){var e={};Ts.forEach((function(t){e[t]=ws[t]})),Ts.length=0,ks.forEach((function(t){t(e)}))}),0);Ts.push(e)}(n))}o.addEventListener("scroll",i,t),s.addEventListener("scroll",i,t)}));var u=getComputedStyle(o);Object.defineProperty(ws,n,{configurable:!0,get:function(){return parseFloat(u.paddingBottom)}})}}function Ss(e){return ys||Cs(),ws[e]}var Ts=[];var ks=[];const Es=vs({get support(){return 0!=("string"==typeof bs?bs:xs()).length},get top(){return Ss("top")},get left(){return Ss("left")},get right(){return Ss("right")},get bottom(){return Ss("bottom")},onChange:function(e){xs()&&(ys||Cs(),"function"==typeof e&&ks.push(e))},offChange:function(e){var t=ks.indexOf(e);t>=0&&ks.splice(t,1)}}),$s=Ei((()=>{}),["prevent"]);function Os(e,t){return parseInt((e.getPropertyValue(t).match(/\d+/)||["0"])[0])}function Ls(){const e=Os(document.documentElement.style,"--window-top");return e?e+Es.top:0}function As(e){const t=document.documentElement.style;Object.keys(e).forEach((n=>{t.setProperty(n,e[n])}))}const Ps="M1.952 18.080q-0.32-0.352-0.416-0.88t0.128-0.976l0.16-0.352q0.224-0.416 0.64-0.528t0.8 0.176l6.496 4.704q0.384 0.288 0.912 0.272t0.88-0.336l17.312-14.272q0.352-0.288 0.848-0.256t0.848 0.352l-0.416-0.416q0.32 0.352 0.32 0.816t-0.32 0.816l-18.656 18.912q-0.32 0.352-0.8 0.352t-0.8-0.32l-7.936-8.064z",Ms="M15.808 0.16q-4.224 0-7.872 2.176-3.552 2.112-5.632 5.728-2.144 3.744-2.144 8.128 0 4.192 2.144 7.872 2.112 3.52 5.632 5.632 3.68 2.144 7.872 2.144 4.384 0 8.128-2.144 3.616-2.080 5.728-5.632 2.176-3.648 2.176-7.872 0-4.384-2.176-8.128-2.112-3.616-5.728-5.728-3.744-2.176-8.128-2.176zM15.136 8.672h1.728q0.128 0 0.224 0.096t0.096 0.256l-0.384 10.24q0 0.064-0.048 0.112t-0.112 0.048h-1.248q-0.096 0-0.144-0.048t-0.048-0.112l-0.384-10.24q0-0.16 0.096-0.256t0.224-0.096zM16 23.328q-0.48 0-0.832-0.352t-0.352-0.848 0.352-0.848 0.832-0.352 0.832 0.352 0.352 0.848-0.352 0.848-0.832 0.352z";function Ns(e,t="#000",n=27){return _r("svg",{width:n,height:n,viewBox:"0 0 32 32"},[_r("path",{d:e,fill:t},null,8,["d","fill"])],8,["width","height"])}function js(){const e=hl(),t=e.length;if(t)return e[t-1]}function Rs(){const e=js();if(e)return e.$page.meta}function Fs(){const e=js();if(e)return e.$vm}const Bs=["navigationBar","pullToRefresh"];function Is(e,t){const n=JSON.parse(JSON.stringify(__uniConfig.globalStyle||{})),o=y({id:t},n,e);Bs.forEach((t=>{o[t]=y({},n[t],e[t])}));const{navigationBar:r}=o;return r.titleText&&r.titleImage&&(r.titleText=""),o}function Vs(e,t,n){if(T(e))n=t,t=e,e=Fs();else if("number"==typeof e){const t=hl().find((t=>t.$page.id===e));e=t?t.$vm:Fs()}if(!e)return;const o=e.$[t];return o&&((e,t)=>{let n;for(let o=0;o{function s(){if((()=>{const{scrollHeight:e}=document.documentElement,t=window.innerHeight,o=window.scrollY,i=o>0&&e>t&&o+t+n>=e,s=Math.abs(e-zs)>n;return!i||r&&!s?(!i&&r&&(r=!1),!1):(zs=e,r=!0,!0)})())return t&&t(),i=!1,setTimeout((function(){i=!0}),350),!0}e&&e(window.pageYOffset),t&&i&&(s()||(Hs=setTimeout(s,300))),o=!1};return function(){clearTimeout(Hs),o||requestAnimationFrame(s),o=!0}}function Us(e,t){if(0===t.indexOf("/"))return t;if(0===t.indexOf("./"))return Us(e,t.slice(2));const n=t.split("/"),o=n.length;let r=0;for(;r0?e.split("/"):[];return i.splice(i.length-r-1,r+1),Q(i.concat(n).join("/"))}function qs(e,t=!1){return t?__uniRoutes.find((t=>t.path===e||t.alias===e)):__uniRoutes.find((t=>t.path===e))}class Xs{constructor(e){this.$bindClass=!1,this.$bindStyle=!1,this.$vm=e,this.$el=function(e,t=!1){const{vnode:n}=e;if(G(n.el))return t?n.el?[n.el]:[]:n.el;const{subTree:o}=e;if(16&o.shapeFlag){const e=o.children.filter((e=>e.el&&G(e.el)));if(e.length>0)return t?e.map((e=>e.el)):e[0].el}return t?n.el?[n.el]:[]:n.el}(e.$),this.$el.getAttribute&&(this.$bindClass=!!this.$el.getAttribute("class"),this.$bindStyle=!!this.$el.getAttribute("style"))}selectComponent(e){if(!this.$el||!e)return;const t=Gs(this.$el.querySelector(e));return t?Ks(t,!1):void 0}selectAllComponents(e){if(!this.$el||!e)return[];const t=[],n=this.$el.querySelectorAll(e);for(let o=0;o-1&&t.splice(n,1)}const n=this.$el.__wxsRemoveClass||(this.$el.__wxsRemoveClass=[]);return-1===n.indexOf(e)&&(n.push(e),this.forceUpdate("class")),this}hasClass(e){return this.$el&&this.$el.classList.contains(e)}getDataset(){return this.$el&&this.$el.dataset}callMethod(e,t={}){const n=this.$vm[e];S(n)?n(JSON.parse(JSON.stringify(t))):this.$vm.ownerId&&vu.publishHandler("onWxsInvokeCallMethod",{nodeId:this.$el.__id,ownerId:this.$vm.ownerId,method:e,args:t})}requestAnimationFrame(e){return window.requestAnimationFrame(e)}getState(){return this.$el&&(this.$el.__wxsState||(this.$el.__wxsState={}))}triggerEvent(e,t={}){return this.$vm.$emit(e,t),this}getComputedStyle(e){if(this.$el){const t=window.getComputedStyle(this.$el);return e&&e.length?e.reduce(((e,n)=>(e[n]=t[n],e)),{}):t}return{}}setTimeout(e,t){return window.setTimeout(e,t)}clearTimeout(e){return window.clearTimeout(e)}getBoundingClientRect(){return this.$el.getBoundingClientRect()}}function Ks(e,t=!0){if(t&&e&&(e=J(e.$)),e&&e.$el)return e.$el.__wxsComponentDescriptor||(e.$el.__wxsComponentDescriptor=new Xs(e)),e.$el.__wxsComponentDescriptor}function Ys(e,t){return Ks(e,t)}function Js(e,t,n,o=!0){if(t){e.__instance||(e.__instance=!0,Object.defineProperty(e,"instance",{get:()=>Ys(n.proxy,!1)}));const r=function(e,t,n=!0){if(!t)return!1;if(n&&e.length<2)return!1;const o=J(t);if(!o)return!1;const r=o.$.type;return!(!r.$wxs&&!r.$renderjs)&&o}(t,n,o);if(r)return[e,Ys(r,!1)]}}function Gs(e){if(e)return e.__vueParentComponent&&e.__vueParentComponent.proxy}function Zs(e){for(;e&&0!==e.tagName.indexOf("UNI-");)e=e.parentElement;return e}function Qs(e,t=!1){const{type:n,timeStamp:o,target:r,currentTarget:i}=e,s={type:n,timeStamp:o,target:se(t?r:Zs(r)),detail:{},currentTarget:se(i)};return e._stopped&&(s._stopped=!0),e.type.startsWith("touch")&&(s.touches=e.touches,s.changedTouches=e.changedTouches),function(e,t){y(e,{preventDefault:()=>t.preventDefault(),stopPropagation:()=>t.stopPropagation()})}(s,e),s}function ea(e,t){return{force:1,identifier:0,clientX:e.clientX,clientY:e.clientY-t,pageX:e.pageX,pageY:e.pageY-t}}function ta(e,t){const n=[];for(let o=0;o0===e.type.indexOf("mouse")||["contextmenu"].includes(e.type))(e))!function(e,t){const n=Ls();e.pageX=t.pageX,e.pageY=t.pageY-n,e.clientX=t.clientX,e.clientY=t.clientY-n,e.touches=e.changedTouches=[ea(t,n)]}(i,e);else if((e=>"undefined"!=typeof TouchEvent&&e instanceof TouchEvent||0===e.type.indexOf("touch")||["longpress"].indexOf(e.type)>=0)(e)){const t=Ls();i.touches=ta(e.touches,t),i.changedTouches=ta(e.changedTouches,t)}else if((e=>!e.type.indexOf("key")&&e instanceof KeyboardEvent)(e)){["key","code"].forEach((t=>{Object.defineProperty(i,t,{get:()=>e[t]})}))}return Js(i,t,n)||[i]},createNativeEvent:Qs},Symbol.toStringTag,{value:"Module"});function oa(e){!function(e){const t=e.globalProperties;y(t,na),t.$gcd=Ys}(e._context.config)}let ra=1;function ia(e){return(e||function(){const e=Rs();return e?e.id:-1}())+".invokeViewApi"}const sa=y(ts("view"),{invokeOnCallback:(e,t)=>yu.emit("api."+e,t),invokeViewMethod:(e,t,n,o)=>{const{subscribe:r,publishHandler:i}=yu,s=o?ra++:0;o&&r("invokeViewApi."+s,o,!0),i(ia(n),{id:s,name:e,args:t},n)},invokeViewMethodKeepAlive:(e,t,n,o)=>{const{subscribe:r,unsubscribe:i,publishHandler:s}=yu,a=ra++,c="invokeViewApi."+a;return r(c,n),s(ia(o),{id:a,name:e,args:t},o),()=>{i(c)}}});function aa(e){Vs(js(),"onResize",e),yu.invokeOnCallback("onWindowResize",e)}function ca(e){const t=js();Vs(Al(),"onShow",e),Vs(t,"onShow")}function la(){Vs(Al(),"onHide"),Vs(js(),"onHide")}const ua=["onPageScroll","onReachBottom"];function da(){ua.forEach((e=>yu.subscribe(e,function(e){return(t,n)=>{Vs(parseInt(n),e,t)}}(e))))}function fa(){!function(){const{on:e}=yu;e("onResize",aa),e("onAppEnterForeground",ca),e("onAppEnterBackground",la)}(),da()}function pa(){if(this.$route){const e=this.$route.meta;return e.eventChannel||(e.eventChannel=new de(this.$page.id)),e.eventChannel}}function ha(e){e._context.config.globalProperties.getOpenerEventChannel=pa}function ga(){return{path:"",query:{},scene:1001,referrerInfo:{appId:"",extraData:{}}}}function ma(e){return/^-?\d+[ur]px$/i.test(e)?e.replace(/(^-?\d+)[ur]px$/i,((e,t)=>`${bc(parseFloat(t))}px`)):/^-?[\d\.]+$/.test(e)?`${e}px`:e||""}function va(e){const t=e.animation;if(!t||!t.actions||!t.actions.length)return;let n=0;const o=t.actions,r=t.actions.length;function i(){const t=o[n],s=t.option.transition,a=function(e){const t=["matrix","matrix3d","scale","scale3d","rotate3d","skew","translate","translate3d"],n=["scaleX","scaleY","scaleZ","rotate","rotateX","rotateY","rotateZ","skewX","skewY","translateX","translateY","translateZ"],o=["opacity","background-color"],r=["width","height","left","right","top","bottom"],i=e.animates,s=e.option,a=s.transition,c={},l=[];return i.forEach((e=>{let i=e.type,s=[...e.args];if(t.concat(n).includes(i))i.startsWith("rotate")||i.startsWith("skew")?s=s.map((e=>parseFloat(e)+"deg")):i.startsWith("translate")&&(s=s.map(ma)),n.indexOf(i)>=0&&(s.length=1),l.push(`${i}(${s.join(",")})`);else if(o.concat(r).includes(s[0])){i=s[0];const e=s[1];c[i]=r.includes(i)?ma(e):e}})),c.transform=c.webkitTransform=l.join(" "),c.transition=c.webkitTransition=Object.keys(c).map((e=>`${function(e){return e.replace(/[A-Z]/g,(e=>`-${e.toLowerCase()}`)).replace("webkit","-webkit")}(e)} ${a.duration}ms ${a.timingFunction} ${a.delay}ms`)).join(","),c.transformOrigin=c.webkitTransformOrigin=s.transformOrigin,c}(t);Object.keys(a).forEach((t=>{e.$el.style[t]=a[t]})),n+=1,n{i()}),0)}const ya={props:["animation"],watch:{animation:{deep:!0,handler(){va(this)}}},mounted(){va(this)}},ba=e=>{e.__reserved=!0;const{props:t,mixins:n}=e;return t&&t.animation||(n||(e.mixins=[])).push(ya),_a(e)},_a=e=>(e.__reserved=!0,e.compatConfig={MODE:3},qn(e)),wa={hoverClass:{type:String,default:"none"},hoverStopPropagation:{type:Boolean,default:!1},hoverStartTime:{type:[Number,String],default:50},hoverStayTime:{type:[Number,String],default:400}};function xa(e){const t=zt(!1);let n,o,r=!1;function i(){requestAnimationFrame((()=>{clearTimeout(o),o=setTimeout((()=>{t.value=!1}),parseInt(e.hoverStayTime))}))}function s(o){o._hoverPropagationStopped||e.hoverClass&&"none"!==e.hoverClass&&!e.disabled&&(e.hoverStopPropagation&&(o._hoverPropagationStopped=!0),r=!0,n=setTimeout((()=>{t.value=!0,r||i()}),parseInt(e.hoverStartTime)))}function a(){r=!1,t.value&&i()}function c(){a(),window.removeEventListener("mouseup",c)}return{hovering:t,binding:{onTouchstartPassive:function(e){e.touches.length>1||s(e)},onMousedown:function(e){r||(s(e),window.addEventListener("mouseup",c))},onTouchend:function(){a()},onMouseup:function(){r&&c()},onTouchcancel:function(){r=!1,t.value=!1,clearTimeout(n)}}}}function Ca(e,t){return(n,o,r)=>{e.value&&t(n,function(e,t,n,o){const r=se(n);return{type:o.type||e,timeStamp:t.timeStamp||0,target:r,currentTarget:r,detail:o}}(n,o,e.value,r||{}))}}function Sa(e){const{base:t}=__uniConfig.router;return 0===Q(e).indexOf(t)?Q(e):t+e}function Ta(e){const{base:t,assets:n}=__uniConfig.router;if("./"===t&&(0===e.indexOf("./static/")||n&&0===e.indexOf("./"+n+"/"))&&(e=e.slice(1)),0===e.indexOf("/")){if(0!==e.indexOf("//"))return Sa(e.slice(1));e="https:"+e}if(X.test(e)||K.test(e)||0===e.indexOf("blob:"))return e;const o=hl();return o.length?Sa(Us(o[o.length-1].$page.route,e).slice(1)):e}const ka=navigator.userAgent,Ea=/android/i.test(ka),$a=/iphone|ipad|ipod/i.test(ka),Oa=ka.match(/Windows NT ([\d|\d.\d]*)/i),La=/Macintosh|Mac/i.test(ka),Aa=/Linux|X11/i.test(ka),Pa=La&&navigator.maxTouchPoints>0;function Ma(){return/^Apple/.test(navigator.vendor)&&"number"==typeof window.orientation}function Na(e){return e&&90===Math.abs(window.orientation)}function ja(e,t){return e?Math[t?"max":"min"](screen.width,screen.height):screen.width}function Ra(e){return Math.min(window.innerWidth,document.documentElement.clientWidth,e)||e}const Fa=["GET","OPTIONS","HEAD","POST","PUT","DELETE","TRACE","CONNECT","PATCH"];function Ba(e,t){return e&&-1!==t.indexOf(e)?e:t[0]}function Ia(e){return function(){try{return e.apply(e,arguments)}catch(t){console.error(t)}}}let Va=1;const Wa={};function Ha(e,t,n){if("number"==typeof e){const o=Wa[e];if(o)return o.keepAlive||delete Wa[e],o.callback(t,n)}return t}const za="success",Da="fail",Ua="complete";function qa(e,t={},{beforeAll:n,beforeSuccess:o}={}){A(t)||(t={});const{success:r,fail:i,complete:s}=function(e){const t={};for(const n in e){const o=e[n];S(o)&&(t[n]=Ia(o),delete e[n])}return t}(t),a=S(r),c=S(i),l=S(s),u=Va++;return function(e,t,n,o=!1){Wa[e]={name:t,keepAlive:o,callback:n}}(u,e,(u=>{(u=u||{}).errMsg=function(e,t){return e&&-1!==e.indexOf(":fail")?t+e.substring(e.indexOf(":fail")):t+":ok"}(u.errMsg,e),S(n)&&n(u),u.errMsg===e+":ok"?(S(o)&&o(u,t),a&&r(u)):c&&i(u),l&&s(u)})),u}const Xa="success",Ka="fail",Ya="complete",Ja={},Ga={};function Za(e,t){return function(n){return e(n,t)||n}}function Qa(e,t,n){let o=!1;for(let r=0;re(t),catch(){}}}function ec(e,t={}){return[Xa,Ka,Ya].forEach((n=>{const o=e[n];if(!x(o))return;const r=t[n];t[n]=function(e){Qa(o,e,t).then((e=>S(r)&&r(e)||e))}})),t}function tc(e,t){const n=[];x(Ja.returnValue)&&n.push(...Ja.returnValue);const o=Ga[e];return o&&x(o.returnValue)&&n.push(...o.returnValue),n.forEach((e=>{t=e(t)||t})),t}function nc(e){const t=Object.create(null);Object.keys(Ja).forEach((e=>{"returnValue"!==e&&(t[e]=Ja[e].slice())}));const n=Ga[e];return n&&Object.keys(n).forEach((e=>{"returnValue"!==e&&(t[e]=(t[e]||[]).concat(n[e]))})),t}function oc(e,t,n,o){const r=nc(e);if(r&&Object.keys(r).length){if(x(r.invoke)){return Qa(r.invoke,n).then((n=>t(ec(nc(e),n),...o)))}return t(ec(r,n),...o)}return t(n,...o)}function rc(e,t){return(n={},...o)=>function(e){return!(!A(e)||![za,Da,Ua].find((t=>S(e[t]))))}(n)?tc(e,oc(e,t,n,o)):tc(e,new Promise(((r,i)=>{oc(e,t,y(n,{success:r,fail:i}),o)})))}function ic(e,t,n,o){return Ha(e,y({errMsg:t+":fail"+(n?" "+n:"")},o))}function sc(e,t,n,o){if(o&&o.beforeInvoke){const e=o.beforeInvoke(t);if(T(e))return e}const r=function(e,t){const n=e[0];if(!t||!A(t.formatArgs)&&A(n))return;const o=t.formatArgs,r=Object.keys(o);for(let i=0;i{const r=qa(e,n,o),i=sc(0,[n],0,o);return i?ic(r,e,i):t(n,{resolve:t=>function(e,t,n){return Ha(e,y(n||{},{errMsg:t+":ok"}))}(r,e,t),reject:(t,n)=>ic(r,e,function(e){return!e||T(e)?e:e.stack?(console.error(e.message+"\n"+e.stack),e.message):e}(t),n)})}}function cc(e,t,n,o){return rc(e,ac(e,t,0,o))}function lc(e,t,n,o){return function(e,t,n,o){return(...e)=>{const n=sc(0,e,0,o);if(n)throw new Error(n);return t.apply(null,e)}}(0,t,0,o)}function uc(e,t,n,o){return rc(e,function(e,t,n,o){return ac(e,t,0,o)}(e,t,0,o))}let dc=!1,fc=0,pc=0,hc=960,gc=375,mc=750;function vc(){const{platform:e,pixelRatio:t,windowWidth:n}=function(){const e=Ma(),t=Ra(ja(e,Na(e)));return{platform:$a?"ios":"other",pixelRatio:window.devicePixelRatio,windowWidth:t}}();fc=n,pc=t,dc="ios"===e}function yc(e,t){const n=Number(e);return isNaN(n)?t:n}const bc=lc(0,((e,t)=>{if(0===fc&&(vc(),function(){const e=__uniConfig.globalStyle||{};hc=yc(e.rpxCalcMaxDeviceWidth,960),gc=yc(e.rpxCalcBaseDeviceWidth,375),mc=yc(e.rpxCalcBaseDeviceWidth,750)}()),0===(e=Number(e)))return 0;let n=t||fc;n=e===mc||n<=hc?n:gc;let o=e/750*n;return o<0&&(o=-o),o=Math.floor(o+1e-4),0===o&&(o=1!==pc&&dc?.5:1),e<0?-o:o})),_c=lc(0,(()=>{const e=Al();return e&&e.$vm?e.$vm.$locale:Ji().getLocale()})),wc={onUnhandledRejection:[],onPageNotFound:[],onError:[],onShow:[],onHide:[]};const xc="json",Cc=["text","arraybuffer"],Sc=encodeURIComponent;ArrayBuffer,Boolean;const Tc={formatArgs:{method(e,t){t.method=Ba((e||"").toUpperCase(),Fa)},data(e,t){t.data=e||""},url(e,t){t.method===Fa[0]&&A(t.data)&&Object.keys(t.data).length&&(t.url=function(e,t){let n=e.split("#");const o=n[1]||"";n=n[0].split("?");let r=n[1]||"";e=n[0];const i=r.split("&").filter((e=>e)),s={};i.forEach((e=>{const t=e.split("=");s[t[0]]=t[1]}));for(const a in t)if(w(t,a)){let e=t[a];null==e?e="":A(e)&&(e=JSON.stringify(e)),s[Sc(a)]=Sc(e)}return r=Object.keys(s).map((e=>`${e}=${s[e]}`)).join("&"),e+(r?"?"+r:"")+(o?"#"+o:"")}(e,t.data))},header(e,t){const n=t.header=e||{};t.method!==Fa[0]&&(Object.keys(n).find((e=>"content-type"===e.toLowerCase()))||(n["Content-Type"]="application/json"))},dataType(e,t){t.dataType=(e||xc).toLowerCase()},responseType(e,t){t.responseType=(e||"").toLowerCase(),-1===Cc.indexOf(t.responseType)&&(t.responseType="text")}}};const kc={url:{type:String,required:!0}};Ec(["slide-in-right","slide-in-left","slide-in-top","slide-in-bottom","fade-in","zoom-out","zoom-fade-out","pop-in","none"]),Ec(["slide-out-right","slide-out-left","slide-out-top","slide-out-bottom","fade-out","zoom-in","zoom-fade-in","pop-out","none"]);function Ec(e){return{animationType:{type:String,validator(t){if(t&&-1===e.indexOf(t))return"`"+t+"` is not supported for `animationType` (supported values are: `"+e.join("`|`")+"`)"}},animationDuration:{type:Number}}}const $c=["success","loading","none","error"],Oc=(Boolean,{formatArgs:{title:"",icon(e,t){t.icon=Ba(e,$c)},image(e,t){t.image=e?Ta(e):""},duration:1500,mask:!1}}),Lc=ga(),Ac=ga();const Pc=ba({name:"ResizeSensor",props:{initial:{type:Boolean,default:!1}},emits:["resize"],setup(e,{emit:t}){const n=zt(null),o=function(e){return()=>{const{firstElementChild:t,lastElementChild:n}=e.value;t.scrollLeft=1e5,t.scrollTop=1e5,n.scrollLeft=1e5,n.scrollTop=1e5}}(n),r=function(e,t,n){const o=Ot({width:-1,height:-1});return Pn((()=>y({},o)),(e=>t("resize",e))),()=>{const t=e.value;o.width=t.offsetWidth,o.height=t.offsetHeight,n()}}(n,t,o);return function(e,t,n,o){Jn(o),oo((()=>{t.initial&&cn(n);const r=e.value;r.offsetParent!==r.parentElement&&(r.parentElement.style.position="relative"),"AnimationEvent"in window||o()}))}(n,e,r,o),()=>_r("uni-resize-sensor",{ref:n,onAnimationstartOnce:r},[_r("div",{onScroll:r},[_r("div",null,null)],40,["onScroll"]),_r("div",{onScroll:r},[_r("div",null,null)],40,["onScroll"])],40,["onAnimationstartOnce"])}});const Mc={src:{type:String,default:""},mode:{type:String,default:"scaleToFill"},lazyLoad:{type:[Boolean,String],default:!1},draggable:{type:Boolean,default:!1}},Nc={widthFix:["offsetWidth","height",(e,t)=>e/t],heightFix:["offsetHeight","width",(e,t)=>e*t]},jc={aspectFit:["center center","contain"],aspectFill:["center center","cover"],widthFix:[,"100% 100%"],heightFix:[,"100% 100%"],top:["center top"],bottom:["center bottom"],center:["center center"],left:["left center"],right:["right center"],"top left":["left top"],"top right":["right top"],"bottom left":["left bottom"],"bottom right":["right bottom"]},Rc=ba({name:"Image",props:Mc,setup(e,{emit:t}){const n=zt(null),o=function(e,t){const n=zt(""),o=Vr((()=>{let e="auto",o="";const r=jc[t.mode];return r?(r[0]&&(o=r[0]),r[1]&&(e=r[1])):(o="0% 0%",e="100% 100%"),`background-image:${n.value?'url("'+n.value+'")':"none"};background-position:${o};background-size:${e};`})),r=Ot({rootEl:e,src:Vr((()=>t.src?Ta(t.src):"")),origWidth:0,origHeight:0,origStyle:{width:"",height:""},modeStyle:o,imgSrc:n});return oo((()=>{const t=e.value.style;r.origWidth=Number(t.width)||0,r.origHeight=Number(t.height)||0})),r}(n,e),r=Ca(n,t),{fixSize:i}=function(e,t,n){const o=()=>{const{mode:o}=t,r=Nc[o];if(!r)return;const{origWidth:i,origHeight:s}=n,a=i&&s?i/s:0;if(!a)return;const c=e.value,l=c[r[0]];l&&(c.style[r[1]]=function(e){Fc&&e>10&&(e=2*Math.round(e/2));return e}(r[2](l,a))+"px")},r=()=>{const{style:t}=e.value,{origStyle:{width:o,height:r}}=n;t.width=o,t.height=r};return Pn((()=>t.mode),((e,t)=>{Nc[t]&&r(),Nc[e]&&o()})),{fixSize:o,resetSize:r}}(n,e,o);return function(e,t,n,o,r){let i,s;const a=(t=0,n=0,o="")=>{e.origWidth=t,e.origHeight=n,e.imgSrc=o},c=c=>{if(!c)return l(),void a();i=i||new Image,i.onload=e=>{const{width:u,height:d}=i;a(u,d,c),o(),i.draggable=t.draggable,s&&s.remove(),s=i,n.value.appendChild(i),l(),r("load",e,{width:u,height:d})},i.onerror=t=>{a(),l(),r("error",t,{errMsg:`GET ${e.src} 404 (Not Found)`})},i.src=c},l=()=>{i&&(i.onload=null,i.onerror=null,i=null)};Pn((()=>e.src),(e=>c(e))),Pn((()=>e.imgSrc),(e=>{!e&&s&&(s.remove(),s=null)})),oo((()=>c(e.src))),so((()=>l()))}(o,e,n,i,r),()=>_r("uni-image",{ref:n},[_r("div",{style:o.modeStyle},null,4),Nc[e.mode]?_r(Pc,{onResize:i},null,8,["onResize"]):_r("span",null,null)],512)}});const Fc="Google Inc."===navigator.vendor;const Bc=ie(!0),Ic=[];let Vc,Wc=0;const Hc=e=>Ic.forEach((t=>t.userAction=e));const zc=["navigate","redirect","switchTab","reLaunch","navigateBack"],Dc=["slide-in-right","slide-in-left","slide-in-top","slide-in-bottom","fade-in","zoom-out","zoom-fade-out","pop-in","none"],Uc=["slide-out-right","slide-out-left","slide-out-top","slide-out-bottom","fade-out","zoom-in","zoom-fade-in","pop-out","none"],qc={hoverClass:{type:String,default:"navigator-hover"},url:{type:String,default:""},openType:{type:String,default:"navigate",validator:e=>Boolean(~zc.indexOf(e))},delta:{type:Number,default:1},hoverStartTime:{type:[Number,String],default:50},hoverStayTime:{type:[Number,String],default:600},exists:{type:String,default:""},hoverStopPropagation:{type:Boolean,default:!1},animationType:{type:String,default:"",validator:e=>!e||Dc.concat(Uc).includes(e)},animationDuration:{type:[String,Number],default:300}};y({},qc,{renderLink:{type:Boolean,default:!0}});const Xc=ba({name:"View",props:y({},wa),setup(e,{slots:t}){const{hovering:n,binding:o}=xa(e);return()=>{const r=e.hoverClass;return r&&"none"!==r?_r("uni-view",Er({class:n.value?r:""},o),[t.default&&t.default()],16):_r("uni-view",null,[t.default&&t.default()])}}});function Kc(e,t,n,o){S(t)&&eo(e,t.bind(n),o)}function Yc(e,t,n){var o;const r=e.mpType||n.$mpType;if(r&&"component"!==r&&(Object.keys(e).forEach((o=>{if(function(e,t,n=!0){return!(n&&!S(t))&&(he.indexOf(e)>-1||0===e.indexOf("on"))}(o,e[o],!1)){const r=e[o];x(r)?r.forEach((e=>Kc(o,e,n,t))):Kc(o,r,n,t)}})),"page"===r)){t.__isVisible=!0;try{Vs(n,"onLoad",t.attrs.__pageQuery),delete t.attrs.__pageQuery,"preloadPage"!==(null==(o=n.$page)?void 0:o.openType)&&Vs(n,"onShow")}catch(i){console.error(i.message+"\n"+i.stack)}}}function Jc(e,t,n){Yc(e,t,n)}function Gc(e,t,n){return e[t]=n}function Zc(e,...t){const n=this[e];return n?n(...t):(console.error(`method ${e} not found`),null)}function Qc(e){return function(t,n,o){if(!n)throw t;const r=e._instance;if(!r||!r.proxy)throw t;Vs(r.proxy,"onError",t)}}function el(e,t){return e?[...new Set([].concat(e,t))]:t}function tl(e){const t=e._context.config;var n;t.errorHandler=me(e,Qc),n=t.optionMergeStrategies,he.forEach((e=>{n[e]=el}));const o=t.globalProperties;o.$set=Gc,o.$applyOptions=Jc,o.$callMethod=Zc,function(e){ge.forEach((t=>t(e)))}(e)}const nl=Symbol("upm");function ol(){return On(nl)}function rl(e){const t=function(e){return Ot(JSON.parse(JSON.stringify(Is(__uniRoutes[0].meta,e))))}(e);return $n(nl,t),t}function il(){const e=location.href,t=e.indexOf("?"),n=e.indexOf("#",t>-1?t:0);let o={};t>-1&&(o=ue(e.slice(t+1,n>-1?n:e.length)));const{meta:r}=__uniRoutes[0],i=Q(r.route);return{meta:r,query:o,path:i,matched:[{path:i}]}}function sl(){return history.state&&history.state.__id__||1}const al=window.CSS&&window.CSS.supports;function cl(e){return al&&(al(e)||al.apply(window.CSS,e.split(":")))}const ll=cl("top:env(a)"),ul=cl("top:constant(a)"),dl=(()=>ll?"env":ul?"constant":"")();function fl(e){var t,n;As({"--window-top":(n=0,dl?`calc(${n}px + ${dl}(safe-area-inset-top))`:`${n}px`),"--window-bottom":(t=0,dl?`calc(${t}px + ${dl}(safe-area-inset-bottom))`:`${t}px`)})}const pl=new Map;function hl(){const e=[],t=pl.values();for(const n of t)n.$.__isTabBar?n.$.__isActive&&e.push(n):e.push(n);return e}function gl(e){const t=ol();return function(e,t,n,o,r,i){const{id:s,route:a}=o,c=_e(o.navigationBar,__uniConfig.themeConfig,i).titleColor;return{id:s,path:Q(a),route:a,fullPath:t,options:n,meta:o,openType:e,eventChannel:r,statusBarStyle:"#ffffff"===c?"light":"dark"}}("navigateTo",__uniRoutes[0].path,{},t)}function ml(e){e.$route;const t=gl();!function(e,t){e.route=t.route,e.$vm=e,e.$page=t,e.$mpType="page",t.meta.isTabBar&&(e.$.__isTabBar=!0,e.$.__isActive=!0)}(e,t),pl.set(vl(t.path,t.id),e)}function vl(e,t){return e+"$$"+t}function yl(e,t){!function(e){const t=_l(e),{body:n}=document;wl&&n.removeAttribute(wl),t&&n.setAttribute(t,""),wl=t}(e),fl(),function(e){{const t="nvue-dir-"+__uniConfig.nvue["flex-direction"];e.isNVue?(document.body.setAttribute("nvue",""),document.body.setAttribute(t,"")):(document.body.removeAttribute("nvue"),document.body.removeAttribute(t))}}(t),function(e,t){document.removeEventListener("touchmove",Ws),xl&&document.removeEventListener("scroll",xl);if(t.disableScroll)return document.addEventListener("touchmove",Ws);const{onPageScroll:n,onReachBottom:o}=e,r="transparent"===t.navigationBar.type;if(!n&&!o&&!r)return;const i={},s=e.proxy.$page.id;(n||r)&&(i.onPageScroll=function(e,t,n){return o=>{t&&vu.publishHandler("onPageScroll",{scrollTop:o},e),n&&vu.emit(e+".onPageScroll",{scrollTop:o})}}(s,n,r));o&&(i.onReachBottomDistance=t.onReachBottomDistance||50,i.onReachBottom=()=>vu.publishHandler("onReachBottom",{},s));xl=Ds(i),requestAnimationFrame((()=>document.addEventListener("scroll",xl)))}(e,t)}function bl(e){const t=_l(e);t&&function(e){const t=document.querySelector("uni-page-body");t&&t.setAttribute(e,"")}(t)}function _l(e){return e.type.__scopeId}let wl,xl;const Cl={install(e){tl(e),oa(e),ha(e),e.config.warnHandler||(e.config.warnHandler=Sl)}};function Sl(e,t,n){if(t){if("PageMetaHead"===t.$.type.name)return;const e=t.$.parent;if(e&&"PageMeta"===e.type.name)return}const o=[`[Vue warn]: ${e}`];n.length&&o.push("\n",n),console.warn(...o)}const Tl={class:"uni-async-loading"},kl=_r("i",{class:"uni-loading"},null,-1),El=_a({name:"AsyncLoading",render:()=>(cr(),pr("div",Tl,[kl]))});function $l(){window.location.reload()}const Ol=_a({name:"AsyncError",setup(){Zi();const{t:e}=Ji();return()=>_r("div",{class:"uni-async-error",onClick:$l},[e("uni.async.error")],8,["onClick"])}});let Ll;function Al(){return Ll}function Pl(e){Ll=e,Object.defineProperty(Ll.$.ctx,"$children",{get:()=>hl().map((e=>e.$vm))});const t=Ll.$.appContext.app;t.component(El.name)||t.component(El.name,El),t.component(Ol.name)||t.component(Ol.name,Ol),function(e){e.$vm=e,e.$mpType="app";const t=zt(Ji().getLocale());Object.defineProperty(e,"$locale",{get:()=>t.value,set(e){t.value=e}})}(Ll),function(e,t){const n=e.$options||{};n.globalData=y(n.globalData||{},t),Object.defineProperty(e,"globalData",{get:()=>n.globalData,set(e){n.globalData=e}})}(Ll),fa(),ms()}function Ml(e,{clone:t,init:n,setup:o,before:r}){t&&(e=y({},e)),r&&r(e);const i=e.setup;return e.setup=(e,t)=>{const r=Pr();n(r.proxy);const s=o(r);if(i)return i(s||e,t)},e}function Nl(e,t){return e&&(e.__esModule||"Module"===e[Symbol.toStringTag])?Ml(e.default,t):Ml(e,t)}function jl(e){return Nl(e,{clone:!0,init:ml,setup(e){e.$pageInstance=e;const t=il(),n=ce(t.query);e.attrs.__pageQuery=n,e.proxy.$page.options=n;const o=ol();var r,i,s;return no((()=>{yl(e,o)})),oo((()=>{bl(e);const{onReady:n}=e;n&&H(n),Il(t)})),Zn((()=>{if(!e.__isVisible){yl(e,o),e.__isVisible=!0;const{onShow:n}=e;n&&H(n),cn((()=>{Il(t)}))}}),"ba",r),function(e,t){Zn(e,"bda",t)}((()=>{if(e.__isVisible&&!e.__isUnload){e.__isVisible=!1;const{onHide:t}=e;t&&H(t)}})),i=o.id,vu.subscribe(rs(i,"invokeViewApi"),s?s(is):is),so((()=>{!function(e){vu.unsubscribe(rs(e,"invokeViewApi")),Object.keys(os).forEach((t=>{0===t.indexOf(e+".")&&delete os[t]}))}(o.id)})),n}})}function Rl(){const{windowWidth:e,windowHeight:t,screenWidth:n,screenHeight:o}=Gl(),r=90===Math.abs(Number(window.orientation))?"landscape":"portrait";yu.emit("onResize",{deviceOrientation:r,size:{windowWidth:e,windowHeight:t,screenWidth:n,screenHeight:o}})}function Fl(e){A(e.data)&&"WEB_INVOKE_APPSERVICE"===e.data.type&&yu.emit("onWebInvokeAppService",e.data.data,e.data.pageId)}function Bl(){const{emit:e}=yu;"visible"===document.visibilityState?e("onAppEnterForeground",y({},Ac)):e("onAppEnterBackground")}function Il(e){const{tabBarText:t,tabBarIndex:n,route:o}=e.meta;t&&Vs("onTabItemTap",{index:n,text:t,pagePath:o})}const Vl=navigator.cookieEnabled&&(window.localStorage||window.sessionStorage)||{};let Wl;function Hl(){if(Wl=Wl||Vl.__DC_STAT_UUID,!Wl){Wl=Date.now()+""+Math.floor(1e7*Math.random());try{Vl.__DC_STAT_UUID=Wl}catch(e){}}return Wl}function zl(){if(!0!==__uniConfig.darkmode)return T(__uniConfig.darkmode)?__uniConfig.darkmode:"light";try{return window.matchMedia("(prefers-color-scheme: light)").matches?"light":"dark"}catch(e){return"light"}}function Dl(){let e,t="0",n="",o="phone";const r=navigator.language;if($a){e="iOS";const o=ka.match(/OS\s([\w_]+)\slike/);o&&(t=o[1].replace(/_/g,"."));const r=ka.match(/\(([a-zA-Z]+);/);r&&(n=r[1])}else if(Ea){e="Android";const o=ka.match(/Android[\s/]([\w\.]+)[;\s]/);o&&(t=o[1]);const r=ka.match(/\((.+?)\)/),i=r?r[1].split(";"):ka.split(" "),s=[/\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];for(let e=0;e0){n=t.split("Build")[0].trim();break}let o;for(let e=0;e-1&&e.indexOf("MSIE")>-1,n=e.indexOf("Edge")>-1&&!t,o=e.indexOf("Trident")>-1&&e.indexOf("rv:11.0")>-1;if(t){new RegExp("MSIE (\\d+\\.\\d+);").test(e);const t=parseFloat(RegExp.$1);return t>6?t:6}return n?-1:o?11:-1}());if("-1"!==c)a="IE";else{const e=["Version","Firefox","Chrome","Edge{0,1}"],t=["Safari","Firefox","Chrome","Edge"];for(let n=0;n{const e=window.devicePixelRatio,t=Ma(),n=Na(t),o=ja(t,n),r=function(e,t){return e?Math[t?"min":"max"](screen.height,screen.width):screen.height}(t,n),i=Ra(o);let s=window.innerHeight;const a=Es.top,c={left:Es.left,right:i-Es.right,top:Es.top,bottom:s-Es.bottom,width:i-Es.left-Es.right,height:s-Es.top-Es.bottom},{top:l,bottom:u}=function(){const e=document.documentElement.style,t=Ls(),n=Os(e,"--window-bottom"),o=Os(e,"--window-left"),r=Os(e,"--window-right"),i=Os(e,"--top-window-height");return{top:t,bottom:n?n+Es.bottom:0,left:o?o+Es.left:0,right:r?r+Es.right:0,topWindowHeight:i||0}}();return s-=l,s-=u,{windowTop:l,windowBottom:u,windowWidth:i,windowHeight:s,pixelRatio:e,screenWidth:o,screenHeight:r,statusBarHeight:a,safeArea:c,safeAreaInsets:{top:Es.top,right:Es.right,bottom:Es.bottom,left:Es.left},screenTop:r-s}}));let ql,Xl=!0;function Kl(){Xl&&(ql=Dl())}const Yl=lc(0,(()=>{Kl();const{deviceBrand:e,deviceModel:t,brand:n,model:o,platform:r,system:i,deviceOrientation:s,deviceType:a}=ql;return{brand:n,deviceBrand:e,deviceModel:t,devicePixelRatio:window.devicePixelRatio,deviceId:Hl(),deviceOrientation:s,deviceType:a,model:o,platform:r,system:i}})),Jl=lc(0,(()=>{Kl();const{theme:e,language:t,browserName:n,browserVersion:o}=ql;return{appId:__uniConfig.appId,appName:__uniConfig.appName,appVersion:__uniConfig.appVersion,appVersionCode:__uniConfig.appVersionCode,appLanguage:_c?_c():t,enableDebug:!1,hostSDKVersion:void 0,hostPackageName:void 0,hostFontSizeSetting:void 0,hostName:n,hostVersion:o,hostTheme:e,hostLanguage:t,language:t,SDKVersion:"",theme:e,version:""}})),Gl=lc(0,(()=>{Xl=!0,Kl(),Xl=!1;const e=Ul(),t=Yl(),n=Jl();Xl=!0;const{ua:o,browserName:r,browserVersion:i,osname:s,osversion:a}=ql,c=y(e,t,n,{ua:o,browserName:r,browserVersion:i,uniPlatform:"web",uniCompileVersion:__uniConfig.compilerVersion,uniRuntimeVersion:__uniConfig.compilerVersion,fontSizeSetting:void 0,osName:s.toLocaleLowerCase(),osVersion:a,osLanguage:void 0,osTheme:void 0});return delete c.screenTop,delete c.enableDebug,__uniConfig.darkmode||delete c.theme,function(e){let t={};return A(e)&&Object.keys(e).sort().forEach((n=>{const o=n;t[o]=e[o]})),Object.keys(t)?t:e}(c)}));!function(e={userAction:!1}){if(!Vc){["touchstart","touchmove","touchend","mousedown","mouseup"].forEach((e=>{document.addEventListener(e,(function(){!Wc&&Hc(!0),Wc++,setTimeout((()=>{!--Wc&&Hc(!1)}),0)}),Bc)})),Vc=!0}Ic.push(e)}();const Zl={esc:["Esc","Escape"],enter:["Enter"]},Ql=Object.keys(Zl);function eu(e,{onEsc:t,onEnter:n}){const o=zt(e.visible),{key:r,disable:i}=function(){const e=zt(""),t=zt(!1),n=n=>{if(t.value)return;const o=Ql.find((e=>-1!==Zl[e].indexOf(n.key)));o&&(e.value=o),cn((()=>e.value=""))};return oo((()=>{document.addEventListener("keyup",n)})),so((()=>{document.removeEventListener("keyup",n)})),{key:e,disable:t}}();return Pn((()=>e.visible),(e=>o.value=e)),Pn((()=>o.value),(e=>i.value=!e)),Ln((()=>{const{value:e}=r;"esc"===e?t&&t():"enter"===e&&n&&n()})),o}const tu=cc("request",(({url:e,data:t,header:n,method:o,dataType:r,responseType:i,withCredentials:s,timeout:a=__uniConfig.networkTimeout.request},{resolve:c,reject:l})=>{let u=null;const d=function(e){const t=Object.keys(e).find((e=>"content-type"===e.toLowerCase()));if(!t)return;const n=e[t];if(0===n.indexOf("application/json"))return"json";if(0===n.indexOf("application/x-www-form-urlencoded"))return"urlencoded";return"string"}(n);if("GET"!==o)if(T(t)||t instanceof ArrayBuffer)u=t;else if("json"===d)try{u=JSON.stringify(t)}catch(g){u=t.toString()}else if("urlencoded"===d){const e=[];for(const n in t)w(t,n)&&e.push(encodeURIComponent(n)+"="+encodeURIComponent(t[n]));u=e.join("&")}else u=t.toString();const f=new XMLHttpRequest,p=new nu(f);f.open(o,e);for(const m in n)w(n,m)&&f.setRequestHeader(m,n[m]);const h=setTimeout((function(){f.onload=f.onabort=f.onerror=null,p.abort(),l("timeout")}),a);return f.responseType=i,f.onload=function(){clearTimeout(h);const e=f.status;let t="text"===i?f.responseText:f.response;if("text"===i&&"json"===r)try{t=JSON.parse(t)}catch(g){}c({data:t,statusCode:e,header:ou(f.getAllResponseHeaders()),cookies:[]})},f.onabort=function(){clearTimeout(h),l("abort")},f.onerror=function(){clearTimeout(h),l()},f.withCredentials=s,f.send(u),p}),0,Tc);class nu{constructor(e){this._xhr=e}abort(){this._xhr&&(this._xhr.abort(),delete this._xhr)}onHeadersReceived(e){throw new Error("Method not implemented.")}offHeadersReceived(e){throw new Error("Method not implemented.")}}function ou(e){const t={};return e.split("\n").forEach((e=>{const n=e.match(/(\S+\s*):\s*(.*)/);n&&3===n.length&&(t[n[1]]=n[2])})),t}const ru={title:{type:String,default:""},icon:{default:"success",validator:e=>-1!==$c.indexOf(e)},image:{type:String,default:""},duration:{type:Number,default:1500},mask:{type:Boolean,default:!1},visible:{type:Boolean}},iu={light:"#fff",dark:"rgba(255,255,255,0.9)"},su=e=>iu[e],au=qn({name:"Toast",props:ru,setup(e){Qi(),es();const{Icon:t}=function(e){const t=zt(su(zl())),n=({theme:e})=>t.value=su(e);Ln((()=>{var t;e.visible?(t=n,__uniConfig.darkmode&&yu.on("onThemeChange",t)):function(e){yu.off("onThemeChange",e)}(n)}));return{Icon:Vr((()=>{switch(e.icon){case"success":return _r(Ns(Ps,t.value,38),{class:"uni-toast__icon"});case"error":return _r(Ns(Ms,t.value,38),{class:"uni-toast__icon"});case"loading":return _r("i",{class:["uni-toast__icon","uni-loading"]},null,2);default:return null}}))}}(e),n=eu(e,{});return()=>{const{mask:o,duration:r,title:i,image:s}=e;return _r(pi,{name:"uni-fade"},{default:()=>[po(_r("uni-toast",{"data-duration":r},[o?_r("div",{class:"uni-mask",style:"background: transparent;",onTouchmove:$s},null,40,["onTouchmove"]):"",s||t.value?_r("div",{class:"uni-toast"},[s?_r("img",{src:s,class:"uni-toast__icon"},null,10,["src"]):t.value,_r("p",{class:"uni-toast__content"},[i])]):_r("div",{class:"uni-sample-toast"},[_r("p",{class:"uni-simple-toast__text"},[i])])],8,["data-duration"]),[[$i,n.value]])]})}}});let cu,lu,uu="";const du=Ce();function fu(e){cu?y(cu,e):(cu=Ot(y(e,{visible:!1})),cn((()=>{var e,t,n;du.run((()=>{Pn([()=>cu.visible,()=>cu.duration],(([e,t])=>{if(e){if(lu&&clearTimeout(lu),"onShowLoading"===uu)return;lu=setTimeout((()=>{hu("onHideToast")}),t)}else lu&&clearTimeout(lu)}))})),yu.on("onHidePopup",(()=>hu("onHidePopup"))),(e=au,t=cu,n=()=>{},t.onClose=(...e)=>(t.visible=!1,n.apply(null,e)),Pi(qn({setup:()=>()=>(cr(),pr(e,t,null,16))}))).mount(function(e){let t=document.getElementById(e);return t||(t=document.createElement("div"),t.id=e,document.body.append(t)),t}("u-a-t"))}))),setTimeout((()=>{cu.visible=!0}),10)}const pu=uc("showToast",((e,{resolve:t,reject:n})=>{fu(e),uu="onShowToast",t()}),0,Oc);function hu(e){const{t:t}=Ji();if(!uu)return;let n="";if("onHideToast"===e&&"onShowToast"!==uu?n=t("uni.showToast.unpaired"):"onHideLoading"===e&&"onShowLoading"!==uu&&(n=t("uni.showLoading.unpaired")),n)return console.warn(n);uu="",setTimeout((()=>{cu.visible=!1}),10)}function gu(e){function t(){var t;t=e.navigationBar.titleText,document.title=t,yu.emit("onNavigationBarChange",{titleText:t})}Ln(t),Jn(t)}const mu=_a({name:"Layout",setup(e,{emit:t}){const n=zt(null);As({"--status-bar-height":"0px","--top-window-height":"0px","--window-left":"0px","--window-right":"0px","--window-margin":"0px","--tab-bar-height":"0px"});const{layoutState:o,windowState:r}=function(){il();{const e=Ot({marginWidth:0,leftWindowWidth:0,rightWindowWidth:0});return Pn((()=>e.marginWidth),(e=>As({"--window-margin":e+"px"}))),Pn((()=>e.leftWindowWidth+e.marginWidth),(e=>{As({"--window-left":e+"px"})})),Pn((()=>e.rightWindowWidth+e.marginWidth),(e=>{As({"--window-right":e+"px"})})),{layoutState:e,windowState:Vr((()=>({})))}}}();!function(e,t){const n=il();function o(){const o=document.body.clientWidth,r=hl();let i={};if(r.length>0){i=r[r.length-1].$page.meta}else{const e=qs(n.path,!0);e&&(i=e.meta)}const s=parseInt(String((w(i,"maxWidth")?i.maxWidth:__uniConfig.globalStyle.maxWidth)||Number.MAX_SAFE_INTEGER));let a=!1;a=o>s,a&&s?(e.marginWidth=(o-s)/2,cn((()=>{const e=t.value;e&&e.setAttribute("style","max-width:"+s+"px;margin:0 auto;")}))):(e.marginWidth=0,cn((()=>{const e=t.value;e&&e.removeAttribute("style")})))}Pn([()=>n.path],o),oo((()=>{o(),window.addEventListener("resize",o)}))}(o,n);const i=function(e){const t=zt(!1);return Vr((()=>({"uni-app--showtabbar":e&&e.value,"uni-app--maxwidth":t.value})))}(!1);return()=>{const e=_r(__uniRoutes[0].component);return _r("uni-app",{ref:n,class:i.value},[e,!1],2)}}});const vu=y(ss,{publishHandler(e,t,n){yu.subscribeHandler(e,t,n)}}),yu=y(sa,{publishHandler(e,t,n){vu.subscribeHandler(e,t,n)}}),bu=_a({name:"PageBody",setup:(e,t)=>()=>_r(nr,null,[!1,_r("uni-page-wrapper",null,[_r("uni-page-body",null,[yo(t.slots,"default")])],16)])}),_u=_a({name:"Page",setup(e,t){const n=rl(sl());return n.navigationBar,gu(n),()=>_r("uni-page",{"data-page":n.route},[wu(t)])}});function wu(e){return cr(),pr(bu,{key:0},{default:Cn((()=>[yo(e.slots,"page")])),_:3})}const xu={loading:"AsyncLoading",error:"AsyncError",delay:200,timeout:6e4,suspensible:!0};window.uni={},window.wx={},window.rpx2px=bc;const Cu=Object.assign({}),Su=Object.assign;window.__uniConfig=Su({globalStyle:{backgroundColor:"#F8F8F8",navigationBar:{backgroundColor:"#F8F8F8",titleText:"uni-app",type:"default",titleColor:"#000000"},isNVue:!1},uniIdRouter:{},compilerVersion:"3.98"},{appId:"__UNI__F01D55C",appName:"H5_download",appVersion:"1.0.0",appVersionCode:"100",async:xu,debug:!1,networkTimeout:{request:6e4,connectSocket:6e4,uploadFile:6e4,downloadFile:6e4},sdkConfigs:{},qqMapKey:void 0,bMapKey:void 0,googleMapKey:void 0,aMapKey:void 0,aMapSecurityJsCode:void 0,aMapServiceHost:void 0,nvue:{"flex-direction":"column"},locale:"",fallbackLocale:"",locales:Object.keys(Cu).reduce(((e,t)=>{const n=t.replace(/\.\/locale\/(uni-app.)?(.*).json/,"$2");return Su(e[n]||(e[n]={}),Cu[t].default),e}),{}),router:{mode:"hash",base:"./",assets:"assets",routerBase:"/"},darkmode:!1,themeConfig:{}}),window.__uniLayout=window.__uniLayout||{};const Tu={delay:xu.delay,timeout:xu.timeout,suspensible:xu.suspensible};xu.loading&&(Tu.loadingComponent={name:"SystemAsyncLoading",render:()=>_r(go(xu.loading))}),xu.error&&(Tu.errorComponent={name:"SystemAsyncError",render:()=>_r(go(xu.error))});const ku=()=>t((()=>import("./pages-index-index.6b2190c9.js")),["./pages-index-index.6b2190c9.js","./index-bd048ef9.css"],import.meta.url).then((e=>jl(e.default||e))),Eu=function(e){S(e)&&(e={loader:e});const{loader:t,loadingComponent:n,errorComponent:o,delay:r=200,timeout:i,suspensible:s=!0,onError:a}=e;let c,l=null,u=0;const d=()=>{let e;return l||(e=l=t().catch((e=>{if(e=e instanceof Error?e:new Error(String(e)),a)return new Promise(((t,n)=>{a(e,(()=>t((u++,l=null,d()))),(()=>n(e)),u+1)}));throw e})).then((t=>e!==l&&l?l:(t&&(t.__esModule||"Module"===t[Symbol.toStringTag])&&(t=t.default),c=t,t))))};return qn({name:"AsyncComponentWrapper",__asyncLoader:d,get __asyncResolved(){return c},setup(){const e=Ar;if(c)return()=>Kn(c,e);const t=t=>{l=null,Gt(t,e,13,!o)};if(s&&e.suspense||Rr)return d().then((t=>()=>Kn(t,e))).catch((e=>(t(e),()=>o?_r(o,{error:e}):null)));const a=zt(!1),u=zt(),f=zt(!!r);return r&&setTimeout((()=>{f.value=!1}),r),null!=i&&setTimeout((()=>{if(!a.value&&!u.value){const e=new Error(`Async component timed out after ${i}ms.`);t(e),u.value=e}}),i),d().then((()=>{a.value=!0,e.parent&&Yn(e.parent.vnode)&&ln(e.parent.update)})).catch((e=>{t(e),u.value=e})),()=>a.value&&c?Kn(c,e):u.value&&o?_r(o,{error:u.value}):n&&!f.value?_r(n):void 0}})}(Su({loader:ku},Tu));window.__uniRoutes=[{path:"/",alias:"/pages/index/index",component:{setup(){const e=Al(),t=e&&e.$route&&e.$route.query||{};return()=>{return e=Eu,n=t,cr(),pr(_u,null,{page:Cn((()=>[_r(e,Su({},n,{ref:"page"}),null,512)])),_:1});var e,n}}},loader:ku,meta:{isQuit:!0,isEntry:!0,titleNView:!1,bounce:"none",navigationBar:{titleText:"",type:"default",style:"custom"},isNVue:!1}}].map((e=>(e.meta.route=(e.alias||e.path).slice(1),e)));const $u={onLaunch:function(){console.log("App Launch")},onShow:function(){console.log("App Show")},onHide:function(){console.log("App Hide")}};Nl($u,{init:Pl,setup(e){const t=il();return no((()=>{var n;n=e,Object.keys(wc).forEach((e=>{wc[e].forEach((t=>{eo(e,t,n)}))}));const{onLaunch:o,onShow:r,onPageNotFound:i,onError:s}=e,a=function({path:e,query:t}){return y(Lc,{path:e,query:t}),y(Ac,Lc),y({},Lc)}({path:t.path.slice(1)||__uniRoutes[0].meta.route,query:ce(t.query)});o&&H(o,a),r&&H(r,a),s&&(e.appContext.config.errorHandler=e=>{H(s,e)})})),oo((()=>{window.addEventListener("resize",function(e,t,{clearTimeout:n,setTimeout:o}){let r;const i=function(){n(r),r=o((()=>e.apply(this,arguments)),t)};return i.cancel=function(){n(r)},i}(Rl,50,{setTimeout:setTimeout,clearTimeout:clearTimeout})),window.addEventListener("message",Fl),document.addEventListener("visibilitychange",Bl),function(){let e=null;try{e=window.matchMedia("(prefers-color-scheme: dark)")}catch(t){}if(e){let t=e=>{yu.emit("onThemeChange",{theme:e.matches?"dark":"light"})};e.addEventListener?e.addEventListener("change",t):e.addListener(t)}}()})),t.query},before(e){e.mpType="app";const{setup:t}=e,n=()=>(cr(),pr(mu));e.setup=(e,o)=>{const r=t&&t(e,o);return S(r)?n:r},e.render=n}}),Pi($u).use(Cl).mount("#app");export{Y as O,Rr as a,fr as b,pr as c,br as d,Cr as e,Xc as f,Pr as g,zt as h,eo as i,_r as j,xr as k,Gl as l,Rc as m,cr as o,tu as r,pu as s,Cn as w}; diff --git a/unpackage/dist/build/h5/assets/index-bd048ef9.css b/unpackage/dist/build/h5/assets/index-bd048ef9.css new file mode 100644 index 0000000..7d38fa8 --- /dev/null +++ b/unpackage/dist/build/h5/assets/index-bd048ef9.css @@ -0,0 +1 @@ +.my-cion[data-v-bd303882]{display:inline-block}.icon[data-v-bd303882]{width:16px;height:16px}a[data-v-7a448bbd]{text-decoration:none;color:inherit}.content[data-v-7a448bbd]{overflow:hidden;background-color:#f49a2b;position:relative;width:100vw;height:100vh}.content .bg[data-v-7a448bbd]{position:absolute;top:0;left:0;z-index:1;width:100vw;height:100vh;background-color:#f49a2b}.content .download[data-v-7a448bbd]{position:absolute;top:60vh;left:0;z-index:100;width:100vw;height:6.25rem;display:flex;flex-direction:column;justify-content:space-between;align-items:center;font-weight:700}.content .download .btn[data-v-7a448bbd]{width:10.9375rem;height:2.5rem;line-height:2.5rem;background-color:#fc902e;text-align:center;color:#fff;border-radius:.25rem;box-shadow:inset 0 0 5px 1px rgba(0,0,0,.1)}.content .tip[data-v-7a448bbd]{position:absolute;top:0;left:0;width:100%;height:100%;z-index:10000}.content .tip uni-image[data-v-7a448bbd]{width:100%;height:100%}.content .tip .close[data-v-7a448bbd]{position:absolute;top:65vh;left:50%;transform:translate(-50%);width:9.375rem;height:5rem} diff --git a/unpackage/dist/build/h5/assets/pages-index-index.6b2190c9.js b/unpackage/dist/build/h5/assets/pages-index-index.6b2190c9.js new file mode 100644 index 0000000..7f492e1 --- /dev/null +++ b/unpackage/dist/build/h5/assets/pages-index-index.6b2190c9.js @@ -0,0 +1 @@ +import{i as a,g as e,O as t,a as s,o,c,w as n,b as l,d as i,e as r,f as d,r as p,s as u,h as f,j as h,k as v,l as w,m}from"./index-9d172a4b.js";const g=""+new URL("bg-1998f5fb.jpg",import.meta.url).href,_=""+new URL("tip-7f1d6aaf.png",import.meta.url).href,y=(t=>(o,c=e())=>{!s&&a(t,o,c)})(t),k=(a,e)=>{const t=a.__vccOpts||a;for(const[s,o]of e)t[s]=o;return t},b=k({__name:"my_icon",props:["type"],setup(a){const e=a;return(a,t)=>{const s=d;return o(),c(s,{class:"my-cion"},{default:n((()=>["ios"!=e.type?(o(),l("svg",{key:0,t:"1694421309742",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"1505",width:"200",height:"200"},[i("path",{d:"M911.020879 320.237361c-36.202548 0-66.192962 28.664228-66.192962 63.470791V630.54159c0 34.806563 28.966692 63.494057 66.192962 63.494057 36.179281 0 66.169695-28.687495 66.169695-63.517323V383.731418c-1.023722-34.806563-29.990414-63.470791-66.169695-63.47079z m-798.317365 0C76.547499 320.237361 46.533818 348.901589 46.533818 383.684885V630.54159c0 34.806563 28.943425 63.494057 66.169696 63.494057 37.22627 0 66.192962-28.687495 66.192961-63.517323V383.731418c0-34.806563-28.966692-63.470791-66.192961-63.47079z m106.513665 2.047445v451.601191c0 26.616783 22.754558 49.138677 51.697983 49.138677h58.957106v137.225338c0 34.829829 28.943425 63.494057 66.169695 63.494057 36.202548 0 66.192962-28.664228 66.192962-63.494057v-137.225338h103.395965v137.225338c0 34.829829 28.966692 63.494057 66.192962 63.494057C667.979867 1023.744069 697.993547 995.079841 697.993547 960.250012v-137.225338h58.933839c28.966692 0 51.721249-21.498171 51.72125-49.138677V322.26154H219.217179zM651.46071 88.783026L706.276393 15.051744c2.047445-5.118612 2.047445-11.260947-3.117701-13.308391-4.141423-3.071167-10.33029-1.023722-13.44799 3.071167l-55.839405 76.802449A363.142266 363.142266 0 0 0 511.862196 60.118798c-43.438404 0-84.78283 7.166057-122.009101 21.498171l-55.839405-76.779183c-3.1177-5.118612-9.306568-6.165601-13.44799-3.094433a9.655564 9.655564 0 0 0-2.093978 13.308391l54.815683 73.754548c-85.806553 37.87773-146.811103 109.561567-154.070226 193.530073h588.407734c-9.306568-83.991772-69.310662-155.652342-156.164203-193.553339zM387.782384 205.533916c-18.613135 0-32.061125-13.308392-32.061125-30.711673 0-17.426548 14.471713-30.711673 32.061125-30.711673 18.613135 0 32.037859 13.285125 32.037859 30.711673 0 17.403281-14.471713 30.711673-32.037859 30.711673z m252.301047 0c-18.613135 0-32.061125-13.308392-32.061125-30.711673 0-17.426548 14.494979-30.711673 32.061125-30.711673 18.613135 0 32.061125 13.285125 32.061125 30.711673 0 17.403281-14.471713 30.711673-32.061125 30.711673z",fill:"#ffffff","p-id":"1506"})])):r("",!0),"ios"==e.type?(o(),l("svg",{key:1,t:"1694421562754",class:"icon",viewBox:"0 0 1024 1024",version:"1.1",xmlns:"http://www.w3.org/2000/svg","p-id":"2747",width:"200",height:"200"},[i("path",{d:"M791.488 544.095c-1.28-129.695 105.76-191.871 110.528-194.975-60.16-88.032-153.856-100.064-187.232-101.472-79.744-8.064-155.584 46.944-196.064 46.944-40.352 0-102.816-45.76-168.96-44.544-86.912 1.28-167.072 50.528-211.808 128.384-90.304 156.703-23.136 388.831 64.896 515.935 43.008 62.208 94.304 132.064 161.632 129.568 64.832-2.592 89.376-41.952 167.744-41.952s100.416 41.952 169.056 40.672c69.76-1.312 113.984-63.392 156.704-125.792 49.376-72.16 69.728-142.048 70.912-145.632-1.536-0.704-136.064-52.224-137.408-207.136zM662.56 163.52C698.304 120.16 722.432 60 715.84 0c-51.488 2.112-113.888 34.304-150.816 77.536-33.152 38.368-62.144 99.616-54.368 158.432 57.472 4.48 116.128-29.216 151.904-72.448z","p-id":"2748",fill:"#ffffff"})])):r("",!0)])),_:1})}}},[["__scopeId","data-v-bd303882"]]),C={};["options","get","post","put","head","delete","trace","connect"].forEach((a=>{C[a]=(e,t,s)=>((a,e,t,{noAuth:s=!1})=>new Promise(((s,o)=>{p({url:"/api"+a,method:e||"GET",data:"GET"!=e&&t||{},params:"GET"==e?t:{},success:a=>{s(a.data)},fail:a=>{u({title:"网络错误",icon:"none"}),o("请求失败")}})})))(e,a,t,s||{})}));const z=k({__name:"index",setup(a){const e=f({}),t=f({}),s=f("");(async()=>{let a=await C.get("/app/version?type=3");200==a.status&&(e.value=a.data.android,t.value=a.data.ios)})();const i=()=>{"ios"==w().platform?(x(),window.location.href=t.value.dow_url):u({icon:"none",title:"您不是IOS设备"})},p=f(!1),k=()=>{p.value=!0},z=f(!0);(()=>{try{let a=window.navigator.userAgent.toLowerCase();"micromessenger"!=a.match(/MicroMessenger/i)&&"alipayclient"!=match(/AlipayClient/i)&&"qq"!=a.match(/QQ/i)||(z.value=!1)}catch(a){}})();const x=()=>{var a;s.value&&(a={code:s.value},C.post("/promote_writing",a)).then((a=>{console.log(a)})).catch((a=>{console.log(a)}))};return y((a=>{s.value=a.code})),(a,t)=>{const s=m,u=d;return o(),c(u,{class:"content"},{default:n((()=>[h(s,{src:g,class:"bg"}),h(u,{class:"download"},{default:n((()=>[z.value?(o(),l("a",{key:0,href:e.value.dow_url,onClick:x,download:"huinongshenghuo.apk"},[h(u,{class:"btn"},{default:n((()=>[h(b),v(" Android下载 ")])),_:1})],8,["href"])):(o(),c(u,{key:1,class:"btn",onClick:k},{default:n((()=>[h(b),v(" Android下载 ")])),_:1})),h(u,{class:"btn",onClick:i},{default:n((()=>[h(b,{type:"ios"}),v(" IOS下载 ")])),_:1})])),_:1}),p.value?(o(),c(u,{key:0,class:"tip"},{default:n((()=>[h(s,{src:_}),h(u,{class:"close",onClick:t[0]||(t[0]=a=>p.value=!1)})])),_:1})):r("",!0)])),_:1})}}},[["__scopeId","data-v-7a448bbd"]]);export{z as default}; diff --git a/unpackage/dist/build/h5/assets/tip-7f1d6aaf.png b/unpackage/dist/build/h5/assets/tip-7f1d6aaf.png new file mode 100644 index 0000000..714237d Binary files /dev/null and b/unpackage/dist/build/h5/assets/tip-7f1d6aaf.png differ diff --git a/unpackage/dist/build/h5/assets/uni.0bc89cf1.css b/unpackage/dist/build/h5/assets/uni.0bc89cf1.css new file mode 100644 index 0000000..3bf4942 --- /dev/null +++ b/unpackage/dist/build/h5/assets/uni.0bc89cf1.css @@ -0,0 +1 @@ +uni-image{width:320px;height:240px;display:inline-block;overflow:hidden;position:relative}uni-image[hidden]{display:none}uni-image>div{width:100%;height:100%;background-repeat:no-repeat}uni-image>img{-webkit-touch-callout:none;user-select:none;display:block;position:absolute;top:0;left:0;width:100%;height:100%;opacity:0}uni-image>.uni-image-will-change{will-change:transform}@keyframes once-show{0%{top:0}}uni-resize-sensor,uni-resize-sensor>div{position:absolute;left:0;top:0;right:0;bottom:0;overflow:hidden}uni-resize-sensor{display:block;z-index:-1;visibility:hidden;animation:once-show 1ms}uni-resize-sensor>div>div{position:absolute;left:0;top:0}uni-resize-sensor>div:first-child>div{width:100000px;height:100000px}uni-resize-sensor>div:last-child>div{width:200%;height:200%}uni-view{display:block}uni-view[hidden]{display:none}uni-toast{position:fixed;top:0;right:0;bottom:0;left:0;z-index:999;display:block;box-sizing:border-box;pointer-events:none;font-size:16px}.uni-sample-toast{position:fixed;z-index:999;top:50%;left:50%;transform:translate(-50%,-50%);text-align:center;max-width:80%}.uni-simple-toast__text{display:inline-block;vertical-align:middle;color:#fff;background-color:rgba(17,17,17,.7);padding:10px 20px;border-radius:5px;font-size:13px;text-align:center;max-width:100%;word-break:break-all;white-space:normal}uni-toast .uni-mask{pointer-events:auto}.uni-toast{position:fixed;z-index:999;width:8em;top:50%;left:50%;transform:translate(-50%,-50%);background:rgba(17,17,17,.7);text-align:center;border-radius:5px;color:#fff}.uni-toast *{box-sizing:border-box}.uni-toast__icon{margin:20px 0 0;width:38px!important;height:38px!important;vertical-align:baseline!important}.uni-icon_toast{margin:15px 0 0}.uni-icon_toast.uni-icon-success-no-circle:before{color:#fff;font-size:55px}.uni-icon_toast.uni-loading{margin:20px 0 0;width:38px;height:38px;vertical-align:baseline}.uni-toast__content{margin:0 0 15px} diff --git a/unpackage/dist/build/h5/index.html b/unpackage/dist/build/h5/index.html new file mode 100644 index 0000000..5003ffa --- /dev/null +++ b/unpackage/dist/build/h5/index.html @@ -0,0 +1,24 @@ + + + + + + + + 惠农生活 + + + + + + +
+ + + diff --git a/unpackage/dist/build/h5/static/bg.jpg b/unpackage/dist/build/h5/static/bg.jpg new file mode 100644 index 0000000..5b24e4b Binary files /dev/null and b/unpackage/dist/build/h5/static/bg.jpg differ diff --git a/unpackage/dist/build/h5/static/logo.png b/unpackage/dist/build/h5/static/logo.png new file mode 100644 index 0000000..b5771e2 Binary files /dev/null and b/unpackage/dist/build/h5/static/logo.png differ diff --git a/unpackage/dist/build/h5/static/tip.png b/unpackage/dist/build/h5/static/tip.png new file mode 100644 index 0000000..714237d Binary files /dev/null and b/unpackage/dist/build/h5/static/tip.png differ diff --git a/utils/request.js b/utils/request.js new file mode 100644 index 0000000..680be74 --- /dev/null +++ b/utils/request.js @@ -0,0 +1,33 @@ +// const BASE_URL = 'https://crmeb-test.shop.lihaink.cn' +const BASE_URL = '' + +const http = (url, method, data, { + noAuth = false +})=> { + return new Promise((reslove, reject) => { + uni.request({ + url: BASE_URL + '/api' + url, + method: method || 'GET', + data: method != 'GET' ? data || {} : {}, + params: method == 'GET' ? data : {}, + success: (res) => { + reslove(res.data); + }, + fail: (message) => { + uni.showToast({ + title: '网络错误', + icon: 'none' + }) + reject('请求失败'); + } + }) + }); +} + +const request = {}; + +['options', 'get', 'post', 'put', 'head', 'delete', 'trace', 'connect'].forEach((method) => { + request[method] = (api, data, opt) => http(api, method, data, opt || {}) +}); + +export default request; \ No newline at end of file