From 7b365267cf7118f45bdd96ef49995ac51e16b8f2 Mon Sep 17 00:00:00 2001
From: qq787203167 <787203167@qq.com>
Date: Fri, 6 May 2022 17:44:33 +0800
Subject: [PATCH] =?UTF-8?q?=E5=B8=83=E5=B1=80=E7=AC=A6=E5=90=88=E6=80=A7?=
=?UTF-8?q?=E6=B5=81=E7=A8=8B?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
jero-web/src/common/lang/en-us.js | 15 +
jero-web/src/common/lang/zh-cn.js | 15 +
jero-web/src/components/layouts/TabLayout.vue | 1 +
jero-web/src/config/router.config.js | 5 +
.../components/engineeringConfirmation.vue | 504 ++++++++++++++++++
.../components/examineInformation.vue | 7 +
.../components/headerProcess.vue | 11 +-
.../components/projectInformation.vue | 22 +-
.../reviewedByThePersonInCharge.vue | 166 ++++++
.../components/standardContent.vue | 29 +-
.../processForm/taskListProcess/index.vue | 218 ++++++++
11 files changed, 988 insertions(+), 5 deletions(-)
create mode 100644 jero-web/src/views/processCenter/components/engineeringConfirmation.vue
create mode 100644 jero-web/src/views/processCenter/components/reviewedByThePersonInCharge.vue
create mode 100644 jero-web/src/views/processCenter/processForm/taskListProcess/index.vue
diff --git a/jero-web/src/common/lang/en-us.js b/jero-web/src/common/lang/en-us.js
index 513053f61..608f7d1e4 100644
--- a/jero-web/src/common/lang/en-us.js
+++ b/jero-web/src/common/lang/en-us.js
@@ -756,4 +756,19 @@ module.exports = {
VirtualList:'VirtualList',
importTemplate:'import template',
verificationConfirmationDeadline:'Verification compliance confirmation deadline',
+ technicalEvaluationResults:'technical evaluation results',
+ engineeringConfirmation:'engineeringConfirmation',
+ feedbackFromTheEngineer:'Feedback from the Engineer',
+ completedBy:'Completed by',
+ completedTime:'Completed time',
+ replyFromProjectContactPerson:'Reply from project contact person',
+ answer:'answer',
+ distributionEngineer:'Distribution Engineer',
+ reminderHandling:'Reminder handling',
+ addFeedback:'Add feedback',
+ engineer:'engineer',
+ engineeringConfirmationDetails:'Engineering confirmation details',
+ reminder:'reminder',
+ adopt:'adopt',
+ reviewedByThePersonInCharge:'Reviewed by the person in charge',
}
\ No newline at end of file
diff --git a/jero-web/src/common/lang/zh-cn.js b/jero-web/src/common/lang/zh-cn.js
index 2e078e997..dca0943de 100644
--- a/jero-web/src/common/lang/zh-cn.js
+++ b/jero-web/src/common/lang/zh-cn.js
@@ -761,4 +761,19 @@ module.exports = {
standardInformation:'标准信息',
importTemplate:'导入模板',
verificationConfirmationDeadline:'验证符合性确认截止时间',
+ technicalEvaluationResults:'技术评估结果',
+ engineeringConfirmation:'工程确认',
+ feedbackFromTheEngineer:'工程师反馈意见',
+ completedBy:'填写人',
+ completedTime:'填写时间',
+ replyFromProjectContactPerson:'工程接口人回复',
+ answer:'回复',
+ distributionEngineer:'分发工程师',
+ reminderHandling:'提醒办理',
+ addFeedback:'添加反馈',
+ engineer:'工程师',
+ engineeringConfirmationDetails:'工程确认详情',
+ reminder:'提醒',
+ adopt:'通过',
+ reviewedByThePersonInCharge:'负责人审核',
}
\ No newline at end of file
diff --git a/jero-web/src/components/layouts/TabLayout.vue b/jero-web/src/components/layouts/TabLayout.vue
index 8dc37c162..6e2f408d4 100644
--- a/jero-web/src/components/layouts/TabLayout.vue
+++ b/jero-web/src/components/layouts/TabLayout.vue
@@ -90,6 +90,7 @@
this.$route.path == '/system/MessageDetails' ||
this.$route.path == '/ProcessMapping' ||
this.$route.path == '/virtualListDetails' ||
+ this.$route.path == '/taskListProcess' ||
this.$route.path == '/ProjectDetails' ||
this.$route.path == '/handshakeProcess' ||
this.$route.path == '/historicalVersion' ||
diff --git a/jero-web/src/config/router.config.js b/jero-web/src/config/router.config.js
index b63bf562a..bbe87b83f 100644
--- a/jero-web/src/config/router.config.js
+++ b/jero-web/src/config/router.config.js
@@ -337,6 +337,11 @@ export const constantRouterMap = [
name: 'ProjectDetails',
component: () => import(/* webpackChunkName: "user" */ '@/views/projectManagement/ProjectDetails/index')
},
+ {
+ path: '/taskListProcess',
+ name: 'taskListProcess',
+ component: () => import(/* webpackChunkName: "user" */ '@/views/processCenter/processForm/taskListProcess/index')
+ },
{
path: '/handshakeProcess',
name: 'handshakeProcess',
diff --git a/jero-web/src/views/processCenter/components/engineeringConfirmation.vue b/jero-web/src/views/processCenter/components/engineeringConfirmation.vue
new file mode 100644
index 000000000..924bdf4cf
--- /dev/null
+++ b/jero-web/src/views/processCenter/components/engineeringConfirmation.vue
@@ -0,0 +1,504 @@
+
+