| | |
| | | <ChunkCellV2 title="汇算材料"> |
| | | <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> |
| | | |
| | |
| | | import BatchInfoView from './BatchInfoView.vue'; |
| | | import MaterialInfoView from './MaterialInfoView.vue'; |
| | | import SettlementMaterialInfoView from './SettlementMaterialInfoView.vue'; |
| | | import DeclareEnterpriseTableView from './DeclareEnterpriseTableView.vue'; |
| | | |
| | | defineOptions({ |
| | | name: 'DetailView', |
| | |
| | | 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[]; |
| | | }; |
| | | }; |
| | | |