From 527cfcdcf835585e1b05a417223f716839bed0dc Mon Sep 17 00:00:00 2001 From: gyq <875626088@qq.com> Date: Sat, 17 Jan 2026 17:22:42 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=94=B9=E6=94=AF=E4=BB=98=E6=A8=A1?= =?UTF-8?q?=E5=BC=8F=E6=9E=9A=E4=B8=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/order/group-purchase.vue | 8 ++++---- src/views/shop/groupBuying/index.vue | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/views/order/group-purchase.vue b/src/views/order/group-purchase.vue index a2da669..220f2b9 100644 --- a/src/views/order/group-purchase.vue +++ b/src/views/order/group-purchase.vue @@ -7,8 +7,8 @@ - - + + @@ -135,11 +135,11 @@ export default { }, payTypes: [ { - value: "wechatPay", + value: "WECHAT", label: "微信支付" }, { - value: "aliPay", + value: "ALIPAY", label: "支付宝支付" } ], diff --git a/src/views/shop/groupBuying/index.vue b/src/views/shop/groupBuying/index.vue index 32e6a7b..2aa56de 100644 --- a/src/views/shop/groupBuying/index.vue +++ b/src/views/shop/groupBuying/index.vue @@ -245,8 +245,8 @@ const tableData = reactive({ // 支付方式类型 function payTypeFilter(t) { const m = { - wechatPay: '微信支付', - aliPay: '支付宝支付' + WECHAT: '微信支付', + ALIPAY: '支付宝支付' } return m[t] }