From 8e61d49a82d68e7e9397f976b6f8b5c66f91d8ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E4=BC=9F=E5=BA=9A?= Date: Wed, 1 Dec 2021 14:58:11 +0800 Subject: [PATCH] =?UTF-8?q?up=20=E6=95=B0=E6=8D=AE=E9=87=87=E9=9B=86?= =?UTF-8?q?=E8=B7=AF=E7=94=B1=E8=B7=B3=E8=BD=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/menu.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/menu.vue b/src/components/menu.vue index ac5c12e..1a90ca1 100644 --- a/src/components/menu.vue +++ b/src/components/menu.vue @@ -284,6 +284,8 @@ export default { } else if (parent == "/services_shop") { this.$store.commit("serviceShopMenuAct", v.visit_url); this.$router.push(v.visit_url); + } else if (v.visit_url.indexOf("#") > 0) { + window.open(v.visit_url); } else { this.$router.push(v.visit_url); } -- 2.26.0