Browse Source

完成拓扑图公式信息点得添加保存

YaolongHan 4 năm trước cách đây
mục cha
commit
087e93444d

+ 7 - 0
public/systemConf.js

@@ -11,5 +11,12 @@ var __systemConf = {
     imgServeUpload: "/image-service/common/image_upload?systemId=dataPlatform&secret=9e0891a7a8c8e885&overwrite=true&key=",
     // 默认通用设备图标
     default_Eq: '1607752841478.svg',
+    // 联通方式
+    // 弯头
+    uninType: {
+        wantou: '1611626822439.png',
+        santong: '1611626859989.png',
+        sitong: '1611626884273.png'
+    }
 }
 window.__systemConf = __systemConf

+ 13 - 0
src/components/editClass/persagy-edit/PTopoFactory.ts

@@ -28,6 +28,7 @@ import { SColor, SFont, SPoint, SArrowStyleType } from "@persagy-web/draw";
 import { SArrowItem, SPolygonItem, SArrowPoly, SItemFactory, ItemOrder, SPolylineItem } from "@persagy-web/big"
 import { SGraphCircleItem, STextItem, SImageItem, SGraphLineItem } from "@persagy-web/graph/lib"
 import { SBaseInfoPoint } from "./items/SBaseInfoPoint"
+import { SBasePipeUninTool } from "./items/SBasePipeUninTool"
 import { SLineStyle } from "@persagy-web/graph"
 import { BigEditFactory, Legend, Marker, Relation, ElementData } from "@persagy-web/big-edit"
 /**
@@ -55,4 +56,16 @@ export class PTopoFactory extends BigEditFactory {
         item.data = data;
         return item;
     }
+
+    /**
+     * 创建管道连接投
+     *
+     * @param data  数据
+     * @return 线
+     */
+    createBasePipeUninTool(data: Marker): SBasePipeUninTool {
+        const item = new SBasePipeUninTool(null,data);
+        item.data = data;
+        return item;
+    }
 }

+ 4 - 1
src/components/editClass/persagy-edit/PTopoParser.ts

@@ -25,7 +25,7 @@
 
 import { SParser, ItemOrder } from '@persagy-web/big/lib';
 import { BigEditFactory, Legend, Marker, Relation, ElementData } from "@persagy-web/big-edit"
-import {PTopoFactory} from "./PTopoFactory"
+import { PTopoFactory } from "./PTopoFactory"
 
 /**
  * 拓扑图解析器
@@ -107,6 +107,9 @@ export class PTopoParser extends SParser {
                 case "InfoPoint":
                     this.markers.push(this.factory.createBaseInfoPoint(data));
                     break;
+                case "BasePipeUninTool":
+                    this.markers.push(this.factory.createBasePipeUninTool(data));
+                    break;
                 case "BaseArrowPolygon":
                     this.markers.push(this.factory.createBasePolygonArrowEdit(data));
             }

+ 11 - 12
src/components/editClass/persagy-edit/PTopoScene.ts

@@ -44,7 +44,12 @@ export class PTopoScene extends SBaseEditScene {
     legendObj: any = null;
     // 静态服务器路径
     public imgServeUrl: string = '';
-
+    // 联通方式
+    public uninType: object = {
+        wantou: '',
+        santong: '',
+        sitong: ''
+    }
     constructor() {
         super()
         // 选择绑定选额item事件
@@ -160,7 +165,7 @@ export class PTopoScene extends SBaseEditScene {
             // 添加信息点
             this.addInfoPoint(event, this.editCmd);
             this.clearCmdStatus();
-        }else if (this.editCmd == "") {
+        } else if (this.editCmd == "") {
             super.onMouseDown(event);
         }
     }
@@ -191,12 +196,6 @@ export class PTopoScene extends SBaseEditScene {
      * @param cmd       命令
      */
     addPipeUninTool(event: SMouseEvent, cmd: string): void {
-        const cmdList = {
-            'wantou': 2,
-            'santong': 3,
-            'sitong': 4,
-        }
-
         const data = {
             /** 名称 */
             name: '基础管道接头',
@@ -209,19 +208,19 @@ export class PTopoScene extends SBaseEditScene {
                 type: "BasePipeUninTool",
             },
             style: {
-                uninToolType: cmdList[cmd] ? cmdList[cmd] : 2,  //2,3,4 分别分二头连接器、三头连接器、四头连接器
+                uninToolType: cmd,  //分别分二头连接器、三头连接器、四头连接器
                 default: {
                     strokecolor: "#c0ccda",
+                    url: this.uninType[cmd]
                 }
             }
         };
 
         const item = new SBasePipeUninTool(null, data);
-        item.status = SItemStatus.Create;
+        item.url = this.imgServeUrl + this.uninType[cmd];
         item.selectable = true;
         item.moveable = true;
         this.addItem(item);
-        this.grabItem = item;
         this.finishCreated(item)
         item.connect("onContextMenu", this, this.getItem);
         if (this.view) {
@@ -436,7 +435,7 @@ export class PTopoScene extends SBaseEditScene {
      */
     save(isAll: boolean = true) {
         if (!this.view) return;
-        const Marktype: string[] = ['BasePolygon', 'BaseLine', 'BaseText', 'BaseExplain', 'BaseImage', 'BaseCircle', 'BaseArrow', 'BaseTriangle', 'BaseRect', 'BaseArrowPolygon','InfoPoint'];
+        const Marktype: string[] = ['BasePolygon', 'BaseLine', 'BaseText', 'BaseExplain', 'BaseImage', 'BaseCircle', 'BaseArrow', 'BaseTriangle', 'BaseRect', 'BaseArrowPolygon', 'InfoPoint', 'BasePipeUninTool'];
         const NodeType: string[] = ['BaseEquipment'];
         const RelationType: string[] = ["BasePipe"];
         const markers: any = [];   /**图例节点 */  // 与工程信息无关的标识对象(增加文本注释,图上的图片说明)

+ 2 - 16
src/components/editClass/persagy-edit/items/SBasePipeUninTool.ts

@@ -37,6 +37,7 @@ import { SMouseEvent } from "@persagy-web/base/lib";
 export class SBasePipeUninTool extends SBaseImageEdit {
     ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
     //属性
+
     /**
      * 构造函数
      *
@@ -45,22 +46,7 @@ export class SBasePipeUninTool extends SBaseImageEdit {
      */
     constructor(parent: SGraphItem | null, data: Marker) {
         super(parent, data);
-        if (data && data.style) {
-            switch (data.style.uninToolType) {
-                case 2:
-                    this.url = require('./../../../../assets/images/leftImgs/wantou.png');
-                    break;
-                case 3:
-                    this.url = require('./../../../../assets/images/leftImgs/santong.png');
-                    break;
-                case 4:
-                    this.url = require('./../../../../assets/images/leftImgs/sitong.png');
-                    break;
-                default:
-                    this.url = require('./../../../../assets/images/leftImgs/wantou.png');
-                    break;
-            }
-        }
+        this.data = data;
     } // Constructor
 
     /**

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

@@ -47,6 +47,8 @@ const imgBaseUrl = window.__systemConf.imgServeUri;
 const imgServeUpload = window.__systemConf.imgServeUpload;
 // 默认通用图标
 const default_Eq = window.__systemConf.default_Eq;
+// 联通方式图标
+const uninType = window.__systemConf.uninType
 export default {
   components: { topoTooltip },
   data() {
@@ -79,6 +81,7 @@ export default {
     this.canvasHeight = this.$refs.baseTopo.offsetHeight - 10;
     this.scene = new PTopoScene();
     this.scene.imgServeUrl = imgBaseUrl; //获取图服务路径
+    this.scene.uninType = uninType //联通方式
     this.view = new PTopoView("persagy_topo");
     this.view.scene = this.scene;
     this.scene.clearCmdStatus = this.clearCmdStatus;
@@ -267,8 +270,8 @@ export default {
         item.moveable = true;
         item.connect("finishCreated", this.scene, this.scene.finishCreated);
         item.connect("onContextMenu", this, this.scene.getItem);
-        // 判断如果是图,需要拼接路径
-        if (item.data.properties.type == "BaseImage") {
+        // 判断如果是图//或是管道,需要拼接路径
+        if (item.data.properties.type == "BaseImage" || item.data.properties.type == "BasePipeUninTool") {
           if (item.data.style.default.url) {
             item.url = imgBaseUrl + item.data.style.default.url;
           }