From ba0585c8aa3c9da9a7d1d7366b508c57e9d321d2 Mon Sep 17 00:00:00 2001 From: RuicyWu <1063154311@qq.com> Date: Fri, 12 Jun 2026 16:12:44 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E6=94=AF=E4=BB=98=E5=A4=B1?= =?UTF-8?q?=E8=B4=A5=E6=8F=90=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages-biz/unpaid/unpaid.vue | 4 ++-- pages-biz/unpaid/unpaidMargin.vue | 4 ++-- pages-biz/wae/wae.vue | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pages-biz/unpaid/unpaid.vue b/pages-biz/unpaid/unpaid.vue index f85bc18..8b39d4c 100644 --- a/pages-biz/unpaid/unpaid.vue +++ b/pages-biz/unpaid/unpaid.vue @@ -241,7 +241,7 @@ }, { WT: token }); if (res.code !== 200) { - uni.showToast({ title: res.msg, icon: 'none' }); + uni.showToast({ title: res.message, icon: 'none' }); this.isPaying = false; return; } @@ -269,7 +269,7 @@ } catch (error) { console.error('支付请求异常', error); - uni.showToast({ title: '支付请求失败', icon: 'none' }); + uni.showToast({ title: '支付请求失败: ' + error, icon: 'none' }); this.isPaying = false; } }, diff --git a/pages-biz/unpaid/unpaidMargin.vue b/pages-biz/unpaid/unpaidMargin.vue index 96d082c..86a76f3 100644 --- a/pages-biz/unpaid/unpaidMargin.vue +++ b/pages-biz/unpaid/unpaidMargin.vue @@ -243,7 +243,7 @@ }, { WT: token }); if (res.code !== 200) { - uni.showToast({ title: res.msg, icon: 'none' }); + uni.showToast({ title: res.message, icon: 'none' }); this.isPaying = false; return; } @@ -271,7 +271,7 @@ } catch (error) { console.error('支付请求异常', error); - uni.showToast({ title: '支付请求失败', icon: 'none' }); + uni.showToast({ title: '支付请求失败: ' + error, icon: 'none' }); this.isPaying = false; } }, diff --git a/pages-biz/wae/wae.vue b/pages-biz/wae/wae.vue index 4c965cb..a6ac799 100644 --- a/pages-biz/wae/wae.vue +++ b/pages-biz/wae/wae.vue @@ -219,7 +219,7 @@ const res = await this.$u.post(url, params, { WT: token }); if (res.code !== 200) { - uni.showToast({ title: res.msg, icon: 'none' }); + uni.showToast({ title: res.message, icon: 'none' }); this.isPaying = false; return; } @@ -247,7 +247,7 @@ } catch (error) { console.error('支付请求异常', error); - uni.showToast({ title: '支付请求失败', icon: 'none' }); + uni.showToast({ title: '支付请求失败: ' + error, icon: 'none' }); this.isPaying = false; } },