From 14abdb02b6534b58f5119dbe0a885490fefe3c9c Mon Sep 17 00:00:00 2001 From: LinCyJang Date: Wed, 4 Feb 2026 22:51:32 +0800 Subject: [PATCH] =?UTF-8?q?Fix=EF=BC=9A4863=20=E3=80=90=E5=95=86=E5=9F=8E?= =?UTF-8?q?=E5=B0=8F=E7=A8=8B=E5=BA=8F=E3=80=91=E6=90=9C=E7=B4=A2=E5=88=97?= =?UTF-8?q?=E8=A1=A8=E4=B8=AD=E7=9A=84=E6=97=85=E5=B1=85=E5=95=86=E6=88=B7?= =?UTF-8?q?=E7=82=B9=E5=87=BB=E8=BF=9B=E5=85=A5=E6=97=B6=E6=8F=90=E7=A4=BA?= =?UTF-8?q?=E2=80=9C=E5=BA=97=E9=93=BA=E4=B8=8D=E5=AD=98=E5=9C=A8=E2=80=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/shop/GoodsList/index.vue | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/pages/shop/GoodsList/index.vue b/pages/shop/GoodsList/index.vue index a52da21..ac0cd44 100644 --- a/pages/shop/GoodsList/index.vue +++ b/pages/shop/GoodsList/index.vue @@ -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) {