|  |  | 
 |  |  | <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> | 
 |  |  |     <slot></slot> | 
 |  |  | 
 |  |  | 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[]; | 
 |  |  |   }; | 
 |  |  | }; | 
 |  |  |  |