fix: 修改asset 自定义label 作为表头时 有时会换行的问题
This commit is contained in:
@@ -93,6 +93,18 @@ export default {
|
||||
},
|
||||
// 点击第二个cancel
|
||||
save () {
|
||||
if (this.tableId == 'assetTable') {
|
||||
let customAssetLabel = false
|
||||
this.custom.forEach(item => {
|
||||
if (customAssetLabel) {
|
||||
item.minWidth = item.label.length * 16 + 20
|
||||
return
|
||||
}
|
||||
if (item.label === 'Label' && item.type == 'title') {
|
||||
customAssetLabel = true
|
||||
}
|
||||
})
|
||||
}
|
||||
this.$emit('update', this.custom)
|
||||
localStorage.setItem(
|
||||
'nz-tableTitle-' + localStorage.getItem('nz-username') + '-' + this.tableId,
|
||||
|
||||
Reference in New Issue
Block a user