Fix:商城小程序】订单列表—查看店铺按钮没反应,点击应进入店铺详情

This commit is contained in:
linxi
2024-09-14 16:33:04 +08:00
parent 5de4ab8758
commit e0de70ee35
+12 -6
View File
@@ -305,12 +305,18 @@ export default {
},
methods: {
goStore(order) {
// this.$yrouter.push({
// path: "/pagesInn/inn/innHome",
// query: {
// id: order.merId
// }
// });
if(!order.hotelId) {
uni.showToast({
title: '未找到相关店铺!'
})
return
}
this.$yrouter.push({
path: "/pagesInn/inn/innHome",
query: {
id: order.hotelId
}
});
},
async toYuePay(payPwd) {
const that = this;