Fix:收礼列表不跳转详情

This commit is contained in:
linxi
2025-06-30 15:40:24 +08:00
parent 19d247c41c
commit a7c320d406
2 changed files with 11 additions and 4 deletions
+5 -2
View File
@@ -403,11 +403,14 @@ export default {
this.$refs.giftTips.showTips = true
},
giftItemClickHanlde(item) {
if (this.cateIndex === 0) return
console.log(item);
// if (this.cateIndex === 0) return
this.$yrouter.push({
path: '/pages/order/OrderDetails/index',
query: {
id: item.orderId
id: item.orderId,
isGift: 1
}
})
}