citygis-lhh 5 月之前
父節點
當前提交
f8316eb68a

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

@@ -54,6 +54,7 @@ onMounted(() => {
       console.log('listen', arg);
       switch (arg.action) {
         case 'getPoint': {
+          debugger;
           const data = arg.data;
           drawPointStore.modifyCurrentDrawPointList('x', data.x);
           drawPointStore.modifyCurrentDrawPointList('y', data.y);

+ 1 - 1
src/stores/drawPointManage.js

@@ -7,7 +7,7 @@ export const useDrawPointStore = defineStore('drawPointStore', () => {
   //当前患者绘制点位列表
   const currentDrawPointList = ref([]);
 
-  //当前选中点id,code
+  //当前选中点id,code,name(名称)
   const currentSelectId = ref('');
   const currentSelectCode = ref('');
   const currentSelectName = ref('');

+ 1 - 0
src/stores/mapStore.js

@@ -18,6 +18,7 @@ export const useMapStore = defineStore('mapStore', () => {
   //当前病例点位列表
   const currentToolSelectArray = ref(['newAdress', 'touch']);
 
+  // 地图地图类型
   const mapTheme = ref('dark');
 
   //区选择

+ 4 - 3
src/views/DataCenterGis/DataCenterGis.vue

@@ -35,13 +35,12 @@
 import { ref, reactive, watch } from 'vue';
 import leftMap from './components/LeftMap.vue';
 import rightPanel from './components/RightPanel.vue';
-import { ArrowDown, Setting } from '@element-plus/icons-vue';
+import { Setting } from '@element-plus/icons-vue';
 import { ThemeChange } from '@/utils/map/mapOperation';
 import { useMapStore } from '@/stores/mapStore';
 console.log(1);
 const mapStore = useMapStore();
 const sizeType = ref('default');
-const step = ref(0);
 const drawerVisible = ref(false);
 const marks = reactive({
   0: '标准',
@@ -162,8 +161,10 @@ const sliderChange = (val) => {
     flex-direction: column;
     justify-content: center;
     align-items: center;
+    width: 45%;
     img {
-      width: 180px;
+      cursor: pointer;
+      width: 100%;
       height: 150px;
     }
   }

+ 1 - 1
src/views/DataCenterGis/components/LeftMap.vue

@@ -401,7 +401,7 @@ const nextPoint = () => {
     width: 100%;
     font-size: 28px;
     color: #ffffff;
-    margin-left: 10px;
+    margin-left: -5px;
     height: 56px;
     padding-left: 20px;
     .title-text {

+ 4 - 2
vite.config.js

@@ -18,7 +18,8 @@ export default defineConfig({
       '/cityGIsApi': {
         //apiTest是自行设置的请求前缀,按照这个来匹配请求,有这个字段的请求,就会进到代理来
         // target: 'http://10.1.161.113:18080/', // 需要代理的域名
-        target: 'http://58.34.215.19:9082/', // 需要代理的域名
+        // target: 'http://58.34.215.19:9082/', // 需要代理的域名
+        target: 'http://10.1.161.53:9082/',
         secure: false,
         changeOrigin: true,
         rewrite: (path) => path.replace(/^\/cityGIsApi/, '') //重写匹配的字段,如果不需要放在请求路径上,可以重写为""
@@ -26,7 +27,8 @@ export default defineConfig({
       '/vmap': {
         //apiTest是自行设置的请求前缀,按照这个来匹配请求,有这个字段的请求,就会进到代理来
         // target: 'http://10.1.161.113:18080/', // 需要代理的域名
-        target: 'http://58.34.215.19:9082', // 需要代理的域名
+        // target: 'http://58.34.215.19:9082', // 需要代理的域名
+        target: 'http://10.1.161.53:9082/',
         secure: false,
         changeOrigin: true
       }