This commit is contained in:
BianLzhaoMin 2026-02-02 13:04:55 +08:00
parent 6c13392998
commit 69f7d15ee9
1 changed files with 13 additions and 3 deletions

View File

@ -1120,9 +1120,19 @@ const getDetail = async () => {
}
}
onMounted(() => {
getDetail()
})
watch(
() => route.query.monthlyPlanId,
(newId) => {
if (newId) {
getDetail()
}
},
{ immediate: true },
)
// onMounted(() => {
// getDetail()
// })
</script>
<style scoped lang="scss">