fix: 修正提交退货申请后的跳转路径
将成功提交退货申请后的跳转路径从'/order/' + orderId.value改为'/order-list',以统一跳转逻辑
This commit is contained in:
parent
3608a12291
commit
186d7074d6
|
|
@ -134,7 +134,7 @@ const handleSubmit = async () => {
|
||||||
message: `退货申请已提交,等待管理员审核`
|
message: `退货申请已提交,等待管理员审核`
|
||||||
})
|
})
|
||||||
} catch (error) { }
|
} catch (error) { }
|
||||||
router.push('/order/' + orderId.value)
|
router.push('/order-list')
|
||||||
}
|
}
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error('提交失败:', error)
|
console.error('提交失败:', error)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue