Commit c8b8cc6b by 李嘉林

新华优选兼容

parent 4536200b
......@@ -7,7 +7,7 @@ var packageInfo = require('../package.json')
var mkdirp = require('mkdirp')
exports.assetsPath = function (_path) {
var assetsSubDirectory = process.env.NODE_ENV === 'production'
var assetsSubDirectory = (process.env.NODE_ENV === 'production' || process.env.NODE_ENV == 'xhyx_prod')
? config.build.assetsSubDirectory
: config.dev.assetsSubDirectory
return path.posix.join(assetsSubDirectory, _path)
......@@ -19,7 +19,7 @@ exports.cssLoaders = function (options) {
var cssLoader = {
loader: 'css-loader',
options: {
minimize: process.env.NODE_ENV === 'production',
minimize: (process.env.NODE_ENV === 'production' || process.env.NODE_ENV == 'xhyx_prod'),
sourceMap: options.sourceMap
}
}
......
......@@ -38,7 +38,7 @@ let baseWebpackConfig = {
path: config.build.assetsRoot,
jsonpFunction: 'webpackJsonpMpvue',
filename: '[name].js',
publicPath: process.env.NODE_ENV === 'production'
publicPath: (process.env.NODE_ENV === 'production' || process.env.NODE_ENV == 'xhyx_prod')
? config.build.assetsPublicPath
: config.dev.assetsPublicPath
},
......
......@@ -32,7 +32,15 @@ var fileExt = fileExtConfig[process.env.PLATFORM]
console.log('node_dev',process.env.NODE_ENV)
module.exports = {
build: {
env: process.env.NODE_ENV=='production'?require('./prod.env'): require('./dev.env'),
env: (() => {
let configFile = {
development: require('./dev.env'),
production: require('./prod.env'),
xhyx_uat: require('./xhyx_uat.env'),
xhyx_prod: require('./xhyx_prod.env'),
}
return configFile[process.env.NODE_ENV];
})(),
index: path.resolve(__dirname, `../dist/${fileExt.platform}/index.html`),
assetsRoot: path.resolve(__dirname, `../dist/${fileExt.platform}`),
assetsSubDirectory: '',
......@@ -52,7 +60,16 @@ module.exports = {
fileExt: fileExt
},
dev: {
env: process.env.NODE_ENV=='production'?require('./prod.env'): require('./dev.env'),
// env: process.env.NODE_ENV=='production'?require('./prod.env'): require('./dev.env'),
env: (() => {
let configFile = {
development: require('./dev.env'),
production: require('./prod.env'),
xhyx_uat: require('./xhyx_uat.env'),
xhyx_prod: require('./xhyx_prod.env'),
}
return configFile[process.env.NODE_ENV];
})(),
port: 8080,
// 在小程序开发者工具中不需要自动打开浏览器
autoOpenBrowser: false,
......
/*
* @Author: your name
* @Date: 2020-10-21 09:46:59
* @LastEditTime: 2020-10-22 14:09:41
* @LastEditors: Please set LastEditors
* @Description: In User Settings Edit
* @FilePath: \mayi-mp-shop\config\dev.env.js
*/
var merge = require('webpack-merge')
var prodEnv = require('./prod.env')
module.exports = merge(prodEnv, {//zjgyl
SHOP_MIXID:"'antgood'",
NODE_ENV: '"xhyx_prod"',
// BASE_URL:"'https://shop.mayi888.com'",
// BASE_URL:"'http://192.168.1.146:3005'",
// BASE_URL:"'http://172.16.1.18:3000'",
BASE_URL:"'http://m.xinhuabest.com'",
ADMIN_URL:"'http://admin.xinhuabest.com'",
GUIDE_URL:"'http://guide.xinhuabest.com'",
// BASE_URL:"'http://192.168.137.1:3004'",
OLSHOP_URL:'"http://m.xinhuabest.com/innerApi/shopApiService"',
// OLSHOP_URL:'"https://shop.mayi888.com/innerApi/shopApiService"',
IMG_DOMAIN: '"http://new-xhyx.oss-cn-zhangjiakou.aliyuncs.com"',
POSTHOG_KEY: '"phc_nTr1oY7NkSuDMZsqCskE6iUIGKgWPmFHlRAKFVuZD2B"',
POSTHOG_HOST: '"https://posthog.mayi118.com"'
// IMG_DOMAIN: '"http://cdn.mayi888.com"',
})
/*
* @Author: your name
* @Date: 2020-10-21 09:46:59
* @LastEditTime: 2020-10-22 14:09:41
* @LastEditors: Please set LastEditors
* @Description: In User Settings Edit
* @FilePath: \mayi-mp-shop\config\dev.env.js
*/
var merge = require('webpack-merge')
var prodEnv = require('./prod.env')
module.exports = merge(prodEnv, {//zjgyl
SHOP_MIXID:"'antgood'",
NODE_ENV: '"xhyx_uat"',
// BASE_URL:"'https://shop.mayi888.com'",
// BASE_URL:"'http://192.168.1.146:3005'",
// BASE_URL:"'http://172.16.1.18:3000'",
BASE_URL:"'http://uat.m.xinhuabest.com'",
ADMIN_URL:"'http://uat.admin.xinhuabest.com'",
GUIDE_URL:"'http://uat.guide.xinhuabest.com'",
// BASE_URL:"'http://192.168.137.1:3004'",
OLSHOP_URL:'"http://uat.m.xinhuabest.com/innerApi/shopApiService"',
// OLSHOP_URL:'"https://shop.mayi888.com/innerApi/shopApiService"',
IMG_DOMAIN: '"http://new-xhyx-uat.oss-cn-zhangjiakou.aliyuncs.com"',
POSTHOG_KEY: '"phc_nTr1oY7NkSuDMZsqCskE6iUIGKgWPmFHlRAKFVuZD2B"',
POSTHOG_HOST: '"https://posthog.mayi118.com"'
// IMG_DOMAIN: '"http://cdn.mayi888.com"',
})
......@@ -10,7 +10,9 @@
"pro:wx": "cross-env NODE_ENV=production node build/dev-server.js wx",
"start:wx": "npm run dev:wx",
"build:wx": "cross-env NODE_ENV=production node build/build.js wx",
"build:xhyx_prod": "cross-env NODE_ENV=xhyx_prod node build/build.js wx",
"test:wx": "cross-env NODE_ENV=development node build/build.js wx",
"test:xhyx_uat": "cross-env NODE_ENV=xhyx_uat node build/build.js wx",
"dev:swan": "node build/dev-server.js swan",
"start:swan": "npm run dev:swan",
"build:swan": "node build/build.js swan",
......
......@@ -12,7 +12,13 @@ export default {
let extConfig = wx.getExtConfigSync ? wx.getExtConfigSync() : {};
console.log(extConfig, "-----------extConfig");
if (JSON.stringify(extConfig) == "{}") {
extConfig = process.env.NODE_ENV == "development" ? { mixid: "antgood", shopid: 67}:{ "mixid":"JSrLmM", "shopid": 1135 };
let shopItem = {
development: { mixid: "antgood", "shopid": 67},
production: { "mixid":"qiyeCT", "shopid": 1045 },
xhyx_uat: { "mixid":"xhyxshop", "shopid": 1 },
xhyx_prod: { "mixid":"antgood", "shopid": 67 },
}
extConfig = shopItem[process.env.NODE_ENV];
}
......
......@@ -13,12 +13,9 @@
"pages/tabBar3/main",
"pages/tabBar4/main",
"pages/changeAdr/main",
"pages/downFile/main",
"pages/wxArticle/main",
"pages/userInfo/main",
"pages/memberCode/main",
"pages/toMini/main",
"pages/paySuccess/main",
"pages/stateAccountList/main",
"pages/order/main"
],
......@@ -29,6 +26,14 @@
"pages": [
"article/main"
]
},
{
"root": "pages/pages_subpack1",
"name":"subPackages1",
"pages": [
"paySuccess/main",
"userInfo/main"
]
}
],
"usingComponents": {},
......
<template>
<div class="container">
<van-button @click="download">下载...</van-button>
</div>
</template>
<script>
import dzd from "../../api/wy";
export default {
data(){
return{
status : true
}
},
created(){
},
methods : {
download(){
let down = wx.downloadFile({
url : 'https://test-m-shop.mayi888.cn/innerApi/utilsService/genPdf?url=https://test-m-shop.mayi888.cn/customdev/wy/pgo6p?mixid=antgood',
success : (data) => {
console.log('下载成功',data)
console.log(data.tempFilePath)
if(data.statusCode == 200){
wx.openDocument({
filePath: data.tempFilePath,
showMenu:true,
fileType : 'pdf',
success: function (res) {
console.log('打开文档成功',res)
}
})
}
},
fail : (err) => {
console.log('下载失败',err)
}
})
down.onProgressUpdate((res) => {
console.log(res,'res')
if(res.progress == 100){
console.log('下载成功')
this.status = false
}
})
},
}
}
</script>
<style scoped lang="scss">
</style>
{
"navigationBarTitleText":"下载",
"usingComponents": {
"van-loading": "/static/vant/loading/index"
}
}
\ No newline at end of file
......@@ -103,18 +103,18 @@ import spokesman from "@/api/spokesman";
import { getMiniProgram, query_isEntry } from "@/utils/mayi_fenxiao";
import { serialize } from "@/utils/index";
import { checkTabbarPage, checkShowConditionIds, themeColor } from "@/utils/mayi";
import ThemeDataPlant from "../../components/ThemeDataPlant";
import paySuccessInfo from "../../components/paySuccess/paySuccessInfo";
import PayElectronCard from "../../components/paySuccess/PayElectronCard";
import automatiCard from "../../components/paySuccess/automatiCard";
import ThemeDataPlant from "@/components/ThemeDataPlant";
import paySuccessInfo from "@/components/paySuccess/paySuccessInfo";
import PayElectronCard from "@/components/paySuccess/PayElectronCard";
import automatiCard from "@/components/paySuccess/automatiCard";
import text from "@/components/content/text";
import richText from "../../components/basicTool/rich-text";
import richText from "@/components/basicTool/rich-text";
import interval from "@/components/basicTool/interval/index.vue";
import partition from "@/components/basicTool/partition/index.vue";
import coupon from '@/components/activity/coupon'
import integralTurntable from '@/components/activity/integralTurntable'
import spellGroup from '@/components/activity/spellGroup'
import tool from '../../utils/tool.js'
import tool from '@/utils/tool.js'
const app = getApp();
const { log } = app;
export default {
......
......@@ -127,7 +127,7 @@
import live from "@/api/live";
import index from "@/api/index";
import { DFSImg } from "@/utils/index";
import { themeColor } from "../../utils/mayi.js";
import { themeColor } from "@/utils/mayi.js";
import { formatTime } from "@/utils/index";
const app = getApp()
export default {
......
import Vue from 'vue'
import App from './index'
const app = new Vue(App)
app.$mount()
!function i(o,a,l){function r(t,e){if(!a[t]){if(!o[t]){var n="function"==typeof require&&require;if(!e&&n)return n(t,!0);if(s)return s(t,!0);throw(n=new Error("Cannot find module '"+t+"'")).code="MODULE_NOT_FOUND",n}n=a[t]={exports:{}},o[t][0].call(n.exports,function(e){return r(o[t][1][e]||e)},n,n.exports,i,o,a,l)}return a[t].exports}for(var s="function"==typeof require&&require,e=0;e<l.length;e++)r(l[e]);return r}({1:[function(e,t,n){var i,o,t=t.exports={};function a(){throw new Error("setTimeout has not been defined")}function l(){throw new Error("clearTimeout has not been defined")}function r(t){if(i===setTimeout)return setTimeout(t,0);if((i===a||!i)&&setTimeout)return i=setTimeout,setTimeout(t,0);try{return i(t,0)}catch(e){try{return i.call(null,t,0)}catch(e){return i.call(this,t,0)}}}!function(){try{i="function"==typeof setTimeout?setTimeout:a}catch(e){i=a}try{o="function"==typeof clearTimeout?clearTimeout:l}catch(e){o=l}}();var s,c=[],p=!1,g=-1;function u(){p&&s&&(p=!1,s.length?c=s.concat(c):g=-1,c.length&&d())}function d(){if(!p){var e=r(u);p=!0;for(var t=c.length;t;){for(s=c,c=[];++g<t;)s&&s[g].run();g=-1,t=c.length}s=null,p=!1,function(t){if(o===clearTimeout)return clearTimeout(t);if((o===l||!o)&&clearTimeout)return o=clearTimeout,clearTimeout(t);try{o(t)}catch(e){try{return o.call(null,t)}catch(e){return o.call(this,t)}}}(e)}}function h(e,t){this.fun=e,this.array=t}function m(){}t.nextTick=function(e){var t=new Array(arguments.length-1);if(1<arguments.length)for(var n=1;n<arguments.length;n++)t[n-1]=arguments[n];c.push(new h(e,t)),1!==c.length||p||r(d)},h.prototype.run=function(){this.fun.apply(null,this.array)},t.title="browser",t.browser=!0,t.env={},t.argv=[],t.version="",t.versions={},t.on=m,t.addListener=m,t.once=m,t.off=m,t.removeListener=m,t.removeAllListeners=m,t.emit=m,t.prependListener=m,t.prependOnceListener=m,t.listeners=function(e){return[]},t.binding=function(e){throw new Error("process.binding is not supported")},t.cwd=function(){return"/"},t.chdir=function(e){throw new Error("process.chdir is not supported")},t.umask=function(){return 0}},{}],2:[function(e,t,a){!function(o,t){!function(){"use strict";Object.defineProperty(a,"__esModule",{value:!0}),a.hylBannerLink=i,a.hylToLink=c;var r=void 0,h=void 0,m=void 0,f=void 0,k=void 0,s=void 0,v="",n=null;function i(e){var t,n,i,o,a,l,r,s,c,p,g,u,d;v=$nuxt.$store,console.log("hylBannerLink",e),3!=e.type?1.1==e.type&&(1==v.state.miniProgram||2==v.state.miniProgram?-1<e.link.indexOf("pages/hiberDrawEntity/hiberDrawEntity")?(t=e.link.split("?"))[1]&&t[1].split("=")[1]&&(r=JSON.parse(decodeURIComponent(t[1].split("=")[1])),c=(s=r).id,p=r.type,g=r.isOpenDraw,u=k.formatDate.format(new Date),d=(d=r.validTimeEnd).split(".").join("-"),2==r.validTimeEnd.split(" ").length||(u=u.split(" ")[0]),u=(u=new Date(d.replace(/-/g,"/")).getTime()-new Date(u.replace(/-/g,"/")).getTime())/1e3,2==g?0<=u?(1==p&&$mp.miniProgram.navigateTo({url:"/pages/draw/drawDetails/drawDetails?id="+c}),2==p&&$mp.miniProgram.navigateTo({url:"/pages/draw/drawDetails/drawDetails?id="+c}),3==p&&$mp.miniProgram.navigateTo({url:"/pages/draw/turntable/turntable?id="+c})):2==p&&null!=s.drawRecordEntity?$mp.miniProgram.navigateTo({url:"/pages/draw/drawDetails/drawDetails?perdraw=33&id="+c}):2==p&&null==s.drawRecordEntity?$mp.miniProgram.navigateTo({url:"/pages/draw/drawDetails/drawDetails?id="+c}):h.alert({title:"标题",message:"抽奖已结束"}).then(function(){}):1==p?null==s.drawRecordEntity?$mp.miniProgram.navigateTo({url:"/pages/draw/drawDetails/drawDetails?id="+c}):$mp.miniProgram.navigateTo({url:"/pages/draw/openDraw/openDraw?id="+c}):2==p?null!=s.drawRecordEntity?$mp.miniProgram.navigateTo({url:"/pages/draw/openDraw/openDraw?id="+c}):$mp.miniProgram.navigateTo({url:"/pages/draw/drawDetails/drawDetails?id="+c}):null==s.drawRecordEntity?h.alert({title:"标题",message:"抽奖已结束"}).then(function(){}):$mp.miniProgram.navigateTo({url:"/pages/draw/openDraw/openDraw?id="+c})):-1<e.link.indexOf("type")?(t=e.link.split("?"),"[object Array]"==Object.prototype.toString.call(t)&&t.length&&(l=t[1].split("&"),n={},l.forEach(function(e){e.split("="),n[e.split("=")[0]]=e.split("=")[1]}),console.log(n),i=n.id,o=n.jumpScore,a=n.type,v.state.sessionId?f.getConsumerScoreFlag({outId:v.state.userInfo.mixId,advertisementId:i}).then(function(e){0==e.code&&(1==e.object?(o&&0<o&&f.changeScore({outId:v.state.userInfo.mixId,advertisementId:i}).then(function(e){e.object&&$mp.miniProgram.navigateTo({url:"/pages/advertisement/advertisement?type="+a+"&id="+i})}),o&&o<0&&C.showModal({title:"提示",content:"跳转扣除"+Math.abs(o)+"积分",success:function(e){e.confirm?f.changeScore({outId:v.state.userInfo.mixId,advertisementId:i}).then(function(e){e.object&&$mp.miniProgram.navigateTo({url:"/pages/advertisement/advertisement?type="+a+"&id="+i})}):e.cancel&&console.log("用户点击取消")}}),o||$mp.miniProgram.navigateTo({url:"/pages/advertisement/advertisement?type="+a+"&id="+i})):$mp.miniProgram.navigateTo({url:"/pages/advertisement/advertisement?type="+a+"&id="+i}))}):$mp.miniProgram.navigateTo({url:"/pages/login/login"}))):((e.link.includes("pages/draw/draw/draw")||e.link.includes("pages/question/question")||e.link.includes("pages/live/live"))&&(l=y($nuxt.$route.query.mixid+"_location")&&JSON.parse(y($nuxt.$route.query.mixid+"_location")).outId,console.log(l,"跳转id"),l&&(e.link.includes("?")?e.link=e.link+"&addressId="+l:e.link=e.link+"?addressId="+l)),$mp.miniProgram.navigateTo({url:e.link})):m("暂不支持")):1==v.state.miniProgram||2==v.state.miniProgram?$mp.miniProgram.navigateTo({url:"/pages/toMini/toMini?weappPage="+encodeURIComponent(e.link)+"&weappAppId="+e.name}):m("暂不支持")}function c(e){if(e=e.data,console.log("----工具中hyl"),n=e.type,(v=$nuxt.$store).getters["sceneModule/flushbonadingVisible"])if(null!=n&&"undefined"!=n){if(0!=n)if(1==n)"/"==e.link.substring(0,1)?$nuxt.$router.push(e.link):!e.link.startsWith("http")&&!e.link.startsWith("https")||1!=v.state.miniProgram&&2!=v.state.miniProgram?window.location.href=e.link:$mp.miniProgram.navigateTo({url:"/pages/wxArticle/main?link="+encodeURIComponent(e.link)});else if(2==n){var t=e.feature.type;"themeCouponClick"==t||0==t?this.$themeCouponClick(e.feature.value.couponCode,e.feature.value):1==t?(console.log("是分享了。。。。"),2==e.type&&1==e.feature.type&&$nuxt.$SHARE({itemList:e.feature.value})):"themeMemberCardClick"!=t&&2!=t||this.$themeMemberCardClick(e.feature.value)}else if(1.1==n||3==n)i(e);else if(1.2==n){if("outerChain:businessCenter"==e.link)return console.log(s.GUIDE_URL,"-----shopConfig.GUIDE_URL"),t=s.GUIDE_URL+"/login?mixid="+$nuxt.$route.query.mixid+"&back="+encodeURIComponent(window.location.href),void(window.location.href=t);"/"==e.link.substring(0,1)?$nuxt.$router.push(e.link):1==v.state.miniProgram||2==v.state.miniProgram?$mp.miniProgram.navigateTo({url:"/pages/wxArticle/main?link="+encodeURIComponent(e.link)}):window.location.href=e.link}else 0<e.length&&$nuxt.$router.push(e.link)}else 0<e.length&&$nuxt.$router.push(e)}function y(e){if(o.browser&&"undefined"!=typeof document)for(var t=document.cookie.split(";"),n=0;n<t.length;n++){var i=t[n].split("=");if(i[0].trim()==e)return decodeURIComponent(i[1])}}Object.defineProperty(a,"__esModule",{value:!0}),a.themeToLinkInit=e,a.$themeToLink=M;var p=null,g=null,u=null,r=void 0,d=void 0,s=void 0,m=void 0,c=void 0,w=void 0,C=void 0,P=void 0,T=999999;function I(e,t){t=1<arguments.length&&void 0!==t?t:"";return"../index/main?from=themeLink&backpath="+encodeURIComponent(e)+"&params="+encodeURIComponent(t)}function b(){return 1==p?this.$store&&this.$store.state.sessionId&&this.$store.state.sessionId:2==p?C&&C.getStorageSync("sessionid"):void 0}function $(){return 1==p&&this.$store&&this.$store.state.miniProgram}function x(){return 1==p?s.GUIDE_URL:2==p?config.GUIDE_URL:void 0}function D(e){return e.link?e.link.split("?")[0]:""}function L(e){var e=e.link.split("?"),n=[];return e.forEach(function(e,t){1<=t&&n.push(e)}),n.join("?")||""}function U(t){var e=getApp();return e.globalData.footerVal?e.globalData.footerVal.componentData.list.findIndex(function(e){return D(e.link)==t.split("?")[0]}):-1}var R=["index","media-video","goods-goodsInfo","goods-commodityMenu","goodsSearch-goodsSearch","contentSearch-contentSearch","chooseStores","activty-receivingGift","activty","login-register","login-phoneLogin","login-authInformation","login-forgetPassWord","login-accountLogin","login-wxRegister","pay-payList","comment-evaluateList","goods-commonProblemList","article-articlePage","article-articleList","goods-posters","liveBroadcast","liveBroadcast-list","personalCenter-coupon-getCoupon","buyerShow-showDetail","goods-addGoodsList","personalCenter-CDkey-exchange","giftCards-linkReceive","giftCoupon-preview","smartForm","shopCart-shareShopCart","groupBuying-beInvite","brandTopics","personalCenter-spokesmanCenter","personalCenter-spokesmanCenter-mine-spokesmanHomePage","liveBroadcast-lived","personalCenter-spokesmanCenter-mine-getBusinessCard","changeAdr","enterpriseCustomerRegistration"].map(function(e){return"/index"==(e="/"+e.replace(/-/g,"/"))?"/":e});function e(e){var t=e.homeNative,n=e.wx,i=e.getCoupon,o=e.themeMemberCardClick,a=e.themeScanningCodeClick,l=e.requireFun,e=e.extend;if(P=e,p=t,w=l,console.log(w,"-------------------------115"),d=w.createdUserJWT,w.getBcakUrl,!(C=n)||(n=C.getAccountInfoSync&&C.getAccountInfoSync())&&(T=n.miniProgram.version||999999),console.log(T,"---------------miniVersion"),console.log(p,"-------------themeToLinkInit"),console.log("toPage-------------"),u=1==p?function(e){var t=e.pagePath;1==(e=void 0===(e=e.pageType)?1:e)?this.$router.push(t):2==e?window.location.href=t:3==e&&C.navigateTo({url:t})}:2==p?function(e){var t=e.pagePath;1==(e=void 0===(e=e.pageType)?1:e)?(console.log("pagePath",t),C.navigateTo({url:t})):2==e&&C.reLaunch({url:t})}:void 0,1==p)try{r=w.Vue,s=w.shopConfig,w.shopMixid,r.prototype.$themeToLink=M,m=w.Toast,c=w.hylToLink}catch(e){}else 2==p&&((g=getApp()).$themeToLink=M,g.getCoupon=i,g.themeMemberCardClick=o,g.themeScanningCodeClick=a)}function S(e){if(!(e=e.split("?")[1]))return{};for(var t=e.split("&"),n={},i=0;i<t.length;i++){var o=t[i].indexOf("="),a=t[i].slice(0,o),o=t[i].slice(o+1);console.log(81,this),n[a]=o}return console.log(n,"-------------obj"),n}async function M(t){if(console.log(t,"$themeToLink"),console.log(P,"extend======="),console.log("data",t),0!=t.type){var e,n,i,o,a,l,r=t.type;if(r){if(P.loginIntercept&&!b.call(this)){console.log("走进来了");var s="/pages/login/main?back="+D(t)+"&params="+JSON.stringify(S(t.link));return u({pagePath:s}),!1}if(t.link&&t.link.includes("dynamicForm")){if(!b.call(this))return console.log("走进来了--dynamicForm"),s="/pages/login/main?back="+D(t)+"&params="+JSON.stringify(S(t.link)),u({pagePath:s}),!1;await d().then(function(e){t.link+="&token="+e}).catch(function(e){})}}1==p&&this.$store.getters["sceneModule/flushbonadingVisible"]?c.call(this,{data:t,Vue:w.Vue,Dialog:w.Dialog,Toast:w.Toast,hyl:w.hyl,dateFilter:w.dateFilter,shopConfig:w.shopConfig}):(console.log(t.key,"----------------------key"),(2==r||2!=p||t.key&&t.key.startsWith("1.9")||t.link.startsWith("/article/")||function(e){var t=D(e),n=L(e);if(R.includes(t)||"/goods/"==t.substr(0,7)||t.includes("/brandTopics")||t.startsWith("/activty/")||t.includes("dk.taokor.cn")||b.call(this))return i=U(t),console.log(e.link,"------------data.link"),!(0<=i||e.link.includes("/activty/")&&e.link.includes("tabClick"))||(console.log("底部栏"),i=0==i?U("/"):i,t="/"==t?"/pages/home/main":"/pages/tabBar"+i+"/main",(i=getCurrentPages())[i.length-1].route!=t&&(n=n?"?"+n:"",console.log(n,"--------------247"),u({pagePath:t+n,pageType:2}),0));var i="",i=-1<n.indexOf("scene=sso")?"/pages/login/main?back="+t+"&ossLink="+encodeURIComponent(n):(console.log(encodeURIComponent(JSON.stringify(S(e.link))),"------------------------JSON.stringify(parseQueryString(data.link))"),"/pages/login/main?back="+t+"&params="+encodeURIComponent(JSON.stringify(S(e.link))));return console.log(i,"------------------------190"),u({pagePath:i}),0}(t))&&(null!=r&&"undefined"!=r?(console.log("---------跳过登录判断"),1==r?"/"==t.link.substring(0,1)?t.link&&t.link.startsWith("/personalCenter/userInfo")?(console.log(1==$.call(this),2==p,"------getIsMini.call(this) == 1 || homeNative == 2"),1==$.call(this)||2==p?(e="/pages/userInfo/main",console.log("url",e),u({pagePath:e,pageType:2==p?1:3})):u.call(this,{pagePath:t.link})):t.link&&t.link.startsWith("/pay/paySuccess")?(console.log(1==$.call(this),2==p,"------getIsMini.call(this) == 1 || homeNative == 2"),console.log(T,"--miniVersion"),(1==$.call(this)||2==p)&&284<T?(e="/pages/paySuccess/main?"+t.link.split("?")[1],console.log("url",e),u({pagePath:e,pageType:2==p?2:3})):u.call(this,{pagePath:t.link})):t.link&&t.link.startsWith("/personalCenter/vip/vipMobileCard")?(console.log(1==$.call(this),2==p,"------getIsMini.call(this) == 1 || homeNative == 2"),1==$.call(this)||2==p?(n="/pages/memberCode/main",console.log("url",n),u({pagePath:n,pageType:2==p?1:3})):u.call(this,{pagePath:t.link})):t.link&&t.link.startsWith("/article/")&&!t.link.startsWith("/article/articleList")?(console.log(t.link&&t.link.startsWith("/article/")&&!t.link.startsWith("/article/articleList"),t.link,p,"--data.link"),console.log(1==$.call(this),2==p,"------getIsMini.call(this) == 1 || homeNative == 2"),1==$.call(this)||2==p?(n="/pages/pages_subpack/article/main?article_id="+(n=t.link.split("/"))[n.length-1],console.log("url",n),u({pagePath:n,pageType:2==p?1:3})):u.call(this,{pagePath:t.link})):1==p?u.call(this,{pagePath:t.link}):2==p&&(i=I(D(t),L(t)),console.log("url",i),u({pagePath:i})):t.link.startsWith("http")||t.link.startsWith("https")?1==p?u.call(this,{pagePath:t.link,pageType:2}):(i="/pages/wxArticle/main?link="+encodeURIComponent(t.link),u({pagePath:i})):u({pagePath:t.link,pageType:2}):1.1==r?2==p?u({pagePath:t.link}):1==p&&(1==$.call(this)||2==$.call(this)?u.call(this,{pagePath:t.link,pageType:3}):m("暂不支持")):1.2==r?"outerChain:businessCenter"!=t.link?"/"==t.link.substring(0,1)?u.call(this,{pagePath:t.link}):1==p?1==this.$store.state.miniProgram||2==this.$store.state.miniProgram?(o="/pages/wxArticle/main?link="+encodeURIComponent(t.link),u.call(this,{pagePath:o,pageType:3})):u.call(this,{pagePath:t.link,pageType:2}):2==p&&(o="/pages/wxArticle/main?link="+encodeURIComponent(t.link),u.call(this,{pagePath:o,pageType:1})):(console.log(x(),"-----getGUIDE_URL()"),a=x()+"/login?mixid="+this.$nuxt.$route.query.mixid+"&back="+encodeURIComponent(window.location.href),u.call(this,{pagePath:a,pageType:2})):2==r?"themeCouponClick"==(a=t.feature.type)||0==a?1==p?this.$themeCouponClick(t.feature.value.couponCode,t.feature.value):2==p&&g.getCoupon(t.feature.value.couponCode,t.feature.value):1==a?2==t.type&&1==t.feature.type&&function(e){1==p?this.$nuxt.$SHARE({itemList:e.feature.value}):2==p&&g.shareInit({itemList:e.feature.value})}.call(this,t):"themeMemberCardClick"==a||2==a?1==p?this.$themeMemberCardClick(t.feature.value):2==p&&g.themeMemberCardClick(t.feature.value):3==a&&(1==p?this.$themeScanningCodeClick():2==p&&g.themeScanningCodeClick()):3==r?(console.log(p,"-----------------homeNative"),1==p?1==$.call(this)||2==$.call(this)?(r=this.$store.getters["sceneModule/flushbonadingVisible"]?"/pages/toMini/toMini?weappPage="+encodeURIComponent(t.link)+"&weappAppId="+t.name:"/pages/toMini/main?weappPage="+encodeURIComponent(t.link)+"&weappAppId="+t.name,u.call(this,{pagePath:r,pageType:3})):m("暂不支持"):t.key&&t.key.startsWith("1.9")?function(e){if(console.log("sss",e),2==p)switch(e.key){case"1.9.1":console.log("begin"),C.openChannelsActivity?C.openChannelsActivity({finderUserName:e.name,feedId:e.link,success:function(){console.log("success")},fail:function(){console.log("fail"),E.call(this,"提示","打开视频号失败")}}):E.call(this),console.log("end");break;case"1.9.2":console.log("begin"),C.openChannelsEvent?C.openChannelsEvent({finderUserName:e.name,eventId:e.link,fail:function(){E.call(this,"提示","打开视频号活动失败")}}):E.call(this),console.log("end")}}.call(this,t):(l="/pages/toMini/main?weappPage="+encodeURIComponent(t.link)+"&weappAppId="+t.name,u({pagePath:l}))):0<t.length&&u.call(this,{pagePath:t.link})):0<t.length&&(1==p?u.call(this,{pagePath:t}):2==p&&(l=I(D(t),L(t)),u({pagePath:l})))))}else console.log("无链接--return")}function E(){C.showModal({title:0<arguments.length&&void 0!==arguments[0]?arguments[0]:"提示",content:1<arguments.length&&void 0!==arguments[1]?arguments[1]:"当前微信版本过低,无法使用该功能,请升级到最新微信版本后重试。"}),console.log("不支持")}t.themeToLinkInit=e}.call(this)}.call(this,e("_process"),"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{_process:1}]},{},[2]);
\ No newline at end of file
!function i(o,a,l){function r(t,e){if(!a[t]){if(!o[t]){var n="function"==typeof require&&require;if(!e&&n)return n(t,!0);if(s)return s(t,!0);throw(n=new Error("Cannot find module '"+t+"'")).code="MODULE_NOT_FOUND",n}n=a[t]={exports:{}},o[t][0].call(n.exports,function(e){return r(o[t][1][e]||e)},n,n.exports,i,o,a,l)}return a[t].exports}for(var s="function"==typeof require&&require,e=0;e<l.length;e++)r(l[e]);return r}({1:[function(e,t,n){var i,o,t=t.exports={};function a(){throw new Error("setTimeout has not been defined")}function l(){throw new Error("clearTimeout has not been defined")}function r(t){if(i===setTimeout)return setTimeout(t,0);if((i===a||!i)&&setTimeout)return i=setTimeout,setTimeout(t,0);try{return i(t,0)}catch(e){try{return i.call(null,t,0)}catch(e){return i.call(this,t,0)}}}!function(){try{i="function"==typeof setTimeout?setTimeout:a}catch(e){i=a}try{o="function"==typeof clearTimeout?clearTimeout:l}catch(e){o=l}}();var s,c=[],p=!1,g=-1;function u(){p&&s&&(p=!1,s.length?c=s.concat(c):g=-1,c.length&&d())}function d(){if(!p){var e=r(u);p=!0;for(var t=c.length;t;){for(s=c,c=[];++g<t;)s&&s[g].run();g=-1,t=c.length}s=null,p=!1,function(t){if(o===clearTimeout)return clearTimeout(t);if((o===l||!o)&&clearTimeout)return o=clearTimeout,clearTimeout(t);try{o(t)}catch(e){try{return o.call(null,t)}catch(e){return o.call(this,t)}}}(e)}}function h(e,t){this.fun=e,this.array=t}function m(){}t.nextTick=function(e){var t=new Array(arguments.length-1);if(1<arguments.length)for(var n=1;n<arguments.length;n++)t[n-1]=arguments[n];c.push(new h(e,t)),1!==c.length||p||r(d)},h.prototype.run=function(){this.fun.apply(null,this.array)},t.title="browser",t.browser=!0,t.env={},t.argv=[],t.version="",t.versions={},t.on=m,t.addListener=m,t.once=m,t.off=m,t.removeListener=m,t.removeAllListeners=m,t.emit=m,t.prependListener=m,t.prependOnceListener=m,t.listeners=function(e){return[]},t.binding=function(e){throw new Error("process.binding is not supported")},t.cwd=function(){return"/"},t.chdir=function(e){throw new Error("process.chdir is not supported")},t.umask=function(){return 0}},{}],2:[function(e,t,a){!function(o,t){!function(){"use strict";Object.defineProperty(a,"__esModule",{value:!0}),a.hylBannerLink=i,a.hylToLink=c;var r=void 0,h=void 0,m=void 0,f=void 0,k=void 0,s=void 0,v="",n=null;function i(e){var t,n,i,o,a,l,r,s,c,p,g,u,d;v=$nuxt.$store,console.log("hylBannerLink",e),3!=e.type?1.1==e.type&&(1==v.state.miniProgram||2==v.state.miniProgram?-1<e.link.indexOf("pages/hiberDrawEntity/hiberDrawEntity")?(t=e.link.split("?"))[1]&&t[1].split("=")[1]&&(r=JSON.parse(decodeURIComponent(t[1].split("=")[1])),c=(s=r).id,p=r.type,g=r.isOpenDraw,u=k.formatDate.format(new Date),d=(d=r.validTimeEnd).split(".").join("-"),2==r.validTimeEnd.split(" ").length||(u=u.split(" ")[0]),u=(u=new Date(d.replace(/-/g,"/")).getTime()-new Date(u.replace(/-/g,"/")).getTime())/1e3,2==g?0<=u?(1==p&&$mp.miniProgram.navigateTo({url:"/pages/draw/drawDetails/drawDetails?id="+c}),2==p&&$mp.miniProgram.navigateTo({url:"/pages/draw/drawDetails/drawDetails?id="+c}),3==p&&$mp.miniProgram.navigateTo({url:"/pages/draw/turntable/turntable?id="+c})):2==p&&null!=s.drawRecordEntity?$mp.miniProgram.navigateTo({url:"/pages/draw/drawDetails/drawDetails?perdraw=33&id="+c}):2==p&&null==s.drawRecordEntity?$mp.miniProgram.navigateTo({url:"/pages/draw/drawDetails/drawDetails?id="+c}):h.alert({title:"标题",message:"抽奖已结束"}).then(function(){}):1==p?null==s.drawRecordEntity?$mp.miniProgram.navigateTo({url:"/pages/draw/drawDetails/drawDetails?id="+c}):$mp.miniProgram.navigateTo({url:"/pages/draw/openDraw/openDraw?id="+c}):2==p?null!=s.drawRecordEntity?$mp.miniProgram.navigateTo({url:"/pages/draw/openDraw/openDraw?id="+c}):$mp.miniProgram.navigateTo({url:"/pages/draw/drawDetails/drawDetails?id="+c}):null==s.drawRecordEntity?h.alert({title:"标题",message:"抽奖已结束"}).then(function(){}):$mp.miniProgram.navigateTo({url:"/pages/draw/openDraw/openDraw?id="+c})):-1<e.link.indexOf("type")?(t=e.link.split("?"),"[object Array]"==Object.prototype.toString.call(t)&&t.length&&(l=t[1].split("&"),n={},l.forEach(function(e){e.split("="),n[e.split("=")[0]]=e.split("=")[1]}),console.log(n),i=n.id,o=n.jumpScore,a=n.type,v.state.sessionId?f.getConsumerScoreFlag({outId:v.state.userInfo.mixId,advertisementId:i}).then(function(e){0==e.code&&(1==e.object?(o&&0<o&&f.changeScore({outId:v.state.userInfo.mixId,advertisementId:i}).then(function(e){e.object&&$mp.miniProgram.navigateTo({url:"/pages/advertisement/advertisement?type="+a+"&id="+i})}),o&&o<0&&C.showModal({title:"提示",content:"跳转扣除"+Math.abs(o)+"积分",success:function(e){e.confirm?f.changeScore({outId:v.state.userInfo.mixId,advertisementId:i}).then(function(e){e.object&&$mp.miniProgram.navigateTo({url:"/pages/advertisement/advertisement?type="+a+"&id="+i})}):e.cancel&&console.log("用户点击取消")}}),o||$mp.miniProgram.navigateTo({url:"/pages/advertisement/advertisement?type="+a+"&id="+i})):$mp.miniProgram.navigateTo({url:"/pages/advertisement/advertisement?type="+a+"&id="+i}))}):$mp.miniProgram.navigateTo({url:"/pages/login/login"}))):((e.link.includes("pages/draw/draw/draw")||e.link.includes("pages/question/question")||e.link.includes("pages/live/live"))&&(l=y($nuxt.$route.query.mixid+"_location")&&JSON.parse(y($nuxt.$route.query.mixid+"_location")).outId,console.log(l,"跳转id"),l&&(e.link.includes("?")?e.link=e.link+"&addressId="+l:e.link=e.link+"?addressId="+l)),$mp.miniProgram.navigateTo({url:e.link})):m("暂不支持")):1==v.state.miniProgram||2==v.state.miniProgram?$mp.miniProgram.navigateTo({url:"/pages/toMini/toMini?weappPage="+encodeURIComponent(e.link)+"&weappAppId="+e.name}):m("暂不支持")}function c(e){if(e=e.data,console.log("----工具中hyl"),n=e.type,(v=$nuxt.$store).getters["sceneModule/flushbonadingVisible"])if(null!=n&&"undefined"!=n){if(0!=n)if(1==n)"/"==e.link.substring(0,1)?$nuxt.$router.push(e.link):!e.link.startsWith("http")&&!e.link.startsWith("https")||1!=v.state.miniProgram&&2!=v.state.miniProgram?window.location.href=e.link:$mp.miniProgram.navigateTo({url:"/pages/wxArticle/main?link="+encodeURIComponent(e.link)});else if(2==n){var t=e.feature.type;"themeCouponClick"==t||0==t?this.$themeCouponClick(e.feature.value.couponCode,e.feature.value):1==t?(console.log("是分享了。。。。"),2==e.type&&1==e.feature.type&&$nuxt.$SHARE({itemList:e.feature.value})):"themeMemberCardClick"!=t&&2!=t||this.$themeMemberCardClick(e.feature.value)}else if(1.1==n||3==n)i(e);else if(1.2==n){if("outerChain:businessCenter"==e.link)return console.log(s.GUIDE_URL,"-----shopConfig.GUIDE_URL"),t=s.GUIDE_URL+"/login?mixid="+$nuxt.$route.query.mixid+"&back="+encodeURIComponent(window.location.href),void(window.location.href=t);"/"==e.link.substring(0,1)?$nuxt.$router.push(e.link):1==v.state.miniProgram||2==v.state.miniProgram?$mp.miniProgram.navigateTo({url:"/pages/wxArticle/main?link="+encodeURIComponent(e.link)}):window.location.href=e.link}else 0<e.length&&$nuxt.$router.push(e.link)}else 0<e.length&&$nuxt.$router.push(e)}function y(e){if(o.browser&&"undefined"!=typeof document)for(var t=document.cookie.split(";"),n=0;n<t.length;n++){var i=t[n].split("=");if(i[0].trim()==e)return decodeURIComponent(i[1])}}Object.defineProperty(a,"__esModule",{value:!0}),a.themeToLinkInit=e,a.$themeToLink=M;var p=null,g=null,u=null,r=void 0,d=void 0,s=void 0,m=void 0,c=void 0,w=void 0,C=void 0,P=void 0,T=999999;function b(e,t){t=1<arguments.length&&void 0!==t?t:"";return"../index/main?from=themeLink&backpath="+encodeURIComponent(e)+"&params="+encodeURIComponent(t)}function I(){return 1==p?this.$store&&this.$store.state.sessionId&&this.$store.state.sessionId:2==p?C&&C.getStorageSync("sessionid"):void 0}function $(){return 1==p&&this.$store&&this.$store.state.miniProgram}function x(){return 1==p?s.GUIDE_URL:2==p?config.GUIDE_URL:void 0}function D(e){return e.link?e.link.split("?")[0]:""}function L(e){var e=e.link.split("?"),n=[];return e.forEach(function(e,t){1<=t&&n.push(e)}),n.join("?")||""}function U(t){var e=getApp();return e.globalData.footerVal?e.globalData.footerVal.componentData.list.findIndex(function(e){return D(e.link)==t.split("?")[0]}):-1}var R=["index","media-video","goods-goodsInfo","goods-commodityMenu","goodsSearch-goodsSearch","contentSearch-contentSearch","chooseStores","activty-receivingGift","activty","login-register","login-phoneLogin","login-authInformation","login-forgetPassWord","login-accountLogin","login-wxRegister","pay-payList","comment-evaluateList","goods-commonProblemList","article-articlePage","article-articleList","goods-posters","liveBroadcast","liveBroadcast-list","personalCenter-coupon-getCoupon","buyerShow-showDetail","goods-addGoodsList","personalCenter-CDkey-exchange","giftCards-linkReceive","giftCoupon-preview","smartForm","shopCart-shareShopCart","groupBuying-beInvite","brandTopics","personalCenter-spokesmanCenter","personalCenter-spokesmanCenter-mine-spokesmanHomePage","liveBroadcast-lived","personalCenter-spokesmanCenter-mine-getBusinessCard","changeAdr","enterpriseCustomerRegistration"].map(function(e){return"/index"==(e="/"+e.replace(/-/g,"/"))?"/":e});function e(e){var t=e.homeNative,n=e.wx,i=e.getCoupon,o=e.themeMemberCardClick,a=e.themeScanningCodeClick,l=e.requireFun,e=e.extend;if(P=e,p=t,w=l,console.log(w,"-------------------------115"),d=w.createdUserJWT,w.getBcakUrl,!(C=n)||(n=C.getAccountInfoSync&&C.getAccountInfoSync())&&(T=n.miniProgram.version||999999),console.log(T,"---------------miniVersion"),console.log(p,"-------------themeToLinkInit"),console.log("toPage-------------"),u=1==p?function(e){var t=e.pagePath;1==(e=void 0===(e=e.pageType)?1:e)?this.$router.push(t):2==e?window.location.href=t:3==e&&C.navigateTo({url:t})}:2==p?function(e){var t=e.pagePath;1==(e=void 0===(e=e.pageType)?1:e)?(console.log("pagePath",t),C.navigateTo({url:t})):2==e&&C.reLaunch({url:t})}:void 0,1==p)try{r=w.Vue,s=w.shopConfig,w.shopMixid,r.prototype.$themeToLink=M,m=w.Toast,c=w.hylToLink}catch(e){}else 2==p&&((g=getApp()).$themeToLink=M,g.getCoupon=i,g.themeMemberCardClick=o,g.themeScanningCodeClick=a)}function S(e){if(!(e=e.split("?")[1]))return{};for(var t=e.split("&"),n={},i=0;i<t.length;i++){var o=t[i].indexOf("="),a=t[i].slice(0,o),o=t[i].slice(o+1);console.log(81,this),n[a]=o}return console.log(n,"-------------obj"),n}async function M(t){if(console.log(t,"$themeToLink"),console.log(P,"extend======="),console.log("data",t),0!=t.type){var e,n,i,o,a,l,r=t.type;if(r){if(P.loginIntercept&&!I.call(this)){console.log("走进来了");var s="/pages/login/main?back="+D(t)+"&params="+JSON.stringify(S(t.link));return u({pagePath:s}),!1}if(t.link&&t.link.includes("dynamicForm")){if(!I.call(this))return console.log("走进来了--dynamicForm"),s="/pages/login/main?back="+D(t)+"&params="+JSON.stringify(S(t.link)),u({pagePath:s}),!1;await d().then(function(e){t.link+="&token="+e}).catch(function(e){})}}1==p&&this.$store.getters["sceneModule/flushbonadingVisible"]?c.call(this,{data:t,Vue:w.Vue,Dialog:w.Dialog,Toast:w.Toast,hyl:w.hyl,dateFilter:w.dateFilter,shopConfig:w.shopConfig}):(console.log(t.key,"----------------------key"),(2==r||2!=p||t.key&&t.key.startsWith("1.9")||t.link.startsWith("/article/")||function(e){var t=D(e),n=L(e);if(R.includes(t)||"/goods/"==t.substr(0,7)||t.includes("/brandTopics")||t.startsWith("/activty/")||t.includes("dk.taokor.cn")||I.call(this))return i=U(t),console.log(e.link,"------------data.link"),!(0<=i||e.link.includes("/activty/")&&e.link.includes("tabClick"))||(console.log("底部栏"),i=0==i?U("/"):i,t="/"==t?"/pages/home/main":"/pages/tabBar"+i+"/main",(i=getCurrentPages())[i.length-1].route!=t&&(n=n?"?"+n:"",console.log(n,"--------------247"),u({pagePath:t+n,pageType:2}),0));var i="",i=-1<n.indexOf("scene=sso")?"/pages/login/main?back="+t+"&ossLink="+encodeURIComponent(n):(console.log(encodeURIComponent(JSON.stringify(S(e.link))),"------------------------JSON.stringify(parseQueryString(data.link))"),"/pages/login/main?back="+t+"&params="+encodeURIComponent(JSON.stringify(S(e.link))));return console.log(i,"------------------------190"),u({pagePath:i}),0}(t))&&(null!=r&&"undefined"!=r?(console.log("---------跳过登录判断"),1==r?"/"==t.link.substring(0,1)?t.link&&t.link.startsWith("/personalCenter/userInfo")?(console.log(1==$.call(this),2==p,"------getIsMini.call(this) == 1 || homeNative == 2"),1==$.call(this)||2==p?(e="/pages/pages_subpack1/userInfo/main",console.log("url",e),u({pagePath:e,pageType:2==p?1:3})):u.call(this,{pagePath:t.link})):t.link&&t.link.startsWith("/pay/paySuccess")?(console.log(1==$.call(this),2==p,"------getIsMini.call(this) == 1 || homeNative == 2"),console.log(T,"--miniVersion"),(1==$.call(this)||2==p)&&284<T?(e="/pages/pages_subpack1/paySuccess/main?"+t.link.split("?")[1],console.log("url",e),u({pagePath:e,pageType:2==p?2:3})):u.call(this,{pagePath:t.link})):t.link&&t.link.startsWith("/personalCenter/vip/vipMobileCard")?(console.log(1==$.call(this),2==p,"------getIsMini.call(this) == 1 || homeNative == 2"),1==$.call(this)||2==p?(n="/pages/memberCode/main",console.log("url",n),u({pagePath:n,pageType:2==p?1:3})):u.call(this,{pagePath:t.link})):t.link&&t.link.startsWith("/article/")&&!t.link.startsWith("/article/articleList")?(console.log(t.link&&t.link.startsWith("/article/")&&!t.link.startsWith("/article/articleList"),t.link,p,"--data.link"),console.log(1==$.call(this),2==p,"------getIsMini.call(this) == 1 || homeNative == 2"),1==$.call(this)||2==p?(n="/pages/pages_subpack/article/main?article_id="+(n=t.link.split("/"))[n.length-1],console.log("url",n),u({pagePath:n,pageType:2==p?1:3})):u.call(this,{pagePath:t.link})):1==p?u.call(this,{pagePath:t.link}):2==p&&(i=b(D(t),L(t)),console.log("url",i),u({pagePath:i})):t.link.startsWith("http")||t.link.startsWith("https")?1==p?u.call(this,{pagePath:t.link,pageType:2}):(i="/pages/wxArticle/main?link="+encodeURIComponent(t.link),u({pagePath:i})):u({pagePath:t.link,pageType:2}):1.1==r?2==p?u({pagePath:t.link}):1==p&&(1==$.call(this)||2==$.call(this)?u.call(this,{pagePath:t.link,pageType:3}):m("暂不支持")):1.2==r?"outerChain:businessCenter"!=t.link?"/"==t.link.substring(0,1)?u.call(this,{pagePath:t.link}):1==p?1==this.$store.state.miniProgram||2==this.$store.state.miniProgram?(o="/pages/wxArticle/main?link="+encodeURIComponent(t.link),u.call(this,{pagePath:o,pageType:3})):u.call(this,{pagePath:t.link,pageType:2}):2==p&&(o="/pages/wxArticle/main?link="+encodeURIComponent(t.link),u.call(this,{pagePath:o,pageType:1})):(console.log(x(),"-----getGUIDE_URL()"),a=x()+"/login?mixid="+this.$nuxt.$route.query.mixid+"&back="+encodeURIComponent(window.location.href),u.call(this,{pagePath:a,pageType:2})):2==r?"themeCouponClick"==(a=t.feature.type)||0==a?1==p?this.$themeCouponClick(t.feature.value.couponCode,t.feature.value):2==p&&g.getCoupon(t.feature.value.couponCode,t.feature.value):1==a?2==t.type&&1==t.feature.type&&function(e){1==p?this.$nuxt.$SHARE({itemList:e.feature.value}):2==p&&g.shareInit({itemList:e.feature.value})}.call(this,t):"themeMemberCardClick"==a||2==a?1==p?this.$themeMemberCardClick(t.feature.value):2==p&&g.themeMemberCardClick(t.feature.value):3==a&&(1==p?this.$themeScanningCodeClick():2==p&&g.themeScanningCodeClick()):3==r?(console.log(p,"-----------------homeNative"),1==p?1==$.call(this)||2==$.call(this)?(r=this.$store.getters["sceneModule/flushbonadingVisible"]?"/pages/toMini/toMini?weappPage="+encodeURIComponent(t.link)+"&weappAppId="+t.name:"/pages/toMini/main?weappPage="+encodeURIComponent(t.link)+"&weappAppId="+t.name,u.call(this,{pagePath:r,pageType:3})):m("暂不支持"):t.key&&t.key.startsWith("1.9")?function(e){if(console.log("sss",e),2==p)switch(e.key){case"1.9.1":console.log("begin"),C.openChannelsActivity?C.openChannelsActivity({finderUserName:e.name,feedId:e.link,success:function(){console.log("success")},fail:function(){console.log("fail"),E.call(this,"提示","打开视频号失败")}}):E.call(this),console.log("end");break;case"1.9.2":console.log("begin"),C.openChannelsEvent?C.openChannelsEvent({finderUserName:e.name,eventId:e.link,fail:function(){E.call(this,"提示","打开视频号活动失败")}}):E.call(this),console.log("end")}}.call(this,t):(l="/pages/toMini/main?weappPage="+encodeURIComponent(t.link)+"&weappAppId="+t.name,u({pagePath:l}))):0<t.length&&u.call(this,{pagePath:t.link})):0<t.length&&(1==p?u.call(this,{pagePath:t}):2==p&&(l=b(D(t),L(t)),u({pagePath:l})))))}else console.log("无链接--return")}function E(){C.showModal({title:0<arguments.length&&void 0!==arguments[0]?arguments[0]:"提示",content:1<arguments.length&&void 0!==arguments[1]?arguments[1]:"当前微信版本过低,无法使用该功能,请升级到最新微信版本后重试。"}),console.log("不支持")}t.themeToLinkInit=e}.call(this)}.call(this,e("_process"),"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{_process:1}]},{},[2]);
\ No newline at end of file
{
"id": "1026419",
"name": "标准微商城",
"font_family": "iconfont",
"css_prefix_text": "icon-",
"description": "",
"glyphs": [
{
"icon_id": "2077822",
"name": "搜索",
"font_class": "sousuo1",
"unicode": "e699",
"unicode_decimal": 59033
},
{
"icon_id": "18239366",
"name": "问号",
"font_class": "wenhao1",
"unicode": "e698",
"unicode_decimal": 59032
},
{
"icon_id": "21798828",
"name": "问号",
"font_class": "wenhao",
"unicode": "e6e1",
"unicode_decimal": 59105
},
{
"icon_id": "12076361",
"name": "预览",
"font_class": "yulan",
"unicode": "e697",
"unicode_decimal": 59031
},
{
"icon_id": "1198371",
"name": "编辑",
"font_class": "bianji1",
"unicode": "e695",
"unicode_decimal": 59029
},
{
"icon_id": "10401115",
"name": "叉",
"font_class": "cha",
"unicode": "e6b8",
"unicode_decimal": 59064
},
{
"icon_id": "6980276",
"name": "礼物",
"font_class": "liwu1",
"unicode": "e694",
"unicode_decimal": 59028
},
{
"icon_id": "12670569",
"name": "礼物",
"font_class": "liwu",
"unicode": "e68f",
"unicode_decimal": 59023
},
{
"icon_id": "5800412",
"name": "添加",
"font_class": "tianjia",
"unicode": "e68e",
"unicode_decimal": 59022
},
{
"icon_id": "7714695",
"name": "显示器",
"font_class": "xianshiqi",
"unicode": "e788",
"unicode_decimal": 59272
},
{
"icon_id": "14851954",
"name": "勋章",
"font_class": "xunzhang",
"unicode": "e68c",
"unicode_decimal": 59020
},
{
"icon_id": "10514894",
"name": "必填",
"font_class": "bitian",
"unicode": "e689",
"unicode_decimal": 59017
},
{
"icon_id": "14324024",
"name": "播放",
"font_class": "bofang1",
"unicode": "e68b",
"unicode_decimal": 59019
},
{
"icon_id": "1115039",
"name": "关闭",
"font_class": "guanbi",
"unicode": "e68a",
"unicode_decimal": 59018
},
{
"icon_id": "979584",
"name": "分享",
"font_class": "fenxiang2",
"unicode": "e687",
"unicode_decimal": 59015
},
{
"icon_id": "5034109",
"name": "留言",
"font_class": "liuyan",
"unicode": "e733",
"unicode_decimal": 59187
},
{
"icon_id": "6256760",
"name": "点赞",
"font_class": "dianzan_active",
"unicode": "e688",
"unicode_decimal": 59016
},
{
"icon_id": "10218859",
"name": "搜索",
"font_class": "sousuo",
"unicode": "e685",
"unicode_decimal": 59013
},
{
"icon_id": "13456333",
"name": "播放",
"font_class": "bofangbtn",
"unicode": "e684",
"unicode_decimal": 59012
},
{
"icon_id": "9772083",
"name": "加号",
"font_class": "addTodo-nav1",
"unicode": "e681",
"unicode_decimal": 59009
},
{
"icon_id": "9696510",
"name": "关 闭",
"font_class": "guanbi1",
"unicode": "e680",
"unicode_decimal": 59008
},
{
"icon_id": "2738980",
"name": "编辑",
"font_class": "bianji",
"unicode": "e67d",
"unicode_decimal": 59005
},
{
"icon_id": "1104808",
"name": "地址",
"font_class": "dizhi2",
"unicode": "e876",
"unicode_decimal": 59510
},
{
"icon_id": "1052586",
"name": "物流",
"font_class": "wuliu1",
"unicode": "e67c",
"unicode_decimal": 59004
},
{
"icon_id": "3651987",
"name": "红包",
"font_class": "dahongbao",
"unicode": "e67e",
"unicode_decimal": 59006
},
{
"icon_id": "3050492",
"name": "爱心",
"font_class": "dianzan2",
"unicode": "e67b",
"unicode_decimal": 59003
},
{
"icon_id": "706841",
"name": "点赞",
"font_class": "dianzan1",
"unicode": "e678",
"unicode_decimal": 59000
},
{
"icon_id": "12978138",
"name": "分享",
"font_class": "fenxiang1",
"unicode": "e676",
"unicode_decimal": 58998
},
{
"icon_id": "12814503",
"name": "bofang-yh",
"font_class": "bofang-yh1",
"unicode": "e675",
"unicode_decimal": 58997
},
{
"icon_id": "8081110",
"name": "删除筛选项",
"font_class": "delete",
"unicode": "e674",
"unicode_decimal": 58996
},
{
"icon_id": "993771",
"name": "二维码",
"font_class": "erweima",
"unicode": "e673",
"unicode_decimal": 58995
},
{
"icon_id": "12018970",
"name": "交易未付款关闭",
"font_class": "jiaoyiweifukuanguanbi1",
"unicode": "e672",
"unicode_decimal": 58994
},
{
"icon_id": "11920261",
"name": "tuikuan",
"font_class": "tuikuan2",
"unicode": "e671",
"unicode_decimal": 58993
},
{
"icon_id": "1133116",
"name": "已评价",
"font_class": "yipingjia",
"unicode": "e670",
"unicode_decimal": 58992
},
{
"icon_id": "8527263",
"name": "退款",
"font_class": "tuikuan1",
"unicode": "e7eb",
"unicode_decimal": 59371
},
{
"icon_id": "4318436",
"name": "卡汇-会员卡-线性",
"font_class": "huiyuanqia-xianxing",
"unicode": "e696",
"unicode_decimal": 59030
},
{
"icon_id": "1488900",
"name": "删除",
"font_class": "shanchu2",
"unicode": "e645",
"unicode_decimal": 58949
},
{
"icon_id": "11536793",
"name": "快递(线性)",
"font_class": "kuaidixianxing",
"unicode": "e66f",
"unicode_decimal": 58991
},
{
"icon_id": "11536762",
"name": "购物(填充)",
"font_class": "gouwutianchong",
"unicode": "e66d",
"unicode_decimal": 58989
},
{
"icon_id": "11536745",
"name": "购物(线性)",
"font_class": "gouwuxianxing",
"unicode": "e66c",
"unicode_decimal": 58988
},
{
"icon_id": "11535784",
"name": "快递(填充)",
"font_class": "kuaiditianchong",
"unicode": "e66b",
"unicode_decimal": 58987
},
{
"icon_id": "11519333",
"name": "资源 3",
"font_class": "ziyuan1",
"unicode": "e632",
"unicode_decimal": 58930
},
{
"icon_id": "2380627",
"name": "返回2",
"font_class": "fanhui",
"unicode": "e621",
"unicode_decimal": 58913
},
{
"icon_id": "2506225",
"name": "足迹",
"font_class": "zuji1",
"unicode": "e644",
"unicode_decimal": 58948
},
{
"icon_id": "2674878",
"name": "箭头 上",
"font_class": "jiantoushang",
"unicode": "e631",
"unicode_decimal": 58929
},
{
"icon_id": "2802276",
"name": "证件",
"font_class": "zhengjian",
"unicode": "e6d6",
"unicode_decimal": 59094
},
{
"icon_id": "2804265",
"name": "客服",
"font_class": "kefu2",
"unicode": "e622",
"unicode_decimal": 58914
},
{
"icon_id": "2810920",
"name": "下箭头",
"font_class": "arrow-copy",
"unicode": "e625",
"unicode_decimal": 58917
},
{
"icon_id": "2975168",
"name": "图片",
"font_class": "tupian-copy-copy",
"unicode": "e758",
"unicode_decimal": 59224
},
{
"icon_id": "3497326",
"name": "下箭头",
"font_class": "arrowdown",
"unicode": "e626",
"unicode_decimal": 58918
},
{
"icon_id": "3546189",
"name": "设置",
"font_class": "shezhi1",
"unicode": "e627",
"unicode_decimal": 58919
},
{
"icon_id": "3623482",
"name": "右箭头",
"font_class": "arrow-right11",
"unicode": "e633",
"unicode_decimal": 58931
},
{
"icon_id": "3638802",
"name": "发现星球",
"font_class": "tubiaozhizuomoban",
"unicode": "e634",
"unicode_decimal": 58932
},
{
"icon_id": "3712716",
"name": "我的",
"font_class": "wode11",
"unicode": "e635",
"unicode_decimal": 58933
},
{
"icon_id": "3978320",
"name": "认证管理",
"font_class": "renzhengguanli",
"unicode": "e650",
"unicode_decimal": 58960
},
{
"icon_id": "4408944",
"name": "收藏",
"font_class": "ziyuan",
"unicode": "e636",
"unicode_decimal": 58934
},
{
"icon_id": "4414416",
"name": "购物车 (1)",
"font_class": "gouwuche21",
"unicode": "e63b",
"unicode_decimal": 58939
},
{
"icon_id": "4421590",
"name": "指南针",
"font_class": "compass-o",
"unicode": "e6e6",
"unicode_decimal": 59110
},
{
"icon_id": "4517470",
"name": "消息",
"font_class": "xiaoxi11",
"unicode": "e66e",
"unicode_decimal": 58990
},
{
"icon_id": "4608961",
"name": "微信",
"font_class": "weixin",
"unicode": "e637",
"unicode_decimal": 58935
},
{
"icon_id": "4674165",
"name": "转化",
"font_class": "zhuanhua",
"unicode": "e71e",
"unicode_decimal": 59166
},
{
"icon_id": "4765272",
"name": "圈子",
"font_class": "quanzi",
"unicode": "e63a",
"unicode_decimal": 58938
},
{
"icon_id": "4934369",
"name": "时间 钟表",
"font_class": "shijianzhongbiao",
"unicode": "e63d",
"unicode_decimal": 58941
},
{
"icon_id": "5203303",
"name": "下",
"font_class": "xia",
"unicode": "e63e",
"unicode_decimal": 58942
},
{
"icon_id": "5204551",
"name": "足迹",
"font_class": "zuji-copy",
"unicode": "e63f",
"unicode_decimal": 58943
},
{
"icon_id": "5330032",
"name": "排序",
"font_class": "paixu",
"unicode": "e75b",
"unicode_decimal": 59227
},
{
"icon_id": "5330036",
"name": "排序-降序",
"font_class": "paixu-jiangxu",
"unicode": "e75c",
"unicode_decimal": 59228
},
{
"icon_id": "5330057",
"name": "排序-升序",
"font_class": "paixu-shengxu",
"unicode": "e75d",
"unicode_decimal": 59229
},
{
"icon_id": "5512550",
"name": "定位",
"font_class": "dingwei2",
"unicode": "e646",
"unicode_decimal": 58950
},
{
"icon_id": "5532881",
"name": "分类",
"font_class": "fenlei2",
"unicode": "e648",
"unicode_decimal": 58952
},
{
"icon_id": "5756001",
"name": "分类",
"font_class": "fenlei1",
"unicode": "e649",
"unicode_decimal": 58953
},
{
"icon_id": "5771114",
"name": "首页",
"font_class": "home",
"unicode": "e64b",
"unicode_decimal": 58955
},
{
"icon_id": "5912778",
"name": "积分",
"font_class": "jifen1",
"unicode": "e64d",
"unicode_decimal": 58957
},
{
"icon_id": "5913436",
"name": "我的",
"font_class": "wode2",
"unicode": "e64e",
"unicode_decimal": 58958
},
{
"icon_id": "6237071",
"name": "钱",
"font_class": "tubiaozhizuo-",
"unicode": "e651",
"unicode_decimal": 58961
},
{
"icon_id": "6248997",
"name": "积分",
"font_class": "jifen11",
"unicode": "e652",
"unicode_decimal": 58962
},
{
"icon_id": "6270980",
"name": "三角形",
"font_class": "sanjiaoxing",
"unicode": "e6bd",
"unicode_decimal": 59069
},
{
"icon_id": "6275359",
"name": "定位",
"font_class": "icon-test",
"unicode": "e653",
"unicode_decimal": 58963
},
{
"icon_id": "6347286",
"name": "问号 略过",
"font_class": "wenhaolveguo",
"unicode": "e655",
"unicode_decimal": 58965
},
{
"icon_id": "6443367",
"name": "详情",
"font_class": "xiangqing",
"unicode": "e658",
"unicode_decimal": 58968
},
{
"icon_id": "6446105",
"name": "返回",
"font_class": "tianchongxing-",
"unicode": "e659",
"unicode_decimal": 58969
},
{
"icon_id": "6446292",
"name": "卡劵",
"font_class": "tianchongxing",
"unicode": "e65b",
"unicode_decimal": 58971
},
{
"icon_id": "6531471",
"name": "门店",
"font_class": "mendian1",
"unicode": "e9f0",
"unicode_decimal": 59888
},
{
"icon_id": "6676883",
"name": "收 藏",
"font_class": "shoucang-on",
"unicode": "e65c",
"unicode_decimal": 58972
},
{
"icon_id": "6756288",
"name": "邮件3",
"font_class": "youjian",
"unicode": "e65d",
"unicode_decimal": 58973
},
{
"icon_id": "7042842",
"name": "时间",
"font_class": "shijian",
"unicode": "e65e",
"unicode_decimal": 58974
},
{
"icon_id": "7080519",
"name": "更多",
"font_class": "gengduo1",
"unicode": "e6fc",
"unicode_decimal": 59132
},
{
"icon_id": "7708046",
"name": "左箭头",
"font_class": "zuojiantou1",
"unicode": "e65f",
"unicode_decimal": 58975
},
{
"icon_id": "7708049",
"name": "分类",
"font_class": "fenlei11",
"unicode": "e660",
"unicode_decimal": 58976
},
{
"icon_id": "7724030",
"name": "门店",
"font_class": "mendian11",
"unicode": "e69b",
"unicode_decimal": 59035
},
{
"icon_id": "7742539",
"name": "相机",
"font_class": "xiangji",
"unicode": "e662",
"unicode_decimal": 58978
},
{
"icon_id": "7766713",
"name": "icon_addperson",
"font_class": "icon_addperson",
"unicode": "eb8f",
"unicode_decimal": 60303
},
{
"icon_id": "8017125",
"name": "图标_基药-向左",
"font_class": "tubiao_jiyao-xiangzuo",
"unicode": "e663",
"unicode_decimal": 58979
},
{
"icon_id": "8017126",
"name": "图标_基药-向右",
"font_class": "tubiao_jiyao-xiangyou",
"unicode": "e664",
"unicode_decimal": 58980
},
{
"icon_id": "8191481",
"name": "锤头",
"font_class": "chuitou",
"unicode": "e665",
"unicode_decimal": 58981
},
{
"icon_id": "8224810",
"name": "展开",
"font_class": "zhankai",
"unicode": "e666",
"unicode_decimal": 58982
},
{
"icon_id": "8236037",
"name": "眼睛",
"font_class": "yanjing",
"unicode": "e67a",
"unicode_decimal": 59002
},
{
"icon_id": "8801786",
"name": "验证码",
"font_class": "yanzhengma",
"unicode": "e667",
"unicode_decimal": 58983
},
{
"icon_id": "8955976",
"name": "必填2",
"font_class": "must-fill2",
"unicode": "e6fd",
"unicode_decimal": 59133
},
{
"icon_id": "9407399",
"name": "设 置",
"font_class": "shezhi11",
"unicode": "e6d5",
"unicode_decimal": 59093
},
{
"icon_id": "9439450",
"name": "服务评价-客服",
"font_class": "kefu111",
"unicode": "e668",
"unicode_decimal": 58984
},
{
"icon_id": "9691473",
"name": "分类-选中",
"font_class": "icon_type",
"unicode": "e669",
"unicode_decimal": 58985
},
{
"icon_id": "9808802",
"name": "个人中心 我的 人物 标准头 面性 ",
"font_class": "gerenzhongxinwoderenwubiaozhuntoumianxing",
"unicode": "e66a",
"unicode_decimal": 58986
},
{
"icon_id": "10298530",
"name": "返回",
"font_class": "fanhui1-copy",
"unicode": "eb90",
"unicode_decimal": 60304
},
{
"icon_id": "36619",
"name": "路标",
"font_class": "lubiao",
"unicode": "e611",
"unicode_decimal": 58897
},
{
"icon_id": "271420",
"name": "分类",
"font_class": "unie63a",
"unicode": "e6bb",
"unicode_decimal": 59067
},
{
"icon_id": "338295",
"name": "我的收藏",
"font_class": "wodeshoucang",
"unicode": "e629",
"unicode_decimal": 58921
},
{
"icon_id": "479409",
"name": "箭头",
"font_class": "jiantou",
"unicode": "e619",
"unicode_decimal": 58905
},
{
"icon_id": "553324",
"name": "验证 验证码",
"font_class": "yanzhengyanzhengma",
"unicode": "e624",
"unicode_decimal": 58916
},
{
"icon_id": "553896",
"name": "锁",
"font_class": "iconset0114",
"unicode": "e612",
"unicode_decimal": 58898
},
{
"icon_id": "608351",
"name": "箭头",
"font_class": "jiantouarrow486",
"unicode": "e6aa",
"unicode_decimal": 59050
},
{
"icon_id": "608357",
"name": "箭头",
"font_class": "jiantouarrow492",
"unicode": "e6b0",
"unicode_decimal": 59056
},
{
"icon_id": "676614",
"name": "首页",
"font_class": "shouye1",
"unicode": "e630",
"unicode_decimal": 58928
},
{
"icon_id": "685441",
"name": "电话",
"font_class": "dianhua",
"unicode": "e797",
"unicode_decimal": 59287
},
{
"icon_id": "700847",
"name": "手机",
"font_class": "shouji",
"unicode": "e64f",
"unicode_decimal": 58959
},
{
"icon_id": "720794",
"name": "验证码 ",
"font_class": "yanzhengma2",
"unicode": "e656",
"unicode_decimal": 58966
},
{
"icon_id": "754276",
"name": "购物车 ",
"font_class": "gouwuche1",
"unicode": "e62b",
"unicode_decimal": 58923
},
{
"icon_id": "765555",
"name": "待付款",
"font_class": "nopayment",
"unicode": "e692",
"unicode_decimal": 59026
},
{
"icon_id": "770752",
"name": "分类",
"font_class": "fenlei3",
"unicode": "e682",
"unicode_decimal": 59010
},
{
"icon_id": "772862",
"name": "信封8",
"font_class": "xinfeng8",
"unicode": "e643",
"unicode_decimal": 58947
},
{
"icon_id": "891832",
"name": "返回",
"font_class": "fanhui1",
"unicode": "e641",
"unicode_decimal": 58945
},
{
"icon_id": "897647",
"name": "指南针",
"font_class": "icons64x6472",
"unicode": "e683",
"unicode_decimal": 59011
},
{
"icon_id": "908548",
"name": "待发货",
"font_class": "daifahuo",
"unicode": "e68d",
"unicode_decimal": 59021
},
{
"icon_id": "975628",
"name": "定位",
"font_class": "dingwei",
"unicode": "e63c",
"unicode_decimal": 58940
},
{
"icon_id": "996875",
"name": "关闭",
"font_class": "ai54",
"unicode": "e6ac",
"unicode_decimal": 59052
},
{
"icon_id": "1002510",
"name": "我的",
"font_class": "wode1",
"unicode": "e61d",
"unicode_decimal": 58909
},
{
"icon_id": "1015707",
"name": "客服",
"font_class": "kefu1",
"unicode": "e61e",
"unicode_decimal": 58910
},
{
"icon_id": "1029197",
"name": "搜索",
"font_class": "search-1-copy",
"unicode": "e614",
"unicode_decimal": 58900
},
{
"icon_id": "1059740",
"name": "分期商城-待收货",
"font_class": "daishouhuo1",
"unicode": "e69e",
"unicode_decimal": 59038
},
{
"icon_id": "1133804",
"name": "待评价",
"font_class": "daipingjia1",
"unicode": "e64c",
"unicode_decimal": 58956
},
{
"icon_id": "1135434",
"name": "三角形",
"font_class": "triangle-copy-copy-copy",
"unicode": "e62e",
"unicode_decimal": 58926
},
{
"icon_id": "1244100",
"name": "首页",
"font_class": "shouye2",
"unicode": "e639",
"unicode_decimal": 58937
},
{
"icon_id": "1259782",
"name": "卡券",
"font_class": "qiaquan",
"unicode": "e693",
"unicode_decimal": 59027
},
{
"icon_id": "1265482",
"name": "右",
"font_class": "you",
"unicode": "e615",
"unicode_decimal": 58901
},
{
"icon_id": "1265514",
"name": "购物车",
"font_class": "gouwuche2",
"unicode": "e617",
"unicode_decimal": 58903
},
{
"icon_id": "1305053",
"name": "定位",
"font_class": "dingwei1",
"unicode": "e62f",
"unicode_decimal": 58927
},
{
"icon_id": "1314338",
"name": "垃圾箱",
"font_class": "lajixiang",
"unicode": "e61b",
"unicode_decimal": 58907
},
{
"icon_id": "1321305",
"name": "经典案例_五角星_收藏后",
"font_class": "jingdiananli_wujiaoxing_shoucanghou",
"unicode": "e64a",
"unicode_decimal": 58954
},
{
"icon_id": "1518005",
"name": "左箭头",
"font_class": "zuojiantou",
"unicode": "e65a",
"unicode_decimal": 58970
},
{
"icon_id": "1630001",
"name": "回到顶部",
"font_class": "huidaodingbu",
"unicode": "e6a9",
"unicode_decimal": 59049
},
{
"icon_id": "1638604",
"name": "关闭",
"font_class": "guanbianniu",
"unicode": "e61c",
"unicode_decimal": 58908
},
{
"icon_id": "1646226",
"name": "分享",
"font_class": "fenxiang",
"unicode": "e61f",
"unicode_decimal": 58911
},
{
"icon_id": "1741258",
"name": "钱包",
"font_class": "qianbao",
"unicode": "e848",
"unicode_decimal": 59464
},
{
"icon_id": "1788969",
"name": "筛选",
"font_class": "shaixuan",
"unicode": "e6a6",
"unicode_decimal": 59046
},
{
"icon_id": "1822198",
"name": "粉红色对勾",
"font_class": "fenhongseduigou",
"unicode": "e620",
"unicode_decimal": 58912
},
{
"icon_id": "2076301",
"name": " 路标",
"font_class": "lubiao1",
"unicode": "e89d",
"unicode_decimal": 59549
},
{
"icon_id": "2197673",
"name": "电话",
"font_class": "dianhua1",
"unicode": "e67f",
"unicode_decimal": 59007
},
{
"icon_id": "2325917",
"name": "客服",
"font_class": "kefu11",
"unicode": "e638",
"unicode_decimal": 58936
},
{
"icon_id": "2378834",
"name": "地址",
"font_class": "dizhi1",
"unicode": "e654",
"unicode_decimal": 58964
},
{
"icon_id": "9650302",
"name": "订单支付",
"font_class": "dingdanzhifu",
"unicode": "e6b7",
"unicode_decimal": 59063
},
{
"icon_id": "11188473",
"name": "位置 定位",
"font_class": "weizhidingwei",
"unicode": "e6a5",
"unicode_decimal": 59045
},
{
"icon_id": "471647",
"name": "待评价",
"font_class": "daipingjia",
"unicode": "e657",
"unicode_decimal": 58967
},
{
"icon_id": "2486461",
"name": "钱包",
"font_class": "qianbao5",
"unicode": "e610",
"unicode_decimal": 58896
},
{
"icon_id": "4133757",
"name": "闹钟 时间 计时 提醒 限时 通知 面性",
"font_class": "naozhongshijianjishitixingxianshitongzhimianxing",
"unicode": "e894",
"unicode_decimal": 59540
},
{
"icon_id": "6903791",
"name": "待收货",
"font_class": "daishouhuo",
"unicode": "e6b9",
"unicode_decimal": 59065
},
{
"icon_id": "3813237",
"name": "发货",
"font_class": "delivery",
"unicode": "e628",
"unicode_decimal": 58920
},
{
"icon_id": "2488440",
"name": "感叹号中",
"font_class": "gantanhaozhong",
"unicode": "e8e5",
"unicode_decimal": 59621
},
{
"icon_id": "4485665",
"name": "铃铛",
"font_class": "lingdang",
"unicode": "e60e",
"unicode_decimal": 58894
},
{
"icon_id": "1351",
"name": "向下",
"font_class": "xiangxia",
"unicode": "e607",
"unicode_decimal": 58887
},
{
"icon_id": "838055",
"name": "退款",
"font_class": "tuikuan",
"unicode": "e60f",
"unicode_decimal": 58895
},
{
"icon_id": "2076201",
"name": "拍照",
"font_class": "paizhao",
"unicode": "e872",
"unicode_decimal": 59506
},
{
"icon_id": "2116292",
"name": "扫一扫",
"font_class": "richscan_icon",
"unicode": "e661",
"unicode_decimal": 58977
},
{
"icon_id": "3849908",
"name": "换货",
"font_class": "huanhuo",
"unicode": "e608",
"unicode_decimal": 58888
},
{
"icon_id": "7160378",
"name": "退货",
"font_class": "tuihuo",
"unicode": "e60d",
"unicode_decimal": 58893
},
{
"icon_id": "714418",
"name": "资讯",
"font_class": "zixun",
"unicode": "e60c",
"unicode_decimal": 58892
},
{
"icon_id": "1303360",
"name": "优惠券",
"font_class": "youhuiquan",
"unicode": "e61a",
"unicode_decimal": 58906
},
{
"icon_id": "5485680",
"name": "消息",
"font_class": "xiaoxi1",
"unicode": "e623",
"unicode_decimal": 58915
},
{
"icon_id": "380534",
"name": "物流快递",
"font_class": "wuliukuaidi",
"unicode": "e616",
"unicode_decimal": 58902
},
{
"icon_id": "3315454",
"name": "消息",
"font_class": "xiaoxi",
"unicode": "e62d",
"unicode_decimal": 58925
},
{
"icon_id": "4933380",
"name": "删除",
"font_class": "shanchu",
"unicode": "e74c",
"unicode_decimal": 59212
},
{
"icon_id": "5315863",
"name": "感叹号",
"font_class": "gantanhao1",
"unicode": "e62c",
"unicode_decimal": 58924
},
{
"icon_id": "721157",
"name": "删除 (4)",
"font_class": "shanchu4",
"unicode": "e690",
"unicode_decimal": 59024
},
{
"icon_id": "4485673",
"name": "位置",
"font_class": "weizhi",
"unicode": "e601",
"unicode_decimal": 58881
},
{
"icon_id": "6539435",
"name": "时钟",
"font_class": "shizhong",
"unicode": "e686",
"unicode_decimal": 59014
},
{
"icon_id": "829816",
"name": "下降",
"font_class": "xiajiang",
"unicode": "e691",
"unicode_decimal": 59025
},
{
"icon_id": "6889977",
"name": "选择-已选",
"font_class": "xuanze-yixuan",
"unicode": "e679",
"unicode_decimal": 59001
},
{
"icon_id": "7100720",
"name": "地图",
"font_class": "map",
"unicode": "e600",
"unicode_decimal": 58880
},
{
"icon_id": "5268175",
"name": "我的",
"font_class": "wode",
"unicode": "e603",
"unicode_decimal": 58883
},
{
"icon_id": "5268176",
"name": "分类",
"font_class": "fenlei",
"unicode": "e604",
"unicode_decimal": 58884
},
{
"icon_id": "5268177",
"name": "购物车",
"font_class": "gouwuche",
"unicode": "e605",
"unicode_decimal": 58885
},
{
"icon_id": "5269694",
"name": "首页",
"font_class": "shouye",
"unicode": "e606",
"unicode_decimal": 58886
},
{
"icon_id": "1032410",
"name": "星星",
"font_class": "xingxing",
"unicode": "e642",
"unicode_decimal": 58946
},
{
"icon_id": "1546893",
"name": "客服",
"font_class": "kefu",
"unicode": "e734",
"unicode_decimal": 59188
},
{
"icon_id": "5270852",
"name": "收 藏-产品详情",
"font_class": "shoucang1",
"unicode": "e613",
"unicode_decimal": 58899
},
{
"icon_id": "716115",
"name": "积分",
"font_class": "jifen",
"unicode": "e6a4",
"unicode_decimal": 59044
},
{
"icon_id": "641901",
"name": "推荐人",
"font_class": "iconfonttuijianren",
"unicode": "e62a",
"unicode_decimal": 58922
},
{
"icon_id": "1203715",
"name": "预约",
"font_class": "leijiyuyue",
"unicode": "e609",
"unicode_decimal": 58889
},
{
"icon_id": "1287682",
"name": "足迹",
"font_class": "zuji",
"unicode": "e602",
"unicode_decimal": 58882
},
{
"icon_id": "2155817",
"name": "会员卡",
"font_class": "membership-card_icon",
"unicode": "e677",
"unicode_decimal": 58999
},
{
"icon_id": "2681698",
"name": "门店",
"font_class": "mendian",
"unicode": "e60b",
"unicode_decimal": 58891
},
{
"icon_id": "3930495",
"name": "设置",
"font_class": "shezhi",
"unicode": "e618",
"unicode_decimal": 58904
},
{
"icon_id": "4728822",
"name": "收藏",
"font_class": "shoucang",
"unicode": "e647",
"unicode_decimal": 58951
},
{
"icon_id": "6684323",
"name": "地址",
"font_class": "dizhi",
"unicode": "e640",
"unicode_decimal": 58944
},
{
"icon_id": "6129299",
"name": "257优惠券-线性",
"font_class": "youhuiquan-xianxing",
"unicode": "e7dc",
"unicode_decimal": 59356
},
{
"icon_id": "4165951",
"name": "钱",
"font_class": "qian",
"unicode": "e60a",
"unicode_decimal": 58890
}
]
}
!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define("mpBehavior",[],e):"object"==typeof exports?exports.mpBehavior=e():t.mpBehavior=e()}(window,(function(){return function(t){var e={};function r(o){if(e[o])return e[o].exports;var n=e[o]={i:o,l:!1,exports:{}};return t[o].call(n.exports,n,n.exports,r),n.l=!0,n.exports}return r.m=t,r.c=e,r.d=function(t,e,o){r.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:o})},r.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},r.t=function(t,e){if(1&e&&(t=r(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var o=Object.create(null);if(r.r(o),Object.defineProperty(o,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var n in t)r.d(o,n,function(e){return t[e]}.bind(null,n));return o},r.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return r.d(e,"a",e),e},r.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},r.p="/dist/",r(r.s=22)}([,function(t,e,r){"use strict";var o=SyntaxError,n=Function,i=TypeError,a=function(t){try{return n('"use strict"; return ('+t+").constructor;")()}catch(t){}},c=Object.getOwnPropertyDescriptor;if(c)try{c({},"")}catch(t){c=null}var p=function(){throw new i},u=c?function(){try{return p}catch(t){try{return c(arguments,"callee").get}catch(t){return p}}}():p,f=r(11)(),l=Object.getPrototypeOf||function(t){return t.__proto__},y={},s="undefined"==typeof Uint8Array?void 0:l(Uint8Array),d={"%AggregateError%":"undefined"==typeof AggregateError?void 0:AggregateError,"%Array%":Array,"%ArrayBuffer%":"undefined"==typeof ArrayBuffer?void 0:ArrayBuffer,"%ArrayIteratorPrototype%":f?l([][Symbol.iterator]()):void 0,"%AsyncFromSyncIteratorPrototype%":void 0,"%AsyncFunction%":y,"%AsyncGenerator%":y,"%AsyncGeneratorFunction%":y,"%AsyncIteratorPrototype%":y,"%Atomics%":"undefined"==typeof Atomics?void 0:Atomics,"%BigInt%":"undefined"==typeof BigInt?void 0:BigInt,"%Boolean%":Boolean,"%DataView%":"undefined"==typeof DataView?void 0:DataView,"%Date%":Date,"%decodeURI%":decodeURI,"%decodeURIComponent%":decodeURIComponent,"%encodeURI%":encodeURI,"%encodeURIComponent%":encodeURIComponent,"%Error%":Error,"%eval%":eval,"%EvalError%":EvalError,"%Float32Array%":"undefined"==typeof Float32Array?void 0:Float32Array,"%Float64Array%":"undefined"==typeof Float64Array?void 0:Float64Array,"%FinalizationRegistry%":"undefined"==typeof FinalizationRegistry?void 0:FinalizationRegistry,"%Function%":n,"%GeneratorFunction%":y,"%Int8Array%":"undefined"==typeof Int8Array?void 0:Int8Array,"%Int16Array%":"undefined"==typeof Int16Array?void 0:Int16Array,"%Int32Array%":"undefined"==typeof Int32Array?void 0:Int32Array,"%isFinite%":isFinite,"%isNaN%":isNaN,"%IteratorPrototype%":f?l(l([][Symbol.iterator]())):void 0,"%JSON%":"object"==typeof JSON?JSON:void 0,"%Map%":"undefined"==typeof Map?void 0:Map,"%MapIteratorPrototype%":"undefined"!=typeof Map&&f?l((new Map)[Symbol.iterator]()):void 0,"%Math%":Math,"%Number%":Number,"%Object%":Object,"%parseFloat%":parseFloat,"%parseInt%":parseInt,"%Promise%":"undefined"==typeof Promise?void 0:Promise,"%Proxy%":"undefined"==typeof Proxy?void 0:Proxy,"%RangeError%":RangeError,"%ReferenceError%":ReferenceError,"%Reflect%":"undefined"==typeof Reflect?void 0:Reflect,"%RegExp%":RegExp,"%Set%":"undefined"==typeof Set?void 0:Set,"%SetIteratorPrototype%":"undefined"!=typeof Set&&f?l((new Set)[Symbol.iterator]()):void 0,"%SharedArrayBuffer%":"undefined"==typeof SharedArrayBuffer?void 0:SharedArrayBuffer,"%String%":String,"%StringIteratorPrototype%":f?l(""[Symbol.iterator]()):void 0,"%Symbol%":f?Symbol:void 0,"%SyntaxError%":o,"%ThrowTypeError%":u,"%TypedArray%":s,"%TypeError%":i,"%Uint8Array%":"undefined"==typeof Uint8Array?void 0:Uint8Array,"%Uint8ClampedArray%":"undefined"==typeof Uint8ClampedArray?void 0:Uint8ClampedArray,"%Uint16Array%":"undefined"==typeof Uint16Array?void 0:Uint16Array,"%Uint32Array%":"undefined"==typeof Uint32Array?void 0:Uint32Array,"%URIError%":URIError,"%WeakMap%":"undefined"==typeof WeakMap?void 0:WeakMap,"%WeakRef%":"undefined"==typeof WeakRef?void 0:WeakRef,"%WeakSet%":"undefined"==typeof WeakSet?void 0:WeakSet},b={"%ArrayBufferPrototype%":["ArrayBuffer","prototype"],"%ArrayPrototype%":["Array","prototype"],"%ArrayProto_entries%":["Array","prototype","entries"],"%ArrayProto_forEach%":["Array","prototype","forEach"],"%ArrayProto_keys%":["Array","prototype","keys"],"%ArrayProto_values%":["Array","prototype","values"],"%AsyncFunctionPrototype%":["AsyncFunction","prototype"],"%AsyncGenerator%":["AsyncGeneratorFunction","prototype"],"%AsyncGeneratorPrototype%":["AsyncGeneratorFunction","prototype","prototype"],"%BooleanPrototype%":["Boolean","prototype"],"%DataViewPrototype%":["DataView","prototype"],"%DatePrototype%":["Date","prototype"],"%ErrorPrototype%":["Error","prototype"],"%EvalErrorPrototype%":["EvalError","prototype"],"%Float32ArrayPrototype%":["Float32Array","prototype"],"%Float64ArrayPrototype%":["Float64Array","prototype"],"%FunctionPrototype%":["Function","prototype"],"%Generator%":["GeneratorFunction","prototype"],"%GeneratorPrototype%":["GeneratorFunction","prototype","prototype"],"%Int8ArrayPrototype%":["Int8Array","prototype"],"%Int16ArrayPrototype%":["Int16Array","prototype"],"%Int32ArrayPrototype%":["Int32Array","prototype"],"%JSONParse%":["JSON","parse"],"%JSONStringify%":["JSON","stringify"],"%MapPrototype%":["Map","prototype"],"%NumberPrototype%":["Number","prototype"],"%ObjectPrototype%":["Object","prototype"],"%ObjProto_toString%":["Object","prototype","toString"],"%ObjProto_valueOf%":["Object","prototype","valueOf"],"%PromisePrototype%":["Promise","prototype"],"%PromiseProto_then%":["Promise","prototype","then"],"%Promise_all%":["Promise","all"],"%Promise_reject%":["Promise","reject"],"%Promise_resolve%":["Promise","resolve"],"%RangeErrorPrototype%":["RangeError","prototype"],"%ReferenceErrorPrototype%":["ReferenceError","prototype"],"%RegExpPrototype%":["RegExp","prototype"],"%SetPrototype%":["Set","prototype"],"%SharedArrayBufferPrototype%":["SharedArrayBuffer","prototype"],"%StringPrototype%":["String","prototype"],"%SymbolPrototype%":["Symbol","prototype"],"%SyntaxErrorPrototype%":["SyntaxError","prototype"],"%TypedArrayPrototype%":["TypedArray","prototype"],"%TypeErrorPrototype%":["TypeError","prototype"],"%Uint8ArrayPrototype%":["Uint8Array","prototype"],"%Uint8ClampedArrayPrototype%":["Uint8ClampedArray","prototype"],"%Uint16ArrayPrototype%":["Uint16Array","prototype"],"%Uint32ArrayPrototype%":["Uint32Array","prototype"],"%URIErrorPrototype%":["URIError","prototype"],"%WeakMapPrototype%":["WeakMap","prototype"],"%WeakSetPrototype%":["WeakSet","prototype"]},g=r(2),m=r(14),h=g.call(Function.call,Array.prototype.concat),v=g.call(Function.apply,Array.prototype.splice),S=g.call(Function.call,String.prototype.replace),j=g.call(Function.call,String.prototype.slice),O=/[^%.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|%$))/g,A=/\\(\\)?/g,w=function(t){var e=j(t,0,1),r=j(t,-1);if("%"===e&&"%"!==r)throw new o("invalid intrinsic syntax, expected closing `%`");if("%"===r&&"%"!==e)throw new o("invalid intrinsic syntax, expected opening `%`");var n=[];return S(t,O,(function(t,e,r,o){n[n.length]=r?S(o,A,"$1"):e||t})),n},P=function(t,e){var r,n=t;if(m(b,n)&&(n="%"+(r=b[n])[0]+"%"),m(d,n)){var c=d[n];if(c===y&&(c=function t(e){var r;if("%AsyncFunction%"===e)r=a("async function () {}");else if("%GeneratorFunction%"===e)r=a("function* () {}");else if("%AsyncGeneratorFunction%"===e)r=a("async function* () {}");else if("%AsyncGenerator%"===e){var o=t("%AsyncGeneratorFunction%");o&&(r=o.prototype)}else if("%AsyncIteratorPrototype%"===e){var n=t("%AsyncGenerator%");n&&(r=l(n.prototype))}return d[e]=r,r}(n)),void 0===c&&!e)throw new i("intrinsic "+t+" exists, but is not available. Please file an issue!");return{alias:r,name:n,value:c}}throw new o("intrinsic "+t+" does not exist!")};t.exports=function(t,e){if("string"!=typeof t||0===t.length)throw new i("intrinsic name must be a non-empty string");if(arguments.length>1&&"boolean"!=typeof e)throw new i('"allowMissing" argument must be a boolean');var r=w(t),n=r.length>0?r[0]:"",a=P("%"+n+"%",e),p=a.name,u=a.value,f=!1,l=a.alias;l&&(n=l[0],v(r,h([0,1],l)));for(var y=1,s=!0;y<r.length;y+=1){var b=r[y],g=j(b,0,1),S=j(b,-1);if(('"'===g||"'"===g||"`"===g||'"'===S||"'"===S||"`"===S)&&g!==S)throw new o("property names with quotes must have matching quotes");if("constructor"!==b&&s||(f=!0),m(d,p="%"+(n+="."+b)+"%"))u=d[p];else if(null!=u){if(!(b in u)){if(!e)throw new i("base intrinsic for "+t+" exists, but the property is not available.");return}if(c&&y+1>=r.length){var O=c(u,b);u=(s=!!O)&&"get"in O&&!("originalValue"in O.get)?O.get:u[b]}else s=m(u,b),u=u[b];s&&!f&&(d[p]=u)}}return u}},function(t,e,r){"use strict";var o=r(13);t.exports=Function.prototype.bind||o},function(t,e,r){"use strict";var o=String.prototype.replace,n=/%20/g,i="RFC1738",a="RFC3986";t.exports={default:a,formatters:{RFC1738:function(t){return o.call(t,n,"+")},RFC3986:function(t){return String(t)}},RFC1738:i,RFC3986:a}},function(t,e,r){"use strict";var o=r(3),n=Object.prototype.hasOwnProperty,i=Array.isArray,a=function(){for(var t=[],e=0;e<256;++e)t.push("%"+((e<16?"0":"")+e.toString(16)).toUpperCase());return t}(),c=function(t,e){for(var r=e&&e.plainObjects?Object.create(null):{},o=0;o<t.length;++o)void 0!==t[o]&&(r[o]=t[o]);return r};t.exports={arrayToObject:c,assign:function(t,e){return Object.keys(e).reduce((function(t,r){return t[r]=e[r],t}),t)},combine:function(t,e){return[].concat(t,e)},compact:function(t){for(var e=[{obj:{o:t},prop:"o"}],r=[],o=0;o<e.length;++o)for(var n=e[o],a=n.obj[n.prop],c=Object.keys(a),p=0;p<c.length;++p){var u=c[p],f=a[u];"object"==typeof f&&null!==f&&-1===r.indexOf(f)&&(e.push({obj:a,prop:u}),r.push(f))}return function(t){for(;t.length>1;){var e=t.pop(),r=e.obj[e.prop];if(i(r)){for(var o=[],n=0;n<r.length;++n)void 0!==r[n]&&o.push(r[n]);e.obj[e.prop]=o}}}(e),t},decode:function(t,e,r){var o=t.replace(/\+/g," ");if("iso-8859-1"===r)return o.replace(/%[0-9a-f]{2}/gi,unescape);try{return decodeURIComponent(o)}catch(t){return o}},encode:function(t,e,r,n,i){if(0===t.length)return t;var c=t;if("symbol"==typeof t?c=Symbol.prototype.toString.call(t):"string"!=typeof t&&(c=String(t)),"iso-8859-1"===r)return escape(c).replace(/%u[0-9a-f]{4}/gi,(function(t){return"%26%23"+parseInt(t.slice(2),16)+"%3B"}));for(var p="",u=0;u<c.length;++u){var f=c.charCodeAt(u);45===f||46===f||95===f||126===f||f>=48&&f<=57||f>=65&&f<=90||f>=97&&f<=122||i===o.RFC1738&&(40===f||41===f)?p+=c.charAt(u):f<128?p+=a[f]:f<2048?p+=a[192|f>>6]+a[128|63&f]:f<55296||f>=57344?p+=a[224|f>>12]+a[128|f>>6&63]+a[128|63&f]:(u+=1,f=65536+((1023&f)<<10|1023&c.charCodeAt(u)),p+=a[240|f>>18]+a[128|f>>12&63]+a[128|f>>6&63]+a[128|63&f])}return p},isBuffer:function(t){return!(!t||"object"!=typeof t)&&!!(t.constructor&&t.constructor.isBuffer&&t.constructor.isBuffer(t))},isRegExp:function(t){return"[object RegExp]"===Object.prototype.toString.call(t)},maybeMap:function(t,e){if(i(t)){for(var r=[],o=0;o<t.length;o+=1)r.push(e(t[o]));return r}return e(t)},merge:function t(e,r,o){if(!r)return e;if("object"!=typeof r){if(i(e))e.push(r);else{if(!e||"object"!=typeof e)return[e,r];(o&&(o.plainObjects||o.allowPrototypes)||!n.call(Object.prototype,r))&&(e[r]=!0)}return e}if(!e||"object"!=typeof e)return[e].concat(r);var a=e;return i(e)&&!i(r)&&(a=c(e,o)),i(e)&&i(r)?(r.forEach((function(r,i){if(n.call(e,i)){var a=e[i];a&&"object"==typeof a&&r&&"object"==typeof r?e[i]=t(a,r,o):e.push(r)}else e[i]=r})),e):Object.keys(r).reduce((function(e,i){var a=r[i];return n.call(e,i)?e[i]=t(e[i],a,o):e[i]=a,e}),a)}}},function(t,e,r){var o=r(6),n=r(7);t.exports=function(t,e,r){var i=e&&r||0;"string"==typeof t&&(e="binary"===t?new Array(16):null,t=null);var a=(t=t||{}).random||(t.rng||o)();if(a[6]=15&a[6]|64,a[8]=63&a[8]|128,e)for(var c=0;c<16;++c)e[i+c]=a[c];return e||n(a)}},function(t,e){var r="undefined"!=typeof crypto&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto)||"undefined"!=typeof msCrypto&&"function"==typeof window.msCrypto.getRandomValues&&msCrypto.getRandomValues.bind(msCrypto);if(r){var o=new Uint8Array(16);t.exports=function(){return r(o),o}}else{var n=new Array(16);t.exports=function(){for(var t,e=0;e<16;e++)0==(3&e)&&(t=4294967296*Math.random()),n[e]=t>>>((3&e)<<3)&255;return n}}},function(t,e){for(var r=[],o=0;o<256;++o)r[o]=(o+256).toString(16).substr(1);t.exports=function(t,e){var o=e||0,n=r;return[n[t[o++]],n[t[o++]],n[t[o++]],n[t[o++]],"-",n[t[o++]],n[t[o++]],"-",n[t[o++]],n[t[o++]],"-",n[t[o++]],n[t[o++]],"-",n[t[o++]],n[t[o++]],n[t[o++]],n[t[o++]],n[t[o++]],n[t[o++]]].join("")}},function(t,e,r){"use strict";var o=r(9),n=r(19),i=r(3);t.exports={formats:i,parse:n,stringify:o}},function(t,e,r){"use strict";var o=r(10),n=r(4),i=r(3),a=Object.prototype.hasOwnProperty,c={brackets:function(t){return t+"[]"},comma:"comma",indices:function(t,e){return t+"["+e+"]"},repeat:function(t){return t}},p=Array.isArray,u=Array.prototype.push,f=function(t,e){u.apply(t,p(e)?e:[e])},l=Date.prototype.toISOString,y=i.default,s={addQueryPrefix:!1,allowDots:!1,charset:"utf-8",charsetSentinel:!1,delimiter:"&",encode:!0,encoder:n.encode,encodeValuesOnly:!1,format:y,formatter:i.formatters[y],indices:!1,serializeDate:function(t){return l.call(t)},skipNulls:!1,strictNullHandling:!1},d=function t(e,r,i,a,c,u,l,y,d,b,g,m,h,v,S){var j,O=e;if(S.has(e))throw new RangeError("Cyclic object value");if("function"==typeof l?O=l(r,O):O instanceof Date?O=b(O):"comma"===i&&p(O)&&(O=n.maybeMap(O,(function(t){return t instanceof Date?b(t):t}))),null===O){if(a)return u&&!h?u(r,s.encoder,v,"key",g):r;O=""}if("string"==typeof(j=O)||"number"==typeof j||"boolean"==typeof j||"symbol"==typeof j||"bigint"==typeof j||n.isBuffer(O))return u?[m(h?r:u(r,s.encoder,v,"key",g))+"="+m(u(O,s.encoder,v,"value",g))]:[m(r)+"="+m(String(O))];var A,w=[];if(void 0===O)return w;if("comma"===i&&p(O))A=[{value:O.length>0?O.join(",")||null:void 0}];else if(p(l))A=l;else{var P=Object.keys(O);A=y?P.sort(y):P}for(var x=0;x<A.length;++x){var E=A[x],k="object"==typeof E&&void 0!==E.value?E.value:O[E];if(!c||null!==k){var I=p(O)?"function"==typeof i?i(r,E):r:r+(d?"."+E:"["+E+"]");S.set(e,!0);var F=o();f(w,t(k,I,i,a,c,u,l,y,d,b,g,m,h,v,F))}}return w};t.exports=function(t,e){var r,n=t,u=function(t){if(!t)return s;if(null!==t.encoder&&void 0!==t.encoder&&"function"!=typeof t.encoder)throw new TypeError("Encoder has to be a function.");var e=t.charset||s.charset;if(void 0!==t.charset&&"utf-8"!==t.charset&&"iso-8859-1"!==t.charset)throw new TypeError("The charset option must be either utf-8, iso-8859-1, or undefined");var r=i.default;if(void 0!==t.format){if(!a.call(i.formatters,t.format))throw new TypeError("Unknown format option provided.");r=t.format}var o=i.formatters[r],n=s.filter;return("function"==typeof t.filter||p(t.filter))&&(n=t.filter),{addQueryPrefix:"boolean"==typeof t.addQueryPrefix?t.addQueryPrefix:s.addQueryPrefix,allowDots:void 0===t.allowDots?s.allowDots:!!t.allowDots,charset:e,charsetSentinel:"boolean"==typeof t.charsetSentinel?t.charsetSentinel:s.charsetSentinel,delimiter:void 0===t.delimiter?s.delimiter:t.delimiter,encode:"boolean"==typeof t.encode?t.encode:s.encode,encoder:"function"==typeof t.encoder?t.encoder:s.encoder,encodeValuesOnly:"boolean"==typeof t.encodeValuesOnly?t.encodeValuesOnly:s.encodeValuesOnly,filter:n,format:r,formatter:o,serializeDate:"function"==typeof t.serializeDate?t.serializeDate:s.serializeDate,skipNulls:"boolean"==typeof t.skipNulls?t.skipNulls:s.skipNulls,sort:"function"==typeof t.sort?t.sort:null,strictNullHandling:"boolean"==typeof t.strictNullHandling?t.strictNullHandling:s.strictNullHandling}}(e);"function"==typeof u.filter?n=(0,u.filter)("",n):p(u.filter)&&(r=u.filter);var l,y=[];if("object"!=typeof n||null===n)return"";l=e&&e.arrayFormat in c?e.arrayFormat:e&&"indices"in e?e.indices?"indices":"repeat":"indices";var b=c[l];r||(r=Object.keys(n)),u.sort&&r.sort(u.sort);for(var g=o(),m=0;m<r.length;++m){var h=r[m];u.skipNulls&&null===n[h]||f(y,d(n[h],h,b,u.strictNullHandling,u.skipNulls,u.encode?u.encoder:null,u.filter,u.sort,u.allowDots,u.serializeDate,u.format,u.formatter,u.encodeValuesOnly,u.charset,g))}var v=y.join(u.delimiter),S=!0===u.addQueryPrefix?"?":"";return u.charsetSentinel&&("iso-8859-1"===u.charset?S+="utf8=%26%2310003%3B&":S+="utf8=%E2%9C%93&"),v.length>0?S+v:""}},function(t,e,r){"use strict";var o=r(1),n=r(15),i=r(17),a=o("%TypeError%"),c=o("%WeakMap%",!0),p=o("%Map%",!0),u=n("WeakMap.prototype.get",!0),f=n("WeakMap.prototype.set",!0),l=n("WeakMap.prototype.has",!0),y=n("Map.prototype.get",!0),s=n("Map.prototype.set",!0),d=n("Map.prototype.has",!0),b=function(t,e){for(var r,o=t;null!==(r=o.next);o=r)if(r.key===e)return o.next=r.next,r.next=t.next,t.next=r,r};t.exports=function(){var t,e,r,o={assert:function(t){if(!o.has(t))throw new a("Side channel does not contain "+i(t))},get:function(o){if(c&&o&&("object"==typeof o||"function"==typeof o)){if(t)return u(t,o)}else if(p){if(e)return y(e,o)}else if(r)return function(t,e){var r=b(t,e);return r&&r.value}(r,o)},has:function(o){if(c&&o&&("object"==typeof o||"function"==typeof o)){if(t)return l(t,o)}else if(p){if(e)return d(e,o)}else if(r)return function(t,e){return!!b(t,e)}(r,o);return!1},set:function(o,n){c&&o&&("object"==typeof o||"function"==typeof o)?(t||(t=new c),f(t,o,n)):p?(e||(e=new p),s(e,o,n)):(r||(r={key:{},next:null}),function(t,e,r){var o=b(t,e);o?o.value=r:t.next={key:e,next:t.next,value:r}}(r,o,n))}};return o}},function(t,e,r){"use strict";var o="undefined"!=typeof Symbol&&Symbol,n=r(12);t.exports=function(){return"function"==typeof o&&("function"==typeof Symbol&&("symbol"==typeof o("foo")&&("symbol"==typeof Symbol("bar")&&n())))}},function(t,e,r){"use strict";t.exports=function(){if("function"!=typeof Symbol||"function"!=typeof Object.getOwnPropertySymbols)return!1;if("symbol"==typeof Symbol.iterator)return!0;var t={},e=Symbol("test"),r=Object(e);if("string"==typeof e)return!1;if("[object Symbol]"!==Object.prototype.toString.call(e))return!1;if("[object Symbol]"!==Object.prototype.toString.call(r))return!1;for(e in t[e]=42,t)return!1;if("function"==typeof Object.keys&&0!==Object.keys(t).length)return!1;if("function"==typeof Object.getOwnPropertyNames&&0!==Object.getOwnPropertyNames(t).length)return!1;var o=Object.getOwnPropertySymbols(t);if(1!==o.length||o[0]!==e)return!1;if(!Object.prototype.propertyIsEnumerable.call(t,e))return!1;if("function"==typeof Object.getOwnPropertyDescriptor){var n=Object.getOwnPropertyDescriptor(t,e);if(42!==n.value||!0!==n.enumerable)return!1}return!0}},function(t,e,r){"use strict";var o="Function.prototype.bind called on incompatible ",n=Array.prototype.slice,i=Object.prototype.toString;t.exports=function(t){var e=this;if("function"!=typeof e||"[object Function]"!==i.call(e))throw new TypeError(o+e);for(var r,a=n.call(arguments,1),c=function(){if(this instanceof r){var o=e.apply(this,a.concat(n.call(arguments)));return Object(o)===o?o:this}return e.apply(t,a.concat(n.call(arguments)))},p=Math.max(0,e.length-a.length),u=[],f=0;f<p;f++)u.push("$"+f);if(r=Function("binder","return function ("+u.join(",")+"){ return binder.apply(this,arguments); }")(c),e.prototype){var l=function(){};l.prototype=e.prototype,r.prototype=new l,l.prototype=null}return r}},function(t,e,r){"use strict";var o=r(2);t.exports=o.call(Function.call,Object.prototype.hasOwnProperty)},function(t,e,r){"use strict";var o=r(1),n=r(16),i=n(o("String.prototype.indexOf"));t.exports=function(t,e){var r=o(t,!!e);return"function"==typeof r&&i(t,".prototype.")>-1?n(r):r}},function(t,e,r){"use strict";var o=r(2),n=r(1),i=n("%Function.prototype.apply%"),a=n("%Function.prototype.call%"),c=n("%Reflect.apply%",!0)||o.call(a,i),p=n("%Object.getOwnPropertyDescriptor%",!0),u=n("%Object.defineProperty%",!0),f=n("%Math.max%");if(u)try{u({},"a",{value:1})}catch(t){u=null}t.exports=function(t){var e=c(o,a,arguments);if(p&&u){var r=p(e,"length");r.configurable&&u(e,"length",{value:1+f(0,t.length-(arguments.length-1))})}return e};var l=function(){return c(o,i,arguments)};u?u(t.exports,"apply",{value:l}):t.exports.apply=l},function(t,e,r){var o="function"==typeof Map&&Map.prototype,n=Object.getOwnPropertyDescriptor&&o?Object.getOwnPropertyDescriptor(Map.prototype,"size"):null,i=o&&n&&"function"==typeof n.get?n.get:null,a=o&&Map.prototype.forEach,c="function"==typeof Set&&Set.prototype,p=Object.getOwnPropertyDescriptor&&c?Object.getOwnPropertyDescriptor(Set.prototype,"size"):null,u=c&&p&&"function"==typeof p.get?p.get:null,f=c&&Set.prototype.forEach,l="function"==typeof WeakMap&&WeakMap.prototype?WeakMap.prototype.has:null,y="function"==typeof WeakSet&&WeakSet.prototype?WeakSet.prototype.has:null,s="function"==typeof WeakRef&&WeakRef.prototype?WeakRef.prototype.deref:null,d=Boolean.prototype.valueOf,b=Object.prototype.toString,g=Function.prototype.toString,m=String.prototype.match,h="function"==typeof BigInt?BigInt.prototype.valueOf:null,v=Object.getOwnPropertySymbols,S="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?Symbol.prototype.toString:null,j="function"==typeof Symbol&&"object"==typeof Symbol.iterator,O=Object.prototype.propertyIsEnumerable,A=("function"==typeof Reflect?Reflect.getPrototypeOf:Object.getPrototypeOf)||([].__proto__===Array.prototype?function(t){return t.__proto__}:null),w=r(18).custom,P=w&&F(w)?w:null,x="function"==typeof Symbol&&void 0!==Symbol.toStringTag?Symbol.toStringTag:null;function E(t,e,r){var o="double"===(r.quoteStyle||e)?'"':"'";return o+t+o}function k(t){return String(t).replace(/"/g,"&quot;")}function I(t){return!("[object Array]"!==M(t)||x&&"object"==typeof t&&x in t)}function F(t){if(j)return t&&"object"==typeof t&&t instanceof Symbol;if("symbol"==typeof t)return!0;if(!t||"object"!=typeof t||!S)return!1;try{return S.call(t),!0}catch(t){}return!1}t.exports=function t(e,r,o,n){var c=r||{};if(N(c,"quoteStyle")&&"single"!==c.quoteStyle&&"double"!==c.quoteStyle)throw new TypeError('option "quoteStyle" must be "single" or "double"');if(N(c,"maxStringLength")&&("number"==typeof c.maxStringLength?c.maxStringLength<0&&c.maxStringLength!==1/0:null!==c.maxStringLength))throw new TypeError('option "maxStringLength", if provided, must be a positive integer, Infinity, or `null`');var p=!N(c,"customInspect")||c.customInspect;if("boolean"!=typeof p&&"symbol"!==p)throw new TypeError("option \"customInspect\", if provided, must be `true`, `false`, or `'symbol'`");if(N(c,"indent")&&null!==c.indent&&"\t"!==c.indent&&!(parseInt(c.indent,10)===c.indent&&c.indent>0))throw new TypeError('options "indent" must be "\\t", an integer > 0, or `null`');if(void 0===e)return"undefined";if(null===e)return"null";if("boolean"==typeof e)return e?"true":"false";if("string"==typeof e)return function t(e,r){if(e.length>r.maxStringLength){var o=e.length-r.maxStringLength,n="... "+o+" more character"+(o>1?"s":"");return t(e.slice(0,r.maxStringLength),r)+n}return E(e.replace(/(['\\])/g,"\\$1").replace(/[\x00-\x1f]/g,D),"single",r)}(e,c);if("number"==typeof e)return 0===e?1/0/e>0?"0":"-0":String(e);if("bigint"==typeof e)return String(e)+"n";var b=void 0===c.depth?5:c.depth;if(void 0===o&&(o=0),o>=b&&b>0&&"object"==typeof e)return I(e)?"[Array]":"[Object]";var v=function(t,e){var r;if("\t"===t.indent)r="\t";else{if(!("number"==typeof t.indent&&t.indent>0))return null;r=Array(t.indent+1).join(" ")}return{base:r,prev:Array(e+1).join(r)}}(c,o);if(void 0===n)n=[];else if(_(n,e)>=0)return"[Circular]";function O(e,r,i){if(r&&(n=n.slice()).push(r),i){var a={depth:c.depth};return N(c,"quoteStyle")&&(a.quoteStyle=c.quoteStyle),t(e,a,o+1,n)}return t(e,c,o+1,n)}if("function"==typeof e){var w=function(t){if(t.name)return t.name;var e=m.call(g.call(t),/^function\s*([\w$]+)/);if(e)return e[1];return null}(e),R=W(e,O);return"[Function"+(w?": "+w:" (anonymous)")+"]"+(R.length>0?" { "+R.join(", ")+" }":"")}if(F(e)){var L=j?String(e).replace(/^(Symbol\(.*\))_[^)]*$/,"$1"):S.call(e);return"object"!=typeof e||j?L:U(L)}if(function(t){if(!t||"object"!=typeof t)return!1;if("undefined"!=typeof HTMLElement&&t instanceof HTMLElement)return!0;return"string"==typeof t.nodeName&&"function"==typeof t.getAttribute}(e)){for(var G="<"+String(e.nodeName).toLowerCase(),V=e.attributes||[],H=0;H<V.length;H++)G+=" "+V[H].name+"="+E(k(V[H].value),"double",c);return G+=">",e.childNodes&&e.childNodes.length&&(G+="..."),G+="</"+String(e.nodeName).toLowerCase()+">"}if(I(e)){if(0===e.length)return"[]";var q=W(e,O);return v&&!function(t){for(var e=0;e<t.length;e++)if(_(t[e],"\n")>=0)return!1;return!0}(q)?"["+T(q,v)+"]":"[ "+q.join(", ")+" ]"}if(function(t){return!("[object Error]"!==M(t)||x&&"object"==typeof t&&x in t)}(e)){var z=W(e,O);return 0===z.length?"["+String(e)+"]":"{ ["+String(e)+"] "+z.join(", ")+" }"}if("object"==typeof e&&p){if(P&&"function"==typeof e[P])return e[P]();if("symbol"!==p&&"function"==typeof e.inspect)return e.inspect()}if(function(t){if(!i||!t||"object"!=typeof t)return!1;try{i.call(t);try{u.call(t)}catch(t){return!0}return t instanceof Map}catch(t){}return!1}(e)){var $=[];return a.call(e,(function(t,r){$.push(O(r,e,!0)+" => "+O(t,e))})),B("Map",i.call(e),$,v)}if(function(t){if(!u||!t||"object"!=typeof t)return!1;try{u.call(t);try{i.call(t)}catch(t){return!0}return t instanceof Set}catch(t){}return!1}(e)){var Q=[];return f.call(e,(function(t){Q.push(O(t,e))})),B("Set",u.call(e),Q,v)}if(function(t){if(!l||!t||"object"!=typeof t)return!1;try{l.call(t,l);try{y.call(t,y)}catch(t){return!0}return t instanceof WeakMap}catch(t){}return!1}(e))return C("WeakMap");if(function(t){if(!y||!t||"object"!=typeof t)return!1;try{y.call(t,y);try{l.call(t,l)}catch(t){return!0}return t instanceof WeakSet}catch(t){}return!1}(e))return C("WeakSet");if(function(t){if(!s||!t||"object"!=typeof t)return!1;try{return s.call(t),!0}catch(t){}return!1}(e))return C("WeakRef");if(function(t){return!("[object Number]"!==M(t)||x&&"object"==typeof t&&x in t)}(e))return U(O(Number(e)));if(function(t){if(!t||"object"!=typeof t||!h)return!1;try{return h.call(t),!0}catch(t){}return!1}(e))return U(O(h.call(e)));if(function(t){return!("[object Boolean]"!==M(t)||x&&"object"==typeof t&&x in t)}(e))return U(d.call(e));if(function(t){return!("[object String]"!==M(t)||x&&"object"==typeof t&&x in t)}(e))return U(O(String(e)));if(!function(t){return!("[object Date]"!==M(t)||x&&"object"==typeof t&&x in t)}(e)&&!function(t){return!("[object RegExp]"!==M(t)||x&&"object"==typeof t&&x in t)}(e)){var J=W(e,O),K=A?A(e)===Object.prototype:e instanceof Object||e.constructor===Object,X=e instanceof Object?"":"null prototype",Y=!K&&x&&Object(e)===e&&x in e?M(e).slice(8,-1):X?"Object":"",Z=(K||"function"!=typeof e.constructor?"":e.constructor.name?e.constructor.name+" ":"")+(Y||X?"["+[].concat(Y||[],X||[]).join(": ")+"] ":"");return 0===J.length?Z+"{}":v?Z+"{"+T(J,v)+"}":Z+"{ "+J.join(", ")+" }"}return String(e)};var R=Object.prototype.hasOwnProperty||function(t){return t in this};function N(t,e){return R.call(t,e)}function M(t){return b.call(t)}function _(t,e){if(t.indexOf)return t.indexOf(e);for(var r=0,o=t.length;r<o;r++)if(t[r]===e)return r;return-1}function D(t){var e=t.charCodeAt(0),r={8:"b",9:"t",10:"n",12:"f",13:"r"}[e];return r?"\\"+r:"\\x"+(e<16?"0":"")+e.toString(16).toUpperCase()}function U(t){return"Object("+t+")"}function C(t){return t+" { ? }"}function B(t,e,r,o){return t+" ("+e+") {"+(o?T(r,o):r.join(", "))+"}"}function T(t,e){if(0===t.length)return"";var r="\n"+e.prev+e.base;return r+t.join(","+r)+"\n"+e.prev}function W(t,e){var r=I(t),o=[];if(r){o.length=t.length;for(var n=0;n<t.length;n++)o[n]=N(t,n)?e(t[n],t):""}var i,a="function"==typeof v?v(t):[];if(j){i={};for(var c=0;c<a.length;c++)i["$"+a[c]]=a[c]}for(var p in t)N(t,p)&&(r&&String(Number(p))===p&&p<t.length||j&&i["$"+p]instanceof Symbol||(/[^\w$]/.test(p)?o.push(e(p,t)+": "+e(t[p],t)):o.push(p+": "+e(t[p],t))));if("function"==typeof v)for(var u=0;u<a.length;u++)O.call(t,a[u])&&o.push("["+e(a[u])+"]: "+e(t[a[u]],t));return o}},function(t,e){},function(t,e,r){"use strict";var o=r(4),n=Object.prototype.hasOwnProperty,i=Array.isArray,a={allowDots:!1,allowPrototypes:!1,allowSparse:!1,arrayLimit:20,charset:"utf-8",charsetSentinel:!1,comma:!1,decoder:o.decode,delimiter:"&",depth:5,ignoreQueryPrefix:!1,interpretNumericEntities:!1,parameterLimit:1e3,parseArrays:!0,plainObjects:!1,strictNullHandling:!1},c=function(t){return t.replace(/&#(\d+);/g,(function(t,e){return String.fromCharCode(parseInt(e,10))}))},p=function(t,e){return t&&"string"==typeof t&&e.comma&&t.indexOf(",")>-1?t.split(","):t},u=function(t,e,r,o){if(t){var i=r.allowDots?t.replace(/\.([^.[]+)/g,"[$1]"):t,a=/(\[[^[\]]*])/g,c=r.depth>0&&/(\[[^[\]]*])/.exec(i),u=c?i.slice(0,c.index):i,f=[];if(u){if(!r.plainObjects&&n.call(Object.prototype,u)&&!r.allowPrototypes)return;f.push(u)}for(var l=0;r.depth>0&&null!==(c=a.exec(i))&&l<r.depth;){if(l+=1,!r.plainObjects&&n.call(Object.prototype,c[1].slice(1,-1))&&!r.allowPrototypes)return;f.push(c[1])}return c&&f.push("["+i.slice(c.index)+"]"),function(t,e,r,o){for(var n=o?e:p(e,r),i=t.length-1;i>=0;--i){var a,c=t[i];if("[]"===c&&r.parseArrays)a=[].concat(n);else{a=r.plainObjects?Object.create(null):{};var u="["===c.charAt(0)&&"]"===c.charAt(c.length-1)?c.slice(1,-1):c,f=parseInt(u,10);r.parseArrays||""!==u?!isNaN(f)&&c!==u&&String(f)===u&&f>=0&&r.parseArrays&&f<=r.arrayLimit?(a=[])[f]=n:a[u]=n:a={0:n}}n=a}return n}(f,e,r,o)}};t.exports=function(t,e){var r=function(t){if(!t)return a;if(null!==t.decoder&&void 0!==t.decoder&&"function"!=typeof t.decoder)throw new TypeError("Decoder has to be a function.");if(void 0!==t.charset&&"utf-8"!==t.charset&&"iso-8859-1"!==t.charset)throw new TypeError("The charset option must be either utf-8, iso-8859-1, or undefined");var e=void 0===t.charset?a.charset:t.charset;return{allowDots:void 0===t.allowDots?a.allowDots:!!t.allowDots,allowPrototypes:"boolean"==typeof t.allowPrototypes?t.allowPrototypes:a.allowPrototypes,allowSparse:"boolean"==typeof t.allowSparse?t.allowSparse:a.allowSparse,arrayLimit:"number"==typeof t.arrayLimit?t.arrayLimit:a.arrayLimit,charset:e,charsetSentinel:"boolean"==typeof t.charsetSentinel?t.charsetSentinel:a.charsetSentinel,comma:"boolean"==typeof t.comma?t.comma:a.comma,decoder:"function"==typeof t.decoder?t.decoder:a.decoder,delimiter:"string"==typeof t.delimiter||o.isRegExp(t.delimiter)?t.delimiter:a.delimiter,depth:"number"==typeof t.depth||!1===t.depth?+t.depth:a.depth,ignoreQueryPrefix:!0===t.ignoreQueryPrefix,interpretNumericEntities:"boolean"==typeof t.interpretNumericEntities?t.interpretNumericEntities:a.interpretNumericEntities,parameterLimit:"number"==typeof t.parameterLimit?t.parameterLimit:a.parameterLimit,parseArrays:!1!==t.parseArrays,plainObjects:"boolean"==typeof t.plainObjects?t.plainObjects:a.plainObjects,strictNullHandling:"boolean"==typeof t.strictNullHandling?t.strictNullHandling:a.strictNullHandling}}(e);if(""===t||null==t)return r.plainObjects?Object.create(null):{};for(var f="string"==typeof t?function(t,e){var r,u={},f=e.ignoreQueryPrefix?t.replace(/^\?/,""):t,l=e.parameterLimit===1/0?void 0:e.parameterLimit,y=f.split(e.delimiter,l),s=-1,d=e.charset;if(e.charsetSentinel)for(r=0;r<y.length;++r)0===y[r].indexOf("utf8=")&&("utf8=%E2%9C%93"===y[r]?d="utf-8":"utf8=%26%2310003%3B"===y[r]&&(d="iso-8859-1"),s=r,r=y.length);for(r=0;r<y.length;++r)if(r!==s){var b,g,m=y[r],h=m.indexOf("]="),v=-1===h?m.indexOf("="):h+1;-1===v?(b=e.decoder(m,a.decoder,d,"key"),g=e.strictNullHandling?null:""):(b=e.decoder(m.slice(0,v),a.decoder,d,"key"),g=o.maybeMap(p(m.slice(v+1),e),(function(t){return e.decoder(t,a.decoder,d,"value")}))),g&&e.interpretNumericEntities&&"iso-8859-1"===d&&(g=c(g)),m.indexOf("[]=")>-1&&(g=i(g)?[g]:g),n.call(u,b)?u[b]=o.combine(u[b],g):u[b]=g}return u}(t,r):t,l=r.plainObjects?Object.create(null):{},y=Object.keys(f),s=0;s<y.length;++s){var d=y[s],b=u(d,f[d],r,"string"==typeof t);l=o.merge(l,b,r)}return!0===r.allowSparse?l:o.compact(l)}},,,function(t,e,r){function o(t,e){for(var r=0;r<e.length;r++){var o=e[r];o.enumerable=o.enumerable||!1,o.configurable=!0,"value"in o&&(o.writable=!0),Object.defineProperty(t,o.key,o)}}var n=r(5),i=r(8),a="",c={mode:"development"};function p(){var t=wx.getStorageSync("_ma_uid");return t||(t=n(),console.debug("uid:",t),wx.setStorageSync("_ma_uid",t)),t}function u(){var t=n();return console.debug("sid:",t),t}var f=function(){function t(){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this._fp={sid:u(),uid:p()},this.isInit=!1}var e,r,n;return e=t,n=[{key:"getInstance",value:function(){return this.instance||(this.instance=new t),this.instance}}],(r=[{key:"init",value:function(t,e,r){this._fp.pid=t,this._fp.cpid=e,this._fp.gid=r.gid,this._fp=Object.assign({},this._fp),console.log(this._fp,"--init"),this.config=Object.assign({},c,r),a="production"==this.config.mode?"https://analytics.mayi888.com/ma.gif?":"https://analytics.mayi888.cn/ma.gif?",this.isInit=!0,this._send()}},{key:"_send",value:function(t){console.log(t);var e=Object.assign({},this._fp,t);wx.request({url:a+i.stringify(e),method:"GET",success:function(t){console.log("用户行为上报成功",t)},fail:function(t){console.log("用户行为上报失败",t)}})}}])&&o(e.prototype,r),n&&o(e,n),t}().getInstance();t.exports=f}])}));
//# sourceMappingURL=mayi.mpBehavior.js.map
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment