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) { hotelItemClick(item) {
this.$yrouter.push({ if (item.isTravel === 1) {
path: '/pagesInn/inn/innHome', uni.navigateTo({
query: { url: '/pkg_product/views/sojoumStore?id=' + item.id
id: item.id })
} } else {
}) this.$yrouter.push({
path: '/pagesInn/inn/innHome',
query: {
id: item.id
}
})
}
}, },
getList() { getList() {
if (this.loading || this.loadend) { if (this.loading || this.loadend) {