NEZ-1378 fix: Module内容过长时鼠标悬浮提示,补充国际化

This commit is contained in:
@changcode
2021-12-02 16:42:37 +08:00
committed by chenjinsong
parent e55dbb116d
commit c1d94feea1
4 changed files with 33 additions and 20 deletions

View File

@@ -605,9 +605,10 @@ export default {
return row.name.substring(0, 12) + '...'
}
return row.name
}
},
key: 'name'
},
{ title: this.$t('config.model.titleType'), data: 'type' },
{ title: this.$t('config.model.titleType'), data: 'type', key: 'type' },
{
title: this.$t('overall.remark'),
data: function (row) {
@@ -615,7 +616,8 @@ export default {
return row.remark.substring(0, 12) + '...'
}
return row.remark
}
},
key: 'remark'
}
],
showAllBasicOption: false,