fix: asset Label国际化调整,MIB 下拉框样式调整

This commit is contained in:
@changcode
2022-03-23 14:15:57 +08:00
parent 7069137a0c
commit 8c26da6426
2 changed files with 2 additions and 2 deletions

View File

@@ -623,7 +623,7 @@ export default {
const newLabel = showData.filter(item => { return !oldLabelTitle.find(t => { return item.label === t.label }) })
const keepLabel = oldLabelTitle.filter(item => showData.find(t => item.label === t.label))
let result = originalTitle.concat([{ label: 'Label', show: false, NotSet: true, type: 'title', prop: 'table-label' }])
let result = originalTitle.concat([{ label: this.$t('overall.labels'), show: false, NotSet: true, type: 'title', prop: 'table-label' }])
result = result.concat(keepLabel).concat(newLabel)
this.tools.customTableTitle = JSON.parse(JSON.stringify(result))