成本清算

This commit is contained in:
2025-08-21 00:20:48 +08:00
parent 0098a9829d
commit 4e18057981
4 changed files with 39 additions and 52 deletions

View File

@ -327,7 +327,17 @@ const handleExport = () => {
`listOfWinningBids_${new Date().getTime()}.xlsx`
);
};
//监听项目id刷新数据
const listeningProject = watch(
() => currentProject.value?.id,
(nid, oid) => {
getList();
}
);
onUnmounted(() => {
listeningProject();
});
onMounted(() => {
getList();
});