From 51b32dbe2a71f33c04a93e5d0b673509e37aded4 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E7=88=B1=7E=E6=B5=B7=7E=E7=88=B1=E6=B5=B7=E7=88=B1?=
=?UTF-8?q?=E6=B5=B7=7E=E5=8F=B3?= <1828712314@qq.com>
Date: Tue, 1 Apr 2025 08:51:10 +0800
Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E9=9D=A2=E5=8C=85=E5=B1=91?=
=?UTF-8?q?=E5=AF=BC=E8=88=AA=E9=80=BB=E8=BE=91=EF=BC=8C=E8=B0=83=E6=95=B4?=
=?UTF-8?q?=E5=9C=B0=E5=9B=BE=E5=88=9D=E5=A7=8B=E5=8C=96=E6=96=B9=E5=BC=8F?=
=?UTF-8?q?=EF=BC=8C=E6=94=AF=E6=8C=81=E8=8E=B7=E5=8F=96=E5=BD=93=E5=89=8D?=
=?UTF-8?q?=E4=BD=8D=E7=BD=AE?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../components/Breadcrumb/src/Breadcrumb.vue | 12 +++-
.../enterprises/components/getGpsByAmap.vue | 70 ++++++++++++-------
2 files changed, 53 insertions(+), 29 deletions(-)
diff --git a/src/layout/components/Breadcrumb/src/Breadcrumb.vue b/src/layout/components/Breadcrumb/src/Breadcrumb.vue
index 63a7a4f..41b8c9d 100644
--- a/src/layout/components/Breadcrumb/src/Breadcrumb.vue
+++ b/src/layout/components/Breadcrumb/src/Breadcrumb.vue
@@ -78,9 +78,15 @@ export default defineComponent({
)
return () => (
-
- {renderBreadcrumb()}
-
+
+ {currentRoute.value.meta.hidden ? (
+ ''
+ ) : (
+
+ {renderBreadcrumb()}
+
+ )}
+
)
}
})
diff --git a/src/views/enterprises/components/getGpsByAmap.vue b/src/views/enterprises/components/getGpsByAmap.vue
index 5d37d4b..0b033a8 100644
--- a/src/views/enterprises/components/getGpsByAmap.vue
+++ b/src/views/enterprises/components/getGpsByAmap.vue
@@ -4,7 +4,7 @@ import position from '@/assets/imgs/position.png'
const show = ref(false)
const AMap = (window as any).AMap
let map: any = null
-const center = ref()
+const center = ref([121.243994, 41.539054])
const loading = ref(false)
let mapSearch: any = null
const address = ref()
@@ -14,38 +14,56 @@ const message = useMessage()
const open = async (param) => {
show.value = true
await nextTick(() => {
- init(param)
+ init()
})
+ if (param) {
+ address.value = param.name
+ addressInfo.value = param
+ addMarker()
+ } else {
+ if (navigator.geolocation) {
+ navigator.geolocation.getCurrentPosition(
+ (position) => {
+ console.log(position)
+ center.value = [position.coords.longitude, position.coords.latitude]
+ map.setCenter(center.value)
+ },
+ (err) => {
+ console.log(err)
+ message.warning('获取当前位置失败,请手动选择')
+ },
+ {
+ enableHighAccuracy: true,
+ maximumAge: 0,
+ timeout: 300
+ }
+ )
+ } else {
+ message.warning('获取当前位置失败,请手动选择')
+ }
+ }
}
const emits = defineEmits(['success'])
-const init = (param) => {
+const init = () => {
loading.value = true
- navigator.geolocation.getCurrentPosition((position) => {
- center.value = [position.coords.longitude, position.coords.latitude]
- map = new AMap.Map('map-container', {
- center: center.value, // 设置地图中心点坐标
- zoom: 14, // 设置地图缩放级别
- viewMode: '2D'
- })
- map.on('complete', () => {
- const logo = document.getElementsByClassName('amap-logo')[0]
- const copyRight = document.getElementsByClassName('amap-copyright')[0]
- logo.setAttribute('style', 'display:none !important')
- copyRight.setAttribute('style', 'display:none !important')
- })
- AMap.plugin('AMap.Autocomplete', () => {
- mapSearch = new AMap.Autocomplete({
- city: '锦州'
- })
+ map = new AMap.Map('map-container', {
+ center: center.value, // 设置地图中心点坐标
+ zoom: 14, // 设置地图缩放级别
+ viewMode: '2D'
+ })
+ map.on('complete', () => {
+ const logo = document.getElementsByClassName('amap-logo')[0]
+ const copyRight = document.getElementsByClassName('amap-copyright')[0]
+ logo.setAttribute('style', 'display:none !important')
+ copyRight.setAttribute('style', 'display:none !important')
+ loading.value = false
+ })
+ AMap.plugin('AMap.Autocomplete', () => {
+ mapSearch = new AMap.Autocomplete({
+ city: '锦州'
})
- if (param) {
- address.value = param.name
- addressInfo.value = param
- addMarker()
- }
})
- loading.value = false
}
const querySearchAsync = (queryString: string, cb: (arg: any) => void) => {