This commit is contained in:
zhaomeijing
2022-06-27 15:50:23 +08:00
parent d29b90f118
commit 782d2f1217
2 changed files with 5 additions and 2 deletions
@@ -477,9 +477,9 @@ export default {
// }
},
mounted() {
document.title = this.$t('Templatenamelist')
this.GetgetLoginUserType()
this.paramsManifest = JSON.parse(localStorage.getItem('paramsManifest'))
document.title = `${this.paramsManifest.title}-`+this.$t('ParameteItemCollectionList')
},
methods:{
handleCancelRoleSwitching() {
@@ -53,7 +53,9 @@
:rowSelection='{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}'
@change='handleTableChange'>
<span slot="paramsManifestClick" slot-scope="text,record">
<a @click="paramsManifestClick(record)">{{text}}</a>
<a @click="paramsManifestClick(record)">
{{ text && text.length > 50 ? text.slice(0, 49) + '...' : text }}
</a>
</span>
<span slot="operation" slot-scope="text,record">
<a class="text-operation" @click="configure(record)">{{$t('configure')}}</a>
@@ -152,6 +154,7 @@
{
title: this.$t('createTime'),
align: 'center',
width: 160,
dataIndex: 'createTime'
},
{