forked from github/dataease
Merge pull request #2998 from dataease/pr@dev@fix_view-details
fix(仪表板): 修复查看视图明细出现object情况
This commit is contained in:
commit
6aa8080132
@ -200,6 +200,13 @@ export default {
|
|||||||
datas = []
|
datas = []
|
||||||
this.resetPage()
|
this.resetPage()
|
||||||
}
|
}
|
||||||
|
datas.forEach(item =>{
|
||||||
|
Object.keys(item).forEach(key=> {
|
||||||
|
if(typeof item[key] === 'object'){
|
||||||
|
item[key] = ""
|
||||||
|
}
|
||||||
|
})
|
||||||
|
})
|
||||||
this.$refs.plxTable.reloadData(datas)
|
this.$refs.plxTable.reloadData(datas)
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
this.initStyle()
|
this.initStyle()
|
||||||
|
Loading…
Reference in New Issue
Block a user