fix: 🐞 修复会员和售后退款中订和单明细查询传递参数错误

Signed-off-by: OnPeaceOfMind <onpeaceofmind@qq.com>
pull/466/head
OnPeaceOfMind 2024-06-26 11:44:07 +00:00 committed by Gitee
parent 36dc3c0b5c
commit 6e7812a11b
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
2 changed files with 2 additions and 2 deletions

View File

@ -246,7 +246,7 @@ const openAfterSaleDetail = (id: number) => {
/** 查看订单详情 */
const openOrderDetail = (id: number) => {
push({ name: 'TradeOrderDetail', params: { orderId: id } })
push({ name: 'TradeOrderDetail', params: { id } })
}
/** 商品图预览 */

View File

@ -267,7 +267,7 @@ const getList = async () => {
/** 查看订单详情 */
const openDetail = (id: number) => {
push({ name: 'TradeOrderDetail', params: { orderId: id } })
push({ name: 'TradeOrderDetail', params: { id } })
}
/** 初始化 **/