diff --git a/src/api/api.js b/src/api/api.js index abd0cd2..0609b7d 100644 --- a/src/api/api.js +++ b/src/api/api.js @@ -134,6 +134,14 @@ const transferInspectPlan = (params) => getAction('/process/esInspectPlanFlow/fl // 审批(通过、驳回) const approvalInspectPlan = (params) => postAction('/process/esInspectPlanFlow/flowApproval', params) +/* 企标稽查流程 */ +// 详情信息 +const getInspectProcessDetail = (params) => getAction('/esinspect/esInspectFlowController/queryDetailByProjectId', params) +// 审批(通过、驳回) +const approvalInspectProcess = (params) => postAction('/esinspect/esInspectFlowController/flowApproval', params) +// 转办 +const transferInspectProcess = (params) => getAction('/esinspect/esInspectFlowController/flowTransfer', params) + export { queryPermissionsByUser, getFormDictTreeList, @@ -193,5 +201,9 @@ export { getInspectPlanDetail, transferInspectPlan, - approvalInspectPlan + approvalInspectPlan, + + getInspectProcessDetail, + approvalInspectProcess, + transferInspectProcess } diff --git a/src/common/lang/en-us.js b/src/common/lang/en-us.js index 6f98603..f7be797 100644 --- a/src/common/lang/en-us.js +++ b/src/common/lang/en-us.js @@ -7,6 +7,7 @@ module.exports = { english: 'english', noMobile: '当前节点不支持手机端操作', toPc: '请前往PC端进行操作', + toPcLook: '请前往PC端查看', basicInformation: '基础信息', personalInformation: '人员信息', processInformation: '流程信息', @@ -37,6 +38,8 @@ module.exports = { pleaseEnterRemarks: '请填写备注', dispatchInformation: '业务分派信息', clickToUpload: '点击上传', + operation: 'Operation', + strip: 'Items', // 标准法规入库/变更流程 standardEntryOrChange: { source: '来源', @@ -171,5 +174,34 @@ module.exports = { solicitOpinionObject: '征求意见对象', isCountersign: '是否会签', countersignRelevantPersonnel: '会签相关人员' - } + }, + // 企标稽查流程 + esInspectionProcess: { + inspectionPlanEs: '稽查计划企标', + esNumber: '企标编号', + esName: '企标名称', + inspectionContent: '稽查内容', + accordingToTerms: '依据条款', + standardContentOrDemand: '标准内容或要求', + opinion: '意见', + sectionNumber: '章节编号', + inspectionReport: '稽查报告', + rectificationPlan: '整改计划', + actualInspectionCompletionDate: '实际稽查完成日期', + actualInspector: '实际稽查人', + implementation: '执行情况', + file: '附件', + score: '评分', + enterpriseStandard: '企标:', + sectionClause: '章节条款', + isNeedRectification: '是否需要整改', + nonCompliantDescription: '不符合项描述', + rectificationMeasures: '整改措施', + rectificationUnit: '整改单位', + rectificationDirector: '整改负责人', + planDoneDate: '计划完成日期', + rectificationPlanDoneDate: '整改计划完成日期', + rectificationRealityDoneDate: '整改实际完成日期', + rectificationStatus: '整改状态' + }, } diff --git a/src/common/lang/zh-cn.js b/src/common/lang/zh-cn.js index 53fe4df..351d1d2 100644 --- a/src/common/lang/zh-cn.js +++ b/src/common/lang/zh-cn.js @@ -7,6 +7,7 @@ module.exports = { english: '英', noMobile: '当前节点不支持手机端操作', toPc: '请前往PC端进行操作', + toPcLook: '请前往PC端查看', basicInformation: '基础信息', personalInformation: '人员信息', processInformation: '流程信息', @@ -37,6 +38,8 @@ module.exports = { pleaseEnterRemarks: '请填写备注', dispatchInformation: '业务分派信息', clickToUpload: '点击上传', + operation: '操作', + strip: '条', // 标准法规入库/变更流程 standardEntryOrChange: { source: '来源', @@ -178,5 +181,34 @@ module.exports = { solicitOpinionObject: '征求意见对象', isCountersign: '是否会签', countersignRelevantPersonnel: '会签相关人员' - } + }, + // 企标稽查流程 + esInspectionProcess: { + inspectionPlanEs: '稽查计划企标', + esNumber: '企标编号', + esName: '企标名称', + inspectionContent: '稽查内容', + accordingToTerms: '依据条款', + standardContentOrDemand: '标准内容或要求', + opinion: '意见', + sectionNumber: '章节编号', + inspectionReport: '稽查报告', + rectificationPlan: '整改计划', + actualInspectionCompletionDate: '实际稽查完成日期', + actualInspector: '实际稽查人', + implementation: '执行情况', + file: '附件', + score: '评分', + enterpriseStandard: '企标:', + sectionClause: '章节条款', + isNeedRectification: '是否需要整改', + nonCompliantDescription: '不符合项描述', + rectificationMeasures: '整改措施', + rectificationUnit: '整改单位', + rectificationDirector: '整改负责人', + planDoneDate: '计划完成日期', + rectificationPlanDoneDate: '整改计划完成日期', + rectificationRealityDoneDate: '整改实际完成日期', + rectificationStatus: '整改状态' + }, } diff --git a/src/enums/commonEnums.js b/src/enums/commonEnums.js index 555b0bb..694294a 100644 --- a/src/enums/commonEnums.js +++ b/src/enums/commonEnums.js @@ -118,6 +118,15 @@ export const EsInspectionPlan = new EsEnums({ liaisonLeaderApproval: { text: '联络人主管级领导批准', value: 'leader_approval', isMobile: true } }) +// 企标稽查流程 +export const EsInspectionProcess = new EsEnums({ + initiate: { text: '稽查负责人发起', value: 'responsible_start' }, + directorLeaderApprovalOne: { text: '负责人主管级领导审批', value: 'leader_approval', isMobile: true }, + inputInspectionReport: { text: '稽查负责人上传稽查报告和整改计划', value: 'responsible_upload' }, + directorLeaderApprovalTwo: { text: '负责人主管级领导审批', value: 'leader_approval_again', isMobile: true }, + relevantPersonnelCountersign: { text: '相关人员会签', value: 'involve_countersign', isMobile: true } +}) + // 标准征求意见流程 export const ConsultationProcess = new EsEnums({ initiate: { text: '法规工程师发起', value: 'engineer_start', btn: ['save', 'submit'] }, diff --git a/src/router/workCenter/index.js b/src/router/workCenter/index.js index c0eb282..9eb1a76 100644 --- a/src/router/workCenter/index.js +++ b/src/router/workCenter/index.js @@ -79,5 +79,15 @@ export default [ hasBack: true }, component: () => import('@/views/workCenter/enterpriseStandardInspectionPlan/EnterpriseStandardInspectionPlanFlow') + }, + // 企标稽查流程 + { + path: '/workCenter/EnterpriseStandardInspectionProcess', + name: 'EnterpriseStandardInspectionProcess', + meta: { + hasNavBar: true, + hasBack: true + }, + component: () => import('@/views/workCenter/enterpriseStandardInspectionProcess/EenterpriseStandardInspectionProcess') } ] diff --git a/src/views/workCenter/enterpriseStandardInspectionPlan/EnterpriseStandardInspectionPlanFlow.vue b/src/views/workCenter/enterpriseStandardInspectionPlan/EnterpriseStandardInspectionPlanFlow.vue index 3938cfd..eafca05 100644 --- a/src/views/workCenter/enterpriseStandardInspectionPlan/EnterpriseStandardInspectionPlanFlow.vue +++ b/src/views/workCenter/enterpriseStandardInspectionPlan/EnterpriseStandardInspectionPlanFlow.vue @@ -40,7 +40,9 @@