fix: 修正Dialog Title 错误

This commit is contained in:
OrangeM21
2020-07-02 12:01:30 +08:00
parent ecaa4cfa70
commit 24a850c99f
2 changed files with 6 additions and 2 deletions

View File

@@ -40,7 +40,7 @@ export default {
formatter: DialogDetailFormatter,
showOverflowTooltip: true,
formatterArgs: {
getDialogTile: function({ col, row, cellValue }) { this.$t('assets.AssetDetail') }.bind(this),
getDialogTitle: function({ col, row, cellValue }) { this.$t('assets.AssetDetail') }.bind(this),
getDetailItems: function({ col, row, cellValue }) {
return [
{
@@ -62,6 +62,10 @@ export default {
{
key: this.$t('assets.Domain'),
value: row.domain
},
{
key: this.$t('assets.Comment'),
value: row.comment
}
]
}.bind(this)