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: { methods: {
goStore(order) { goStore(order) {
// this.$yrouter.push({ if(!order.hotelId) {
// path: "/pagesInn/inn/innHome", uni.showToast({
// query: { title: '未找到相关店铺!'
// id: order.merId })
// } return
// }); }
this.$yrouter.push({
path: "/pagesInn/inn/innHome",
query: {
id: order.hotelId
}
});
}, },
async toYuePay(payPwd) { async toYuePay(payPwd) {
const that = this; const that = this;