From af436aa050f76584cd5cb88e413e45cd08c15d50 Mon Sep 17 00:00:00 2001
From: qingyiay <2386314947@qq.com>
Date: 星期三, 17 五月 2023 14:14:04 +0800
Subject: [PATCH] 修改部分错误,增加新功能

---
 pages/public-page/mapRoute/mapRoute.vue |   20 ++++++++++++++++----
 1 files changed, 16 insertions(+), 4 deletions(-)

diff --git a/pages/public-page/mapRoute/mapRoute.vue b/pages/public-page/mapRoute/mapRoute.vue
index 43ffafb..573718e 100644
--- a/pages/public-page/mapRoute/mapRoute.vue
+++ b/pages/public-page/mapRoute/mapRoute.vue
@@ -2,7 +2,16 @@
 	<view>
 		<view class="page-body" style="margin-top: 4rpx;">
 			<view class="page-section page-section-gap">
-				<map style="width: 100%; height: 600px;" :latitude="latitude" :longitude="longitude" :markers="markers" :polyline="polyline"></map>
+				<map
+					style="width: 100%; height: 600px;"
+					:latitude="latitude"
+					:longitude="longitude"
+					:markers="markers"
+					:polyline="polyline"
+					@markertap="awaken"
+					@callouttap="awaken"
+					@tap="awaken"
+				></map>
 			</view>
 		</view>
 		<view class="tip">
@@ -238,14 +247,13 @@
 
 <style lang="scss" scoped>
 .tip {
-	margin-top: 60rpx;
 	width: 94%;
-	height: 40rpx;
 	font-size: 40rpx;
+	margin: vww(22) auto;
 	display: flex;
 	justify-content: space-around;
 	.first {
-		color: #c78a64;
+		color: #515151;
 		text {
 			font-size: 45rpx;
 			color: #f81414;
@@ -259,6 +267,10 @@
 	justify-content: center;
 	/deep/.u-button {
 		width: 300rpx;
+		border: 1px solid #3b56eb;
+		border-radius: 37rpx 37rpx 37rpx 37rpx;
+		background-color: transparent;
+		color: #3b56eb;
 	}
 }
 </style>

--
Gitblit v1.9.1