From d8002a82657321d2bc5455d9b3bef9b43673e7be Mon Sep 17 00:00:00 2001 From: R2m1liA <15258427350@163.com> Date: Wed, 19 Nov 2025 15:03:59 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E6=94=B9=E5=9C=B0=E5=9B=BE?= =?UTF-8?q?=E5=BC=80=E5=90=AF=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 当单击公司地址时,先在新标签页开启locate路由,再异步定向到合适的地图服务商页面 --- app/pages/about/index.vue | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/pages/about/index.vue b/app/pages/about/index.vue index ee510db..7f995a2 100644 --- a/app/pages/about/index.vue +++ b/app/pages/about/index.vue @@ -25,7 +25,7 @@ @@ -44,6 +44,10 @@ ]; const { data: companyProfile, pending, error } = await useCompanyProfile(); + const openMap = () => { + window.open(localePath('/locate')); + }; + watch(error, (value) => { if (value) { logger.error('数据获取失败: ', value);