Quellcode durchsuchen

Merge branch 'dev' of http://39.106.8.246:3003/web/persagy-plan-editer into dev

yunxing vor 4 Jahren
Ursprung
Commit
faae283002

+ 8 - 0
src/api/imageservice.ts

@@ -0,0 +1,8 @@
+/**
+ * 文件服务地址配置
+ */
+
+// 图服务下载路径
+export const imgBaseUrl = '/image-service/common/image_get?systemId=dataPlatform&key=';
+// 图上传路径
+export const imgServeUpload = '/image-service/common/image_upload?systemId=dataPlatform&secret=9e0891a7a8c8e885&overwrite=true&key=';

+ 21 - 13
src/components/editview/basePlanEditer.vue

@@ -22,6 +22,7 @@ import { v1 as uuidv1 } from "uuid";
 import bus from "@/bus/bus";
 import { saveGroup, readGroup, uploadGroup, getImageGroup, readPubGroup } from "@/api/editer";
 import { publishGraph } from "@/api/home";
+import { imgBaseUrl, imgServeUpload } from "@/api/imageservice";
 export default {
     components: { topoTooltip },
     props: {
@@ -129,6 +130,7 @@ export default {
         // 清空画布
         clearImg() {
             this.scene = new SPlanScene();
+            this.scene.imgServeUrl = imgBaseUrl;
             this.scene.emitChoice = this.emitChoice;
             this.scene.clearCmdStatus = this.clearCmdStatus;
             this.scene.vueOnMouseDown = this.vueOnMouseDown;
@@ -361,6 +363,12 @@ 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.style.default.url) {
+                        item.url = imgBaseUrl + item.data.style.default.url;
+                    }
+                }
                 this.scene.addItem(item);
             });
 
@@ -450,36 +458,36 @@ export default {
         },
         // 解析设备数据
         mergeEquipData(equipList) {
-            equipList.forEach((item) => {
-                if (!this.equipItemList[item.id]) {
+            equipList.forEach((equip) => {
+                if (!this.equipItemList[equip.id]) {
                     /**
                      * 如果未维护BIM坐标,默认显示在什么位置
                      * 如果未维护BIM坐标,连线原点在什么位置(可能要在item里面处理)
                      */
-                    if (this.equipos[item.id]) {
+                    if (this.equipos[equip.id]) {
                         // 判断设备是否维护位置信息
-                        item.pos = this.equipos[item.id];
-                    } else if (item.bimLocation) {
+                        equip.pos = this.equipos[equip.id];
+                    } else if (equip.locationJson) {
                         // 判断设备是否维护BIM坐标
-                        item.pos = item.bimLocation;
+                        equip.pos = equip.locationJson;
                     } else {
                         // 否则显示默认坐标位置
-                        item.pos = { x: 0, y: 0 };
+                        equip.pos = { x: 0, y: 0 ,z: 0};
                     }
-                    const equipItem = new SPlanEquipment(item);
+                    const equipItem = new SPlanEquipment(null, equip);
                     equipItem.selectable = true;
                     equipItem.moveable = true;
                     equipItem.connect("finishCreated", this.scene, this.scene.finishCreated);
                     equipItem.connect("onContextMenu", this, this.scene.getItem);
-                    if (this.style[item.id]) {
-                        Object.assign(equipItem, this.style[item.id]);
-                    } else if (this.style[item.classCode]) {
-                        Object.assign(equipItem, this.style[item.calssCode]);
+                    if (this.style[equip.id]) {
+                        Object.assign(equipItem, this.style[equip.id]);
+                    } else if (this.style[equip.classCode]) {
+                        Object.assign(equipItem, this.style[equip.calssCode]);
                     } else {
                         Object.assign(equipItem, this.style["equipDefault"]);
                     }
                     this.scene.addItem(equipItem);
-                    this.equipItemList[item.id] = equipItem;
+                    this.equipItemList[equip.id] = equipItem;
                 }
             });
         },

Datei-Diff unterdrückt, da er zu groß ist
+ 6236 - 0
src/data/equipData.json


+ 3 - 0
src/lib/SPlanScene.ts

@@ -42,6 +42,9 @@ import { SPlanParser } from "./";
 export class SPlanScene extends SBaseEditScene {
     /** 图例数据 */
     legendObj: any = null;
+    // 静态服务器路径
+    public imgServeUrl: string = '';
+    
     constructor() {
         super();
         // 选择绑定选额item事件

+ 40 - 116
src/lib/item/SPlanEquipment.ts

@@ -27,7 +27,6 @@
 import { SGraphItem, SAnchorItem } from "@persagy-web/graph/lib";
 import { Legend } from "@persagy-web/big-edit";
 import { SBaseIconTextEdit, SBaseTextEdit } from "@persagy-web/edit";
-import { SColor } from '@persagy-web/draw/lib';
 import { svgTobase64, uuid } from "@persagy-web/big-edit/lib/until"
 /**
  * 编辑基础设备类
@@ -45,24 +44,26 @@ export class SPlanEquipment extends SBaseIconTextEdit {
         return this._legendData
     } // get legendData()
 
-    /** 信息点存储 */
-    private _infoPointList: any[] = []
-    set infoPointList(val) {
-        this._infoPointList = val;
-    } // set infoPointList()
-    get infoPointList(): any[] {
-        return this._infoPointList
-    } // get infoPointList()
-
     /** 图例url */
     private _url: string = '';
     set url(val) {
         this._url = val;
         this.initUrl()
-    } // set infoPointList()
+    } // set url()
     get url(): string {
         return this._url
-    } // get infoPointList()
+    } // get url()
+
+    /** 公式 */
+    private _formula: string = '';
+    set formula(val) {
+        this._formula = val;
+        this.textItemList[0].text = val;
+        this.update();
+    } // set formula()
+    get formula(): string {
+        return this._formula
+    } // get formula()
 
     //  设备附加数据
     anotherMsg: string = ''
@@ -75,6 +76,12 @@ export class SPlanEquipment extends SBaseIconTextEdit {
      */
     constructor(parent: SGraphItem | null, data: Legend) {
         super(parent);
+        const textItem = new SBaseTextEdit(this, null);
+        textItem.text = "";
+        textItem.font.size = 12;
+        // 偏移二分之一文本高度
+        textItem.moveTo((this.img.width * 0.5), -(this.font.size * 1.25 * 0.5));
+        this.textItemList.push(textItem);
         this.legendData = data;
     } // Constructor
 
@@ -89,24 +96,31 @@ export class SPlanEquipment extends SBaseIconTextEdit {
         }
 
         this.img.connect("onMove", this, this.changeAnchorPoint.bind(this));
-
-        // 存储信息点
-        if (this.legendData.properties && this.legendData.properties.infoPointList) {
-            const infoPointList = this.legendData.properties.infoPointList;
-            if (infoPointList.length) {
-                this.infoPointList = infoPointList;
-                this.infoPointList.forEach((obj, i) => {
-                    this.setTextItem(obj, i)
-                })
-            } else {
-                this.infoPointList = []
-            }
+        if (this.legendData.anchorList && this.legendData.anchorList.length) {
+            this.anchorList = this.legendData.anchorList.map(t => {
+                let item = new SAnchorItem(this);
+                if (t.anchorId) {
+                    item.id = t.anchorId;
+                }
+                item.moveTo(t.pos.x, t.pos.y);
+                return item;
+            });
         } else {
-            this.infoPointList = []
+            const anchorPoint = [
+                { x: this.img.x, y: this.img.y, anchorId: uuid() },
+            ];
+            this.anchorList = anchorPoint.map(t => {
+                let item = new SAnchorItem(this);
+                if (t.anchorId) {
+                    item.id = t.anchorId;
+                }
+                item.moveTo(t.x, t.y);
+                return item;
+            });
         }
 
         this.showAnchor = false;
-        this.url = this.legendData.style.default.base64Url ? this.legendData.style.default.base64Url : this.legendData.style.default.url
+        this.formula = this.legendData.properties.formula ? this.legendData.properties.formula : '';
         this.anotherMsg = this.legendData.properties.anotherMsg ? this.legendData.properties.anotherMsg : '';
         this.x = this.legendData.pos.x;
         this.y = this.legendData.pos.y;
@@ -123,108 +137,18 @@ export class SPlanEquipment extends SBaseIconTextEdit {
     }
 
     /**
-     * 设置信息点
-     *
-     * @params	obj 设置的信息点
-     */
-    setMsgPoint(val: any) {
-        // 根据是否勾选来判断是够增加或删除
-        if (val.checked) {
-            this._infoPointList.push(val);
-            this.setTextItem(val, (this._infoPointList.length - 1))
-        } else {
-            let deleteItemIndex: number = -1;
-            this._infoPointList.forEach((item, index) => {
-                if (val.id == item.id) {
-                    deleteItemIndex = index;
-                }
-            });
-            this._infoPointList.splice(deleteItemIndex, 1);
-            this.setTextItem(val, deleteItemIndex)
-        }
-    }
-
-    /**
-     * 根据选中状态增加 textItem
-     *
-     * @params obj	textItem 文本信息
-     * @params index 文本索引
-     */
-    setTextItem(val: any, index: number): void {
-        if (val.checked) {
-            let item = new SBaseTextEdit(this, null);
-            item.propertyData = val;
-            item.text = val.name;
-            if (val.pos) {
-                item.moveTo(val.pos.x, val.pos.x)
-            } else {
-                item.moveTo(
-                    this.img.width * 0.5,
-                    -(this.font.size * 1.25 * 0.5) + (index) * 10
-                );
-            }
-
-            item.font.size = val.font ? val.font : 12;
-            item.isTransform = false;
-            item.showSelect = false;
-            item.color = val.color ? new SColor(val.color) : new SColor('#000000');
-            item.connect('textSelect', this, this.textSelectChange)
-            this.textItemList.push(item)
-        } else {
-            this.textItemList.splice(index, 1)
-            this.scene?.removeItem(this.textItemList[index]);
-        }
-    }
-
-    /**
      * 返回对象储存的相关数据
      *
      * @return	对象储存的相关数据
      */
     toData(): any {
         if (this.legendData) {
-            const list = this.anchorList.map((item) => {
-                return {
-                    anchorId: item.id,
-                    pos: {
-                        x: item.x,
-                        y: item.y
-                    }
-                }
-            })
-            this.legendData.anchorList = list;
-            // 反馈大小
-            if (this.legendData.size) {
-                this.legendData.size.width = this.sWidth;
-                this.legendData.size.height = this.sHeight
-            } else {
-                this.legendData.size = {
-                    width: this.sWidth,
-                    height: this.sHeight
-                }
-            }
-
             // 位置
             this.legendData.pos = {
                 x: this.x,
                 y: this.y
             };
-            // 存储信息点
-            const infoPoinList: any[] = []
-            this.textItemList.forEach(item => {
-                let obj = Object.assign(item.propertyData, {
-                    pos: { x: item.x, y: item.y },
-                    font: item.font.size,
-                    color: item.color.value
-                })
-                delete obj.currentEquipMsg
-                infoPoinList.push(obj)
-            });
-
-            this.legendData.properties.infoPointList = infoPoinList;
             this.legendData.properties.anotherMsg = this.anotherMsg;
-            this.legendData.style.default.base64Url = "";
-            this.legendData.style.default.url = this.url;
             return this.legendData
         }
     }