From 050f884fc5c79e0db71a477b8ae3eb0e295e577d Mon Sep 17 00:00:00 2001 From: danshihao Date: Wed, 1 Nov 2023 11:48:05 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=81=E6=A0=87=E7=A8=BD=E6=9F=A5=E6=B5=81?= =?UTF-8?q?=E7=A8=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/common/lang/workCenter/en.js | 29 ++ src/common/lang/workCenter/zh.js | 29 ++ src/views/workCenter/NewProcess.vue | 2 +- .../EnterpriseStandardInspectionProcess.vue | 241 ++++++++++++++ .../modules/InspectionProcessContent.vue | 154 +++++++++ .../modules/InspectionProcessContentModal.vue | 213 ++++++++++++ .../InspectionProcessRectificationPlan.vue | 180 +++++++++++ ...nspectionProcessRectificationPlanModal.vue | 271 ++++++++++++++++ .../modules/InspectionProcessReport.vue | 183 +++++++++++ .../modules/InspectionProcessReportModal.vue | 174 ++++++++++ .../modules/InspectionProcessTable.vue | 305 ++++++++++++++++++ .../modules/InspectionProcessTableModal.vue | 171 ++++++++++ 12 files changed, 1951 insertions(+), 1 deletion(-) create mode 100644 src/views/workCenter/enterpriseStandardInspectionProcess/EnterpriseStandardInspectionProcess.vue create mode 100644 src/views/workCenter/enterpriseStandardInspectionProcess/modules/InspectionProcessContent.vue create mode 100644 src/views/workCenter/enterpriseStandardInspectionProcess/modules/InspectionProcessContentModal.vue create mode 100644 src/views/workCenter/enterpriseStandardInspectionProcess/modules/InspectionProcessRectificationPlan.vue create mode 100644 src/views/workCenter/enterpriseStandardInspectionProcess/modules/InspectionProcessRectificationPlanModal.vue create mode 100644 src/views/workCenter/enterpriseStandardInspectionProcess/modules/InspectionProcessReport.vue create mode 100644 src/views/workCenter/enterpriseStandardInspectionProcess/modules/InspectionProcessReportModal.vue create mode 100644 src/views/workCenter/enterpriseStandardInspectionProcess/modules/InspectionProcessTable.vue create mode 100644 src/views/workCenter/enterpriseStandardInspectionProcess/modules/InspectionProcessTableModal.vue diff --git a/src/common/lang/workCenter/en.js b/src/common/lang/workCenter/en.js index 83502bf6..d282af07 100644 --- a/src/common/lang/workCenter/en.js +++ b/src/common/lang/workCenter/en.js @@ -243,5 +243,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/workCenter/zh.js b/src/common/lang/workCenter/zh.js index a809cd5f..01c0b2f6 100644 --- a/src/common/lang/workCenter/zh.js +++ b/src/common/lang/workCenter/zh.js @@ -260,5 +260,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/views/workCenter/NewProcess.vue b/src/views/workCenter/NewProcess.vue index a8fe077a..7a5c465e 100644 --- a/src/views/workCenter/NewProcess.vue +++ b/src/views/workCenter/NewProcess.vue @@ -91,7 +91,7 @@ export default { }, { // 企标稽查流程 title: this.$t('workCenter.newProcess.processOfEnterpriseStandardAudit'), - path: '' + path: '/workCenter/EnterpriseStandardInspectionProcess' }, { // 稽查延期申请流程 title: this.$t('workCenter.newProcess.auditExtensionApplicationProcess'), diff --git a/src/views/workCenter/enterpriseStandardInspectionProcess/EnterpriseStandardInspectionProcess.vue b/src/views/workCenter/enterpriseStandardInspectionProcess/EnterpriseStandardInspectionProcess.vue new file mode 100644 index 00000000..44f4679d --- /dev/null +++ b/src/views/workCenter/enterpriseStandardInspectionProcess/EnterpriseStandardInspectionProcess.vue @@ -0,0 +1,241 @@ + + + + + diff --git a/src/views/workCenter/enterpriseStandardInspectionProcess/modules/InspectionProcessContent.vue b/src/views/workCenter/enterpriseStandardInspectionProcess/modules/InspectionProcessContent.vue new file mode 100644 index 00000000..efc33fd5 --- /dev/null +++ b/src/views/workCenter/enterpriseStandardInspectionProcess/modules/InspectionProcessContent.vue @@ -0,0 +1,154 @@ + + + + + diff --git a/src/views/workCenter/enterpriseStandardInspectionProcess/modules/InspectionProcessContentModal.vue b/src/views/workCenter/enterpriseStandardInspectionProcess/modules/InspectionProcessContentModal.vue new file mode 100644 index 00000000..e61b7d8b --- /dev/null +++ b/src/views/workCenter/enterpriseStandardInspectionProcess/modules/InspectionProcessContentModal.vue @@ -0,0 +1,213 @@ + + + + + diff --git a/src/views/workCenter/enterpriseStandardInspectionProcess/modules/InspectionProcessRectificationPlan.vue b/src/views/workCenter/enterpriseStandardInspectionProcess/modules/InspectionProcessRectificationPlan.vue new file mode 100644 index 00000000..f2f0fc8c --- /dev/null +++ b/src/views/workCenter/enterpriseStandardInspectionProcess/modules/InspectionProcessRectificationPlan.vue @@ -0,0 +1,180 @@ + + + + + diff --git a/src/views/workCenter/enterpriseStandardInspectionProcess/modules/InspectionProcessRectificationPlanModal.vue b/src/views/workCenter/enterpriseStandardInspectionProcess/modules/InspectionProcessRectificationPlanModal.vue new file mode 100644 index 00000000..f83ff5fa --- /dev/null +++ b/src/views/workCenter/enterpriseStandardInspectionProcess/modules/InspectionProcessRectificationPlanModal.vue @@ -0,0 +1,271 @@ + + + + + diff --git a/src/views/workCenter/enterpriseStandardInspectionProcess/modules/InspectionProcessReport.vue b/src/views/workCenter/enterpriseStandardInspectionProcess/modules/InspectionProcessReport.vue new file mode 100644 index 00000000..02fe1e99 --- /dev/null +++ b/src/views/workCenter/enterpriseStandardInspectionProcess/modules/InspectionProcessReport.vue @@ -0,0 +1,183 @@ + + + + + diff --git a/src/views/workCenter/enterpriseStandardInspectionProcess/modules/InspectionProcessReportModal.vue b/src/views/workCenter/enterpriseStandardInspectionProcess/modules/InspectionProcessReportModal.vue new file mode 100644 index 00000000..2977a447 --- /dev/null +++ b/src/views/workCenter/enterpriseStandardInspectionProcess/modules/InspectionProcessReportModal.vue @@ -0,0 +1,174 @@ + + + + + diff --git a/src/views/workCenter/enterpriseStandardInspectionProcess/modules/InspectionProcessTable.vue b/src/views/workCenter/enterpriseStandardInspectionProcess/modules/InspectionProcessTable.vue new file mode 100644 index 00000000..0c355f70 --- /dev/null +++ b/src/views/workCenter/enterpriseStandardInspectionProcess/modules/InspectionProcessTable.vue @@ -0,0 +1,305 @@ + + + + + diff --git a/src/views/workCenter/enterpriseStandardInspectionProcess/modules/InspectionProcessTableModal.vue b/src/views/workCenter/enterpriseStandardInspectionProcess/modules/InspectionProcessTableModal.vue new file mode 100644 index 00000000..34d849f2 --- /dev/null +++ b/src/views/workCenter/enterpriseStandardInspectionProcess/modules/InspectionProcessTableModal.vue @@ -0,0 +1,171 @@ + + + + +