Merge remote-tracking branch 'origin/master'

This commit is contained in:
liyawei
2022-06-10 18:20:37 +08:00
13 changed files with 44 additions and 7 deletions
+1
View File
@@ -930,4 +930,5 @@ module.exports = {
pleaseWaitWhileRunning: 'Please wait while running',
roleSwitching: 'Role switching',
setCreator:'Set Creator',
documentLibraryDetails:'Document library details',
}
+1
View File
@@ -935,4 +935,5 @@ module.exports = {
pleaseWaitWhileRunning: '运行中请稍等',
roleSwitching:'角色切换',
setCreator:'设置创建人',
documentLibraryDetails:'文档库详情',
}
@@ -345,6 +345,7 @@
created() {
let _this = this
this.loading = true
document.title = this.$t('documentLibraryDetails')
this.getTitle(function() {
_this.getInfoById()
})
@@ -10,7 +10,8 @@
</span>
</div>
<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')">
<a-icon type="reload"/>
{{$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
@@ -122,10 +122,6 @@ export default {
this.visible = true
this.title = '新增'
this.formInline = {}
this.formInline.state = '1'
// this.$nextTick(() => {
// this.$refs['ruleForm'].resetFields();
// })
},
editModel(value) {
this.visible = true
@@ -59,6 +59,9 @@
<span slot="projectName" slot-scope="text,record">
<a @click="entryNameClick(record)">{{text}}</a>
</span>
<span slot="titleName" slot-scope="text,record" :title="text">
{{ text && text.length > 100 ? text.slice(0, 99) + '...' : text }}
</span>
<span slot="operation" slot-scope="text,record">
<a class="text-operation" v-has="'params:template:edit'" @click="edit(record)">{{$t('edit')}}</a>
<a class="text-operation" v-has="'params:template:delete'" @click="deleteLib(record)">{{$t('deleteLib')}}</a>
@@ -160,7 +163,8 @@ export default {
{
title: this.$t('contentDescription'),
align: 'center',
dataIndex: 'description'
dataIndex: 'description',
scopedSlots: { customRender: 'titleName' }
},
{
title: this.$t('createTime'),
@@ -117,6 +117,9 @@
textLoading: this.$t('dataLoading')
}
},
created() {
document.title = this.$t('regulatoryCertificationTaskConfirmation')
},
mounted() {
let _this = this
this.isDisplay = false
@@ -33,6 +33,9 @@
processStep: null
}
},
created() {
document.title = this.$t('circulationHistory')
},
mounted() {
this.processNum()
},
@@ -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) {
@@ -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')
@@ -104,6 +104,9 @@
areaOfResponsibility: {}
}
},
created() {
document.title = this.$t('projectDetails') + '-' + this.$route.query.projectName
},
mounted() {
this.textColor(0)
this.getTaskId()
@@ -60,6 +60,9 @@
getTime: []
}
},
created() {
document.title = this.$t('regulatoryCertificationTaskPlan')
},
mounted() {
this.getTimeline()
},
@@ -128,6 +128,9 @@
]
}
},
created() {
document.title = this.$t('projectStatusAndProgress')
},
mounted() {
this.getList()
},