diff --git a/jero-web/src/common/lang/en-us.js b/jero-web/src/common/lang/en-us.js index 787b81caf..aacb86740 100644 --- a/jero-web/src/common/lang/en-us.js +++ b/jero-web/src/common/lang/en-us.js @@ -930,4 +930,5 @@ module.exports = { pleaseWaitWhileRunning: 'Please wait while running', roleSwitching: 'Role switching', setCreator:'Set Creator', + documentLibraryDetails:'Document library details', } \ 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 e70dc3c9e..114ede240 100644 --- a/jero-web/src/common/lang/zh-cn.js +++ b/jero-web/src/common/lang/zh-cn.js @@ -935,4 +935,5 @@ module.exports = { pleaseWaitWhileRunning: '运行中请稍等', roleSwitching:'角色切换', setCreator:'设置创建人', + documentLibraryDetails:'文档库详情', } \ No newline at end of file diff --git a/jero-web/src/views/documentManage/library/docDetail/index.vue b/jero-web/src/views/documentManage/library/docDetail/index.vue index 3b51a8b60..55882e70a 100644 --- a/jero-web/src/views/documentManage/library/docDetail/index.vue +++ b/jero-web/src/views/documentManage/library/docDetail/index.vue @@ -345,6 +345,7 @@ created() { let _this = this this.loading = true + document.title = this.$t('documentLibraryDetails') this.getTitle(function() { _this.getInfoById() }) diff --git a/jero-web/src/views/documentTools/virtualList/components/virtualListDetails.vue b/jero-web/src/views/documentTools/virtualList/components/virtualListDetails.vue index 3fa069bd2..464eca645 100644 --- a/jero-web/src/views/documentTools/virtualList/components/virtualListDetails.vue +++ b/jero-web/src/views/documentTools/virtualList/components/virtualListDetails.vue @@ -10,7 +10,8 @@
-
{{$t('UpdateLog')}} @@ -584,7 +585,13 @@ ] } }, - + created() { + if (this.$route.query.title == '虚拟清单详情') { + document.title = this.$t('virtualListDetails') + } else { + document.title = this.$t('maintainVirtualList') + } + }, mounted() { this.title = this.$route.query.title this.isTrue = this.$route.query.title == '虚拟清单详情' ? false : true diff --git a/jero-web/src/views/processCenter/processForm/handshakeProcess/index.vue b/jero-web/src/views/processCenter/processForm/handshakeProcess/index.vue index 57464c805..35702349f 100644 --- a/jero-web/src/views/processCenter/processForm/handshakeProcess/index.vue +++ b/jero-web/src/views/processCenter/processForm/handshakeProcess/index.vue @@ -117,6 +117,9 @@ textLoading: this.$t('dataLoading') } }, + created() { + document.title = this.$t('regulatoryCertificationTaskConfirmation') + }, mounted() { let _this = this this.isDisplay = false diff --git a/jero-web/src/views/processCenter/processForm/processDetails/index.vue b/jero-web/src/views/processCenter/processForm/processDetails/index.vue index 4b560c394..6c0c3a150 100644 --- a/jero-web/src/views/processCenter/processForm/processDetails/index.vue +++ b/jero-web/src/views/processCenter/processForm/processDetails/index.vue @@ -33,6 +33,9 @@ processStep: null } }, + created() { + document.title = this.$t('circulationHistory') + }, mounted() { this.processNum() }, diff --git a/jero-web/src/views/processCenter/processForm/taskListProcess/index.vue b/jero-web/src/views/processCenter/processForm/taskListProcess/index.vue index d40e10e9f..426453fad 100644 --- a/jero-web/src/views/processCenter/processForm/taskListProcess/index.vue +++ b/jero-web/src/views/processCenter/processForm/taskListProcess/index.vue @@ -189,6 +189,15 @@ return false } }, + created() { + if (this.$route.query.flowType == 2) { + document.title = this.$t('confirmationOfDesignConformity') + } else if (this.$route.query.flowType == 3) { + document.title = this.$t('PrehomoConfirmation') + } else if (this.$route.query.flowType == 4) { + document.title = this.$t('verificationAndConformityconfirmation') + } + }, mounted() { let _this = this if (this.$route.query.flowType == 2) { diff --git a/jero-web/src/views/projectManagement/ParameterItemCollection/ProjectDetails/index.vue b/jero-web/src/views/projectManagement/ParameterItemCollection/ProjectDetails/index.vue index 78c731198..8ada0ce43 100644 --- a/jero-web/src/views/projectManagement/ParameterItemCollection/ProjectDetails/index.vue +++ b/jero-web/src/views/projectManagement/ParameterItemCollection/ProjectDetails/index.vue @@ -113,6 +113,9 @@ // 清单信息 this.paramsManifest = JSON.parse(localStorage.getItem('paramsManifest')) }, + created() { + document.title = this.$t('projectDetails') + '-' + this.$route.query.projectName + }, methods: { textColor() { let textColor = document.getElementsByClassName('Virtual-detail-left-text-color') diff --git a/jero-web/src/views/projectManagement/ProjectDetails/index.vue b/jero-web/src/views/projectManagement/ProjectDetails/index.vue index 5cab8e6ee..474413541 100644 --- a/jero-web/src/views/projectManagement/ProjectDetails/index.vue +++ b/jero-web/src/views/projectManagement/ProjectDetails/index.vue @@ -104,6 +104,9 @@ areaOfResponsibility: {} } }, + created() { + document.title = this.$t('projectDetails') + '-' + this.$route.query.projectName + }, mounted() { this.textColor(0) this.getTaskId() diff --git a/jero-web/src/views/projectManagement/projectStatusBoard/components/TaskPlanList.vue b/jero-web/src/views/projectManagement/projectStatusBoard/components/TaskPlanList.vue index 3503f05f6..e4315a5d1 100644 --- a/jero-web/src/views/projectManagement/projectStatusBoard/components/TaskPlanList.vue +++ b/jero-web/src/views/projectManagement/projectStatusBoard/components/TaskPlanList.vue @@ -60,6 +60,9 @@ getTime: [] } }, + created() { + document.title = this.$t('regulatoryCertificationTaskPlan') + }, mounted() { this.getTimeline() }, diff --git a/jero-web/src/views/projectManagement/projectStatusBoard/components/projectStatusAndProgress.vue b/jero-web/src/views/projectManagement/projectStatusBoard/components/projectStatusAndProgress.vue index b0777fd28..6cad073c7 100644 --- a/jero-web/src/views/projectManagement/projectStatusBoard/components/projectStatusAndProgress.vue +++ b/jero-web/src/views/projectManagement/projectStatusBoard/components/projectStatusAndProgress.vue @@ -128,6 +128,9 @@ ] } }, + created() { + document.title = this.$t('projectStatusAndProgress') + }, mounted() { this.getList() },