完善支付单创建方式链路

This commit is contained in:
2026-06-06 15:25:16 +08:00
parent 07abf2abca
commit 1811abc794
5 changed files with 207 additions and 57 deletions
+6
View File
@@ -1257,6 +1257,12 @@ const getCreateTypeText = (row: any) => {
fubei: '付呗'
}
const ct = row?.create_type
if (ct === 'wechat_work' || ct === 'fubei') {
return createTypeMap[ct]
}
if (ct === 'normal' && row?.payment_method) {
return getPaymentMethodText(row.payment_method)
}
if (ct && createTypeMap[ct]) {
return createTypeMap[ct]
}