From 97cb576a5acfeeccd7496b39e8f0b9965d069fc7 Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期一, 08 十二月 2025 09:55:11 +0800
Subject: [PATCH] fix: 财政拨付文字改成推广补贴发放

---
 src/hooks/fourStreams.ts |   15 +++++++++------
 1 files changed, 9 insertions(+), 6 deletions(-)

diff --git a/src/hooks/fourStreams.ts b/src/hooks/fourStreams.ts
index 0ea2acc..2cd8bfc 100644
--- a/src/hooks/fourStreams.ts
+++ b/src/hooks/fourStreams.ts
@@ -36,13 +36,13 @@
       {
         id: '9',
         enCode: 'financeAmount',
-        name: '璐㈡斂鎷ㄤ粯閲戦',
+        name: '鎺ㄥ箍琛ヨ创鍙戞斁閲戦',
         width: 160,
       },
       {
         id: '10',
         enCode: 'financeSumAmount',
-        name: '璐㈡斂鎷ㄤ粯宸茬櫥璁�',
+        name: '鎺ㄥ箍琛ヨ创鍙戞斁宸茬櫥璁�',
         width: 160,
       },
       {
@@ -54,7 +54,7 @@
       {
         id: '12',
         enCode: 'financeStatus',
-        name: '璐㈡斂鎷ㄤ粯鐧昏鐘舵��',
+        name: '鎺ㄥ箍琛ヨ创鍙戞斁鐧昏鐘舵��',
         width: 160,
       },
       {
@@ -91,10 +91,11 @@
   id?: Ref<string>;
   applyMonth?: Ref<string>;
   enableUploadExtraFiles?: boolean;
+  bountyTemplateId?: Ref<string>;
 };
 
 export function useDeclareEnterpriseTable(options: UseDeclareEnterpriseTableOptions = {}) {
-  const { id, applyMonth, enableUploadExtraFiles = false } = options;
+  const { id, applyMonth, enableUploadExtraFiles = false, bountyTemplateId } = options;
 
   const {
     getDataSource: getList,
@@ -158,14 +159,16 @@
     try {
       const applyFilesRes = await queryClient.ensureQueryData({
         queryKey: [
-          'enterpriseApplyFileServices/getCustomerUploadApplyFiles',
+          'enterpriseApplyFileServices/getCustomerUploadApplyFilesV2',
           row.enterpriseId,
           applyMonth.value,
+          bountyTemplateId.value,
         ],
         queryFn: async () => {
-          return await enterpriseApplyFileServices.getCustomerUploadApplyFiles({
+          return await enterpriseApplyFileServices.getCustomerUploadApplyFilesV2({
             enterpriseId: row.enterpriseId,
             withMonth: applyMonth.value,
+            bountyTemplateId: bountyTemplateId.value,
           });
         },
       });

--
Gitblit v1.9.1