From 8fb20fc31b4be097e5408b9ecfeb5002ebe042f3 Mon Sep 17 00:00:00 2001
From: wupengfei <834520024@qq.com>
Date: 星期四, 10 四月 2025 15:07:47 +0800
Subject: [PATCH] feat: 接口

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

diff --git a/src/components/commonView/DetailView.vue b/src/components/commonView/DetailView.vue
index a473325..af0b043 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,6 @@
 import BatchInfoView from './BatchInfoView.vue';
 import MaterialInfoView from './MaterialInfoView.vue';
 import SettlementMaterialInfoView from './SettlementMaterialInfoView.vue';
-import DeclareEnterpriseTableView from './DeclareEnterpriseTableView.vue';
 
 defineOptions({
   name: 'DetailView',
@@ -33,9 +27,15 @@
 type Props = {
   hasForm?: boolean;
   form?: {
-    categoryName: string;
-    amount: number;
-    url: UploadUserFile[];
+    batchNo: string;
+    parkName: string;
+    parkTypeName: string;
+    applyMonth: string;
+    applySumAmount: number;
+    enterpriseTaxSubFileUrl: UploadUserFile[];
+    enterpriseOperateFileUrl: UploadUserFile[];
+    bountyAssignFileUlr: UploadUserFile[];
+    bountyCollectFileUrl: UploadUserFile[];
   };
 };
 

--
Gitblit v1.9.1