hookehuyr

fix(plan): 移除提交成功后的重复 toast 提示

- 移除 PlanFormContainer 中的 "提交成功" toast
- 避免用户从结果页返回时看到重复提示
- 结果页已清晰显示成功/失败状态,无需额外 toast

影响文件:
- src/components/plan/PlanFormContainer.vue
- components.d.ts

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
......@@ -339,11 +339,8 @@ const submit = async () => {
if (isSuccess) {
Taro.hideLoading()
Taro.showToast({
title: '提交成功',
icon: 'success',
duration: 3000
})
// ✅ 移除 toast,因为结果页已经显示了成功/失败状态
// 避免用户从结果页返回时看到重复的 toast 提示
// 发送提交成功事件(携带 order_id)
emit('submit', {
......