From 01b737fd8a2832222c06827c460f67e979962815 Mon Sep 17 00:00:00 2001 From: jiannibang Date: Tue, 20 Dec 2022 16:48:03 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=BA=97=E9=93=BA=E5=BC=B9=E7=AA=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Map/Map.vue | 63 ++++++------------------------ src/components/Map/bg.png | Bin 0 -> 1723 bytes src/composables/useFacilityNav.js | 6 +-- src/composables/useInitMap.js | 8 ++-- 4 files changed, 18 insertions(+), 59 deletions(-) create mode 100644 src/components/Map/bg.png diff --git a/src/components/Map/Map.vue b/src/components/Map/Map.vue index e26cb5b..bb7df79 100644 --- a/src/components/Map/Map.vue +++ b/src/components/Map/Map.vue @@ -4,12 +4,8 @@
-
-
{{ switchLanguage(shop, 'shopName') }}
-
-
{{ $t('detail') }}
-
{{ $t('nav') }}
-
+
+
{{ switchLanguage(shop, 'shopName') }}
@@ -24,17 +20,6 @@ import { useStore } from '@/store/root' const store = useStore() const { shop } = storeToRefs(store) - -const emits = defineEmits(['handle-GO', 'handle-Detail']) - -function handleGO() { - emits('handle-GO') -} - -// 点击地图弹框详情 -function handleDetail() { - emits('handle-Detail') -}