From e8efe7370ab9f2b9dfb07b0ae70b0e06d98e37c8 Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Sat, 01 Apr 2023 17:18:35 +0800
Subject: [PATCH] 菜单栏调整和视频监控调整,每个页面初始化位置调整

---
 src/components/map/components/mapSearchPopup.vue |   18 +++++++++++++++++-
 1 files changed, 17 insertions(+), 1 deletions(-)

diff --git a/src/components/map/components/mapSearchPopup.vue b/src/components/map/components/mapSearchPopup.vue
index c290e81..5397954 100644
--- a/src/components/map/components/mapSearchPopup.vue
+++ b/src/components/map/components/mapSearchPopup.vue
@@ -2,7 +2,7 @@
  * @Author: shuishen 1109946754@qq.com
  * @Date: 2023-03-02 09:39:32
  * @LastEditors: shuishen 1109946754@qq.com
- * @LastEditTime: 2023-03-31 17:03:52
+ * @LastEditTime: 2023-04-01 14:43:39
  * @FilePath: \srs-police-affairs\src\components\map\components\mapSearchPopup.vue
  * @Description: 
  * 
@@ -16,6 +16,7 @@
                 <div class="content" :class="{ 'scale-dom': scaleDomFlag }">
                     {{ mapSearchPopupData.name }}
                 </div>
+                <div class="bottom-arrow"></div>
             </div>
         </div>
     </div>
@@ -65,6 +66,21 @@
     left: 0;
     z-index: 1 !important;
 
+    &>.popup-box {
+        position: relative;
+    }
+
+    .bottom-arrow {
+        position: absolute;
+        left: 50%;
+        bottom: 0px;
+        width: 0;
+        height: 0;
+        border: 10px solid transparent;
+        border-top-color: $bg-color;
+        transform: translate(-50%, 100%);
+    }
+
     .scale-dom {
         transform: scale(3);
         transform-origin: left;

--
Gitblit v1.9.3