From 58b4a4f28133acd120888e8e9fba618177628b2e Mon Sep 17 00:00:00 2001 From: helang Date: Tue, 16 May 2023 23:50:23 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E5=9B=BE=E7=89=87=E5=8E=8B=E7=BC=A9)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../helang-compress/helang-compress.vue | 48 ++++++++++++------- uniapp-extend/pages/component/compress.vue | 4 +- .../unpackage/dist/build/h5/index.html | 2 +- .../dist/build/h5/static/js/index.5e459b45.js | 1 - ...es-helang-tabBar-helang-tabBar.911a6985.js | 1 - ...fall-pages-waterfall-waterfall.6ef05542.js | 1 - ...76\347\211\207\345\216\213\347\274\251.md" | 32 ++----------- 7 files changed, 38 insertions(+), 51 deletions(-) delete mode 100644 uniapp-extend/unpackage/dist/build/h5/static/js/index.5e459b45.js delete mode 100644 uniapp-extend/unpackage/dist/build/h5/static/js/uni_modules-helang-tabBar-pages-helang-tabBar-helang-tabBar.911a6985.js delete mode 100644 uniapp-extend/unpackage/dist/build/h5/static/js/uni_modules-helang-waterfall-pages-waterfall-waterfall.6ef05542.js diff --git a/uniapp-extend/components/helang-compress/helang-compress.vue b/uniapp-extend/components/helang-compress/helang-compress.vue index 290272f..77fbd58 100644 --- a/uniapp-extend/components/helang-compress/helang-compress.vue +++ b/uniapp-extend/components/helang-compress/helang-compress.vue @@ -1,6 +1,6 @@ @@ -17,10 +17,10 @@ }, methods: { // 压缩 - compress(params) { + compressFun(params) { return new Promise(async (resolve, reject) => { // 等待图片信息 - let info = await this.getImageInfo(params.src).then(info=>info).catch(err=>err); + let info = await this.getImageInfo(params.src).then(info=>info).catch(()=>null); if(!info){ reject('获取图片信息异常'); @@ -52,30 +52,31 @@ height = maxSize; } } - + // 设置画布尺寸 this.$set(this,"canvasSize",{ - width: `${width}rpx`, - height: `${height}rpx` + width: `${width}px`, + height: `${height}px` }); + // Vue.nextTick 回调在 App 有异常,则使用 setTimeout 等待DOM更新 setTimeout(() => { - const ctx = uni.createCanvasContext('myCanvas', this); + const ctx = uni.createCanvasContext('compress-canvas', this); ctx.clearRect(0,0,width, height) - ctx.drawImage(info.path, 0, 0, uni.upx2px(width), uni.upx2px(height)); + ctx.drawImage(info.path, 0, 0, width, height); ctx.draw(false, () => { uni.canvasToTempFilePath({ x: 0, y: 0, - width: uni.upx2px(width), - height: uni.upx2px(height), + width: width, + height: height, destWidth: width, destHeight: height, - canvasId: 'myCanvas', + canvasId: 'compress-canvas', fileType: params.fileType || 'png', quality: params.quality || 0.9, - success: (res) => { + success: (res) => { // 在H5平台下,tempFilePath 为 base64 resolve(res.tempFilePath); }, @@ -102,11 +103,18 @@ }); }, // 批量压缩 - batchCompress(params){ + compress(params){ // index:进度,done:成功,fail:失败 let [index,done,fail] = [0,0,0]; // 压缩完成的路径集合 let paths = []; + // 待压缩的图片 + let waitList = []; + if(typeof params.src == 'string'){ + waitList = [params.src]; + }else{ + waitList = params.src; + } // 批量压缩方法 let batch = ()=>{ return new Promise((resolve, reject)=>{ @@ -115,7 +123,7 @@ params.progress && params.progress({ done, fail, - count:params.batchSrc.length + count:waitList.length }); // 等待图片压缩方法返回 let path = await next(); @@ -128,7 +136,7 @@ index++; // 压缩完成 - if(index >= params.batchSrc.length){ + if(index >= waitList.length){ resolve(true); }else{ start(); @@ -139,8 +147,8 @@ } // 依次调用压缩方法 let next = ()=>{ - return this.compress({ - src:params.batchSrc[index], + return this.compressFun({ + src:waitList[index], maxSize:params.maxSize, fileType:params.fileType, quality:params.quality, @@ -153,7 +161,11 @@ // 批量压缩方法回调 let res = await batch(); if(res){ - resolve(paths); + if(typeof params.src == 'string'){ + resolve(paths[0]); + }else{ + resolve(paths); + } }else{ reject(null); } diff --git a/uniapp-extend/pages/component/compress.vue b/uniapp-extend/pages/component/compress.vue index 0404952..1371aea 100644 --- a/uniapp-extend/pages/component/compress.vue +++ b/uniapp-extend/pages/component/compress.vue @@ -168,8 +168,8 @@ }, // 批量压缩 batchCompress() { - this.$refs.helangCompress.batchCompress({ - batchSrc: this.paths, + this.$refs.helangCompress.compress({ + src: this.paths, maxSize: this.params.maxSize, fileType: this.params.fileType, quality: this.params.quality, diff --git a/uniapp-extend/unpackage/dist/build/h5/index.html b/uniapp-extend/unpackage/dist/build/h5/index.html index 91b0780..ff9ce27 100644 --- a/uniapp-extend/unpackage/dist/build/h5/index.html +++ b/uniapp-extend/unpackage/dist/build/h5/index.html @@ -12,4 +12,4 @@

使用手机扫描二维码获得更佳体验

- \ No newline at end of file + \ No newline at end of file diff --git a/uniapp-extend/unpackage/dist/build/h5/static/js/index.5e459b45.js b/uniapp-extend/unpackage/dist/build/h5/static/js/index.5e459b45.js deleted file mode 100644 index 827f18a..0000000 --- a/uniapp-extend/unpackage/dist/build/h5/static/js/index.5e459b45.js +++ /dev/null @@ -1 +0,0 @@ -(function(e){function n(n){for(var a,r,s=n[0],p=n[1],l=n[2],g=0,u=[];g1&&void 0!==arguments[1]?arguments[1]:[],t=n.map((function(e,n){return"".concat(e.name,":").concat(e.value)})).join(";");e.skin=t}}}),s=r;n.default=s},addd:function(e,n,t){"use strict";t("d3b7"),t("ac1f"),Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;var a={request:"https://request.xxx.com",upload:"https://upload.xxx.com",images:"https://images.xxx.com"},o={email:/^[0-9a-zA-Z_]+@[0-9a-zA-Z_]+[\.]{1}[0-9a-zA-Z]+[\.]?[0-9a-zA-Z]+$/,mobile:/^(?:1\d{2})-?\d{5}(\d{3}|\*{3})$/,qq:/^[1-9][0-9]{4,9}$/,befitName:/^[a-z0-9A-Z\u4e00-\u9fa5]+$/,befitPwd:/^[a-z0-9A-Z_]+$/,allNumber:/^[0-9]+.?[0-9]$/},i=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"加载中";uni.showLoading({title:e,mask:!0})},r=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"none",t=arguments.length>2&&void 0!==arguments[2]?arguments[2]:1500;uni.showToast({title:e,icon:n,duration:t,position:"center",mask:!0})},s=function(e,n){return n?e.currentTarget.dataset[n]:e.currentTarget.dataset},p=function(e){return new Promise((function(n,t){var a=uni.createSelectorQuery().select(e);a.fields({size:!0,rect:!0},(function(e){n(e)})).exec()}))},l=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.url||"";/http:|https:/.test(n)||(n=a.request+n);var t={"content-type":"application/x-www-form-urlencoded"};return new Promise((function(a,o){uni.request({url:n,method:e.method||"GET",dataType:"json",header:t,data:e.data,success:function(e){a(e.data)},fail:function(e){uni.hideLoading(),r("请求错误,请重试!"),o(e)}})}))},g={data:{},set:function(e,n){this.data[e]=n},get:function(e){return this.data[e]},del:function(e){delete this.data[e]}},c={URI:a,regExps:o,showLoading:i,showToast:r,getData:s,getRect:p,request:l,globalData:g},u=function(e){e.prototype.$iGlobal=c},d={install:u};n.default=d},b9c3:function(e,n,t){"use strict";t.r(n);var a=t("4a76"),o=t.n(a);for(var i in a)"default"!==i&&function(e){t.d(n,e,(function(){return a[e]}))}(i);n["default"]=o.a},c802:function(e,n,t){"use strict";(function(e){var n=t("4ea4");t("13d5"),t("d3b7"),t("ac1f"),t("5319"),t("ddb0");var a=n(t("e143")),o={keys:function(){return[]}};e["____78AB2D6____"]=!0,delete e["____78AB2D6____"],e.__uniConfig={tabBar:{color:"#666666",selectedColor:"#42b983",borderStyle:"black",backgroundColor:"#ffffff",list:[{pagePath:"pages/index/template",iconPath:"static/tabBar/template.png",selectedIconPath:"static/tabBar/template-active.png",text:"模板",redDot:!1,badge:""},{pagePath:"pages/index/component",iconPath:"static/tabBar/component.png",selectedIconPath:"static/tabBar/component-active.png",text:"组件",redDot:!1,badge:""},{pagePath:"pages/index/sdk",iconPath:"static/tabBar/sdk.png",selectedIconPath:"static/tabBar/sdk-active.png",text:"SDK",redDot:!1,badge:""},{pagePath:"pages/index/coding",iconPath:"static/tabBar/coding.png",selectedIconPath:"static/tabBar/coding-active.png",text:"示例",redDot:!1,badge:""}]},globalStyle:{navigationBarTextStyle:"black",navigationBarTitleText:"UNI-APP 河浪插件分享",navigationBarBackgroundColor:"#FFFFFF",backgroundColor:"#f3f3f3"},networkTimeout:{request:5e3,connectSocket:5e3,uploadFile:5e3,downloadFile:5e3}},e.__uniConfig.compilerVersion="3.6.4",e.__uniConfig.uniPlatform="h5",e.__uniConfig.appId="__UNI__78AB2D6",e.__uniConfig.appName="uniapp-extend",e.__uniConfig.appVersion="1.0.0",e.__uniConfig.appVersionCode="100",e.__uniConfig.router={mode:"hash",base:"/uniapp-extend/"},e.__uniConfig.publicPath="/uniapp-extend/",e.__uniConfig["async"]={loading:"AsyncLoading",error:"AsyncError",delay:200,timeout:6e4},e.__uniConfig.debug=!1,e.__uniConfig.networkTimeout={request:6e4,connectSocket:6e4,uploadFile:6e4,downloadFile:6e4},e.__uniConfig.sdkConfigs={},e.__uniConfig.qqMapKey=void 0,e.__uniConfig.googleMapKey=void 0,e.__uniConfig.aMapKey=void 0,e.__uniConfig.aMapSecurityJsCode=void 0,e.__uniConfig.aMapServiceHost=void 0,e.__uniConfig.locale="",e.__uniConfig.fallbackLocale=void 0,e.__uniConfig.locales=o.keys().reduce((function(e,n){var t=n.replace(/\.\/(uni-app.)?(.*).json/,"$2"),a=o(n);return Object.assign(e[t]||(e[t]={}),a.common||a),e}),{}),e.__uniConfig.nvue={"flex-direction":"column"},e.__uniConfig.__webpack_chunk_load__=t.e,a.default.component("pages-index-template",(function(e){var n={component:t.e("pages-index-template").then(function(){return e(t("8271"))}.bind(null,t)).catch(t.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(n.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(n.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),n})),a.default.component("pages-index-component",(function(e){var n={component:t.e("pages-index-component").then(function(){return e(t("bad2"))}.bind(null,t)).catch(t.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(n.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(n.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),n})),a.default.component("pages-index-sdk",(function(e){var n={component:t.e("pages-index-sdk").then(function(){return e(t("ff4d"))}.bind(null,t)).catch(t.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(n.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(n.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),n})),a.default.component("pages-index-coding",(function(e){var n={component:t.e("pages-index-coding").then(function(){return e(t("1982"))}.bind(null,t)).catch(t.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(n.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(n.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),n})),a.default.component("pages-component-pickerColor",(function(e){var n={component:t.e("pages-component-pickerColor").then(function(){return e(t("31b1"))}.bind(null,t)).catch(t.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(n.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(n.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),n})),a.default.component("pages-component-moveVerify",(function(e){var n={component:t.e("pages-component-moveVerify").then(function(){return e(t("38a1"))}.bind(null,t)).catch(t.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(n.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(n.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),n})),a.default.component("pages-template-photoList",(function(e){var n={component:t.e("pages-template-photoList").then(function(){return e(t("7db4"))}.bind(null,t)).catch(t.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(n.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(n.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),n})),a.default.component("pages-sdk-globalJs",(function(e){var n={component:t.e("pages-sdk-globalJs").then(function(){return e(t("7896"))}.bind(null,t)).catch(t.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(n.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(n.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),n})),a.default.component("pages-template-idiom",(function(e){var n={component:t.e("pages-template-idiom").then(function(){return e(t("6886"))}.bind(null,t)).catch(t.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(n.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(n.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),n})),a.default.component("pages-component-asyncSwitch",(function(e){var n={component:t.e("pages-component-asyncSwitch").then(function(){return e(t("6487"))}.bind(null,t)).catch(t.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(n.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(n.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),n})),a.default.component("pages-template-weChat",(function(e){var n={component:t.e("pages-template-weChat").then(function(){return e(t("39ed"))}.bind(null,t)).catch(t.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(n.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(n.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),n})),a.default.component("pages-sdk-webSocket",(function(e){var n={component:t.e("pages-sdk-webSocket").then(function(){return e(t("7714"))}.bind(null,t)).catch(t.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(n.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(n.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),n})),a.default.component("pages-template-goodsList",(function(e){var n={component:t.e("pages-template-goodsList").then(function(){return e(t("2a32"))}.bind(null,t)).catch(t.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(n.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(n.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),n})),a.default.component("pages-component-checkbox",(function(e){var n={component:t.e("pages-component-checkbox").then(function(){return e(t("a852"))}.bind(null,t)).catch(t.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(n.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(n.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),n})),a.default.component("pages-component-highlight",(function(e){var n={component:t.e("pages-component-highlight").then(function(){return e(t("879c"))}.bind(null,t)).catch(t.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(n.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(n.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),n})),a.default.component("pages-sdk-flex",(function(e){var n={component:t.e("pages-sdk-flex").then(function(){return e(t("37f8"))}.bind(null,t)).catch(t.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(n.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(n.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),n})),a.default.component("pages-template-goodsList_scroll",(function(e){var n={component:t.e("pages-template-goodsList_scroll").then(function(){return e(t("367f"))}.bind(null,t)).catch(t.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(n.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(n.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),n})),a.default.component("pages-template-goodsList_swiper",(function(e){var n={component:t.e("pages-template-goodsList_swiper").then(function(){return e(t("f5d8"))}.bind(null,t)).catch(t.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(n.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(n.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),n})),a.default.component("pages-template-swiper_image",(function(e){var n={component:Promise.all([t.e("pages-template-customBar~pages-template-optimized-swiper~pages-template-swiper_image~uni_modules-hel~94e4a1a8"),t.e("pages-template-swiper_image")]).then(function(){return e(t("9e05"))}.bind(null,t)).catch(t.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(n.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(n.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),n})),a.default.component("pages-template-whackMole",(function(e){var n={component:t.e("pages-template-whackMole").then(function(){return e(t("5f5a"))}.bind(null,t)).catch(t.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(n.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(n.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),n})),a.default.component("pages-template-talk",(function(e){var n={component:t.e("pages-template-talk").then(function(){return e(t("ac5a"))}.bind(null,t)).catch(t.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(n.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(n.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),n})),a.default.component("pages-template-gradientNav",(function(e){var n={component:t.e("pages-template-gradientNav").then(function(){return e(t("1e96"))}.bind(null,t)).catch(t.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(n.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(n.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),n})),a.default.component("pages-template-swiper_video",(function(e){var n={component:t.e("pages-template-swiper_video").then(function(){return e(t("0f5d"))}.bind(null,t)).catch(t.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(n.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(n.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),n})),a.default.component("pages-template-customBar",(function(e){var n={component:Promise.all([t.e("pages-template-customBar~pages-template-optimized-swiper~pages-template-swiper_image~uni_modules-hel~94e4a1a8"),t.e("pages-template-customBar")]).then(function(){return e(t("c5ec"))}.bind(null,t)).catch(t.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(n.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(n.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),n})),a.default.component("pages-component-blur",(function(e){var n={component:t.e("pages-component-blur").then(function(){return e(t("44bd"))}.bind(null,t)).catch(t.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(n.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(n.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),n})),a.default.component("pages-template-vote",(function(e){var n={component:t.e("pages-template-vote").then(function(){return e(t("8a5d"))}.bind(null,t)).catch(t.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(n.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(n.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),n})),a.default.component("pages-template-autoSwiper",(function(e){var n={component:t.e("pages-template-autoSwiper").then(function(){return e(t("5ddc"))}.bind(null,t)).catch(t.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(n.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(n.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),n})),a.default.component("pages-component-compress",(function(e){var n={component:t.e("pages-component-compress").then(function(){return e(t("e9af"))}.bind(null,t)).catch(t.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(n.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(n.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),n})),a.default.component("pages-template-table",(function(e){var n={component:t.e("pages-template-table").then(function(){return e(t("6a41"))}.bind(null,t)).catch(t.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(n.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(n.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),n})),a.default.component("pages-component-checkboxs",(function(e){var n={component:t.e("pages-component-checkboxs").then(function(){return e(t("ba96"))}.bind(null,t)).catch(t.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(n.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(n.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),n})),a.default.component("uni_modules-helang-waterfall-pages-waterfall-waterfall",(function(e){var n={component:t.e("uni_modules-helang-waterfall-pages-waterfall-waterfall").then(function(){return e(t("a069"))}.bind(null,t)).catch(t.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(n.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(n.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),n})),a.default.component("pages-template-optimized-swiper",(function(e){var n={component:Promise.all([t.e("pages-template-customBar~pages-template-optimized-swiper~pages-template-swiper_image~uni_modules-hel~94e4a1a8"),t.e("pages-template-optimized-swiper")]).then(function(){return e(t("7e6d"))}.bind(null,t)).catch(t.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(n.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(n.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),n})),a.default.component("pages-template-skin-peeler",(function(e){var n={component:t.e("pages-template-skin-peeler").then(function(){return e(t("0987"))}.bind(null,t)).catch(t.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(n.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(n.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),n})),a.default.component("uni_modules-helang-picker-utils-pages-picker-utils-picker-utils",(function(e){var n={component:t.e("uni_modules-helang-picker-utils-pages-picker-utils-picker-utils").then(function(){return e(t("6f9c"))}.bind(null,t)).catch(t.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(n.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(n.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),n})),a.default.component("uni_modules-helang-tabBar-pages-helang-tabBar-helang-tabBar",(function(e){var n={component:Promise.all([t.e("pages-template-customBar~pages-template-optimized-swiper~pages-template-swiper_image~uni_modules-hel~94e4a1a8"),t.e("uni_modules-helang-tabBar-pages-helang-tabBar-helang-tabBar")]).then(function(){return e(t("bf22"))}.bind(null,t)).catch(t.oe),delay:__uniConfig["async"].delay,timeout:__uniConfig["async"].timeout};return __uniConfig["async"]["loading"]&&(n.loading={name:"SystemAsyncLoading",render:function(e){return e(__uniConfig["async"]["loading"])}}),__uniConfig["async"]["error"]&&(n.error={name:"SystemAsyncError",render:function(e){return e(__uniConfig["async"]["error"])}}),n})),e.__uniRoutes=[{path:"/",alias:"/pages/index/template",component:{render:function(e){return e("Page",{props:Object.assign({isQuit:!0,isEntry:!0,isTabBar:!0,tabBarIndex:0},__uniConfig.globalStyle,{})},[e("pages-index-template",{slot:"page"})])}},meta:{id:1,name:"pages-index-template",isNVue:!1,maxWidth:0,pagePath:"pages/index/template",isQuit:!0,isEntry:!0,isTabBar:!0,tabBarIndex:0,windowTop:44}},{path:"/pages/index/component",component:{render:function(e){return e("Page",{props:Object.assign({isQuit:!0,isTabBar:!0,tabBarIndex:1},__uniConfig.globalStyle,{})},[e("pages-index-component",{slot:"page"})])}},meta:{id:2,name:"pages-index-component",isNVue:!1,maxWidth:0,pagePath:"pages/index/component",isQuit:!0,isTabBar:!0,tabBarIndex:1,windowTop:44}},{path:"/pages/index/sdk",component:{render:function(e){return e("Page",{props:Object.assign({isQuit:!0,isTabBar:!0,tabBarIndex:2},__uniConfig.globalStyle,{})},[e("pages-index-sdk",{slot:"page"})])}},meta:{id:3,name:"pages-index-sdk",isNVue:!1,maxWidth:0,pagePath:"pages/index/sdk",isQuit:!0,isTabBar:!0,tabBarIndex:2,windowTop:44}},{path:"/pages/index/coding",component:{render:function(e){return e("Page",{props:Object.assign({isQuit:!0,isTabBar:!0,tabBarIndex:3},__uniConfig.globalStyle,{})},[e("pages-index-coding",{slot:"page"})])}},meta:{id:4,name:"pages-index-coding",isNVue:!1,maxWidth:0,pagePath:"pages/index/coding",isQuit:!0,isTabBar:!0,tabBarIndex:3,windowTop:44}},{path:"/pages/component/pickerColor",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"颜色选择"})},[e("pages-component-pickerColor",{slot:"page"})])}},meta:{name:"pages-component-pickerColor",isNVue:!1,maxWidth:0,pagePath:"pages/component/pickerColor",windowTop:44}},{path:"/pages/component/moveVerify",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"滑动验证"})},[e("pages-component-moveVerify",{slot:"page"})])}},meta:{name:"pages-component-moveVerify",isNVue:!1,maxWidth:0,pagePath:"pages/component/moveVerify",windowTop:44}},{path:"/pages/template/photoList",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"有入场动画的图片列表"})},[e("pages-template-photoList",{slot:"page"})])}},meta:{name:"pages-template-photoList",isNVue:!1,maxWidth:0,pagePath:"pages/template/photoList",windowTop:44}},{path:"/pages/sdk/globalJs",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"项目全局通用方法"})},[e("pages-sdk-globalJs",{slot:"page"})])}},meta:{name:"pages-sdk-globalJs",isNVue:!1,maxWidth:0,pagePath:"pages/sdk/globalJs",windowTop:44}},{path:"/pages/template/idiom",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"看图猜成语",navigationBarBackgroundColor:"#857ffc"})},[e("pages-template-idiom",{slot:"page"})])}},meta:{name:"pages-template-idiom",isNVue:!1,maxWidth:0,pagePath:"pages/template/idiom",windowTop:44}},{path:"/pages/component/asyncSwitch",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"异步switch"})},[e("pages-component-asyncSwitch",{slot:"page"})])}},meta:{name:"pages-component-asyncSwitch",isNVue:!1,maxWidth:0,pagePath:"pages/component/asyncSwitch",windowTop:44}},{path:"/pages/template/weChat",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"仿微信列表长按弹出菜单"})},[e("pages-template-weChat",{slot:"page"})])}},meta:{name:"pages-template-weChat",isNVue:!1,maxWidth:0,pagePath:"pages/template/weChat",windowTop:44}},{path:"/pages/sdk/webSocket",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"webSocket SDK"})},[e("pages-sdk-webSocket",{slot:"page"})])}},meta:{name:"pages-sdk-webSocket",isNVue:!1,maxWidth:0,pagePath:"pages/sdk/webSocket",windowTop:44}},{path:"/pages/template/goodsList",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"商品双向联动列表"})},[e("pages-template-goodsList",{slot:"page"})])}},meta:{name:"pages-template-goodsList",isNVue:!1,maxWidth:0,pagePath:"pages/template/goodsList",windowTop:44}},{path:"/pages/component/checkbox",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"自定义复选/单选框"})},[e("pages-component-checkbox",{slot:"page"})])}},meta:{name:"pages-component-checkbox",isNVue:!1,maxWidth:0,pagePath:"pages/component/checkbox",windowTop:44}},{path:"/pages/component/highlight",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"指定内容高亮"})},[e("pages-component-highlight",{slot:"page"})])}},meta:{name:"pages-component-highlight",isNVue:!1,maxWidth:0,pagePath:"pages/component/highlight",windowTop:44}},{path:"/pages/sdk/flex",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"flex布局CSS库"})},[e("pages-sdk-flex",{slot:"page"})])}},meta:{name:"pages-sdk-flex",isNVue:!1,maxWidth:0,pagePath:"pages/sdk/flex",windowTop:44}},{path:"/pages/template/goodsList_scroll",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"滚动式双向联动列表"})},[e("pages-template-goodsList_scroll",{slot:"page"})])}},meta:{name:"pages-template-goodsList_scroll",isNVue:!1,maxWidth:0,pagePath:"pages/template/goodsList_scroll",windowTop:44}},{path:"/pages/template/goodsList_swiper",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"轮播式双向联动列表"})},[e("pages-template-goodsList_swiper",{slot:"page"})])}},meta:{name:"pages-template-goodsList_swiper",isNVue:!1,maxWidth:0,pagePath:"pages/template/goodsList_swiper",windowTop:44}},{path:"/pages/template/swiper_image",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"仿抖音图片轮播",navigationStyle:"custom"})},[e("pages-template-swiper_image",{slot:"page"})])}},meta:{name:"pages-template-swiper_image",isNVue:!1,maxWidth:0,pagePath:"pages/template/swiper_image",windowTop:0}},{path:"/pages/template/whackMole",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"打地鼠"})},[e("pages-template-whackMole",{slot:"page"})])}},meta:{name:"pages-template-whackMole",isNVue:!1,maxWidth:0,pagePath:"pages/template/whackMole",windowTop:44}},{path:"/pages/template/talk",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"即时通讯聊天"})},[e("pages-template-talk",{slot:"page"})])}},meta:{name:"pages-template-talk",isNVue:!1,maxWidth:0,pagePath:"pages/template/talk",windowTop:44}},{path:"/pages/template/gradientNav",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"滚动渐变的顶部导航栏",navigationStyle:"custom"})},[e("pages-template-gradientNav",{slot:"page"})])}},meta:{name:"pages-template-gradientNav",isNVue:!1,maxWidth:0,pagePath:"pages/template/gradientNav",windowTop:0}},{path:"/pages/template/swiper_video",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"仿抖音视频轮播",navigationStyle:"custom"})},[e("pages-template-swiper_video",{slot:"page"})])}},meta:{name:"pages-template-swiper_video",isNVue:!0,maxWidth:0,pagePath:"pages/template/swiper_video",windowTop:0}},{path:"/pages/template/customBar",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"自定义导航栏解决方案",navigationStyle:"custom",disableScroll:!0})},[e("pages-template-customBar",{slot:"page"})])}},meta:{name:"pages-template-customBar",isNVue:!1,maxWidth:0,pagePath:"pages/template/customBar",windowTop:0}},{path:"/pages/component/blur",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"高斯模糊"})},[e("pages-component-blur",{slot:"page"})])}},meta:{name:"pages-component-blur",isNVue:!1,maxWidth:0,pagePath:"pages/component/blur",windowTop:44}},{path:"/pages/template/vote",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"投票"})},[e("pages-template-vote",{slot:"page"})])}},meta:{name:"pages-template-vote",isNVue:!1,maxWidth:0,pagePath:"pages/template/vote",windowTop:44}},{path:"/pages/template/autoSwiper",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"自动缩放高度的轮播度"})},[e("pages-template-autoSwiper",{slot:"page"})])}},meta:{name:"pages-template-autoSwiper",isNVue:!1,maxWidth:0,pagePath:"pages/template/autoSwiper",windowTop:44}},{path:"/pages/component/compress",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"图片压缩"})},[e("pages-component-compress",{slot:"page"})])}},meta:{name:"pages-component-compress",isNVue:!1,maxWidth:0,pagePath:"pages/component/compress",windowTop:44}},{path:"/pages/template/table",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"表格",enablePullDownRefresh:!1})},[e("pages-template-table",{slot:"page"})])}},meta:{name:"pages-template-table",isNVue:!1,maxWidth:0,pagePath:"pages/template/table",windowTop:44}},{path:"/pages/component/checkboxs",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"同页面多组件示例",enablePullDownRefresh:!1})},[e("pages-component-checkboxs",{slot:"page"})])}},meta:{name:"pages-component-checkboxs",isNVue:!1,maxWidth:0,pagePath:"pages/component/checkboxs",windowTop:44}},{path:"/uni_modules/helang-waterfall/pages/waterfall/waterfall",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"瀑布流",enablePullDownRefresh:!0})},[e("uni_modules-helang-waterfall-pages-waterfall-waterfall",{slot:"page"})])}},meta:{name:"uni_modules-helang-waterfall-pages-waterfall-waterfall",isNVue:!1,maxWidth:0,pagePath:"uni_modules/helang-waterfall/pages/waterfall/waterfall",windowTop:44}},{path:"/pages/template/optimized-swiper",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"答题模板(仿驾考宝典)",enablePullDownRefresh:!1})},[e("pages-template-optimized-swiper",{slot:"page"})])}},meta:{name:"pages-template-optimized-swiper",isNVue:!1,maxWidth:0,pagePath:"pages/template/optimized-swiper",windowTop:44}},{path:"/pages/template/skin-peeler",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"换肤",enablePullDownRefresh:!1,navigationStyle:"custom"})},[e("pages-template-skin-peeler",{slot:"page"})])}},meta:{name:"pages-template-skin-peeler",isNVue:!1,maxWidth:0,pagePath:"pages/template/skin-peeler",windowTop:0}},{path:"/uni_modules/helang-picker-utils/pages/picker-utils/picker-utils",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"",enablePullDownRefresh:!1})},[e("uni_modules-helang-picker-utils-pages-picker-utils-picker-utils",{slot:"page"})])}},meta:{name:"uni_modules-helang-picker-utils-pages-picker-utils-picker-utils",isNVue:!1,maxWidth:0,pagePath:"uni_modules/helang-picker-utils/pages/picker-utils/picker-utils",windowTop:44}},{path:"/uni_modules/helang-tabBar/pages/helang-tabBar/helang-tabBar",component:{render:function(e){return e("Page",{props:Object.assign({},__uniConfig.globalStyle,{navigationBarTitleText:"底部导航栏",enablePullDownRefresh:!1})},[e("uni_modules-helang-tabBar-pages-helang-tabBar-helang-tabBar",{slot:"page"})])}},meta:{name:"uni_modules-helang-tabBar-pages-helang-tabBar-helang-tabBar",isNVue:!1,maxWidth:0,pagePath:"uni_modules/helang-tabBar/pages/helang-tabBar/helang-tabBar",windowTop:44}},{path:"/preview-image",component:{render:function(e){return e("Page",{props:{navigationStyle:"custom"}},[e("system-preview-image",{slot:"page"})])}},meta:{name:"preview-image",pagePath:"/preview-image"}},{path:"/choose-location",component:{render:function(e){return e("Page",{props:{navigationStyle:"custom"}},[e("system-choose-location",{slot:"page"})])}},meta:{name:"choose-location",pagePath:"/choose-location"}},{path:"/open-location",component:{render:function(e){return e("Page",{props:{navigationStyle:"custom"}},[e("system-open-location",{slot:"page"})])}},meta:{name:"open-location",pagePath:"/open-location"}}],e.UniApp&&new e.UniApp}).call(this,t("c8ba"))},d3b5:function(e,n,t){"use strict";Object.defineProperty(n,"__esModule",{value:!0}),n.default=void 0;var a=[!1,!0],o=a[0],i=a[1],r=a[2],s=function(){r=uni.connectSocket({url:"ws://123.207.167.163:9010/ajaxchattest",success:function(e){}}),r.onOpen((function(e){console.log("WebSocket连接已打开"),i=!1})),r.onError((function(e){console.log("WebSocket连接打开失败")})),r.onMessage((function(e){uni.$emit("dataSocket",e.data)}))},p=function(){o?console.log("不能重复打开连接"):(o=!0,uni.$on("startSocket",(function(){s()})))},l=function(){uni.$emit("startSocket",{})},g=function(e){uni.$on("dataSocket",(function(n){e&&e(n)}))},c=function(e){i?console.log("连接未打开,请先打开连接"):(console.log(e),r.send({data:e}))},u=function(){r.close({code:1e3,reason:"主动关闭",success:function(e){console.log("关闭连接成功"),i=!0},fail:function(e){console.log("关闭连接失败")}})},d={on:p,start:l,data:g,send:c,off:u};n.default=d},d478:function(e,n,t){"use strict";var a=t("4ea4"),o=a(t("5530"));t("e260"),t("e6cf"),t("cca6"),t("a79d"),t("c802"),t("1c31"),t("33db");var i=a(t("e143")),r=a(t("9754")),s=a(t("a0f9")),p=a(t("addd"));i.default.use(p.default),i.default.config.productionTip=!1,r.default.mpType="app";var l=new i.default((0,o.default)({store:s.default},r.default));l.$mount()},ed3d:function(e,n,t){"use strict";var a=t("4af2"),o=t.n(a);o.a}}); \ No newline at end of file diff --git a/uniapp-extend/unpackage/dist/build/h5/static/js/uni_modules-helang-tabBar-pages-helang-tabBar-helang-tabBar.911a6985.js b/uniapp-extend/unpackage/dist/build/h5/static/js/uni_modules-helang-tabBar-pages-helang-tabBar-helang-tabBar.911a6985.js deleted file mode 100644 index 778b2d7..0000000 --- a/uniapp-extend/unpackage/dist/build/h5/static/js/uni_modules-helang-tabBar-pages-helang-tabBar-helang-tabBar.911a6985.js +++ /dev/null @@ -1 +0,0 @@ -(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["uni_modules-helang-tabBar-pages-helang-tabBar-helang-tabBar"],{"09ba":function(e,t,a){"use strict";a.r(t);var n=a("4cae"),i=a("cbbc");for(var o in i)"default"!==o&&function(e){a.d(t,e,(function(){return i[e]}))}(o);a("1111");var c,l=a("f0c5"),r=Object(l["a"])(i["default"],n["b"],n["c"],!1,null,"238804ca",null,!1,n["a"],c);t["default"]=r.exports},1111:function(e,t,a){"use strict";var n=a("f809"),i=a.n(n);i.a},1460:function(e,t,a){"use strict";a.d(t,"b",(function(){return i})),a.d(t,"c",(function(){return o})),a.d(t,"a",(function(){return n}));var n={uniIcons:a("69a7").default},i=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("v-uni-view",{staticClass:"helang-tab-bar"},[e.fixedBottom?a("v-uni-view",{staticClass:"placeholder"}):e._e(),a("v-uni-view",{staticClass:"bar h-flex-x h-flex-5",class:{fixed:e.fixedBottom}},e._l(e.tabList,(function(t,n){return a("v-uni-view",{key:n,staticClass:"item",class:{active:e.current==n,recover:e.prevIndex==n},on:{click:function(t){arguments[0]=t=e.$handleEvent(t),e.change(n)}}},[a("v-uni-view",[a("v-uni-view",{staticClass:"h-flex-x h-flex-center"},[a("uni-icons",{attrs:{type:t.icon,size:"60rpx",color:"#dbd9f7"}})],1),a("v-uni-view",{staticClass:"h-flex-x h-flex-center"},[e._v(e._s(t.text))])],1)],1)})),1)],1)},o=[]},1751:function(e,t,a){"use strict";a.d(t,"b",(function(){return i})),a.d(t,"c",(function(){return o})),a.d(t,"a",(function(){return n}));var n={uniIcons:a("69a7").default},i=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("v-uni-view",{staticClass:"helang-tab-bar"},[e.fixedBottom?a("v-uni-view",{staticClass:"placeholder"}):e._e(),a("v-uni-view",{staticClass:"bar",class:{fixed:e.fixedBottom}},[a("v-uni-view",{staticClass:"h-flex-x h-flex-5"},e._l(e.tabList,(function(t,n){return a("v-uni-view",{key:n,staticClass:"item h-flex-x h-flex-center",class:{active:e.current==n},on:{click:function(t){arguments[0]=t=e.$handleEvent(t),e.change(n)}}},[a("v-uni-view",[a("v-uni-view",{staticClass:"h-flex-x h-flex-center"},[a("v-uni-view",{staticClass:"icon"},[a("v-uni-view",[a("v-uni-view",{staticClass:"icon-default h-flex-x h-flex-center"},[a("uni-icons",{attrs:{type:t.icon,size:"52rpx",color:"#bebcbc"}})],1),a("v-uni-view",{staticClass:"icon-selected h-flex-x h-flex-center"},[a("uni-icons",{attrs:{type:t.iconSelected,size:"60rpx",color:"#262626"}})],1)],1)],1)],1),a("v-uni-view",{staticClass:"h-flex-x h-flex-center"},[e._v(e._s(t.text))])],1)],1)})),1)],1)],1)},o=[]},"19f8":function(e,t,a){"use strict";a.r(t);var n=a("6c3d"),i=a.n(n);for(var o in n)"default"!==o&&function(e){a.d(t,e,(function(){return n[e]}))}(o);t["default"]=i.a},"21c8":function(e,t,a){"use strict";var n=a("de75"),i=a.n(n);i.a},2287:function(e,t,a){"use strict";a.r(t);var n=a("4dba"),i=a("243c");for(var o in i)"default"!==o&&function(e){a.d(t,e,(function(){return i[e]}))}(o);a("b4e3");var c,l=a("f0c5"),r=Object(l["a"])(i["default"],n["b"],n["c"],!1,null,"dfb0c124",null,!1,n["a"],c);t["default"]=r.exports},"243c":function(e,t,a){"use strict";a.r(t);var n=a("8250"),i=a.n(n);for(var o in n)"default"!==o&&function(e){a.d(t,e,(function(){return n[e]}))}(o);t["default"]=i.a},"277b":function(e,t,a){var n=a("c68c");n.__esModule&&(n=n.default),"string"===typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals);var i=a("4f06").default;i("59d996cc",n,!0,{sourceMap:!1,shadowMode:!1})},"27c2":function(e,t,a){"use strict";a.r(t);var n=a("d4f1"),i=a.n(n);for(var o in n)"default"!==o&&function(e){a.d(t,e,(function(){return n[e]}))}(o);t["default"]=i.a},2867:function(e,t,a){var n=a("24fb");t=n(!1),t.push([e.i,'@charset "UTF-8";\r\n/**\r\n * 这里是uni-app内置的常用样式变量\r\n *\r\n * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量\r\n * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App\r\n *\r\n */\r\n/**\r\n * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能\r\n *\r\n * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件\r\n */\r\n/* 颜色变量 */\r\n/* 行为相关颜色 */\r\n/* 文字基本颜色 */\r\n/* 背景颜色 */\r\n/* 边框颜色 */\r\n/* 尺寸变量 */\r\n/* 文字尺寸 */\r\n/* 图片尺寸 */\r\n/* Border Radius */\r\n/* 水平间距 */\r\n/* 垂直间距 */\r\n/* 透明度 */\r\n/* 文章场景相关 */\r\n/*\r\n * uni-app flex 布局盒子\r\n * 作者:helang\r\n * 邮箱:helang.love@qq.com\r\n*/\r\n/* 分列式弹性盒子,以X轴从左到右排列 */.h-flex-x[data-v-3faea2bc]{display:flex;flex-direction:row;flex-wrap:nowrap;justify-content:flex-start;align-items:center;align-content:center\r\n /* 水平左对齐 */\r\n /* 水平居中对齐 */\r\n /* 水平右对齐 */\r\n /* 水平两端对齐 */\r\n /* 垂直顶部对齐 */\r\n /* 垂直底部对齐 */\r\n /* 允许换行 */\r\n /* 等比分列,2-6列 */\r\n /* 弹性元素 */}.h-flex-x.h-flex-left[data-v-3faea2bc]{justify-content:flex-start}.h-flex-x.h-flex-center[data-v-3faea2bc]{justify-content:center}.h-flex-x.h-flex-right[data-v-3faea2bc]{justify-content:flex-end}.h-flex-x.h-flex-space[data-v-3faea2bc]{justify-content:space-between}.h-flex-x.h-flex-top[data-v-3faea2bc]{align-items:flex-start;align-content:flex-start}.h-flex-x.h-flex-bottom[data-v-3faea2bc]{align-items:flex-end;align-content:flex-end}.h-flex-x.h-flex-wrap[data-v-3faea2bc]{flex-wrap:wrap}.h-flex-x.h-flex-2 > uni-view[data-v-3faea2bc]{width:50%}.h-flex-x.h-flex-3 > uni-view[data-v-3faea2bc]{width:33.33333%}.h-flex-x.h-flex-4 > uni-view[data-v-3faea2bc]{width:25%}.h-flex-x.h-flex-5 > uni-view[data-v-3faea2bc]{width:20%}.h-flex-x.h-flex-6 > uni-view[data-v-3faea2bc]{width:16.66667%}.h-flex-x > .h-flex-item-grow[data-v-3faea2bc]{flex-grow:1;width:0}\r\n/* 分行式弹性盒子,以Y轴从上到下排列 */.h-flex-y[data-v-3faea2bc]{display:flex;flex-direction:column;flex-wrap:nowrap;justify-content:flex-start;align-items:flex-start;align-content:flex-start\r\n /* 垂直居中对齐 */\r\n /* 水平左对齐 */\r\n /* 水平右对齐 */\r\n /* 垂直两端对齐 */\r\n /* 垂直顶部对齐 */\r\n /* 垂直底部对齐 */\r\n /* 等比分行,2-6行 */\r\n /* 弹性元素 */}.h-flex-y.h-flex-center[data-v-3faea2bc]{justify-content:center;align-items:center;align-content:center}.h-flex-y.h-flex-left[data-v-3faea2bc]{align-items:flex-start;align-content:flex-start}.h-flex-y.h-flex-right[data-v-3faea2bc]{align-items:flex-end;align-content:flex-end}.h-flex-y.h-flex-space[data-v-3faea2bc]{justify-content:space-between}.h-flex-y.h-flex-top[data-v-3faea2bc]{justify-content:flex-start}.h-flex-y.h-flex-bottom[data-v-3faea2bc]{justify-content:flex-end}.h-flex-y.h-flex-2 > uni-view[data-v-3faea2bc]{height:50%}.h-flex-y.h-flex-3 > uni-view[data-v-3faea2bc]{height:33.33333%}.h-flex-y.h-flex-4 > uni-view[data-v-3faea2bc]{height:25%}.h-flex-y.h-flex-5 > uni-view[data-v-3faea2bc]{height:20%}.h-flex-y.h-flex-6 > uni-view[data-v-3faea2bc]{height:16.66667%}.h-flex-y > .h-flex-item-grow[data-v-3faea2bc]{flex-grow:1;height:0}\r\n/**\r\n * 底部导通用样式\r\n * 作者:黄河爱浪\r\n * QQ:1846492969\r\n */.helang-tab-bar[data-v-3faea2bc]{font-size:%?28?%}.helang-tab-bar uni-view[data-v-3faea2bc]{box-sizing:border-box}.helang-tab-bar .placeholder[data-v-3faea2bc]{height:%?100?%;box-sizing:initial;padding-bottom:0;padding-bottom:constant(safe-area-inset-bottom);padding-bottom:env(safe-area-inset-bottom);width:100%}.helang-tab-bar .bar[data-v-3faea2bc]{height:%?100?%;box-sizing:initial;background-color:#fff;position:relative}.helang-tab-bar .bar.fixed[data-v-3faea2bc]{position:fixed;bottom:0;left:0;width:%?750?%}.helang-tab-bar .item[data-v-3faea2bc]{height:%?100?%;position:relative;overflow:hidden}.helang-tab-bar .item > uni-view[data-v-3faea2bc]{height:200%}.helang-tab-bar .item > uni-view > uni-view[data-v-3faea2bc]{height:50%;color:#0043e3;font-size:%?30?%}.helang-tab-bar .item.active[data-v-3faea2bc]::before{content:"";display:block;position:absolute;width:%?90?%;height:%?90?%;box-sizing:border-box;border-color:#0043e3;border-style:solid;border-width:2px;border-radius:50%;top:%?5?%;left:50%;margin-left:%?-45?%;z-index:1;-webkit-animation:scale-data-v-3faea2bc .3s ease 0s 1 normal;animation:scale-data-v-3faea2bc .3s ease 0s 1 normal;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}.helang-tab-bar .item.active[data-v-3faea2bc]::after{content:"";display:block;background-color:#0043e3;width:4px;height:4px;border-radius:50%;position:absolute;bottom:3px;left:50%;margin-left:-2px;z-index:2;opacity:0;-webkit-animation:fide-in-data-v-3faea2bc .5s ease .3s 1 normal;animation:fide-in-data-v-3faea2bc .5s ease .3s 1 normal;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}.helang-tab-bar .item.active > uni-view[data-v-3faea2bc]{-webkit-animation:translate-data-v-3faea2bc .4s ease .3s 1 normal;animation:translate-data-v-3faea2bc .4s ease .3s 1 normal;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}.helang-tab-bar .item.recover > uni-view[data-v-3faea2bc]{-webkit-animation:recover-data-v-3faea2bc .3s ease 0s 1 normal;animation:recover-data-v-3faea2bc .3s ease 0s 1 normal}@-webkit-keyframes recover-data-v-3faea2bc{from{-webkit-transform:translateY(%?-100?%);transform:translateY(%?-100?%)}to{-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes recover-data-v-3faea2bc{from{-webkit-transform:translateY(%?-100?%);transform:translateY(%?-100?%)}to{-webkit-transform:translateY(0);transform:translateY(0)}}@-webkit-keyframes translate-data-v-3faea2bc{from{-webkit-transform:translateY(0);transform:translateY(0)}to{-webkit-transform:translateY(%?-100?%);transform:translateY(%?-100?%)}}@keyframes translate-data-v-3faea2bc{from{-webkit-transform:translateY(0);transform:translateY(0)}to{-webkit-transform:translateY(%?-100?%);transform:translateY(%?-100?%)}}@-webkit-keyframes scale-data-v-3faea2bc{0%{-webkit-transform:scale(0);transform:scale(0);opacity:0;border-width:2px}50%{opacity:.5;border-width:5px}100%{-webkit-transform:scale(.95);transform:scale(.95);opacity:0;border-width:0}}@keyframes scale-data-v-3faea2bc{0%{-webkit-transform:scale(0);transform:scale(0);opacity:0;border-width:2px}50%{opacity:.5;border-width:5px}100%{-webkit-transform:scale(.95);transform:scale(.95);opacity:0;border-width:0}}@-webkit-keyframes fide-in-data-v-3faea2bc{from{-webkit-transform:scale(0);transform:scale(0);opacity:0}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes fide-in-data-v-3faea2bc{from{-webkit-transform:scale(0);transform:scale(0);opacity:0}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}',""]),e.exports=t},"291e":function(e,t,a){e.exports=a.p+"static/fonts/uniicons.b6d3756e.ttf"},"2fc9":function(e,t,a){"use strict";a.r(t);var n=a("b92d"),i=a("27c2");for(var o in i)"default"!==o&&function(e){a.d(t,e,(function(){return i[e]}))}(o);a("ccf3");var c,l=a("f0c5"),r=Object(l["a"])(i["default"],n["b"],n["c"],!1,null,"86140132",null,!1,n["a"],c);t["default"]=r.exports},3081:function(e,t,a){"use strict";var n;a.d(t,"b",(function(){return i})),a.d(t,"c",(function(){return o})),a.d(t,"a",(function(){return n}));var i=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("v-uni-text",{staticClass:"uni-icons",class:["uniui-"+e.type,e.customPrefix,e.customPrefix?e.type:""],style:{color:e.color,"font-size":e.iconSize},on:{click:function(t){arguments[0]=t=e.$handleEvent(t),e._onClick.apply(void 0,arguments)}}})},o=[]},3385:function(e,t,a){var n=a("6f69");n.__esModule&&(n=n.default),"string"===typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals);var i=a("4f06").default;i("04180a54",n,!0,{sourceMap:!1,shadowMode:!1})},"36d6":function(e,t,a){"use strict";a.d(t,"b",(function(){return i})),a.d(t,"c",(function(){return o})),a.d(t,"a",(function(){return n}));var n={uniIcons:a("69a7").default},i=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("v-uni-view",{staticClass:"helang-tab-bar"},[e.fixedBottom?a("v-uni-view",{staticClass:"placeholder"}):e._e(),a("v-uni-view",{staticClass:"bar",class:{fixed:e.fixedBottom}},[a("v-uni-view",{staticClass:"circle",class:"circle-"+e.current},[a("v-uni-view",{staticClass:"left"}),a("v-uni-view",{staticClass:"right"})],1),a("v-uni-view",{staticClass:"h-flex-x h-flex-4"},e._l(e.tabList,(function(t,n){return a("v-uni-view",{key:n,staticClass:"item h-flex-x h-flex-center",class:{active:e.current==n},on:{click:function(t){arguments[0]=t=e.$handleEvent(t),e.change(n)}}},[a("v-uni-view",[a("v-uni-view",{staticClass:"h-flex-x h-flex-center"},[a("v-uni-view",{staticClass:"icon h-flex-x h-flex-center"},[a("uni-icons",{attrs:{type:t.icon,size:"48rpx",color:"#262626"}})],1)],1),a("v-uni-view",{staticClass:"h-flex-x h-flex-center text"},[e._v(e._s(t.text))])],1)],1)})),1)],1)],1)},o=[]},"4cae":function(e,t,a){"use strict";a.d(t,"b",(function(){return i})),a.d(t,"c",(function(){return o})),a.d(t,"a",(function(){return n}));var n={uniIcons:a("69a7").default},i=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("v-uni-view",{staticClass:"helang-tab-bar"},[e.fixedBottom?a("v-uni-view",{staticClass:"placeholder"}):e._e(),a("v-uni-view",{staticClass:"bar",class:{fixed:e.fixedBottom}},[a("v-uni-view",{staticClass:"h-flex-x h-flex-5"},e._l(e.tabList,(function(t,n){return a("v-uni-view",{key:n,staticClass:"item h-flex-x h-flex-center",class:{active:e.current==n},on:{click:function(t){arguments[0]=t=e.$handleEvent(t),e.change(n)}}},[a("v-uni-view",[a("v-uni-view",{staticClass:"h-flex-x h-flex-center"},[a("v-uni-view",{staticClass:"icon"},[a("uni-icons",{attrs:{type:t.icon,size:"48rpx",color:"#b4b3b8"}})],1)],1),a("v-uni-view",{staticClass:"h-flex-x h-flex-center"},[e._v(e._s(t.text))])],1)],1)})),1)],1)],1)},o=[]},"4dba":function(e,t,a){"use strict";a.d(t,"b",(function(){return i})),a.d(t,"c",(function(){return o})),a.d(t,"a",(function(){return n}));var n={uniIcons:a("69a7").default},i=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("v-uni-view",{staticClass:"helang-tab-bar"},[e.fixedBottom?a("v-uni-view",{staticClass:"placeholder"}):e._e(),a("v-uni-view",{staticClass:"bar",class:{fixed:e.fixedBottom}},[a("v-uni-view",{staticClass:"bulgy",style:e.bulgyMove}),a("v-uni-view",{staticClass:"h-flex-x h-flex-5"},e._l(e.tabList,(function(t,n){return a("v-uni-view",{key:n,staticClass:"item h-flex-x h-flex-center",class:{active:e.current==n,recover:e.prevIndex==n},on:{click:function(t){arguments[0]=t=e.$handleEvent(t),e.change(n)}}},[a("v-uni-view",[a("v-uni-view",{staticClass:"h-flex-x h-flex-center"},[a("v-uni-view",{staticClass:"icon"},[a("uni-icons",{attrs:{type:t.icon,size:"48rpx",color:"#6b6b68"}})],1)],1),a("v-uni-view",{staticClass:"h-flex-x h-flex-center"},[e._v(e._s(t.text))])],1)],1)})),1)],1)],1)},o=[]},5394:function(e,t,a){"use strict";var n=a("4ea4");a("7db0"),a("a9e3"),Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var i=n(a("a4343")),o=function(e){var t=/^[0-9]*$/g;return"number"===typeof e||t.test(e)?e+"px":e},c={name:"UniIcons",emits:["click"],props:{type:{type:String,default:""},color:{type:String,default:"#333333"},size:{type:[Number,String],default:16},customPrefix:{type:String,default:""}},data:function(){return{icons:i.default.glyphs}},computed:{unicode:function(){var e=this,t=this.icons.find((function(t){return t.font_class===e.type}));return t?unescape("%u".concat(t.unicode)):""},iconSize:function(){return o(this.size)}},methods:{_onClick:function(){this.$emit("click")}}};t.default=c},"58e3":function(e,t,a){var n=a("24fb");t=n(!1),t.push([e.i,'@charset "UTF-8";\r\n/**\r\n * 这里是uni-app内置的常用样式变量\r\n *\r\n * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量\r\n * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App\r\n *\r\n */\r\n/**\r\n * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能\r\n *\r\n * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件\r\n */\r\n/* 颜色变量 */\r\n/* 行为相关颜色 */\r\n/* 文字基本颜色 */\r\n/* 背景颜色 */\r\n/* 边框颜色 */\r\n/* 尺寸变量 */\r\n/* 文字尺寸 */\r\n/* 图片尺寸 */\r\n/* Border Radius */\r\n/* 水平间距 */\r\n/* 垂直间距 */\r\n/* 透明度 */\r\n/* 文章场景相关 */.preview[data-v-5da02377]{margin-bottom:24px;padding:32px 8px}.preview .title[data-v-5da02377]{font-weight:%?32?%;margin-bottom:%?20?%;padding-left:10px;color:#fff}',""]),e.exports=t},"5bf2":function(e,t,a){"use strict";var n=a("d4e8"),i=a.n(n);i.a},"5c89":function(e,t,a){"use strict";var n=a("277b"),i=a.n(n);i.a},"5d26":function(e,t,a){"use strict";var n;a.d(t,"b",(function(){return i})),a.d(t,"c",(function(){return o})),a.d(t,"a",(function(){return n}));var i=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("v-uni-view",[a("v-uni-view",{staticClass:"preview",staticStyle:{"background-color":"#82a9f2"}},[a("v-uni-view",{staticClass:"title"},[e._v("翻滚效果")]),a("helang-tab-bar-roll",{attrs:{"fixed-bottom":!1}})],1),a("v-uni-view",{staticClass:"preview",staticStyle:{"background-color":"#313131"}},[a("v-uni-view",{staticClass:"title",staticStyle:{"margin-bottom":"30px"}},[e._v("冒泡效果")]),a("helang-tab-bar-bubble",{attrs:{"fixed-bottom":!1}})],1),a("v-uni-view",{staticClass:"preview",staticStyle:{"background-color":"#212426"}},[a("v-uni-view",{staticClass:"title",staticStyle:{"margin-bottom":"30px"}},[e._v("滑动效果")]),a("helang-tab-bar-slide",{attrs:{"fixed-bottom":!1}})],1),a("v-uni-view",{staticClass:"preview",staticStyle:{"background-color":"#b49df9"}},[a("v-uni-view",{staticClass:"title"},[e._v("翻转效果")]),a("helang-tab-bar-overturn",{attrs:{"fixed-bottom":!1}})],1),a("v-uni-view",{staticClass:"preview",staticStyle:{"background-color":"#efedee"}},[a("v-uni-view",{staticClass:"title",staticStyle:{"margin-bottom":"30px",color:"#333"}},[e._v("凸起舵式切换效果")]),a("helang-tab-bar-bulge",{attrs:{"fixed-bottom":!1}})],1),a("v-uni-view",{staticClass:"preview",staticStyle:{"background-color":"#f4614e"}},[a("v-uni-view",{staticClass:"title",staticStyle:{"margin-bottom":"30px"}},[e._v("窗帘下拉效果")]),a("helang-tab-bar-curtain",{attrs:{"fixed-bottom":!1}})],1)],1)},o=[]},"5fae":function(e,t,a){"use strict";var n=a("4ea4");Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var i=n(a("ce70")),o={name:"helangTabBarOverturn",components:{uniIcons:i.default},props:{fixedBottom:{type:Boolean,default:!0}},data:function(){return{prevIndex:-1,current:4,tabList:[{icon:"home",text:"首页"},{icon:"chat",text:"消息"},{icon:"paperplane",text:"发布"},{icon:"gift",text:"福利"},{icon:"person",text:"我的"}],openBulge:!1}},computed:{},methods:{change:function(e){this.tabList[e].bulge||this.current!=e&&(this.prevIndex=this.current,this.current=e)}}};t.default=o},"65a7":function(e,t,a){var n=a("954e");n.__esModule&&(n=n.default),"string"===typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals);var i=a("4f06").default;i("4761ffc0",n,!0,{sourceMap:!1,shadowMode:!1})},"6c3d":function(e,t,a){"use strict";var n=a("4ea4");Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var i=n(a("ce70")),o={name:"helangTabBarSlide",components:{uniIcons:i.default},props:{fixedBottom:{type:Boolean,default:!0}},data:function(){return{prevIndex:-1,current:0,tabList:[{icon:"home-filled",text:"首页"},{icon:"chat-filled",text:"消息"},{icon:"gift-filled",text:"福利"},{icon:"person-filled",text:"我的"}]}},computed:{},methods:{change:function(e){this.current!=e&&(this.prevIndex=this.current,this.current=e)}}};t.default=o},"6d55":function(e,t,a){var n=a("24fb");t=n(!1),t.push([e.i,'@charset "UTF-8";\r\n/**\r\n * 这里是uni-app内置的常用样式变量\r\n *\r\n * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量\r\n * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App\r\n *\r\n */\r\n/**\r\n * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能\r\n *\r\n * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件\r\n */\r\n/* 颜色变量 */\r\n/* 行为相关颜色 */\r\n/* 文字基本颜色 */\r\n/* 背景颜色 */\r\n/* 边框颜色 */\r\n/* 尺寸变量 */\r\n/* 文字尺寸 */\r\n/* 图片尺寸 */\r\n/* Border Radius */\r\n/* 水平间距 */\r\n/* 垂直间距 */\r\n/* 透明度 */\r\n/* 文章场景相关 */\r\n/*\r\n * uni-app flex 布局盒子\r\n * 作者:helang\r\n * 邮箱:helang.love@qq.com\r\n*/\r\n/* 分列式弹性盒子,以X轴从左到右排列 */.h-flex-x[data-v-238804ca]{display:flex;flex-direction:row;flex-wrap:nowrap;justify-content:flex-start;align-items:center;align-content:center\r\n /* 水平左对齐 */\r\n /* 水平居中对齐 */\r\n /* 水平右对齐 */\r\n /* 水平两端对齐 */\r\n /* 垂直顶部对齐 */\r\n /* 垂直底部对齐 */\r\n /* 允许换行 */\r\n /* 等比分列,2-6列 */\r\n /* 弹性元素 */}.h-flex-x.h-flex-left[data-v-238804ca]{justify-content:flex-start}.h-flex-x.h-flex-center[data-v-238804ca]{justify-content:center}.h-flex-x.h-flex-right[data-v-238804ca]{justify-content:flex-end}.h-flex-x.h-flex-space[data-v-238804ca]{justify-content:space-between}.h-flex-x.h-flex-top[data-v-238804ca]{align-items:flex-start;align-content:flex-start}.h-flex-x.h-flex-bottom[data-v-238804ca]{align-items:flex-end;align-content:flex-end}.h-flex-x.h-flex-wrap[data-v-238804ca]{flex-wrap:wrap}.h-flex-x.h-flex-2 > uni-view[data-v-238804ca]{width:50%}.h-flex-x.h-flex-3 > uni-view[data-v-238804ca]{width:33.33333%}.h-flex-x.h-flex-4 > uni-view[data-v-238804ca]{width:25%}.h-flex-x.h-flex-5 > uni-view[data-v-238804ca]{width:20%}.h-flex-x.h-flex-6 > uni-view[data-v-238804ca]{width:16.66667%}.h-flex-x > .h-flex-item-grow[data-v-238804ca]{flex-grow:1;width:0}\r\n/* 分行式弹性盒子,以Y轴从上到下排列 */.h-flex-y[data-v-238804ca]{display:flex;flex-direction:column;flex-wrap:nowrap;justify-content:flex-start;align-items:flex-start;align-content:flex-start\r\n /* 垂直居中对齐 */\r\n /* 水平左对齐 */\r\n /* 水平右对齐 */\r\n /* 垂直两端对齐 */\r\n /* 垂直顶部对齐 */\r\n /* 垂直底部对齐 */\r\n /* 等比分行,2-6行 */\r\n /* 弹性元素 */}.h-flex-y.h-flex-center[data-v-238804ca]{justify-content:center;align-items:center;align-content:center}.h-flex-y.h-flex-left[data-v-238804ca]{align-items:flex-start;align-content:flex-start}.h-flex-y.h-flex-right[data-v-238804ca]{align-items:flex-end;align-content:flex-end}.h-flex-y.h-flex-space[data-v-238804ca]{justify-content:space-between}.h-flex-y.h-flex-top[data-v-238804ca]{justify-content:flex-start}.h-flex-y.h-flex-bottom[data-v-238804ca]{justify-content:flex-end}.h-flex-y.h-flex-2 > uni-view[data-v-238804ca]{height:50%}.h-flex-y.h-flex-3 > uni-view[data-v-238804ca]{height:33.33333%}.h-flex-y.h-flex-4 > uni-view[data-v-238804ca]{height:25%}.h-flex-y.h-flex-5 > uni-view[data-v-238804ca]{height:20%}.h-flex-y.h-flex-6 > uni-view[data-v-238804ca]{height:16.66667%}.h-flex-y > .h-flex-item-grow[data-v-238804ca]{flex-grow:1;height:0}\r\n/**\r\n * 底部导通用样式\r\n * 作者:黄河爱浪\r\n * QQ:1846492969\r\n */.helang-tab-bar[data-v-238804ca]{font-size:%?28?%}.helang-tab-bar uni-view[data-v-238804ca]{box-sizing:border-box}.helang-tab-bar .placeholder[data-v-238804ca]{height:%?100?%;box-sizing:initial;padding-bottom:0;padding-bottom:constant(safe-area-inset-bottom);padding-bottom:env(safe-area-inset-bottom);width:100%}.helang-tab-bar .bar[data-v-238804ca]{height:%?100?%;box-sizing:initial;background-color:#fff;position:relative}.helang-tab-bar .bar.fixed[data-v-238804ca]{position:fixed;bottom:0;left:0;width:%?750?%}.helang-tab-bar .item[data-v-238804ca]{height:%?100?%;position:relative;color:#b4b3b8;font-size:%?20?%;line-height:normal;overflow:hidden}.helang-tab-bar .item[data-v-238804ca]:before{content:"";display:block;position:absolute;top:-100%;left:0;width:100%;height:100%;z-index:1;background-image:linear-gradient(180deg,#ffdcd4,#fff8f7);background-color:red;transition:-webkit-transform .35s ease 0s;transition:transform .35s ease 0s;transition:transform .35s ease 0s,-webkit-transform .35s ease 0s;-webkit-transform:translateY(0);transform:translateY(0)}.helang-tab-bar .item > uni-view[data-v-238804ca]{position:relative;z-index:2}.helang-tab-bar .item.active[data-v-238804ca]{color:#313151}.helang-tab-bar .item.active[data-v-238804ca] .uni-icons{color:#313151!important}.helang-tab-bar .item.active[data-v-238804ca]:before{-webkit-transform:translateY(%?100?%);transform:translateY(%?100?%)}@-webkit-keyframes translate-data-v-238804ca{from{-webkit-transform:translateY(0) scale(1);transform:translateY(0) scale(1)}to{-webkit-transform:translateY(%?-20?%) scale(1.1);transform:translateY(%?-20?%) scale(1.1)}}@keyframes translate-data-v-238804ca{from{-webkit-transform:translateY(0) scale(1);transform:translateY(0) scale(1)}to{-webkit-transform:translateY(%?-20?%) scale(1.1);transform:translateY(%?-20?%) scale(1.1)}}',""]),e.exports=t},"6f69":function(e,t,a){var n=a("24fb");t=n(!1),t.push([e.i,'@charset "UTF-8";\r\n/**\r\n * 这里是uni-app内置的常用样式变量\r\n *\r\n * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量\r\n * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App\r\n *\r\n */\r\n/**\r\n * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能\r\n *\r\n * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件\r\n */\r\n/* 颜色变量 */\r\n/* 行为相关颜色 */\r\n/* 文字基本颜色 */\r\n/* 背景颜色 */\r\n/* 边框颜色 */\r\n/* 尺寸变量 */\r\n/* 文字尺寸 */\r\n/* 图片尺寸 */\r\n/* Border Radius */\r\n/* 水平间距 */\r\n/* 垂直间距 */\r\n/* 透明度 */\r\n/* 文章场景相关 */\r\n/*\r\n * uni-app flex 布局盒子\r\n * 作者:helang\r\n * 邮箱:helang.love@qq.com\r\n*/\r\n/* 分列式弹性盒子,以X轴从左到右排列 */.h-flex-x[data-v-7d160835]{display:flex;flex-direction:row;flex-wrap:nowrap;justify-content:flex-start;align-items:center;align-content:center\r\n /* 水平左对齐 */\r\n /* 水平居中对齐 */\r\n /* 水平右对齐 */\r\n /* 水平两端对齐 */\r\n /* 垂直顶部对齐 */\r\n /* 垂直底部对齐 */\r\n /* 允许换行 */\r\n /* 等比分列,2-6列 */\r\n /* 弹性元素 */}.h-flex-x.h-flex-left[data-v-7d160835]{justify-content:flex-start}.h-flex-x.h-flex-center[data-v-7d160835]{justify-content:center}.h-flex-x.h-flex-right[data-v-7d160835]{justify-content:flex-end}.h-flex-x.h-flex-space[data-v-7d160835]{justify-content:space-between}.h-flex-x.h-flex-top[data-v-7d160835]{align-items:flex-start;align-content:flex-start}.h-flex-x.h-flex-bottom[data-v-7d160835]{align-items:flex-end;align-content:flex-end}.h-flex-x.h-flex-wrap[data-v-7d160835]{flex-wrap:wrap}.h-flex-x.h-flex-2 > uni-view[data-v-7d160835]{width:50%}.h-flex-x.h-flex-3 > uni-view[data-v-7d160835]{width:33.33333%}.h-flex-x.h-flex-4 > uni-view[data-v-7d160835]{width:25%}.h-flex-x.h-flex-5 > uni-view[data-v-7d160835]{width:20%}.h-flex-x.h-flex-6 > uni-view[data-v-7d160835]{width:16.66667%}.h-flex-x > .h-flex-item-grow[data-v-7d160835]{flex-grow:1;width:0}\r\n/* 分行式弹性盒子,以Y轴从上到下排列 */.h-flex-y[data-v-7d160835]{display:flex;flex-direction:column;flex-wrap:nowrap;justify-content:flex-start;align-items:flex-start;align-content:flex-start\r\n /* 垂直居中对齐 */\r\n /* 水平左对齐 */\r\n /* 水平右对齐 */\r\n /* 垂直两端对齐 */\r\n /* 垂直顶部对齐 */\r\n /* 垂直底部对齐 */\r\n /* 等比分行,2-6行 */\r\n /* 弹性元素 */}.h-flex-y.h-flex-center[data-v-7d160835]{justify-content:center;align-items:center;align-content:center}.h-flex-y.h-flex-left[data-v-7d160835]{align-items:flex-start;align-content:flex-start}.h-flex-y.h-flex-right[data-v-7d160835]{align-items:flex-end;align-content:flex-end}.h-flex-y.h-flex-space[data-v-7d160835]{justify-content:space-between}.h-flex-y.h-flex-top[data-v-7d160835]{justify-content:flex-start}.h-flex-y.h-flex-bottom[data-v-7d160835]{justify-content:flex-end}.h-flex-y.h-flex-2 > uni-view[data-v-7d160835]{height:50%}.h-flex-y.h-flex-3 > uni-view[data-v-7d160835]{height:33.33333%}.h-flex-y.h-flex-4 > uni-view[data-v-7d160835]{height:25%}.h-flex-y.h-flex-5 > uni-view[data-v-7d160835]{height:20%}.h-flex-y.h-flex-6 > uni-view[data-v-7d160835]{height:16.66667%}.h-flex-y > .h-flex-item-grow[data-v-7d160835]{flex-grow:1;height:0}\r\n/**\r\n * 底部导通用样式\r\n * 作者:黄河爱浪\r\n * QQ:1846492969\r\n */.helang-tab-bar[data-v-7d160835]{font-size:%?28?%}.helang-tab-bar uni-view[data-v-7d160835]{box-sizing:border-box}.helang-tab-bar .placeholder[data-v-7d160835]{height:%?100?%;box-sizing:initial;padding-bottom:0;padding-bottom:constant(safe-area-inset-bottom);padding-bottom:env(safe-area-inset-bottom);width:100%}.helang-tab-bar .bar[data-v-7d160835]{height:%?100?%;box-sizing:initial;background-color:#fff;position:relative}.helang-tab-bar .bar.fixed[data-v-7d160835]{position:fixed;bottom:0;left:0;width:%?750?%}.helang-tab-bar .bar[data-v-7d160835]{border-radius:6px 6px 0 0}.helang-tab-bar .bar > .h-flex-x[data-v-7d160835]{position:absolute;z-index:2;width:100%;height:auto}.helang-tab-bar .circle[data-v-7d160835]{border:#212426 solid %?8?%;border-radius:50%;width:%?80?%;height:%?80?%;background-color:#13e14c;position:absolute;z-index:1;top:%?-40?%;left:0;margin-left:calc(12.5% - %?40?%);transition:left .2s ease 0s\r\n /* 定位对齐 */}.helang-tab-bar .circle.circle-0[data-v-7d160835]{left:0}.helang-tab-bar .circle.circle-1[data-v-7d160835]{left:25%}.helang-tab-bar .circle.circle-2[data-v-7d160835]{left:50%}.helang-tab-bar .circle.circle-3[data-v-7d160835]{left:75%}.helang-tab-bar .circle > uni-view[data-v-7d160835]{display:block;top:%?32?%;width:%?20?%;height:%?20?%;background-color:#212426;position:absolute}.helang-tab-bar .circle > uni-view[data-v-7d160835]::before{content:"";display:block;width:%?30?%;height:%?30?%;background-color:#fff;position:absolute;top:0}.helang-tab-bar .circle .right[data-v-7d160835]{right:%?-22?%}.helang-tab-bar .circle .right[data-v-7d160835]::before{border-radius:12px 0 0 0;left:0}.helang-tab-bar .circle .left[data-v-7d160835]{left:%?-22?%}.helang-tab-bar .circle .left[data-v-7d160835]::before{border-radius:0 12px 0 0;right:0}.helang-tab-bar .item[data-v-7d160835]{height:%?100?%;position:relative;color:#bebcbc;font-size:%?20?%;line-height:normal}.helang-tab-bar .item .icon[data-v-7d160835]{position:relative;width:%?60?%;height:%?60?%;margin:0 auto;transition:-webkit-transform .2s ease 0s;transition:transform .2s ease 0s;transition:transform .2s ease 0s,-webkit-transform .2s ease 0s}.helang-tab-bar .item .text[data-v-7d160835]{position:absolute;left:0;width:100%;top:%?46?%;transition:opacity .2s ease 0s;opacity:0;font-size:%?28?%}.helang-tab-bar .item.active[data-v-7d160835]{color:#262626}.helang-tab-bar .item.active .icon[data-v-7d160835]{-webkit-transform:translateY(%?-50?%);transform:translateY(%?-50?%)}.helang-tab-bar .item.active .text[data-v-7d160835]{opacity:1}',""]),e.exports=t},8250:function(e,t,a){"use strict";var n=a("4ea4");Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var i=n(a("ce70")),o={name:"helangTabBarBubble",components:{uniIcons:i.default},props:{fixedBottom:{type:Boolean,default:!0}},data:function(){return{prevIndex:-1,current:1,tabList:[{icon:"home-filled",text:"首页"},{icon:"chat-filled",text:"消息"},{icon:"cart-filled",text:"购物"},{icon:"gift-filled",text:"福利"},{icon:"person-filled",text:"我的"}]}},computed:{bulgyMove:function(){var e="left:".concat(this.current/this.tabList.length*100,"%");return e}},methods:{change:function(e){this.current!=e&&(this.prevIndex=this.current,this.current=e)}}};t.default=o},8964:function(e,t,a){"use strict";a.r(t);var n=a("36d6"),i=a("19f8");for(var o in i)"default"!==o&&function(e){a.d(t,e,(function(){return i[e]}))}(o);a("cfee");var c,l=a("f0c5"),r=Object(l["a"])(i["default"],n["b"],n["c"],!1,null,"7d160835",null,!1,n["a"],c);t["default"]=r.exports},"8c59":function(e,t,a){"use strict";a.r(t);var n=a("1460"),i=a("90b1");for(var o in i)"default"!==o&&function(e){a.d(t,e,(function(){return i[e]}))}(o);a("b9d1");var c,l=a("f0c5"),r=Object(l["a"])(i["default"],n["b"],n["c"],!1,null,"3faea2bc",null,!1,n["a"],c);t["default"]=r.exports},"8fdf":function(e,t,a){"use strict";a.r(t);var n=a("5394"),i=a.n(n);for(var o in n)"default"!==o&&function(e){a.d(t,e,(function(){return n[e]}))}(o);t["default"]=i.a},"90b1":function(e,t,a){"use strict";a.r(t);var n=a("d258"),i=a.n(n);for(var o in n)"default"!==o&&function(e){a.d(t,e,(function(){return n[e]}))}(o);t["default"]=i.a},"954e":function(e,t,a){var n=a("24fb");t=n(!1),t.push([e.i,'@charset "UTF-8";\r\n/**\r\n * 这里是uni-app内置的常用样式变量\r\n *\r\n * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量\r\n * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App\r\n *\r\n */\r\n/**\r\n * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能\r\n *\r\n * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件\r\n */\r\n/* 颜色变量 */\r\n/* 行为相关颜色 */\r\n/* 文字基本颜色 */\r\n/* 背景颜色 */\r\n/* 边框颜色 */\r\n/* 尺寸变量 */\r\n/* 文字尺寸 */\r\n/* 图片尺寸 */\r\n/* Border Radius */\r\n/* 水平间距 */\r\n/* 垂直间距 */\r\n/* 透明度 */\r\n/* 文章场景相关 */\r\n/*\r\n * uni-app flex 布局盒子\r\n * 作者:helang\r\n * 邮箱:helang.love@qq.com\r\n*/\r\n/* 分列式弹性盒子,以X轴从左到右排列 */.h-flex-x[data-v-dfb0c124]{display:flex;flex-direction:row;flex-wrap:nowrap;justify-content:flex-start;align-items:center;align-content:center\r\n /* 水平左对齐 */\r\n /* 水平居中对齐 */\r\n /* 水平右对齐 */\r\n /* 水平两端对齐 */\r\n /* 垂直顶部对齐 */\r\n /* 垂直底部对齐 */\r\n /* 允许换行 */\r\n /* 等比分列,2-6列 */\r\n /* 弹性元素 */}.h-flex-x.h-flex-left[data-v-dfb0c124]{justify-content:flex-start}.h-flex-x.h-flex-center[data-v-dfb0c124]{justify-content:center}.h-flex-x.h-flex-right[data-v-dfb0c124]{justify-content:flex-end}.h-flex-x.h-flex-space[data-v-dfb0c124]{justify-content:space-between}.h-flex-x.h-flex-top[data-v-dfb0c124]{align-items:flex-start;align-content:flex-start}.h-flex-x.h-flex-bottom[data-v-dfb0c124]{align-items:flex-end;align-content:flex-end}.h-flex-x.h-flex-wrap[data-v-dfb0c124]{flex-wrap:wrap}.h-flex-x.h-flex-2 > uni-view[data-v-dfb0c124]{width:50%}.h-flex-x.h-flex-3 > uni-view[data-v-dfb0c124]{width:33.33333%}.h-flex-x.h-flex-4 > uni-view[data-v-dfb0c124]{width:25%}.h-flex-x.h-flex-5 > uni-view[data-v-dfb0c124]{width:20%}.h-flex-x.h-flex-6 > uni-view[data-v-dfb0c124]{width:16.66667%}.h-flex-x > .h-flex-item-grow[data-v-dfb0c124]{flex-grow:1;width:0}\r\n/* 分行式弹性盒子,以Y轴从上到下排列 */.h-flex-y[data-v-dfb0c124]{display:flex;flex-direction:column;flex-wrap:nowrap;justify-content:flex-start;align-items:flex-start;align-content:flex-start\r\n /* 垂直居中对齐 */\r\n /* 水平左对齐 */\r\n /* 水平右对齐 */\r\n /* 垂直两端对齐 */\r\n /* 垂直顶部对齐 */\r\n /* 垂直底部对齐 */\r\n /* 等比分行,2-6行 */\r\n /* 弹性元素 */}.h-flex-y.h-flex-center[data-v-dfb0c124]{justify-content:center;align-items:center;align-content:center}.h-flex-y.h-flex-left[data-v-dfb0c124]{align-items:flex-start;align-content:flex-start}.h-flex-y.h-flex-right[data-v-dfb0c124]{align-items:flex-end;align-content:flex-end}.h-flex-y.h-flex-space[data-v-dfb0c124]{justify-content:space-between}.h-flex-y.h-flex-top[data-v-dfb0c124]{justify-content:flex-start}.h-flex-y.h-flex-bottom[data-v-dfb0c124]{justify-content:flex-end}.h-flex-y.h-flex-2 > uni-view[data-v-dfb0c124]{height:50%}.h-flex-y.h-flex-3 > uni-view[data-v-dfb0c124]{height:33.33333%}.h-flex-y.h-flex-4 > uni-view[data-v-dfb0c124]{height:25%}.h-flex-y.h-flex-5 > uni-view[data-v-dfb0c124]{height:20%}.h-flex-y.h-flex-6 > uni-view[data-v-dfb0c124]{height:16.66667%}.h-flex-y > .h-flex-item-grow[data-v-dfb0c124]{flex-grow:1;height:0}\r\n/**\r\n * 底部导通用样式\r\n * 作者:黄河爱浪\r\n * QQ:1846492969\r\n */.helang-tab-bar[data-v-dfb0c124]{font-size:%?28?%}.helang-tab-bar uni-view[data-v-dfb0c124]{box-sizing:border-box}.helang-tab-bar .placeholder[data-v-dfb0c124]{height:%?100?%;box-sizing:initial;padding-bottom:0;padding-bottom:constant(safe-area-inset-bottom);padding-bottom:env(safe-area-inset-bottom);width:100%}.helang-tab-bar .bar[data-v-dfb0c124]{height:%?100?%;box-sizing:initial;background-color:#fff;position:relative}.helang-tab-bar .bar.fixed[data-v-dfb0c124]{position:fixed;bottom:0;left:0;width:%?750?%}.helang-tab-bar .bar[data-v-dfb0c124]{background-color:#17191d}.helang-tab-bar .bulgy[data-v-dfb0c124]{width:20%;height:%?60?%;overflow:hidden;position:absolute;left:0;top:%?-38?%;transition:left .2s ease 0s;z-index:0}.helang-tab-bar .bulgy[data-v-dfb0c124]:before{content:"";display:block;width:%?300?%;height:%?600?%;border-radius:50%;background-color:#17191d;position:absolute;top:0;left:50%;margin-left:%?-150?%;z-index:1}.helang-tab-bar .item[data-v-dfb0c124]{height:%?100?%;position:relative;color:#6a6a6a;font-size:%?22?%;line-height:normal}.helang-tab-bar .item.active[data-v-dfb0c124]{-webkit-animation:font-data-v-dfb0c124 .2s ease .1s 1 normal;animation:font-data-v-dfb0c124 .2s ease .1s 1 normal;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}.helang-tab-bar .item.active .icon[data-v-dfb0c124]{position:relative;-webkit-animation:translate-data-v-dfb0c124 .2s ease .1s 1 normal;animation:translate-data-v-dfb0c124 .2s ease .1s 1 normal;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}.helang-tab-bar .item.active .icon[data-v-dfb0c124] .uni-icons{color:#e8c439!important}.helang-tab-bar .item.active .icon[data-v-dfb0c124]::before{content:"";display:block;position:absolute;top:0;left:0;width:100%;height:100%;z-index:-1;opacity:0;border-radius:50%;-webkit-animation:scale-data-v-dfb0c124 .3s ease .2s 1 normal;animation:scale-data-v-dfb0c124 .3s ease .2s 1 normal;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}.helang-tab-bar .item.recover .icon[data-v-dfb0c124]{-webkit-animation:recover-data-v-dfb0c124 .3s ease 0s 1 normal;animation:recover-data-v-dfb0c124 .3s ease 0s 1 normal}@-webkit-keyframes recover-data-v-dfb0c124{from{-webkit-transform:translateY(%?-20?%) scale(1.1);transform:translateY(%?-20?%) scale(1.1)}to{-webkit-transform:translateY(0) scale(1);transform:translateY(0) scale(1)}}@keyframes recover-data-v-dfb0c124{from{-webkit-transform:translateY(%?-20?%) scale(1.1);transform:translateY(%?-20?%) scale(1.1)}to{-webkit-transform:translateY(0) scale(1);transform:translateY(0) scale(1)}}@-webkit-keyframes translate-data-v-dfb0c124{from{-webkit-transform:translateY(0) scale(1);transform:translateY(0) scale(1)}to{-webkit-transform:translateY(%?-20?%) scale(1.1);transform:translateY(%?-20?%) scale(1.1)}}@keyframes translate-data-v-dfb0c124{from{-webkit-transform:translateY(0) scale(1);transform:translateY(0) scale(1)}to{-webkit-transform:translateY(%?-20?%) scale(1.1);transform:translateY(%?-20?%) scale(1.1)}}@-webkit-keyframes scale-data-v-dfb0c124{0%{-webkit-transform:scale(1);transform:scale(1);opacity:0;background-color:#e8c439}100%{-webkit-transform:scale(1.5);transform:scale(1.5);opacity:.13;background-color:#e8c439}}@keyframes scale-data-v-dfb0c124{0%{-webkit-transform:scale(1);transform:scale(1);opacity:0;background-color:#e8c439}100%{-webkit-transform:scale(1.5);transform:scale(1.5);opacity:.13;background-color:#e8c439}}@-webkit-keyframes font-data-v-dfb0c124{from{color:#6a6a6a}to{color:#aa9638}}@keyframes font-data-v-dfb0c124{from{color:#6a6a6a}to{color:#aa9638}}',""]),e.exports=t},"9d94":function(e,t,a){"use strict";a.r(t);var n=a("1751"),i=a("e022");for(var o in i)"default"!==o&&function(e){a.d(t,e,(function(){return i[e]}))}(o);a("21c8");var c,l=a("f0c5"),r=Object(l["a"])(i["default"],n["b"],n["c"],!1,null,"0e7905fe",null,!1,n["a"],c);t["default"]=r.exports},a4343:function(e,t,a){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var n={id:"2852637",name:"uniui图标库",font_family:"uniicons",css_prefix_text:"uniui-",description:"",glyphs:[{icon_id:"25027049",name:"yanse",font_class:"color",unicode:"e6cf",unicode_decimal:59087},{icon_id:"25027048",name:"wallet",font_class:"wallet",unicode:"e6b1",unicode_decimal:59057},{icon_id:"25015720",name:"settings-filled",font_class:"settings-filled",unicode:"e6ce",unicode_decimal:59086},{icon_id:"25015434",name:"shimingrenzheng-filled",font_class:"auth-filled",unicode:"e6cc",unicode_decimal:59084},{icon_id:"24934246",name:"shop-filled",font_class:"shop-filled",unicode:"e6cd",unicode_decimal:59085},{icon_id:"24934159",name:"staff-filled-01",font_class:"staff-filled",unicode:"e6cb",unicode_decimal:59083},{icon_id:"24932461",name:"VIP-filled",font_class:"vip-filled",unicode:"e6c6",unicode_decimal:59078},{icon_id:"24932462",name:"plus_circle_fill",font_class:"plus-filled",unicode:"e6c7",unicode_decimal:59079},{icon_id:"24932463",name:"folder_add-filled",font_class:"folder-add-filled",unicode:"e6c8",unicode_decimal:59080},{icon_id:"24932464",name:"yanse-filled",font_class:"color-filled",unicode:"e6c9",unicode_decimal:59081},{icon_id:"24932465",name:"tune-filled",font_class:"tune-filled",unicode:"e6ca",unicode_decimal:59082},{icon_id:"24932455",name:"a-rilidaka-filled",font_class:"calendar-filled",unicode:"e6c0",unicode_decimal:59072},{icon_id:"24932456",name:"notification-filled",font_class:"notification-filled",unicode:"e6c1",unicode_decimal:59073},{icon_id:"24932457",name:"wallet-filled",font_class:"wallet-filled",unicode:"e6c2",unicode_decimal:59074},{icon_id:"24932458",name:"paihangbang-filled",font_class:"medal-filled",unicode:"e6c3",unicode_decimal:59075},{icon_id:"24932459",name:"gift-filled",font_class:"gift-filled",unicode:"e6c4",unicode_decimal:59076},{icon_id:"24932460",name:"fire-filled",font_class:"fire-filled",unicode:"e6c5",unicode_decimal:59077},{icon_id:"24928001",name:"refreshempty",font_class:"refreshempty",unicode:"e6bf",unicode_decimal:59071},{icon_id:"24926853",name:"location-ellipse",font_class:"location-filled",unicode:"e6af",unicode_decimal:59055},{icon_id:"24926735",name:"person-filled",font_class:"person-filled",unicode:"e69d",unicode_decimal:59037},{icon_id:"24926703",name:"personadd-filled",font_class:"personadd-filled",unicode:"e698",unicode_decimal:59032},{icon_id:"24923351",name:"back",font_class:"back",unicode:"e6b9",unicode_decimal:59065},{icon_id:"24923352",name:"forward",font_class:"forward",unicode:"e6ba",unicode_decimal:59066},{icon_id:"24923353",name:"arrowthinright",font_class:"arrow-right",unicode:"e6bb",unicode_decimal:59067},{icon_id:"24923353",name:"arrowthinright",font_class:"arrowthinright",unicode:"e6bb",unicode_decimal:59067},{icon_id:"24923354",name:"arrowthinleft",font_class:"arrow-left",unicode:"e6bc",unicode_decimal:59068},{icon_id:"24923354",name:"arrowthinleft",font_class:"arrowthinleft",unicode:"e6bc",unicode_decimal:59068},{icon_id:"24923355",name:"arrowthinup",font_class:"arrow-up",unicode:"e6bd",unicode_decimal:59069},{icon_id:"24923355",name:"arrowthinup",font_class:"arrowthinup",unicode:"e6bd",unicode_decimal:59069},{icon_id:"24923356",name:"arrowthindown",font_class:"arrow-down",unicode:"e6be",unicode_decimal:59070},{icon_id:"24923356",name:"arrowthindown",font_class:"arrowthindown",unicode:"e6be",unicode_decimal:59070},{icon_id:"24923349",name:"arrowdown",font_class:"bottom",unicode:"e6b8",unicode_decimal:59064},{icon_id:"24923349",name:"arrowdown",font_class:"arrowdown",unicode:"e6b8",unicode_decimal:59064},{icon_id:"24923346",name:"arrowright",font_class:"right",unicode:"e6b5",unicode_decimal:59061},{icon_id:"24923346",name:"arrowright",font_class:"arrowright",unicode:"e6b5",unicode_decimal:59061},{icon_id:"24923347",name:"arrowup",font_class:"top",unicode:"e6b6",unicode_decimal:59062},{icon_id:"24923347",name:"arrowup",font_class:"arrowup",unicode:"e6b6",unicode_decimal:59062},{icon_id:"24923348",name:"arrowleft",font_class:"left",unicode:"e6b7",unicode_decimal:59063},{icon_id:"24923348",name:"arrowleft",font_class:"arrowleft",unicode:"e6b7",unicode_decimal:59063},{icon_id:"24923334",name:"eye",font_class:"eye",unicode:"e651",unicode_decimal:58961},{icon_id:"24923335",name:"eye-filled",font_class:"eye-filled",unicode:"e66a",unicode_decimal:58986},{icon_id:"24923336",name:"eye-slash",font_class:"eye-slash",unicode:"e6b3",unicode_decimal:59059},{icon_id:"24923337",name:"eye-slash-filled",font_class:"eye-slash-filled",unicode:"e6b4",unicode_decimal:59060},{icon_id:"24923305",name:"info-filled",font_class:"info-filled",unicode:"e649",unicode_decimal:58953},{icon_id:"24923299",name:"reload-01",font_class:"reload",unicode:"e6b2",unicode_decimal:59058},{icon_id:"24923195",name:"mic_slash_fill",font_class:"micoff-filled",unicode:"e6b0",unicode_decimal:59056},{icon_id:"24923165",name:"map-pin-ellipse",font_class:"map-pin-ellipse",unicode:"e6ac",unicode_decimal:59052},{icon_id:"24923166",name:"map-pin",font_class:"map-pin",unicode:"e6ad",unicode_decimal:59053},{icon_id:"24923167",name:"location",font_class:"location",unicode:"e6ae",unicode_decimal:59054},{icon_id:"24923064",name:"starhalf",font_class:"starhalf",unicode:"e683",unicode_decimal:59011},{icon_id:"24923065",name:"star",font_class:"star",unicode:"e688",unicode_decimal:59016},{icon_id:"24923066",name:"star-filled",font_class:"star-filled",unicode:"e68f",unicode_decimal:59023},{icon_id:"24899646",name:"a-rilidaka",font_class:"calendar",unicode:"e6a0",unicode_decimal:59040},{icon_id:"24899647",name:"fire",font_class:"fire",unicode:"e6a1",unicode_decimal:59041},{icon_id:"24899648",name:"paihangbang",font_class:"medal",unicode:"e6a2",unicode_decimal:59042},{icon_id:"24899649",name:"font",font_class:"font",unicode:"e6a3",unicode_decimal:59043},{icon_id:"24899650",name:"gift",font_class:"gift",unicode:"e6a4",unicode_decimal:59044},{icon_id:"24899651",name:"link",font_class:"link",unicode:"e6a5",unicode_decimal:59045},{icon_id:"24899652",name:"notification",font_class:"notification",unicode:"e6a6",unicode_decimal:59046},{icon_id:"24899653",name:"staff",font_class:"staff",unicode:"e6a7",unicode_decimal:59047},{icon_id:"24899654",name:"VIP",font_class:"vip",unicode:"e6a8",unicode_decimal:59048},{icon_id:"24899655",name:"folder_add",font_class:"folder-add",unicode:"e6a9",unicode_decimal:59049},{icon_id:"24899656",name:"tune",font_class:"tune",unicode:"e6aa",unicode_decimal:59050},{icon_id:"24899657",name:"shimingrenzheng",font_class:"auth",unicode:"e6ab",unicode_decimal:59051},{icon_id:"24899565",name:"person",font_class:"person",unicode:"e699",unicode_decimal:59033},{icon_id:"24899566",name:"email-filled",font_class:"email-filled",unicode:"e69a",unicode_decimal:59034},{icon_id:"24899567",name:"phone-filled",font_class:"phone-filled",unicode:"e69b",unicode_decimal:59035},{icon_id:"24899568",name:"phone",font_class:"phone",unicode:"e69c",unicode_decimal:59036},{icon_id:"24899570",name:"email",font_class:"email",unicode:"e69e",unicode_decimal:59038},{icon_id:"24899571",name:"personadd",font_class:"personadd",unicode:"e69f",unicode_decimal:59039},{icon_id:"24899558",name:"chatboxes-filled",font_class:"chatboxes-filled",unicode:"e692",unicode_decimal:59026},{icon_id:"24899559",name:"contact",font_class:"contact",unicode:"e693",unicode_decimal:59027},{icon_id:"24899560",name:"chatbubble-filled",font_class:"chatbubble-filled",unicode:"e694",unicode_decimal:59028},{icon_id:"24899561",name:"contact-filled",font_class:"contact-filled",unicode:"e695",unicode_decimal:59029},{icon_id:"24899562",name:"chatboxes",font_class:"chatboxes",unicode:"e696",unicode_decimal:59030},{icon_id:"24899563",name:"chatbubble",font_class:"chatbubble",unicode:"e697",unicode_decimal:59031},{icon_id:"24881290",name:"upload-filled",font_class:"upload-filled",unicode:"e68e",unicode_decimal:59022},{icon_id:"24881292",name:"upload",font_class:"upload",unicode:"e690",unicode_decimal:59024},{icon_id:"24881293",name:"weixin",font_class:"weixin",unicode:"e691",unicode_decimal:59025},{icon_id:"24881274",name:"compose",font_class:"compose",unicode:"e67f",unicode_decimal:59007},{icon_id:"24881275",name:"qq",font_class:"qq",unicode:"e680",unicode_decimal:59008},{icon_id:"24881276",name:"download-filled",font_class:"download-filled",unicode:"e681",unicode_decimal:59009},{icon_id:"24881277",name:"pengyouquan",font_class:"pyq",unicode:"e682",unicode_decimal:59010},{icon_id:"24881279",name:"sound",font_class:"sound",unicode:"e684",unicode_decimal:59012},{icon_id:"24881280",name:"trash-filled",font_class:"trash-filled",unicode:"e685",unicode_decimal:59013},{icon_id:"24881281",name:"sound-filled",font_class:"sound-filled",unicode:"e686",unicode_decimal:59014},{icon_id:"24881282",name:"trash",font_class:"trash",unicode:"e687",unicode_decimal:59015},{icon_id:"24881284",name:"videocam-filled",font_class:"videocam-filled",unicode:"e689",unicode_decimal:59017},{icon_id:"24881285",name:"spinner-cycle",font_class:"spinner-cycle",unicode:"e68a",unicode_decimal:59018},{icon_id:"24881286",name:"weibo",font_class:"weibo",unicode:"e68b",unicode_decimal:59019},{icon_id:"24881288",name:"videocam",font_class:"videocam",unicode:"e68c",unicode_decimal:59020},{icon_id:"24881289",name:"download",font_class:"download",unicode:"e68d",unicode_decimal:59021},{icon_id:"24879601",name:"help",font_class:"help",unicode:"e679",unicode_decimal:59001},{icon_id:"24879602",name:"navigate-filled",font_class:"navigate-filled",unicode:"e67a",unicode_decimal:59002},{icon_id:"24879603",name:"plusempty",font_class:"plusempty",unicode:"e67b",unicode_decimal:59003},{icon_id:"24879604",name:"smallcircle",font_class:"smallcircle",unicode:"e67c",unicode_decimal:59004},{icon_id:"24879605",name:"minus-filled",font_class:"minus-filled",unicode:"e67d",unicode_decimal:59005},{icon_id:"24879606",name:"micoff",font_class:"micoff",unicode:"e67e",unicode_decimal:59006},{icon_id:"24879588",name:"closeempty",font_class:"closeempty",unicode:"e66c",unicode_decimal:58988},{icon_id:"24879589",name:"clear",font_class:"clear",unicode:"e66d",unicode_decimal:58989},{icon_id:"24879590",name:"navigate",font_class:"navigate",unicode:"e66e",unicode_decimal:58990},{icon_id:"24879591",name:"minus",font_class:"minus",unicode:"e66f",unicode_decimal:58991},{icon_id:"24879592",name:"image",font_class:"image",unicode:"e670",unicode_decimal:58992},{icon_id:"24879593",name:"mic",font_class:"mic",unicode:"e671",unicode_decimal:58993},{icon_id:"24879594",name:"paperplane",font_class:"paperplane",unicode:"e672",unicode_decimal:58994},{icon_id:"24879595",name:"close",font_class:"close",unicode:"e673",unicode_decimal:58995},{icon_id:"24879596",name:"help-filled",font_class:"help-filled",unicode:"e674",unicode_decimal:58996},{icon_id:"24879597",name:"plus-filled",font_class:"paperplane-filled",unicode:"e675",unicode_decimal:58997},{icon_id:"24879598",name:"plus",font_class:"plus",unicode:"e676",unicode_decimal:58998},{icon_id:"24879599",name:"mic-filled",font_class:"mic-filled",unicode:"e677",unicode_decimal:58999},{icon_id:"24879600",name:"image-filled",font_class:"image-filled",unicode:"e678",unicode_decimal:59e3},{icon_id:"24855900",name:"locked-filled",font_class:"locked-filled",unicode:"e668",unicode_decimal:58984},{icon_id:"24855901",name:"info",font_class:"info",unicode:"e669",unicode_decimal:58985},{icon_id:"24855903",name:"locked",font_class:"locked",unicode:"e66b",unicode_decimal:58987},{icon_id:"24855884",name:"camera-filled",font_class:"camera-filled",unicode:"e658",unicode_decimal:58968},{icon_id:"24855885",name:"chat-filled",font_class:"chat-filled",unicode:"e659",unicode_decimal:58969},{icon_id:"24855886",name:"camera",font_class:"camera",unicode:"e65a",unicode_decimal:58970},{icon_id:"24855887",name:"circle",font_class:"circle",unicode:"e65b",unicode_decimal:58971},{icon_id:"24855888",name:"checkmarkempty",font_class:"checkmarkempty",unicode:"e65c",unicode_decimal:58972},{icon_id:"24855889",name:"chat",font_class:"chat",unicode:"e65d",unicode_decimal:58973},{icon_id:"24855890",name:"circle-filled",font_class:"circle-filled",unicode:"e65e",unicode_decimal:58974},{icon_id:"24855891",name:"flag",font_class:"flag",unicode:"e65f",unicode_decimal:58975},{icon_id:"24855892",name:"flag-filled",font_class:"flag-filled",unicode:"e660",unicode_decimal:58976},{icon_id:"24855893",name:"gear-filled",font_class:"gear-filled",unicode:"e661",unicode_decimal:58977},{icon_id:"24855894",name:"home",font_class:"home",unicode:"e662",unicode_decimal:58978},{icon_id:"24855895",name:"home-filled",font_class:"home-filled",unicode:"e663",unicode_decimal:58979},{icon_id:"24855896",name:"gear",font_class:"gear",unicode:"e664",unicode_decimal:58980},{icon_id:"24855897",name:"smallcircle-filled",font_class:"smallcircle-filled",unicode:"e665",unicode_decimal:58981},{icon_id:"24855898",name:"map-filled",font_class:"map-filled",unicode:"e666",unicode_decimal:58982},{icon_id:"24855899",name:"map",font_class:"map",unicode:"e667",unicode_decimal:58983},{icon_id:"24855825",name:"refresh-filled",font_class:"refresh-filled",unicode:"e656",unicode_decimal:58966},{icon_id:"24855826",name:"refresh",font_class:"refresh",unicode:"e657",unicode_decimal:58967},{icon_id:"24855808",name:"cloud-upload",font_class:"cloud-upload",unicode:"e645",unicode_decimal:58949},{icon_id:"24855809",name:"cloud-download-filled",font_class:"cloud-download-filled",unicode:"e646",unicode_decimal:58950},{icon_id:"24855810",name:"cloud-download",font_class:"cloud-download",unicode:"e647",unicode_decimal:58951},{icon_id:"24855811",name:"cloud-upload-filled",font_class:"cloud-upload-filled",unicode:"e648",unicode_decimal:58952},{icon_id:"24855813",name:"redo",font_class:"redo",unicode:"e64a",unicode_decimal:58954},{icon_id:"24855814",name:"images-filled",font_class:"images-filled",unicode:"e64b",unicode_decimal:58955},{icon_id:"24855815",name:"undo-filled",font_class:"undo-filled",unicode:"e64c",unicode_decimal:58956},{icon_id:"24855816",name:"more",font_class:"more",unicode:"e64d",unicode_decimal:58957},{icon_id:"24855817",name:"more-filled",font_class:"more-filled",unicode:"e64e",unicode_decimal:58958},{icon_id:"24855818",name:"undo",font_class:"undo",unicode:"e64f",unicode_decimal:58959},{icon_id:"24855819",name:"images",font_class:"images",unicode:"e650",unicode_decimal:58960},{icon_id:"24855821",name:"paperclip",font_class:"paperclip",unicode:"e652",unicode_decimal:58962},{icon_id:"24855822",name:"settings",font_class:"settings",unicode:"e653",unicode_decimal:58963},{icon_id:"24855823",name:"search",font_class:"search",unicode:"e654",unicode_decimal:58964},{icon_id:"24855824",name:"redo-filled",font_class:"redo-filled",unicode:"e655",unicode_decimal:58965},{icon_id:"24841702",name:"list",font_class:"list",unicode:"e644",unicode_decimal:58948},{icon_id:"24841489",name:"mail-open-filled",font_class:"mail-open-filled",unicode:"e63a",unicode_decimal:58938},{icon_id:"24841491",name:"hand-thumbsdown-filled",font_class:"hand-down-filled",unicode:"e63c",unicode_decimal:58940},{icon_id:"24841492",name:"hand-thumbsdown",font_class:"hand-down",unicode:"e63d",unicode_decimal:58941},{icon_id:"24841493",name:"hand-thumbsup-filled",font_class:"hand-up-filled",unicode:"e63e",unicode_decimal:58942},{icon_id:"24841494",name:"hand-thumbsup",font_class:"hand-up",unicode:"e63f",unicode_decimal:58943},{icon_id:"24841496",name:"heart-filled",font_class:"heart-filled",unicode:"e641",unicode_decimal:58945},{icon_id:"24841498",name:"mail-open",font_class:"mail-open",unicode:"e643",unicode_decimal:58947},{icon_id:"24841488",name:"heart",font_class:"heart",unicode:"e639",unicode_decimal:58937},{icon_id:"24839963",name:"loop",font_class:"loop",unicode:"e633",unicode_decimal:58931},{icon_id:"24839866",name:"pulldown",font_class:"pulldown",unicode:"e632",unicode_decimal:58930},{icon_id:"24813798",name:"scan",font_class:"scan",unicode:"e62a",unicode_decimal:58922},{icon_id:"24813786",name:"bars",font_class:"bars",unicode:"e627",unicode_decimal:58919},{icon_id:"24813788",name:"cart-filled",font_class:"cart-filled",unicode:"e629",unicode_decimal:58921},{icon_id:"24813790",name:"checkbox",font_class:"checkbox",unicode:"e62b",unicode_decimal:58923},{icon_id:"24813791",name:"checkbox-filled",font_class:"checkbox-filled",unicode:"e62c",unicode_decimal:58924},{icon_id:"24813794",name:"shop",font_class:"shop",unicode:"e62f",unicode_decimal:58927},{icon_id:"24813795",name:"headphones",font_class:"headphones",unicode:"e630",unicode_decimal:58928},{icon_id:"24813796",name:"cart",font_class:"cart",unicode:"e631",unicode_decimal:58929}]};t.default=n},b4e3:function(e,t,a){"use strict";var n=a("65a7"),i=a.n(n);i.a},b92d:function(e,t,a){"use strict";a.d(t,"b",(function(){return i})),a.d(t,"c",(function(){return o})),a.d(t,"a",(function(){return n}));var n={uniIcons:a("69a7").default},i=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("v-uni-view",{staticClass:"helang-tab-bar"},[e.fixedBottom?a("v-uni-view",{staticClass:"placeholder"}):e._e(),a("v-uni-view",{staticClass:"bar",class:{fixed:e.fixedBottom}},[a("v-uni-view",{staticClass:"h-flex-x h-flex-5"},e._l(e.tabList,(function(t,n){return a("v-uni-view",{key:n,staticClass:"item h-flex-x h-flex-center",on:{click:function(t){arguments[0]=t=e.$handleEvent(t),e.change(n)}}},[t.bulge?a("v-uni-view",{staticClass:"bulge",class:{"bulge-active":e.openBulge,open:e.openBulge,close:!e.openBulge}},[a("v-uni-view",{staticClass:"btn h-flex-x h-flex-center",on:{click:function(t){arguments[0]=t=e.$handleEvent(t),e.changeBulge()}}},[a("v-uni-view",[a("uni-icons",{attrs:{type:"plusempty",size:"42rpx",color:"#fff"}})],1)],1),a("v-uni-view",{staticClass:"rudder"},[a("v-uni-view",[a("v-uni-view",{staticClass:"color-yellow"}),a("v-uni-view",{staticClass:"color-orange"}),a("v-uni-view",{staticClass:"content"},[a("v-uni-view",{staticClass:"h-flex-x h-flex-3"},[a("v-uni-view",{staticStyle:{"padding-top":"40rpx"}},[a("uni-icons",{attrs:{type:"star",size:"42rpx",color:"#c66219"}})],1),a("v-uni-view",{staticStyle:{"padding-bottom":"30rpx"}},[a("uni-icons",{attrs:{type:"paperplane",size:"42rpx",color:"#c66219"}})],1),a("v-uni-view",{staticStyle:{"padding-top":"40rpx"}},[a("uni-icons",{attrs:{type:"heart",size:"42rpx",color:"#c66219"}})],1)],1)],1)],1)],1)],1):a("v-uni-view",{class:{active:e.current==n}},[a("v-uni-view",{staticClass:"h-flex-x h-flex-center"},[a("v-uni-view",{staticClass:"icon"},[a("uni-icons",{attrs:{type:t.icon,size:"48rpx",color:"#b4b3b8"}})],1)],1),a("v-uni-view",{staticClass:"h-flex-x h-flex-center"},[e._v(e._s(t.text))])],1)],1)})),1)],1)],1)},o=[]},b9d1:function(e,t,a){"use strict";var n=a("c604"),i=a.n(n);i.a},bf22:function(e,t,a){"use strict";a.r(t);var n=a("5d26"),i=a("ea2f");for(var o in i)"default"!==o&&function(e){a.d(t,e,(function(){return i[e]}))}(o);a("5bf2");var c,l=a("f0c5"),r=Object(l["a"])(i["default"],n["b"],n["c"],!1,null,"5da02377",null,!1,n["a"],c);t["default"]=r.exports},bfb6:function(e,t,a){var n=a("24fb");t=n(!1),t.push([e.i,'@charset "UTF-8";\r\n/**\r\n * 这里是uni-app内置的常用样式变量\r\n *\r\n * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量\r\n * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App\r\n *\r\n */\r\n/**\r\n * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能\r\n *\r\n * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件\r\n */\r\n/* 颜色变量 */\r\n/* 行为相关颜色 */\r\n/* 文字基本颜色 */\r\n/* 背景颜色 */\r\n/* 边框颜色 */\r\n/* 尺寸变量 */\r\n/* 文字尺寸 */\r\n/* 图片尺寸 */\r\n/* Border Radius */\r\n/* 水平间距 */\r\n/* 垂直间距 */\r\n/* 透明度 */\r\n/* 文章场景相关 */\r\n/*\r\n * uni-app flex 布局盒子\r\n * 作者:helang\r\n * 邮箱:helang.love@qq.com\r\n*/\r\n/* 分列式弹性盒子,以X轴从左到右排列 */.h-flex-x[data-v-86140132]{display:flex;flex-direction:row;flex-wrap:nowrap;justify-content:flex-start;align-items:center;align-content:center\r\n /* 水平左对齐 */\r\n /* 水平居中对齐 */\r\n /* 水平右对齐 */\r\n /* 水平两端对齐 */\r\n /* 垂直顶部对齐 */\r\n /* 垂直底部对齐 */\r\n /* 允许换行 */\r\n /* 等比分列,2-6列 */\r\n /* 弹性元素 */}.h-flex-x.h-flex-left[data-v-86140132]{justify-content:flex-start}.h-flex-x.h-flex-center[data-v-86140132]{justify-content:center}.h-flex-x.h-flex-right[data-v-86140132]{justify-content:flex-end}.h-flex-x.h-flex-space[data-v-86140132]{justify-content:space-between}.h-flex-x.h-flex-top[data-v-86140132]{align-items:flex-start;align-content:flex-start}.h-flex-x.h-flex-bottom[data-v-86140132]{align-items:flex-end;align-content:flex-end}.h-flex-x.h-flex-wrap[data-v-86140132]{flex-wrap:wrap}.h-flex-x.h-flex-2 > uni-view[data-v-86140132]{width:50%}.h-flex-x.h-flex-3 > uni-view[data-v-86140132]{width:33.33333%}.h-flex-x.h-flex-4 > uni-view[data-v-86140132]{width:25%}.h-flex-x.h-flex-5 > uni-view[data-v-86140132]{width:20%}.h-flex-x.h-flex-6 > uni-view[data-v-86140132]{width:16.66667%}.h-flex-x > .h-flex-item-grow[data-v-86140132]{flex-grow:1;width:0}\r\n/* 分行式弹性盒子,以Y轴从上到下排列 */.h-flex-y[data-v-86140132]{display:flex;flex-direction:column;flex-wrap:nowrap;justify-content:flex-start;align-items:flex-start;align-content:flex-start\r\n /* 垂直居中对齐 */\r\n /* 水平左对齐 */\r\n /* 水平右对齐 */\r\n /* 垂直两端对齐 */\r\n /* 垂直顶部对齐 */\r\n /* 垂直底部对齐 */\r\n /* 等比分行,2-6行 */\r\n /* 弹性元素 */}.h-flex-y.h-flex-center[data-v-86140132]{justify-content:center;align-items:center;align-content:center}.h-flex-y.h-flex-left[data-v-86140132]{align-items:flex-start;align-content:flex-start}.h-flex-y.h-flex-right[data-v-86140132]{align-items:flex-end;align-content:flex-end}.h-flex-y.h-flex-space[data-v-86140132]{justify-content:space-between}.h-flex-y.h-flex-top[data-v-86140132]{justify-content:flex-start}.h-flex-y.h-flex-bottom[data-v-86140132]{justify-content:flex-end}.h-flex-y.h-flex-2 > uni-view[data-v-86140132]{height:50%}.h-flex-y.h-flex-3 > uni-view[data-v-86140132]{height:33.33333%}.h-flex-y.h-flex-4 > uni-view[data-v-86140132]{height:25%}.h-flex-y.h-flex-5 > uni-view[data-v-86140132]{height:20%}.h-flex-y.h-flex-6 > uni-view[data-v-86140132]{height:16.66667%}.h-flex-y > .h-flex-item-grow[data-v-86140132]{flex-grow:1;height:0}\r\n/**\r\n * 底部导通用样式\r\n * 作者:黄河爱浪\r\n * QQ:1846492969\r\n */.helang-tab-bar[data-v-86140132]{font-size:%?28?%}.helang-tab-bar uni-view[data-v-86140132]{box-sizing:border-box}.helang-tab-bar .placeholder[data-v-86140132]{height:%?100?%;box-sizing:initial;padding-bottom:0;padding-bottom:constant(safe-area-inset-bottom);padding-bottom:env(safe-area-inset-bottom);width:100%}.helang-tab-bar .bar[data-v-86140132]{height:%?100?%;box-sizing:initial;background-color:#fff;position:relative}.helang-tab-bar .bar.fixed[data-v-86140132]{position:fixed;bottom:0;left:0;width:%?750?%}.helang-tab-bar .item[data-v-86140132]{height:%?100?%;position:relative;color:#b4b3b8;font-size:%?20?%;line-height:normal}.helang-tab-bar .item .bulge[data-v-86140132]{width:100%;height:100%;position:relative}.helang-tab-bar .item .bulge .btn[data-v-86140132]{width:%?80?%;height:%?80?%;position:absolute;z-index:2;left:50%;margin-left:%?-40?%;top:%?-30?%;background-image:linear-gradient(90deg,#ec5d0e,#df9f86);border-radius:50%;transition:-webkit-transform .1s ease 0s;transition:transform .1s ease 0s;transition:transform .1s ease 0s,-webkit-transform .1s ease 0s;-webkit-transform:scale(1);transform:scale(1)}.helang-tab-bar .item .bulge .btn[data-v-86140132]:active{-webkit-transform:scale(.9);transform:scale(.9)}.helang-tab-bar .item .bulge .btn > uni-view[data-v-86140132]{transition:-webkit-transform .2s ease 0s;transition:transform .2s ease 0s;transition:transform .2s ease 0s,-webkit-transform .2s ease 0s;-webkit-transform:rotate(0deg);transform:rotate(0deg)}.helang-tab-bar .item .bulge .rudder[data-v-86140132]{width:%?260?%;height:%?130?%;position:absolute;z-index:1;left:50%;margin-left:%?-130?%;top:%?-128?%;overflow:hidden}.helang-tab-bar .item .bulge .rudder > uni-view[data-v-86140132]{position:absolute;z-index:1;width:100%;height:200%;overflow:hidden;top:0;left:0}.helang-tab-bar .item .bulge .rudder .color-yellow[data-v-86140132], .helang-tab-bar .item .bulge .rudder .color-orange[data-v-86140132], .helang-tab-bar .item .bulge .rudder .content[data-v-86140132]{position:absolute;width:100%;left:0;top:0;height:50%;overflow:hidden;-webkit-transform-origin:50% 100%;transform-origin:50% 100%;-webkit-transform:rotate(-180deg);transform:rotate(-180deg)}.helang-tab-bar .item .bulge .rudder .color-yellow[data-v-86140132]:before, .helang-tab-bar .item .bulge .rudder .color-orange[data-v-86140132]:before, .helang-tab-bar .item .bulge .rudder .content[data-v-86140132]:before{content:"";display:block;position:absolute;width:100%;left:0;top:0;height:200%;border-radius:50%;border:solid 1px #fff}.helang-tab-bar .item .bulge .rudder .color-yellow[data-v-86140132]{z-index:1}.helang-tab-bar .item .bulge .rudder .color-yellow[data-v-86140132]:before{background-color:#efd200}.helang-tab-bar .item .bulge .rudder .color-orange[data-v-86140132]{z-index:2}.helang-tab-bar .item .bulge .rudder .color-orange[data-v-86140132]:before{background-color:#f04900}.helang-tab-bar .item .bulge .rudder .content[data-v-86140132]{z-index:3}.helang-tab-bar .item .bulge .rudder .content[data-v-86140132]:before{background-color:#fff}.helang-tab-bar .item .bulge .rudder .content > uni-view[data-v-86140132]{position:absolute;top:0;left:0;width:100%;height:100%;z-index:2;padding:0 %?15?%;text-align:center}.helang-tab-bar .item .bulge-active .btn > uni-view[data-v-86140132]{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.helang-tab-bar .item .open .rudder .color-yellow[data-v-86140132], .helang-tab-bar .item .open .rudder .color-orange[data-v-86140132], .helang-tab-bar .item .open .rudder .content[data-v-86140132]{-webkit-transform:rotate(0deg);transform:rotate(0deg)}.helang-tab-bar .item .open .rudder .color-yellow[data-v-86140132]{transition:-webkit-transform .3s ease 0s;transition:transform .3s ease 0s;transition:transform .3s ease 0s,-webkit-transform .3s ease 0s}.helang-tab-bar .item .open .rudder .color-orange[data-v-86140132]{transition:-webkit-transform .3s ease .05s;transition:transform .3s ease .05s;transition:transform .3s ease .05s,-webkit-transform .3s ease .05s}.helang-tab-bar .item .open .rudder .content[data-v-86140132]{transition:-webkit-transform .3s ease .1s;transition:transform .3s ease .1s;transition:transform .3s ease .1s,-webkit-transform .3s ease .1s}.helang-tab-bar .item .close .rudder .color-yellow[data-v-86140132], .helang-tab-bar .item .close .rudder .color-orange[data-v-86140132], .helang-tab-bar .item .close .rudder .content[data-v-86140132]{-webkit-transform:rotate(-180deg);transform:rotate(-180deg)}.helang-tab-bar .item .close .rudder .color-yellow[data-v-86140132]{transition:-webkit-transform .3s ease .1s;transition:transform .3s ease .1s;transition:transform .3s ease .1s,-webkit-transform .3s ease .1s}.helang-tab-bar .item .close .rudder .color-orange[data-v-86140132]{transition:-webkit-transform .3s ease .05s;transition:transform .3s ease .05s;transition:transform .3s ease .05s,-webkit-transform .3s ease .05s}.helang-tab-bar .item .close .rudder .content[data-v-86140132]{transition:-webkit-transform .3s ease 0s;transition:transform .3s ease 0s;transition:transform .3s ease 0s,-webkit-transform .3s ease 0s}.helang-tab-bar .item .active[data-v-86140132]{color:#c66219}.helang-tab-bar .item .active[data-v-86140132] .uni-icons{color:#c66219!important}@-webkit-keyframes translate-data-v-86140132{from{-webkit-transform:translateY(0) scale(1);transform:translateY(0) scale(1)}to{-webkit-transform:translateY(%?-20?%) scale(1.1);transform:translateY(%?-20?%) scale(1.1)}}@keyframes translate-data-v-86140132{from{-webkit-transform:translateY(0) scale(1);transform:translateY(0) scale(1)}to{-webkit-transform:translateY(%?-20?%) scale(1.1);transform:translateY(%?-20?%) scale(1.1)}}',""]),e.exports=t},c604:function(e,t,a){var n=a("2867");n.__esModule&&(n=n.default),"string"===typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals);var i=a("4f06").default;i("9b4652ee",n,!0,{sourceMap:!1,shadowMode:!1})},c68c:function(e,t,a){var n=a("24fb"),i=a("1de5"),o=a("291e");t=n(!1);var c=i(o);t.push([e.i,'@charset "UTF-8";\r\n/**\r\n * 这里是uni-app内置的常用样式变量\r\n *\r\n * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量\r\n * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App\r\n *\r\n */\r\n/**\r\n * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能\r\n *\r\n * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件\r\n */\r\n/* 颜色变量 */\r\n/* 行为相关颜色 */\r\n/* 文字基本颜色 */\r\n/* 背景颜色 */\r\n/* 边框颜色 */\r\n/* 尺寸变量 */\r\n/* 文字尺寸 */\r\n/* 图片尺寸 */\r\n/* Border Radius */\r\n/* 水平间距 */\r\n/* 垂直间距 */\r\n/* 透明度 */\r\n/* 文章场景相关 */.uniui-color[data-v-dc432f54]:before{content:"\\e6cf"}.uniui-wallet[data-v-dc432f54]:before{content:"\\e6b1"}.uniui-settings-filled[data-v-dc432f54]:before{content:"\\e6ce"}.uniui-auth-filled[data-v-dc432f54]:before{content:"\\e6cc"}.uniui-shop-filled[data-v-dc432f54]:before{content:"\\e6cd"}.uniui-staff-filled[data-v-dc432f54]:before{content:"\\e6cb"}.uniui-vip-filled[data-v-dc432f54]:before{content:"\\e6c6"}.uniui-plus-filled[data-v-dc432f54]:before{content:"\\e6c7"}.uniui-folder-add-filled[data-v-dc432f54]:before{content:"\\e6c8"}.uniui-color-filled[data-v-dc432f54]:before{content:"\\e6c9"}.uniui-tune-filled[data-v-dc432f54]:before{content:"\\e6ca"}.uniui-calendar-filled[data-v-dc432f54]:before{content:"\\e6c0"}.uniui-notification-filled[data-v-dc432f54]:before{content:"\\e6c1"}.uniui-wallet-filled[data-v-dc432f54]:before{content:"\\e6c2"}.uniui-medal-filled[data-v-dc432f54]:before{content:"\\e6c3"}.uniui-gift-filled[data-v-dc432f54]:before{content:"\\e6c4"}.uniui-fire-filled[data-v-dc432f54]:before{content:"\\e6c5"}.uniui-refreshempty[data-v-dc432f54]:before{content:"\\e6bf"}.uniui-location-filled[data-v-dc432f54]:before{content:"\\e6af"}.uniui-person-filled[data-v-dc432f54]:before{content:"\\e69d"}.uniui-personadd-filled[data-v-dc432f54]:before{content:"\\e698"}.uniui-back[data-v-dc432f54]:before{content:"\\e6b9"}.uniui-forward[data-v-dc432f54]:before{content:"\\e6ba"}.uniui-arrow-right[data-v-dc432f54]:before{content:"\\e6bb"}.uniui-arrowthinright[data-v-dc432f54]:before{content:"\\e6bb"}.uniui-arrow-left[data-v-dc432f54]:before{content:"\\e6bc"}.uniui-arrowthinleft[data-v-dc432f54]:before{content:"\\e6bc"}.uniui-arrow-up[data-v-dc432f54]:before{content:"\\e6bd"}.uniui-arrowthinup[data-v-dc432f54]:before{content:"\\e6bd"}.uniui-arrow-down[data-v-dc432f54]:before{content:"\\e6be"}.uniui-arrowthindown[data-v-dc432f54]:before{content:"\\e6be"}.uniui-bottom[data-v-dc432f54]:before{content:"\\e6b8"}.uniui-arrowdown[data-v-dc432f54]:before{content:"\\e6b8"}.uniui-right[data-v-dc432f54]:before{content:"\\e6b5"}.uniui-arrowright[data-v-dc432f54]:before{content:"\\e6b5"}.uniui-top[data-v-dc432f54]:before{content:"\\e6b6"}.uniui-arrowup[data-v-dc432f54]:before{content:"\\e6b6"}.uniui-left[data-v-dc432f54]:before{content:"\\e6b7"}.uniui-arrowleft[data-v-dc432f54]:before{content:"\\e6b7"}.uniui-eye[data-v-dc432f54]:before{content:"\\e651"}.uniui-eye-filled[data-v-dc432f54]:before{content:"\\e66a"}.uniui-eye-slash[data-v-dc432f54]:before{content:"\\e6b3"}.uniui-eye-slash-filled[data-v-dc432f54]:before{content:"\\e6b4"}.uniui-info-filled[data-v-dc432f54]:before{content:"\\e649"}.uniui-reload[data-v-dc432f54]:before{content:"\\e6b2"}.uniui-micoff-filled[data-v-dc432f54]:before{content:"\\e6b0"}.uniui-map-pin-ellipse[data-v-dc432f54]:before{content:"\\e6ac"}.uniui-map-pin[data-v-dc432f54]:before{content:"\\e6ad"}.uniui-location[data-v-dc432f54]:before{content:"\\e6ae"}.uniui-starhalf[data-v-dc432f54]:before{content:"\\e683"}.uniui-star[data-v-dc432f54]:before{content:"\\e688"}.uniui-star-filled[data-v-dc432f54]:before{content:"\\e68f"}.uniui-calendar[data-v-dc432f54]:before{content:"\\e6a0"}.uniui-fire[data-v-dc432f54]:before{content:"\\e6a1"}.uniui-medal[data-v-dc432f54]:before{content:"\\e6a2"}.uniui-font[data-v-dc432f54]:before{content:"\\e6a3"}.uniui-gift[data-v-dc432f54]:before{content:"\\e6a4"}.uniui-link[data-v-dc432f54]:before{content:"\\e6a5"}.uniui-notification[data-v-dc432f54]:before{content:"\\e6a6"}.uniui-staff[data-v-dc432f54]:before{content:"\\e6a7"}.uniui-vip[data-v-dc432f54]:before{content:"\\e6a8"}.uniui-folder-add[data-v-dc432f54]:before{content:"\\e6a9"}.uniui-tune[data-v-dc432f54]:before{content:"\\e6aa"}.uniui-auth[data-v-dc432f54]:before{content:"\\e6ab"}.uniui-person[data-v-dc432f54]:before{content:"\\e699"}.uniui-email-filled[data-v-dc432f54]:before{content:"\\e69a"}.uniui-phone-filled[data-v-dc432f54]:before{content:"\\e69b"}.uniui-phone[data-v-dc432f54]:before{content:"\\e69c"}.uniui-email[data-v-dc432f54]:before{content:"\\e69e"}.uniui-personadd[data-v-dc432f54]:before{content:"\\e69f"}.uniui-chatboxes-filled[data-v-dc432f54]:before{content:"\\e692"}.uniui-contact[data-v-dc432f54]:before{content:"\\e693"}.uniui-chatbubble-filled[data-v-dc432f54]:before{content:"\\e694"}.uniui-contact-filled[data-v-dc432f54]:before{content:"\\e695"}.uniui-chatboxes[data-v-dc432f54]:before{content:"\\e696"}.uniui-chatbubble[data-v-dc432f54]:before{content:"\\e697"}.uniui-upload-filled[data-v-dc432f54]:before{content:"\\e68e"}.uniui-upload[data-v-dc432f54]:before{content:"\\e690"}.uniui-weixin[data-v-dc432f54]:before{content:"\\e691"}.uniui-compose[data-v-dc432f54]:before{content:"\\e67f"}.uniui-qq[data-v-dc432f54]:before{content:"\\e680"}.uniui-download-filled[data-v-dc432f54]:before{content:"\\e681"}.uniui-pyq[data-v-dc432f54]:before{content:"\\e682"}.uniui-sound[data-v-dc432f54]:before{content:"\\e684"}.uniui-trash-filled[data-v-dc432f54]:before{content:"\\e685"}.uniui-sound-filled[data-v-dc432f54]:before{content:"\\e686"}.uniui-trash[data-v-dc432f54]:before{content:"\\e687"}.uniui-videocam-filled[data-v-dc432f54]:before{content:"\\e689"}.uniui-spinner-cycle[data-v-dc432f54]:before{content:"\\e68a"}.uniui-weibo[data-v-dc432f54]:before{content:"\\e68b"}.uniui-videocam[data-v-dc432f54]:before{content:"\\e68c"}.uniui-download[data-v-dc432f54]:before{content:"\\e68d"}.uniui-help[data-v-dc432f54]:before{content:"\\e679"}.uniui-navigate-filled[data-v-dc432f54]:before{content:"\\e67a"}.uniui-plusempty[data-v-dc432f54]:before{content:"\\e67b"}.uniui-smallcircle[data-v-dc432f54]:before{content:"\\e67c"}.uniui-minus-filled[data-v-dc432f54]:before{content:"\\e67d"}.uniui-micoff[data-v-dc432f54]:before{content:"\\e67e"}.uniui-closeempty[data-v-dc432f54]:before{content:"\\e66c"}.uniui-clear[data-v-dc432f54]:before{content:"\\e66d"}.uniui-navigate[data-v-dc432f54]:before{content:"\\e66e"}.uniui-minus[data-v-dc432f54]:before{content:"\\e66f"}.uniui-image[data-v-dc432f54]:before{content:"\\e670"}.uniui-mic[data-v-dc432f54]:before{content:"\\e671"}.uniui-paperplane[data-v-dc432f54]:before{content:"\\e672"}.uniui-close[data-v-dc432f54]:before{content:"\\e673"}.uniui-help-filled[data-v-dc432f54]:before{content:"\\e674"}.uniui-paperplane-filled[data-v-dc432f54]:before{content:"\\e675"}.uniui-plus[data-v-dc432f54]:before{content:"\\e676"}.uniui-mic-filled[data-v-dc432f54]:before{content:"\\e677"}.uniui-image-filled[data-v-dc432f54]:before{content:"\\e678"}.uniui-locked-filled[data-v-dc432f54]:before{content:"\\e668"}.uniui-info[data-v-dc432f54]:before{content:"\\e669"}.uniui-locked[data-v-dc432f54]:before{content:"\\e66b"}.uniui-camera-filled[data-v-dc432f54]:before{content:"\\e658"}.uniui-chat-filled[data-v-dc432f54]:before{content:"\\e659"}.uniui-camera[data-v-dc432f54]:before{content:"\\e65a"}.uniui-circle[data-v-dc432f54]:before{content:"\\e65b"}.uniui-checkmarkempty[data-v-dc432f54]:before{content:"\\e65c"}.uniui-chat[data-v-dc432f54]:before{content:"\\e65d"}.uniui-circle-filled[data-v-dc432f54]:before{content:"\\e65e"}.uniui-flag[data-v-dc432f54]:before{content:"\\e65f"}.uniui-flag-filled[data-v-dc432f54]:before{content:"\\e660"}.uniui-gear-filled[data-v-dc432f54]:before{content:"\\e661"}.uniui-home[data-v-dc432f54]:before{content:"\\e662"}.uniui-home-filled[data-v-dc432f54]:before{content:"\\e663"}.uniui-gear[data-v-dc432f54]:before{content:"\\e664"}.uniui-smallcircle-filled[data-v-dc432f54]:before{content:"\\e665"}.uniui-map-filled[data-v-dc432f54]:before{content:"\\e666"}.uniui-map[data-v-dc432f54]:before{content:"\\e667"}.uniui-refresh-filled[data-v-dc432f54]:before{content:"\\e656"}.uniui-refresh[data-v-dc432f54]:before{content:"\\e657"}.uniui-cloud-upload[data-v-dc432f54]:before{content:"\\e645"}.uniui-cloud-download-filled[data-v-dc432f54]:before{content:"\\e646"}.uniui-cloud-download[data-v-dc432f54]:before{content:"\\e647"}.uniui-cloud-upload-filled[data-v-dc432f54]:before{content:"\\e648"}.uniui-redo[data-v-dc432f54]:before{content:"\\e64a"}.uniui-images-filled[data-v-dc432f54]:before{content:"\\e64b"}.uniui-undo-filled[data-v-dc432f54]:before{content:"\\e64c"}.uniui-more[data-v-dc432f54]:before{content:"\\e64d"}.uniui-more-filled[data-v-dc432f54]:before{content:"\\e64e"}.uniui-undo[data-v-dc432f54]:before{content:"\\e64f"}.uniui-images[data-v-dc432f54]:before{content:"\\e650"}.uniui-paperclip[data-v-dc432f54]:before{content:"\\e652"}.uniui-settings[data-v-dc432f54]:before{content:"\\e653"}.uniui-search[data-v-dc432f54]:before{content:"\\e654"}.uniui-redo-filled[data-v-dc432f54]:before{content:"\\e655"}.uniui-list[data-v-dc432f54]:before{content:"\\e644"}.uniui-mail-open-filled[data-v-dc432f54]:before{content:"\\e63a"}.uniui-hand-down-filled[data-v-dc432f54]:before{content:"\\e63c"}.uniui-hand-down[data-v-dc432f54]:before{content:"\\e63d"}.uniui-hand-up-filled[data-v-dc432f54]:before{content:"\\e63e"}.uniui-hand-up[data-v-dc432f54]:before{content:"\\e63f"}.uniui-heart-filled[data-v-dc432f54]:before{content:"\\e641"}.uniui-mail-open[data-v-dc432f54]:before{content:"\\e643"}.uniui-heart[data-v-dc432f54]:before{content:"\\e639"}.uniui-loop[data-v-dc432f54]:before{content:"\\e633"}.uniui-pulldown[data-v-dc432f54]:before{content:"\\e632"}.uniui-scan[data-v-dc432f54]:before{content:"\\e62a"}.uniui-bars[data-v-dc432f54]:before{content:"\\e627"}.uniui-cart-filled[data-v-dc432f54]:before{content:"\\e629"}.uniui-checkbox[data-v-dc432f54]:before{content:"\\e62b"}.uniui-checkbox-filled[data-v-dc432f54]:before{content:"\\e62c"}.uniui-shop[data-v-dc432f54]:before{content:"\\e62f"}.uniui-headphones[data-v-dc432f54]:before{content:"\\e630"}.uniui-cart[data-v-dc432f54]:before{content:"\\e631"}@font-face{font-family:uniicons;src:url('+c+') format("truetype")}.uni-icons[data-v-dc432f54]{font-family:uniicons;text-decoration:none;text-align:center}',""]),e.exports=t},cbbc:function(e,t,a){"use strict";a.r(t);var n=a("5fae"),i=a.n(n);for(var o in n)"default"!==o&&function(e){a.d(t,e,(function(){return n[e]}))}(o);t["default"]=i.a},ccf3:function(e,t,a){"use strict";var n=a("dfc3"),i=a.n(n);i.a},ce70:function(e,t,a){"use strict";a.r(t);var n=a("3081"),i=a("8fdf");for(var o in i)"default"!==o&&function(e){a.d(t,e,(function(){return i[e]}))}(o);a("5c89");var c,l=a("f0c5"),r=Object(l["a"])(i["default"],n["b"],n["c"],!1,null,"dc432f54",null,!1,n["a"],c);t["default"]=r.exports},cfee:function(e,t,a){"use strict";var n=a("3385"),i=a.n(n);i.a},d258:function(e,t,a){"use strict";var n=a("4ea4");Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var i=n(a("ce70")),o={name:"helangTabBarRoll",components:{uniIcons:i.default},props:{fixedBottom:{type:Boolean,default:!0}},data:function(){return{prevIndex:-1,current:0,tabList:[{icon:"home-filled",text:"首页"},{icon:"chat-filled",text:"消息"},{icon:"cart-filled",text:"购物"},{icon:"gift-filled",text:"福利"},{icon:"person-filled",text:"我的"}]}},methods:{change:function(e){this.current!=e&&(this.prevIndex=this.current,this.current=e)}}};t.default=o},d4e8:function(e,t,a){var n=a("58e3");n.__esModule&&(n=n.default),"string"===typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals);var i=a("4f06").default;i("03645db9",n,!0,{sourceMap:!1,shadowMode:!1})},d4f1:function(e,t,a){"use strict";var n=a("4ea4");Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var i=n(a("ce70")),o={name:"helangTabBarOverturn",components:{uniIcons:i.default},props:{fixedBottom:{type:Boolean,default:!0}},data:function(){return{prevIndex:-1,current:3,tabList:[{icon:"home",text:"首页"},{icon:"chat",text:"消息"},{bulge:!0},{icon:"gift",text:"福利"},{icon:"person",text:"我的"}],openBulge:!1}},computed:{},methods:{change:function(e){this.tabList[e].bulge||this.current!=e&&(this.prevIndex=this.current,this.current=e,this.openBulge=!1)},changeBulge:function(){this.openBulge=!this.openBulge}}};t.default=o},de75:function(e,t,a){var n=a("f767");n.__esModule&&(n=n.default),"string"===typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals);var i=a("4f06").default;i("84a7360a",n,!0,{sourceMap:!1,shadowMode:!1})},dfc3:function(e,t,a){var n=a("bfb6");n.__esModule&&(n=n.default),"string"===typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals);var i=a("4f06").default;i("15c10b1d",n,!0,{sourceMap:!1,shadowMode:!1})},e022:function(e,t,a){"use strict";a.r(t);var n=a("e43a"),i=a.n(n);for(var o in n)"default"!==o&&function(e){a.d(t,e,(function(){return n[e]}))}(o);t["default"]=i.a},e43a:function(e,t,a){"use strict";var n=a("4ea4");Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var i=n(a("ce70")),o={name:"helangTabBarOverturn",components:{uniIcons:i.default},props:{fixedBottom:{type:Boolean,default:!0}},data:function(){return{prevIndex:-1,current:2,tabList:[{icon:"home",iconSelected:"home-filled",text:"首页"},{icon:"chat",iconSelected:"chat-filled",text:"消息"},{icon:"gift",iconSelected:"gift-filled",text:"福利"},{icon:"star",iconSelected:"star-filled",text:"收藏"},{icon:"person",iconSelected:"person-filled",text:"我的"}]}},computed:{},methods:{change:function(e){this.current!=e&&(this.prevIndex=this.current,this.current=e)}}};t.default=o},ea2f:function(e,t,a){"use strict";a.r(t);var n=a("f71f"),i=a.n(n);for(var o in n)"default"!==o&&function(e){a.d(t,e,(function(){return n[e]}))}(o);t["default"]=i.a},f71f:function(e,t,a){"use strict";var n=a("4ea4");Object.defineProperty(t,"__esModule",{value:!0}),t.default=void 0;var i=n(a("8c59")),o=n(a("2287")),c=n(a("9d94")),l=n(a("2fc9")),r=n(a("09ba")),d=n(a("8964")),f={components:{"helang-tab-bar-roll":i.default,"helang-tab-bar-bubble":o.default,"helang-tab-bar-overturn":c.default,"helang-tab-bar-bulge":l.default,"helang-tab-bar-curtain":r.default,"helang-tab-bar-slide":d.default},data:function(){return{}},methods:{}};t.default=f},f767:function(e,t,a){var n=a("24fb");t=n(!1),t.push([e.i,'@charset "UTF-8";\r\n/**\r\n * 这里是uni-app内置的常用样式变量\r\n *\r\n * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量\r\n * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App\r\n *\r\n */\r\n/**\r\n * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能\r\n *\r\n * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件\r\n */\r\n/* 颜色变量 */\r\n/* 行为相关颜色 */\r\n/* 文字基本颜色 */\r\n/* 背景颜色 */\r\n/* 边框颜色 */\r\n/* 尺寸变量 */\r\n/* 文字尺寸 */\r\n/* 图片尺寸 */\r\n/* Border Radius */\r\n/* 水平间距 */\r\n/* 垂直间距 */\r\n/* 透明度 */\r\n/* 文章场景相关 */\r\n/*\r\n * uni-app flex 布局盒子\r\n * 作者:helang\r\n * 邮箱:helang.love@qq.com\r\n*/\r\n/* 分列式弹性盒子,以X轴从左到右排列 */.h-flex-x[data-v-0e7905fe]{display:flex;flex-direction:row;flex-wrap:nowrap;justify-content:flex-start;align-items:center;align-content:center\r\n /* 水平左对齐 */\r\n /* 水平居中对齐 */\r\n /* 水平右对齐 */\r\n /* 水平两端对齐 */\r\n /* 垂直顶部对齐 */\r\n /* 垂直底部对齐 */\r\n /* 允许换行 */\r\n /* 等比分列,2-6列 */\r\n /* 弹性元素 */}.h-flex-x.h-flex-left[data-v-0e7905fe]{justify-content:flex-start}.h-flex-x.h-flex-center[data-v-0e7905fe]{justify-content:center}.h-flex-x.h-flex-right[data-v-0e7905fe]{justify-content:flex-end}.h-flex-x.h-flex-space[data-v-0e7905fe]{justify-content:space-between}.h-flex-x.h-flex-top[data-v-0e7905fe]{align-items:flex-start;align-content:flex-start}.h-flex-x.h-flex-bottom[data-v-0e7905fe]{align-items:flex-end;align-content:flex-end}.h-flex-x.h-flex-wrap[data-v-0e7905fe]{flex-wrap:wrap}.h-flex-x.h-flex-2 > uni-view[data-v-0e7905fe]{width:50%}.h-flex-x.h-flex-3 > uni-view[data-v-0e7905fe]{width:33.33333%}.h-flex-x.h-flex-4 > uni-view[data-v-0e7905fe]{width:25%}.h-flex-x.h-flex-5 > uni-view[data-v-0e7905fe]{width:20%}.h-flex-x.h-flex-6 > uni-view[data-v-0e7905fe]{width:16.66667%}.h-flex-x > .h-flex-item-grow[data-v-0e7905fe]{flex-grow:1;width:0}\r\n/* 分行式弹性盒子,以Y轴从上到下排列 */.h-flex-y[data-v-0e7905fe]{display:flex;flex-direction:column;flex-wrap:nowrap;justify-content:flex-start;align-items:flex-start;align-content:flex-start\r\n /* 垂直居中对齐 */\r\n /* 水平左对齐 */\r\n /* 水平右对齐 */\r\n /* 垂直两端对齐 */\r\n /* 垂直顶部对齐 */\r\n /* 垂直底部对齐 */\r\n /* 等比分行,2-6行 */\r\n /* 弹性元素 */}.h-flex-y.h-flex-center[data-v-0e7905fe]{justify-content:center;align-items:center;align-content:center}.h-flex-y.h-flex-left[data-v-0e7905fe]{align-items:flex-start;align-content:flex-start}.h-flex-y.h-flex-right[data-v-0e7905fe]{align-items:flex-end;align-content:flex-end}.h-flex-y.h-flex-space[data-v-0e7905fe]{justify-content:space-between}.h-flex-y.h-flex-top[data-v-0e7905fe]{justify-content:flex-start}.h-flex-y.h-flex-bottom[data-v-0e7905fe]{justify-content:flex-end}.h-flex-y.h-flex-2 > uni-view[data-v-0e7905fe]{height:50%}.h-flex-y.h-flex-3 > uni-view[data-v-0e7905fe]{height:33.33333%}.h-flex-y.h-flex-4 > uni-view[data-v-0e7905fe]{height:25%}.h-flex-y.h-flex-5 > uni-view[data-v-0e7905fe]{height:20%}.h-flex-y.h-flex-6 > uni-view[data-v-0e7905fe]{height:16.66667%}.h-flex-y > .h-flex-item-grow[data-v-0e7905fe]{flex-grow:1;height:0}\r\n/**\r\n * 底部导通用样式\r\n * 作者:黄河爱浪\r\n * QQ:1846492969\r\n */.helang-tab-bar[data-v-0e7905fe]{font-size:%?28?%}.helang-tab-bar uni-view[data-v-0e7905fe]{box-sizing:border-box}.helang-tab-bar .placeholder[data-v-0e7905fe]{height:%?100?%;box-sizing:initial;padding-bottom:0;padding-bottom:constant(safe-area-inset-bottom);padding-bottom:env(safe-area-inset-bottom);width:100%}.helang-tab-bar .bar[data-v-0e7905fe]{height:%?100?%;box-sizing:initial;background-color:#fff;position:relative}.helang-tab-bar .bar.fixed[data-v-0e7905fe]{position:fixed;bottom:0;left:0;width:%?750?%}.helang-tab-bar .item[data-v-0e7905fe]{height:%?100?%;position:relative;color:#bebcbc;font-size:%?20?%;line-height:normal}.helang-tab-bar .item .icon[data-v-0e7905fe]{position:relative;width:%?60?%;height:%?60?%;margin:0 auto}.helang-tab-bar .item .icon > uni-view[data-v-0e7905fe]{position:absolute;top:0;left:0;width:100%;height:100%;-webkit-transform-style:preserve-3d;transform-style:preserve-3d;transition:.5s ease}.helang-tab-bar .item .icon .icon-default[data-v-0e7905fe]{position:absolute;top:0;left:0;width:100%;height:100%;background-color:#fff}.helang-tab-bar .item .icon .icon-selected[data-v-0e7905fe]{background-color:#fff;position:absolute;top:0;left:0;width:100%;height:100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;display:flex;justify-content:center;align-items:center;-webkit-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transform:rotateY(180deg);transform:rotateY(180deg)}.helang-tab-bar .item.active[data-v-0e7905fe]{color:#262626}.helang-tab-bar .item.active .icon > uni-view[data-v-0e7905fe]{-webkit-transform:rotateY(180deg);transform:rotateY(180deg)}',""]),e.exports=t},f809:function(e,t,a){var n=a("6d55");n.__esModule&&(n=n.default),"string"===typeof n&&(n=[[e.i,n,""]]),n.locals&&(e.exports=n.locals);var i=a("4f06").default;i("366bb531",n,!0,{sourceMap:!1,shadowMode:!1})}}]); \ No newline at end of file diff --git a/uniapp-extend/unpackage/dist/build/h5/static/js/uni_modules-helang-waterfall-pages-waterfall-waterfall.6ef05542.js b/uniapp-extend/unpackage/dist/build/h5/static/js/uni_modules-helang-waterfall-pages-waterfall-waterfall.6ef05542.js deleted file mode 100644 index ade13a5..0000000 --- a/uniapp-extend/unpackage/dist/build/h5/static/js/uni_modules-helang-waterfall-pages-waterfall-waterfall.6ef05542.js +++ /dev/null @@ -1 +0,0 @@ -(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["uni_modules-helang-waterfall-pages-waterfall-waterfall"],{"0013":function(t,e,a){"use strict";var n=a("4ea4");a("a434"),Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var i=n(a("5530")),r=n(a("2909")),s=n(a("2977")),o={components:{"helang-waterfall-item":s.default},props:{status:{type:String,default:""},awaitText:{type:String,default:"上拉加载更多"},loadingText:{type:String,default:"加载中"},successText:{type:String,default:"加载中"},finishText:{type:String,default:"没有更多了"},failText:{type:String,default:"加载失败"},list:{type:Array,default:function(){return[]}},reset:{type:Boolean,default:!1}},watch:{"$props.status":function(t,e){if("success"==t){if(!this.$props.list||this.$props.list.length<1)return void console.error("河浪瀑布流插件提示:当前数据无效");this.$props.reset&&(this.leftHeight=0,this.rightHeight=0,this.leftList=[],this.rightList=[],this.awaitRenderList=[],this.showPage=1),this.awaitRenderList=(0,r.default)(this.$props.list),this.renderList()}}},computed:{statusText:function(){if(!this.$props.status)return!1;var t="".concat(this.$props.status,"Text");return this.$props[t]||!1}},data:function(){return{leftHeight:0,rightHeight:0,leftList:[],rightList:[],awaitRenderList:[],showPage:1}},methods:{onHeight:function(t,e){var a=uni.upx2px(20);"left"==e?this.leftHeight+=t+a:this.rightHeight+=t+a,this.renderList()},onClick:function(t,e){"left"==e?this.$emit("click",this.leftList[t],t,e):this.$emit("click",this.rightList[t],t,e)},renderList:function(){if(this.awaitRenderList.length<1)return this.showPage++,this.$emit("done"),void(this.leftHeight>1e8&&(this.leftHeight>this.rightHeight?(this.leftHeight=2,this.rightHeight=1):(this.leftHeight=1,this.rightHeight=2)));var t=(0,i.default)((0,i.default)({},this.awaitRenderList.splice(0,1)[0]),{},{_current_page:this.showPage,_render_id:(new Date).getTime()});this.leftHeight>this.rightHeight?this.rightList.push(t):this.leftList.push(t)}}};e.default=o},"02b5":function(t,e,a){var n=a("24fb");e=n(!1),e.push([t.i,'@charset "UTF-8";\r\n/**\r\n * 这里是uni-app内置的常用样式变量\r\n *\r\n * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量\r\n * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App\r\n *\r\n */\r\n/**\r\n * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能\r\n *\r\n * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件\r\n */\r\n/* 颜色变量 */\r\n/* 行为相关颜色 */\r\n/* 文字基本颜色 */\r\n/* 背景颜色 */\r\n/* 边框颜色 */\r\n/* 尺寸变量 */\r\n/* 文字尺寸 */\r\n/* 图片尺寸 */\r\n/* Border Radius */\r\n/* 水平间距 */\r\n/* 垂直间距 */\r\n/* 透明度 */\r\n/* 文章场景相关 */.waterfall-box[data-v-79303150]{padding:%?20?% %?10?%;box-sizing:border-box}.waterfall-box > uni-view[data-v-79303150]{padding:0 %?10?%}.waterfall-box .list-item[data-v-79303150]{margin-bottom:0;opacity:0;overflow:hidden;height:0}.waterfall-box .list-item.show[data-v-79303150]{margin-bottom:%?20?%;opacity:1;overflow:auto;height:auto}.h-flex-x[data-v-79303150]{display:flex;flex-direction:row;flex-wrap:nowrap;justify-content:flex-start;align-items:flex-start;align-content:flex-start}.h-flex-x.h-flex-2 > uni-view[data-v-79303150]{width:50%}.load-txt[data-v-79303150]{padding:0 0 %?20?% 0;text-align:center;color:#999;font-size:%?24?%}',""]),t.exports=e},"0684":function(t,e,a){"use strict";var n=a("8f66"),i=a.n(n);i.a},1335:function(t,e,a){var n=a("02b5");n.__esModule&&(n=n.default),"string"===typeof n&&(n=[[t.i,n,""]]),n.locals&&(t.exports=n.locals);var i=a("4f06").default;i("68abba9a",n,!0,{sourceMap:!1,shadowMode:!1})},"20ad":function(t,e,a){"use strict";var n;a.d(e,"b",(function(){return i})),a.d(e,"c",(function(){return r})),a.d(e,"a",(function(){return n}));var i=function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("v-uni-view",[a("v-uni-view",{staticClass:"waterfall-box h-flex-x h-flex-2"},[a("v-uni-view",t._l(t.leftList,(function(e,n){return a("v-uni-view",{key:e._render_id,staticClass:"list-item",class:{show:t.showPage>e._current_page}},[a("helang-waterfall-item",{attrs:{params:e,tag:"left",index:n},on:{height:function(e){arguments[0]=e=t.$handleEvent(e),t.onHeight.apply(void 0,arguments)},click:function(e){arguments[0]=e=t.$handleEvent(e),t.onClick.apply(void 0,arguments)}}})],1)})),1),a("v-uni-view",t._l(t.rightList,(function(e,n){return a("v-uni-view",{key:e._render_id,staticClass:"list-item",class:{show:t.showPage>e._current_page}},[a("helang-waterfall-item",{attrs:{params:e,tag:"right",index:n},on:{height:function(e){arguments[0]=e=t.$handleEvent(e),t.onHeight.apply(void 0,arguments)},click:function(e){arguments[0]=e=t.$handleEvent(e),t.onClick.apply(void 0,arguments)}}})],1)})),1)],1),t.statusText?a("v-uni-view",{staticClass:"load-txt"},[t._v(t._s(t.statusText))]):t._e()],1)},r=[]},2909:function(t,e,a){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=l;var n=o(a("6005")),i=o(a("db90")),r=o(a("06c5")),s=o(a("3427"));function o(t){return t&&t.__esModule?t:{default:t}}function l(t){return(0,n.default)(t)||(0,i.default)(t)||(0,r.default)(t)||(0,s.default)()}},2977:function(t,e,a){"use strict";a.r(e);var n=a("9668"),i=a("e8e6");for(var r in i)"default"!==r&&function(t){a.d(e,t,(function(){return i[t]}))}(r);a("97fe");var s,o=a("f0c5"),l=Object(o["a"])(i["default"],n["b"],n["c"],!1,null,"15d1b088",null,!1,n["a"],s);e["default"]=l.exports},3427:function(t,e,a){"use strict";function n(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}Object.defineProperty(e,"__esModule",{value:!0}),e.default=n},"42cd":function(t,e,a){"use strict";a("99af"),a("d3b7"),Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n=function(){return new Promise((function(t,e){setTimeout((function(){for(var e=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,e=arguments.length>1?arguments[1]:void 0;return Math.floor(Math.random()*e)+t},a=["桃花坞里桃花庵,桃花庵里桃花仙;","桃花仙人种桃树,又摘桃花卖酒钱。","酒醒只在花前坐,酒醉还来花下眠;半醒半醉日复日,花落花开年复年。","但愿老死花酒间,不愿鞠躬车马前;","车尘马足富者趣,酒盏花枝贫者缘。若将富贵比贫贱,","一在平地一在天;若将贫贱比车马,他得驱驰我得闲。","别人笑我太疯癫,我笑他人看不穿;不见五陵豪杰墓,无花无酒锄作田。"],n=[],i=0;i<10;i++)n.push({id:i+1,url:"/uni_modules/helang-waterfall/static/waterfall/".concat(e(0,3),".jpg?t=").concat((new Date).getTime()),title:a[e(0,a.length)],money:e(9,9999),label:"官方自营",shop:"唐诗三百首旗舰店"});t(n)}),500)}))},i={getList:n};e.default=i},5462:function(t,e,a){var n=a("24fb");e=n(!1),e.push([t.i,'@charset "UTF-8";\r\n/**\r\n * 这里是uni-app内置的常用样式变量\r\n *\r\n * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量\r\n * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App\r\n *\r\n */\r\n/**\r\n * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能\r\n *\r\n * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件\r\n */\r\n/* 颜色变量 */\r\n/* 行为相关颜色 */\r\n/* 文字基本颜色 */\r\n/* 背景颜色 */\r\n/* 边框颜色 */\r\n/* 尺寸变量 */\r\n/* 文字尺寸 */\r\n/* 图片尺寸 */\r\n/* Border Radius */\r\n/* 水平间距 */\r\n/* 垂直间距 */\r\n/* 透明度 */\r\n/* 文章场景相关 */.waterfall-item[data-v-15d1b088]{padding:%?16?%;background-color:#fff;border-radius:4px;font-size:%?28?%;color:#666}.waterfall-item uni-image[data-v-15d1b088]{display:block;width:100%;height:%?350?%}.waterfall-item .content[data-v-15d1b088]{margin-top:%?16?%}.waterfall-item .content .money[data-v-15d1b088]{color:#fa3534;margin-top:%?8?%}.waterfall-item .content .label[data-v-15d1b088]{background-color:#fa3534;color:#fff;font-size:%?20?%;padding:%?4?% %?16?%;border-radius:%?20?%}.waterfall-item .content .shop-name[data-v-15d1b088]{font-size:%?20?%;color:#999}',""]),t.exports=e},6005:function(t,e,a){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.default=r;var n=i(a("6b75"));function i(t){return t&&t.__esModule?t:{default:t}}function r(t){if(Array.isArray(t))return(0,n.default)(t)}},"6d29":function(t,e,a){"use strict";var n=a("4ea4");a("99af"),Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var i=n(a("2909")),r=n(a("dc5d")),s=n(a("42cd")),o={components:{"helang-waterfall-list":r.default},data:function(){return{ajax:{load:!0,rows:10,page:1,dataList:[]},waterfall:{status:"",reset:!1,list:[]}}},onReady:function(){this.getList()},onReachBottom:function(){this.getList()},onPullDownRefresh:function(){var t=this;setTimeout((function(){t.ajax.page=1,t.ajax.load=!0,t.getList()}),800)},methods:{onClick:function(t,e,a){console.log(t);var n={left:"左",right:"右"};uni.showToast({title:"".concat(n[a],"侧列表第").concat(e+1,"个被点击"),icon:"none"})},onDone:function(){this.waterfall.reset=!1,this.ajax.load=!0,this.ajax.page++,this.waterfall.status="await"},getList:function(){var t=this;this.ajax.load&&(this.ajax.load=!1,this.waterfall.status="loading",s.default.getList({pageNum:this.ajax.page,pageSize:this.ajax.rows}).then((function(e){console.log(e),1==t.ajax.page&&(uni.stopPullDownRefresh(),t.waterfall.reset=!0),!e||e.length<1?t.waterfall.status="finish":(t.waterfall.list=e,t.waterfall.status="success",1==t.ajax.page?t.ajax.dataList=e:t.ajax.dataList=[].concat((0,i.default)(t.ajax.dataList),(0,i.default)(e)),t.ajax.dataCount=e.length||0)})))}}};e.default=o},"8f66":function(t,e,a){var n=a("e0ac");n.__esModule&&(n=n.default),"string"===typeof n&&(n=[[t.i,n,""]]),n.locals&&(t.exports=n.locals);var i=a("4f06").default;i("259f2478",n,!0,{sourceMap:!1,shadowMode:!1})},9668:function(t,e,a){"use strict";var n;a.d(e,"b",(function(){return i})),a.d(e,"c",(function(){return r})),a.d(e,"a",(function(){return n}));var i=function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("v-uni-view",{staticClass:"waterfall-item-container"},[a("v-uni-view",{staticClass:"waterfall-item",on:{click:function(e){arguments[0]=e=t.$handleEvent(e),t.onTap.apply(void 0,arguments)}}},[a("v-uni-image",{attrs:{src:t.params.url,mode:"widthFix"},on:{load:function(e){arguments[0]=e=t.$handleEvent(e),t.emitHeight.apply(void 0,arguments)},error:function(e){arguments[0]=e=t.$handleEvent(e),t.emitHeight.apply(void 0,arguments)}}}),a("v-uni-view",{staticClass:"content"},[a("v-uni-view",[t._v(t._s(t.params.title))]),a("v-uni-view",{staticClass:"money"},[t._v(t._s(t.params.money)+"元")]),a("v-uni-view",{staticStyle:{margin:"0 0 8rpx 0"}},[a("v-uni-text",{staticClass:"label"},[t._v(t._s(t.params.label))])],1),a("v-uni-view",{staticClass:"shop-name"},[t._v(t._s(t.params.shop))])],1)],1)],1)},r=[]},"97fe":function(t,e,a){"use strict";var n=a("c97d"),i=a.n(n);i.a},"9c4b":function(t,e,a){"use strict";var n;a.d(e,"b",(function(){return i})),a.d(e,"c",(function(){return r})),a.d(e,"a",(function(){return n}));var i=function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("v-uni-view",[a("helang-waterfall-list",{attrs:{status:t.waterfall.status,list:t.waterfall.list,reset:t.waterfall.reset},on:{click:function(e){arguments[0]=e=t.$handleEvent(e),t.onClick.apply(void 0,arguments)},done:function(e){arguments[0]=e=t.$handleEvent(e),t.onDone.apply(void 0,arguments)}}})],1)},r=[]},a069:function(t,e,a){"use strict";a.r(e);var n=a("9c4b"),i=a("ed98");for(var r in i)"default"!==r&&function(t){a.d(e,t,(function(){return i[t]}))}(r);a("0684");var s,o=a("f0c5"),l=Object(o["a"])(i["default"],n["b"],n["c"],!1,null,"d5161a00",null,!1,n["a"],s);e["default"]=l.exports},ac93:function(t,e,a){"use strict";a.r(e);var n=a("0013"),i=a.n(n);for(var r in n)"default"!==r&&function(t){a.d(e,t,(function(){return n[t]}))}(r);e["default"]=i.a},aeb9:function(t,e,a){"use strict";var n=a("1335"),i=a.n(n);i.a},c97d:function(t,e,a){var n=a("5462");n.__esModule&&(n=n.default),"string"===typeof n&&(n=[[t.i,n,""]]),n.locals&&(t.exports=n.locals);var i=a("4f06").default;i("11f098c6",n,!0,{sourceMap:!1,shadowMode:!1})},db90:function(t,e,a){"use strict";function n(t){if("undefined"!==typeof Symbol&&Symbol.iterator in Object(t))return Array.from(t)}a("a4d3"),a("e01a"),a("d28b"),a("a630"),a("d3b7"),a("3ca3"),a("ddb0"),Object.defineProperty(e,"__esModule",{value:!0}),e.default=n},dc5d:function(t,e,a){"use strict";a.r(e);var n=a("20ad"),i=a("ac93");for(var r in i)"default"!==r&&function(t){a.d(e,t,(function(){return i[t]}))}(r);a("aeb9");var s,o=a("f0c5"),l=Object(o["a"])(i["default"],n["b"],n["c"],!1,null,"79303150",null,!1,n["a"],s);e["default"]=l.exports},e0ac:function(t,e,a){var n=a("24fb");e=n(!1),e.push([t.i,'@charset "UTF-8";\r\n/**\r\n * 这里是uni-app内置的常用样式变量\r\n *\r\n * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量\r\n * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App\r\n *\r\n */\r\n/**\r\n * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能\r\n *\r\n * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件\r\n */\r\n/* 颜色变量 */\r\n/* 行为相关颜色 */\r\n/* 文字基本颜色 */\r\n/* 背景颜色 */\r\n/* 边框颜色 */\r\n/* 尺寸变量 */\r\n/* 文字尺寸 */\r\n/* 图片尺寸 */\r\n/* Border Radius */\r\n/* 水平间距 */\r\n/* 垂直间距 */\r\n/* 透明度 */\r\n/* 文章场景相关 */uni-page-body[data-v-d5161a00]{background-color:#f3f3f3}body.?%PAGE?%[data-v-d5161a00]{background-color:#f3f3f3}',""]),t.exports=e},e4a3:function(t,e,a){"use strict";a("a9e3"),a("ac1f"),Object.defineProperty(e,"__esModule",{value:!0}),e.default=void 0;var n={name:"helang-waterfall",props:{params:{type:Object,default:function(){return{}}},tag:{type:String|Number,default:""},index:{type:Number,default:-1}},data:function(){return{}},methods:{emitHeight:function(t){var e=this,a=uni.createSelectorQuery().in(this);a.select(".waterfall-item-container").boundingClientRect((function(t){var a=Math.floor(t.height);e.$emit("height",a,e.$props.tag)})).exec()},onTap:function(){this.$emit("click",this.$props.index,this.$props.tag)}}};e.default=n},e8e6:function(t,e,a){"use strict";a.r(e);var n=a("e4a3"),i=a.n(n);for(var r in n)"default"!==r&&function(t){a.d(e,t,(function(){return n[t]}))}(r);e["default"]=i.a},ed98:function(t,e,a){"use strict";a.r(e);var n=a("6d29"),i=a.n(n);for(var r in n)"default"!==r&&function(t){a.d(e,t,(function(){return n[t]}))}(r);e["default"]=i.a}}]); \ No newline at end of file diff --git "a/\346\226\207\346\241\243/\345\233\276\347\211\207\345\216\213\347\274\251.md" "b/\346\226\207\346\241\243/\345\233\276\347\211\207\345\216\213\347\274\251.md" index 02eadaa..118abc2 100644 --- "a/\346\226\207\346\241\243/\345\233\276\347\211\207\345\216\213\347\274\251.md" +++ "b/\346\226\207\346\241\243/\345\233\276\347\211\207\345\216\213\347\274\251.md" @@ -1,13 +1,9 @@ ### 图片压缩 -> 关于App平台的图片压缩问题,uniapp已经有相关的API,具体效果不清楚(没用过),从文档看该接口也没有指定尺寸的功能。文档地址:https://uniapp.dcloud.net.cn/api/media/image?id=compressimage +> 关于App平台的图片压缩问题,uniapp已经有相关的API,具体效果不清楚(没用过),与本插件比较少了H5平台的支持。文档地址:https://uniapp.dcloud.net.cn/api/media/image?id=compressimage ---- -> 感谢QQ 674545977 的用户贡献的 H5 平台压缩代码,让我偷懒成功! - ---- #### 在 script 中引用组件 ``` @@ -31,37 +27,19 @@ export default { 方法名 | 可传参数 | 必填 | 说明 ----- | ---- | ----- | ----- compress() | Object | 是 | 【单张压缩】设置压缩的图片及压缩尺寸和压缩质量,参数详情请阅读下方 compress()方法参数 -batchCompress() | Object | 是 | 【批量压缩】设置压缩的图片及压缩尺寸和压缩质量,参数详情请阅读下方 batchCompress()方法参数 #### compress() 方法参数: 参数名 | 类型 | 必填 | 默认值 | 说明 ----- | ---- | ----- | ----- | ----- -src | String | 是 | - | 待压缩的图片地址,由相册选择或拍照获取 -更多参数请查看“方法通用参数”说明 | - | - | - | - - - - -#### batchCompress() 方法参数: - -参数名 | 类型 | 必填 | 默认值 | 说明 ------ | ---- | ----- | ----- | ----- -batchSrc | Array | 是 | - | 待压缩的图片地址,由相册选择或拍照获取 -progress | Function | 否 | - | 压缩进度的回调函数,参数返回参数是一个 Object, 属性详细解释请阅读下方 progress 方法回调对象属性详细说明 -更多参数请查看“方法通用参数”说明 | - | - | - | - - - - -#### 方法通用参数: - -参数名 | 类型 | 必填 | 默认值 | 说明 ------ | ---- | ----- | ----- | ----- +src | String / Array | 是 | - | 待压缩的图片地址,由相册选择或拍照获取。注意:若`src`的值为`String`压缩成功后则返回`String`,若为`Array`,压缩成功后则返回`Array` maxSize | Number | 否 | 1080 | 压缩后的最大尺寸 fileType | String | 否 | 'png' | 压缩后的文件类型,可选值 jpg、png quality | Number | 否 | 0.9 | 压缩后的质量(仅jpg类型有效,原因可自行阅读官方canvas文档),可选值 0 ~ 1,值越大越清晰(图片也越大) minSize | Number | 否 | 640 | 最小压缩尺寸,图片尺寸小于该时值不压缩,非H5平台有效。若想忽略该设置可以将该值设置为一个极小的值,比如一个负数(不能是0) + > 为使插件在 H5 平台统一返回 base64 数据,则故意取消 H5 平台对 minSize 的设置。H5平台压缩后的图片路径是 base64 格式,有跨平台需求须注意 @@ -93,8 +71,8 @@ this.$refs.helangCompress.compress({ }) // 批量压缩 -this.$refs.helangCompress.batchCompress({ - batchSrc:this.paths, +this.$refs.helangCompress.compress({ + src:this.paths, maxSize:800, fileType:'jpg', quality:0.85, -- Gitee