fix 部分ref值没有使用.value

This commit is contained in:
bootx
2024-08-11 22:05:30 +08:00
parent 952b0dcece
commit 7d8ee6863e

View File

@@ -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[]
})