From 538d243657e10d7a5ed51e514395cbc8c41e6b46 Mon Sep 17 00:00:00 2001 From: sx <2427911852@qq.com> Date: Sat, 4 Jan 2025 20:33:45 +0800 Subject: [PATCH] =?UTF-8?q?=E5=90=88=E5=B9=B6=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- jiuyi2/App.vue | 14 +- jiuyi2/api/durian.js | 24 + jiuyi2/api/index.js | 11 + jiuyi2/api/intergral.js | 2 +- jiuyi2/api/mine.js | 72 +- jiuyi2/components/mine/payPwd.vue | 84 + jiuyi2/components/mine/vcode-input.vue | 145 ++ jiuyi2/pages.json | 32 +- jiuyi2/pages/index/durian.vue | 169 +- jiuyi2/pages/index/orchard.vue | 28 +- jiuyi2/pages/mine/setting/secondPwd.vue | 191 ++ jiuyi2/pages/mine/setting/setting.vue | 2 +- jiuyi2/readme.md | 1 - .../cc-defineKeyboard/changelog.md | 12 + .../cc-defineKeyboard/cc-defineKeyboard.scss | 43 + .../cc-defineKeyboard/cc-defineKeyboard.vue | 115 ++ .../cc-defineKeyboard/package.json | 88 + .../uni_modules/cc-defineKeyboard/readme.md | 261 +++ .../unpackage/dist/dev/.nvue/shareFirend.js | 126 +- .../dist/dev/app-plus/app-config-service.js | 2 +- .../dist/dev/app-plus/app-service.js | 1697 ++++++++++------- .../dist/dev/app-plus/pages/index/durian.css | 6 + .../dist/dev/app-plus/pages/index/index.js | 126 +- .../dev/app-plus/pages/index/videoDetail.js | 126 +- .../dist/dev/app-plus/pages/login/lock.css | 39 + .../app-plus/pages/mine/setting/secondPwd.css | 0 26 files changed, 2600 insertions(+), 816 deletions(-) create mode 100644 jiuyi2/components/mine/payPwd.vue create mode 100644 jiuyi2/components/mine/vcode-input.vue create mode 100644 jiuyi2/pages/mine/setting/secondPwd.vue create mode 100644 jiuyi2/uni_modules/cc-defineKeyboard/changelog.md create mode 100644 jiuyi2/uni_modules/cc-defineKeyboard/components/cc-defineKeyboard/cc-defineKeyboard.scss create mode 100644 jiuyi2/uni_modules/cc-defineKeyboard/components/cc-defineKeyboard/cc-defineKeyboard.vue create mode 100644 jiuyi2/uni_modules/cc-defineKeyboard/package.json create mode 100644 jiuyi2/uni_modules/cc-defineKeyboard/readme.md create mode 100644 jiuyi2/unpackage/dist/dev/app-plus/pages/login/lock.css create mode 100644 jiuyi2/unpackage/dist/dev/app-plus/pages/mine/setting/secondPwd.css diff --git a/jiuyi2/App.vue b/jiuyi2/App.vue index 35201d2d..e95bd8ef 100644 --- a/jiuyi2/App.vue +++ b/jiuyi2/App.vue @@ -1,18 +1,23 @@ diff --git a/jiuyi2/api/durian.js b/jiuyi2/api/durian.js index f07b34b5..30e3dfa9 100644 --- a/jiuyi2/api/durian.js +++ b/jiuyi2/api/durian.js @@ -37,5 +37,29 @@ export const durian = { load: true, }) }, + /** + * 校验姓名 + * @param {Object} param + */ + nameComparison(param) { + return util.request({ + url: `/coreplay/app/durian/nameComparison`, + method: 'GET', + query: param.query, + load: true, + }) + }, + /** + * 交易榴莲果 + * @param {Object} param + */ + consume(param) { + return util.request({ + url: `/coreplay/app/durian/consume`, + method: 'POST', + data: param.data, + load: true, + }) + }, } export default durian \ No newline at end of file diff --git a/jiuyi2/api/index.js b/jiuyi2/api/index.js index b8f75b57..cc703d11 100644 --- a/jiuyi2/api/index.js +++ b/jiuyi2/api/index.js @@ -51,6 +51,17 @@ const api = { method: 'POST', }) }, + + /** + * 获取各种配置 + * @param {Object} param + */ + getConfig() { + return util.request({ + url: '/coreplay/configinfo/list', + method: 'GET', + }) + }, } export default api \ No newline at end of file diff --git a/jiuyi2/api/intergral.js b/jiuyi2/api/intergral.js index 21ae417f..9401a231 100644 --- a/jiuyi2/api/intergral.js +++ b/jiuyi2/api/intergral.js @@ -96,7 +96,7 @@ const intergral = { buyScroll(param) { return util.request({ url: `/coreplay/app/scrollinfo/buyScroll`, - method: 'G', + method: 'POST', data: param.data, }) }, diff --git a/jiuyi2/api/mine.js b/jiuyi2/api/mine.js index 32c38e0f..fb058734 100644 --- a/jiuyi2/api/mine.js +++ b/jiuyi2/api/mine.js @@ -49,30 +49,6 @@ const mine = { }) }, - /** - * 支付 - * @param {Object} param - */ - pay(param) { - return util.request({ - url: '/home/pay', - query: param.query, - method: 'POST', - }) - }, - - /** - * 获取余额记录 - * @param {Object} param - */ - getBalanceLog(param) { - return util.request({ - url: '/home/getBalanceLog', - query: param.query, - method: 'POST', - }) - }, - /** * 查询我的钱包接口 * @param {Object} param @@ -95,6 +71,54 @@ const mine = { method: 'GET', }) }, + + /** + * 获取待释放列表 + * @param {Object} param + */ + releasedList(param) { + return util.request({ + url: '/user/released/list', + query: param.query, + method: 'GET', + }) + }, + + /** + * 根据用户账号查询用户id + * @param {Object} param + */ + getUserDataByAccount(param) { + return util.request({ + url: '/coreplay/app/durian/getUserDataByAccount', + query: param.query, + method: 'GET', + }) + }, + + /** + * 设置二级密码 + * @param {Object} param + */ + setSecondLevelCipher(param) { + return util.request({ + url: '/user/user/setSecondLevelCipher', + data: param.data, + method: 'POST', + }) + }, + + /** + * 验证二级密码 + * @param {Object} param + */ + checkSecondLevelCipher(param) { + return util.request({ + url: '/user/user/checkSecondLevelCipher', + data: param.data, + method: 'POST', + }) + }, } export default mine \ No newline at end of file diff --git a/jiuyi2/components/mine/payPwd.vue b/jiuyi2/components/mine/payPwd.vue new file mode 100644 index 00000000..b3d48ca3 --- /dev/null +++ b/jiuyi2/components/mine/payPwd.vue @@ -0,0 +1,84 @@ + + + + + \ No newline at end of file diff --git a/jiuyi2/components/mine/vcode-input.vue b/jiuyi2/components/mine/vcode-input.vue new file mode 100644 index 00000000..d9fe99e1 --- /dev/null +++ b/jiuyi2/components/mine/vcode-input.vue @@ -0,0 +1,145 @@ + + + + + diff --git a/jiuyi2/pages.json b/jiuyi2/pages.json index 8eb84f8d..b498e3ff 100644 --- a/jiuyi2/pages.json +++ b/jiuyi2/pages.json @@ -678,26 +678,38 @@ } }, { - "path" : "pages/mine/setting/feedback", - "style" : - { - "navigationBarTitleText" : "意见反馈", + "path": "pages/mine/setting/feedback", + "style": { + "navigationBarTitleText": "意见反馈", "navigationBarBackgroundColor": "#fff" } }, { - "path" : "pages/shop/search", - "style" : - { - "navigationBarTitleText" : "搜索", + "path": "pages/shop/search", + "style": { + "navigationBarTitleText": "搜索", "navigationStyle": "custom" } }, { - "path" : "pages/index/hashOrder", + "path": "pages/index/hashOrder", + "style": { + "navigationBarTitleText": "哈希订单", + "navigationBarBackgroundColor": "#fff" + } + }, + { + "path": "pages/login/lock", + "style": { + "navigationBarTitleText": "输入密码以解锁", + "navigationBarBackgroundColor": "#fff" + } + }, + { + "path" : "pages/mine/setting/secondPwd", "style" : { - "navigationBarTitleText" : "哈希订单", + "navigationBarTitleText" : "二级密码", "navigationBarBackgroundColor": "#fff" } } diff --git a/jiuyi2/pages/index/durian.vue b/jiuyi2/pages/index/durian.vue index 666cbc4c..ee726d25 100644 --- a/jiuyi2/pages/index/durian.vue +++ b/jiuyi2/pages/index/durian.vue @@ -28,6 +28,8 @@ import task from '@/components/index/task' // 接口 import api from '@/api/index.js' + // 二级支付 + import payPwd from '@/components/mine/payPwd.vue' const { proxy } = getCurrentInstance() @@ -35,10 +37,18 @@ const store = useStore() // 互转表单 const form = reactive({ + // 交易对方的用户ID + targetUserId: '', // 账户 account: '', // 榴莲果数量 fruitAmount: '', + // 姓名首字 + first: '', + // 姓名 + name: '', + // + secondPassword: '', }) //读秒记录 const viewData = ref({ @@ -61,6 +71,7 @@ onReady(() => { // proxy.$refs.dealRef.open() + // proxy.$refs.payPwdRef.open() }) onLoad(() => { @@ -68,21 +79,111 @@ util.getPurse() }) - // 根据账号查询用户id - function accToId() { - // api.durian. - } - // 榴莲果交易 - function transfer() { - durianlApi.transfer({ + function handleSubmit() { + // 验证必填项 + if (!form.account) { + util.alert('请输入账号') + return + } + if (!form.fruitAmount) { + util.alert('请输入榴莲果转账数量') + return + } + + // 根据账号查询用户id + api.mine.getUserDataByAccount({ query: { account: form.account, - sellNum: form.sellNum + }, + }).then(rs => { + if (rs.code === 200) { + const result = rs.data + // 交易对方的id + form.targetUserId = result.userName + form.name = result.userRealName.slice(1, result.userRealName.length) + // 打开姓名校验 + proxy.$refs.payee.open() + return + } + util.alert({ + content: rs.msg, + showCancel: false, + }) + }) + } + + // 验证真实姓名 + function handlePayeeConfirm() { + // 验证必填项 + if (!form.first) { + util.alert('请输入对方姓名首字母') + return + } + + api.durian.nameComparison({ + query: { + // 对方账号 + account: form.account, + // 对方姓名 + name: `${form.first}${form.name}`, + } + }).then(rs => { + if (rs.code == 200) { + if (rs.data) proxy.$refs.payPwdRef.open() + return + } + util.alert({ + content: rs.msg, + showCancel: false, + }) + }) + } + + /** + * 交易 + * @param {Object} ev 二级密码 + */ + function handlePwdConfirm(ev) { + // 验证必填项 + if (!form.first) { + util.alert('请输入对方姓名首字母') + return + } + if (!form.first) { + util.alert('请输入对方姓名首字母') + return + } + if (!form.account) { + util.alert('请输入账号') + return + } + if (!form.fruitAmount) { + util.alert('请输入榴莲果转账数量') + return + } + + api.durian.consume({ + data: { + // + properties: { + // 交易对方的用户id + targetUserId: form.targetUserId, + // 交易类型 + transactionType: 10, + // 榴莲果交易数量 + fruitAmount: form.fruitAmount, + }, + // 对方姓名 + name: `${form.first}${form.name}`, + // 对方账号 + account: form.account, + // 二级密码 + secondPassword: ev, } }).then(rs => { if (rs.code === 200) { - util.alert('操作成功') + // util.getPurse() return } @@ -187,21 +288,45 @@ - - - - + - + + + + + 销毁15% - (最低x起转) - 转移 + 转移 + + + + + 收款方确认 + + 请补全对方姓名首字,以防转错 + + + + * + {{form.name}} + + + + 取消 + 验证 + + + + + + + \ No newline at end of file diff --git a/jiuyi2/pages/index/orchard.vue b/jiuyi2/pages/index/orchard.vue index 12614233..193b75db 100644 --- a/jiuyi2/pages/index/orchard.vue +++ b/jiuyi2/pages/index/orchard.vue @@ -40,12 +40,16 @@ let result = store.state.userinfo return result }) + // 我的钱包 + const purse = computed(() => { + return store.state.purse || {} + }) onLoad(() => { // 获取可以兑换的榴莲果树 buyDurianList() - // 获取榴莲果规则文章 - // getArticle() + // 获取钱包 + util.getPurse() }) onReady(() => { @@ -54,10 +58,15 @@ // 获取可以兑换的榴莲果树 function buyDurianList() { - durianlApi.durianList({ - - }).then(rs => { - viewData.value = rs.data + durianlApi.durianList({}).then(rs => { + if (rs.code == 200) { + viewData.value = rs.data + return + } + util.alert({ + content: rs.msg, + showCancel: false, + }) }) } @@ -91,7 +100,8 @@ if (rs.code === 200) { util.alert('置换成功') proxy.$refs.typeRef.close() - util.getUserinfo() + // 获取钱包 + util.getPurse() return } @@ -145,12 +155,12 @@ - ×{{userinfo.seed}} + ×{{purse.seed}} - ×{{userinfo.fruit}} + ×{{purse.fruit}} diff --git a/jiuyi2/pages/mine/setting/secondPwd.vue b/jiuyi2/pages/mine/setting/secondPwd.vue new file mode 100644 index 00000000..da5e3095 --- /dev/null +++ b/jiuyi2/pages/mine/setting/secondPwd.vue @@ -0,0 +1,191 @@ + + + + + \ No newline at end of file diff --git a/jiuyi2/pages/mine/setting/setting.vue b/jiuyi2/pages/mine/setting/setting.vue index 2eee082c..b06ae3a3 100644 --- a/jiuyi2/pages/mine/setting/setting.vue +++ b/jiuyi2/pages/mine/setting/setting.vue @@ -155,7 +155,7 @@ - + 二级密码 diff --git a/jiuyi2/readme.md b/jiuyi2/readme.md index 1586fa7c..d2ed3e2a 100644 --- a/jiuyi2/readme.md +++ b/jiuyi2/readme.md @@ -251,7 +251,6 @@ call_type 通话类型 2为视频,1是音频 我的团队 点击上级上上级昵称 跳转个人视频主页(关注后可发私信) - 充值 支付宝 微信 diff --git a/jiuyi2/uni_modules/cc-defineKeyboard/changelog.md b/jiuyi2/uni_modules/cc-defineKeyboard/changelog.md new file mode 100644 index 00000000..5257bfe6 --- /dev/null +++ b/jiuyi2/uni_modules/cc-defineKeyboard/changelog.md @@ -0,0 +1,12 @@ +## 2.3(2024-11-23) +组件优化 +## 2.2(2024-10-02) +组件优化 +## 2.0(2023-08-03) +修复小程序bug +## 1.0.2(2023-06-21) +组件优化 增加键盘高度 +## 1.0.1(2023-06-21) +组件优化 +## 1.0.0(2023-06-21) +组件初始化 diff --git a/jiuyi2/uni_modules/cc-defineKeyboard/components/cc-defineKeyboard/cc-defineKeyboard.scss b/jiuyi2/uni_modules/cc-defineKeyboard/components/cc-defineKeyboard/cc-defineKeyboard.scss new file mode 100644 index 00000000..694fece2 --- /dev/null +++ b/jiuyi2/uni_modules/cc-defineKeyboard/components/cc-defineKeyboard/cc-defineKeyboard.scss @@ -0,0 +1,43 @@ +.page-total{ + position: fixed; + left: 0; + bottom: 0; + width: 100%; + background-color: #f6f6f6; +} + +.key-list{ + display: flex; + flex-wrap: wrap; + align-items: center; + padding: 1% 3%; + height: 90%; + margin-top: 20rpx; + .list{ + display: flex; + align-items: center; + justify-content: center; + width: 32%; + height: 92rpx; + background-color: #FFFFFF; + border-radius: 10rpx; + box-shadow: 0 0 10rpx rgba(0,0,0,0.1); + margin-right: 1.7%; + margin-bottom: 16rpx; + text{ + font-size: 38rpx; + font-weight: bold; + color: #222222; + } + } + .list:nth-child(3n){ + margin-right: 0; + } + .special{ + background-color: #f6f6f6; + box-shadow: none; + text{ + color: #959595; + } + } +} \ No newline at end of file diff --git a/jiuyi2/uni_modules/cc-defineKeyboard/components/cc-defineKeyboard/cc-defineKeyboard.vue b/jiuyi2/uni_modules/cc-defineKeyboard/components/cc-defineKeyboard/cc-defineKeyboard.vue new file mode 100644 index 00000000..ac190f6b --- /dev/null +++ b/jiuyi2/uni_modules/cc-defineKeyboard/components/cc-defineKeyboard/cc-defineKeyboard.vue @@ -0,0 +1,115 @@ + + + + + diff --git a/jiuyi2/uni_modules/cc-defineKeyboard/package.json b/jiuyi2/uni_modules/cc-defineKeyboard/package.json new file mode 100644 index 00000000..ea32f37f --- /dev/null +++ b/jiuyi2/uni_modules/cc-defineKeyboard/package.json @@ -0,0 +1,88 @@ +{ + "id": "cc-defineKeyboard", + "displayName": "自定义支付密码输入键盘Keyboard和支付设置输入框Input", + "version": "2.3", + "description": "自定义支付密码输入键盘Keyboard和支付设置输入框Input", + "keywords": [ + "支付密码", + "键盘", + "", + "支付密码输入键盘", + "Keyboard", + "", + "自定义键盘" +], + "repository": "", + "engines": { + "HBuilderX": "^3.7.0" + }, + "dcloudext": { + "type": "component-vue", + "sale": { + "regular": { + "price": "0.00" + }, + "sourcecode": { + "price": "0.00" + } + }, + "contact": { + "qq": "" + }, + "declaration": { + "ads": "无", + "data": "无", + "permissions": "无" + }, + "npmurl": "" + }, + "uni_modules": { + "dependencies": [], + "encrypt": [], + "platforms": { + "cloud": { + "tcb": "y", + "aliyun": "y", + "alipay": "n" + }, + "client": { + "Vue": { + "vue2": "y", + "vue3": "y" + }, + "App": { + "app-vue": "y", + "app-nvue": "y" + }, + "H5-mobile": { + "Safari": "y", + "Android Browser": "y", + "微信浏览器(Android)": "y", + "QQ浏览器(Android)": "y" + }, + "H5-pc": { + "Chrome": "y", + "IE": "y", + "Edge": "y", + "Firefox": "y", + "Safari": "y" + }, + "小程序": { + "微信": "y", + "阿里": "y", + "百度": "y", + "字节跳动": "y", + "QQ": "y", + "钉钉": "y", + "快手": "y", + "飞书": "y", + "京东": "y" + }, + "快应用": { + "华为": "y", + "联盟": "y" + } + } + } + } +} \ No newline at end of file diff --git a/jiuyi2/uni_modules/cc-defineKeyboard/readme.md b/jiuyi2/uni_modules/cc-defineKeyboard/readme.md new file mode 100644 index 00000000..38671928 --- /dev/null +++ b/jiuyi2/uni_modules/cc-defineKeyboard/readme.md @@ -0,0 +1,261 @@ +# cc-defineKeyboard + +##uniapp专属精品组件页面模板(由前端组件开发出品)精品组件页面模板 + +###●组件模板规划: +由前端组件开发出品的精品组件页面模板,将陆续发布,预计高达约几百种供您使用,是快速快发项目、创业的必备精品。 + +合集地址: uni-app模板合集地址:(https://ext.dcloud.net.cn/publisher?id=274945) 如查看全部页面模板,请前往上述uniapp插件市场合集地址; + +###●组件模板效果图: +可下载项目后预览,效果图见右侧图片; + +###●组件模板费用: +学习:免费下载,进行学习,无费用; + +使用/商用:本页面地址赞赏10元后,可终身商用; + +###●组件模板使用版权/商用: +本组件模板免费下载可供学习,如需使用及商用,请在本组件页面模板进行赞赏10元 + +(仅需10元获取精品页面模板代码-物有所值,1个组件页面市场价100元 ) + +赞赏10元后(当前项目产生赞赏订单可追溯)即可终身商用当前本地址下载的页面模版代码,不同下载地址需进行不同的赞赏。(不赞赏就进行商用使用者,面临侵权!保留追究知识产权法律责任!后果自负!) + +### 我的技术公众号(私信可加前端技术交流群) + +群内气氛挺不错的,应该或许可能大概,算是为数不多的,专搞技术的前端群,偶尔聊天摸鱼 + +![图片](https://i.postimg.cc/RZ0sjnYP/front-End-Component.jpg) + + + +#### 使用方法 +```使用方法 + + + +/** * 唤起键盘 */ +onPayUp() { + this.$refs.CodeKeyboard.show(); +}, + +/*** 支付键盘回调* @param {Object} val */ + +KeyInfo(val) { + + if (val.index >= 6) { + return; + } + // 判断是否输入的是删除键 + if (val.keyCode === 8) { + // 删除最后一位 + this.passwordArr.splice(val.index + 1, 1) + } + // 判断是否输入的是. + else if (val.keyCode == 190) { + // 输入.无效 + } else { + this.passwordArr.push(val.key); + } + + uni.showModal({ + title: '温馨提示', + content: '输入密码是 = ' + JSON.stringify(this.passwordArr) + }) +} + + +``` + +#### HTML代码实现部分 +```html + + + + + + + + +``` diff --git a/jiuyi2/unpackage/dist/dev/.nvue/shareFirend.js b/jiuyi2/unpackage/dist/dev/.nvue/shareFirend.js index ebb6099c..2e91f876 100644 --- a/jiuyi2/unpackage/dist/dev/.nvue/shareFirend.js +++ b/jiuyi2/unpackage/dist/dev/.nvue/shareFirend.js @@ -1706,28 +1706,6 @@ const mine = { load: true }); }, - /** - * 支付 - * @param {Object} param - */ - pay(param) { - return util$1.request({ - url: "/home/pay", - query: param.query, - method: "POST" - }); - }, - /** - * 获取余额记录 - * @param {Object} param - */ - getBalanceLog(param) { - return util$1.request({ - url: "/home/getBalanceLog", - query: param.query, - method: "POST" - }); - }, /** * 查询我的钱包接口 * @param {Object} param @@ -1748,6 +1726,39 @@ const mine = { query: param.query, method: "GET" }); + }, + /** + * 获取待释放列表 + * @param {Object} param + */ + releasedList(param) { + return util$1.request({ + url: "/user/released/list", + query: param.query, + method: "GET" + }); + }, + /** + * 根据用户账号查询用户id + * @param {Object} param + */ + getUserDataByAccount(param) { + return util$1.request({ + url: "/coreplay/app/durian/getUserDataByAccount", + query: param.query, + method: "GET" + }); + }, + /** + * 设置二级密码 + * @param {Object} param + */ + setSecondLevelCipher(param) { + return util$1.request({ + url: "/user/user/setSecondLevelCipher", + body: param.body, + method: "POST" + }); } }; const video = { @@ -2431,32 +2442,69 @@ const intergral = { buyScroll(param) { return util$1.request({ url: `/coreplay/app/scrollinfo/buyScroll`, - method: "G", + method: "POST", data: param.data }); - }, + } +}; +const durian = { /** - * 验证码生成 + * 果树列表 * @param {Object} param */ - myQrcode(param) { + durianList(param) { return util$1.request({ - url: `/user/team/getH5Link`, + url: `/coreplay/duriantreeinfo/tree-list`, method: "GET", - query: param.query, - responseType: "arraybuffer" + query: param.query }); }, /** - * 隐藏/公开 个人昵称 + * 我的榴莲果树 * @param {Object} param */ - nickname(param) { + buyDurianList(param) { return util$1.request({ - url: `/home/nickname`, - method: "post", + url: `/coreplay/duriantreeinfo/boughtListByUser`, + method: "GET", query: param.query }); + }, + /** + * 榴莲果置换 + * @param {Object} param + */ + exchange(param) { + return util$1.request({ + url: `/coreplay/duriantreeinfo/exchange`, + method: "POST", + data: param.data, + load: true + }); + }, + /** + * 校验姓名 + * @param {Object} param + */ + nameComparison(param) { + return util$1.request({ + url: `/coreplay/app/durian/nameComparison`, + method: "GET", + query: param.query, + load: true + }); + }, + /** + * 交易榴莲果 + * @param {Object} param + */ + consume(param) { + return util$1.request({ + url: `/coreplay/app/durian/consume`, + method: "POST", + data: param.data, + load: true + }); } }; const shop = { @@ -2507,6 +2555,8 @@ const api = { team, // 积分 intergral, + // 榴莲果 + durian, // 商城模块 shop, // 上传图片地址 @@ -2524,6 +2574,16 @@ const api = { query: param.query, method: "POST" }); + }, + /** + * 获取各种配置 + * @param {Object} param + */ + getConfig() { + return util$1.request({ + url: "/coreplay/configinfo/list", + method: "GET" + }); } }; const util = { diff --git a/jiuyi2/unpackage/dist/dev/app-plus/app-config-service.js b/jiuyi2/unpackage/dist/dev/app-plus/app-config-service.js index 76f3c32b..e24e03ef 100644 --- a/jiuyi2/unpackage/dist/dev/app-plus/app-config-service.js +++ b/jiuyi2/unpackage/dist/dev/app-plus/app-config-service.js @@ -2,7 +2,7 @@ ;(function(){ let u=void 0,isReady=false,onReadyCallbacks=[],isServiceReady=false,onServiceReadyCallbacks=[]; const __uniConfig = {"pages":[],"globalStyle":{"backgroundColor":"#F8F8F8","bounce":"none","navigationBar":{"backgroundColor":"#F8F8F8","titleText":"九亿","type":"default","titleColor":"#000000"},"isNVue":false},"nvue":{"compiler":"uni-app","styleCompiler":"uni-app","flex-direction":"column"},"renderer":"auto","appname":"九亿","splashscreen":{"alwaysShowBeforeRender":true,"autoclose":true},"compilerVersion":"4.36","entryPagePath":"pages/index/index","entryPageQuery":"","realEntryPagePath":"","networkTimeout":{"request":60000,"connectSocket":60000,"uploadFile":60000,"downloadFile":60000},"tabBar":{"position":"bottom","color":"#999","selectedColor":"#007aff","borderStyle":"black","blurEffect":"none","fontSize":"10px","iconWidth":"24px","spacing":"3px","height":"50px","list":[{"text":"视频","pagePath":"pages/index/index"},{"text":"商城","pagePath":"pages/shop/shop"},{"text":"消息","pagePath":"pages/news/news"},{"text":"个人中心","pagePath":"pages/mine/mine"},{"text":"我的","pagePath":"pages/mine/homepage"}],"selectedIndex":0,"shown":true},"locales":{},"darkmode":false,"themeConfig":{}}; - const __uniRoutes = [{"path":"pages/index/index","meta":{"isQuit":true,"isEntry":true,"isTabBar":true,"tabBarIndex":0,"disableScroll":true,"navigationBar":{"titleText":"视频","style":"custom","type":"default","titleColor":"#ffffff"},"isNVue":true}},{"path":"pages/login/open","meta":{"navigationBar":{"titleText":"开屏页","style":"custom","type":"default","titleColor":"#ffffff"},"isNVue":false}},{"path":"pages/login/loginPhone","meta":{"bounce":"none","navigationBar":{"titleText":"手机号登录","style":"custom","type":"default"},"isNVue":false}},{"path":"pages/shop/shop","meta":{"isQuit":true,"isTabBar":true,"tabBarIndex":1,"onReachBottomDistance":100,"enablePullDownRefresh":true,"navigationBar":{"backgroundColor":"#fff","titleText":"商城","type":"default"},"isNVue":false}},{"path":"pages/merchant/business-operator/index","meta":{"onReachBottomDistance":100,"navigationBar":{"titleText":"商家管理","style":"custom","type":"default"},"isNVue":false}},{"path":"pages/merchant/order/index","meta":{"onReachBottomDistance":100,"navigationBar":{"titleText":"商家订单","style":"custom","type":"default"},"isNVue":false}},{"path":"pages/merchant/commodity-release/index","meta":{"navigationBar":{"titleText":"发布商品","type":"default"},"isNVue":false}},{"path":"pages/merchant/specifications/index","meta":{"navigationBar":{"titleText":"规格","style":"custom","type":"default"},"isNVue":false}},{"path":"pages/shop/commodity/index","meta":{"navigationBar":{"titleText":"商品详情","style":"custom","type":"default","titleColor":"#ffffff"},"isNVue":false}},{"path":"pages/shop/continue-pay/index","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"继续付款","type":"default"},"isNVue":false}},{"path":"pages/shop/store/index","meta":{"navigationBar":{"titleText":"店铺","style":"custom","type":"default","titleColor":"#ffffff"},"isNVue":false}},{"path":"pages/shop/order/index","meta":{"onReachBottomDistance":100,"navigationBar":{"backgroundColor":"#fff","titleText":"订单","style":"custom","type":"default"},"isNVue":false}},{"path":"pages/news/news","meta":{"isQuit":true,"isTabBar":true,"tabBarIndex":2,"bounce":"none","navigationBar":{"titleText":"消息","style":"custom","type":"default"},"isNVue":false}},{"path":"pages/news/group-chat-list/index","meta":{"navigationBar":{"titleText":"群聊列表","type":"default"},"isNVue":false}},{"path":"pages/news/group-chat/index","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"创建群聊","type":"default"},"isNVue":false}},{"path":"pages/news/chat/chat","meta":{"navigationBar":{"titleText":"问答页","type":"default"},"isNVue":false}},{"path":"pages/news/red-envelope/index","meta":{"navigationBar":{"titleText":"红包详情","type":"default"},"isNVue":false}},{"path":"pages/mine/mine","meta":{"isQuit":true,"isTabBar":true,"tabBarIndex":3,"navigationBar":{"titleText":"我的","style":"custom","type":"default"},"isNVue":false}},{"path":"pages/mine/setting/setting","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"设置","type":"default"},"isNVue":false}},{"path":"pages/mine/userinfo","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"个人信息","type":"default"},"isNVue":false}},{"path":"pages/mine/switch-accounts/index","meta":{"navigationBar":{"titleText":"切换账号","style":"custom","type":"default"},"isNVue":false}},{"path":"pages/mine/setting/usePay","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"先用后付","type":"default"},"isNVue":false}},{"path":"pages/mine/realname","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"实名认证","type":"default"},"isNVue":false}},{"path":"pages/mine/delivery-address/index","meta":{"onReachBottomDistance":100,"enablePullDownRefresh":true,"navigationBar":{"backgroundColor":"#fff","titleText":"收货地址","type":"default"},"isNVue":false}},{"path":"pages/mine/homepage","meta":{"isQuit":true,"isTabBar":true,"tabBarIndex":4,"navigationBar":{"titleText":"个人主页","style":"custom","type":"default","titleColor":"#ffffff"},"isNVue":false}},{"path":"pages/release/video","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"发布视频","type":"default"},"isNVue":false}},{"path":"pages/index/wallet/wallet","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"我的钱包","type":"default"},"isNVue":false}},{"path":"pages/index/myTeam","meta":{"navigationBar":{"titleText":"我的团队","type":"default"},"isNVue":false}},{"path":"pages/index/search","meta":{"enablePullDownRefresh":true,"navigationBar":{"titleText":"搜索页","style":"custom","type":"default"},"isNVue":false}},{"path":"pages/index/videoHome","meta":{"navigationBar":{"titleText":"用户视频首页","style":"custom","type":"default"},"isNVue":false}},{"path":"pages/index/report","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"举报","type":"default"},"isNVue":false}},{"path":"pages/mine/collectsVideo","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"收藏夹视频","type":"default"},"isNVue":false}},{"path":"pages/index/promotion","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"选择推广视频","type":"default"},"isNVue":false}},{"path":"pages/index/myQrCode","meta":{"navigationBar":{"titleText":"我的分享","type":"default"},"isNVue":false}},{"path":"pages/index/deal","meta":{"navigationBar":{"titleText":"我的交易","style":"custom","type":"default"},"isNVue":false}},{"path":"pages/index/durian","meta":{"navigationBar":{"titleText":"榴莲首页","type":"default"},"isNVue":false}},{"path":"pages/index/durainActivation","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"已激活","type":"default"},"isNVue":false}},{"path":"pages/index/trade","meta":{"enablePullDownRefresh":true,"navigationBar":{"backgroundColor":"#fff","titleText":"交易市场","style":"custom","type":"default"},"isNVue":false}},{"path":"pages/index/orchard","meta":{"navigationBar":{"titleText":"榴莲果园","style":"custom","type":"default"},"isNVue":false}},{"path":"pages/index/durianLog","meta":{"enablePullDownRefresh":true,"navigationBar":{"backgroundColor":"#fff","titleText":"榴莲果明细","type":"default"},"isNVue":false}},{"path":"pages/index/dataCenter/push","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"投流推广","style":"custom","type":"default"},"isNVue":false}},{"path":"pages/index/dataCenter/pushVideoCollects","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"选择投流视频","type":"default"},"isNVue":false}},{"path":"pages/login/register","meta":{"navigationBar":{"titleText":"注册","style":"custom","type":"default"},"isNVue":false}},{"path":"pages/login/forget","meta":{"navigationBar":{"titleText":"忘记密码","style":"custom","type":"default"},"isNVue":false}},{"path":"pages/login/retrieve","meta":{"navigationBar":{"titleText":"找回账户","style":"custom","type":"default"},"isNVue":false}},{"path":"pages/shop/settle","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"商家入驻","type":"default"},"isNVue":false}},{"path":"pages/index/integral","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"积分","type":"default"},"isNVue":false}},{"path":"pages/index/integralLog","meta":{"enablePullDownRefresh":true,"navigationBar":{"backgroundColor":"#fff","titleText":"积分变动明细","type":"default"},"isNVue":false}},{"path":"pages/index/integralMall","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"卷轴商城","type":"default"},"isNVue":false}},{"path":"pages/index/appeal","meta":{"navigationBar":{"titleText":"交易申诉","type":"default"},"isNVue":false}},{"path":"pages/index/beInvited","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"受邀成功","type":"default"},"isNVue":false}},{"path":"pages/index/videoDetail","meta":{"navigationBar":{"titleText":"视频详情","style":"custom","type":"default"},"isNVue":true}},{"path":"pages/news/newFriend","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"新朋友","type":"default"},"isNVue":false}},{"path":"pages/news/newAttention","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"新的关注","type":"default"},"isNVue":false}},{"path":"pages/news/newFans","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"新的粉丝","type":"default"},"isNVue":false}},{"path":"pages/news/message","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"消息","type":"default"},"isNVue":false}},{"path":"pages/index/article","meta":{"navigationBar":{"titleText":"","type":"default"},"isNVue":false}},{"path":"pages/index/wallet/topUp","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"余额充值","type":"default"},"isNVue":false}},{"path":"pages/news/addFriend","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"添加朋友","type":"default"},"isNVue":false}},{"path":"pages/news/redPacket","meta":{"navigationBar":{"titleText":"红包","type":"default"},"isNVue":false}},{"path":"pages/news/audio-video/audio","meta":{"navigationBar":{"titleText":"语音","type":"default"},"isNVue":true}},{"path":"pages/news/audio-video/video","meta":{"navigationBar":{"titleText":"视频","type":"default"},"isNVue":true}},{"path":"pages/index/integralDetail","meta":{"enablePullDownRefresh":true,"navigationBar":{"titleText":"卷轴详情","type":"default"},"isNVue":false}},{"path":"pages/index/videoStatistics","meta":{"navigationBar":{"titleText":"视频统计","type":"default"},"isNVue":false}},{"path":"pages/mine/myComment","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"我的评论","type":"default"},"isNVue":false}},{"path":"pages/mine/secondpwd","meta":{"navigationBar":{"titleText":"设置二级密码","type":"default"},"isNVue":false}},{"path":"pages/index/wallet/bill","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"我的账单","type":"default"},"isNVue":false}},{"path":"pages/index/wallet/billDetail","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"账单详情","type":"default"},"isNVue":false}},{"path":"pages/index/dataCenter/dataCenter","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"数据中心","style":"custom","type":"default"},"isNVue":false}},{"path":"pages/index/dataCenter/like","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"点赞统计","style":"custom","type":"default"},"isNVue":false}},{"path":"pages/index/dataCenter/otherPush","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"他人推广","type":"default"},"isNVue":false}},{"path":"pages/index/dataCenter/pushDetail","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"推流详情","type":"default"},"isNVue":false}},{"path":"pages/index/dataCenter/pushHistory","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"历史推流","type":"default"},"isNVue":false}},{"path":"pages/index/dataCenter/pushDetailUser","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"推流的用户","type":"default"},"isNVue":false}},{"path":"pages/shop/commodity/evaluate","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"商品评价","type":"default"},"isNVue":false}},{"path":"pages/shop/homepage","meta":{"navigationBar":{"titleText":"店铺主页","style":"custom","type":"default"},"isNVue":false}},{"path":"pages/shop/order/detail","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"订单详情","type":"default"},"isNVue":false}},{"path":"pages/shop/order/refundStar","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"发起售后","type":"default"},"isNVue":false}},{"path":"pages/shop/order/logistics","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"物流状态","type":"default"},"isNVue":false}},{"path":"pages/shop/order/evaluate","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"评价","type":"default"},"isNVue":false}},{"path":"pages/shop/order/afterSales","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"售后详情","type":"default"},"isNVue":false}},{"path":"pages/shop/collect","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"商品收藏","style":"custom","type":"default"},"isNVue":false}},{"path":"pages/shop/focusStore","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"关注店铺","type":"default"},"isNVue":false}},{"path":"pages/shop/history","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"历史浏览","type":"default"},"isNVue":false}},{"path":"pages/shop/coupon","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"优惠券","type":"default"},"isNVue":false}},{"path":"pages/shop/store/commodities","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"商品管理","style":"custom","type":"default"},"isNVue":false}},{"path":"pages/release/commodity","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"发布商品","type":"default"},"isNVue":false}},{"path":"pages/mine/feedback","meta":{"navigationBar":{"titleText":"意见反馈","type":"default"},"isNVue":false}},{"path":"pages/mine/setting/safeCenter","meta":{"navigationBar":{"titleText":"安全中心","type":"default"},"isNVue":false}},{"path":"pages/mine/setting/bankCard","meta":{"navigationBar":{"titleText":"我的卡包","type":"default"},"isNVue":false}},{"path":"pages/mine/setting/bankCardAdd","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"添加银行卡","type":"default"},"isNVue":false}},{"path":"pages/index/wallet/get","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"提现","type":"default"},"isNVue":false}},{"path":"pages/index/wallet/merchantBill","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"商家账单","type":"default"},"isNVue":false}},{"path":"pages/mine/setting/teen","meta":{"navigationBar":{"titleText":"青少年模式","type":"default"},"isNVue":false}},{"path":"pages/mine/setting/binding","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"我的绑定","type":"default"},"isNVue":false}},{"path":"pages/mine/setting/feedback","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"意见反馈","type":"default"},"isNVue":false}},{"path":"pages/shop/search","meta":{"navigationBar":{"titleText":"搜索","style":"custom","type":"default"},"isNVue":false}},{"path":"pages/index/hashOrder","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"哈希订单","type":"default"},"isNVue":false}},{"path":"TUIKit/components/TUIConversation/index","meta":{"navigationBar":{"titleText":"消息","type":"default"},"isNVue":false}},{"path":"TUIKit/components/TUIChat/index","meta":{"navigationBar":{"titleText":"消息","type":"default"},"isNVue":false}},{"path":"TUIKit/components/TUIChat/video-play","meta":{"navigationBar":{"titleText":"消息","type":"default"},"isNVue":false}},{"path":"TUIKit/components/TUIChat/web-view","meta":{"navigationBar":{"titleText":"消息","type":"default"},"isNVue":false}},{"path":"TUIKit/components/TUIContact/index","meta":{"navigationBar":{"titleText":"消息","type":"default"},"isNVue":false}},{"path":"TUIKit/components/TUIGroup/index","meta":{"navigationBar":{"titleText":"消息","type":"default"},"isNVue":false}},{"path":"TUIKit/components/TUISearch/index","meta":{"navigationBar":{"titleText":"聊天记录","type":"default"},"isNVue":false}}].map(uniRoute=>(uniRoute.meta.route=uniRoute.path,__uniConfig.pages.push(uniRoute.path),uniRoute.path='/'+uniRoute.path,uniRoute)); + const __uniRoutes = [{"path":"pages/index/index","meta":{"isQuit":true,"isEntry":true,"isTabBar":true,"tabBarIndex":0,"disableScroll":true,"navigationBar":{"titleText":"视频","style":"custom","type":"default","titleColor":"#ffffff"},"isNVue":true}},{"path":"pages/login/open","meta":{"navigationBar":{"titleText":"开屏页","style":"custom","type":"default","titleColor":"#ffffff"},"isNVue":false}},{"path":"pages/login/loginPhone","meta":{"bounce":"none","navigationBar":{"titleText":"手机号登录","style":"custom","type":"default"},"isNVue":false}},{"path":"pages/shop/shop","meta":{"isQuit":true,"isTabBar":true,"tabBarIndex":1,"onReachBottomDistance":100,"enablePullDownRefresh":true,"navigationBar":{"backgroundColor":"#fff","titleText":"商城","type":"default"},"isNVue":false}},{"path":"pages/merchant/business-operator/index","meta":{"onReachBottomDistance":100,"navigationBar":{"titleText":"商家管理","style":"custom","type":"default"},"isNVue":false}},{"path":"pages/merchant/order/index","meta":{"onReachBottomDistance":100,"navigationBar":{"titleText":"商家订单","style":"custom","type":"default"},"isNVue":false}},{"path":"pages/merchant/commodity-release/index","meta":{"navigationBar":{"titleText":"发布商品","type":"default"},"isNVue":false}},{"path":"pages/merchant/specifications/index","meta":{"navigationBar":{"titleText":"规格","style":"custom","type":"default"},"isNVue":false}},{"path":"pages/shop/commodity/index","meta":{"navigationBar":{"titleText":"商品详情","style":"custom","type":"default","titleColor":"#ffffff"},"isNVue":false}},{"path":"pages/shop/continue-pay/index","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"继续付款","type":"default"},"isNVue":false}},{"path":"pages/shop/store/index","meta":{"navigationBar":{"titleText":"店铺","style":"custom","type":"default","titleColor":"#ffffff"},"isNVue":false}},{"path":"pages/shop/order/index","meta":{"onReachBottomDistance":100,"navigationBar":{"backgroundColor":"#fff","titleText":"订单","style":"custom","type":"default"},"isNVue":false}},{"path":"pages/news/news","meta":{"isQuit":true,"isTabBar":true,"tabBarIndex":2,"bounce":"none","navigationBar":{"titleText":"消息","style":"custom","type":"default"},"isNVue":false}},{"path":"pages/news/group-chat-list/index","meta":{"navigationBar":{"titleText":"群聊列表","type":"default"},"isNVue":false}},{"path":"pages/news/group-chat/index","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"创建群聊","type":"default"},"isNVue":false}},{"path":"pages/news/chat/chat","meta":{"navigationBar":{"titleText":"问答页","type":"default"},"isNVue":false}},{"path":"pages/news/red-envelope/index","meta":{"navigationBar":{"titleText":"红包详情","type":"default"},"isNVue":false}},{"path":"pages/mine/mine","meta":{"isQuit":true,"isTabBar":true,"tabBarIndex":3,"navigationBar":{"titleText":"我的","style":"custom","type":"default"},"isNVue":false}},{"path":"pages/mine/setting/setting","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"设置","type":"default"},"isNVue":false}},{"path":"pages/mine/userinfo","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"个人信息","type":"default"},"isNVue":false}},{"path":"pages/mine/switch-accounts/index","meta":{"navigationBar":{"titleText":"切换账号","style":"custom","type":"default"},"isNVue":false}},{"path":"pages/mine/setting/usePay","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"先用后付","type":"default"},"isNVue":false}},{"path":"pages/mine/realname","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"实名认证","type":"default"},"isNVue":false}},{"path":"pages/mine/delivery-address/index","meta":{"onReachBottomDistance":100,"enablePullDownRefresh":true,"navigationBar":{"backgroundColor":"#fff","titleText":"收货地址","type":"default"},"isNVue":false}},{"path":"pages/mine/homepage","meta":{"isQuit":true,"isTabBar":true,"tabBarIndex":4,"navigationBar":{"titleText":"个人主页","style":"custom","type":"default","titleColor":"#ffffff"},"isNVue":false}},{"path":"pages/release/video","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"发布视频","type":"default"},"isNVue":false}},{"path":"pages/index/wallet/wallet","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"我的钱包","type":"default"},"isNVue":false}},{"path":"pages/index/myTeam","meta":{"navigationBar":{"titleText":"我的团队","type":"default"},"isNVue":false}},{"path":"pages/index/search","meta":{"enablePullDownRefresh":true,"navigationBar":{"titleText":"搜索页","style":"custom","type":"default"},"isNVue":false}},{"path":"pages/index/videoHome","meta":{"navigationBar":{"titleText":"用户视频首页","style":"custom","type":"default"},"isNVue":false}},{"path":"pages/index/report","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"举报","type":"default"},"isNVue":false}},{"path":"pages/mine/collectsVideo","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"收藏夹视频","type":"default"},"isNVue":false}},{"path":"pages/index/promotion","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"选择推广视频","type":"default"},"isNVue":false}},{"path":"pages/index/myQrCode","meta":{"navigationBar":{"titleText":"我的分享","type":"default"},"isNVue":false}},{"path":"pages/index/deal","meta":{"navigationBar":{"titleText":"我的交易","style":"custom","type":"default"},"isNVue":false}},{"path":"pages/index/durian","meta":{"navigationBar":{"titleText":"榴莲首页","type":"default"},"isNVue":false}},{"path":"pages/index/durainActivation","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"已激活","type":"default"},"isNVue":false}},{"path":"pages/index/trade","meta":{"enablePullDownRefresh":true,"navigationBar":{"backgroundColor":"#fff","titleText":"交易市场","style":"custom","type":"default"},"isNVue":false}},{"path":"pages/index/orchard","meta":{"navigationBar":{"titleText":"榴莲果园","style":"custom","type":"default"},"isNVue":false}},{"path":"pages/index/durianLog","meta":{"enablePullDownRefresh":true,"navigationBar":{"backgroundColor":"#fff","titleText":"榴莲果明细","type":"default"},"isNVue":false}},{"path":"pages/index/dataCenter/push","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"投流推广","style":"custom","type":"default"},"isNVue":false}},{"path":"pages/index/dataCenter/pushVideoCollects","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"选择投流视频","type":"default"},"isNVue":false}},{"path":"pages/login/register","meta":{"navigationBar":{"titleText":"注册","style":"custom","type":"default"},"isNVue":false}},{"path":"pages/login/forget","meta":{"navigationBar":{"titleText":"忘记密码","style":"custom","type":"default"},"isNVue":false}},{"path":"pages/login/retrieve","meta":{"navigationBar":{"titleText":"找回账户","style":"custom","type":"default"},"isNVue":false}},{"path":"pages/shop/settle","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"商家入驻","type":"default"},"isNVue":false}},{"path":"pages/index/integral","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"积分","type":"default"},"isNVue":false}},{"path":"pages/index/integralLog","meta":{"enablePullDownRefresh":true,"navigationBar":{"backgroundColor":"#fff","titleText":"积分变动明细","type":"default"},"isNVue":false}},{"path":"pages/index/integralMall","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"卷轴商城","type":"default"},"isNVue":false}},{"path":"pages/index/appeal","meta":{"navigationBar":{"titleText":"交易申诉","type":"default"},"isNVue":false}},{"path":"pages/index/beInvited","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"受邀成功","type":"default"},"isNVue":false}},{"path":"pages/index/videoDetail","meta":{"navigationBar":{"titleText":"视频详情","style":"custom","type":"default"},"isNVue":true}},{"path":"pages/news/newFriend","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"新朋友","type":"default"},"isNVue":false}},{"path":"pages/news/newAttention","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"新的关注","type":"default"},"isNVue":false}},{"path":"pages/news/newFans","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"新的粉丝","type":"default"},"isNVue":false}},{"path":"pages/news/message","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"消息","type":"default"},"isNVue":false}},{"path":"pages/index/article","meta":{"navigationBar":{"titleText":"","type":"default"},"isNVue":false}},{"path":"pages/index/wallet/topUp","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"余额充值","type":"default"},"isNVue":false}},{"path":"pages/news/addFriend","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"添加朋友","type":"default"},"isNVue":false}},{"path":"pages/news/redPacket","meta":{"navigationBar":{"titleText":"红包","type":"default"},"isNVue":false}},{"path":"pages/news/audio-video/audio","meta":{"navigationBar":{"titleText":"语音","type":"default"},"isNVue":true}},{"path":"pages/news/audio-video/video","meta":{"navigationBar":{"titleText":"视频","type":"default"},"isNVue":true}},{"path":"pages/index/integralDetail","meta":{"enablePullDownRefresh":true,"navigationBar":{"titleText":"卷轴详情","type":"default"},"isNVue":false}},{"path":"pages/index/videoStatistics","meta":{"navigationBar":{"titleText":"视频统计","type":"default"},"isNVue":false}},{"path":"pages/mine/myComment","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"我的评论","type":"default"},"isNVue":false}},{"path":"pages/mine/secondpwd","meta":{"navigationBar":{"titleText":"设置二级密码","type":"default"},"isNVue":false}},{"path":"pages/index/wallet/bill","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"我的账单","type":"default"},"isNVue":false}},{"path":"pages/index/wallet/billDetail","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"账单详情","type":"default"},"isNVue":false}},{"path":"pages/index/dataCenter/dataCenter","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"数据中心","style":"custom","type":"default"},"isNVue":false}},{"path":"pages/index/dataCenter/like","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"点赞统计","style":"custom","type":"default"},"isNVue":false}},{"path":"pages/index/dataCenter/otherPush","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"他人推广","type":"default"},"isNVue":false}},{"path":"pages/index/dataCenter/pushDetail","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"推流详情","type":"default"},"isNVue":false}},{"path":"pages/index/dataCenter/pushHistory","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"历史推流","type":"default"},"isNVue":false}},{"path":"pages/index/dataCenter/pushDetailUser","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"推流的用户","type":"default"},"isNVue":false}},{"path":"pages/shop/commodity/evaluate","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"商品评价","type":"default"},"isNVue":false}},{"path":"pages/shop/homepage","meta":{"navigationBar":{"titleText":"店铺主页","style":"custom","type":"default"},"isNVue":false}},{"path":"pages/shop/order/detail","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"订单详情","type":"default"},"isNVue":false}},{"path":"pages/shop/order/refundStar","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"发起售后","type":"default"},"isNVue":false}},{"path":"pages/shop/order/logistics","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"物流状态","type":"default"},"isNVue":false}},{"path":"pages/shop/order/evaluate","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"评价","type":"default"},"isNVue":false}},{"path":"pages/shop/order/afterSales","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"售后详情","type":"default"},"isNVue":false}},{"path":"pages/shop/collect","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"商品收藏","style":"custom","type":"default"},"isNVue":false}},{"path":"pages/shop/focusStore","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"关注店铺","type":"default"},"isNVue":false}},{"path":"pages/shop/history","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"历史浏览","type":"default"},"isNVue":false}},{"path":"pages/shop/coupon","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"优惠券","type":"default"},"isNVue":false}},{"path":"pages/shop/store/commodities","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"商品管理","style":"custom","type":"default"},"isNVue":false}},{"path":"pages/release/commodity","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"发布商品","type":"default"},"isNVue":false}},{"path":"pages/mine/feedback","meta":{"navigationBar":{"titleText":"意见反馈","type":"default"},"isNVue":false}},{"path":"pages/mine/setting/safeCenter","meta":{"navigationBar":{"titleText":"安全中心","type":"default"},"isNVue":false}},{"path":"pages/mine/setting/bankCard","meta":{"navigationBar":{"titleText":"我的卡包","type":"default"},"isNVue":false}},{"path":"pages/mine/setting/bankCardAdd","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"添加银行卡","type":"default"},"isNVue":false}},{"path":"pages/index/wallet/get","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"提现","type":"default"},"isNVue":false}},{"path":"pages/index/wallet/merchantBill","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"商家账单","type":"default"},"isNVue":false}},{"path":"pages/mine/setting/teen","meta":{"navigationBar":{"titleText":"青少年模式","type":"default"},"isNVue":false}},{"path":"pages/mine/setting/binding","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"我的绑定","type":"default"},"isNVue":false}},{"path":"pages/mine/setting/feedback","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"意见反馈","type":"default"},"isNVue":false}},{"path":"pages/shop/search","meta":{"navigationBar":{"titleText":"搜索","style":"custom","type":"default"},"isNVue":false}},{"path":"pages/index/hashOrder","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"哈希订单","type":"default"},"isNVue":false}},{"path":"pages/login/lock","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"输入密码以解锁","type":"default"},"isNVue":false}},{"path":"pages/mine/setting/secondPwd","meta":{"navigationBar":{"backgroundColor":"#fff","titleText":"二级密码","type":"default"},"isNVue":false}},{"path":"TUIKit/components/TUIConversation/index","meta":{"navigationBar":{"titleText":"消息","type":"default"},"isNVue":false}},{"path":"TUIKit/components/TUIChat/index","meta":{"navigationBar":{"titleText":"消息","type":"default"},"isNVue":false}},{"path":"TUIKit/components/TUIChat/video-play","meta":{"navigationBar":{"titleText":"消息","type":"default"},"isNVue":false}},{"path":"TUIKit/components/TUIChat/web-view","meta":{"navigationBar":{"titleText":"消息","type":"default"},"isNVue":false}},{"path":"TUIKit/components/TUIContact/index","meta":{"navigationBar":{"titleText":"消息","type":"default"},"isNVue":false}},{"path":"TUIKit/components/TUIGroup/index","meta":{"navigationBar":{"titleText":"消息","type":"default"},"isNVue":false}},{"path":"TUIKit/components/TUISearch/index","meta":{"navigationBar":{"titleText":"聊天记录","type":"default"},"isNVue":false}}].map(uniRoute=>(uniRoute.meta.route=uniRoute.path,__uniConfig.pages.push(uniRoute.path),uniRoute.path='/'+uniRoute.path,uniRoute)); __uniConfig.styles=[{"jcsa":{"":{"justifyContent":"space-around"}},"jcsb":{"":{"justifyContent":"space-between"}},"jcc":{"":{"justifyContent":"center"}},"jcl":{"":{"justifyContent":"flex-start"}},"jcr":{"":{"justifyContent":"flex-end"}},"aic":{"":{"alignItems":"center"}},"aife":{"":{"alignItems":"flex-end"}},"rows":{"":{"display":"flex","justifyContent":"space-between","alignItems":"center"}},"navs":{"":{"display":"flex","justifyContent":"space-around","alignItems":"center"}},"fmid":{"":{"display":"flex","justifyContent":"center","alignItems":"center"}},"ver":{"":{"display":"flex","flexDirection":"column","alignItems":"center"}},"fdr":{"":{"flexDirection":"row"}},"fdc":{"":{"flexDirection":"column"}},"fww":{"":{"flexWrap":"wrap"}},"f1":{"":{"flex":1}},"pf":{"":{"position":"fixed"}},"pr":{"":{"position":"relative"}},"pa":{"":{"position":"absolute"}},"t0":{"":{"top":0}},"l0":{"":{"left":0}},"r0":{"":{"right":0}},"b0":{"":{"bottom":0}},"pmid":{"":{"position":"absolute","top":50,"left":50,"transform":"translate(-50%, -50%)"}},"pfull":{"":{"position":"absolute","top":0,"left":0,"right":0,"bottom":0}},"w120":{"":{"width":"120rpx"}},"w150":{"":{"width":"150rpx"}},"w180":{"":{"width":"180rpx"}},"w200":{"":{"width":"200rpx"}},"wh20":{"":{"width":"20rpx","height":"20rpx"}},"wh24":{"":{"width":"24rpx","height":"24rpx"}},"wh26":{"":{"width":"26rpx","height":"26rpx"}},"wh30":{"":{"width":"30rpx","height":"30rpx"}},"wh35":{"":{"width":"35rpx","height":"35rpx"}},"wh40":{"":{"width":"40rpx","height":"40rpx"}},"wh45":{"":{"width":"45rpx","height":"45rpx"}},"wh50":{"":{"width":"50rpx","height":"50rpx"}},"wh55":{"":{"width":"55rpx","height":"55rpx"}},"wh60":{"":{"width":"60rpx","height":"60rpx"}},"wh65":{"":{"width":"65rpx","height":"65rpx"}},"wh70":{"":{"width":"70rpx","height":"70rpx"}},"wh75":{"":{"width":"75rpx","height":"75rpx"}},"wh80":{"":{"width":"80rpx","height":"80rpx"}},"wh90":{"":{"width":"90rpx","height":"90rpx"}},"wh95":{"":{"width":"95rpx","height":"95rpx"}},"wh100":{"":{"width":"100rpx","height":"100rpx"}},"wh110":{"":{"width":"110rpx","height":"110rpx"}},"wh120":{"":{"width":"120rpx","height":"120rpx"}},"wh130":{"":{"width":"130rpx","height":"130rpx"}},"wh140":{"":{"width":"140rpx","height":"140rpx"}},"wh150":{"":{"width":"150rpx","height":"150rpx"}},"wh160":{"":{"width":"160rpx","height":"160rpx"}},"wh170":{"":{"width":"170rpx","height":"170rpx"}},"wh180":{"":{"width":"180rpx","height":"180rpx"}},"wh190":{"":{"width":"190rpx","height":"190rpx"}},"wh200":{"":{"width":"200rpx","height":"200rpx"}},"wh220":{"":{"width":"220rpx","height":"220rpx"}},"wh250":{"":{"width":"250rpx","height":"250rpx"}},"wh300":{"":{"width":"300rpx","height":"300rpx"}},"wh320":{"":{"width":"320rpx","height":"320rpx"}},"wh330":{"":{"width":"330rpx","height":"330rpx"}},"wh340":{"":{"width":"340rpx","height":"340rpx"}},"wh350":{"":{"width":"350rpx","height":"350rpx"}},"mt5":{"":{"marginTop":"5rpx"}},"mt10":{"":{"marginTop":"10rpx"}},"mt10p":{"":{"marginTop":10}},"mt15":{"":{"marginTop":"15rpx"}},"mt20":{"":{"marginTop":"20rpx"}},"mt20p":{"":{"marginTop":20}},"mt25":{"":{"marginTop":"25rpx"}},"mt30":{"":{"marginTop":"30rpx"}},"mt35":{"":{"marginTop":"35rpx"}},"mt40":{"":{"marginTop":"40rpx"}},"mt50":{"":{"marginTop":"50rpx"}},"mt60":{"":{"marginTop":"60rpx"}},"mt70":{"":{"marginTop":"70rpx"}},"mt80":{"":{"marginTop":"80rpx"}},"mt90":{"":{"marginTop":"90rpx"}},"ml5":{"":{"marginLeft":"5rpx"}},"ml10":{"":{"marginLeft":"10rpx"}},"ml15":{"":{"marginLeft":"15rpx"}},"ml20":{"":{"marginLeft":"20rpx"}},"ml25":{"":{"marginLeft":"25rpx"}},"ml30":{"":{"marginLeft":"30rpx"}},"ml35":{"":{"marginLeft":"35rpx"}},"ml40":{"":{"marginLeft":"40rpx"}},"ml45":{"":{"marginLeft":"45rpx"}},"ml60":{"":{"marginLeft":"60rpx"}},"ml75":{"":{"marginLeft":"75rpx"}},"ml100":{"":{"marginLeft":"100rpx"}},"mr5":{"":{"marginRight":"5rpx"}},"mr10":{"":{"marginRight":"10rpx"}},"mr15":{"":{"marginRight":"15rpx"}},"mr20":{"":{"marginRight":"20rpx"}},"mr25":{"":{"marginRight":"25rpx"}},"mr30":{"":{"marginRight":"30rpx"}},"mr35":{"":{"marginRight":"35rpx"}},"mr40":{"":{"marginRight":"40rpx"}},"mr50":{"":{"marginRight":"50rpx"}},"mr60":{"":{"marginRight":"60rpx"}},"mb5":{"":{"marginBottom":"5rpx"}},"mb10":{"":{"marginBottom":"10rpx"}},"mb15":{"":{"marginBottom":"15rpx"}},"mb20":{"":{"marginBottom":"20rpx"}},"mb25":{"":{"marginBottom":"25rpx"}},"mb30":{"":{"marginBottom":"30rpx"}},"mb40":{"":{"marginBottom":"40rpx"}},"mb50":{"":{"marginBottom":"50rpx"}},"mb60":{"":{"marginBottom":"60rpx"}},"mb70":{"":{"marginBottom":"70rpx"}},"mb80":{"":{"marginBottom":"80rpx"}},"mtb5":{"":{"marginTop":"5rpx","marginBottom":"5rpx"}},"mtb10":{"":{"marginTop":"10rpx","marginBottom":"10rpx"}},"mtb15":{"":{"marginTop":"15rpx","marginBottom":"15rpx"}},"mtb20":{"":{"marginTop":"20rpx","marginBottom":"20rpx"}},"mtb25":{"":{"marginTop":"25rpx","marginBottom":"25rpx"}},"mtb30":{"":{"marginTop":"30rpx","marginBottom":"30rpx"}},"mtb35":{"":{"marginTop":"35rpx","marginBottom":"35rpx"}},"mtb40":{"":{"marginTop":"40rpx","marginBottom":"40rpx"}},"mtb50":{"":{"marginTop":"50rpx","marginBottom":"50rpx"}},"mtb60":{"":{"marginTop":"60rpx","marginBottom":"60rpx"}},"mlr5":{"":{"marginLeft":"5rpx","marginRight":"5rpx"}},"mlr10":{"":{"marginLeft":"10rpx","marginRight":"10rpx"}},"mlr15":{"":{"marginLeft":"15rpx","marginRight":"15rpx"}},"mlr20":{"":{"marginLeft":"20rpx","marginRight":"20rpx"}},"mlr25":{"":{"marginLeft":"25rpx","marginRight":"25rpx"}},"mlr30":{"":{"marginLeft":"30rpx","marginRight":"30rpx"}},"mlr35":{"":{"marginLeft":"35rpx","marginRight":"35rpx"}},"mlr40":{"":{"marginLeft":"40rpx","marginRight":"40rpx"}},"mlr45":{"":{"marginLeft":"45rpx","marginRight":"45rpx"}},"mlr50":{"":{"marginLeft":"50rpx","marginRight":"50rpx"}},"mlr60":{"":{"marginLeft":"60rpx","marginRight":"60rpx"}},"p16":{"":{"paddingTop":"16rpx","paddingRight":"16rpx","paddingBottom":"16rpx","paddingLeft":"16rpx"}},"p25":{"":{"paddingTop":"25rpx","paddingRight":"25rpx","paddingBottom":"25rpx","paddingLeft":"25rpx"}},"pt5":{"":{"paddingTop":"5rpx"}},"pt10":{"":{"paddingTop":"10rpx"}},"pt15":{"":{"paddingTop":"15rpx"}},"pt20":{"":{"paddingTop":"20rpx"}},"pt25":{"":{"paddingTop":"25rpx"}},"pt30":{"":{"paddingTop":"30rpx"}},"pt35":{"":{"paddingTop":"35rpx"}},"pt40":{"":{"paddingTop":"40rpx"}},"pt45":{"":{"paddingTop":"45rpx"}},"pt50":{"":{"paddingTop":"50rpx"}},"pt60":{"":{"paddingTop":"60rpx"}},"pt70":{"":{"paddingTop":"70rpx"}},"pl5":{"":{"paddingLeft":"5rpx"}},"pl10":{"":{"paddingLeft":"10rpx"}},"pl15":{"":{"paddingLeft":"15rpx"}},"pl20":{"":{"paddingLeft":"20rpx"}},"pl25":{"":{"paddingLeft":"25rpx"}},"pl30":{"":{"paddingLeft":"30rpx"}},"pl40":{"":{"paddingLeft":"40rpx"}},"pl50":{"":{"paddingLeft":"50rpx"}},"pl60":{"":{"paddingLeft":"60rpx"}},"pl65":{"":{"paddingLeft":"65rpx"}},"pl70":{"":{"paddingLeft":"70rpx"}},"pl90":{"":{"paddingLeft":"90rpx"}},"pr5":{"":{"paddingRight":"5rpx"}},"pr10":{"":{"paddingRight":"10rpx"}},"pr15":{"":{"paddingRight":"15rpx"}},"pr20":{"":{"paddingRight":"20rpx"}},"pr25":{"":{"paddingRight":"25rpx"}},"pr30":{"":{"paddingRight":"30rpx"}},"pr50":{"":{"paddingRight":"50rpx"}},"pb5":{"":{"paddingBottom":"5rpx"}},"pb10":{"":{"paddingBottom":"10rpx"}},"pb15":{"":{"paddingBottom":"15rpx"}},"pb20":{"":{"paddingBottom":"20rpx"}},"pb25":{"":{"paddingBottom":"25rpx"}},"pb30":{"":{"paddingBottom":"30rpx"}},"pb35":{"":{"paddingBottom":"35rpx"}},"pb40":{"":{"paddingBottom":"40rpx"}},"pb50":{"":{"paddingBottom":"50rpx"}},"pb60":{"":{"paddingBottom":"60rpx"}},"pb80":{"":{"paddingBottom":"80rpx"}},"pb90":{"":{"paddingBottom":"90rpx"}},"pb100p":{"":{"paddingBottom":100}},"pb120":{"":{"paddingBottom":"120rpx"}},"ptb3":{"":{"paddingTop":"3rpx","paddingBottom":"3rpx"}},"ptb4":{"":{"paddingTop":"4rpx","paddingBottom":"4rpx"}},"ptb5":{"":{"paddingTop":"5rpx","paddingBottom":"5rpx"}},"ptb10":{"":{"paddingTop":"10rpx","paddingBottom":"10rpx"}},"ptb15":{"":{"paddingTop":"15rpx","paddingBottom":"15rpx"}},"ptb19":{"":{"paddingTop":"19rpx","paddingBottom":"19rpx"}},"ptb20":{"":{"paddingTop":"20rpx","paddingBottom":"20rpx"}},"ptb25":{"":{"paddingTop":"25rpx","paddingBottom":"25rpx"}},"ptb30":{"":{"paddingTop":"30rpx","paddingBottom":"30rpx"}},"ptb35":{"":{"paddingTop":"35rpx","paddingBottom":"35rpx"}},"ptb40":{"":{"paddingTop":"40rpx","paddingBottom":"40rpx"}},"ptb50":{"":{"paddingTop":"50rpx","paddingBottom":"50rpx"}},"ptb75":{"":{"paddingTop":"75rpx","paddingBottom":"75rpx"}},"ptb90":{"":{"paddingTop":"90rpx","paddingBottom":"90rpx"}},"plr5":{"":{"paddingLeft":"5rpx","paddingRight":"5rpx"}},"plr10":{"":{"paddingLeft":"10rpx","paddingRight":"10rpx"}},"plr15":{"":{"paddingLeft":"15rpx","paddingRight":"15rpx"}},"plr20":{"":{"paddingLeft":"20rpx","paddingRight":"20rpx"}},"plr25":{"":{"paddingLeft":"25rpx","paddingRight":"25rpx"}},"plr30":{"":{"paddingLeft":"30rpx","paddingRight":"30rpx"}},"plr35":{"":{"paddingLeft":"35rpx","paddingRight":"35rpx"}},"plr40":{"":{"paddingLeft":"40rpx","paddingRight":"40rpx"}},"plr45":{"":{"paddingLeft":"45rpx","paddingRight":"45rpx"}},"plr50":{"":{"paddingLeft":"50rpx","paddingRight":"50rpx"}},"plr60":{"":{"paddingLeft":"60rpx","paddingRight":"60rpx"}},"plr70":{"":{"paddingLeft":"70rpx","paddingRight":"70rpx"}},"plr95":{"":{"paddingLeft":"95rpx","paddingRight":"95rpx"}},"plr125":{"":{"paddingLeft":"125rpx","paddingRight":"125rpx"}},"plr135":{"":{"paddingLeft":"135rpx","paddingRight":"135rpx"}},"tac":{"":{"textAlign":"center"}},"tal":{"":{"textAlign":"left"}},"tar":{"":{"textAlign":"right"}},"lh40":{"":{"lineHeight":"40rpx"}},"tdl":{"":{"textDecoration":"line-through"}},"tbu":{"":{"textDecoration":"underline"}},"cred":{"":{"color":"#FF0000"}},"c000":{"":{"color":"#000000"}},"c111":{"":{"color":"#111111"}},"c191919":{"":{"color":"#191919"}},"c333":{"":{"color":"#333333"}},"c666":{"":{"color":"#666666"}},"c999":{"":{"color":"#999999"}},"cccc":{"":{"color":"#cccccc"}},"c37B111":{"":{"color":"#37B111"}},"cfff":{"":{"color":"#ffffff"}},"cd8d8d8":{"":{"color":"#d8d8d8"}},"cFF9B27":{"":{"color":"#ff9b27"}},"cFF4242":{"":{"color":"#ff4242"}},"fw600":{"":{"fontWeight":"600"}},"f20":{"":{"fontSize":"20rpx"}},"f22":{"":{"fontSize":"22rpx"}},"f24":{"":{"fontSize":"24rpx"}},"f26":{"":{"fontSize":"26rpx"}},"f28":{"":{"fontSize":"28rpx"}},"f30":{"":{"fontSize":"30rpx"}},"f32":{"":{"fontSize":"32rpx"}},"f34":{"":{"fontSize":"34rpx"}},"f36":{"":{"fontSize":"36rpx"}},"f38":{"":{"fontSize":"38rpx"}},"f40":{"":{"fontSize":"40rpx"}},"f44":{"":{"fontSize":"44rpx"}},"f46":{"":{"fontSize":"46rpx"}},"f48":{"":{"fontSize":"48rpx"}},"f50":{"":{"fontSize":"50rpx"}},"f52":{"":{"fontSize":"52rpx"}},"f54":{"":{"fontSize":"54rpx"}},"f56":{"":{"fontSize":"56rpx"}},"f60":{"":{"fontSize":"60rpx"}},"f64":{"":{"fontSize":"64rpx"}},"f72":{"":{"fontSize":"72rpx"}},"b":{"":{"fontWeight":"900"}},"l":{"":{"fontWeight":"100"}},"bfff":{"":{"backgroundColor":"#ffffff"}},"bf8f8f8":{"":{"backgroundColor":"#f8f8f8"}},"b000":{"":{"backgroundColor":"#000000"}},"beee":{"":{"backgroundColor":"#eeeeee"}},"bccc":{"":{"backgroundColor":"#cccccc"}},"bFFFBF3":{"":{"backgroundColor":"#fffbf3"}},"bd1s":{"":{"borderWidth":"1rpx","borderStyle":"solid","borderColor":"#000000"}},"br4":{"":{"borderRadius":"4rpx"}},"br6":{"":{"borderRadius":"6rpx"}},"br10":{"":{"borderRadius":"10rpx"}},"br12":{"":{"borderRadius":"12rpx"}},"br15":{"":{"borderRadius":"15rpx"}},"br20":{"":{"borderRadius":"20rpx"}},"br25":{"":{"borderRadius":"25rpx"}},"br30":{"":{"borderRadius":"30rpx"}},"cir":{"":{"borderRadius":50}},"bar":{"":{"borderRadius":"100rpx"}},"btn":{"":{"overflow":"hidden","paddingTop":"18rpx","paddingBottom":"18rpx","lineHeight":1,"textAlign":"center","fontSize":"30rpx","borderRadius":"10rpx"},".btn+":{"marginLeft":"20rpx"},".bar":{"borderRadius":"100rpx"},".ti":{"paddingTop":"8rpx","paddingBottom":"8rpx","fontSize":"26rpx","borderRadius":"6rpx"},".sm":{"fontSize":"28rpx","paddingTop":"12rpx","paddingBottom":"12rpx"},".lg":{"fontSize":"34rpx","paddingTop":"22rpx","paddingBottom":"22rpx"},".pro":{"fontSize":"36rpx","paddingTop":"30rpx","paddingBottom":"30rpx"},".plus":{"fontSize":"36rpx","paddingTop":"34rpx","paddingBottom":"34rpx","borderRadius":"15rpx"},".primary":{"color":"#ffffff","backgroundImage":"linear-gradient(to right, #FF9B27, #FDC123)"},".warm":{"color":"#ffffff","backgroundColor":"#FF9B27"},".cancel":{"color":"#333333","backgroundColor":"#f3f3f5"},".disabled":{"color":"#ffffff","backgroundColor":"#c2c2c2"},".close":{"color":"#333333"},".focus":{"color":"#ffffff","backgroundColor":"#ff0f2e"},".black":{"color":"#ffffff","backgroundColor":"#1a1a1a"},".colourful":{"color":"#ffffff","backgroundImage":"linear-gradient(99deg, #27efe2 0%, #a45eff 43%, #ff004f 100%), linear-gradient(108deg, #d7f550 -2%, #afef4d 98%)"},".warmHollow":{"color":"#FF9B27","borderWidth":"2rpx","borderStyle":"solid","borderColor":"#000000"},".closeHollow":{"color":"#333333","borderWidth":"2rpx","borderStyle":"solid","borderColor":"#999999"}},"thd":{"":{"lines":1,"textOverflow":"ellipsis"}},"t2hd":{"":{"lines":2,"textOverflow":"ellipsis"}},"t3hd":{"":{"lines":3,"textOverflow":"ellipsis"}},"t4hd":{"":{"lines":4,"textOverflow":"ellipsis"}},"popMid":{"":{"borderRadius":"20rpx"}},"popBot":{"":{"borderTopLeftRadius":"20rpx","borderTopRightRadius":"20rpx","borderBottomRightRadius":0,"borderBottomLeftRadius":0}},"footer":{"":{"position":"fixed","left":0,"right":0,"bottom":0,"width":100,"zIndex":10,"paddingTop":"30rpx","paddingRight":0,"paddingBottom":"30rpx","paddingLeft":0},".sm":{"paddingTop":"15rpx","paddingRight":0,"paddingBottom":"15rpx","paddingLeft":0},".shadow":{"boxShadow":"0 -3rpx 12rpx rgba(102, 102, 102, 0.16)"}},"inputBox":{"":{"backgroundColor":"#f4f4f4","borderRadius":"16rpx"}},"placeholderStyle":{"":{"color":"#999999"}},"imgList":{"":{"display":"flex","flexWrap":"wrap"}},"imgs":{".imgList ":{"position":"relative","marginRight":"20rpx","marginBottom":"20rpx"}},"close":{".imgList .imgs ":{"position":"absolute","right":0,"top":0,"display":"flex","alignItems":"center","justifyContent":"center","transform":"translate(50%, -50%)"}},"view":{".imgList .imgs ":{"position":"absolute","right":0,"bottom":0,"backgroundColor":"rgba(64,64,64,0.5)","borderTopLeftRadius":"4rpx","borderTopRightRadius":0,"borderBottomRightRadius":"10rpx","borderBottomLeftRadius":0},".imgList .imgs .bg":{"backgroundColor":"rgba(0,0,0,0.5)"}},"head":{"":{"height":44}},"window":{"":{"backgroundColor":"rgba(0,0,0,0.4)"}},"nomore":{"":{"textAlign":"center","color":"#999999","fontSize":"20rpx"}},"shopHeaderBg":{"":{"position":"absolute","top":0,"right":0,"left":0,"backgroundImage":"linear-gradient(to top, #f8f8f8, #f8f8f800 20%), linear-gradient(60deg, #eafbed, #fee5d0)","height":"500rpx"}},"underpainting":{"":{"position":"relative","overflow":"hidden","position::before":"absolute","top::before":0,"left::before":0,"right::before":0,"height::before":"560rpx","backgroundImage::before":"linear-gradient(49deg, #dbfce9 -6%, #fffbf3 51%, #feeedb 82%, #fee3cd 103%)","zIndex::before":0}},"mineArrowRight":{"":{"width":"208rpx","height":"208rpx","backgroundColor":"#d8d8d8","borderRadius":50,"marginTop":"24rpx","marginRight":0,"marginBottom":"24rpx","marginLeft":0}}}];//styles __uniConfig.onReady=function(callback){if(__uniConfig.ready){callback()}else{onReadyCallbacks.push(callback)}};Object.defineProperty(__uniConfig,"ready",{get:function(){return isReady},set:function(val){isReady=val;if(!isReady){return}const callbacks=onReadyCallbacks.slice(0);onReadyCallbacks.length=0;callbacks.forEach(function(callback){callback()})}}); __uniConfig.onServiceReady=function(callback){if(__uniConfig.serviceReady){callback()}else{onServiceReadyCallbacks.push(callback)}};Object.defineProperty(__uniConfig,"serviceReady",{get:function(){return isServiceReady},set:function(val){isServiceReady=val;if(!isServiceReady){return}const callbacks=onServiceReadyCallbacks.slice(0);onServiceReadyCallbacks.length=0;callbacks.forEach(function(callback){callback()})}}); diff --git a/jiuyi2/unpackage/dist/dev/app-plus/app-service.js b/jiuyi2/unpackage/dist/dev/app-plus/app-service.js index ddf08a47..6ea647e8 100644 --- a/jiuyi2/unpackage/dist/dev/app-plus/app-service.js +++ b/jiuyi2/unpackage/dist/dev/app-plus/app-service.js @@ -763,7 +763,7 @@ if (uni.restoreGlobal) { const reg = /^[0-9]*$/g; return typeof val === "number" || reg.test(val) ? val + "px" : val; }; - const _sfc_main$4n = { + const _sfc_main$4q = { name: "UniIcons", emits: ["click"], props: { @@ -817,7 +817,7 @@ if (uni.restoreGlobal) { } } }; - function _sfc_render$4m(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$4p(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock( "text", { @@ -832,7 +832,7 @@ if (uni.restoreGlobal) { /* CLASS, STYLE */ ); } - const __easycom_0$9 = /* @__PURE__ */ _export_sfc(_sfc_main$4n, [["render", _sfc_render$4m], ["__scopeId", "data-v-d31e1c47"], ["__file", "D:/document/九亿商城/jy/jiuyi2/uni_modules/uni-icons/components/uni-icons/uni-icons.vue"]]); + const __easycom_0$9 = /* @__PURE__ */ _export_sfc(_sfc_main$4q, [["render", _sfc_render$4p], ["__scopeId", "data-v-d31e1c47"], ["__file", "D:/document/九亿商城/jy/jiuyi2/uni_modules/uni-icons/components/uni-icons/uni-icons.vue"]]); function getDevtoolsGlobalHook() { return getTarget().__VUE_DEVTOOLS_GLOBAL_HOOK__; } @@ -2350,28 +2350,6 @@ if (uni.restoreGlobal) { load: true }); }, - /** - * 支付 - * @param {Object} param - */ - pay(param) { - return util$1.request({ - url: "/home/pay", - query: param.query, - method: "POST" - }); - }, - /** - * 获取余额记录 - * @param {Object} param - */ - getBalanceLog(param) { - return util$1.request({ - url: "/home/getBalanceLog", - query: param.query, - method: "POST" - }); - }, /** * 查询我的钱包接口 * @param {Object} param @@ -2392,6 +2370,39 @@ if (uni.restoreGlobal) { query: param.query, method: "GET" }); + }, + /** + * 获取待释放列表 + * @param {Object} param + */ + releasedList(param) { + return util$1.request({ + url: "/user/released/list", + query: param.query, + method: "GET" + }); + }, + /** + * 根据用户账号查询用户id + * @param {Object} param + */ + getUserDataByAccount(param) { + return util$1.request({ + url: "/coreplay/app/durian/getUserDataByAccount", + query: param.query, + method: "GET" + }); + }, + /** + * 设置二级密码 + * @param {Object} param + */ + setSecondLevelCipher(param) { + return util$1.request({ + url: "/user/user/setSecondLevelCipher", + body: param.body, + method: "POST" + }); } }; const video = { @@ -3075,32 +3086,9 @@ if (uni.restoreGlobal) { buyScroll(param) { return util$1.request({ url: `/coreplay/app/scrollinfo/buyScroll`, - method: "G", + method: "POST", data: param.data }); - }, - /** - * 验证码生成 - * @param {Object} param - */ - myQrcode(param) { - return util$1.request({ - url: `/user/team/getH5Link`, - method: "GET", - query: param.query, - responseType: "arraybuffer" - }); - }, - /** - * 隐藏/公开 个人昵称 - * @param {Object} param - */ - nickname(param) { - return util$1.request({ - url: `/home/nickname`, - method: "post", - query: param.query - }); } }; const durian = { @@ -3126,17 +3114,6 @@ if (uni.restoreGlobal) { query: param.query }); }, - /** - * 查看我的榴莲果明细 - * @param {Object} param - */ - DurianChange(param) { - return util$1.request({ - url: `/home/getMyFruitLog`, - method: "post", - query: param.query - }); - }, /** * 榴莲果置换 * @param {Object} param @@ -3150,86 +3127,27 @@ if (uni.restoreGlobal) { }); }, /** - * 交易市场 + * 校验姓名 * @param {Object} param */ - getOrderList(param) { + nameComparison(param) { return util$1.request({ - url: `/home/getOrderList`, - method: "post", - query: param.query, - load: true - }); - }, - /** - * 订单交易 - * @param {Object} param - */ - orderSale(param) { - return util$1.request({ - url: `/home/orderSale`, - method: "post", - query: param.query, - load: true - }); - }, - /** - * 榴莲果互转化 - * @param {Object} param - */ - transfer(param) { - return util$1.request({ - url: `/home/transfer`, - method: "post", - query: param.query - }); - }, - /** - * 榴莲果挂卖 - * @param {Object} param - */ - fruitForSale(param) { - return util$1.request({ - url: `/home/fruitForSale`, - method: "post", - query: param.query, - load: true - }); - }, - /** - * 取消订单 - * @param {Object} param - */ - cancelSale(param) { - return util$1.request({ - url: `/home/cancelSale`, - method: "post", - query: param.query, - load: 1 - }); - }, - /** - * 入驻商家 - * @param {Object} param - */ - shopApply(param) { - return util$1.request({ - url: `/home/shopApply`, - method: "post", - query: param.query, - data: param.data - }); - }, - /** - * 榴莲果明细 - * @param {Object} param - */ - getMyFruitLog(param) { - return util$1.request({ - url: `/duriantreeinfo`, + url: `/coreplay/app/durian/nameComparison`, method: "GET", - path: param.path, - query: param.query + query: param.query, + load: true + }); + }, + /** + * 交易榴莲果 + * @param {Object} param + */ + consume(param) { + return util$1.request({ + url: `/coreplay/app/durian/consume`, + method: "POST", + data: param.data, + load: true }); } }; @@ -3281,6 +3199,8 @@ if (uni.restoreGlobal) { team, // 积分 intergral, + // 榴莲果 + durian, // 商城模块 shop, // 上传图片地址 @@ -3298,6 +3218,16 @@ if (uni.restoreGlobal) { query: param.query, method: "POST" }); + }, + /** + * 获取各种配置 + * @param {Object} param + */ + getConfig() { + return util$1.request({ + url: "/coreplay/configinfo/list", + method: "GET" + }); } }; const util$1 = { @@ -4675,7 +4605,7 @@ if (uni.restoreGlobal) { }); } }; - const _sfc_main$4m = { + const _sfc_main$4p = { __name: "notice", props: { "value": {}, @@ -4702,7 +4632,7 @@ if (uni.restoreGlobal) { return __returned__; } }; - function _sfc_render$4l(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$4o(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "notice tac c999 f20" }, [ _Vue.createElementVNode("view", { @@ -4733,9 +4663,9 @@ if (uni.restoreGlobal) { }, "隐私政策") ]); } - const notice = /* @__PURE__ */ _export_sfc(_sfc_main$4m, [["render", _sfc_render$4l], ["__scopeId", "data-v-852f2eb4"], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/login/notice.vue"]]); + const notice = /* @__PURE__ */ _export_sfc(_sfc_main$4p, [["render", _sfc_render$4o], ["__scopeId", "data-v-852f2eb4"], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/login/notice.vue"]]); const _imports_0$p = "/static/openPage.png"; - const _sfc_main$4l = { + const _sfc_main$4o = { __name: "open", setup(__props, { expose: __expose }) { __expose(); @@ -4752,7 +4682,7 @@ if (uni.restoreGlobal) { return __returned__; } }; - function _sfc_render$4k(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$4n(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "page" }, [ _Vue.createElementVNode("view", { class: "background pfull" }, [ _Vue.createElementVNode("image", { @@ -4782,8 +4712,8 @@ if (uni.restoreGlobal) { ]) ]); } - const PagesLoginOpen = /* @__PURE__ */ _export_sfc(_sfc_main$4l, [["render", _sfc_render$4k], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/login/open.vue"]]); - const _sfc_main$4k = { + const PagesLoginOpen = /* @__PURE__ */ _export_sfc(_sfc_main$4o, [["render", _sfc_render$4n], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/login/open.vue"]]); + const _sfc_main$4n = { __name: "getCode", props: { // 内容 @@ -4863,7 +4793,7 @@ if (uni.restoreGlobal) { return __returned__; } }; - function _sfc_render$4j(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$4m(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "getCode", onClick: $setup.getCode @@ -4897,7 +4827,7 @@ if (uni.restoreGlobal) { ]) ]); } - const getCode = /* @__PURE__ */ _export_sfc(_sfc_main$4k, [["render", _sfc_render$4j], ["__scopeId", "data-v-921c3be7"], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/getCode/getCode.vue"]]); + const getCode = /* @__PURE__ */ _export_sfc(_sfc_main$4n, [["render", _sfc_render$4m], ["__scopeId", "data-v-921c3be7"], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/getCode/getCode.vue"]]); var commonjsGlobal = typeof globalThis !== "undefined" ? globalThis : typeof window !== "undefined" ? window : typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : {}; function getDefaultExportFromCjs(x2) { return x2 && x2.__esModule && Object.prototype.hasOwnProperty.call(x2, "default") ? x2["default"] : x2; @@ -11667,7 +11597,7 @@ if (uni.restoreGlobal) { var cryptoJsExports = cryptoJs.exports; const CryptoJS = /* @__PURE__ */ getDefaultExportFromCjs(cryptoJsExports); const _imports_0$o = "/static/logo.png"; - const _sfc_main$4j = { + const _sfc_main$4m = { __name: "loginPhone", setup(__props, { expose: __expose }) { __expose(); @@ -11728,7 +11658,7 @@ if (uni.restoreGlobal) { return __returned__; } }; - function _sfc_render$4i(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$4l(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "appbw" }, [ _Vue.createElementVNode("view", { class: "container" }, [ @@ -11815,8 +11745,8 @@ if (uni.restoreGlobal) { ]) ]); } - const PagesLoginLoginPhone = /* @__PURE__ */ _export_sfc(_sfc_main$4j, [["render", _sfc_render$4i], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/login/loginPhone.vue"]]); - const _sfc_main$4i = { + const PagesLoginLoginPhone = /* @__PURE__ */ _export_sfc(_sfc_main$4m, [["render", _sfc_render$4l], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/login/loginPhone.vue"]]); + const _sfc_main$4l = { name: "UniGridItem", inject: ["grid"], props: { @@ -11866,7 +11796,7 @@ if (uni.restoreGlobal) { } } }; - function _sfc_render$4h(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$4k(_ctx, _cache, $props, $setup, $data, $options) { return $data.width ? (_Vue.openBlock(), _Vue.createElementBlock( "view", { @@ -11893,8 +11823,8 @@ if (uni.restoreGlobal) { /* STYLE */ )) : _Vue.createCommentVNode("v-if", true); } - const __easycom_0$8 = /* @__PURE__ */ _export_sfc(_sfc_main$4i, [["render", _sfc_render$4h], ["__scopeId", "data-v-7a807eb7"], ["__file", "D:/document/九亿商城/jy/jiuyi2/uni_modules/uni-grid/components/uni-grid-item/uni-grid-item.vue"]]); - const _sfc_main$4h = { + const __easycom_0$8 = /* @__PURE__ */ _export_sfc(_sfc_main$4l, [["render", _sfc_render$4k], ["__scopeId", "data-v-7a807eb7"], ["__file", "D:/document/九亿商城/jy/jiuyi2/uni_modules/uni-grid/components/uni-grid-item/uni-grid-item.vue"]]); + const _sfc_main$4k = { name: "UniGrid", emits: ["change"], props: { @@ -11964,7 +11894,7 @@ if (uni.restoreGlobal) { } } }; - function _sfc_render$4g(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$4j(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "uni-grid-wrap" }, [ _Vue.createElementVNode("view", { id: $data.elId, @@ -11976,7 +11906,7 @@ if (uni.restoreGlobal) { ], 14, ["id"]) ]); } - const __easycom_1$4 = /* @__PURE__ */ _export_sfc(_sfc_main$4h, [["render", _sfc_render$4g], ["__scopeId", "data-v-07acefee"], ["__file", "D:/document/九亿商城/jy/jiuyi2/uni_modules/uni-grid/components/uni-grid/uni-grid.vue"]]); + const __easycom_1$4 = /* @__PURE__ */ _export_sfc(_sfc_main$4k, [["render", _sfc_render$4j], ["__scopeId", "data-v-07acefee"], ["__file", "D:/document/九亿商城/jy/jiuyi2/uni_modules/uni-grid/components/uni-grid/uni-grid.vue"]]); class MPAnimation { constructor(options, _this) { this.options = options; @@ -12089,7 +12019,7 @@ if (uni.restoreGlobal) { clearTimeout(_this.timer); return new MPAnimation(option, _this); } - const _sfc_main$4g = { + const _sfc_main$4j = { name: "uniTransition", emits: ["click", "change"], props: { @@ -12340,7 +12270,7 @@ if (uni.restoreGlobal) { } } }; - function _sfc_render$4f(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$4i(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.withDirectives((_Vue.openBlock(), _Vue.createElementBlock("view", { ref: "ani", animation: $data.animationData, @@ -12353,8 +12283,8 @@ if (uni.restoreGlobal) { [_Vue.vShow, $data.isShow] ]); } - const __easycom_0$7 = /* @__PURE__ */ _export_sfc(_sfc_main$4g, [["render", _sfc_render$4f], ["__file", "D:/document/九亿商城/jy/jiuyi2/uni_modules/uni-transition/components/uni-transition/uni-transition.vue"]]); - const _sfc_main$4f = { + const __easycom_0$7 = /* @__PURE__ */ _export_sfc(_sfc_main$4j, [["render", _sfc_render$4i], ["__file", "D:/document/九亿商城/jy/jiuyi2/uni_modules/uni-transition/components/uni-transition/uni-transition.vue"]]); + const _sfc_main$4i = { name: "uniPopup", components: {}, emits: ["change", "maskClick"], @@ -12704,7 +12634,7 @@ if (uni.restoreGlobal) { } } }; - function _sfc_render$4e(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$4h(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_transition = resolveEasycom(_Vue.resolveDynamicComponent("uni-transition"), __easycom_0$7); return $data.showPopup ? (_Vue.openBlock(), _Vue.createElementBlock( "view", @@ -12764,10 +12694,10 @@ if (uni.restoreGlobal) { /* CLASS */ )) : _Vue.createCommentVNode("v-if", true); } - const __easycom_0$6 = /* @__PURE__ */ _export_sfc(_sfc_main$4f, [["render", _sfc_render$4e], ["__scopeId", "data-v-4dd3c44b"], ["__file", "D:/document/九亿商城/jy/jiuyi2/uni_modules/uni-popup/components/uni-popup/uni-popup.vue"]]); + const __easycom_0$6 = /* @__PURE__ */ _export_sfc(_sfc_main$4i, [["render", _sfc_render$4h], ["__scopeId", "data-v-4dd3c44b"], ["__file", "D:/document/九亿商城/jy/jiuyi2/uni_modules/uni-popup/components/uni-popup/uni-popup.vue"]]); const _imports_0$n = "/static/footerMenuPlus.png"; const _imports_1$d = "/static/footerMenuPlus1.png"; - const _sfc_main$4e = { + const _sfc_main$4h = { __name: "footerMenu", props: { page: { @@ -12915,7 +12845,7 @@ if (uni.restoreGlobal) { return __returned__; } }; - function _sfc_render$4d(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$4g(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_grid_item = resolveEasycom(_Vue.resolveDynamicComponent("uni-grid-item"), __easycom_0$8); const _component_uni_grid = resolveEasycom(_Vue.resolveDynamicComponent("uni-grid"), __easycom_1$4); const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); @@ -13087,10 +13017,10 @@ if (uni.restoreGlobal) { /* STABLE_FRAGMENT */ ); } - const footerMneu = /* @__PURE__ */ _export_sfc(_sfc_main$4e, [["render", _sfc_render$4d], ["__scopeId", "data-v-b6dbdfad"], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/footerMenu/footerMenu.vue"]]); + const footerMneu = /* @__PURE__ */ _export_sfc(_sfc_main$4h, [["render", _sfc_render$4g], ["__scopeId", "data-v-b6dbdfad"], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/footerMenu/footerMenu.vue"]]); const _imports_0$m = "/static/handpicked-L.png"; const _imports_1$c = "/static/handpicked-R.png"; - const _sfc_main$4d = { + const _sfc_main$4g = { __name: "productList", props: { // 精选标题 @@ -13171,7 +13101,7 @@ if (uni.restoreGlobal) { return __returned__; } }; - function _sfc_render$4c(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$4f(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock( _Vue.Fragment, null, @@ -13253,9 +13183,9 @@ if (uni.restoreGlobal) { /* STABLE_FRAGMENT */ ); } - const productList = /* @__PURE__ */ _export_sfc(_sfc_main$4d, [["render", _sfc_render$4c], ["__scopeId", "data-v-d17032f2"], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/shop/productList/productList.vue"]]); + const productList = /* @__PURE__ */ _export_sfc(_sfc_main$4g, [["render", _sfc_render$4f], ["__scopeId", "data-v-d17032f2"], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/shop/productList/productList.vue"]]); const _imports_0$l = "/static/notice.png"; - const _sfc_main$4c = { + const _sfc_main$4f = { __name: "shop", setup(__props, { expose: __expose }) { __expose(); @@ -13332,7 +13262,7 @@ if (uni.restoreGlobal) { return __returned__; } }; - function _sfc_render$4b(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$4e(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); const _component_footerMenu = resolveEasycom(_Vue.resolveDynamicComponent("footerMenu"), footerMneu); return _Vue.openBlock(), _Vue.createElementBlock( @@ -13476,7 +13406,7 @@ if (uni.restoreGlobal) { /* STABLE_FRAGMENT */ ); } - const PagesShopShop = /* @__PURE__ */ _export_sfc(_sfc_main$4c, [["render", _sfc_render$4b], ["__scopeId", "data-v-2a6aaf81"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/shop/shop.vue"]]); + const PagesShopShop = /* @__PURE__ */ _export_sfc(_sfc_main$4f, [["render", _sfc_render$4e], ["__scopeId", "data-v-2a6aaf81"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/shop/shop.vue"]]); const statusBarHeight = (isUnit) => { let h2 = uni.getSystemInfoSync().statusBarHeight; h2 = h2 ? h2 : 0; @@ -13509,7 +13439,7 @@ if (uni.restoreGlobal) { }); } }; - const _sfc_main$4b = { + const _sfc_main$4e = { __name: "index", props: { title: { @@ -13567,7 +13497,7 @@ if (uni.restoreGlobal) { return __returned__; } }; - function _sfc_render$4a(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$4d(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); return _Vue.openBlock(), _Vue.createElementBlock( _Vue.Fragment, @@ -13634,8 +13564,8 @@ if (uni.restoreGlobal) { /* STABLE_FRAGMENT */ ); } - const JyCommonHead = /* @__PURE__ */ _export_sfc(_sfc_main$4b, [["render", _sfc_render$4a], ["__scopeId", "data-v-970d2f25"], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/public/jy-common-head/index.vue"]]); - const _sfc_main$4a = { + const JyCommonHead = /* @__PURE__ */ _export_sfc(_sfc_main$4e, [["render", _sfc_render$4d], ["__scopeId", "data-v-970d2f25"], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/public/jy-common-head/index.vue"]]); + const _sfc_main$4d = { name: "UniSection", emits: ["click"], props: { @@ -13694,7 +13624,7 @@ if (uni.restoreGlobal) { } } }; - function _sfc_render$49(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$4c(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "uni-section" }, [ _Vue.createElementVNode("view", { class: "uni-section-header", @@ -13753,7 +13683,7 @@ if (uni.restoreGlobal) { ) ]); } - const __easycom_0$5 = /* @__PURE__ */ _export_sfc(_sfc_main$4a, [["render", _sfc_render$49], ["__scopeId", "data-v-637fd36b"], ["__file", "D:/document/九亿商城/jy/jiuyi2/uni_modules/uni-section/components/uni-section/uni-section.vue"]]); + const __easycom_0$5 = /* @__PURE__ */ _export_sfc(_sfc_main$4d, [["render", _sfc_render$4c], ["__scopeId", "data-v-637fd36b"], ["__file", "D:/document/九亿商城/jy/jiuyi2/uni_modules/uni-section/components/uni-section/uni-section.vue"]]); const isObject$2 = (val) => val !== null && typeof val === "object"; const defaultDelimiters = ["{", "}"]; class BaseFormatter { @@ -14066,7 +13996,7 @@ if (uni.restoreGlobal) { const { t: t$3 } = initVueI18n(messages$1); - const _sfc_main$49 = { + const _sfc_main$4c = { name: "UniCountdown", emits: ["timeup"], props: { @@ -14279,7 +14209,7 @@ if (uni.restoreGlobal) { } } }; - function _sfc_render$48(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$4b(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "uni-countdown" }, [ $props.showDay ? (_Vue.openBlock(), _Vue.createElementBlock( "text", @@ -14370,8 +14300,8 @@ if (uni.restoreGlobal) { )) : _Vue.createCommentVNode("v-if", true) ]); } - const __easycom_2$2 = /* @__PURE__ */ _export_sfc(_sfc_main$49, [["render", _sfc_render$48], ["__scopeId", "data-v-c592f7f2"], ["__file", "D:/document/九亿商城/jy/jiuyi2/uni_modules/uni-countdown/components/uni-countdown/uni-countdown.vue"]]); - const _sfc_main$48 = { + const __easycom_2$2 = /* @__PURE__ */ _export_sfc(_sfc_main$4c, [["render", _sfc_render$4b], ["__scopeId", "data-v-c592f7f2"], ["__file", "D:/document/九亿商城/jy/jiuyi2/uni_modules/uni-countdown/components/uni-countdown/uni-countdown.vue"]]); + const _sfc_main$4b = { name: "UniTag", emits: ["click"], props: { @@ -14451,7 +14381,7 @@ if (uni.restoreGlobal) { } } }; - function _sfc_render$47(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$4a(_ctx, _cache, $props, $setup, $data, $options) { return $props.text ? (_Vue.openBlock(), _Vue.createElementBlock( "text", { @@ -14465,8 +14395,8 @@ if (uni.restoreGlobal) { /* TEXT, CLASS, STYLE */ )) : _Vue.createCommentVNode("v-if", true); } - const __easycom_0$4 = /* @__PURE__ */ _export_sfc(_sfc_main$48, [["render", _sfc_render$47], ["__scopeId", "data-v-1f94d070"], ["__file", "D:/document/九亿商城/jy/jiuyi2/uni_modules/uni-tag/components/uni-tag/uni-tag.vue"]]); - const _sfc_main$47 = { + const __easycom_0$4 = /* @__PURE__ */ _export_sfc(_sfc_main$4b, [["render", _sfc_render$4a], ["__scopeId", "data-v-1f94d070"], ["__file", "D:/document/九亿商城/jy/jiuyi2/uni_modules/uni-tag/components/uni-tag/uni-tag.vue"]]); + const _sfc_main$4a = { __name: "index", props: { // 订单信息 @@ -14504,7 +14434,7 @@ if (uni.restoreGlobal) { return __returned__; } }; - function _sfc_render$46(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$49(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_tag = resolveEasycom(_Vue.resolveDynamicComponent("uni-tag"), __easycom_0$4); const _component_uni_section = resolveEasycom(_Vue.resolveDynamicComponent("uni-section"), __easycom_0$5); return _Vue.openBlock(), _Vue.createElementBlock("view", { @@ -14642,8 +14572,8 @@ if (uni.restoreGlobal) { ) ]); } - const JyCommodityInformation = /* @__PURE__ */ _export_sfc(_sfc_main$47, [["render", _sfc_render$46], ["__scopeId", "data-v-1f5faebb"], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/public/jy-commodity-information/index.vue"]]); - const _sfc_main$46 = { + const JyCommodityInformation = /* @__PURE__ */ _export_sfc(_sfc_main$4a, [["render", _sfc_render$49], ["__scopeId", "data-v-1f5faebb"], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/public/jy-commodity-information/index.vue"]]); + const _sfc_main$49 = { __name: "index", props: { item: { @@ -14668,7 +14598,7 @@ if (uni.restoreGlobal) { return __returned__; } }; - function _sfc_render$45(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$48(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_section = resolveEasycom(_Vue.resolveDynamicComponent("uni-section"), __easycom_0$5); return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "jy-shop-information" }, [ _Vue.createVNode( @@ -14707,8 +14637,8 @@ if (uni.restoreGlobal) { ) ]); } - const JyShopInformation = /* @__PURE__ */ _export_sfc(_sfc_main$46, [["render", _sfc_render$45], ["__scopeId", "data-v-c148ceea"], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/public/jy-shop-information/index.vue"]]); - const _sfc_main$45 = { + const JyShopInformation = /* @__PURE__ */ _export_sfc(_sfc_main$49, [["render", _sfc_render$48], ["__scopeId", "data-v-c148ceea"], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/public/jy-shop-information/index.vue"]]); + const _sfc_main$48 = { __name: "index", setup(__props, { expose: __expose }) { __expose(); @@ -14717,7 +14647,7 @@ if (uni.restoreGlobal) { return __returned__; } }; - function _sfc_render$44(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$47(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); const _component_uni_section = resolveEasycom(_Vue.resolveDynamicComponent("uni-section"), __easycom_0$5); return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "jy-commodity-logistics-card" }, [ @@ -14744,9 +14674,9 @@ if (uni.restoreGlobal) { }) ]); } - const JyCommodityLogisticsCard = /* @__PURE__ */ _export_sfc(_sfc_main$45, [["render", _sfc_render$44], ["__scopeId", "data-v-364bf381"], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/public/jy-commodity-logistics-card/index.vue"]]); + const JyCommodityLogisticsCard = /* @__PURE__ */ _export_sfc(_sfc_main$48, [["render", _sfc_render$47], ["__scopeId", "data-v-364bf381"], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/public/jy-commodity-logistics-card/index.vue"]]); const _imports_0$k = "/static/address.png"; - const _sfc_main$44 = { + const _sfc_main$47 = { __name: "index", props: { shopEdit: { @@ -14773,7 +14703,7 @@ if (uni.restoreGlobal) { return __returned__; } }; - function _sfc_render$43(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$46(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "address df aic jcc" }, [ _Vue.createCommentVNode(" 图标 "), _Vue.createElementVNode("view", { class: "icon mr20" }, [ @@ -14804,7 +14734,7 @@ if (uni.restoreGlobal) { ])) : _Vue.createCommentVNode("v-if", true) ]); } - const JyCommodityAddress = /* @__PURE__ */ _export_sfc(_sfc_main$44, [["render", _sfc_render$43], ["__scopeId", "data-v-d9932e65"], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/public/jy-commodity-address/index.vue"]]); + const JyCommodityAddress = /* @__PURE__ */ _export_sfc(_sfc_main$47, [["render", _sfc_render$46], ["__scopeId", "data-v-d9932e65"], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/public/jy-commodity-address/index.vue"]]); function obj2strClass(obj) { let classess = ""; for (let key in obj) { @@ -14823,7 +14753,7 @@ if (uni.restoreGlobal) { } return style; } - const _sfc_main$43 = { + const _sfc_main$46 = { name: "uni-easyinput", emits: [ "click", @@ -15180,7 +15110,7 @@ if (uni.restoreGlobal) { } } }; - function _sfc_render$42(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$45(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); return _Vue.openBlock(), _Vue.createElementBlock( "view", @@ -15305,8 +15235,8 @@ if (uni.restoreGlobal) { /* CLASS, STYLE */ ); } - const __easycom_3 = /* @__PURE__ */ _export_sfc(_sfc_main$43, [["render", _sfc_render$42], ["__scopeId", "data-v-09fd5285"], ["__file", "D:/document/九亿商城/jy/jiuyi2/uni_modules/uni-easyinput/components/uni-easyinput/uni-easyinput.vue"]]); - const _sfc_main$42 = { + const __easycom_3 = /* @__PURE__ */ _export_sfc(_sfc_main$46, [["render", _sfc_render$45], ["__scopeId", "data-v-09fd5285"], ["__file", "D:/document/九亿商城/jy/jiuyi2/uni_modules/uni-easyinput/components/uni-easyinput/uni-easyinput.vue"]]); + const _sfc_main$45 = { name: "uniFormsItem", options: { virtualHost: true @@ -15638,7 +15568,7 @@ if (uni.restoreGlobal) { } } }; - function _sfc_render$41(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$44(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock( "view", { @@ -15694,7 +15624,7 @@ if (uni.restoreGlobal) { /* CLASS */ ); } - const __easycom_2$1 = /* @__PURE__ */ _export_sfc(_sfc_main$42, [["render", _sfc_render$41], ["__scopeId", "data-v-462874dd"], ["__file", "D:/document/九亿商城/jy/jiuyi2/uni_modules/uni-forms/components/uni-forms-item/uni-forms-item.vue"]]); + const __easycom_2$1 = /* @__PURE__ */ _export_sfc(_sfc_main$45, [["render", _sfc_render$44], ["__scopeId", "data-v-462874dd"], ["__file", "D:/document/九亿商城/jy/jiuyi2/uni_modules/uni-forms/components/uni-forms-item/uni-forms-item.vue"]]); var pattern = { email: /^\S+?@\S+?\.\S+?$/, idcard: /^[1-9]\d{5}(18|19|([23]\d))\d{2}((0[1-9])|(10|11|12))(([0-2][1-9])|10|20|30|31)\d{3}[0-9Xx]$/, @@ -16258,7 +16188,7 @@ if (uni.restoreGlobal) { return false; } }; - const _sfc_main$41 = { + const _sfc_main$44 = { name: "uniForms", emits: ["validate", "submit"], options: { @@ -16560,15 +16490,15 @@ if (uni.restoreGlobal) { _isEqual: isEqual } }; - function _sfc_render$40(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$43(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "uni-forms" }, [ _Vue.createElementVNode("form", null, [ _Vue.renderSlot(_ctx.$slots, "default", {}, void 0, true) ]) ]); } - const __easycom_4 = /* @__PURE__ */ _export_sfc(_sfc_main$41, [["render", _sfc_render$40], ["__scopeId", "data-v-9a1e3c32"], ["__file", "D:/document/九亿商城/jy/jiuyi2/uni_modules/uni-forms/components/uni-forms/uni-forms.vue"]]); - const _sfc_main$40 = { + const __easycom_4 = /* @__PURE__ */ _export_sfc(_sfc_main$44, [["render", _sfc_render$43], ["__scopeId", "data-v-9a1e3c32"], ["__file", "D:/document/九亿商城/jy/jiuyi2/uni_modules/uni-forms/components/uni-forms/uni-forms.vue"]]); + const _sfc_main$43 = { __name: "index", props: { title: { @@ -16611,7 +16541,7 @@ if (uni.restoreGlobal) { return __returned__; } }; - function _sfc_render$3$(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$42(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); const _component_uni_popup = resolveEasycom(_Vue.resolveDynamicComponent("uni-popup"), __easycom_0$6); return _Vue.openBlock(), _Vue.createBlock(_component_uni_popup, { @@ -16706,8 +16636,8 @@ if (uni.restoreGlobal) { /* FORWARDED */ }, 8, ["type"]); } - const JyPopup = /* @__PURE__ */ _export_sfc(_sfc_main$40, [["render", _sfc_render$3$], ["__scopeId", "data-v-a763e803"], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/public/jy-popup/index.vue"]]); - const _sfc_main$3$ = { + const JyPopup = /* @__PURE__ */ _export_sfc(_sfc_main$43, [["render", _sfc_render$42], ["__scopeId", "data-v-a763e803"], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/public/jy-popup/index.vue"]]); + const _sfc_main$42 = { __name: "delivery", emits: ["savePost"], setup(__props, { expose: __expose, emit: __emit }) { @@ -16755,7 +16685,7 @@ if (uni.restoreGlobal) { return __returned__; } }; - function _sfc_render$3_(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$41(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_easyinput = resolveEasycom(_Vue.resolveDynamicComponent("uni-easyinput"), __easycom_3); const _component_uni_forms_item = resolveEasycom(_Vue.resolveDynamicComponent("uni-forms-item"), __easycom_2$1); const _component_uni_forms = resolveEasycom(_Vue.resolveDynamicComponent("uni-forms"), __easycom_4); @@ -16819,7 +16749,7 @@ if (uni.restoreGlobal) { /* NEED_PATCH */ ); } - const delivery = /* @__PURE__ */ _export_sfc(_sfc_main$3$, [["render", _sfc_render$3_], ["__scopeId", "data-v-30f79b5c"], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/public/jy-order-card/delivery.vue"]]); + const delivery = /* @__PURE__ */ _export_sfc(_sfc_main$42, [["render", _sfc_render$41], ["__scopeId", "data-v-30f79b5c"], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/public/jy-order-card/delivery.vue"]]); const btnG = { // '1 待付款' // '2 待发货' @@ -16933,7 +16863,7 @@ if (uni.restoreGlobal) { status: [1] }] }; - const _sfc_main$3_ = { + const _sfc_main$41 = { __name: "index", props: { // 订单信息 @@ -17025,7 +16955,7 @@ if (uni.restoreGlobal) { return __returned__; } }; - function _sfc_render$3Z(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$40(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_section = resolveEasycom(_Vue.resolveDynamicComponent("uni-section"), __easycom_0$5); const _component_uni_countdown = resolveEasycom(_Vue.resolveDynamicComponent("uni-countdown"), __easycom_2$2); return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "jy-order-card" }, [ @@ -17198,8 +17128,8 @@ if (uni.restoreGlobal) { ) ]); } - const JyOrderCard = /* @__PURE__ */ _export_sfc(_sfc_main$3_, [["render", _sfc_render$3Z], ["__scopeId", "data-v-31fb09b6"], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/public/jy-order-card/index.vue"]]); - const _sfc_main$3Z = { + const JyOrderCard = /* @__PURE__ */ _export_sfc(_sfc_main$41, [["render", _sfc_render$40], ["__scopeId", "data-v-31fb09b6"], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/public/jy-order-card/index.vue"]]); + const _sfc_main$40 = { __name: "index", setup(__props, { expose: __expose }) { __expose(); @@ -17218,7 +17148,7 @@ if (uni.restoreGlobal) { return __returned__; } }; - function _sfc_render$3Y(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$3$(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "jy-business-operator-order" }, [ _Vue.createVNode($setup["JyCommonHead"], { title: "商品管理", @@ -17245,8 +17175,8 @@ if (uni.restoreGlobal) { ]) ]); } - const PagesMerchantBusinessOperatorIndex = /* @__PURE__ */ _export_sfc(_sfc_main$3Z, [["render", _sfc_render$3Y], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/merchant/business-operator/index.vue"]]); - const _sfc_main$3Y = { + const PagesMerchantBusinessOperatorIndex = /* @__PURE__ */ _export_sfc(_sfc_main$40, [["render", _sfc_render$3$], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/merchant/business-operator/index.vue"]]); + const _sfc_main$3$ = { props: { list: { type: Array, @@ -17427,7 +17357,7 @@ if (uni.restoreGlobal) { } } }; - function _sfc_render$3X(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$3_(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock( "view", { @@ -17484,8 +17414,8 @@ if (uni.restoreGlobal) { /* STYLE */ ); } - const JyShopNavigation = /* @__PURE__ */ _export_sfc(_sfc_main$3Y, [["render", _sfc_render$3X], ["__scopeId", "data-v-6b0977e8"], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/public/jy-shop-navigation/index.vue"]]); - const _sfc_main$3X = { + const JyShopNavigation = /* @__PURE__ */ _export_sfc(_sfc_main$3$, [["render", _sfc_render$3_], ["__scopeId", "data-v-6b0977e8"], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/public/jy-shop-navigation/index.vue"]]); + const _sfc_main$3_ = { __name: "index", setup(__props, { expose: __expose }) { __expose(); @@ -17540,7 +17470,7 @@ if (uni.restoreGlobal) { return __returned__; } }; - function _sfc_render$3W(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$3Z(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_easyinput = resolveEasycom(_Vue.resolveDynamicComponent("uni-easyinput"), __easycom_3); return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "jy-business-operator-order" }, [ _Vue.createVNode($setup["JyCommonHead"], null, { @@ -17577,7 +17507,7 @@ if (uni.restoreGlobal) { ]) ]); } - const PagesMerchantOrderIndex = /* @__PURE__ */ _export_sfc(_sfc_main$3X, [["render", _sfc_render$3W], ["__scopeId", "data-v-ca2106ec"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/merchant/order/index.vue"]]); + const PagesMerchantOrderIndex = /* @__PURE__ */ _export_sfc(_sfc_main$3_, [["render", _sfc_render$3Z], ["__scopeId", "data-v-ca2106ec"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/merchant/order/index.vue"]]); const pages = [ { path: "pages/index/index", @@ -18276,6 +18206,20 @@ if (uni.restoreGlobal) { navigationBarTitleText: "哈希订单", navigationBarBackgroundColor: "#fff" } + }, + { + path: "pages/login/lock", + style: { + navigationBarTitleText: "输入密码以解锁", + navigationBarBackgroundColor: "#fff" + } + }, + { + path: "pages/mine/setting/secondPwd", + style: { + navigationBarTitleText: "二级密码", + navigationBarBackgroundColor: "#fff" + } } ]; const subPackages = [ @@ -21437,7 +21381,7 @@ ${i3} } return filedata; }; - const _sfc_main$3W = { + const _sfc_main$3Z = { name: "uploadImage", emits: ["uploadFiles", "choose", "delFile"], props: { @@ -21584,7 +21528,7 @@ ${i3} } } }; - function _sfc_render$3V(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$3Y(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "uni-file-picker__container" }, [ (_Vue.openBlock(true), _Vue.createElementBlock( _Vue.Fragment, @@ -21677,8 +21621,8 @@ ${i3} )) : _Vue.createCommentVNode("v-if", true) ]); } - const uploadImage = /* @__PURE__ */ _export_sfc(_sfc_main$3W, [["render", _sfc_render$3V], ["__scopeId", "data-v-bdfc07e0"], ["__file", "D:/document/九亿商城/jy/jiuyi2/uni_modules/uni-file-picker/components/uni-file-picker/upload-image.vue"]]); - const _sfc_main$3V = { + const uploadImage = /* @__PURE__ */ _export_sfc(_sfc_main$3Z, [["render", _sfc_render$3Y], ["__scopeId", "data-v-bdfc07e0"], ["__file", "D:/document/九亿商城/jy/jiuyi2/uni_modules/uni-file-picker/components/uni-file-picker/upload-image.vue"]]); + const _sfc_main$3Y = { name: "uploadFile", emits: ["uploadFiles", "choose", "delFile"], props: { @@ -21814,7 +21758,7 @@ ${i3} } } }; - function _sfc_render$3U(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$3X(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "uni-file-picker__files" }, [ !$props.readonly ? (_Vue.openBlock(), _Vue.createElementBlock("view", { key: 0, @@ -21896,8 +21840,8 @@ ${i3} )) : _Vue.createCommentVNode("v-if", true) ]); } - const uploadFile = /* @__PURE__ */ _export_sfc(_sfc_main$3V, [["render", _sfc_render$3U], ["__scopeId", "data-v-a54939c6"], ["__file", "D:/document/九亿商城/jy/jiuyi2/uni_modules/uni-file-picker/components/uni-file-picker/upload-file.vue"]]); - const _sfc_main$3U = { + const uploadFile = /* @__PURE__ */ _export_sfc(_sfc_main$3Y, [["render", _sfc_render$3X], ["__scopeId", "data-v-a54939c6"], ["__file", "D:/document/九亿商城/jy/jiuyi2/uni_modules/uni-file-picker/components/uni-file-picker/upload-file.vue"]]); + const _sfc_main$3X = { name: "uniFilePicker", components: { uploadImage, @@ -22404,7 +22348,7 @@ ${i3} } } }; - function _sfc_render$3T(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$3W(_ctx, _cache, $props, $setup, $data, $options) { const _component_upload_image = _Vue.resolveComponent("upload-image"); const _component_upload_file = _Vue.resolveComponent("upload-file"); return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "uni-file-picker" }, [ @@ -22474,8 +22418,8 @@ ${i3} }, 8, ["readonly", "list-styles", "files-list", "showType", "delIcon", "onUploadFiles", "onChoose", "onDelFile"])) : _Vue.createCommentVNode("v-if", true) ]); } - const __easycom_1$3 = /* @__PURE__ */ _export_sfc(_sfc_main$3U, [["render", _sfc_render$3T], ["__scopeId", "data-v-6223573f"], ["__file", "D:/document/九亿商城/jy/jiuyi2/uni_modules/uni-file-picker/components/uni-file-picker/uni-file-picker.vue"]]); - const _sfc_main$3T = { + const __easycom_1$3 = /* @__PURE__ */ _export_sfc(_sfc_main$3X, [["render", _sfc_render$3W], ["__scopeId", "data-v-6223573f"], ["__file", "D:/document/九亿商城/jy/jiuyi2/uni_modules/uni-file-picker/components/uni-file-picker/uni-file-picker.vue"]]); + const _sfc_main$3W = { __name: "index", emits: ["click"], setup(__props, { expose: __expose, emit: __emit }) { @@ -22488,7 +22432,7 @@ ${i3} return __returned__; } }; - function _sfc_render$3S(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$3V(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock( _Vue.Fragment, null, @@ -22517,7 +22461,7 @@ ${i3} /* STABLE_FRAGMENT */ ); } - const JyBottomBtn = /* @__PURE__ */ _export_sfc(_sfc_main$3T, [["render", _sfc_render$3S], ["__scopeId", "data-v-bd91e69e"], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/public/jy-bottom-button/index.vue"]]); + const JyBottomBtn = /* @__PURE__ */ _export_sfc(_sfc_main$3W, [["render", _sfc_render$3V], ["__scopeId", "data-v-bd91e69e"], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/public/jy-bottom-button/index.vue"]]); const eventBus = { listeners: {}, on(eventName, callback) { @@ -22541,7 +22485,7 @@ ${i3} }; const _imports_0$j = "/static/shop-upload-image.png"; const _imports_1$b = "/static/commodity-release-video.png"; - const _sfc_main$3S = { + const _sfc_main$3V = { __name: "index", setup(__props, { expose: __expose }) { __expose(); @@ -22584,7 +22528,7 @@ ${i3} return __returned__; } }; - function _sfc_render$3R(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$3U(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_file_picker = resolveEasycom(_Vue.resolveDynamicComponent("uni-file-picker"), __easycom_1$3); const _component_uni_forms_item = resolveEasycom(_Vue.resolveDynamicComponent("uni-forms-item"), __easycom_2$1); const _component_uni_easyinput = resolveEasycom(_Vue.resolveDynamicComponent("uni-easyinput"), __easycom_3); @@ -22873,8 +22817,8 @@ ${i3} /* STABLE_FRAGMENT */ ); } - const PagesMerchantCommodityReleaseIndex = /* @__PURE__ */ _export_sfc(_sfc_main$3S, [["render", _sfc_render$3R], ["__scopeId", "data-v-eb0dc272"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/merchant/commodity-release/index.vue"]]); - const _sfc_main$3R = { + const PagesMerchantCommodityReleaseIndex = /* @__PURE__ */ _export_sfc(_sfc_main$3V, [["render", _sfc_render$3U], ["__scopeId", "data-v-eb0dc272"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/merchant/commodity-release/index.vue"]]); + const _sfc_main$3U = { __name: "index", props: { item: { @@ -22891,7 +22835,7 @@ ${i3} return __returned__; } }; - function _sfc_render$3Q(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$3T(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); const _component_uni_file_picker = resolveEasycom(_Vue.resolveDynamicComponent("uni-file-picker"), __easycom_1$3); const _component_uni_forms_item = resolveEasycom(_Vue.resolveDynamicComponent("uni-forms-item"), __easycom_2$1); @@ -22979,8 +22923,8 @@ ${i3} }, 8, ["modelValue"]) ]); } - const JySpecificationsCard = /* @__PURE__ */ _export_sfc(_sfc_main$3R, [["render", _sfc_render$3Q], ["__scopeId", "data-v-811e0d38"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/merchant/specifications/jy-specifications-card/index.vue"]]); - const _sfc_main$3Q = { + const JySpecificationsCard = /* @__PURE__ */ _export_sfc(_sfc_main$3U, [["render", _sfc_render$3T], ["__scopeId", "data-v-811e0d38"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/merchant/specifications/jy-specifications-card/index.vue"]]); + const _sfc_main$3T = { __name: "index", setup(__props, { expose: __expose }) { __expose(); @@ -23005,7 +22949,7 @@ ${i3} return __returned__; } }; - function _sfc_render$3P(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$3S(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock( _Vue.Fragment, null, @@ -23049,8 +22993,8 @@ ${i3} /* STABLE_FRAGMENT */ ); } - const PagesMerchantSpecificationsIndex = /* @__PURE__ */ _export_sfc(_sfc_main$3Q, [["render", _sfc_render$3P], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/merchant/specifications/index.vue"]]); - const _sfc_main$3P = { + const PagesMerchantSpecificationsIndex = /* @__PURE__ */ _export_sfc(_sfc_main$3T, [["render", _sfc_render$3S], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/merchant/specifications/index.vue"]]); + const _sfc_main$3S = { name: "UniRate", props: { isFill: { @@ -23253,7 +23197,7 @@ ${i3} } } }; - function _sfc_render$3O(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$3R(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); return _Vue.openBlock(), _Vue.createElementBlock("view", null, [ _Vue.createElementVNode( @@ -23315,8 +23259,8 @@ ${i3} ) ]); } - const __easycom_0$3 = /* @__PURE__ */ _export_sfc(_sfc_main$3P, [["render", _sfc_render$3O], ["__scopeId", "data-v-5c8fbdf3"], ["__file", "D:/document/九亿商城/jy/jiuyi2/uni_modules/uni-rate/components/uni-rate/uni-rate.vue"]]); - const _sfc_main$3O = { + const __easycom_0$3 = /* @__PURE__ */ _export_sfc(_sfc_main$3S, [["render", _sfc_render$3R], ["__scopeId", "data-v-5c8fbdf3"], ["__file", "D:/document/九亿商城/jy/jiuyi2/uni_modules/uni-rate/components/uni-rate/uni-rate.vue"]]); + const _sfc_main$3R = { __name: "statusBar", setup(__props, { expose: __expose }) { __expose(); @@ -23333,7 +23277,7 @@ ${i3} return __returned__; } }; - function _sfc_render$3N(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$3Q(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock( "view", { @@ -23344,11 +23288,11 @@ ${i3} /* STYLE */ ); } - const statusBar = /* @__PURE__ */ _export_sfc(_sfc_main$3O, [["render", _sfc_render$3N], ["__scopeId", "data-v-b1225a22"], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/header/statusBar.vue"]]); + const statusBar = /* @__PURE__ */ _export_sfc(_sfc_main$3R, [["render", _sfc_render$3Q], ["__scopeId", "data-v-b1225a22"], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/header/statusBar.vue"]]); const _imports_0$i = "/static/back.png"; const _imports_1$a = "/static/share1.png"; const _imports_2$5 = "/static/more.png"; - const _sfc_main$3N = { + const _sfc_main$3Q = { __name: "index", props: { detail: { @@ -23417,7 +23361,7 @@ ${i3} return __returned__; } }; - function _sfc_render$3M(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$3P(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_popup = resolveEasycom(_Vue.resolveDynamicComponent("uni-popup"), __easycom_0$6); return _Vue.openBlock(), _Vue.createElementBlock( _Vue.Fragment, @@ -23523,8 +23467,8 @@ ${i3} /* STABLE_FRAGMENT */ ); } - const apex$1 = /* @__PURE__ */ _export_sfc(_sfc_main$3N, [["render", _sfc_render$3M], ["__scopeId", "data-v-52d511f7"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/shop/commodity/components/jy-commodity-head/index.vue"]]); - const _sfc_main$3M = { + const apex$1 = /* @__PURE__ */ _export_sfc(_sfc_main$3Q, [["render", _sfc_render$3P], ["__scopeId", "data-v-52d511f7"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/shop/commodity/components/jy-commodity-head/index.vue"]]); + const _sfc_main$3P = { name: "UniNumberBox", emits: ["change", "input", "update:modelValue", "blur", "focus"], props: { @@ -23653,7 +23597,7 @@ ${i3} } } }; - function _sfc_render$3L(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$3O(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "uni-numbox" }, [ _Vue.createElementVNode( "view", @@ -23712,10 +23656,10 @@ ${i3} ) ]); } - const __easycom_1$2 = /* @__PURE__ */ _export_sfc(_sfc_main$3M, [["render", _sfc_render$3L], ["__scopeId", "data-v-7ae2ee72"], ["__file", "D:/document/九亿商城/jy/jiuyi2/uni_modules/uni-number-box/components/uni-number-box/uni-number-box.vue"]]); + const __easycom_1$2 = /* @__PURE__ */ _export_sfc(_sfc_main$3P, [["render", _sfc_render$3O], ["__scopeId", "data-v-7ae2ee72"], ["__file", "D:/document/九亿商城/jy/jiuyi2/uni_modules/uni-number-box/components/uni-number-box/uni-number-box.vue"]]); const _imports_0$h = "/static/store.png"; const _imports_1$9 = "/static/customer-service.png"; - const _sfc_main$3L = { + const _sfc_main$3O = { __name: "index", props: { // 商品信息 @@ -23798,7 +23742,7 @@ ${i3} return __returned__; } }; - function _sfc_render$3K(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$3N(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); const _component_uni_number_box = resolveEasycom(_Vue.resolveDynamicComponent("uni-number-box"), __easycom_1$2); const _component_uni_popup = resolveEasycom(_Vue.resolveDynamicComponent("uni-popup"), __easycom_0$6); @@ -23956,8 +23900,8 @@ ${i3} /* STABLE_FRAGMENT */ ); } - const JyCommodityFoot = /* @__PURE__ */ _export_sfc(_sfc_main$3L, [["render", _sfc_render$3K], ["__scopeId", "data-v-861cc89d"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/shop/commodity/components/jy-commodity-foot/index.vue"]]); - const _sfc_main$3K = { + const JyCommodityFoot = /* @__PURE__ */ _export_sfc(_sfc_main$3O, [["render", _sfc_render$3N], ["__scopeId", "data-v-861cc89d"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/shop/commodity/components/jy-commodity-foot/index.vue"]]); + const _sfc_main$3N = { __name: "index", setup(__props, { expose: __expose }) { __expose(); @@ -24033,7 +23977,7 @@ ${i3} return __returned__; } }; - function _sfc_render$3J(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$3M(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); const _component_uni_rate = resolveEasycom(_Vue.resolveDynamicComponent("uni-rate"), __easycom_0$3); return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "app pr" }, [ @@ -24293,10 +24237,10 @@ ${i3} _Vue.createVNode($setup["JyCommodityFoot"]) ]); } - const PagesShopCommodityIndex = /* @__PURE__ */ _export_sfc(_sfc_main$3K, [["render", _sfc_render$3J], ["__scopeId", "data-v-05333cff"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/shop/commodity/index.vue"]]); + const PagesShopCommodityIndex = /* @__PURE__ */ _export_sfc(_sfc_main$3N, [["render", _sfc_render$3M], ["__scopeId", "data-v-05333cff"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/shop/commodity/index.vue"]]); const _imports_0$g = "/static/qq.png"; const _imports_1$8 = "/static/shop-bank-payment.png"; - const _sfc_main$3J = { + const _sfc_main$3M = { __name: "index", setup(__props, { expose: __expose }) { __expose(); @@ -24333,7 +24277,7 @@ ${i3} return __returned__; } }; - function _sfc_render$3I(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$3L(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); const _component_uni_easyinput = resolveEasycom(_Vue.resolveDynamicComponent("uni-easyinput"), __easycom_3); const _component_uni_countdown = resolveEasycom(_Vue.resolveDynamicComponent("uni-countdown"), __easycom_2$2); @@ -24479,7 +24423,7 @@ ${i3} ]) ]); } - const PagesShopContinuePayIndex = /* @__PURE__ */ _export_sfc(_sfc_main$3J, [["render", _sfc_render$3I], ["__scopeId", "data-v-840f5d0b"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/shop/continue-pay/index.vue"]]); + const PagesShopContinuePayIndex = /* @__PURE__ */ _export_sfc(_sfc_main$3M, [["render", _sfc_render$3L], ["__scopeId", "data-v-840f5d0b"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/shop/continue-pay/index.vue"]]); const back = "/static/back1.png"; const share = "/static/share2.png"; const search = "/static/search.png"; @@ -24528,7 +24472,7 @@ ${i3} break; } }; - const _sfc_main$3I = { + const _sfc_main$3L = { __name: "index", setup(__props, { expose: __expose }) { __expose(); @@ -24662,7 +24606,7 @@ ${i3} return __returned__; } }; - function _sfc_render$3H(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$3K(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_popup = resolveEasycom(_Vue.resolveDynamicComponent("uni-popup"), __easycom_0$6); return _Vue.openBlock(), _Vue.createElementBlock( _Vue.Fragment, @@ -24746,8 +24690,8 @@ ${i3} /* STABLE_FRAGMENT */ ); } - const JyStoreHead = /* @__PURE__ */ _export_sfc(_sfc_main$3I, [["render", _sfc_render$3H], ["__scopeId", "data-v-640d11e9"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/shop/store/components/jy-store-head/index.vue"]]); - const _sfc_main$3H = { + const JyStoreHead = /* @__PURE__ */ _export_sfc(_sfc_main$3L, [["render", _sfc_render$3K], ["__scopeId", "data-v-640d11e9"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/shop/store/components/jy-store-head/index.vue"]]); + const _sfc_main$3K = { __name: "index", setup(__props, { expose: __expose }) { __expose(); @@ -24785,7 +24729,7 @@ ${i3} return __returned__; } }; - function _sfc_render$3G(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$3J(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_rate = resolveEasycom(_Vue.resolveDynamicComponent("uni-rate"), __easycom_0$3); const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); const _component_JyContent = _Vue.resolveComponent("JyContent"); @@ -24863,8 +24807,8 @@ ${i3} ]) ]); } - const PagesShopStoreIndex = /* @__PURE__ */ _export_sfc(_sfc_main$3H, [["render", _sfc_render$3G], ["__scopeId", "data-v-bead3298"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/shop/store/index.vue"]]); - const _sfc_main$3G = { + const PagesShopStoreIndex = /* @__PURE__ */ _export_sfc(_sfc_main$3K, [["render", _sfc_render$3J], ["__scopeId", "data-v-bead3298"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/shop/store/index.vue"]]); + const _sfc_main$3J = { __name: "apex", props: { // 页面标题 @@ -24905,7 +24849,7 @@ ${i3} return __returned__; } }; - function _sfc_render$3F(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$3I(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); return _Vue.openBlock(), _Vue.createElementBlock( _Vue.Fragment, @@ -24985,8 +24929,8 @@ ${i3} /* STABLE_FRAGMENT */ ); } - const apex = /* @__PURE__ */ _export_sfc(_sfc_main$3G, [["render", _sfc_render$3F], ["__scopeId", "data-v-34641113"], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/header/apex.vue"]]); - const _sfc_main$3F = { + const apex = /* @__PURE__ */ _export_sfc(_sfc_main$3J, [["render", _sfc_render$3I], ["__scopeId", "data-v-34641113"], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/header/apex.vue"]]); + const _sfc_main$3I = { __name: "item", props: { item: { @@ -25011,7 +24955,7 @@ ${i3} return __returned__; } }; - function _sfc_render$3E(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$3H(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "item oh plr30 bfff br20", onClick: $setup.handleItem @@ -25090,8 +25034,8 @@ ${i3} ], true) ]); } - const orderItem = /* @__PURE__ */ _export_sfc(_sfc_main$3F, [["render", _sfc_render$3E], ["__scopeId", "data-v-d02fb2e7"], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/shop/order/item.vue"]]); - const _sfc_main$3E = { + const orderItem = /* @__PURE__ */ _export_sfc(_sfc_main$3I, [["render", _sfc_render$3H], ["__scopeId", "data-v-d02fb2e7"], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/shop/order/item.vue"]]); + const _sfc_main$3H = { __name: "index", setup(__props, { expose: __expose }) { __expose(); @@ -25170,7 +25114,7 @@ ${i3} return __returned__; } }; - function _sfc_render$3D(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$3G(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); return _Vue.openBlock(), _Vue.createElementBlock( _Vue.Fragment, @@ -25301,8 +25245,8 @@ ${i3} /* STABLE_FRAGMENT */ ); } - const PagesShopOrderIndex = /* @__PURE__ */ _export_sfc(_sfc_main$3E, [["render", _sfc_render$3D], ["__scopeId", "data-v-a935288d"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/shop/order/index.vue"]]); - const _sfc_main$3D = { + const PagesShopOrderIndex = /* @__PURE__ */ _export_sfc(_sfc_main$3H, [["render", _sfc_render$3G], ["__scopeId", "data-v-a935288d"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/shop/order/index.vue"]]); + const _sfc_main$3G = { __name: "noLogin", setup(__props, { expose: __expose }) { __expose(); @@ -25311,7 +25255,7 @@ ${i3} return __returned__; } }; - function _sfc_render$3C(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$3F(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "nologin pr fmid fdc" }, [ _Vue.createElementVNode("view", { class: "title f40 b" }, "登录即可体验完整功能"), _Vue.createElementVNode("navigator", { @@ -25320,7 +25264,7 @@ ${i3} }, "手机号登录") ]); } - const noLogin = /* @__PURE__ */ _export_sfc(_sfc_main$3D, [["render", _sfc_render$3C], ["__scopeId", "data-v-4a2e8139"], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/login/noLogin.vue"]]); + const noLogin = /* @__PURE__ */ _export_sfc(_sfc_main$3G, [["render", _sfc_render$3F], ["__scopeId", "data-v-4a2e8139"], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/login/noLogin.vue"]]); let mpMixins = {}; mpMixins = { data() { @@ -25392,7 +25336,7 @@ ${i3} (Comp.$renderjs || (Comp.$renderjs = [])).push("renderswipe"); (Comp.$renderjsModules || (Comp.$renderjsModules = {}))["renderswipe"] = "5a1e922e"; }; - const _sfc_main$3C = { + const _sfc_main$3F = { mixins: [mpwxs, bindIngXMixins, otherMixins], emits: ["click", "change"], props: { @@ -25462,7 +25406,7 @@ ${i3} } } }; - function _sfc_render$3B(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$3E(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock( _Vue.Fragment, null, @@ -25559,11 +25503,11 @@ ${i3} ); } if (typeof block0$2 === "function") - block0$2(_sfc_main$3C); + block0$2(_sfc_main$3F); if (typeof block1 === "function") - block1(_sfc_main$3C); - const __easycom_1$1 = /* @__PURE__ */ _export_sfc(_sfc_main$3C, [["render", _sfc_render$3B], ["__scopeId", "data-v-8ff2a577"], ["__file", "D:/document/九亿商城/jy/jiuyi2/uni_modules/uni-swipe-action/components/uni-swipe-action-item/uni-swipe-action-item.vue"]]); - const _sfc_main$3B = { + block1(_sfc_main$3F); + const __easycom_1$1 = /* @__PURE__ */ _export_sfc(_sfc_main$3F, [["render", _sfc_render$3E], ["__scopeId", "data-v-8ff2a577"], ["__file", "D:/document/九亿商城/jy/jiuyi2/uni_modules/uni-swipe-action/components/uni-swipe-action-item/uni-swipe-action-item.vue"]]); + const _sfc_main$3E = { name: "uniSwipeAction", data() { return {}; @@ -25589,12 +25533,12 @@ ${i3} } } }; - function _sfc_render$3A(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$3D(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock("view", null, [ _Vue.renderSlot(_ctx.$slots, "default") ]); } - const __easycom_2 = /* @__PURE__ */ _export_sfc(_sfc_main$3B, [["render", _sfc_render$3A], ["__file", "D:/document/九亿商城/jy/jiuyi2/uni_modules/uni-swipe-action/components/uni-swipe-action/uni-swipe-action.vue"]]); + const __easycom_2 = /* @__PURE__ */ _export_sfc(_sfc_main$3E, [["render", _sfc_render$3D], ["__file", "D:/document/九亿商城/jy/jiuyi2/uni_modules/uni-swipe-action/components/uni-swipe-action/uni-swipe-action.vue"]]); var chat = { exports: {} }; (function(module, exports) { !function(e2, t2) { @@ -37036,7 +36980,7 @@ ${i3} let pinyin = new pinyin$2({ charCase: 0 }); var jsPinyin = pinyin; const pinyin$1 = /* @__PURE__ */ getDefaultExportFromCjs(jsPinyin); - const _sfc_main$3A = { + const _sfc_main$3D = { __name: "book", setup(__props, { expose: __expose }) { __expose(); @@ -37332,7 +37276,7 @@ ${i3} return __returned__; } }; - function _sfc_render$3z(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$3C(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_swipe_action_item = resolveEasycom(_Vue.resolveDynamicComponent("uni-swipe-action-item"), __easycom_1$1); const _component_uni_swipe_action = resolveEasycom(_Vue.resolveDynamicComponent("uni-swipe-action"), __easycom_2); const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); @@ -37506,8 +37450,8 @@ ${i3} /* STABLE_FRAGMENT */ ); } - const book$1 = /* @__PURE__ */ _export_sfc(_sfc_main$3A, [["render", _sfc_render$3z], ["__scopeId", "data-v-c2d02d98"], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/news/book.vue"]]); - const _sfc_main$3z = { + const book$1 = /* @__PURE__ */ _export_sfc(_sfc_main$3D, [["render", _sfc_render$3C], ["__scopeId", "data-v-c2d02d98"], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/news/book.vue"]]); + const _sfc_main$3C = { __name: "groupList", setup(__props, { expose: __expose }) { __expose(); @@ -37588,7 +37532,7 @@ ${i3} return __returned__; } }; - function _sfc_render$3y(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$3B(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_swipe_action_item = resolveEasycom(_Vue.resolveDynamicComponent("uni-swipe-action-item"), __easycom_1$1); const _component_uni_swipe_action = resolveEasycom(_Vue.resolveDynamicComponent("uni-swipe-action"), __easycom_2); return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "group pr" }, [ @@ -37657,8 +37601,8 @@ ${i3} ]) ]); } - const groupList = /* @__PURE__ */ _export_sfc(_sfc_main$3z, [["render", _sfc_render$3y], ["__scopeId", "data-v-f1fd8030"], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/news/groupList.vue"]]); - const _sfc_main$3y = { + const groupList = /* @__PURE__ */ _export_sfc(_sfc_main$3C, [["render", _sfc_render$3B], ["__scopeId", "data-v-f1fd8030"], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/news/groupList.vue"]]); + const _sfc_main$3B = { __name: "msgList", setup(__props, { expose: __expose }) { __expose(); @@ -37768,7 +37712,7 @@ ${i3} return __returned__; } }; - function _sfc_render$3x(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$3A(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_swipe_action_item = resolveEasycom(_Vue.resolveDynamicComponent("uni-swipe-action-item"), __easycom_1$1); const _component_uni_swipe_action = resolveEasycom(_Vue.resolveDynamicComponent("uni-swipe-action"), __easycom_2); return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "firendBox pr" }, [ @@ -37867,8 +37811,8 @@ ${i3} ]) ]); } - const msgList = /* @__PURE__ */ _export_sfc(_sfc_main$3y, [["render", _sfc_render$3x], ["__scopeId", "data-v-b192a9fb"], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/news/msgList.vue"]]); - const _sfc_main$3x = { + const msgList = /* @__PURE__ */ _export_sfc(_sfc_main$3B, [["render", _sfc_render$3A], ["__scopeId", "data-v-b192a9fb"], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/news/msgList.vue"]]); + const _sfc_main$3A = { __name: "news", setup(__props, { expose: __expose }) { __expose(); @@ -37984,7 +37928,7 @@ ${i3} return __returned__; } }; - function _sfc_render$3w(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$3z(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); const _component_footerMenu = resolveEasycom(_Vue.resolveDynamicComponent("footerMenu"), footerMneu); return _Vue.openBlock(), _Vue.createElementBlock( @@ -38109,8 +38053,8 @@ ${i3} /* STABLE_FRAGMENT */ ); } - const PagesNewsNews = /* @__PURE__ */ _export_sfc(_sfc_main$3x, [["render", _sfc_render$3w], ["__scopeId", "data-v-24bc9d41"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/news/news.vue"]]); - const _sfc_main$3w = { + const PagesNewsNews = /* @__PURE__ */ _export_sfc(_sfc_main$3A, [["render", _sfc_render$3z], ["__scopeId", "data-v-24bc9d41"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/news/news.vue"]]); + const _sfc_main$3z = { __name: "index", setup(__props, { expose: __expose }) { __expose(); @@ -38138,7 +38082,7 @@ ${i3} return __returned__; } }; - function _sfc_render$3v(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$3y(_ctx, _cache, $props, $setup, $data, $options) { return $setup.groupList.length > 0 ? (_Vue.openBlock(), _Vue.createElementBlock("view", { key: 0, class: "group-chat-list" @@ -38158,7 +38102,7 @@ ${i3} )) ])) : _Vue.createCommentVNode("v-if", true); } - const PagesNewsGroupChatListIndex = /* @__PURE__ */ _export_sfc(_sfc_main$3w, [["render", _sfc_render$3v], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/news/group-chat-list/index.vue"]]); + const PagesNewsGroupChatListIndex = /* @__PURE__ */ _export_sfc(_sfc_main$3z, [["render", _sfc_render$3y], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/news/group-chat-list/index.vue"]]); const en = { "uni-search-bar.cancel": "cancel", "uni-search-bar.placeholder": "Search enter content" @@ -38179,7 +38123,7 @@ ${i3} const { t: t$1 } = initVueI18n(messages); - const _sfc_main$3v = { + const _sfc_main$3y = { name: "UniSearchBar", emits: ["input", "update:modelValue", "clear", "cancel", "confirm", "blur", "focus"], props: { @@ -38321,7 +38265,7 @@ ${i3} } } }; - function _sfc_render$3u(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$3x(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "uni-searchbar" }, [ _Vue.createElementVNode( @@ -38397,8 +38341,8 @@ ${i3} )) : _Vue.createCommentVNode("v-if", true) ]); } - const __easycom_0$2 = /* @__PURE__ */ _export_sfc(_sfc_main$3v, [["render", _sfc_render$3u], ["__scopeId", "data-v-f07ef577"], ["__file", "D:/document/九亿商城/jy/jiuyi2/uni_modules/uni-search-bar/components/uni-search-bar/uni-search-bar.vue"]]); - const _sfc_main$3u = { + const __easycom_0$2 = /* @__PURE__ */ _export_sfc(_sfc_main$3y, [["render", _sfc_render$3x], ["__scopeId", "data-v-f07ef577"], ["__file", "D:/document/九亿商城/jy/jiuyi2/uni_modules/uni-search-bar/components/uni-search-bar/uni-search-bar.vue"]]); + const _sfc_main$3x = { __name: "book", props: /* @__PURE__ */ _Vue.mergeModels({ // 列表数据 @@ -38443,7 +38387,7 @@ ${i3} return __returned__; } }; - function _sfc_render$3t(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$3w(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "firendBox pr" }, [ _Vue.createElementVNode("view", { class: "list bfff" }, [ @@ -38490,8 +38434,8 @@ ${i3} _Vue.createElementVNode("view", { class: "mtb20 nomore" }, "到底啦~") ]); } - const book = /* @__PURE__ */ _export_sfc(_sfc_main$3u, [["render", _sfc_render$3t], ["__scopeId", "data-v-c101eb66"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/news/group-chat/book.vue"]]); - const _sfc_main$3t = { + const book = /* @__PURE__ */ _export_sfc(_sfc_main$3x, [["render", _sfc_render$3w], ["__scopeId", "data-v-c101eb66"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/news/group-chat/book.vue"]]); + const _sfc_main$3w = { __name: "index", setup(__props, { expose: __expose }) { __expose(); @@ -38566,7 +38510,7 @@ ${i3} return __returned__; } }; - function _sfc_render$3s(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$3v(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_search_bar = resolveEasycom(_Vue.resolveDynamicComponent("uni-search-bar"), __easycom_0$2); return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "app" }, [ _Vue.createVNode(_component_uni_search_bar, { @@ -38594,7 +38538,7 @@ ${i3} ]) ]); } - const PagesNewsGroupChatIndex = /* @__PURE__ */ _export_sfc(_sfc_main$3t, [["render", _sfc_render$3s], ["__scopeId", "data-v-56b98620"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/news/group-chat/index.vue"]]); + const PagesNewsGroupChatIndex = /* @__PURE__ */ _export_sfc(_sfc_main$3w, [["render", _sfc_render$3v], ["__scopeId", "data-v-56b98620"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/news/group-chat/index.vue"]]); const getHistoryMsg = async (option) => { let options = { // 对方的用户 ID 或者群组 ID 或聊天室 ID。 @@ -38611,7 +38555,7 @@ ${i3} }); }); }; - const _sfc_main$3s = { + const _sfc_main$3v = { __name: "index", props: { item: { @@ -38628,7 +38572,7 @@ ${i3} return __returned__; } }; - function _sfc_render$3r(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$3u(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "news-temp-system" }, [ $props.item.ext.type === "time" ? (_Vue.openBlock(), _Vue.createElementBlock( "view", @@ -38642,10 +38586,10 @@ ${i3} )) : _Vue.createCommentVNode("v-if", true) ]); } - const newsTempSystem = /* @__PURE__ */ _export_sfc(_sfc_main$3s, [["render", _sfc_render$3r], ["__scopeId", "data-v-148a2179"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/news/chat/components/news-temp-system/index.vue"]]); + const newsTempSystem = /* @__PURE__ */ _export_sfc(_sfc_main$3v, [["render", _sfc_render$3u], ["__scopeId", "data-v-148a2179"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/news/chat/components/news-temp-system/index.vue"]]); const NewsAudio = "/static/audio.png"; const _imports_0$f = "/static/image/red-envelope.png"; - const _sfc_main$3r = { + const _sfc_main$3u = { inject: ["util"], props: { dataItem: { @@ -38773,7 +38717,7 @@ ${i3} } } }; - function _sfc_render$3q(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$3t(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "red-bag" }, [ _Vue.createCommentVNode(" 红包 "), _Vue.createElementVNode("view", { @@ -38808,9 +38752,9 @@ ${i3} ]) ]); } - const resEnvlope = /* @__PURE__ */ _export_sfc(_sfc_main$3r, [["render", _sfc_render$3q], ["__scopeId", "data-v-8e301fe2"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/news/chat/components/red-envelope/index.vue"]]); + const resEnvlope = /* @__PURE__ */ _export_sfc(_sfc_main$3u, [["render", _sfc_render$3t], ["__scopeId", "data-v-8e301fe2"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/news/chat/components/red-envelope/index.vue"]]); const _imports_1$7 = "/static/pause.png"; - const _sfc_main$3q = { + const _sfc_main$3t = { __name: "index", props: { item: { @@ -38872,7 +38816,7 @@ ${i3} return __returned__; } }; - function _sfc_render$3p(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$3s(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "content pr" }, [ _Vue.createCommentVNode(" 图片 "), @@ -39138,7 +39082,7 @@ ${i3} })) : _Vue.createCommentVNode("v-if", true) ]); } - const newsTemplate = /* @__PURE__ */ _export_sfc(_sfc_main$3q, [["render", _sfc_render$3p], ["__scopeId", "data-v-f77fdf57"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/news/chat/components/news-temp/index.vue"]]); + const newsTemplate = /* @__PURE__ */ _export_sfc(_sfc_main$3t, [["render", _sfc_render$3s], ["__scopeId", "data-v-f77fdf57"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/news/chat/components/news-temp/index.vue"]]); const NewsEmoji = "/static/news-emoji.png"; const NewsPlus = "/static/news-plus.png"; const NewsVoice = "/static/news-voice.png"; @@ -39576,7 +39520,7 @@ ${i3} "🍒", "🍓" ]; - const _sfc_main$3p = { + const _sfc_main$3s = { __name: "emoji", emits: ["setEmoj"], setup(__props, { expose: __expose, emit: __emit }) { @@ -39589,7 +39533,7 @@ ${i3} return __returned__; } }; - function _sfc_render$3o(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$3r(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "NewsPlus" }, [ _Vue.createElementVNode("scroll-view", { "scroll-y": "", @@ -39616,9 +39560,9 @@ ${i3} ]) ]); } - const emoji = /* @__PURE__ */ _export_sfc(_sfc_main$3p, [["render", _sfc_render$3o], ["__scopeId", "data-v-f4005add"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/news/chat/emoji.vue"]]); + const emoji = /* @__PURE__ */ _export_sfc(_sfc_main$3s, [["render", _sfc_render$3r], ["__scopeId", "data-v-f4005add"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/news/chat/emoji.vue"]]); const str = ""; - const _sfc_main$3o = { + const _sfc_main$3r = { __name: "jy-voice", props: { msg: Object @@ -39755,7 +39699,7 @@ ${i3} return __returned__; } }; - function _sfc_render$3n(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$3q(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); return _Vue.openBlock(), _Vue.createElementBlock( _Vue.Fragment, @@ -39821,8 +39765,8 @@ ${i3} /* STABLE_FRAGMENT */ ); } - const JyVoice = /* @__PURE__ */ _export_sfc(_sfc_main$3o, [["render", _sfc_render$3n], ["__scopeId", "data-v-e5d7f2fa"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/news/chat/jy-voice.vue"]]); - const _sfc_main$3n = { + const JyVoice = /* @__PURE__ */ _export_sfc(_sfc_main$3r, [["render", _sfc_render$3q], ["__scopeId", "data-v-e5d7f2fa"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/news/chat/jy-voice.vue"]]); + const _sfc_main$3q = { __name: "jy-plus", props: { msg: { @@ -39982,7 +39926,7 @@ ${i3} return __returned__; } }; - function _sfc_render$3m(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$3p(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); const _component_uni_easyinput = resolveEasycom(_Vue.resolveDynamicComponent("uni-easyinput"), __easycom_3); const _component_uni_popup = resolveEasycom(_Vue.resolveDynamicComponent("uni-popup"), __easycom_0$6); @@ -40100,8 +40044,8 @@ ${i3} /* STABLE_FRAGMENT */ ); } - const JyPlus = /* @__PURE__ */ _export_sfc(_sfc_main$3n, [["render", _sfc_render$3m], ["__scopeId", "data-v-c1e205dd"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/news/chat/jy-plus.vue"]]); - const _sfc_main$3m = { + const JyPlus = /* @__PURE__ */ _export_sfc(_sfc_main$3q, [["render", _sfc_render$3p], ["__scopeId", "data-v-c1e205dd"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/news/chat/jy-plus.vue"]]); + const _sfc_main$3p = { __name: "chat", setup(__props, { expose: __expose }) { __expose(); @@ -40413,7 +40357,7 @@ ${i3} return __returned__; } }; - function _sfc_render$3l(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$3o(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_easyinput = resolveEasycom(_Vue.resolveDynamicComponent("uni-easyinput"), __easycom_3); const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); const _component_uni_popup = resolveEasycom(_Vue.resolveDynamicComponent("uni-popup"), __easycom_0$6); @@ -40730,9 +40674,9 @@ ${i3} /* STABLE_FRAGMENT */ ); } - const PagesNewsChatChat = /* @__PURE__ */ _export_sfc(_sfc_main$3m, [["render", _sfc_render$3l], ["__scopeId", "data-v-483eff98"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/news/chat/chat.vue"]]); + const PagesNewsChatChat = /* @__PURE__ */ _export_sfc(_sfc_main$3p, [["render", _sfc_render$3o], ["__scopeId", "data-v-483eff98"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/news/chat/chat.vue"]]); const _imports_0$e = "/static/img/im/face/face_11.jpg"; - const _sfc_main$3l = { + const _sfc_main$3o = { inject: ["util"], data() { return { @@ -40837,7 +40781,7 @@ ${i3} this.radius = radiusTmp + "% " + radiusTmp + "% 0 0"; } }; - function _sfc_render$3k(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$3n(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock( _Vue.Fragment, null, @@ -40949,7 +40893,7 @@ ${i3} /* STABLE_FRAGMENT */ ); } - const PagesNewsRedEnvelopeIndex = /* @__PURE__ */ _export_sfc(_sfc_main$3l, [["render", _sfc_render$3k], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/news/red-envelope/index.vue"]]); + const PagesNewsRedEnvelopeIndex = /* @__PURE__ */ _export_sfc(_sfc_main$3o, [["render", _sfc_render$3n], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/news/red-envelope/index.vue"]]); const _imports_0$d = "/static/mine-dingwei.png"; const _imports_1$6 = "/static/mine-kefu.png"; const _imports_2$4 = "/static/mine-shezhi.png"; @@ -40967,7 +40911,7 @@ ${i3} const _imports_1$5 = "/static/mien-dianpuguanli.png"; const _imports_2$3 = "/static/mine-dingdanguanli.png"; const _imports_16 = "/static/mine-kehuxiaoxi.png"; - const _sfc_main$3k = { + const _sfc_main$3n = { __name: "mine", setup(__props, { expose: __expose }) { __expose(); @@ -41013,7 +40957,7 @@ ${i3} return __returned__; } }; - function _sfc_render$3j(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$3m(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); const _component_footerMenu = resolveEasycom(_Vue.resolveDynamicComponent("footerMenu"), footerMneu); return _Vue.openBlock(), _Vue.createElementBlock( @@ -41287,8 +41231,8 @@ ${i3} /* STABLE_FRAGMENT */ ); } - const PagesMineMine = /* @__PURE__ */ _export_sfc(_sfc_main$3k, [["render", _sfc_render$3j], ["__scopeId", "data-v-7c2ebfa5"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/mine/mine.vue"]]); - const _sfc_main$3j = { + const PagesMineMine = /* @__PURE__ */ _export_sfc(_sfc_main$3n, [["render", _sfc_render$3m], ["__scopeId", "data-v-7c2ebfa5"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/mine/mine.vue"]]); + const _sfc_main$3m = { __name: "setting", setup(__props, { expose: __expose }) { __expose(); @@ -41373,7 +41317,7 @@ ${i3} return __returned__; } }; - function _sfc_render$3i(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$3l(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); return _Vue.openBlock(), _Vue.createElementBlock( _Vue.Fragment, @@ -41463,7 +41407,10 @@ ${i3} _Vue.createElementVNode("view", { class: "" }, "先用后付"), _Vue.createVNode(_component_uni_icons, { type: "right" }) ]), - _Vue.createElementVNode("view", { class: "line rows" }, [ + _Vue.createElementVNode("view", { + class: "line rows", + onClick: _cache[3] || (_cache[3] = ($event) => $setup.link("/pages/mine/setting/secondPwd")) + }, [ _Vue.createElementVNode("view", { class: "" }, "二级密码"), _Vue.createVNode(_component_uni_icons, { type: "right" }) ]), @@ -41477,7 +41424,7 @@ ${i3} ]), _Vue.createElementVNode("view", { class: "line rows ptb20 plr10", - onClick: _cache[3] || (_cache[3] = ($event) => $setup.link("/pages/mine/setting/teen")) + onClick: _cache[4] || (_cache[4] = ($event) => $setup.link("/pages/mine/setting/teen")) }, [ _Vue.createElementVNode("view", { class: "" }, "青少年模式"), _Vue.createElementVNode("view", { class: "f1 tar" }, [ @@ -41511,7 +41458,7 @@ ${i3} _Vue.createElementVNode("view", { class: "area" }, [ _Vue.createElementVNode("view", { class: "line rows", - onClick: _cache[4] || (_cache[4] = ($event) => $setup.link("/pages/mine/setting/safeCenter")) + onClick: _cache[5] || (_cache[5] = ($event) => $setup.link("/pages/mine/setting/safeCenter")) }, [ _Vue.createElementVNode("view", { class: "" }, "安全中心"), _Vue.createVNode(_component_uni_icons, { type: "right" }) @@ -41519,14 +41466,14 @@ ${i3} _Vue.createCommentVNode(" 支付宝 微信 "), _Vue.createElementVNode("view", { class: "line rows", - onClick: _cache[5] || (_cache[5] = ($event) => $setup.link("/pages/mine/setting/binding")) + onClick: _cache[6] || (_cache[6] = ($event) => $setup.link("/pages/mine/setting/binding")) }, [ _Vue.createElementVNode("view", { class: "" }, "我的绑定"), _Vue.createVNode(_component_uni_icons, { type: "right" }) ]), _Vue.createElementVNode("view", { class: "line rows", - onClick: _cache[6] || (_cache[6] = ($event) => $setup.link("/pages/mine/setting/bankCard")) + onClick: _cache[7] || (_cache[7] = ($event) => $setup.link("/pages/mine/setting/bankCard")) }, [ _Vue.createElementVNode("view", { class: "" }, "我的银行卡"), _Vue.createVNode(_component_uni_icons, { type: "right" }) @@ -41541,14 +41488,14 @@ ${i3} ]), _Vue.createElementVNode("view", { class: "line rows", - onClick: _cache[7] || (_cache[7] = ($event) => $setup.link($setup.util.setUrl("/pages/index/article", { id: 6 }))) + onClick: _cache[8] || (_cache[8] = ($event) => $setup.link($setup.util.setUrl("/pages/index/article", { id: 6 }))) }, [ _Vue.createElementVNode("view", { class: "" }, "用户协议"), _Vue.createVNode(_component_uni_icons, { type: "right" }) ]), _Vue.createElementVNode("view", { class: "line rows", - onClick: _cache[8] || (_cache[8] = ($event) => $setup.link($setup.util.setUrl("/pages/index/article", { id: 1 }))) + onClick: _cache[9] || (_cache[9] = ($event) => $setup.link($setup.util.setUrl("/pages/index/article", { id: 1 }))) }, [ _Vue.createElementVNode("view", { class: "" }, "隐私政策"), _Vue.createVNode(_component_uni_icons, { type: "right" }) @@ -41568,7 +41515,7 @@ ${i3} _Vue.createElementVNode("view", { class: "mtb30 c999" }, [ _Vue.createElementVNode("view", { class: "mtb5" }, [ _Vue.createElementVNode("view", { - onClick: _cache[9] || (_cache[9] = ($event) => $setup.link("/pages/mine/switch-accounts/index")), + onClick: _cache[10] || (_cache[10] = ($event) => $setup.link("/pages/mine/switch-accounts/index")), class: "btn" }, "切换账号") ]), @@ -41589,8 +41536,8 @@ ${i3} /* STABLE_FRAGMENT, DEV_ROOT_FRAGMENT */ ); } - const PagesMineSettingSetting = /* @__PURE__ */ _export_sfc(_sfc_main$3j, [["render", _sfc_render$3i], ["__scopeId", "data-v-82810f83"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/mine/setting/setting.vue"]]); - const _sfc_main$3i = { + const PagesMineSettingSetting = /* @__PURE__ */ _export_sfc(_sfc_main$3m, [["render", _sfc_render$3l], ["__scopeId", "data-v-82810f83"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/mine/setting/setting.vue"]]); + const _sfc_main$3l = { __name: "userinfo", setup(__props, { expose: __expose }) { __expose(); @@ -41679,7 +41626,7 @@ ${i3} return __returned__; } }; - function _sfc_render$3h(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$3k(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "appbw" }, [ _Vue.createElementVNode("view", { class: "bgBox pr" }, [ @@ -41836,8 +41783,8 @@ ${i3} ]) ]); } - const PagesMineUserinfo = /* @__PURE__ */ _export_sfc(_sfc_main$3i, [["render", _sfc_render$3h], ["__scopeId", "data-v-4ef92957"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/mine/userinfo.vue"]]); - const _sfc_main$3h = { + const PagesMineUserinfo = /* @__PURE__ */ _export_sfc(_sfc_main$3l, [["render", _sfc_render$3k], ["__scopeId", "data-v-4ef92957"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/mine/userinfo.vue"]]); + const _sfc_main$3k = { __name: "index", setup(__props, { expose: __expose }) { __expose(); @@ -41932,7 +41879,7 @@ ${i3} return __returned__; } }; - function _sfc_render$3g(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$3j(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_swipe_action_item = resolveEasycom(_Vue.resolveDynamicComponent("uni-swipe-action-item"), __easycom_1$1); const _component_uni_swipe_action = resolveEasycom(_Vue.resolveDynamicComponent("uni-swipe-action"), __easycom_2); return _Vue.openBlock(), _Vue.createElementBlock( @@ -42043,9 +41990,9 @@ ${i3} /* STABLE_FRAGMENT */ ); } - const PagesMineSwitchAccountsIndex = /* @__PURE__ */ _export_sfc(_sfc_main$3h, [["render", _sfc_render$3g], ["__scopeId", "data-v-17e0bf67"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/mine/switch-accounts/index.vue"]]); + const PagesMineSwitchAccountsIndex = /* @__PURE__ */ _export_sfc(_sfc_main$3k, [["render", _sfc_render$3j], ["__scopeId", "data-v-17e0bf67"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/mine/switch-accounts/index.vue"]]); const minePayUse = "/static/mine-pay-use.png"; - const _sfc_main$3g = { + const _sfc_main$3j = { __name: "usePay", setup(__props, { expose: __expose }) { __expose(); @@ -42068,7 +42015,7 @@ ${i3} return __returned__; } }; - function _sfc_render$3f(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$3i(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_section = resolveEasycom(_Vue.resolveDynamicComponent("uni-section"), __easycom_0$5); return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "jy-pay-use pr" }, [ _Vue.createCommentVNode(" 先付后用 "), @@ -42121,9 +42068,9 @@ ${i3} ) ]); } - const PagesMineSettingUsePay = /* @__PURE__ */ _export_sfc(_sfc_main$3g, [["render", _sfc_render$3f], ["__scopeId", "data-v-5afdb96b"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/mine/setting/usePay.vue"]]); + const PagesMineSettingUsePay = /* @__PURE__ */ _export_sfc(_sfc_main$3j, [["render", _sfc_render$3i], ["__scopeId", "data-v-5afdb96b"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/mine/setting/usePay.vue"]]); const _imports_0$b = "/static/mineAuth.png"; - const _sfc_main$3f = { + const _sfc_main$3i = { __name: "realname", setup(__props, { expose: __expose }) { __expose(); @@ -42219,7 +42166,7 @@ ${i3} return __returned__; } }; - function _sfc_render$3e(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$3h(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock( _Vue.Fragment, null, @@ -42319,7 +42266,7 @@ ${i3} /* STABLE_FRAGMENT, DEV_ROOT_FRAGMENT */ ); } - const PagesMineRealname = /* @__PURE__ */ _export_sfc(_sfc_main$3f, [["render", _sfc_render$3e], ["__scopeId", "data-v-f67ecfd7"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/mine/realname.vue"]]); + const PagesMineRealname = /* @__PURE__ */ _export_sfc(_sfc_main$3i, [["render", _sfc_render$3h], ["__scopeId", "data-v-f67ecfd7"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/mine/realname.vue"]]); var AreaJson = [ { "name": "北京", @@ -53651,7 +53598,7 @@ ${i3} let provinces = getProvinces(); getMyCity(index[0]); getMyCity(index[0], index[1]); - const _sfc_main$3e = { + const _sfc_main$3h = { mixins: [{ methods: { setData: function(obj, callback) { @@ -53828,7 +53775,7 @@ ${i3} } } }; - function _sfc_render$3d(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$3g(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock("view", null, [ _Vue.createCommentVNode("自定义地址选择器"), _Vue.withDirectives(_Vue.createElementVNode( @@ -53932,8 +53879,8 @@ ${i3} ) ]); } - const pickRegions = /* @__PURE__ */ _export_sfc(_sfc_main$3e, [["render", _sfc_render$3d], ["__scopeId", "data-v-8fa8ca74"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/mine/delivery-address/components/jy-pick-regions/index.vue"]]); - const _sfc_main$3d = { + const pickRegions = /* @__PURE__ */ _export_sfc(_sfc_main$3h, [["render", _sfc_render$3g], ["__scopeId", "data-v-8fa8ca74"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/mine/delivery-address/components/jy-pick-regions/index.vue"]]); + const _sfc_main$3g = { __name: "index", setup(__props, { expose: __expose }) { __expose(); @@ -54072,7 +54019,7 @@ ${i3} return __returned__; } }; - function _sfc_render$3c(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$3f(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_tag = resolveEasycom(_Vue.resolveDynamicComponent("uni-tag"), __easycom_0$4); const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); const _component_uni_forms_item = resolveEasycom(_Vue.resolveDynamicComponent("uni-forms-item"), __easycom_2$1); @@ -54318,9 +54265,9 @@ ${i3} /* STABLE_FRAGMENT */ ); } - const PagesMineDeliveryAddressIndex = /* @__PURE__ */ _export_sfc(_sfc_main$3d, [["render", _sfc_render$3c], ["__scopeId", "data-v-0f0d4de9"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/mine/delivery-address/index.vue"]]); + const PagesMineDeliveryAddressIndex = /* @__PURE__ */ _export_sfc(_sfc_main$3g, [["render", _sfc_render$3f], ["__scopeId", "data-v-0f0d4de9"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/mine/delivery-address/index.vue"]]); const _imports_0$a = "/static/lock.png"; - const _sfc_main$3c = { + const _sfc_main$3f = { __name: "collectAdd", setup(__props, { expose: __expose }) { const { @@ -54418,7 +54365,7 @@ ${i3} return __returned__; } }; - function _sfc_render$3b(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$3e(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); const _component_uni_popup = resolveEasycom(_Vue.resolveDynamicComponent("uni-popup"), __easycom_0$6); return _Vue.openBlock(), _Vue.createBlock( @@ -54516,8 +54463,8 @@ ${i3} /* NEED_PATCH */ ); } - const collectAdd = /* @__PURE__ */ _export_sfc(_sfc_main$3c, [["render", _sfc_render$3b], ["__scopeId", "data-v-13d7550c"], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/index/collectAdd.vue"]]); - const _sfc_main$3b = { + const collectAdd = /* @__PURE__ */ _export_sfc(_sfc_main$3f, [["render", _sfc_render$3e], ["__scopeId", "data-v-13d7550c"], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/index/collectAdd.vue"]]); + const _sfc_main$3e = { __name: "collectList", emits: ["handleItem"], setup(__props, { expose: __expose, emit: __emit }) { @@ -54648,7 +54595,7 @@ ${i3} return __returned__; } }; - function _sfc_render$3a(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$3d(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); const _component_uni_swipe_action_item = resolveEasycom(_Vue.resolveDynamicComponent("uni-swipe-action-item"), __easycom_1$1); const _component_uni_swipe_action = resolveEasycom(_Vue.resolveDynamicComponent("uni-swipe-action"), __easycom_2); @@ -54741,9 +54688,9 @@ ${i3} /* STABLE_FRAGMENT */ ); } - const collectList = /* @__PURE__ */ _export_sfc(_sfc_main$3b, [["render", _sfc_render$3a], ["__scopeId", "data-v-f4045026"], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/index/collectList.vue"]]); + const collectList = /* @__PURE__ */ _export_sfc(_sfc_main$3e, [["render", _sfc_render$3d], ["__scopeId", "data-v-f4045026"], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/index/collectList.vue"]]); const _imports_1$4 = "/static/amount.png"; - const _sfc_main$3a = { + const _sfc_main$3d = { __name: "videoMenu", props: /* @__PURE__ */ _Vue.mergeModels({ // 列表数据 @@ -54827,7 +54774,7 @@ ${i3} return __returned__; } }; - function _sfc_render$39(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$3c(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); return _Vue.openBlock(), _Vue.createElementBlock("view", null, [ _Vue.createCommentVNode(" 视频菜单 "), @@ -54899,8 +54846,8 @@ ${i3} }, null, 40, ["src"]) ]); } - const videoMenu = /* @__PURE__ */ _export_sfc(_sfc_main$3a, [["render", _sfc_render$39], ["__scopeId", "data-v-4c784ec8"], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/index/videoMenu.vue"]]); - const _sfc_main$39 = { + const videoMenu = /* @__PURE__ */ _export_sfc(_sfc_main$3d, [["render", _sfc_render$3c], ["__scopeId", "data-v-4c784ec8"], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/index/videoMenu.vue"]]); + const _sfc_main$3c = { __name: "product", setup(__props, { expose: __expose }) { const list = _Vue.reactive({ @@ -54969,7 +54916,7 @@ ${i3} return __returned__; } }; - function _sfc_render$38(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$3b(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "" }, [ _Vue.createVNode($setup["videoMenu"], { list: $setup.list.data, @@ -54977,8 +54924,8 @@ ${i3} }, null, 8, ["list"]) ]); } - const product = /* @__PURE__ */ _export_sfc(_sfc_main$39, [["render", _sfc_render$38], ["__scopeId", "data-v-6708248a"], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/mine/product.vue"]]); - const _sfc_main$38 = { + const product = /* @__PURE__ */ _export_sfc(_sfc_main$3c, [["render", _sfc_render$3b], ["__scopeId", "data-v-6708248a"], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/mine/product.vue"]]); + const _sfc_main$3b = { __name: "like", setup(__props, { expose: __expose }) { const list = _Vue.reactive({ @@ -55050,17 +54997,17 @@ ${i3} return __returned__; } }; - function _sfc_render$37(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$3a(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "" }, [ _Vue.createVNode($setup["videoMenu"], { list: $setup.list.data }, null, 8, ["list"]) ]); } - const like = /* @__PURE__ */ _export_sfc(_sfc_main$38, [["render", _sfc_render$37], ["__scopeId", "data-v-3884542e"], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/mine/like.vue"]]); + const like = /* @__PURE__ */ _export_sfc(_sfc_main$3b, [["render", _sfc_render$3a], ["__scopeId", "data-v-3884542e"], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/mine/like.vue"]]); const _imports_0$9 = "/static/shop.png"; const _imports_2$2 = "/static/userMenu.png"; - const _sfc_main$37 = { + const _sfc_main$3a = { __name: "homepage", setup(__props, { expose: __expose }) { __expose(); @@ -55192,7 +55139,7 @@ ${i3} return __returned__; } }; - function _sfc_render$36(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$39(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); const _component_footerMenu = resolveEasycom(_Vue.resolveDynamicComponent("footerMenu"), footerMneu); const _component_uni_popup = resolveEasycom(_Vue.resolveDynamicComponent("uni-popup"), __easycom_0$6); @@ -55592,12 +55539,12 @@ ${i3} /* STABLE_FRAGMENT */ ); } - const PagesMineHomepage = /* @__PURE__ */ _export_sfc(_sfc_main$37, [["render", _sfc_render$36], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/mine/homepage.vue"]]); + const PagesMineHomepage = /* @__PURE__ */ _export_sfc(_sfc_main$3a, [["render", _sfc_render$39], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/mine/homepage.vue"]]); const block0$1 = (Comp) => { (Comp.$renderjs || (Comp.$renderjs = [])).push("video"); (Comp.$renderjsModules || (Comp.$renderjsModules = {}))["video"] = "ddd4bc48"; }; - const _sfc_main$36 = { + const _sfc_main$39 = { __name: "video", setup(__props, { expose: __expose }) { __expose(); @@ -55875,7 +55822,7 @@ ${i3} return __returned__; } }; - function _sfc_render$35(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$38(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); const _component_uni_popup = resolveEasycom(_Vue.resolveDynamicComponent("uni-popup"), __easycom_0$6); return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "appbw" }, [ @@ -56281,9 +56228,9 @@ ${i3} ]); } if (typeof block0$1 === "function") - block0$1(_sfc_main$36); - const PagesReleaseVideo = /* @__PURE__ */ _export_sfc(_sfc_main$36, [["render", _sfc_render$35], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/release/video.vue"]]); - const _sfc_main$35 = { + block0$1(_sfc_main$39); + const PagesReleaseVideo = /* @__PURE__ */ _export_sfc(_sfc_main$39, [["render", _sfc_render$38], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/release/video.vue"]]); + const _sfc_main$38 = { __name: "wallet", setup(__props, { expose: __expose }) { __expose(); @@ -56346,7 +56293,7 @@ ${i3} return __returned__; } }; - function _sfc_render$34(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$37(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); const _component_uni_popup = resolveEasycom(_Vue.resolveDynamicComponent("uni-popup"), __easycom_0$6); return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "app plr60" }, [ @@ -56487,8 +56434,8 @@ ${i3} ) ]); } - const PagesIndexWalletWallet = /* @__PURE__ */ _export_sfc(_sfc_main$35, [["render", _sfc_render$34], ["__scopeId", "data-v-73a29043"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/wallet/wallet.vue"]]); - const _sfc_main$34 = { + const PagesIndexWalletWallet = /* @__PURE__ */ _export_sfc(_sfc_main$38, [["render", _sfc_render$37], ["__scopeId", "data-v-73a29043"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/wallet/wallet.vue"]]); + const _sfc_main$37 = { __name: "myTeam", setup(__props, { expose: __expose }) { __expose(); @@ -56545,7 +56492,7 @@ ${i3} return __returned__; } }; - function _sfc_render$33(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$36(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "appbw plr50 c333 f36" }, [ _Vue.createElementVNode("view", { class: "qrBox ver" }, [ @@ -56726,12 +56673,12 @@ ${i3} _Vue.createElementVNode("view", { class: "fill" }) ]); } - const PagesIndexMyTeam = /* @__PURE__ */ _export_sfc(_sfc_main$34, [["render", _sfc_render$33], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/myTeam.vue"]]); + const PagesIndexMyTeam = /* @__PURE__ */ _export_sfc(_sfc_main$37, [["render", _sfc_render$36], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/myTeam.vue"]]); const _imports_3$4 = "/static/indexLike.png"; const _imports_0$8 = "/static/indexLike1.png"; const _imports_5$1 = "/static/indexMsg.png"; const _imports_6 = "/static/indexCollect.png"; - const _sfc_main$33 = { + const _sfc_main$36 = { __name: "search", setup(__props, { expose: __expose }) { __expose(); @@ -56938,7 +56885,7 @@ ${i3} return __returned__; } }; - function _sfc_render$32(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$35(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "appbw" }, [ _Vue.createElementVNode("view", { class: "ghost" }, [ @@ -57280,13 +57227,13 @@ ${i3} )) ]); } - const PagesIndexSearch = /* @__PURE__ */ _export_sfc(_sfc_main$33, [["render", _sfc_render$32], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/search.vue"]]); + const PagesIndexSearch = /* @__PURE__ */ _export_sfc(_sfc_main$36, [["render", _sfc_render$35], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/search.vue"]]); const _imports_0$7 = "/static/shopwindow.png"; const _imports_1$3 = "/static/copy.png"; const _imports_2$1 = "/static/email.png"; const _imports_3$3 = "/static/report.png"; const _imports_4$2 = "/static/blackList.png"; - const _sfc_main$32 = { + const _sfc_main$35 = { __name: "videoHome", setup(__props, { expose: __expose }) { __expose(); @@ -57474,7 +57421,7 @@ ${i3} return __returned__; } }; - function _sfc_render$31(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$34(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); const _component_uni_popup = resolveEasycom(_Vue.resolveDynamicComponent("uni-popup"), __easycom_0$6); return _Vue.openBlock(), _Vue.createElementBlock( @@ -57752,9 +57699,9 @@ ${i3} /* STABLE_FRAGMENT */ ); } - const PagesIndexVideoHome = /* @__PURE__ */ _export_sfc(_sfc_main$32, [["render", _sfc_render$31], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/videoHome.vue"]]); + const PagesIndexVideoHome = /* @__PURE__ */ _export_sfc(_sfc_main$35, [["render", _sfc_render$34], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/videoHome.vue"]]); const _imports_0$6 = "/static/uploadCartoon.png"; - const _sfc_main$31 = { + const _sfc_main$34 = { __name: "report", setup(__props, { expose: __expose }) { __expose(); @@ -57919,7 +57866,7 @@ ${i3} return __returned__; } }; - function _sfc_render$30(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$33(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); const _component_uni_popup = resolveEasycom(_Vue.resolveDynamicComponent("uni-popup"), __easycom_0$6); return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "appbw" }, [ @@ -58127,8 +58074,8 @@ ${i3} ) ]); } - const PagesIndexReport = /* @__PURE__ */ _export_sfc(_sfc_main$31, [["render", _sfc_render$30], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/report.vue"]]); - const _sfc_main$30 = { + const PagesIndexReport = /* @__PURE__ */ _export_sfc(_sfc_main$34, [["render", _sfc_render$33], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/report.vue"]]); + const _sfc_main$33 = { __name: "collectsVideo", setup(__props, { expose: __expose }) { __expose(); @@ -58214,7 +58161,7 @@ ${i3} return __returned__; } }; - function _sfc_render$2$(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$32(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "appbw" }, [ _Vue.createElementVNode("view", { class: "product mt30" }, [ _Vue.createElementVNode("view", { class: "title plr30 c333 f32" }, [ @@ -58236,8 +58183,8 @@ ${i3} ]) ]); } - const PagesMineCollectsVideo = /* @__PURE__ */ _export_sfc(_sfc_main$30, [["render", _sfc_render$2$], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/mine/collectsVideo.vue"]]); - const _sfc_main$2$ = { + const PagesMineCollectsVideo = /* @__PURE__ */ _export_sfc(_sfc_main$33, [["render", _sfc_render$32], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/mine/collectsVideo.vue"]]); + const _sfc_main$32 = { __name: "promotion", setup(__props, { expose: __expose }) { __expose(); @@ -58317,7 +58264,7 @@ ${i3} return __returned__; } }; - function _sfc_render$2_(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$31(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "appbw" }, [ _Vue.createElementVNode("view", { class: "product mt30" }, [ _Vue.createElementVNode("view", { class: "title plr30 c333 f32" }, [ @@ -58343,9 +58290,9 @@ ${i3} ]) ]); } - const PagesIndexPromotion = /* @__PURE__ */ _export_sfc(_sfc_main$2$, [["render", _sfc_render$2_], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/promotion.vue"]]); + const PagesIndexPromotion = /* @__PURE__ */ _export_sfc(_sfc_main$32, [["render", _sfc_render$31], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/promotion.vue"]]); const _imports_0$5 = "/static/myShare.png"; - const _sfc_main$2_ = { + const _sfc_main$31 = { __name: "myQrCode", setup(__props, { expose: __expose }) { __expose(); @@ -58374,7 +58321,7 @@ ${i3} return __returned__; } }; - function _sfc_render$2Z(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$30(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "appbw df fdc aic" }, [ _Vue.createElementVNode("view", { class: "qrBox pr" }, [ _Vue.createElementVNode("image", { @@ -58396,8 +58343,8 @@ ${i3} ) ]); } - const PagesIndexMyQrCode = /* @__PURE__ */ _export_sfc(_sfc_main$2_, [["render", _sfc_render$2Z], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/myQrCode.vue"]]); - const _sfc_main$2Z = { + const PagesIndexMyQrCode = /* @__PURE__ */ _export_sfc(_sfc_main$31, [["render", _sfc_render$30], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/myQrCode.vue"]]); + const _sfc_main$30 = { __name: "deal", setup(__props, { expose: __expose }) { __expose(); @@ -58521,7 +58468,7 @@ ${i3} return __returned__; } }; - function _sfc_render$2Y(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$2$(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "app" }, [ _Vue.createCommentVNode(" 顶部菜单栏 "), _Vue.createVNode($setup["apex"], { title: "我的交易" }, { @@ -58644,8 +58591,8 @@ ${i3} ]) ]); } - const PagesIndexDeal = /* @__PURE__ */ _export_sfc(_sfc_main$2Z, [["render", _sfc_render$2Y], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/deal.vue"]]); - const _sfc_main$2Y = { + const PagesIndexDeal = /* @__PURE__ */ _export_sfc(_sfc_main$30, [["render", _sfc_render$2$], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/deal.vue"]]); + const _sfc_main$2$ = { __name: "task", setup(__props, { expose: __expose }) { __expose(); @@ -58672,7 +58619,7 @@ ${i3} return __returned__; } }; - function _sfc_render$2X(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$2_(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "task pr mtb30 ptb20 plr40 f28 bFFFBF3 br20" }, [ $setup.task.taskType === 0 ? (_Vue.openBlock(), _Vue.createElementBlock("view", { key: 0, @@ -58706,13 +58653,97 @@ ${i3} }, "优先")) : _Vue.createCommentVNode("v-if", true) ]); } - const task = /* @__PURE__ */ _export_sfc(_sfc_main$2Y, [["render", _sfc_render$2X], ["__scopeId", "data-v-326abef1"], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/index/task.vue"]]); + const task = /* @__PURE__ */ _export_sfc(_sfc_main$2$, [["render", _sfc_render$2_], ["__scopeId", "data-v-326abef1"], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/index/task.vue"]]); + const _sfc_main$2_ = { + __name: "payPwd", + setup(__props, { expose: __expose }) { + const { + proxy: proxy2 + } = _Vue.getCurrentInstance(); + const emit = ["defineEmits"]; + const store2 = useStore(); + const pwd = _Vue.ref(""); + const userinfo = _Vue.computed(() => { + return store2.state.userinfo; + }); + function open() { + if (userinfo.value.issecondLevelcipher == 1) { + proxy2.$refs.pwd.open(); + } + } + function close() { + proxy2.$refs.pwd.open(); + } + function handleConfirm() { + emit("confirm", CryptoJS.MD5(pwd.value).toString()); + } + __expose({ + open, + close + }); + const __returned__ = { proxy: proxy2, emit, store: store2, pwd, userinfo, open, close, handleConfirm, computed: _Vue.computed, ref: _Vue.ref, getCurrentInstance: _Vue.getCurrentInstance, get useStore() { + return useStore; + }, get util() { + return util$1; + }, get CryptoJS() { + return CryptoJS; + } }; + Object.defineProperty(__returned__, "__isScriptSetup", { enumerable: false, value: true }); + return __returned__; + } + }; + function _sfc_render$2Z(_ctx, _cache, $props, $setup, $data, $options) { + const _component_uni_popup = resolveEasycom(_Vue.resolveDynamicComponent("uni-popup"), __easycom_0$6); + return _Vue.openBlock(), _Vue.createBlock( + _component_uni_popup, + { + ref: "pwd", + type: "center" + }, + { + default: _Vue.withCtx(() => [ + _Vue.createElementVNode("view", { class: "pwdAlt" }, [ + _Vue.createElementVNode("view", { class: "inputBox mtb20 plr30" }, [ + _Vue.withDirectives(_Vue.createElementVNode( + "input", + { + "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => $setup.pwd = $event), + type: "number", + placeholder: "输入二级密码" + }, + null, + 512 + /* NEED_PATCH */ + ), [ + [_Vue.vModelText, $setup.pwd] + ]) + ]), + _Vue.createElementVNode("view", { class: "rows" }, [ + _Vue.createElementVNode("view", { + class: "btn sm cancel plr40", + onClick: _cache[1] || (_cache[1] = ($event) => _ctx.$refs.pwd.close()) + }, "取消"), + _Vue.createElementVNode("view", { + class: "btn sm black plr40", + onClick: $setup.handleConfirm + }, "验证") + ]) + ]) + ]), + _: 1 + /* STABLE */ + }, + 512 + /* NEED_PATCH */ + ); + } + const payPwd = /* @__PURE__ */ _export_sfc(_sfc_main$2_, [["render", _sfc_render$2Z], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/mine/payPwd.vue"]]); const _imports_0$4 = "/static/sapling.png"; const _imports_3$2 = "/static/tree.png"; const _imports_5 = "/static/fruit.png"; const _imports_3$1 = "/static/dealMid.png"; const _imports_4$1 = "/static/dealUser.png"; - const _sfc_main$2X = { + const _sfc_main$2Z = { __name: "durian", setup(__props, { expose: __expose }) { __expose(); @@ -58721,15 +58752,24 @@ ${i3} } = _Vue.getCurrentInstance(); const store2 = useStore(); const form = _Vue.reactive({ + // 交易对方的用户ID + targetUserId: "", + // 账户 account: "", - sellNum: "" + // 榴莲果数量 + fruitAmount: "", + // 姓名首字 + first: "", + // 姓名 + name: "", + // + secondPassword: "" }); const viewData = _Vue.ref({ seconds: 0 }); const userinfo = _Vue.computed(() => { - let result = store2.state.userinfo; - return result; + return store2.state.userinfo; }); const progress = _Vue.computed(() => { let result = viewData.value.seconds; @@ -58737,24 +58777,103 @@ ${i3} return result; }); const purse = _Vue.computed(() => { - let result = store2.state.purse || {}; - return result; + return store2.state.purse || {}; }); onReady(() => { }); onLoad(() => { util$1.getPurse(); }); - function transfer() { - durian.transfer({ + function handleSubmit() { + if (!form.account) { + util$1.alert("请输入账号"); + return; + } + if (!form.fruitAmount) { + util$1.alert("请输入榴莲果转账数量"); + return; + } + api.mine.getUserDataByAccount({ query: { + account: form.account + } + }).then((rs2) => { + if (rs2.code === 200) { + const result = rs2.data; + form.targetUserId = result.userName; + form.name = result.userRealName.slice(1, result.userRealName.length); + proxy2.$refs.payee.open(); + return; + } + util$1.alert({ + content: rs2.msg, + showCancel: false + }); + }); + } + function handlePayeeConfirm() { + if (!form.first) { + util$1.alert("请输入对方姓名首字母"); + return; + } + api.durian.nameComparison({ + query: { + // 对方账号 account: form.account, - sellNum: form.sellNum + // 对方姓名 + name: `${form.first}${form.name}` + } + }).then((rs2) => { + if (rs2.code == 200) { + if (rs2.data) + proxy2.$refs.payPwd.open(); + return; + } + util$1.alert({ + content: rs2.msg, + showCancel: false + }); + }); + } + function handlePwdConfirm() { + if (!form.first) { + util$1.alert("请输入对方姓名首字母"); + return; + } + if (!form.first) { + util$1.alert("请输入对方姓名首字母"); + return; + } + if (!form.account) { + util$1.alert("请输入账号"); + return; + } + if (!form.fruitAmount) { + util$1.alert("请输入榴莲果转账数量"); + return; + } + api.durian.consume({ + data: { + // + properties: { + // 交易对方的用户id + targetUserId: form.targetUserId, + // 交易类型 + transactionType: 10, + // 榴莲果交易数量 + fruitAmount: form.fruitAmount + }, + // 对方姓名 + name: `${form.first}${form.name}`, + // 对方账号 + account: form.account, + // 二级密码 + secondPassword: form.secondPassword } }).then((rs2) => { if (rs2.code === 200) { util$1.alert("操作成功"); - util$1.getUserinfo(); + util$1.getPurse(); return; } util$1.alert({ @@ -58768,7 +58887,7 @@ ${i3} url: path }); } - const __returned__ = { proxy: proxy2, store: store2, form, viewData, userinfo, progress, purse, transfer, navigateToPage, get useStore() { + const __returned__ = { proxy: proxy2, store: store2, form, viewData, userinfo, progress, purse, handleSubmit, handlePayeeConfirm, handlePwdConfirm, navigateToPage, get useStore() { return useStore; }, onMounted: _Vue.onMounted, ref: _Vue.ref, reactive: _Vue.reactive, computed: _Vue.computed, getCurrentInstance: _Vue.getCurrentInstance, watch: _Vue.watch, get onLoad() { return onLoad; @@ -58780,16 +58899,14 @@ ${i3} return util$1; }, get task() { return task; - }, get intergralApi() { - return intergral; - }, get durianlApi() { - return durian; - } }; + }, get api() { + return api; + }, payPwd }; Object.defineProperty(__returned__, "__isScriptSetup", { enumerable: false, value: true }); return __returned__; } }; - function _sfc_render$2W(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$2Y(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_popup = resolveEasycom(_Vue.resolveDynamicComponent("uni-popup"), __easycom_0$6); return _Vue.openBlock(), _Vue.createElementBlock( _Vue.Fragment, @@ -58948,14 +59065,19 @@ ${i3} 512 /* NEED_PATCH */ ), [ - [_Vue.vModelText, $setup.form.account] + [ + _Vue.vModelText, + $setup.form.account, + void 0, + { trim: true } + ] ]) ]), _Vue.createElementVNode("view", { class: "inputBox mtb20 plr30" }, [ _Vue.withDirectives(_Vue.createElementVNode( "input", { - "onUpdate:modelValue": _cache[6] || (_cache[6] = ($event) => $setup.form.sellNum = $event), + "onUpdate:modelValue": _cache[6] || (_cache[6] = ($event) => $setup.form.fruitAmount = $event), type: "number", placeholder: "输入数量" }, @@ -58963,17 +59085,21 @@ ${i3} 512 /* NEED_PATCH */ ), [ - [_Vue.vModelText, $setup.form.sellNum] + [ + _Vue.vModelText, + $setup.form.fruitAmount, + void 0, + { trim: true } + ] ]) ]), - _Vue.createElementVNode("view", { class: "hint mtb30 tac f20" }, [ + _Vue.createElementVNode("view", { class: "hint mtb30 tac f22" }, [ _Vue.createElementVNode("view", null, "销毁15%"), - _Vue.createCommentVNode(" 互转成功之后冻结24h "), _Vue.createElementVNode("view", null, "(最低x起转)") ]), _Vue.createElementVNode("view", { class: "button btn lg bar black", - onClick: $setup.transfer + onClick: $setup.handleSubmit }, "转移") ]) ]), @@ -58982,14 +59108,84 @@ ${i3} }, 512 /* NEED_PATCH */ + ), + _Vue.createCommentVNode(" 收款方 "), + _Vue.createVNode( + _component_uni_popup, + { + ref: "payee", + type: "center" + }, + { + default: _Vue.withCtx(() => [ + _Vue.createElementVNode("view", { class: "payee popMid ver ptb40 plr60 bfff br30" }, [ + _Vue.createElementVNode("view", { class: "title tac c333 f28" }, "收款方确认"), + _Vue.createElementVNode("view", { class: "mtb20 f28" }, "请补全对方姓名首字,以防转错"), + _Vue.createElementVNode("view", { class: "inputBox rows mauto mtb20 plr30" }, [ + _Vue.withDirectives(_Vue.createElementVNode( + "input", + { + class: "first", + "onUpdate:modelValue": _cache[7] || (_cache[7] = ($event) => $setup.form.first = $event), + type: "text", + placeholder: "" + }, + null, + 512 + /* NEED_PATCH */ + ), [ + [ + _Vue.vModelText, + $setup.form.first, + void 0, + { trim: true } + ] + ]), + _Vue.createElementVNode("view", { class: "mlr20" }, "*"), + _Vue.createElementVNode( + "view", + { class: "f1 tar" }, + _Vue.toDisplayString($setup.form.name), + 1 + /* TEXT */ + ) + ]), + _Vue.createElementVNode("view", { class: "rows" }, [ + _Vue.createElementVNode("view", { + class: "btn sm cancel plr40", + onClick: _cache[8] || (_cache[8] = ($event) => _ctx.$refs.payee.close()) + }, "取消"), + _Vue.createElementVNode("view", { + class: "btn sm black plr40", + onClick: $setup.handlePayeeConfirm + }, "验证") + ]) + ]) + ]), + _: 1 + /* STABLE */ + }, + 512 + /* NEED_PATCH */ + ), + _Vue.createCommentVNode(" 二级支付 "), + _Vue.createVNode( + $setup["payPwd"], + { + ref: "payPwd", + onConfirm: $setup.handlePwdConfirm + }, + null, + 512 + /* NEED_PATCH */ ) ], 64 /* STABLE_FRAGMENT */ ); } - const PagesIndexDurian = /* @__PURE__ */ _export_sfc(_sfc_main$2X, [["render", _sfc_render$2W], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/durian.vue"]]); - const _sfc_main$2W = { + const PagesIndexDurian = /* @__PURE__ */ _export_sfc(_sfc_main$2Z, [["render", _sfc_render$2Y], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/durian.vue"]]); + const _sfc_main$2Y = { __name: "durainActivation", setup(__props, { expose: __expose }) { __expose(); @@ -59025,7 +59221,7 @@ ${i3} return __returned__; } }; - function _sfc_render$2V(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$2X(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "appbw" }, [ _Vue.createCommentVNode(" "), _Vue.createElementVNode("view", { class: "list mlr40" }, [ @@ -59072,8 +59268,8 @@ ${i3} }) ]); } - const PagesIndexDurainActivation = /* @__PURE__ */ _export_sfc(_sfc_main$2W, [["render", _sfc_render$2V], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/durainActivation.vue"]]); - const _sfc_main$2V = { + const PagesIndexDurainActivation = /* @__PURE__ */ _export_sfc(_sfc_main$2Y, [["render", _sfc_render$2X], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/durainActivation.vue"]]); + const _sfc_main$2X = { __name: "trade", setup(__props, { expose: __expose }) { __expose(); @@ -59268,7 +59464,7 @@ ${i3} return __returned__; } }; - function _sfc_render$2U(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$2W(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); const _component_uni_popup = resolveEasycom(_Vue.resolveDynamicComponent("uni-popup"), __easycom_0$6); return _Vue.openBlock(), _Vue.createElementBlock( @@ -59627,8 +59823,8 @@ ${i3} /* STABLE_FRAGMENT */ ); } - const PagesIndexTrade = /* @__PURE__ */ _export_sfc(_sfc_main$2V, [["render", _sfc_render$2U], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/trade.vue"]]); - const _sfc_main$2U = { + const PagesIndexTrade = /* @__PURE__ */ _export_sfc(_sfc_main$2X, [["render", _sfc_render$2W], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/trade.vue"]]); + const _sfc_main$2W = { __name: "orchard", setup(__props, { expose: __expose }) { __expose(); @@ -59731,7 +59927,7 @@ ${i3} return __returned__; } }; - function _sfc_render$2T(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$2V(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_popup = resolveEasycom(_Vue.resolveDynamicComponent("uni-popup"), __easycom_0$6); return _Vue.openBlock(), _Vue.createElementBlock( _Vue.Fragment, @@ -59896,8 +60092,8 @@ ${i3} /* STABLE_FRAGMENT */ ); } - const PagesIndexOrchard = /* @__PURE__ */ _export_sfc(_sfc_main$2U, [["render", _sfc_render$2T], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/orchard.vue"]]); - const _sfc_main$2T = { + const PagesIndexOrchard = /* @__PURE__ */ _export_sfc(_sfc_main$2W, [["render", _sfc_render$2V], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/orchard.vue"]]); + const _sfc_main$2V = { __name: "durianLog", setup(__props, { expose: __expose }) { __expose(); @@ -59976,7 +60172,7 @@ ${i3} return __returned__; } }; - function _sfc_render$2S(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$2U(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "app" }, [ _Vue.createElementVNode("view", { class: "list" }, [ (_Vue.openBlock(true), _Vue.createElementBlock( @@ -60026,8 +60222,8 @@ ${i3} ]) ]); } - const PagesIndexDurianLog = /* @__PURE__ */ _export_sfc(_sfc_main$2T, [["render", _sfc_render$2S], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/durianLog.vue"]]); - const _sfc_main$2S = { + const PagesIndexDurianLog = /* @__PURE__ */ _export_sfc(_sfc_main$2V, [["render", _sfc_render$2U], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/durianLog.vue"]]); + const _sfc_main$2U = { __name: "push", setup(__props, { expose: __expose }) { __expose(); @@ -60242,7 +60438,7 @@ ${i3} return __returned__; } }; - function _sfc_render$2R(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$2T(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); const _component_uni_popup = resolveEasycom(_Vue.resolveDynamicComponent("uni-popup"), __easycom_0$6); return _Vue.openBlock(), _Vue.createElementBlock( @@ -60593,8 +60789,8 @@ ${i3} /* STABLE_FRAGMENT */ ); } - const PagesIndexDataCenterPush = /* @__PURE__ */ _export_sfc(_sfc_main$2S, [["render", _sfc_render$2R], ["__scopeId", "data-v-f6401583"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/dataCenter/push.vue"]]); - const _sfc_main$2R = { + const PagesIndexDataCenterPush = /* @__PURE__ */ _export_sfc(_sfc_main$2U, [["render", _sfc_render$2T], ["__scopeId", "data-v-f6401583"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/dataCenter/push.vue"]]); + const _sfc_main$2T = { __name: "pushVideoCollects", setup(__props, { expose: __expose }) { __expose(); @@ -60666,7 +60862,7 @@ ${i3} return __returned__; } }; - function _sfc_render$2Q(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$2S(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); const _component_uni_popup = resolveEasycom(_Vue.resolveDynamicComponent("uni-popup"), __easycom_0$6); return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "appbw" }, [ @@ -60746,8 +60942,8 @@ ${i3} ) ]); } - const PagesIndexDataCenterPushVideoCollects = /* @__PURE__ */ _export_sfc(_sfc_main$2R, [["render", _sfc_render$2Q], ["__scopeId", "data-v-3fbaed93"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/dataCenter/pushVideoCollects.vue"]]); - const _sfc_main$2Q = { + const PagesIndexDataCenterPushVideoCollects = /* @__PURE__ */ _export_sfc(_sfc_main$2T, [["render", _sfc_render$2S], ["__scopeId", "data-v-3fbaed93"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/dataCenter/pushVideoCollects.vue"]]); + const _sfc_main$2S = { __name: "register", setup(__props, { expose: __expose }) { __expose(); @@ -60818,7 +61014,7 @@ ${i3} return __returned__; } }; - function _sfc_render$2P(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$2R(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "appbw" }, [ _Vue.createElementVNode("view", { class: "container" }, [ @@ -60946,8 +61142,8 @@ ${i3} ]) ]); } - const PagesLoginRegister = /* @__PURE__ */ _export_sfc(_sfc_main$2Q, [["render", _sfc_render$2P], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/login/register.vue"]]); - const _sfc_main$2P = { + const PagesLoginRegister = /* @__PURE__ */ _export_sfc(_sfc_main$2S, [["render", _sfc_render$2R], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/login/register.vue"]]); + const _sfc_main$2R = { __name: "forget", setup(__props, { expose: __expose }) { __expose(); @@ -61016,7 +61212,7 @@ ${i3} return __returned__; } }; - function _sfc_render$2O(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$2Q(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "appbw" }, [ _Vue.createElementVNode("view", { class: "container" }, [ _Vue.createElementVNode("view", { class: "logo mauto" }, [ @@ -61116,8 +61312,8 @@ ${i3} ]) ]); } - const PagesLoginForget = /* @__PURE__ */ _export_sfc(_sfc_main$2P, [["render", _sfc_render$2O], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/login/forget.vue"]]); - const _sfc_main$2O = { + const PagesLoginForget = /* @__PURE__ */ _export_sfc(_sfc_main$2R, [["render", _sfc_render$2Q], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/login/forget.vue"]]); + const _sfc_main$2Q = { __name: "retrieve", setup(__props, { expose: __expose }) { __expose(); @@ -61161,7 +61357,7 @@ ${i3} return __returned__; } }; - function _sfc_render$2N(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$2P(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "appbw" }, [ _Vue.createElementVNode("view", { class: "container" }, [ _Vue.createElementVNode("view", { class: "logo mauto" }, [ @@ -61255,8 +61451,8 @@ ${i3} ]) ]); } - const PagesLoginRetrieve = /* @__PURE__ */ _export_sfc(_sfc_main$2O, [["render", _sfc_render$2N], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/login/retrieve.vue"]]); - const _sfc_main$2N = { + const PagesLoginRetrieve = /* @__PURE__ */ _export_sfc(_sfc_main$2Q, [["render", _sfc_render$2P], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/login/retrieve.vue"]]); + const _sfc_main$2P = { __name: "settle", setup(__props, { expose: __expose }) { __expose(); @@ -61378,7 +61574,7 @@ ${i3} return __returned__; } }; - function _sfc_render$2M(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$2O(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); return _Vue.openBlock(), _Vue.createElementBlock( _Vue.Fragment, @@ -61738,8 +61934,8 @@ ${i3} /* STABLE_FRAGMENT, DEV_ROOT_FRAGMENT */ ); } - const PagesShopSettle = /* @__PURE__ */ _export_sfc(_sfc_main$2N, [["render", _sfc_render$2M], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/shop/settle.vue"]]); - const _sfc_main$2M = { + const PagesShopSettle = /* @__PURE__ */ _export_sfc(_sfc_main$2P, [["render", _sfc_render$2O], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/shop/settle.vue"]]); + const _sfc_main$2O = { __name: "integralLog", props: { list: { @@ -61754,7 +61950,7 @@ ${i3} return __returned__; } }; - function _sfc_render$2L(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$2N(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(true), _Vue.createElementBlock( _Vue.Fragment, null, @@ -61822,10 +62018,10 @@ ${i3} /* KEYED_FRAGMENT */ ); } - const integralLog = /* @__PURE__ */ _export_sfc(_sfc_main$2M, [["render", _sfc_render$2L], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/index/integralLog.vue"]]); + const integralLog = /* @__PURE__ */ _export_sfc(_sfc_main$2O, [["render", _sfc_render$2N], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/index/integralLog.vue"]]); const _imports_0$3 = "/static/integral.png"; const _imports_1$2 = "/static/copy2.png"; - const _sfc_main$2L = { + const _sfc_main$2N = { __name: "integral", setup(__props, { expose: __expose }) { __expose(); @@ -61917,7 +62113,7 @@ ${i3} return __returned__; } }; - function _sfc_render$2K(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$2M(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "appbw" }, [ _Vue.createElementVNode("view", { class: "score rows mtb30 mlr30 ptb20 plr30 cfff f34 br20" }, [ _Vue.createElementVNode("view", { class: "title" }, "可释放总积分"), @@ -62024,8 +62220,8 @@ ${i3} }) ]); } - const PagesIndexIntegral = /* @__PURE__ */ _export_sfc(_sfc_main$2L, [["render", _sfc_render$2K], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/integral.vue"]]); - const _sfc_main$2K = { + const PagesIndexIntegral = /* @__PURE__ */ _export_sfc(_sfc_main$2N, [["render", _sfc_render$2M], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/integral.vue"]]); + const _sfc_main$2M = { __name: "integralLog", setup(__props, { expose: __expose }) { __expose(); @@ -62095,7 +62291,7 @@ ${i3} return __returned__; } }; - function _sfc_render$2J(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$2L(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "appbw" }, [ _Vue.createElementVNode("view", { class: "list plr30" }, [ _Vue.createVNode($setup["integralLog"], { @@ -62104,8 +62300,8 @@ ${i3} ]) ]); } - const PagesIndexIntegralLog = /* @__PURE__ */ _export_sfc(_sfc_main$2K, [["render", _sfc_render$2J], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/integralLog.vue"]]); - const _sfc_main$2J = { + const PagesIndexIntegralLog = /* @__PURE__ */ _export_sfc(_sfc_main$2M, [["render", _sfc_render$2L], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/integralLog.vue"]]); + const _sfc_main$2L = { __name: "integralMall", setup(__props, { expose: __expose }) { __expose(); @@ -62166,7 +62362,7 @@ ${i3} return __returned__; } }; - function _sfc_render$2I(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$2K(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "appbw" }, [ _Vue.createElementVNode("navigator", { url: "/pages/index/integral" }, [ @@ -62236,8 +62432,8 @@ ${i3} }) ]); } - const PagesIndexIntegralMall = /* @__PURE__ */ _export_sfc(_sfc_main$2J, [["render", _sfc_render$2I], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/integralMall.vue"]]); - const _sfc_main$2I = { + const PagesIndexIntegralMall = /* @__PURE__ */ _export_sfc(_sfc_main$2L, [["render", _sfc_render$2K], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/integralMall.vue"]]); + const _sfc_main$2K = { __name: "appeal", setup(__props, { expose: __expose }) { __expose(); @@ -62274,7 +62470,7 @@ ${i3} return __returned__; } }; - function _sfc_render$2H(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$2J(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "app" }, [ _Vue.createElementVNode("view", { class: "item oh pr mtb30 mlr30 br20 bFFFBF3" }, [ @@ -62374,8 +62570,8 @@ ${i3} ]) ]); } - const PagesIndexAppeal = /* @__PURE__ */ _export_sfc(_sfc_main$2I, [["render", _sfc_render$2H], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/appeal.vue"]]); - const _sfc_main$2H = { + const PagesIndexAppeal = /* @__PURE__ */ _export_sfc(_sfc_main$2K, [["render", _sfc_render$2J], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/appeal.vue"]]); + const _sfc_main$2J = { __name: "beInvited", setup(__props, { expose: __expose }) { __expose(); @@ -62420,7 +62616,7 @@ ${i3} return __returned__; } }; - function _sfc_render$2G(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$2I(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "appbw tac" }, [ _Vue.createCommentVNode(" "), _Vue.createElementVNode("view", { class: "avatar mauto" }, [ @@ -62450,8 +62646,8 @@ ${i3} ]) ]); } - const PagesIndexBeInvited = /* @__PURE__ */ _export_sfc(_sfc_main$2H, [["render", _sfc_render$2G], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/beInvited.vue"]]); - const _sfc_main$2G = { + const PagesIndexBeInvited = /* @__PURE__ */ _export_sfc(_sfc_main$2J, [["render", _sfc_render$2I], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/beInvited.vue"]]); + const _sfc_main$2I = { __name: "newFriend", setup(__props, { expose: __expose }) { __expose(); @@ -62548,7 +62744,7 @@ ${i3} return __returned__; } }; - function _sfc_render$2F(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$2H(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "app" }, [ _Vue.createElementVNode("view", { class: "searchBox ptb20 bfff" }, [ @@ -62630,8 +62826,8 @@ ${i3} }) ]); } - const PagesNewsNewFriend = /* @__PURE__ */ _export_sfc(_sfc_main$2G, [["render", _sfc_render$2F], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/news/newFriend.vue"]]); - const _sfc_main$2F = { + const PagesNewsNewFriend = /* @__PURE__ */ _export_sfc(_sfc_main$2I, [["render", _sfc_render$2H], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/news/newFriend.vue"]]); + const _sfc_main$2H = { __name: "newAttention", setup(__props, { expose: __expose }) { __expose(); @@ -62707,7 +62903,7 @@ ${i3} return __returned__; } }; - function _sfc_render$2E(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$2G(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "appbw" }, [ _Vue.createCommentVNode(" 用户列表 "), @@ -62764,8 +62960,8 @@ ${i3} }) ]); } - const PagesNewsNewAttention = /* @__PURE__ */ _export_sfc(_sfc_main$2F, [["render", _sfc_render$2E], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/news/newAttention.vue"]]); - const _sfc_main$2E = { + const PagesNewsNewAttention = /* @__PURE__ */ _export_sfc(_sfc_main$2H, [["render", _sfc_render$2G], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/news/newAttention.vue"]]); + const _sfc_main$2G = { __name: "newFans", setup(__props, { expose: __expose }) { __expose(); @@ -62841,7 +63037,7 @@ ${i3} return __returned__; } }; - function _sfc_render$2D(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$2F(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "appbw" }, [ _Vue.createCommentVNode(" 用户列表 "), @@ -62898,8 +63094,8 @@ ${i3} }) ]); } - const PagesNewsNewFans = /* @__PURE__ */ _export_sfc(_sfc_main$2E, [["render", _sfc_render$2D], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/news/newFans.vue"]]); - const _sfc_main$2D = { + const PagesNewsNewFans = /* @__PURE__ */ _export_sfc(_sfc_main$2G, [["render", _sfc_render$2F], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/news/newFans.vue"]]); + const _sfc_main$2F = { __name: "message", setup(__props, { expose: __expose }) { __expose(); @@ -62917,7 +63113,7 @@ ${i3} return __returned__; } }; - function _sfc_render$2C(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$2E(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "appbw" }, [ _Vue.createCommentVNode(" 用户列表 "), _Vue.createElementVNode("view", { class: "listArea plr30" }, [ @@ -62955,8 +63151,8 @@ ${i3} }) ]); } - const PagesNewsMessage = /* @__PURE__ */ _export_sfc(_sfc_main$2D, [["render", _sfc_render$2C], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/news/message.vue"]]); - const _sfc_main$2C = { + const PagesNewsMessage = /* @__PURE__ */ _export_sfc(_sfc_main$2F, [["render", _sfc_render$2E], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/news/message.vue"]]); + const _sfc_main$2E = { __name: "article", setup(__props, { expose: __expose }) { __expose(); @@ -62994,7 +63190,7 @@ ${i3} return __returned__; } }; - function _sfc_render$2B(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$2D(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "appbw" }, [ _Vue.createElementVNode("view", { class: "container" }, [ _Vue.createElementVNode( @@ -63016,9 +63212,9 @@ ${i3} ]) ]); } - const PagesIndexArticle = /* @__PURE__ */ _export_sfc(_sfc_main$2C, [["render", _sfc_render$2B], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/article.vue"]]); + const PagesIndexArticle = /* @__PURE__ */ _export_sfc(_sfc_main$2E, [["render", _sfc_render$2D], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/article.vue"]]); const _imports_0$2 = "/static/shop-alipay-payment.png"; - const _sfc_main$2B = { + const _sfc_main$2D = { __name: "topUp", setup(__props, { expose: __expose }) { __expose(); @@ -63071,7 +63267,7 @@ ${i3} return __returned__; } }; - function _sfc_render$2A(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$2C(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "appbw" }, [ _Vue.createCommentVNode(" "), @@ -63124,8 +63320,8 @@ ${i3} ]) ]); } - const PagesIndexWalletTopUp = /* @__PURE__ */ _export_sfc(_sfc_main$2B, [["render", _sfc_render$2A], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/wallet/topUp.vue"]]); - const _sfc_main$2A = { + const PagesIndexWalletTopUp = /* @__PURE__ */ _export_sfc(_sfc_main$2D, [["render", _sfc_render$2C], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/wallet/topUp.vue"]]); + const _sfc_main$2C = { __name: "addFriend", setup(__props, { expose: __expose }) { __expose(); @@ -63294,7 +63490,7 @@ ${i3} return __returned__; } }; - function _sfc_render$2z(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$2B(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "app" }, [ _Vue.createElementVNode("view", { class: "searchBox ptb20 bfff" }, [ @@ -63373,8 +63569,8 @@ ${i3} }) ]); } - const PagesNewsAddFriend = /* @__PURE__ */ _export_sfc(_sfc_main$2A, [["render", _sfc_render$2z], ["__scopeId", "data-v-6efb273c"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/news/addFriend.vue"]]); - const _sfc_main$2z = { + const PagesNewsAddFriend = /* @__PURE__ */ _export_sfc(_sfc_main$2C, [["render", _sfc_render$2B], ["__scopeId", "data-v-6efb273c"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/news/addFriend.vue"]]); + const _sfc_main$2B = { __name: "redPacket", setup(__props, { expose: __expose }) { __expose(); @@ -63494,7 +63690,7 @@ ${i3} return __returned__; } }; - function _sfc_render$2y(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$2A(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "app" }, [ _Vue.createElementVNode("view", { class: "container" }, [ @@ -63602,8 +63798,8 @@ ${i3} ]) ]); } - const PagesNewsRedPacket = /* @__PURE__ */ _export_sfc(_sfc_main$2z, [["render", _sfc_render$2y], ["__scopeId", "data-v-b7bb7716"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/news/redPacket.vue"]]); - const _sfc_main$2y = { + const PagesNewsRedPacket = /* @__PURE__ */ _export_sfc(_sfc_main$2B, [["render", _sfc_render$2A], ["__scopeId", "data-v-b7bb7716"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/news/redPacket.vue"]]); + const _sfc_main$2A = { __name: "integralDetail", setup(__props, { expose: __expose }) { __expose(); @@ -63690,7 +63886,7 @@ ${i3} return __returned__; } }; - function _sfc_render$2x(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$2z(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "app" }, [ _Vue.createElementVNode("view", { class: "board pr oh mtb30 mlr30 ptb20 plr20 cfff f30 br20" }, [ _Vue.createElementVNode("view", { class: "df" }, [ @@ -63754,8 +63950,8 @@ ${i3} }) ]); } - const PagesIndexIntegralDetail = /* @__PURE__ */ _export_sfc(_sfc_main$2y, [["render", _sfc_render$2x], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/integralDetail.vue"]]); - const _sfc_main$2x = { + const PagesIndexIntegralDetail = /* @__PURE__ */ _export_sfc(_sfc_main$2A, [["render", _sfc_render$2z], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/integralDetail.vue"]]); + const _sfc_main$2z = { __name: "videoStatistics", setup(__props, { expose: __expose }) { __expose(); @@ -63764,7 +63960,7 @@ ${i3} return __returned__; } }; - function _sfc_render$2w(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$2y(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "app" }, [ _Vue.createCommentVNode(" "), _Vue.createElementVNode("view", { class: "" }, [ @@ -63773,8 +63969,8 @@ ${i3} ]) ]); } - const PagesIndexVideoStatistics = /* @__PURE__ */ _export_sfc(_sfc_main$2x, [["render", _sfc_render$2w], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/videoStatistics.vue"]]); - const _sfc_main$2w = { + const PagesIndexVideoStatistics = /* @__PURE__ */ _export_sfc(_sfc_main$2z, [["render", _sfc_render$2y], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/videoStatistics.vue"]]); + const _sfc_main$2y = { __name: "myComment", setup(__props, { expose: __expose }) { __expose(); @@ -63850,7 +64046,7 @@ ${i3} return __returned__; } }; - function _sfc_render$2v(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$2x(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "appbw" }, [ _Vue.createElementVNode("view", { class: "listBox plr30" }, [ (_Vue.openBlock(), _Vue.createElementBlock( @@ -63884,8 +64080,8 @@ ${i3} ]) ]); } - const PagesMineMyComment = /* @__PURE__ */ _export_sfc(_sfc_main$2w, [["render", _sfc_render$2v], ["__scopeId", "data-v-50490fb0"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/mine/myComment.vue"]]); - const _sfc_main$2v = { + const PagesMineMyComment = /* @__PURE__ */ _export_sfc(_sfc_main$2y, [["render", _sfc_render$2x], ["__scopeId", "data-v-50490fb0"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/mine/myComment.vue"]]); + const _sfc_main$2x = { __name: "secondpwd", setup(__props, { expose: __expose }) { __expose(); @@ -63894,13 +64090,13 @@ ${i3} return __returned__; } }; - function _sfc_render$2u(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$2w(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "app" }, [ _Vue.createCommentVNode(" ") ]); } - const PagesMineSecondpwd = /* @__PURE__ */ _export_sfc(_sfc_main$2v, [["render", _sfc_render$2u], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/mine/secondpwd.vue"]]); - const _sfc_main$2u = { + const PagesMineSecondpwd = /* @__PURE__ */ _export_sfc(_sfc_main$2x, [["render", _sfc_render$2w], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/mine/secondpwd.vue"]]); + const _sfc_main$2w = { __name: "bill", setup(__props, { expose: __expose }) { __expose(); @@ -63919,7 +64115,7 @@ ${i3} return __returned__; } }; - function _sfc_render$2t(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$2v(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "app" }, [ _Vue.createElementVNode("view", { class: "listBox mtb30 mlr30" }, [ @@ -63952,8 +64148,8 @@ ${i3} _Vue.createElementVNode("view", { class: "fill" }) ]); } - const PagesIndexWalletBill = /* @__PURE__ */ _export_sfc(_sfc_main$2u, [["render", _sfc_render$2t], ["__scopeId", "data-v-d423ec05"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/wallet/bill.vue"]]); - const _sfc_main$2t = { + const PagesIndexWalletBill = /* @__PURE__ */ _export_sfc(_sfc_main$2w, [["render", _sfc_render$2v], ["__scopeId", "data-v-d423ec05"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/wallet/bill.vue"]]); + const _sfc_main$2v = { __name: "billDetail", setup(__props, { expose: __expose }) { __expose(); @@ -63962,21 +64158,21 @@ ${i3} return __returned__; } }; - function _sfc_render$2s(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$2u(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "app" }, [ _Vue.createElementVNode("view", { class: "" }, [ _Vue.createElementVNode("view", { class: "" }) ]) ]); } - const PagesIndexWalletBillDetail = /* @__PURE__ */ _export_sfc(_sfc_main$2t, [["render", _sfc_render$2s], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/wallet/billDetail.vue"]]); - const _sfc_main$2s = { + const PagesIndexWalletBillDetail = /* @__PURE__ */ _export_sfc(_sfc_main$2v, [["render", _sfc_render$2u], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/wallet/billDetail.vue"]]); + const _sfc_main$2u = { name: "loading1", data() { return {}; } }; - function _sfc_render$2r(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$2t(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "container loading1" }, [ _Vue.createElementVNode("view", { class: "shape shape1" }), _Vue.createElementVNode("view", { class: "shape shape2" }), @@ -63984,14 +64180,14 @@ ${i3} _Vue.createElementVNode("view", { class: "shape shape4" }) ]); } - const Loading1 = /* @__PURE__ */ _export_sfc(_sfc_main$2s, [["render", _sfc_render$2r], ["__scopeId", "data-v-0e645258"], ["__file", "D:/document/九亿商城/jy/jiuyi2/uni_modules/qiun-data-charts/components/qiun-loading/loading1.vue"]]); - const _sfc_main$2r = { + const Loading1 = /* @__PURE__ */ _export_sfc(_sfc_main$2u, [["render", _sfc_render$2t], ["__scopeId", "data-v-0e645258"], ["__file", "D:/document/九亿商城/jy/jiuyi2/uni_modules/qiun-data-charts/components/qiun-loading/loading1.vue"]]); + const _sfc_main$2t = { name: "loading2", data() { return {}; } }; - function _sfc_render$2q(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$2s(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "container loading2" }, [ _Vue.createElementVNode("view", { class: "shape shape1" }), _Vue.createElementVNode("view", { class: "shape shape2" }), @@ -63999,14 +64195,14 @@ ${i3} _Vue.createElementVNode("view", { class: "shape shape4" }) ]); } - const Loading2 = /* @__PURE__ */ _export_sfc(_sfc_main$2r, [["render", _sfc_render$2q], ["__scopeId", "data-v-3df48dc2"], ["__file", "D:/document/九亿商城/jy/jiuyi2/uni_modules/qiun-data-charts/components/qiun-loading/loading2.vue"]]); - const _sfc_main$2q = { + const Loading2 = /* @__PURE__ */ _export_sfc(_sfc_main$2t, [["render", _sfc_render$2s], ["__scopeId", "data-v-3df48dc2"], ["__file", "D:/document/九亿商城/jy/jiuyi2/uni_modules/qiun-data-charts/components/qiun-loading/loading2.vue"]]); + const _sfc_main$2s = { name: "loading3", data() { return {}; } }; - function _sfc_render$2p(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$2r(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "container loading3" }, [ _Vue.createElementVNode("view", { class: "shape shape1" }), _Vue.createElementVNode("view", { class: "shape shape2" }), @@ -64014,14 +64210,14 @@ ${i3} _Vue.createElementVNode("view", { class: "shape shape4" }) ]); } - const Loading3 = /* @__PURE__ */ _export_sfc(_sfc_main$2q, [["render", _sfc_render$2p], ["__scopeId", "data-v-27a8293c"], ["__file", "D:/document/九亿商城/jy/jiuyi2/uni_modules/qiun-data-charts/components/qiun-loading/loading3.vue"]]); - const _sfc_main$2p = { + const Loading3 = /* @__PURE__ */ _export_sfc(_sfc_main$2s, [["render", _sfc_render$2r], ["__scopeId", "data-v-27a8293c"], ["__file", "D:/document/九亿商城/jy/jiuyi2/uni_modules/qiun-data-charts/components/qiun-loading/loading3.vue"]]); + const _sfc_main$2r = { name: "loading5", data() { return {}; } }; - function _sfc_render$2o(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$2q(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "container loading5" }, [ _Vue.createElementVNode("view", { class: "shape shape1" }), _Vue.createElementVNode("view", { class: "shape shape2" }), @@ -64029,14 +64225,14 @@ ${i3} _Vue.createElementVNode("view", { class: "shape shape4" }) ]); } - const Loading4 = /* @__PURE__ */ _export_sfc(_sfc_main$2p, [["render", _sfc_render$2o], ["__scopeId", "data-v-2e7deb83"], ["__file", "D:/document/九亿商城/jy/jiuyi2/uni_modules/qiun-data-charts/components/qiun-loading/loading4.vue"]]); - const _sfc_main$2o = { + const Loading4 = /* @__PURE__ */ _export_sfc(_sfc_main$2r, [["render", _sfc_render$2q], ["__scopeId", "data-v-2e7deb83"], ["__file", "D:/document/九亿商城/jy/jiuyi2/uni_modules/qiun-data-charts/components/qiun-loading/loading4.vue"]]); + const _sfc_main$2q = { name: "loading6", data() { return {}; } }; - function _sfc_render$2n(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$2p(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "container loading6" }, [ _Vue.createElementVNode("view", { class: "shape shape1" }), _Vue.createElementVNode("view", { class: "shape shape2" }), @@ -64044,8 +64240,8 @@ ${i3} _Vue.createElementVNode("view", { class: "shape shape4" }) ]); } - const Loading5 = /* @__PURE__ */ _export_sfc(_sfc_main$2o, [["render", _sfc_render$2n], ["__scopeId", "data-v-ef674bbb"], ["__file", "D:/document/九亿商城/jy/jiuyi2/uni_modules/qiun-data-charts/components/qiun-loading/loading5.vue"]]); - const _sfc_main$2n = { + const Loading5 = /* @__PURE__ */ _export_sfc(_sfc_main$2q, [["render", _sfc_render$2p], ["__scopeId", "data-v-ef674bbb"], ["__file", "D:/document/九亿商城/jy/jiuyi2/uni_modules/qiun-data-charts/components/qiun-loading/loading5.vue"]]); + const _sfc_main$2p = { components: { Loading1, Loading2, Loading3, Loading4, Loading5 }, name: "qiun-loading", props: { @@ -64058,7 +64254,7 @@ ${i3} return {}; } }; - function _sfc_render$2m(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$2o(_ctx, _cache, $props, $setup, $data, $options) { const _component_Loading1 = _Vue.resolveComponent("Loading1"); const _component_Loading2 = _Vue.resolveComponent("Loading2"); const _component_Loading3 = _Vue.resolveComponent("Loading3"); @@ -64072,8 +64268,8 @@ ${i3} $props.loadingType == 5 ? (_Vue.openBlock(), _Vue.createBlock(_component_Loading5, { key: 4 })) : _Vue.createCommentVNode("v-if", true) ]); } - const __easycom_0$1 = /* @__PURE__ */ _export_sfc(_sfc_main$2n, [["render", _sfc_render$2m], ["__file", "D:/document/九亿商城/jy/jiuyi2/uni_modules/qiun-data-charts/components/qiun-loading/qiun-loading.vue"]]); - const _sfc_main$2m = { + const __easycom_0$1 = /* @__PURE__ */ _export_sfc(_sfc_main$2p, [["render", _sfc_render$2o], ["__file", "D:/document/九亿商城/jy/jiuyi2/uni_modules/qiun-data-charts/components/qiun-loading/qiun-loading.vue"]]); + const _sfc_main$2o = { name: "qiun-error", props: { errorMessage: { @@ -64085,7 +64281,7 @@ ${i3} return {}; } }; - function _sfc_render$2l(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$2n(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "chartsview" }, [ _Vue.createElementVNode("view", { class: "charts-error" }), _Vue.createElementVNode( @@ -64097,7 +64293,7 @@ ${i3} ) ]); } - const __easycom_1 = /* @__PURE__ */ _export_sfc(_sfc_main$2m, [["render", _sfc_render$2l], ["__scopeId", "data-v-a99d579b"], ["__file", "D:/document/九亿商城/jy/jiuyi2/uni_modules/qiun-data-charts/components/qiun-error/qiun-error.vue"]]); + const __easycom_1 = /* @__PURE__ */ _export_sfc(_sfc_main$2o, [["render", _sfc_render$2n], ["__scopeId", "data-v-a99d579b"], ["__file", "D:/document/九亿商城/jy/jiuyi2/uni_modules/qiun-data-charts/components/qiun-error/qiun-error.vue"]]); const color$1 = ["#1890FF", "#91CB74", "#FAC858", "#EE6666", "#73C0DE", "#3CA272", "#FC8452", "#9A60B4", "#ea7ccc"]; const formatDateTime = (timeStamp, returnType) => { var date = /* @__PURE__ */ new Date(); @@ -65113,7 +65309,7 @@ ${i3} var currentdate = year + seperator + month + seperator + strDate; return currentdate; } - const _sfc_main$2l = { + const _sfc_main$2n = { name: "qiun-data-charts", mixins: [Zs.mixinDatacom], props: { @@ -65819,7 +66015,7 @@ ${i3} } } }; - function _sfc_render$2k(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$2m(_ctx, _cache, $props, $setup, $data, $options) { const _component_qiun_loading = resolveEasycom(_Vue.resolveDynamicComponent("qiun-loading"), __easycom_0$1); const _component_qiun_error = resolveEasycom(_Vue.resolveDynamicComponent("qiun-error"), __easycom_1); return _Vue.openBlock(), _Vue.createElementBlock("view", { @@ -65877,12 +66073,12 @@ ${i3} ], 8, ["id"]); } if (typeof block0 === "function") - block0(_sfc_main$2l); - const __easycom_0 = /* @__PURE__ */ _export_sfc(_sfc_main$2l, [["render", _sfc_render$2k], ["__scopeId", "data-v-0ca34aee"], ["__file", "D:/document/九亿商城/jy/jiuyi2/uni_modules/qiun-data-charts/components/qiun-data-charts/qiun-data-charts.vue"]]); + block0(_sfc_main$2n); + const __easycom_0 = /* @__PURE__ */ _export_sfc(_sfc_main$2n, [["render", _sfc_render$2m], ["__scopeId", "data-v-0ca34aee"], ["__file", "D:/document/九亿商城/jy/jiuyi2/uni_modules/qiun-data-charts/components/qiun-data-charts/qiun-data-charts.vue"]]); const _imports_1$1 = "/static/privateLike.png"; const _imports_3 = "/static/dataLock.png"; const _imports_4 = "/static/dataUnlock.png"; - const _sfc_main$2k = { + const _sfc_main$2m = { __name: "dataCenter", setup(__props, { expose: __expose }) { __expose(); @@ -65976,7 +66172,7 @@ ${i3} return __returned__; } }; - function _sfc_render$2j(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$2l(_ctx, _cache, $props, $setup, $data, $options) { const _component_qiun_data_charts = resolveEasycom(_Vue.resolveDynamicComponent("qiun-data-charts"), __easycom_0); return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "app" }, [ _Vue.createVNode($setup["apex"], { title: "数据中心" }, { @@ -66102,8 +66298,8 @@ ${i3} }) ]); } - const PagesIndexDataCenterDataCenter = /* @__PURE__ */ _export_sfc(_sfc_main$2k, [["render", _sfc_render$2j], ["__scopeId", "data-v-b061abba"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/dataCenter/dataCenter.vue"]]); - const _sfc_main$2j = { + const PagesIndexDataCenterDataCenter = /* @__PURE__ */ _export_sfc(_sfc_main$2m, [["render", _sfc_render$2l], ["__scopeId", "data-v-b061abba"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/dataCenter/dataCenter.vue"]]); + const _sfc_main$2l = { __name: "like", setup(__props, { expose: __expose }) { __expose(); @@ -66134,7 +66330,7 @@ ${i3} return __returned__; } }; - function _sfc_render$2i(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$2k(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "appbw" }, [ _Vue.createCommentVNode(" 顶部导航 "), _Vue.createVNode($setup["apex"], { title: "点赞统计" }, { @@ -66227,8 +66423,8 @@ ${i3} }) ]); } - const PagesIndexDataCenterLike = /* @__PURE__ */ _export_sfc(_sfc_main$2j, [["render", _sfc_render$2i], ["__scopeId", "data-v-fe43105b"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/dataCenter/like.vue"]]); - const _sfc_main$2i = { + const PagesIndexDataCenterLike = /* @__PURE__ */ _export_sfc(_sfc_main$2l, [["render", _sfc_render$2k], ["__scopeId", "data-v-fe43105b"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/dataCenter/like.vue"]]); + const _sfc_main$2k = { __name: "otherPush", setup(__props, { expose: __expose }) { __expose(); @@ -66268,7 +66464,7 @@ ${i3} return __returned__; } }; - function _sfc_render$2h(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$2j(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "appbw" }, [ _Vue.createElementVNode("view", { class: "typeList rows f34" }, [ (_Vue.openBlock(true), _Vue.createElementBlock( @@ -66351,8 +66547,8 @@ ${i3} }) ]); } - const PagesIndexDataCenterOtherPush = /* @__PURE__ */ _export_sfc(_sfc_main$2i, [["render", _sfc_render$2h], ["__scopeId", "data-v-fb1bca4d"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/dataCenter/otherPush.vue"]]); - const _sfc_main$2h = { + const PagesIndexDataCenterOtherPush = /* @__PURE__ */ _export_sfc(_sfc_main$2k, [["render", _sfc_render$2j], ["__scopeId", "data-v-fb1bca4d"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/dataCenter/otherPush.vue"]]); + const _sfc_main$2j = { __name: "pushDetail", setup(__props, { expose: __expose }) { __expose(); @@ -66432,7 +66628,7 @@ ${i3} return __returned__; } }; - function _sfc_render$2g(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$2i(_ctx, _cache, $props, $setup, $data, $options) { const _component_qiun_data_charts = resolveEasycom(_Vue.resolveDynamicComponent("qiun-data-charts"), __easycom_0); const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "app" }, [ @@ -66506,8 +66702,8 @@ ${i3} }) ]); } - const PagesIndexDataCenterPushDetail = /* @__PURE__ */ _export_sfc(_sfc_main$2h, [["render", _sfc_render$2g], ["__scopeId", "data-v-6bb9aaab"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/dataCenter/pushDetail.vue"]]); - const _sfc_main$2g = { + const PagesIndexDataCenterPushDetail = /* @__PURE__ */ _export_sfc(_sfc_main$2j, [["render", _sfc_render$2i], ["__scopeId", "data-v-6bb9aaab"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/dataCenter/pushDetail.vue"]]); + const _sfc_main$2i = { __name: "pushHistory", setup(__props, { expose: __expose }) { __expose(); @@ -66516,7 +66712,7 @@ ${i3} return __returned__; } }; - function _sfc_render$2f(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$2h(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "appbw" }, [ _Vue.createElementVNode("view", { class: "listBox" }, [ _Vue.createVNode($setup["videoMenu"], { @@ -66527,8 +66723,8 @@ ${i3} ]) ]); } - const PagesIndexDataCenterPushHistory = /* @__PURE__ */ _export_sfc(_sfc_main$2g, [["render", _sfc_render$2f], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/dataCenter/pushHistory.vue"]]); - const _sfc_main$2f = { + const PagesIndexDataCenterPushHistory = /* @__PURE__ */ _export_sfc(_sfc_main$2i, [["render", _sfc_render$2h], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/dataCenter/pushHistory.vue"]]); + const _sfc_main$2h = { __name: "pushDetailUser", setup(__props, { expose: __expose }) { __expose(); @@ -66537,7 +66733,7 @@ ${i3} return __returned__; } }; - function _sfc_render$2e(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$2g(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "appbw" }, [ _Vue.createElementVNode("view", { class: "listBox ptb30 plr30" }, [ (_Vue.openBlock(), _Vue.createElementBlock( @@ -66567,8 +66763,8 @@ ${i3} ]) ]); } - const PagesIndexDataCenterPushDetailUser = /* @__PURE__ */ _export_sfc(_sfc_main$2f, [["render", _sfc_render$2e], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/dataCenter/pushDetailUser.vue"]]); - const _sfc_main$2e = { + const PagesIndexDataCenterPushDetailUser = /* @__PURE__ */ _export_sfc(_sfc_main$2h, [["render", _sfc_render$2g], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/dataCenter/pushDetailUser.vue"]]); + const _sfc_main$2g = { __name: "evaluate", setup(__props, { expose: __expose }) { __expose(); @@ -66670,7 +66866,7 @@ ${i3} return __returned__; } }; - function _sfc_render$2d(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$2f(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "app" }, [ _Vue.createElementVNode("view", { class: "typeList df ptb20 pl20 bfff f30" }, [ @@ -66850,8 +67046,8 @@ ${i3} ]) ]); } - const PagesShopCommodityEvaluate = /* @__PURE__ */ _export_sfc(_sfc_main$2e, [["render", _sfc_render$2d], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/shop/commodity/evaluate.vue"]]); - const _sfc_main$2d = { + const PagesShopCommodityEvaluate = /* @__PURE__ */ _export_sfc(_sfc_main$2g, [["render", _sfc_render$2f], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/shop/commodity/evaluate.vue"]]); + const _sfc_main$2f = { __name: "homepage", setup(__props, { expose: __expose }) { __expose(); @@ -66899,7 +67095,7 @@ ${i3} return __returned__; } }; - function _sfc_render$2c(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$2e(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_rate = resolveEasycom(_Vue.resolveDynamicComponent("uni-rate"), __easycom_0$3); return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "app" }, [ _Vue.createCommentVNode(" 顶部导航 "), @@ -66977,8 +67173,8 @@ ${i3} ]) ]); } - const PagesShopHomepage = /* @__PURE__ */ _export_sfc(_sfc_main$2d, [["render", _sfc_render$2c], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/shop/homepage.vue"]]); - const _sfc_main$2c = { + const PagesShopHomepage = /* @__PURE__ */ _export_sfc(_sfc_main$2f, [["render", _sfc_render$2e], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/shop/homepage.vue"]]); + const _sfc_main$2e = { __name: "logistics", setup(__props, { expose: __expose }) { __expose(); @@ -66992,7 +67188,7 @@ ${i3} return __returned__; } }; - function _sfc_render$2b(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$2d(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "detail rows oh ptb20 plr30 bfff", @@ -67014,8 +67210,8 @@ ${i3} }) ]); } - const logistics = /* @__PURE__ */ _export_sfc(_sfc_main$2c, [["render", _sfc_render$2b], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/shop/order/logistics.vue"]]); - const _sfc_main$2b = { + const logistics = /* @__PURE__ */ _export_sfc(_sfc_main$2e, [["render", _sfc_render$2d], ["__file", "D:/document/九亿商城/jy/jiuyi2/components/shop/order/logistics.vue"]]); + const _sfc_main$2d = { __name: "detail", setup(__props, { expose: __expose }) { __expose(); @@ -67032,7 +67228,7 @@ ${i3} return __returned__; } }; - function _sfc_render$2a(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$2c(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "app" }, [ _Vue.createCommentVNode(" 物流状态 "), @@ -67196,9 +67392,9 @@ ${i3} ]) ]); } - const PagesShopOrderDetail = /* @__PURE__ */ _export_sfc(_sfc_main$2b, [["render", _sfc_render$2a], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/shop/order/detail.vue"]]); + const PagesShopOrderDetail = /* @__PURE__ */ _export_sfc(_sfc_main$2d, [["render", _sfc_render$2c], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/shop/order/detail.vue"]]); const _imports_0$1 = "/static/shop-sales.png"; - const _sfc_main$2a = { + const _sfc_main$2c = { __name: "refundStar", setup(__props, { expose: __expose }) { __expose(); @@ -67236,7 +67432,7 @@ ${i3} return __returned__; } }; - function _sfc_render$29(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$2b(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "app" }, [ $setup.mode === "select" ? (_Vue.openBlock(), _Vue.createElementBlock( @@ -67418,10 +67614,10 @@ ${i3} )) : _Vue.createCommentVNode("v-if", true) ]); } - const PagesShopOrderRefundStar = /* @__PURE__ */ _export_sfc(_sfc_main$2a, [["render", _sfc_render$29], ["__scopeId", "data-v-65622ca0"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/shop/order/refundStar.vue"]]); + const PagesShopOrderRefundStar = /* @__PURE__ */ _export_sfc(_sfc_main$2c, [["render", _sfc_render$2b], ["__scopeId", "data-v-65622ca0"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/shop/order/refundStar.vue"]]); const _imports_1 = "/static/shop-logistics.png"; const _imports_2 = "/static/shop-document.png"; - const _sfc_main$29 = { + const _sfc_main$2b = { __name: "logistics", setup(__props, { expose: __expose }) { __expose(); @@ -67451,7 +67647,7 @@ ${i3} return __returned__; } }; - function _sfc_render$28(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$2a(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "app" }, [ _Vue.createCommentVNode(" 地址详情 "), @@ -67559,8 +67755,8 @@ ${i3} ]) ]); } - const PagesShopOrderLogistics = /* @__PURE__ */ _export_sfc(_sfc_main$29, [["render", _sfc_render$28], ["__scopeId", "data-v-2c3208a2"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/shop/order/logistics.vue"]]); - const _sfc_main$28 = { + const PagesShopOrderLogistics = /* @__PURE__ */ _export_sfc(_sfc_main$2b, [["render", _sfc_render$2a], ["__scopeId", "data-v-2c3208a2"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/shop/order/logistics.vue"]]); + const _sfc_main$2a = { __name: "evaluate", setup(__props, { expose: __expose }) { __expose(); @@ -67580,7 +67776,7 @@ ${i3} return __returned__; } }; - function _sfc_render$27(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$29(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_rate = resolveEasycom(_Vue.resolveDynamicComponent("uni-rate"), __easycom_0$3); return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "app" }, [ _Vue.createElementVNode("view", { class: "container oh ptb30 imgList df fww" }, [ @@ -67665,8 +67861,8 @@ ${i3} ]) ]); } - const PagesShopOrderEvaluate = /* @__PURE__ */ _export_sfc(_sfc_main$28, [["render", _sfc_render$27], ["__scopeId", "data-v-1d32385f"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/shop/order/evaluate.vue"]]); - const _sfc_main$27 = { + const PagesShopOrderEvaluate = /* @__PURE__ */ _export_sfc(_sfc_main$2a, [["render", _sfc_render$29], ["__scopeId", "data-v-1d32385f"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/shop/order/evaluate.vue"]]); + const _sfc_main$29 = { __name: "afterSales", setup(__props, { expose: __expose }) { __expose(); @@ -67686,7 +67882,7 @@ ${i3} return __returned__; } }; - function _sfc_render$26(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$28(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "app" }, [ _Vue.createElementVNode("view", { class: "container" }, [ @@ -67824,8 +68020,8 @@ ${i3} ]) ]); } - const PagesShopOrderAfterSales = /* @__PURE__ */ _export_sfc(_sfc_main$27, [["render", _sfc_render$26], ["__scopeId", "data-v-6173b55a"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/shop/order/afterSales.vue"]]); - const _sfc_main$26 = { + const PagesShopOrderAfterSales = /* @__PURE__ */ _export_sfc(_sfc_main$29, [["render", _sfc_render$28], ["__scopeId", "data-v-6173b55a"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/shop/order/afterSales.vue"]]); + const _sfc_main$28 = { __name: "collect", setup(__props, { expose: __expose }) { __expose(); @@ -67837,7 +68033,7 @@ ${i3} return __returned__; } }; - function _sfc_render$25(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$27(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "app" }, [ _Vue.createVNode($setup["apex"], { title: "商品收藏" }, { @@ -67932,8 +68128,8 @@ ${i3} ]) ]); } - const PagesShopCollect = /* @__PURE__ */ _export_sfc(_sfc_main$26, [["render", _sfc_render$25], ["__scopeId", "data-v-29373a35"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/shop/collect.vue"]]); - const _sfc_main$25 = { + const PagesShopCollect = /* @__PURE__ */ _export_sfc(_sfc_main$28, [["render", _sfc_render$27], ["__scopeId", "data-v-29373a35"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/shop/collect.vue"]]); + const _sfc_main$27 = { __name: "focusStore", setup(__props, { expose: __expose }) { __expose(); @@ -67942,7 +68138,7 @@ ${i3} return __returned__; } }; - function _sfc_render$24(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$26(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "app" }, [ _Vue.createElementVNode("view", { class: "list mtb20 plr20 bfff" }, [ _Vue.createCommentVNode(" 店铺 "), @@ -67969,8 +68165,8 @@ ${i3} ]) ]); } - const PagesShopFocusStore = /* @__PURE__ */ _export_sfc(_sfc_main$25, [["render", _sfc_render$24], ["__scopeId", "data-v-ddebe301"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/shop/focusStore.vue"]]); - const _sfc_main$24 = { + const PagesShopFocusStore = /* @__PURE__ */ _export_sfc(_sfc_main$27, [["render", _sfc_render$26], ["__scopeId", "data-v-ddebe301"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/shop/focusStore.vue"]]); + const _sfc_main$26 = { __name: "history", setup(__props, { expose: __expose }) { __expose(); @@ -67979,7 +68175,7 @@ ${i3} return __returned__; } }; - function _sfc_render$23(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$25(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "app" }, [ _Vue.createElementVNode("view", { class: "list" }, [ (_Vue.openBlock(), _Vue.createElementBlock( @@ -68030,8 +68226,8 @@ ${i3} ]) ]); } - const PagesShopHistory = /* @__PURE__ */ _export_sfc(_sfc_main$24, [["render", _sfc_render$23], ["__scopeId", "data-v-697b5929"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/shop/history.vue"]]); - const _sfc_main$23 = { + const PagesShopHistory = /* @__PURE__ */ _export_sfc(_sfc_main$26, [["render", _sfc_render$25], ["__scopeId", "data-v-697b5929"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/shop/history.vue"]]); + const _sfc_main$25 = { __name: "coupon", setup(__props, { expose: __expose }) { __expose(); @@ -68040,7 +68236,7 @@ ${i3} return __returned__; } }; - function _sfc_render$22(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$24(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "app" }, [ _Vue.createElementVNode("view", { class: "list plr20" }, [ @@ -68098,8 +68294,8 @@ ${i3} }) ]); } - const PagesShopCoupon = /* @__PURE__ */ _export_sfc(_sfc_main$23, [["render", _sfc_render$22], ["__scopeId", "data-v-1427bdb0"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/shop/coupon.vue"]]); - const _sfc_main$22 = { + const PagesShopCoupon = /* @__PURE__ */ _export_sfc(_sfc_main$25, [["render", _sfc_render$24], ["__scopeId", "data-v-1427bdb0"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/shop/coupon.vue"]]); + const _sfc_main$24 = { __name: "commodities", setup(__props, { expose: __expose }) { __expose(); @@ -68112,7 +68308,7 @@ ${i3} return __returned__; } }; - function _sfc_render$21(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$23(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "app" }, [ _Vue.createVNode($setup["apex"], { title: "商品管理" }, { right: _Vue.withCtx(() => [ @@ -68168,8 +68364,8 @@ ${i3} ]) ]); } - const PagesShopStoreCommodities = /* @__PURE__ */ _export_sfc(_sfc_main$22, [["render", _sfc_render$21], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/shop/store/commodities.vue"]]); - const _sfc_main$21 = { + const PagesShopStoreCommodities = /* @__PURE__ */ _export_sfc(_sfc_main$24, [["render", _sfc_render$23], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/shop/store/commodities.vue"]]); + const _sfc_main$23 = { __name: "commodity", setup(__props, { expose: __expose }) { __expose(); @@ -68178,7 +68374,7 @@ ${i3} return __returned__; } }; - function _sfc_render$20(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$22(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "app" }, [ _Vue.createElementVNode("view", { class: "container" }, [ _Vue.createElementVNode("view", { class: "main area" }, [ @@ -68306,8 +68502,8 @@ ${i3} ]) ]); } - const PagesReleaseCommodity = /* @__PURE__ */ _export_sfc(_sfc_main$21, [["render", _sfc_render$20], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/release/commodity.vue"]]); - const _sfc_main$20 = { + const PagesReleaseCommodity = /* @__PURE__ */ _export_sfc(_sfc_main$23, [["render", _sfc_render$22], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/release/commodity.vue"]]); + const _sfc_main$22 = { __name: "feedback", setup(__props, { expose: __expose }) { __expose(); @@ -68316,13 +68512,13 @@ ${i3} return __returned__; } }; - function _sfc_render$1$(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$21(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "app" }, [ _Vue.createCommentVNode(" ") ]); } - const PagesMineFeedback = /* @__PURE__ */ _export_sfc(_sfc_main$20, [["render", _sfc_render$1$], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/mine/feedback.vue"]]); - const _sfc_main$1$ = { + const PagesMineFeedback = /* @__PURE__ */ _export_sfc(_sfc_main$22, [["render", _sfc_render$21], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/mine/feedback.vue"]]); + const _sfc_main$21 = { __name: "safeCenter", setup(__props, { expose: __expose }) { __expose(); @@ -68331,7 +68527,7 @@ ${i3} return __returned__; } }; - function _sfc_render$1_(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$20(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "app" }, [ _Vue.createCommentVNode(" 账号挂失 账号冻结 账号注销 "), _Vue.createElementVNode("view", { class: "container" }, [ @@ -68354,8 +68550,8 @@ ${i3} ]) ]); } - const PagesMineSettingSafeCenter = /* @__PURE__ */ _export_sfc(_sfc_main$1$, [["render", _sfc_render$1_], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/mine/setting/safeCenter.vue"]]); - const _sfc_main$1_ = { + const PagesMineSettingSafeCenter = /* @__PURE__ */ _export_sfc(_sfc_main$21, [["render", _sfc_render$20], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/mine/setting/safeCenter.vue"]]); + const _sfc_main$20 = { __name: "bankCard", setup(__props, { expose: __expose }) { __expose(); @@ -68369,7 +68565,7 @@ ${i3} return __returned__; } }; - function _sfc_render$1Z(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$1$(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "app" }, [ _Vue.createElementVNode("view", { class: "list" }, [ @@ -68402,8 +68598,8 @@ ${i3} ]) ]); } - const PagesMineSettingBankCard = /* @__PURE__ */ _export_sfc(_sfc_main$1_, [["render", _sfc_render$1Z], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/mine/setting/bankCard.vue"]]); - const _sfc_main$1Z = { + const PagesMineSettingBankCard = /* @__PURE__ */ _export_sfc(_sfc_main$20, [["render", _sfc_render$1$], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/mine/setting/bankCard.vue"]]); + const _sfc_main$1$ = { __name: "bankCardAdd", setup(__props, { expose: __expose }) { __expose(); @@ -68425,7 +68621,7 @@ ${i3} return __returned__; } }; - function _sfc_render$1Y(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$1_(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "appbw" }, [ _Vue.createCommentVNode(" 表单 "), @@ -68507,8 +68703,8 @@ ${i3} _Vue.createElementVNode("view", { class: "fill" }) ]); } - const PagesMineSettingBankCardAdd = /* @__PURE__ */ _export_sfc(_sfc_main$1Z, [["render", _sfc_render$1Y], ["__scopeId", "data-v-24515f73"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/mine/setting/bankCardAdd.vue"]]); - const _sfc_main$1Y = { + const PagesMineSettingBankCardAdd = /* @__PURE__ */ _export_sfc(_sfc_main$1$, [["render", _sfc_render$1_], ["__scopeId", "data-v-24515f73"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/mine/setting/bankCardAdd.vue"]]); + const _sfc_main$1_ = { __name: "get", setup(__props, { expose: __expose }) { __expose(); @@ -68547,7 +68743,7 @@ ${i3} return __returned__; } }; - function _sfc_render$1X(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$1Z(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "appbw" }, [ _Vue.createElementVNode("view", { class: "form mtb30 mlr30 f32" }, [ @@ -68689,8 +68885,8 @@ ${i3} _Vue.createElementVNode("view", { class: "fill" }) ]); } - const PagesIndexWalletGet = /* @__PURE__ */ _export_sfc(_sfc_main$1Y, [["render", _sfc_render$1X], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/wallet/get.vue"]]); - const _sfc_main$1X = { + const PagesIndexWalletGet = /* @__PURE__ */ _export_sfc(_sfc_main$1_, [["render", _sfc_render$1Z], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/wallet/get.vue"]]); + const _sfc_main$1Z = { __name: "merchantBill", setup(__props, { expose: __expose }) { __expose(); @@ -68736,7 +68932,7 @@ ${i3} return __returned__; } }; - function _sfc_render$1W(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$1Y(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "appbw" }, [ _Vue.createElementVNode("view", { class: "list plr30" }, [ (_Vue.openBlock(), _Vue.createElementBlock( @@ -68758,9 +68954,9 @@ ${i3} ]) ]); } - const PagesIndexWalletMerchantBill = /* @__PURE__ */ _export_sfc(_sfc_main$1X, [["render", _sfc_render$1W], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/wallet/merchantBill.vue"]]); + const PagesIndexWalletMerchantBill = /* @__PURE__ */ _export_sfc(_sfc_main$1Z, [["render", _sfc_render$1Y], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/wallet/merchantBill.vue"]]); const _imports_0 = "/static/teen.png"; - const _sfc_main$1W = { + const _sfc_main$1Y = { __name: "teen", setup(__props, { expose: __expose }) { __expose(); @@ -68824,7 +69020,7 @@ ${i3} return __returned__; } }; - function _sfc_render$1V(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$1X(_ctx, _cache, $props, $setup, $data, $options) { return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "app" }, [ _Vue.createElementVNode("view", { class: "container pr" }, [ _Vue.createElementVNode("image", { @@ -68852,8 +69048,8 @@ ${i3} }) ]); } - const PagesMineSettingTeen = /* @__PURE__ */ _export_sfc(_sfc_main$1W, [["render", _sfc_render$1V], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/mine/setting/teen.vue"]]); - const _sfc_main$1V = { + const PagesMineSettingTeen = /* @__PURE__ */ _export_sfc(_sfc_main$1Y, [["render", _sfc_render$1X], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/mine/setting/teen.vue"]]); + const _sfc_main$1X = { __name: "binding", setup(__props, { expose: __expose }) { __expose(); @@ -68900,7 +69096,7 @@ ${i3} return __returned__; } }; - function _sfc_render$1U(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$1W(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_popup = resolveEasycom(_Vue.resolveDynamicComponent("uni-popup"), __easycom_0$6); return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "app" }, [ _Vue.createElementVNode("view", { class: "container" }, [ @@ -68979,8 +69175,8 @@ ${i3} ) ]); } - const PagesMineSettingBinding = /* @__PURE__ */ _export_sfc(_sfc_main$1V, [["render", _sfc_render$1U], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/mine/setting/binding.vue"]]); - const _sfc_main$1U = { + const PagesMineSettingBinding = /* @__PURE__ */ _export_sfc(_sfc_main$1X, [["render", _sfc_render$1W], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/mine/setting/binding.vue"]]); + const _sfc_main$1W = { __name: "feedback", setup(__props, { expose: __expose }) { __expose(); @@ -68989,7 +69185,7 @@ ${i3} return __returned__; } }; - function _sfc_render$1T(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$1V(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "app" }, [ _Vue.createElementVNode("view", { class: "form mtb30 mlr30 ptb20 plr30 bfff br20" }, [ @@ -69038,8 +69234,8 @@ ${i3} _Vue.createElementVNode("view", { class: "fill" }) ]); } - const PagesMineSettingFeedback = /* @__PURE__ */ _export_sfc(_sfc_main$1U, [["render", _sfc_render$1T], ["__scopeId", "data-v-f809b91a"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/mine/setting/feedback.vue"]]); - const _sfc_main$1T = { + const PagesMineSettingFeedback = /* @__PURE__ */ _export_sfc(_sfc_main$1W, [["render", _sfc_render$1V], ["__scopeId", "data-v-f809b91a"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/mine/setting/feedback.vue"]]); + const _sfc_main$1V = { __name: "search", setup(__props, { expose: __expose }) { __expose(); @@ -69071,7 +69267,7 @@ ${i3} return __returned__; } }; - function _sfc_render$1S(_ctx, _cache, $props, $setup, $data, $options) { + function _sfc_render$1U(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "page" }, [ _Vue.createElementVNode("view", { class: "apexBox pr" }, [ @@ -69226,9 +69422,9 @@ ${i3} ]) ]); } - const PagesShopSearch = /* @__PURE__ */ _export_sfc(_sfc_main$1T, [["render", _sfc_render$1S], ["__scopeId", "data-v-e39dbbb4"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/shop/search.vue"]]); - const _sfc_main$1S = {}; - function _sfc_render$1R(_ctx, _cache, $props, $setup, $data, $options) { + const PagesShopSearch = /* @__PURE__ */ _export_sfc(_sfc_main$1V, [["render", _sfc_render$1U], ["__scopeId", "data-v-e39dbbb4"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/shop/search.vue"]]); + const _sfc_main$1U = {}; + function _sfc_render$1T(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(_Vue.resolveDynamicComponent("uni-icons"), __easycom_0$9); return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "app" }, [ _Vue.createCommentVNode(" 搜索 "), @@ -69261,7 +69457,194 @@ ${i3} ]) ]); } - const PagesIndexHashOrder = /* @__PURE__ */ _export_sfc(_sfc_main$1S, [["render", _sfc_render$1R], ["__scopeId", "data-v-ef7c10c2"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/hashOrder.vue"]]); + const PagesIndexHashOrder = /* @__PURE__ */ _export_sfc(_sfc_main$1U, [["render", _sfc_render$1T], ["__scopeId", "data-v-ef7c10c2"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/index/hashOrder.vue"]]); + const _sfc_main$1T = { + __name: "lock", + setup(__props, { expose: __expose }) { + __expose(); + const store2 = useStore(); + const form = _Vue.reactive({}); + const userinfo = _Vue.computed(() => { + let result = store2.state.userinfo; + return result; + }); + function handleSubmit() { + const data = { + ...form + }; + if (!data.userPassword) { + util$1.alert("验证密码不能为空"); + return; + } + data.userPhone = userinfo.value.userPhone; + data.userPassword = CryptoJS.MD5(data.userPassword).toString(); + api.login.validateUserPassWord({ + data + }).then((rs2) => { + if (rs2.code === 200) { + unLockTeenMode(); + return; + } + util$1.alert({ + content: rs2.msg, + showCancel: false + }); + }); + } + function unLockTeenMode() { + api.mine.updateUserInfo({ + data: { + userId: userinfo.value.userId, + youth: "0" + } + }).then((rs2) => { + if (rs2.code == 200) { + return; + } + util$1.alert({ + content: rs2.msg, + showCancel: false + }); + }); + } + const __returned__ = { store: store2, form, userinfo, handleSubmit, unLockTeenMode, get util() { + return util$1; + }, computed: _Vue.computed, reactive: _Vue.reactive, get useStore() { + return useStore; + }, get api() { + return api; + }, get CryptoJS() { + return CryptoJS; + } }; + Object.defineProperty(__returned__, "__isScriptSetup", { enumerable: false, value: true }); + return __returned__; + } + }; + function _sfc_render$1S(_ctx, _cache, $props, $setup, $data, $options) { + return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "container pr fmid fdc" }, [ + _Vue.createElementVNode("view", { class: "title f40 b" }, "输入登录密码解锁未成年模式"), + _Vue.createElementVNode( + "view", + { class: "account mtb20 c666 f32" }, + "当前账号: " + _Vue.toDisplayString($setup.userinfo.userPhone), + 1 + /* TEXT */ + ), + _Vue.createElementVNode("view", { class: "password mtb30 br20" }, [ + _Vue.withDirectives(_Vue.createElementVNode( + "input", + { + class: "input", + type: "text", + "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => $setup.form.userPassword = $event), + placeholder: "登录密码" + }, + null, + 512 + /* NEED_PATCH */ + ), [ + [_Vue.vModelText, $setup.form.userPassword] + ]) + ]), + _Vue.createElementVNode("view", { + class: "button btn lg bar black mt60", + onClick: $setup.handleSubmit + }, "解锁") + ]); + } + const PagesLoginLock = /* @__PURE__ */ _export_sfc(_sfc_main$1T, [["render", _sfc_render$1S], ["__scopeId", "data-v-4d44acdb"], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/login/lock.vue"]]); + const _sfc_main$1S = { + __name: "secondPwd", + setup(__props, { expose: __expose }) { + __expose(); + const store2 = useStore(); + const form = _Vue.reactive({ + pwd: "", + rePwd: "" + }); + const userinfo = _Vue.computed(() => { + return store2.state.userinfo; + }); + function handleSubmit() { + const data = { + ...form + }; + if (!data.pwd) { + util$1.alert("二级密码不能为空"); + } + if (data.pwd !== data.rePwd) { + util$1.alert("两次输入密码不一致"); + } + api.mine.setSecondLevelCipher({ + id: userinfo.value.id, + secondLevelCipher: data.pwd + }).then((rs2) => { + if (rs2.code == 200) { + util$1.alert("设置成功"); + uni.navigateBack(); + return; + } + util$1.alert({ + content: rs2.msg, + showCanecl: false + }); + }); + } + const __returned__ = { store: store2, form, userinfo, handleSubmit, ref: _Vue.ref, reactive: _Vue.reactive, computed: _Vue.computed, get useStore() { + return useStore; + }, get api() { + return api; + }, get util() { + return util$1; + } }; + Object.defineProperty(__returned__, "__isScriptSetup", { enumerable: false, value: true }); + return __returned__; + } + }; + function _sfc_render$1R(_ctx, _cache, $props, $setup, $data, $options) { + return _Vue.openBlock(), _Vue.createElementBlock("view", { class: "appbw" }, [ + _Vue.createElementVNode("view", { class: "container ver mt10p" }, [ + _Vue.createElementVNode("view", { class: "title c333 f54" }, "设置二级密码"), + _Vue.createElementVNode("view", { class: "content mt50 c666 f32" }, "请设置六位数字的二级密码"), + _Vue.createElementVNode("view", { class: "inputBox mt50 ptb10 plr30" }, [ + _Vue.withDirectives(_Vue.createElementVNode( + "input", + { + type: "number", + maxlength: 6, + "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => $setup.form.pwd = $event), + focus: true, + placeholder: "六位数字密码" + }, + null, + 512 + /* NEED_PATCH */ + ), [ + [_Vue.vModelText, $setup.form.pwd] + ]) + ]), + _Vue.createElementVNode("view", { class: "inputBox mt50 ptb10 plr30" }, [ + _Vue.withDirectives(_Vue.createElementVNode( + "input", + { + type: "number", + maxlength: 6, + "onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => $setup.form.rePwd = $event), + placeholder: "再次输入密码" + }, + null, + 512 + /* NEED_PATCH */ + ), [ + [_Vue.vModelText, $setup.form.rePwd] + ]) + ]), + _Vue.createCommentVNode(" "), + _Vue.createElementVNode("view", { class: "btn lg black mtb50 plr50" }, "确认") + ]) + ]); + } + const PagesMineSettingSecondPwd = /* @__PURE__ */ _export_sfc(_sfc_main$1S, [["render", _sfc_render$1R], ["__file", "D:/document/九亿商城/jy/jiuyi2/pages/mine/setting/secondPwd.vue"]]); var timUploadPlugin = { exports: {} }; (function(module, exports) { !function(e2, t2) { @@ -99739,6 +100122,8 @@ ${i3} __definePage("pages/mine/setting/feedback", PagesMineSettingFeedback); __definePage("pages/shop/search", PagesShopSearch); __definePage("pages/index/hashOrder", PagesIndexHashOrder); + __definePage("pages/login/lock", PagesLoginLock); + __definePage("pages/mine/setting/secondPwd", PagesMineSettingSecondPwd); __definePage("TUIKit/components/TUIConversation/index", TUIKitComponentsTUIConversationIndex); __definePage("TUIKit/components/TUIChat/index", TUIKitComponentsTUIChatIndex); __definePage("TUIKit/components/TUIChat/video-play", TUIKitComponentsTUIChatVideoPlay); @@ -99746,13 +100131,14 @@ ${i3} __definePage("TUIKit/components/TUIContact/index", TUIKitComponentsTUIContactIndex); __definePage("TUIKit/components/TUIGroup/index", TUIKitComponentsTUIGroupIndex); __definePage("TUIKit/components/TUISearch/index", TUIKitComponentsTUISearchIndex); - uni.setStorageSync("token", `eyJhbGciOiJIUzUxMiJ9.eyJhcHBVc2VyIjp7ImNyZWF0ZVRpbWUiOiIyMDI0LTEyLTMwIDE0OjUxOjEyIiwiY3JlYXRlQnkiOiIwIiwidXBkYXRlVGltZSI6IjIwMjUtMDEtMDEgMDU6MTQ6NDgiLCJ1cGRhdGVCeSI6IjAiLCJkZWxGbGFnIjoiMCIsImlkIjoiMTMiLCJ1c2VyTmFtZSI6IkppdVlp55So5oi3NzZkbHA2cTAiLCJwaG9uZU51bWJlciI6IjE1NjY2MDA2NTkyIiwiaW52aXRhdGlvbkNvZGUiOiJTd3ZKdDkwbSIsInVzZXJOaWNrbmFtZSI6IuWFrOWQq-W6mSIsInNleCI6bnVsbCwiYXZhdGFyIjpudWxsLCJiaXJ0aGRheSI6bnVsbCwiYWNjb3VudCI6Ijc2ZGxwNnEwIiwidXNlclJlYWxOYW1lIjpudWxsLCJ1c2VySWRDYXJkIjpudWxsLCJob21lVG93biI6bnVsbCwicGVyc29uYWxTaWduYXR1cmUiOm51bGwsImhhc1NlY29uZENpcGhlciI6bnVsbCwidXNlckltZWkiOiIxNzM1NTczOTk1NjQ3NzE1OTc0MCIsInVzZXJBdHRlbnRpb24iOm51bGwsInVzZXJGYW5zIjpudWxsLCJwdWJsaWNQcmFpc2VkIjpudWxsLCJwcml2YWN5UHJhaXNlZCI6bnVsbCwic2NvcmUiOjBFLTEwLCJsYXNoaW5Bd2FyZCI6MCwiZnJ1aXQiOjkzMDAsInVzZXJMaW5lU3RhdGUiOjEsImlzU2hvcCI6MCwiYmFja2dyb3VuZCI6bnVsbCwiYWNjb3VudFVwZGF0ZVRpbWUiOm51bGwsImlzUmVhbE5hbWUiOm51bGwsInJlZmVycmVyVXNlcklkIjoxfX0.nhK1AawF-ynYZ-tZ1IRvgkc5jcmVkEAyuli3z025akFFljfuK8wlz2rBGELtPvg-746G4mg1Bvgku4_MXEuzhQ`); const _sfc_main = { // mixins: [Mixins], onLaunch() { this.getUserinfo(); + this.getConfig(); }, methods: { + // 获取用户信息 getUserinfo() { const token = uni.getStorageSync("token"); const userinfo = uni.getStorageSync("userinfo"); @@ -99767,6 +100153,11 @@ ${i3} util$1.loginAccountManagement(userinfo); }); } + }, + // 获取系统配置 + getConfig() { + api.getConfig().then((rs2) => { + }); } } }; diff --git a/jiuyi2/unpackage/dist/dev/app-plus/pages/index/durian.css b/jiuyi2/unpackage/dist/dev/app-plus/pages/index/durian.css index 964fb867..bc4060c4 100644 --- a/jiuyi2/unpackage/dist/dev/app-plus/pages/index/durian.css +++ b/jiuyi2/unpackage/dist/dev/app-plus/pages/index/durian.css @@ -158,4 +158,10 @@ .dealAlt .hint { color: #3d3d3d; opacity: 0.7; +} +.payee .inputBox { + width: 6.25rem; +} +.payee .first { + width: 1.5625rem; } \ No newline at end of file diff --git a/jiuyi2/unpackage/dist/dev/app-plus/pages/index/index.js b/jiuyi2/unpackage/dist/dev/app-plus/pages/index/index.js index a5dcd829..a749a48f 100644 --- a/jiuyi2/unpackage/dist/dev/app-plus/pages/index/index.js +++ b/jiuyi2/unpackage/dist/dev/app-plus/pages/index/index.js @@ -1831,28 +1831,6 @@ if (typeof uni !== 'undefined' && uni && uni.requireGlobal) { load: true }); }, - /** - * 支付 - * @param {Object} param - */ - pay(param) { - return util$1.request({ - url: "/home/pay", - query: param.query, - method: "POST" - }); - }, - /** - * 获取余额记录 - * @param {Object} param - */ - getBalanceLog(param) { - return util$1.request({ - url: "/home/getBalanceLog", - query: param.query, - method: "POST" - }); - }, /** * 查询我的钱包接口 * @param {Object} param @@ -1873,6 +1851,39 @@ if (typeof uni !== 'undefined' && uni && uni.requireGlobal) { query: param.query, method: "GET" }); + }, + /** + * 获取待释放列表 + * @param {Object} param + */ + releasedList(param) { + return util$1.request({ + url: "/user/released/list", + query: param.query, + method: "GET" + }); + }, + /** + * 根据用户账号查询用户id + * @param {Object} param + */ + getUserDataByAccount(param) { + return util$1.request({ + url: "/coreplay/app/durian/getUserDataByAccount", + query: param.query, + method: "GET" + }); + }, + /** + * 设置二级密码 + * @param {Object} param + */ + setSecondLevelCipher(param) { + return util$1.request({ + url: "/user/user/setSecondLevelCipher", + body: param.body, + method: "POST" + }); } }; var video = { @@ -2556,32 +2567,69 @@ if (typeof uni !== 'undefined' && uni && uni.requireGlobal) { buyScroll(param) { return util$1.request({ url: `/coreplay/app/scrollinfo/buyScroll`, - method: "G", + method: "POST", data: param.data }); - }, + } + }; + var durian = { /** - * 验证码生成 + * 果树列表 * @param {Object} param */ - myQrcode(param) { + durianList(param) { return util$1.request({ - url: `/user/team/getH5Link`, + url: `/coreplay/duriantreeinfo/tree-list`, method: "GET", - query: param.query, - responseType: "arraybuffer" + query: param.query }); }, /** - * 隐藏/公开 个人昵称 + * 我的榴莲果树 * @param {Object} param */ - nickname(param) { + buyDurianList(param) { return util$1.request({ - url: `/home/nickname`, - method: "post", + url: `/coreplay/duriantreeinfo/boughtListByUser`, + method: "GET", query: param.query }); + }, + /** + * 榴莲果置换 + * @param {Object} param + */ + exchange(param) { + return util$1.request({ + url: `/coreplay/duriantreeinfo/exchange`, + method: "POST", + data: param.data, + load: true + }); + }, + /** + * 校验姓名 + * @param {Object} param + */ + nameComparison(param) { + return util$1.request({ + url: `/coreplay/app/durian/nameComparison`, + method: "GET", + query: param.query, + load: true + }); + }, + /** + * 交易榴莲果 + * @param {Object} param + */ + consume(param) { + return util$1.request({ + url: `/coreplay/app/durian/consume`, + method: "POST", + data: param.data, + load: true + }); } }; var shop = { @@ -2632,6 +2680,8 @@ if (typeof uni !== 'undefined' && uni && uni.requireGlobal) { team, // 积分 intergral, + // 榴莲果 + durian, // 商城模块 shop, // 上传图片地址 @@ -2649,6 +2699,16 @@ if (typeof uni !== 'undefined' && uni && uni.requireGlobal) { query: param.query, method: "POST" }); + }, + /** + * 获取各种配置 + * @param {Object} param + */ + getConfig() { + return util$1.request({ + url: "/coreplay/configinfo/list", + method: "GET" + }); } }; var util = { diff --git a/jiuyi2/unpackage/dist/dev/app-plus/pages/index/videoDetail.js b/jiuyi2/unpackage/dist/dev/app-plus/pages/index/videoDetail.js index 71ac7a6b..9d2c1eb4 100644 --- a/jiuyi2/unpackage/dist/dev/app-plus/pages/index/videoDetail.js +++ b/jiuyi2/unpackage/dist/dev/app-plus/pages/index/videoDetail.js @@ -1827,28 +1827,6 @@ if (typeof uni !== 'undefined' && uni && uni.requireGlobal) { load: true }); }, - /** - * 支付 - * @param {Object} param - */ - pay(param) { - return util$1.request({ - url: "/home/pay", - query: param.query, - method: "POST" - }); - }, - /** - * 获取余额记录 - * @param {Object} param - */ - getBalanceLog(param) { - return util$1.request({ - url: "/home/getBalanceLog", - query: param.query, - method: "POST" - }); - }, /** * 查询我的钱包接口 * @param {Object} param @@ -1869,6 +1847,39 @@ if (typeof uni !== 'undefined' && uni && uni.requireGlobal) { query: param.query, method: "GET" }); + }, + /** + * 获取待释放列表 + * @param {Object} param + */ + releasedList(param) { + return util$1.request({ + url: "/user/released/list", + query: param.query, + method: "GET" + }); + }, + /** + * 根据用户账号查询用户id + * @param {Object} param + */ + getUserDataByAccount(param) { + return util$1.request({ + url: "/coreplay/app/durian/getUserDataByAccount", + query: param.query, + method: "GET" + }); + }, + /** + * 设置二级密码 + * @param {Object} param + */ + setSecondLevelCipher(param) { + return util$1.request({ + url: "/user/user/setSecondLevelCipher", + body: param.body, + method: "POST" + }); } }; var video = { @@ -2552,32 +2563,69 @@ if (typeof uni !== 'undefined' && uni && uni.requireGlobal) { buyScroll(param) { return util$1.request({ url: `/coreplay/app/scrollinfo/buyScroll`, - method: "G", + method: "POST", data: param.data }); - }, + } + }; + var durian = { /** - * 验证码生成 + * 果树列表 * @param {Object} param */ - myQrcode(param) { + durianList(param) { return util$1.request({ - url: `/user/team/getH5Link`, + url: `/coreplay/duriantreeinfo/tree-list`, method: "GET", - query: param.query, - responseType: "arraybuffer" + query: param.query }); }, /** - * 隐藏/公开 个人昵称 + * 我的榴莲果树 * @param {Object} param */ - nickname(param) { + buyDurianList(param) { return util$1.request({ - url: `/home/nickname`, - method: "post", + url: `/coreplay/duriantreeinfo/boughtListByUser`, + method: "GET", query: param.query }); + }, + /** + * 榴莲果置换 + * @param {Object} param + */ + exchange(param) { + return util$1.request({ + url: `/coreplay/duriantreeinfo/exchange`, + method: "POST", + data: param.data, + load: true + }); + }, + /** + * 校验姓名 + * @param {Object} param + */ + nameComparison(param) { + return util$1.request({ + url: `/coreplay/app/durian/nameComparison`, + method: "GET", + query: param.query, + load: true + }); + }, + /** + * 交易榴莲果 + * @param {Object} param + */ + consume(param) { + return util$1.request({ + url: `/coreplay/app/durian/consume`, + method: "POST", + data: param.data, + load: true + }); } }; var shop = { @@ -2628,6 +2676,8 @@ if (typeof uni !== 'undefined' && uni && uni.requireGlobal) { team, // 积分 intergral, + // 榴莲果 + durian, // 商城模块 shop, // 上传图片地址 @@ -2645,6 +2695,16 @@ if (typeof uni !== 'undefined' && uni && uni.requireGlobal) { query: param.query, method: "POST" }); + }, + /** + * 获取各种配置 + * @param {Object} param + */ + getConfig() { + return util$1.request({ + url: "/coreplay/configinfo/list", + method: "GET" + }); } }; var util = { diff --git a/jiuyi2/unpackage/dist/dev/app-plus/pages/login/lock.css b/jiuyi2/unpackage/dist/dev/app-plus/pages/login/lock.css new file mode 100644 index 00000000..5fc56df2 --- /dev/null +++ b/jiuyi2/unpackage/dist/dev/app-plus/pages/login/lock.css @@ -0,0 +1,39 @@ +/** + * 这里是uni-app内置的常用样式变量 + * + * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 + * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App + * + */ +/** + * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 + * + * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 + */ +/* 颜色变量 */ +/* 行为相关颜色 */ +/* 文字基本颜色 */ +/* 背景颜色 */ +/* 边框颜色 */ +/* 尺寸变量 */ +/* 文字尺寸 */ +/* 图片尺寸 */ +/* Border Radius */ +/* 水平间距 */ +/* 垂直间距 */ +/* 透明度 */ +/* 文章场景相关 */ +.container[data-v-4d44acdb] { + width: 100vw; + height: 100vh; +} +.container .password[data-v-4d44acdb] { + width: 80%; + background-color: #eee; +} +.container .password .input[data-v-4d44acdb] { + padding: 0.625rem 0.625rem; +} +.container .button[data-v-4d44acdb] { + width: 80%; +} \ No newline at end of file diff --git a/jiuyi2/unpackage/dist/dev/app-plus/pages/mine/setting/secondPwd.css b/jiuyi2/unpackage/dist/dev/app-plus/pages/mine/setting/secondPwd.css new file mode 100644 index 00000000..e69de29b