From 9db2bc3b682012c681201150f9b5692fda35f148 Mon Sep 17 00:00:00 2001 From: LinCyJang Date: Sun, 30 Nov 2025 11:44:18 +0800 Subject: [PATCH] =?UTF-8?q?Fix=EF=BC=9A4663=20=E3=80=90=E6=97=85=E5=B1=85?= =?UTF-8?q?=E5=95=86=E5=9F=8E=E5=B0=8F=E7=A8=8B=E5=BA=8F=E3=80=91=E6=97=A0?= =?UTF-8?q?=E6=B3=95=E6=90=9C=E7=B4=A2=E5=88=B0=E5=AF=B9=E5=BA=94=E6=97=85?= =?UTF-8?q?=E5=B1=85=E5=95=86=E6=88=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkg_product/views/healthSearch.vue | 26 +++++++++++++++----------- 1 file changed, 15 insertions(+), 11 deletions(-) diff --git a/pkg_product/views/healthSearch.vue b/pkg_product/views/healthSearch.vue index 8ce5df0..ab92897 100644 --- a/pkg_product/views/healthSearch.vue +++ b/pkg_product/views/healthSearch.vue @@ -5,7 +5,7 @@ - + - {{ item.content }} + {{ item.intro }} - + - {{ item.hotelName }} + {{ item.name }} @@ -74,13 +74,17 @@ export default { this.isSearch = true }) }, - toStore(id) { - this.$yrouter.push({ - path: '/pagesInn/inn/innHome', - query: { - id: id - } - }) + toStore(item) { + 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 }) + } }, } }