From 8c7c68d21beaeb02b2141c7279f817ee95ff7449 Mon Sep 17 00:00:00 2001 From: wupengfei <834520024@qq.com> Date: 星期五, 25 七月 2025 13:12:30 +0800 Subject: [PATCH] fix: bug --- src/constants/fourStreams.ts | 21 ++++++++++++++++----- 1 files changed, 16 insertions(+), 5 deletions(-) diff --git a/src/constants/fourStreams.ts b/src/constants/fourStreams.ts index 4b6fcf8..b8c2138 100644 --- a/src/constants/fourStreams.ts +++ b/src/constants/fourStreams.ts @@ -80,31 +80,37 @@ 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', enCode: 'authType', name: '浼佷笟绫诲瀷', + width: 120, }, { id: '6', enCode: 'licenseUrl', name: '钀ヤ笟鎵х収', + width: 120, }, { id: '7', @@ -114,22 +120,27 @@ ]); 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