From 598d868e59daae4502c4f8fe4b4d3833a7e371be Mon Sep 17 00:00:00 2001 From: wupengfei <834520024@qq.com> Date: 星期三, 23 七月 2025 16:45:13 +0800 Subject: [PATCH] feat: 接口 --- src/components/commonView/DetailView.vue | 26 +++++++++++++++++++------- 1 files changed, 19 insertions(+), 7 deletions(-) diff --git a/src/components/commonView/DetailView.vue b/src/components/commonView/DetailView.vue index 18acd11..a1c8ab8 100644 --- a/src/components/commonView/DetailView.vue +++ b/src/components/commonView/DetailView.vue @@ -1,12 +1,16 @@ <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" + v-if="form.parkCollectFileList.length > 0" + > <MaterialInfoView :form="form"></MaterialInfoView> </ChunkCellV2> - <ChunkCellV2 title="姹囩畻鏉愭枡"> + <ChunkCellV2 title="姹囩畻鏉愭枡" style="margin-bottom: 0"> <SettlementMaterialInfoView :form="form"></SettlementMaterialInfoView> </ChunkCellV2> <slot></slot> @@ -19,6 +23,7 @@ import BatchInfoView from './BatchInfoView.vue'; import MaterialInfoView from './MaterialInfoView.vue'; import SettlementMaterialInfoView from './SettlementMaterialInfoView.vue'; +import { CustomerApplyFileTypeListItem } from './utils'; defineOptions({ name: 'DetailView', @@ -32,10 +37,17 @@ parkTypeName: string; applyMonth: string; applySumAmount: number; - enterpriseTaxSubFileUrl: UploadUserFile[]; - enterpriseOperateFileUrl: UploadUserFile[]; - bountyAssignFileUlr: UploadUserFile[]; - bountyCollectFileUrl: UploadUserFile[]; + financeSumAmount: number; + settleSumAmount: number; + /** 濂栧姳閲戝垎閰嶈〃 */ + // bountyAssignFileUlr: UploadUserFile[]; + /** 濂栧姳閲戞眹鎬昏〃 */ + // bountyCollectFileUrl: UploadUserFile[]; + parkCollectFileList: CustomerApplyFileTypeListItem[]; + /**姹囩畻鏉愭枡 */ + calculationFileList: CustomerApplyFileTypeListItem[]; + /** 鏄惁鏀寔骞冲彴鍏呭�� */ + suportPlatRecharge?: boolean; }; }; -- Gitblit v1.9.1