From 8144b3a57bee141ba4f34ec8eb85fe03c78aa284 Mon Sep 17 00:00:00 2001 From: wxy <14293288+zysysys@user.noreply.gitee.com> Date: Mon, 26 Aug 2024 09:37:00 +0800 Subject: [PATCH] =?UTF-8?q?fix(pay):=20=E5=B0=86=E6=94=AF=E4=BB=98?= =?UTF-8?q?=E9=87=91=E9=A2=9D=E7=9A=84subject=E6=94=B9=E4=B8=BA'=E5=85=85?= =?UTF-8?q?=E5=80=BC=E9=87=91=E9=A2=9D'=E4=BB=A5=E6=98=8E=E7=A1=AE?= =?UTF-8?q?=E7=94=A8=E9=80=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 在支付功能中,将'支付金额'的subject改为'充值金额',以更准确地描述其用途,增强用户理解。 fix(user): 修正userBalance API引入路径错误 修正了userBalance API的引入路径,确保用户余额查询功能的正确调用。 --- src/views/money/pay/index.vue | 2 +- src/views/money/user/index.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/money/pay/index.vue b/src/views/money/pay/index.vue index 682368a..f397ff9 100644 --- a/src/views/money/pay/index.vue +++ b/src/views/money/pay/index.vue @@ -86,7 +86,7 @@ export default { // 传递同步跳转地址 returnUrl: this.returnUrl, // 商品名称 - subject: '支付金额', + subject: '充值金额', // 支付类型 productCode: 'FAST_INSTANT_TRADE_PAY' } diff --git a/src/views/money/user/index.vue b/src/views/money/user/index.vue index 0f5cdc2..aa0fac9 100644 --- a/src/views/money/user/index.vue +++ b/src/views/money/user/index.vue @@ -9,7 +9,7 @@