From 7d8ee6863eeb540e8a8b5c46c54a52b8421ee6a4 Mon Sep 17 00:00:00 2001 From: bootx Date: Sun, 11 Aug 2024 22:05:30 +0800 Subject: [PATCH] =?UTF-8?q?fix=20=E9=83=A8=E5=88=86ref=E5=80=BC=E6=B2=A1?= =?UTF-8?q?=E6=9C=89=E4=BD=BF=E7=94=A8.value?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/daxpay/admin/order/pay/PayOrderList.vue | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/src/views/daxpay/admin/order/pay/PayOrderList.vue b/src/views/daxpay/admin/order/pay/PayOrderList.vue index f9df6a5b..ce12b908 100644 --- a/src/views/daxpay/admin/order/pay/PayOrderList.vue +++ b/src/views/daxpay/admin/order/pay/PayOrderList.vue @@ -176,12 +176,17 @@ { label: '不支持', value: false }, ], }, - { field: 'channel', name: '支付通道', type: LIST, selectList: channelList }, - { field: 'method', name: '支付方式', type: LIST, selectList: methodList }, + { field: 'channel', name: '支付通道', type: LIST, selectList: channelList.value }, + { field: 'method', name: '支付方式', type: LIST, selectList: methodList.value }, { field: 'errorCode', name: '错误码', type: STRING }, - { field: 'status', name: '支付状态', type: LIST, selectList: payStatusList }, - { field: 'refundStatus', name: '退款状态', type: LIST, selectList: payRefundStatusList }, - { field: 'allocStatus', name: '支付状态', type: LIST, selectList: payAllocStatusList }, + { field: 'status', name: '支付状态', type: LIST, selectList: payStatusList.value }, + { + field: 'refundStatus', + name: '退款状态', + type: LIST, + selectList: payRefundStatusList.value, + }, + { field: 'allocStatus', name: '支付状态', type: LIST, selectList: payAllocStatusList.value }, ] as QueryField[] })