From a53ece5036c1fa61a63fe5f9e0cd3519210ab928 Mon Sep 17 00:00:00 2001
From: chenyao <1219716595@qq.com>
Date: Fri, 07 Aug 2026 09:44:27 +0800
Subject: [PATCH] feat:兼容分辨率低不出现滚动条

---
 applications/mobile-web-view/src/appPages/work/workDetail/mapWork/index.vue |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/applications/mobile-web-view/src/appPages/work/workDetail/mapWork/index.vue b/applications/mobile-web-view/src/appPages/work/workDetail/mapWork/index.vue
index b45f3ed..35bb0af 100644
--- a/applications/mobile-web-view/src/appPages/work/workDetail/mapWork/index.vue
+++ b/applications/mobile-web-view/src/appPages/work/workDetail/mapWork/index.vue
@@ -14,14 +14,14 @@
 <script setup>
 import WorkMap from '@/appComponents/workMap/index.vue'
 import { useRoute } from 'vue-router'
-import { showToast } from 'vant'
 import { useStore } from 'vuex'
 const store = useStore()
 const userInfo = computed(() => store?.state?.user?.userInfo)
 const route = useRoute()
 const mapCurrentDetail = ref({})
 onMounted(async () => {
-mapCurrentDetail.value = JSON.parse(decodeURIComponent(route.query.currentItem))
+// mapCurrentDetail.value = JSON.parse(decodeURIComponent(route.query.currentItem))
+mapCurrentDetail.value = JSON.parse(route.query.currentItem)
 
 })
 </script>

--
Gitblit v1.9.3