页签标题个性化修改
This commit is contained in:
@@ -930,4 +930,5 @@ module.exports = {
|
|||||||
pleaseWaitWhileRunning: 'Please wait while running',
|
pleaseWaitWhileRunning: 'Please wait while running',
|
||||||
roleSwitching: 'Role switching',
|
roleSwitching: 'Role switching',
|
||||||
setCreator:'Set Creator',
|
setCreator:'Set Creator',
|
||||||
|
documentLibraryDetails:'Document library details',
|
||||||
}
|
}
|
||||||
@@ -935,4 +935,5 @@ module.exports = {
|
|||||||
pleaseWaitWhileRunning: '运行中请稍等',
|
pleaseWaitWhileRunning: '运行中请稍等',
|
||||||
roleSwitching:'角色切换',
|
roleSwitching:'角色切换',
|
||||||
setCreator:'设置创建人',
|
setCreator:'设置创建人',
|
||||||
|
documentLibraryDetails:'文档库详情',
|
||||||
}
|
}
|
||||||
@@ -345,6 +345,7 @@
|
|||||||
created() {
|
created() {
|
||||||
let _this = this
|
let _this = this
|
||||||
this.loading = true
|
this.loading = true
|
||||||
|
document.title = this.$t('documentLibraryDetails')
|
||||||
this.getTitle(function() {
|
this.getTitle(function() {
|
||||||
_this.getInfoById()
|
_this.getInfoById()
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -10,7 +10,8 @@
|
|||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="Virtual-detail-right">
|
<div class="Virtual-detail-right">
|
||||||
<div @click="UpdateLogClick" v-has="'dummyLog:page'" class="operator-text-text" style="margin-right: 37px;cursor: pointer"
|
<div @click="UpdateLogClick" v-has="'dummyLog:page'" class="operator-text-text"
|
||||||
|
style="margin-right: 37px;cursor: pointer"
|
||||||
:title="$t('UpdateLog')">
|
:title="$t('UpdateLog')">
|
||||||
<a-icon type="reload"/>
|
<a-icon type="reload"/>
|
||||||
{{$t('UpdateLog')}}
|
{{$t('UpdateLog')}}
|
||||||
@@ -584,7 +585,13 @@
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
created() {
|
||||||
|
if (this.$route.query.title == '虚拟清单详情') {
|
||||||
|
document.title = this.$t('virtualListDetails')
|
||||||
|
} else {
|
||||||
|
document.title = this.$t('maintainVirtualList')
|
||||||
|
}
|
||||||
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.title = this.$route.query.title
|
this.title = this.$route.query.title
|
||||||
this.isTrue = this.$route.query.title == '虚拟清单详情' ? false : true
|
this.isTrue = this.$route.query.title == '虚拟清单详情' ? false : true
|
||||||
|
|||||||
@@ -117,6 +117,9 @@
|
|||||||
textLoading: this.$t('dataLoading')
|
textLoading: this.$t('dataLoading')
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
created() {
|
||||||
|
document.title = this.$t('regulatoryCertificationTaskConfirmation')
|
||||||
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
let _this = this
|
let _this = this
|
||||||
this.isDisplay = false
|
this.isDisplay = false
|
||||||
|
|||||||
@@ -33,6 +33,9 @@
|
|||||||
processStep: null
|
processStep: null
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
created() {
|
||||||
|
document.title = this.$t('circulationHistory')
|
||||||
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.processNum()
|
this.processNum()
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -189,6 +189,15 @@
|
|||||||
return false
|
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() {
|
mounted() {
|
||||||
let _this = this
|
let _this = this
|
||||||
if (this.$route.query.flowType == 2) {
|
if (this.$route.query.flowType == 2) {
|
||||||
|
|||||||
@@ -113,6 +113,9 @@
|
|||||||
// 清单信息
|
// 清单信息
|
||||||
this.paramsManifest = JSON.parse(localStorage.getItem('paramsManifest'))
|
this.paramsManifest = JSON.parse(localStorage.getItem('paramsManifest'))
|
||||||
},
|
},
|
||||||
|
created() {
|
||||||
|
document.title = this.$t('projectDetails') + '-' + this.$route.query.projectName
|
||||||
|
},
|
||||||
methods: {
|
methods: {
|
||||||
textColor() {
|
textColor() {
|
||||||
let textColor = document.getElementsByClassName('Virtual-detail-left-text-color')
|
let textColor = document.getElementsByClassName('Virtual-detail-left-text-color')
|
||||||
|
|||||||
@@ -104,6 +104,9 @@
|
|||||||
areaOfResponsibility: {}
|
areaOfResponsibility: {}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
created() {
|
||||||
|
document.title = this.$t('projectDetails') + '-' + this.$route.query.projectName
|
||||||
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.textColor(0)
|
this.textColor(0)
|
||||||
this.getTaskId()
|
this.getTaskId()
|
||||||
|
|||||||
@@ -60,6 +60,9 @@
|
|||||||
getTime: []
|
getTime: []
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
created() {
|
||||||
|
document.title = this.$t('regulatoryCertificationTaskPlan')
|
||||||
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.getTimeline()
|
this.getTimeline()
|
||||||
},
|
},
|
||||||
|
|||||||
+3
@@ -128,6 +128,9 @@
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
created() {
|
||||||
|
document.title = this.$t('projectStatusAndProgress')
|
||||||
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.getList()
|
this.getList()
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user