Procházet zdrojové kódy

bsestopoEditer <fix>:设备锚点不联动

YaolongHan před 4 roky
rodič
revize
277d845a4e

+ 2 - 2
public/systemConf.js

@@ -6,9 +6,9 @@
 
 var __systemConf = {
     // 图服务下载路径
-    imgServeUri: '/dp-auxiliary/image-service/common/image_get?systemId=dataPlatform&key=',
+    imgServeUri: '/image-service/common/image_get?systemId=dataPlatform&key=',
     // 图上传路径
-    imgServeUpload: "/dp-auxiliary/image-service/common/image_upload?systemId=dataPlatform&secret=9e0891a7a8c8e885&overwrite=true&key=",
+    imgServeUpload: "/image-service/common/image_upload?systemId=dataPlatform&secret=9e0891a7a8c8e885&overwrite=true&key=",
     // 默认通用设备图标
     default_Eq: '1607752841478.svg',
 }

+ 3 - 2
src/components/editview/baseTopoEditer.vue

@@ -272,6 +272,7 @@ export default {
           this.ADDEQUIPITEM(item);
         }
       });
+      console.log('anchorList',anchorList)
       parse.relations.forEach((t) => {
         // 设置锚点
         if (t.anchor1Id) {
@@ -288,10 +289,10 @@ export default {
             t.startAnchor = startAnc || null;
           }
         }
-        if (t.anchor12d) {
+        if (t.anchor2Id) {
           let endAnc = null;
           anchorList.forEach((aItem) => {
-            if (aItem.id == t.anchor12d) {
+            if (aItem.id == t.anchor2Id) {
               endAnc = aItem;
             }
           });

+ 2 - 2
vue.config.js

@@ -27,8 +27,8 @@ module.exports = {
                 secure: false,
             },
             // 图片服务器
-            '/dp-auxiliary': {
-                target: 'http://api.sagacloud.cn',
+            '/image-service': {
+                target: 'http://api.sagacloud.cn/dp-auxiliary',
                 changeOrigin: true,
                 secure: false,
             },