YaolongHan 4 rokov pred
rodič
commit
d8dc3535cc

+ 1 - 1
src/components/editClass/persagy-edit/PTopoScene.ts

@@ -224,7 +224,7 @@ export class PTopoScene extends SBaseEditScene {
         } else if (styletype == "font") {
             styleValue = new SFont("sans-serif", changestyle)
         } else if(styletype == "url"){
-            styletype = this.imgServeUrl + changestyle;
+            styleValue = this.imgServeUrl + changestyle;
             // 设置default url
             List.forEach((item:SGraphEdit)=>{
                 item.defaultUrl = changestyle

+ 14 - 14
src/components/editview/baseTopoEditer.vue

@@ -247,17 +247,20 @@ export default {
         item.connect("finishCreated", this.scene, this.scene.finishCreated);
         item.connect("onContextMenu", this, this.scene.getItem);
         // 判断如果是图,需要拼接路径
-        if(item.data.properties.type == 'BaseImage'){
-          if(item.data.style.default.url){
-             item.url = imgBaseUrl+ item.data.style.default.url
+        if (item.data.properties.type == "BaseImage") {
+          if (item.data.style.default.url) {
+            item.url = imgBaseUrl + item.data.style.default.url;
           }
         }
         this.scene.addItem(item);
-
       });
       parse.nodes.forEach((item) => {
         item.connect("finishCreated", this.scene, this.scene.finishCreated);
         item.connect("onContextMenu", this, this.scene.getItem);
+        // 设置url
+         if (item.legendData.style.default.url) {
+          item.url = imgBaseUrl + item.legendData.style.default.url;
+        }
         this.scene.addItem(item);
         // 如果为设备则存于vuex中便于联动
         if (item instanceof SBaseEquipment) {
@@ -332,10 +335,7 @@ export default {
             } else {
               // 构造 XMLHttpRequest 对象,发送文件 Binary 数据
               const xhr = new XMLHttpRequest();
-              xhr.open(
-                "POST",
-                `${imgServeUpload}${uuid}.${imgType}`
-              );
+              xhr.open("POST", `${imgServeUpload}${uuid}.${imgType}`);
               xhr.send(reader.result);
               xhr.onreadystatechange = function () {
                 if (xhr.readyState == 4) {
@@ -416,15 +416,11 @@ export default {
       list.forEach((item, i) => {
         const x = (i + 1) * 100 + 300;
 
-        const url = imgBaseUrl + item.url;
+        const url = item.url;
+
         let svg2Base = "";
         let EquipHeight = this.canvasHeight - 100;
         // 拼接路径
-        const state = item.state.map((t) => {
-          return Object.assign(t, {
-            pic: imgBaseUrl + t.pic,
-          });
-        });
         let data = {
           nodeId: uuidv1(),
           /** 名称 */
@@ -458,6 +454,10 @@ export default {
       parse.nodes.forEach((item) => {
         item.connect("finishCreated", this.scene, this.scene.finishCreated);
         item.connect("onContextMenu", this, this.scene.getItem);
+        if (item.legendData.style.default.url) {
+          item.url = imgBaseUrl + item.legendData.style.default.url;
+          item.defaultUrl = item.legendData.style.default.url;
+        }
         this.scene.addItem(item);
         // 如果为设备则存于vuex中便于联动
         if (item instanceof SBaseEquipment) {

+ 2 - 1
src/components/homeView/topoImageCard.vue

@@ -68,7 +68,8 @@ export default {
         { name: 'recover', label: '恢复', show: 'isRecycle' },  // 类型为 回收站 时出现
         { name: 'deleteRecycle', label: '永久删除', show: 'isRecycle' }, // 类型为 回收站 时出现
       ],
-      checked: false
+      checked: false,
+      imgBaseUrl,
     };
   },
   methods: {