diff --git a/apps/web-antd/src/views/agent/agent-withdrawal/data.ts b/apps/web-antd/src/views/agent/agent-withdrawal/data.ts index 9d18837..5681f65 100644 --- a/apps/web-antd/src/views/agent/agent-withdrawal/data.ts +++ b/apps/web-antd/src/views/agent/agent-withdrawal/data.ts @@ -14,6 +14,18 @@ export function useWithdrawalColumns(): VxeTableGridOptions['columns'] { width: 120, formatter: ({ cellValue }) => `¥${cellValue?.toFixed(2) || '0.00'}`, }, + { + title: '扣税金额', + field: 'tax_amount', + width: 120, + formatter: ({ cellValue }) => `¥${cellValue?.toFixed(2) || '0.00'}`, + }, + { + title: '实际转账金额', + field: 'actual_amount', + width: 120, + formatter: ({ cellValue }) => `¥${cellValue?.toFixed(2) || '0.00'}`, + }, { title: '提现类型', field: 'withdraw_type', diff --git a/apps/web-antd/src/views/agent/agent-withdrawal/list.vue b/apps/web-antd/src/views/agent/agent-withdrawal/list.vue index 2f1907d..5b7467c 100644 --- a/apps/web-antd/src/views/agent/agent-withdrawal/list.vue +++ b/apps/web-antd/src/views/agent/agent-withdrawal/list.vue @@ -92,7 +92,7 @@ const [Grid, gridApi] = useVbenVxeGrid({