Commit 21c9cba6 by 芋道源码 Committed by Gitee

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

Merge pull request !466 from OnPeaceOfMind/dev
parents 6f86ea96 6e7812a1
......@@ -246,7 +246,7 @@ const openAfterSaleDetail = (id: number) => {
/** 查看订单详情 */
const openOrderDetail = (id: number) => {
push({ name: 'TradeOrderDetail', params: { orderId: id } })
push({ name: 'TradeOrderDetail', params: { id } })
}
/** 商品图预览 */
......
......@@ -267,7 +267,7 @@ const getList = async () => {
/** 查看订单详情 */
const openDetail = (id: number) => {
push({ name: 'TradeOrderDetail', params: { orderId: id } })
push({ name: 'TradeOrderDetail', params: { id } })
}
/** 初始化 **/
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment