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

Merge pull request !466 from OnPeaceOfMind/dev
pull/464/MERGE
芋道源码 2024-07-07 03:31:33 +00:00 committed by Gitee
commit 21c9cba67b
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 } })
}
/** 初始化 **/