From 628e6eb9c76bcc68b5373ab68b51711a28bec786 Mon Sep 17 00:00:00 2001 From: huliyong <2783385703@qq.com> Date: Mon, 28 Jul 2025 16:19:10 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=B0=86=E7=8E=AF=E5=A2=83=E9=85=8D?= =?UTF-8?q?=E7=BD=AE=E6=94=B9=E4=B8=BA=E5=BC=80=E5=8F=91=E6=A8=A1=E5=BC=8F?= =?UTF-8?q?=E5=B9=B6=E4=BF=AE=E5=A4=8D=E4=BC=9A=E5=91=98=E5=85=85=E5=80=BC?= =?UTF-8?q?=E9=A1=B5=E6=98=BE=E7=A4=BA=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 将config.js中的环境类型从'prod'改为'dev'以便开发调试 修复MemberRecharge.vue中图片flex布局问题和特权信息分隔符从'##'改为换行符 --- config.js | 2 +- pages_order/mine/MemberRecharge.vue | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/config.js b/config.js index d08e8ce..9d76a72 100644 --- a/config.js +++ b/config.js @@ -7,7 +7,7 @@ import uvUI from '@/uni_modules/uv-ui-tools' Vue.use(uvUI); // 当前环境 -const type = 'prod' +const type = 'dev' // 环境配置 diff --git a/pages_order/mine/MemberRecharge.vue b/pages_order/mine/MemberRecharge.vue index 4099c65..b339323 100644 --- a/pages_order/mine/MemberRecharge.vue +++ b/pages_order/mine/MemberRecharge.vue @@ -45,7 +45,9 @@ - + {{ item[0] }} {{ item[1] }} @@ -123,7 +125,7 @@ this.list.forEach(n => { if (n.id == this.vipId) { - let keys = n.perquisite.split('##') + let keys = n.perquisite.split('\n') keys.forEach((s, i) => { keys[i] = s.split('$$')