Fix:需要显示康养圣地数据,且跳转需区分

This commit is contained in:
linxi
2025-11-26 10:50:28 +08:00
parent b82dc02177
commit a64da0bc21
+10 -1
View File
@@ -155,7 +155,16 @@ export default {
})
},
toStore(item) {
uni.navigateTo({ url: '/pkg_product/views/sojoumStore?id=' + item.id })
if(item.dataType === 'wellnessPlace'){
this.$yrouter.push({
path: '/pagesInn/inn/innHome',
query: {
id: item.hotelId
}
})
}else{
uni.navigateTo({ url: '/pkg_product/views/sojoumStore?id=' + item.id })
}
},
}
}