| | |
| | | <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> |
| | | |
| | |
| | | import BatchInfoView from './BatchInfoView.vue'; |
| | | import MaterialInfoView from './MaterialInfoView.vue'; |
| | | import SettlementMaterialInfoView from './SettlementMaterialInfoView.vue'; |
| | | import DeclareEnterpriseTableView from './DeclareEnterpriseTableView.vue'; |
| | | import { CustomerApplyFileTypeListItem } from './utils'; |
| | | |
| | | defineOptions({ |
| | | name: 'DetailView', |
| | |
| | | type Props = { |
| | | hasForm?: boolean; |
| | | form?: { |
| | | categoryName: string; |
| | | amount: number; |
| | | url: UploadUserFile[]; |
| | | batchNo: string; |
| | | parkName: string; |
| | | parkTypeName: string; |
| | | applyMonth: string; |
| | | applySumAmount: number; |
| | | /** 奖励金分配表 */ |
| | | bountyAssignFileUlr: UploadUserFile[]; |
| | | /** 奖励金汇总表 */ |
| | | bountyCollectFileUrl: UploadUserFile[]; |
| | | parkCollectFileList: CustomerApplyFileTypeListItem[]; |
| | | /** 是否支持平台充值 */ |
| | | suportPlatRecharge?: boolean; |
| | | }; |
| | | }; |
| | | |