From 598d868e59daae4502c4f8fe4b4d3833a7e371be Mon Sep 17 00:00:00 2001 From: wupengfei <834520024@qq.com> Date: 星期三, 23 七月 2025 16:45:13 +0800 Subject: [PATCH] feat: 接口 --- src/constants/fourStreams.ts | 20 +++++++++++++++----- 1 files changed, 15 insertions(+), 5 deletions(-) diff --git a/src/constants/fourStreams.ts b/src/constants/fourStreams.ts index 4b6fcf8..a9944a6 100644 --- a/src/constants/fourStreams.ts +++ b/src/constants/fourStreams.ts @@ -80,21 +80,25 @@ id: '1', enCode: 'userName', name: '甯愬彿', + width: 160, }, { id: '2', enCode: 'enterpriseName', name: '浼佷笟鍚嶇О', + width: 250, }, { id: '3', enCode: 'societyCreditCode', name: '淇$敤浠g爜', + width: 200, }, { id: '4', enCode: 'contactPhone', name: '鐢佃瘽', + width: 160, }, { id: '5', @@ -110,26 +114,32 @@ id: '7', enCode: 'bankAccountInfo', name: '鍩烘湰鎴蜂俊鎭�', + width: 300, }, ]); type UseAddRewardApplyStep3ColumnsOptions = { - suportEnterpriseUpload: Ref<boolean>; + suportPlatRecharge: Ref<boolean>; baseColumns?: API.ModuleColumnDto[]; }; export function useAddRewardApplyStep3Columns({ - suportEnterpriseUpload, + suportPlatRecharge, baseColumns = BaseDeclareEnterpriseTableViewColumns, }: UseAddRewardApplyStep3ColumnsOptions) { const addRewardApplyStep3Columns = computed(() => defineColumns( [ ...baseColumns, - suportEnterpriseUpload.value && { + { + id: '8', + enCode: 'financeAmount', + name: '璐㈡斂鎷ㄤ粯閲戦', + }, + suportPlatRecharge.value && { id: '9', - enCode: 'applyAmount', - name: '鐢虫姤閲戦', + enCode: 'transferAmount', + name: '骞冲彴鎷ㄤ粯閲戦', }, ].filter(Boolean) ) -- Gitblit v1.9.1