|
@@ -256,6 +256,11 @@
|
|
|
{{ row.payee_info?.name || "-" }}
|
|
{{ row.payee_info?.name || "-" }}
|
|
|
</template>
|
|
</template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
|
|
+ <el-table-column prop="payee_info.identity_type" label="收款方类型" min-width="100">
|
|
|
|
|
+ <template #default="{ row }">
|
|
|
|
|
+ {{ getPayeeTypeLabel(row.payee_info?.identity_type) }}
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </el-table-column>
|
|
|
<el-table-column prop="status" label="状态" min-width="100">
|
|
<el-table-column prop="status" label="状态" min-width="100">
|
|
|
<template #default="{ row }">
|
|
<template #default="{ row }">
|
|
|
<el-tag :type="getTransferStatusType(row.status)">
|
|
<el-tag :type="getTransferStatusType(row.status)">
|
|
@@ -389,6 +394,15 @@ function getTransferStatusType(status: string) {
|
|
|
return map[status] || "info";
|
|
return map[status] || "info";
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+function getPayeeTypeLabel(type: string) {
|
|
|
|
|
+ const map: Record<string, string> = {
|
|
|
|
|
+ ALIPAY_ACCOUNT: "支付宝",
|
|
|
|
|
+ BANK_CARD: "银行卡",
|
|
|
|
|
+ BOOK: "资金专户",
|
|
|
|
|
+ };
|
|
|
|
|
+ return map[type] || type;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
async function fetchAccountInfo() {
|
|
async function fetchAccountInfo() {
|
|
|
if (!currentEnterpriseId.value) return;
|
|
if (!currentEnterpriseId.value) return;
|
|
|
|
|
|