| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- export default {
- data() {
- return {
- workflowList: [],
- // 所有表单数据聚合
- formData: {
- // 监审立项信息表单
- basicInfo: {
- projectName: '',
- relatedCatalog: '',
- province: '',
- city: '',
- district: '',
- auditedUnit: '',
- auditBody: '',
- planYear: '',
- initiationType: '',
- auditForm: '',
- costYears: [{ value: '2022' }, { value: '2023' }, { value: '2024' }],
- needAudit: false,
- needEvaluation: false,
- initiationReason: '',
- // 修改为与图片一致的立项依据文件列表
- initiationBasisFiles: [
- { name: '太原市电力公司关于电网输配电价格调整申请表.pdf' },
- { name: '******依据文件.pdf' },
- ],
- // 修改为与图片一致的其他材料文件列表
- otherFiles: [{ name: '立项审批表.pdf' }],
- auditLeader: '',
- auditTeamMembers: '',
- otherRequirements: '',
- },
- // 监审工作方案表单
- workPlan: {
- basicInfo: '',
- stepsMethods: '',
- otherContent: '',
- },
- // 材料表单(弹窗用)
- material: {
- category: '综合性材料',
- name: '',
- requirements: '',
- format: '文档文件',
- sort: '',
- required: '否',
- },
- // 当前流程环节(弹窗用)
- currentStep: {
- manager: '',
- deadline: '',
- },
- // 监审工作流程表单
- workflow: {
- startDate: '2025-01-20',
- endDate: '2025-03-30',
- },
- // 文档表单(弹窗用)
- document: {
- template: 'costAuditNotice',
- documentNumber: '晋成审(2025)11号',
- auditedUnit: 'A公司',
- auditProject: '',
- auditMatters: '',
- auditPeriod: '',
- auditTeam: '',
- teamLeader: '',
- noticeDate: '',
- },
- },
- // 数据列表聚合
- materialData: {
- list: [
- {
- id: 1,
- index: 1,
- category: '综合性材料',
- name: '企业基本情况介绍',
- requirements: '包括企业名称、企业地址、企业员工数量、……',
- format: '文档文件',
- sort: 1,
- },
- {
- id: 2,
- index: 2,
- category: '综合性材料',
- name: '组织结构图',
- requirements: '……',
- format: '文档文件',
- sort: 2,
- },
- {
- id: 3,
- index: 3,
- category: '综合性材料',
- name: '营业执照',
- requirements: '……',
- format: '文档文件',
- sort: 3,
- },
- {
- id: 4,
- index: 4,
- category: '财务会计资料',
- name: '财务会计报表',
- requirements: '……',
- format: 'excel文件',
- sort: 4,
- },
- {
- id: 5,
- index: 5,
- category: '财务会计资料',
- name: '资产卡片',
- requirements: '……',
- format: '预置模板',
- sort: 5,
- },
- ],
- },
- surveyData: {
- list: [
- {
- id: 1,
- index: 1,
- name: '封面',
- type: '模板定制',
- required: '是',
- },
- {
- id: 2,
- index: 2,
- name: '企业基本情况调查表',
- type: '模板定制',
- required: '是',
- },
- {
- id: 3,
- index: 3,
- name: '企业成本费用调查表',
- type: '模板定制',
- required: '是',
- },
- {
- id: 4,
- index: 4,
- name: '企业期间费用调查表',
- type: '模板定制',
- required: '是',
- },
- {
- id: 5,
- index: 5,
- name: '企业职工薪酬调查表',
- type: '模板定制',
- required: '是',
- },
- ],
- },
- }
- },
- }
|