From 36192f530cda7b8021acb02a9aa05c7f96d84288 Mon Sep 17 00:00:00 2001
From: daiqi99 <996325792@qq.com>
Date: Fri, 15 May 2026 16:49:52 +0800
Subject: [PATCH] =?UTF-8?q?fix=EF=BC=9A0515=20=E5=8D=A1=E5=88=B8=E8=B6=85?=
=?UTF-8?q?=E5=B8=82=E6=96=B0=E5=A2=9E=E6=94=AF=E4=BB=98=E6=96=B9=E5=BC=8F?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/plugins/couponmall/order/index.vue | 10 ++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)
diff --git a/src/views/plugins/couponmall/order/index.vue b/src/views/plugins/couponmall/order/index.vue
index a6da1faa6..15c7c1fd4 100644
--- a/src/views/plugins/couponmall/order/index.vue
+++ b/src/views/plugins/couponmall/order/index.vue
@@ -112,6 +112,7 @@
微信支付
+ 支付宝支付
@@ -444,7 +445,12 @@ export default {
label: '支付方式',
width: '100',
render: (h, params) => {
- return h('el-tag', { props: { type: 'success' }}, '微信支付')
+ const { payType } = params.payType
+ if (payType === 20) {
+ return h('el-tag', { props: { type: 'success' }}, '支付宝支付')
+ } else {
+ return h('el-tag', { props: { type: 'success' }}, '微信支付')
+ }
}
},
{
@@ -631,7 +637,7 @@ export default {
this.$set(item, 'totalFee', item.totalFee ? this.$u.amount.F2Y(item.totalFee) : '')
this.$set(item, 'discFee', item.discFee ? this.$u.amount.F2Y(item.discFee) : '')
this.$set(item, 'paidFee', item.paidFee ? this.$u.amount.F2Y(item.paidFee) : '')
- this.$set(item, 'payType', item.payType === 21 ? '微信支付' : '')
+ this.$set(item, 'payType', item.payType === 21 ? '微信支付' : item.payType === 20 ? '支付宝支付' : '')
// this.$set(item, 'fullRefund', item.fullRefund === 1 ? '是' : '否')
this.$set(item, 'refundFee', item.refundFee ? this.$u.amount.F2Y(item.refundFee) : '')
// this.$set(item, 'discInfo', item.discInfo ? this.formatDiscInfo(item.discInfo) : '')
--
Gitee