From 8ddc8f3bb5fd4b2a58724b2bf8dfe038f350b27d Mon Sep 17 00:00:00 2001 From: zhengyiming <540361168@qq.com> Date: 星期五, 25 七月 2025 15:55:00 +0800 Subject: [PATCH] fix: 奖励金审核 --- src/components/commonView/DetailView.vue | 24 ++++++++++++++++++------ 1 files changed, 18 insertions(+), 6 deletions(-) diff --git a/src/components/commonView/DetailView.vue b/src/components/commonView/DetailView.vue index af0b043..a1c8ab8 100644 --- a/src/components/commonView/DetailView.vue +++ b/src/components/commonView/DetailView.vue @@ -1,9 +1,13 @@ <template> <ProForm :model="form" label-width="160px" label-position="left" is-read> - <ChunkCellV2 title="鏉愭枡瀹℃牳" style="margin-bottom: 0"> + <ChunkCellV2 title="鎵规淇℃伅" style="margin-bottom: 0"> <BatchInfoView :form="form"></BatchInfoView> </ChunkCellV2> - <ChunkCellV2 title="姹囨�绘潗鏂�" style="margin-bottom: 0"> + <ChunkCellV2 + title="姹囨�绘潗鏂�" + style="margin-bottom: 0" + v-if="form.parkCollectFileList.length > 0" + > <MaterialInfoView :form="form"></MaterialInfoView> </ChunkCellV2> <ChunkCellV2 title="姹囩畻鏉愭枡" style="margin-bottom: 0"> @@ -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