From f70d33a7d377a2d5b2adf8f5a85839baa1e1d42f Mon Sep 17 00:00:00 2001 From: 18278715334 <18278715334@163.com> Date: Mon, 5 Jan 2026 10:48:05 +0800 Subject: [PATCH] fixadd --- .../agent-withdrawal/modules/review-modal.vue | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/apps/web-antd/src/views/agent/agent-withdrawal/modules/review-modal.vue b/apps/web-antd/src/views/agent/agent-withdrawal/modules/review-modal.vue index cc27490..a5ab2d8 100644 --- a/apps/web-antd/src/views/agent/agent-withdrawal/modules/review-modal.vue +++ b/apps/web-antd/src/views/agent/agent-withdrawal/modules/review-modal.vue @@ -45,9 +45,9 @@ const getFormSchema = (): VbenFormSchema[] => [ addonBefore: '¥', }, }, - // 银行卡提现特有字段:扣税金额 + // 银行卡和支付宝通用字段:扣税金额 { - component: 'InputNumber', + component: 'InputNumber' , fieldName: 'tax_amount', label: '扣税金额', componentProps: { @@ -57,12 +57,8 @@ const getFormSchema = (): VbenFormSchema[] => [ style: { width: '100%' }, addonBefore: '¥', }, - dependencies: { - show: (values) => values.withdraw_type === '银行卡', - triggerFields: ['withdraw_type'], - }, }, - // 银行卡提现特有字段:实际转账金额 + // 银行卡和支付宝通用字段:实际转账金额 { component: 'InputNumber', fieldName: 'actual_amount', @@ -74,10 +70,6 @@ const getFormSchema = (): VbenFormSchema[] => [ style: { width: '100%' }, addonBefore: '¥', }, - dependencies: { - show: (values) => values.withdraw_type === '银行卡', - triggerFields: ['withdraw_type'], - }, }, // 银行卡和支付宝都有:收款账号 {