forked from github/dataease
fix(视图): 修复表格联动可能出现目标视图没有数据问题
This commit is contained in:
parent
e09b420fe2
commit
279736ccf4
@ -247,7 +247,9 @@ export default {
|
|||||||
}
|
}
|
||||||
const dimensionList = []
|
const dimensionList = []
|
||||||
for (const key in rowData) {
|
for (const key in rowData) {
|
||||||
dimensionList.push({ id: nameIdMap[key], value: rowData[key] })
|
if(meta.fieldValue === rowData[key]){
|
||||||
|
dimensionList.push({ id: nameIdMap[key], value: rowData[key] })
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
this.pointParam = {
|
this.pointParam = {
|
||||||
|
Loading…
Reference in New Issue
Block a user