feat:更新tabbar显示

This commit is contained in:
2025-10-30 16:50:13 +08:00
parent cc33d3028b
commit 9e0b8ead79
18 changed files with 61 additions and 337 deletions

View File

@@ -177,6 +177,7 @@ const confirmClick = () => {
if (validatePlan()) {
await planStore.handlePlanApi(planStore.currentPlan)
history.back()
appStore.isShowMobileBack = false
}
})
}
@@ -186,11 +187,13 @@ const deleteClick = () => {
planStore.planApiType = 'DELETE'
await planStore.handlePlanApi(planStore.currentPlan)
history.back()
appStore.isShowMobileBack = false
})
}
const cancelClick = () => {
history.back()
appStore.isShowMobileBack = false
}
</script>