From 5e9f3642abe24502ded3668515bea220e0fc5190 Mon Sep 17 00:00:00 2001 From: wupengfei <834520024@qq.com> Date: 星期五, 25 七月 2025 10:58:23 +0800 Subject: [PATCH] fix: bug --- src/views/Reward/components/BatchRegisterDialog.vue | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/views/Reward/components/BatchRegisterDialog.vue b/src/views/Reward/components/BatchRegisterDialog.vue index a3f1014..8154554 100644 --- a/src/views/Reward/components/BatchRegisterDialog.vue +++ b/src/views/Reward/components/BatchRegisterDialog.vue @@ -45,11 +45,11 @@ </ProFormItemV2> <ProFormItemV2 label="涓婁紶鐧昏鍑瘉:" - prop="certificateUrl" + prop="fileUrl" :check-rules="[{ message: '璇蜂笂浼犵櫥璁板嚟璇�', type: 'upload' }]" > <ProFormUpload - v-model:file-url="form.certificateUrl" + v-model:file-url="form.fileUrl" :limitFileSize="50" accept="doc,docx,pdf,xls,xlsx,jpg/jpeg,png" ></ProFormUpload> @@ -103,7 +103,7 @@ parkBountyApplyId: string; showSuportPlatRecharge: boolean; - certificateUrl: UploadUserFile[]; + fileUrl: UploadUserFile[]; }; const form = defineModel<Form>('form'); @@ -131,7 +131,7 @@ async function getParkBountyApplyBatchTransferEnterprise() { try { - let res = await parkBountyApplyServices.getParkBountyApplyBatchTransferEnterprise({ + let res = await parkBountyApplyServices.getParkBountyApplyBatchTransferRegEnterprise({ parkBountyApplyId: form.value.parkBountyApplyId, }); if (res) { @@ -144,7 +144,7 @@ async function getParkBountyApplyBatchFinanceEnterprise() { try { - let res = await parkBountyApplyServices.getParkBountyApplyBatchFinanceEnterprise({ + let res = await parkBountyApplyServices.getParkBountyApplyBatchFinanceRegEnterprise({ parkBountyApplyId: form.value.parkBountyApplyId, }); if (res) { -- Gitblit v1.9.1