Fix:4863 【商城小程序】搜索列表中的旅居商户点击进入时提示“店铺不存在”

This commit is contained in:
LinCyJang
2026-02-04 22:51:32 +08:00
parent b7d6935e31
commit 14abdb02b6
+12 -6
View File
@@ -270,12 +270,18 @@ export default {
})
},
hotelItemClick(item) {
this.$yrouter.push({
path: '/pagesInn/inn/innHome',
query: {
id: item.id
}
})
if (item.isTravel === 1) {
uni.navigateTo({
url: '/pkg_product/views/sojoumStore?id=' + item.id
})
} else {
this.$yrouter.push({
path: '/pagesInn/inn/innHome',
query: {
id: item.id
}
})
}
},
getList() {
if (this.loading || this.loadend) {