From f90be871356e2b7e2f13ee2d69effc8bd5802458 Mon Sep 17 00:00:00 2001
From: xiangpei <xiangpei@timesnew.cn>
Date: 星期五, 26 七月 2024 11:23:22 +0800
Subject: [PATCH] 工单下发明显展示点位为重点点位、下发人、下发时间

---
 src/views/screen/components/screen-map/index.vue |   15 +++++++++++++--
 1 files changed, 13 insertions(+), 2 deletions(-)

diff --git a/src/views/screen/components/screen-map/index.vue b/src/views/screen/components/screen-map/index.vue
index 89992b9..821c160 100644
--- a/src/views/screen/components/screen-map/index.vue
+++ b/src/views/screen/components/screen-map/index.vue
@@ -11,8 +11,9 @@
 <script>
 import * as echarts from 'echarts';
 import 'echarts-gl';
-import mapData from '@/assets/map/zigong1.json';
+import mapData from '@/assets/map/zigong2.json';
 import WrapperTitle from '../wrapper-title/index';
+import ScreenData from '../screen-data/index';
 
 echarts.registerMap('zigong', mapData);
 let mapChart = null;
@@ -161,7 +162,8 @@
     }
   },
   components: {
-    WrapperTitle
+    WrapperTitle,
+    ScreenData
   },
   methods: {
     filterData(name) {
@@ -236,6 +238,7 @@
 
   .map-content {
     flex: 1;
+    position: relative;
     // background: rgba(67, 102, 155, 0.3);
     // border: 1px solid rgba(47, 91, 157, 0.8);
   }
@@ -245,4 +248,12 @@
     height: 100%;
   }
 }
+
+.data-container {
+  width: 100%;
+  display: flex;
+  position: absolute;
+  top: 0;
+  left: 0;
+}
 </style>
\ No newline at end of file

--
Gitblit v1.8.0