Browse Source

config文件处理

lhh 6 months ago
parent
commit
83d730e53b

+ 2 - 1
src/components/map/GisMap.vue

@@ -31,7 +31,7 @@ onMounted(() => {
     onReady: function () {
       console.log('ready');
       //默认加载
-      addImagePoint('newAdress', [{ x: -1870.119238446634, y: -12912.502302966037 }], {
+      addImagePoint('newAdress', [{ x: -14926.528171515301, y: -1705.2657878212942 }], {
         imageUrl: new URL(`@/assets/image/mapTools/newAdress.png`, import.meta.url).href
       });
       addImagePoint(
@@ -99,6 +99,7 @@ onMounted(() => {
               id: arg.data[key][0].id
             });
             if (res.code == 200) {
+              drawPointStore.currentSelectName = arg.data[key][0].name;
               drawPointStore.currentSelectId = arg.data[key][0].id;
               drawPointStore.currentDrawPointList = res.data || [];
             } else {

+ 2 - 1
src/stores/drawPointManage.js

@@ -7,7 +7,7 @@ export const useDrawPointStore = defineStore('drawPointStore', () => {
 
   //当前选中点id
   const currentSelectId = ref('');
-
+  const currentSelectName = ref('');
   //是否开始标会
   const drawStartStatus = ref(false);
 
@@ -53,6 +53,7 @@ export const useDrawPointStore = defineStore('drawPointStore', () => {
     currentDrawPointList,
     infoBoxIndex,
     currentSelectId,
+    currentSelectName,
     setInfoBoxIndex,
     drawStartStatus,
     pushCurrentDrawPointList,

+ 3 - 12
src/stores/mapStore.js

@@ -1,25 +1,16 @@
 import { ref } from 'vue';
-import { defineStore, mapStores } from 'pinia';
+import { defineStore } from 'pinia';
 import {
-  addTrajectory,
   addImagePoint,
   addJuHePoint,
   closePoint,
   stopTrajectory,
   startBidding
 } from '@/utils/map/mapOperation.js';
-import { useDrawPointStore } from './drawPointManage';
-import {
-  getTrajectorPointOnPeople,
-  getTrajectorPointOnCar,
-  getTrajectorPointOnCarById
-} from '@/service/api/mapRequest.js';
-import { color } from 'echarts';
+import { getTrajectorPointOnPeople, getTrajectorPointOnCar } from '@/service/api/mapRequest.js';
 export const useMapStore = defineStore('mapStore', () => {
   //当前病例点位列表
   const currentToolSelectArray = ref(['newAdress', 'touch']);
-  //当前绘制点位列表
-  const drawPointStore = useDrawPointStore();
 
   // 会商车绘制列表
   const flowCarList = ref([]);
@@ -39,7 +30,7 @@ export const useMapStore = defineStore('mapStore', () => {
       switch (value) {
         case 'newAdress': {
           //新址图标
-          addImagePoint('newAdress', [{ x: -1870.119238446634, y: -12912.502302966037 }], {
+          addImagePoint('newAdress', [{ x: -14926.528171515301, y: -1705.2657878212942 }], {
             imageUrl: new URL(`@/assets/image/mapTools/newAdress.png`, import.meta.url).href
           });
           break;

+ 5 - 4
src/views/DataCenterGis/components/LeftMap.vue

@@ -9,8 +9,8 @@
 
       <div class="table-container" v-if="mapStore.currentToolSelectArray.includes('Bidding')">
         <div class="top-box">
-          <span>患者: 张三</span>
-          <span>编号: 00134</span>
+          <span>患者: {{ drawPointStore.currentSelectName }}</span>
+          <span>编号: {{ drawPointStore.currentSelectId }}</span>
           <el-button class="add-box" type="primary" @click="tableAdd">新增</el-button>
         </div>
         <el-table :data="drawPointStore.currentDrawPointList">
@@ -405,7 +405,7 @@ const nextPoint = () => {
 
     .info-button {
       position: absolute;
-      background-color: #cccccc;
+      background-color: #ffffff;
       display: flex;
       justify-content: center;
       align-items: center;
@@ -552,7 +552,8 @@ const nextPoint = () => {
     }
     :deep(.info-container) {
       position: absolute;
-      background-color: #cccccc;
+      background-color: #ffffff;
+      box-shadow: 0px 4px 5px #cccccc;
       padding: 10px;
       font-size: 16px;
       width: 250px;