[update]
This commit is contained in:
@@ -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'
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user