From 8bf400b67418a4a81185a4a302fdbdfce2cdf018 Mon Sep 17 00:00:00 2001
From: jiaosong <jiaosong6760@dingtalk.com>
Date: 星期五, 03 十一月 2023 11:53:44 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/dev' into dev
---
bicycle/pages/maps/maps.vue | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/bicycle/pages/maps/maps.vue b/bicycle/pages/maps/maps.vue
index 928dfb1..2a86b73 100644
--- a/bicycle/pages/maps/maps.vue
+++ b/bicycle/pages/maps/maps.vue
@@ -170,7 +170,7 @@
res.data.forEach((item, index) => {
this.markers.push({
id: index,
- width: 30,
+ width: 40,
height: 40,
distance: this.latitude && this.longitude ? distance(this.latitude, this.longitude, item.latitude, item.longitude) : '鏈煡璺濈',
latitude: item.latitude,
@@ -194,14 +194,14 @@
if (item.id === e.markerId) {
this.rice = item.distance
item.customCallout.display = 'ALWAYS'
- item.width = 40
+ item.width = 50
item.height = 50
setTimeout(() => {
this.info = item
this.show = true
}, 300)
} else {
- item.width = 30
+ item.width = 40
item.height = 40
item.customCallout.display = 'BYCLICK'
}
--
Gitblit v1.9.3