是否回复

This commit is contained in:
Teo
2025-09-14 11:12:12 +08:00
parent 0c27426d80
commit 9e8202b274
15 changed files with 1394 additions and 41 deletions

View File

@ -163,9 +163,6 @@ const handleTabChange = (tab) => {
getVersionNums(false);
}
};
onMounted(async () => {
await getVersionNums();
});
// 获取版本号
async function getVersionNums(isSheet = true) {
@ -378,6 +375,20 @@ const downloadTemplate = (type) => {
alert('下载失败,请重试');
}
};
onMounted(async () => {
await getVersionNums();
});
//监听项目id刷新数据
const listeningProject = watch(
() => currentProject.value?.id,
(nid, oid) => {
getVersionNums();
}
);
onUnmounted(() => {
listeningProject();
});
</script>
<style>
.billof-quantities {