From d672ebb9f0f733ca203e92ed3cb2bd3096c22c0a Mon Sep 17 00:00:00 2001
From: wupengfei <834520024@qq.com>
Date: 星期四, 15 五月 2025 14:27:41 +0800
Subject: [PATCH] fix: bug

---
 src/components/commonView/DetailView.vue |   32 +++++++++++++++++++-------------
 1 files changed, 19 insertions(+), 13 deletions(-)

diff --git a/src/components/commonView/DetailView.vue b/src/components/commonView/DetailView.vue
index a473325..31fef11 100644
--- a/src/components/commonView/DetailView.vue
+++ b/src/components/commonView/DetailView.vue
@@ -1,20 +1,15 @@
 <template>
   <ProForm :model="form" label-width="160px" label-position="left" is-read>
-    <ChunkCellV2 title="鏉愭枡瀹℃牳">
+    <ChunkCellV2 title="鎵规淇℃伅" style="margin-bottom: 0">
       <BatchInfoView :form="form"></BatchInfoView>
     </ChunkCellV2>
-    <ChunkCellV2 title="姹囨�绘潗鏂�">
+    <ChunkCellV2 title="姹囨�绘潗鏂�" style="margin-bottom: 0">
       <MaterialInfoView :form="form"></MaterialInfoView>
     </ChunkCellV2>
-    <ChunkCellV2 title="姹囩畻鏉愭枡">
+    <ChunkCellV2 title="姹囩畻鏉愭枡" style="margin-bottom: 0">
       <SettlementMaterialInfoView :form="form"></SettlementMaterialInfoView>
     </ChunkCellV2>
-    <ChunkCellV2 title="鐢虫姤浼佷笟鍚嶅崟" class="chunk-cell-table">
-      <slot name="table"> </slot>
-    </ChunkCellV2>
-    <ChunkCell v-if="hasForm">
-      <slot name="form"></slot>
-    </ChunkCell>
+    <slot></slot>
   </ProForm>
 </template>
 
@@ -24,7 +19,7 @@
 import BatchInfoView from './BatchInfoView.vue';
 import MaterialInfoView from './MaterialInfoView.vue';
 import SettlementMaterialInfoView from './SettlementMaterialInfoView.vue';
-import DeclareEnterpriseTableView from './DeclareEnterpriseTableView.vue';
+import { CustomerApplyFileTypeListItem } from './utils';
 
 defineOptions({
   name: 'DetailView',
@@ -33,9 +28,20 @@
 type Props = {
   hasForm?: boolean;
   form?: {
-    categoryName: string;
-    amount: number;
-    url: UploadUserFile[];
+    batchNo: string;
+    parkName: string;
+    parkTypeName: string;
+    applyMonth: string;
+    applySumAmount: number;
+    /** 濂栧姳閲戝垎閰嶈〃 */
+    // bountyAssignFileUlr: UploadUserFile[];
+    /** 濂栧姳閲戞眹鎬昏〃 */
+    // bountyCollectFileUrl: UploadUserFile[];
+    parkCollectFileList: CustomerApplyFileTypeListItem[];
+    /**姹囩畻鏉愭枡 */
+    calculationFileList: CustomerApplyFileTypeListItem[];
+    /** 鏄惁鏀寔骞冲彴鍏呭�� */
+    suportPlatRecharge?: boolean;
   };
 };
 

--
Gitblit v1.9.1