From 9f0a808481d5326e6be3726123b2053450189b77 Mon Sep 17 00:00:00 2001 From: qq787203167 <787203167@qq.com> Date: Thu, 14 Jul 2022 16:34:59 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AF=B9=E6=8E=A5=E6=B3=95=E8=A7=84=E6=8A=80?= =?UTF-8?q?=E6=9C=AF=E8=AF=84=E4=BC=B0\=E5=B8=83=E5=B1=80=E6=96=87?= =?UTF-8?q?=E6=A1=A3=E5=AF=B9=E6=AF=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- jero-web/src/common/lang/en-us.js | 4 + jero-web/src/common/lang/zh-cn.js | 4 + .../components/initiatingProcess.vue | 2 + .../documentComparison/index.vue | 340 ++++++++++++++++++ 4 files changed, 350 insertions(+) create mode 100644 jero-web/src/views/documentTools/documentComparison/index.vue diff --git a/jero-web/src/common/lang/en-us.js b/jero-web/src/common/lang/en-us.js index 05b8babf8..d8636703c 100644 --- a/jero-web/src/common/lang/en-us.js +++ b/jero-web/src/common/lang/en-us.js @@ -1138,4 +1138,8 @@ module.exports = { processName:'Process Name', feedbackResults:'Feedback results', theDoesNotSupportPreview:'The current file format does not support Preview', + releaseSituation:'Release situation', + comparisonResults:'Comparison results', + Published:'Published', + initiateComparison:'Initiate comparison', } \ 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 c2d881205..15bbd4c33 100644 --- a/jero-web/src/common/lang/zh-cn.js +++ b/jero-web/src/common/lang/zh-cn.js @@ -1142,4 +1142,8 @@ module.exports = { processName:'流程名称', feedbackResults:'反馈结果', theDoesNotSupportPreview:'当前文件格式不支持预览', + releaseSituation:'发布情况', + comparisonResults:'对比结果', + Published:'已发布', + initiateComparison:'发起对比', } \ No newline at end of file diff --git a/jero-web/src/views/businessSupport/technologyAssessment/components/initiatingProcess.vue b/jero-web/src/views/businessSupport/technologyAssessment/components/initiatingProcess.vue index 662cbdcf2..e5d051ce9 100644 --- a/jero-web/src/views/businessSupport/technologyAssessment/components/initiatingProcess.vue +++ b/jero-web/src/views/businessSupport/technologyAssessment/components/initiatingProcess.vue @@ -474,12 +474,14 @@ query = { type: 6, ...value, + firstInitiation:"1", msg: JSON.stringify({ itemList: dataList }).replace(/\"/g, '\'') } } else { query = { type: 6, ...value, + firstInitiation:"1", msg: JSON.stringify({ evaluators: value.evaluators }).replace(/\"/g, '\'') } } diff --git a/jero-web/src/views/documentTools/documentComparison/index.vue b/jero-web/src/views/documentTools/documentComparison/index.vue new file mode 100644 index 000000000..034141af2 --- /dev/null +++ b/jero-web/src/views/documentTools/documentComparison/index.vue @@ -0,0 +1,340 @@ + + + + + + + + + {{$t('standard')}} + + + + + + + + {{$t('title')}} + + + + + + + + {{$t('releaseSituation')}} + + + + + {{ item.name }} + + + + + + + + {{$t('query')}} + {{$t('reset')}} + + + + + + + + + {{$t('initiateComparison')}} + + + + + + + {{$t('comparisonResults')}} + + {{!record.readFlag || record.readFlag == 0 ? $t('subscribe') :$t('CancelSubscribe')}} + + {{$t('edit')}} + {{$t('delete')}} + + + + + + + + + + + \ No newline at end of file