fix: entity setting列表表格空数据显示'-'

This commit is contained in:
刘洪洪
2024-11-21 10:44:53 +08:00
parent 087d2c26fb
commit 872182dd06

View File

@@ -130,7 +130,9 @@ export default {
str += item.type + ','
}
})
str = str.slice(0, -1)
str = str.slice(0, -1) || '-'
} else {
str = '-'
}
return str
},