Fix:3992 【商城小程序】我的礼品卡—收礼方订单未显示订单状态
This commit is contained in:
@@ -532,7 +532,7 @@ export default {
|
||||
...mapGetters(["userInfo"])
|
||||
},
|
||||
onLoad(opts) {
|
||||
this.isGift = !!opts.isGift
|
||||
this.isGift = Number(opts.isGift || 0) === 1
|
||||
},
|
||||
onShow() {
|
||||
const chooseAddress = uni.getStorageSync('chooseAddress') || {}
|
||||
|
||||
@@ -410,7 +410,7 @@ export default {
|
||||
path: '/pages/order/OrderDetails/index',
|
||||
query: {
|
||||
id: item.orderId,
|
||||
isGift: 1
|
||||
isGift: this.cateIndex === 0 ? 1 : 0
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user