fix(仪表板): 修复查看视图明细出现object情况

This commit is contained in:
wangjiahao 2022-08-30 18:38:04 +08:00
parent 1ad916a879
commit c3f94d86f4

View File

@ -200,6 +200,13 @@ export default {
datas = []
this.resetPage()
}
datas.forEach(item =>{
Object.keys(item).forEach(key=> {
if(typeof item[key] === 'object'){
item[key] = ""
}
})
})
this.$refs.plxTable.reloadData(datas)
this.$nextTick(() => {
this.initStyle()