From e944883d021a71da57b3f6c7ce7101c2bcc31b90 Mon Sep 17 00:00:00 2001 From: wupengfei <834520024@qq.com> Date: 星期三, 23 四月 2025 09:14:27 +0800 Subject: [PATCH] feat: 接口 --- src/components/commonView/DetailView.vue | 27 ++++++++++++++------------- 1 files changed, 14 insertions(+), 13 deletions(-) diff --git a/src/components/commonView/DetailView.vue b/src/components/commonView/DetailView.vue index a473325..e0a4643 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,16 @@ 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[]; + enterpriseRelateFileUrl: UploadUserFile[]; }; }; -- Gitblit v1.9.1