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) }, }, };