fix: refs #7909 add originFk #691

Merged
jorgep merged 4 commits from 7909-hotfix-rollbackScroll into master 2024-09-09 11:44:41 +00:00
1 changed files with 1 additions and 1 deletions

View File

@ -67,6 +67,7 @@ const filter = {
}, },
}, },
], ],
where: { and: [{ originFk: route.params.id }] },
}; };
const paginate = ref(); const paginate = ref();
@ -237,7 +238,6 @@ async function openPointRecord(id, modelLog) {
pointRecord.value = parseProps(propNames, locale, data); pointRecord.value = parseProps(propNames, locale, data);
} }
async function setLogTree(data) { async function setLogTree(data) {
filter.where = { and: [{ originFk: route.params.id }] };
logTree.value = getLogTree(data); logTree.value = getLogTree(data);
} }