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