fix: 🐛 修复在ios中使用手势回退会导致在我的订单页面回退按钮丢失bug
parent
fc8123c194
commit
a6883fe607
|
@ -421,7 +421,7 @@ export default {
|
||||||
item.route == "pages/tabbar/cart/cartList" ||
|
item.route == "pages/tabbar/cart/cartList" ||
|
||||||
item.route.indexOf("pages/product/goods") != -1
|
item.route.indexOf("pages/product/goods") != -1
|
||||||
) {
|
) {
|
||||||
uni.redirectTo({
|
uni.navigateTo({
|
||||||
url: item.route,
|
url: item.route,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -604,7 +604,7 @@ export default {
|
||||||
});
|
});
|
||||||
// 如果当前价格为0跳转到订单列表
|
// 如果当前价格为0跳转到订单列表
|
||||||
if (this.orderMessage.priceDetailDTO.billPrice == 0) {
|
if (this.orderMessage.priceDetailDTO.billPrice == 0) {
|
||||||
uni.redirectTo({
|
uni.navigateTo({
|
||||||
url: "/pages/order/myOrder?status=0",
|
url: "/pages/order/myOrder?status=0",
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
|
@ -668,7 +668,7 @@ export default {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
if (res.data.result.skuList.length <= 0) {
|
if (res.data.result.skuList.length <= 0) {
|
||||||
uni.redirectTo({
|
uni.navigateTo({
|
||||||
url: "/pages/order/myOrder?status=0",
|
url: "/pages/order/myOrder?status=0",
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
@ -311,7 +311,7 @@ export default {
|
||||||
*/
|
*/
|
||||||
onBackPress(e) {
|
onBackPress(e) {
|
||||||
if (e.from == "backbutton") {
|
if (e.from == "backbutton") {
|
||||||
uni.reLaunch({
|
uni.switchTab({
|
||||||
url: "/pages/tabbar/user/my",
|
url: "/pages/tabbar/user/my",
|
||||||
});
|
});
|
||||||
return true; //阻止默认返回行为
|
return true; //阻止默认返回行为
|
||||||
|
|
Loading…
Reference in New Issue