From f0c23a102f268ab8880f39ad247f8c379d921dfb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E5=BE=81?= Date: Tue, 17 May 2022 15:49:21 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E4=BF=AE=E6=94=B9=E7=82=B9=E5=87=BB?= =?UTF-8?q?=E5=95=86=E5=93=81=E8=AF=A6=E6=83=85=E4=B8=BA=E6=96=B0=E5=BC=80?= =?UTF-8?q?=E7=AA=97=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/UiGoodsItem.vue | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/components/UiGoodsItem.vue b/components/UiGoodsItem.vue index 4b716c8..240f517 100644 --- a/components/UiGoodsItem.vue +++ b/components/UiGoodsItem.vue @@ -41,9 +41,10 @@ export default { return str; }, onItem() { - this.$router.push({ - path: "/goods/detail/" + this.item.id, - }); + // this.$router.push({ + // path: "/goods/detail/" + this.item.id, + // }); + window.open("/goods/detail/" + this.item.id) }, }, };