yunxing 4 年之前
父節點
當前提交
2f378e44a0

+ 2 - 2
package.json

@@ -9,10 +9,10 @@
   },
   "dependencies": {
     "@saga-web/base": "2.1.22",
-    "@saga-web/big": "1.0.56",
+    "@saga-web/big": "1.0.61",
     "@saga-web/draw": "2.1.100",
     "@saga-web/feng-map": "1.0.15",
-    "@saga-web/graph": "2.1.94",
+    "@saga-web/graph": "2.1.98",
     "ant-design-vue": "^1.6.0",
     "core-js": "^3.6.4",
     "element-ui": "^2.13.2",

二進制
src/assets/equipment/001.png


二進制
src/assets/equipment/002.png


二進制
src/assets/equipment/003.png


二進制
src/assets/equipment/004.png


+ 121 - 3
src/components/baseEditer.vue

@@ -20,6 +20,8 @@ import { SPainter, SColor, SFont, SPoint } from "@saga-web/draw";
 import store from "../store";
 import { Loading } from "element-ui";
 import { Message } from "element-ui";
+import { SEquipParser } from "../../../sagacloud-web/saga-web-big/src";
+import { SEquipmentParser } from "../lib/parsers/SEquipmentParser";
 let fengmap = null;
 //// 底图空间增加字段 isExtracted:boolean true 已被提取过
 export default {
@@ -235,17 +237,124 @@ export default {
         getBus() {
             // 添加设备
             bus.$on("addEquip", () => {
+                console.log(11111);
                 // console.log("addEquip");
-                console.log('get bus addEquip')
+                console.log("get bus addEquip");
                 console.log(event);
-                this.scene.addEquipment(event);
+                const parserData = new SEquipmentParser(null);
+                //  14d978b7edd346f088d6cfb53ada4070`;  //冷冻泵
+                //  4fde075cdafe4e4ea46e876276feab9d`;  //水冷螺杆机组
+                //  4aa6051e025d4193a776a5b2d2604ed8 //冷却塔1
+                //  ece9f93ffc754035bcec2e8f27d66a59 //冷却塔2
+                let Nodes = [
+                    {
+                        ID: "", // ID
+                        id2: "",
+                        Name: "1#冷冻泵", // 名称
+                        AttachObjectIds: ["Eq001", "Eq002"], // 返回工程信息化对象 ID 列表
+                        Pos: { X: 1770, Y: 1288 }, // 位置
+                        Size: { Width: 0, Height: 0 }, // 大小
+                        InfoList: [
+                            {
+                                Code: "", // 对应设备的信息点
+                                Name: "温度", //信息点名称
+                                X: 770,
+                                Y: 288,
+                                Width: 100,
+                                Height: 25,
+                                FontSize: 12,
+                                Background: "#000000",
+                                TextAlign: "",
+                                Color: "#FFFFFF"
+                            },
+                            {
+                                Code: "", // 对应设备的信息点
+                                Name: "湿度", //信息点名称
+                                X: 770,
+                                Y: 288,
+                                Width: 100,
+                                Height: 25,
+                                FontSize: 12,
+                                Background: "#000000",
+                                TextAlign: "",
+                                Color: "#FFFFFF"
+                            }
+                        ],
+                        Properties: {
+                            StatusImage: [
+                                {
+                                    Status: "Running", // 运行
+                                    ImageKey: "14d978b7edd346f088d6cfb53ada4070"
+                                },
+                                {
+                                    Status: "Stop", // 停止
+                                    ImageKey: ""
+                                },
+                                {
+                                    Status: "Selected", // 选择
+                                    ImageKey: ""
+                                },
+                                {
+                                    Status: "Warning", // 报警
+                                    ImageKey: ""
+                                }
+                            ]
+                        } // 由应用自己定义
+                    },
+                    {
+                        ID: "", // ID
+                        Name: "2#冷冻泵", // 名称
+                        AttachObjectIds: ["Eq001", "Eq002"], // 返回工程信息化对象 ID 列表
+                        Pos: { X: 2770, Y: 2288 },
+                        Size: { Width: 0, Height: 0 }, // 大小
+                        AnchorList: [
+                            {
+                                ID: "", // 锚点ID
+                                Pos: "" // 锚点的坐标
+                            }
+                        ],
+                        OutLine: [
+                            [{ X: 0, Y: 0, Z: 0 }] // 外轮廓
+                            // 内轮廓
+                        ], // 轮廓线
+                        InfoList: [
+                            {
+                                Code: "", // 对应设备的信息点
+                                Name: "2#冷冻泵", //信息点名称
+                                X: 516,
+                                Y: 347,
+                                Width: 100,
+                                Height: 25,
+                                FontSize: 12,
+                                Background: "#000000",
+                                TextAlign: "",
+                                Color: "#FFFFFF"
+                            }
+                        ],
+                        Properties: {
+                            StatusImage: [
+                                {
+                                    Status: "Running", // 运行
+                                    ImageKey: "4fde075cdafe4e4ea46e876276feab9d"
+                                }
+                            ]
+                        } // 由应用自己定义
+                    }
+                ];
+                parserData.parseData(Nodes);
+                parserData.equipmentItem.map(item => {
+                    this.scene.addItem(item);
+                });
+                // this.scene.addEquipment(event);
             });
             // TODO: 修改底图
             bus.$on("changeImgUrl", val => {
                 window.vm = this;
                 let url = "/serve/topology-wanda/Picture/query/" + val;
+                console.log(url);
                 this.scene.setBackgroundImgItem(url);
-                this.view.fitSceneToView();
+                // 通过监听 scene.bgImg来适配到页面上
+                // this.view.fitSceneToView();
             });
             bus.$on("changeText", val => {
                 this.scene.updatedText(val);
@@ -318,6 +427,9 @@ export default {
                     message: "上传中,切勿关闭窗口!",
                     type: "warning"
                 });
+                console.log("%c========", "color:blue");
+                console.log(data);
+                return true;
                 saveGroup(data)
                     .then(res => {
                         Message.close();
@@ -508,6 +620,12 @@ export default {
             },
             deep: true
         },
+        // 背景图加载完成后,屏幕适配
+        "scene.bgImg": {
+            handler(v) {
+                this.view.fitSceneToView();
+            }
+        },
         // 监听scale的变化
         "view.scale": {
             handler(scale) {

+ 10 - 4
src/components/edit/left_toolbar.vue

@@ -32,7 +32,9 @@
             </li>
         </ul>
         <ul class="list1">
-            <Button @click="addEquip">添加设备</Button>
+            <Button @click="addEquip(1)">添加设备</Button>
+            <hr />
+            <Button @click="addEquip(2)">加载设备</Button>
         </ul>
         <!--    提取-->
         <ul class="list-2 border-top">
@@ -257,10 +259,14 @@ export default {
     },
     methods: {
         // 添加设备
-        addEquip() {
+        /**
+         * @param type 1添加设备 ,2:加载设备
+         */
+        addEquip(type) {
+            // TODO: 画设备图例
             // 画设备图例
-            this.$emit("setCmdType", "equipment");
-            // bus.$emit("addEquip", event);
+            type === 1 && this.$emit("setCmdType", "equipment");
+            type === 2 && bus.$emit("addEquip", event);
         },
         // 触入
         mouseoverActive(item) {

+ 19 - 3
src/components/mapClass/EditScence.ts

@@ -63,6 +63,8 @@ export class EditScence extends SGraphScene {
     }
     /** 背景图像对象 */
     private backgroundImgItem: SImageItem | null = null;
+    /** 背景图像是否加载完成 */
+    private bgImg: boolean = false;
     /** 设备对象 */
     private equipmentItem: SEquipmentItem | null = null;
 
@@ -1094,12 +1096,15 @@ export class EditScence extends SGraphScene {
      */
     setBackgroundImgItem(url: string): void {
         let imgItem = new SImageItem(null);
+        imgItem.connect("imgLoadOver", this, ()=>{
+            this.bgImg = true;
+        });
         if (this.backgroundImgItem) {
             this.backgroundImgItem.parent = null;
         }
         this.backgroundImgItem = imgItem;
-        imgItem.showType = SImageShowType.AutoFit;
         imgItem.url = url;
+        imgItem.showType = SImageShowType.AutoFit;
         console.log(url);
         imgItem.zOrder = -1000;
         this.addItem(imgItem);
@@ -1110,9 +1115,20 @@ export class EditScence extends SGraphScene {
      * @param
      */
     addEquipment(event: SMouseEvent): void {
-        let equipmentItem = new SEquipmentItem(null, { 名称: "设备1", 温度: "25℃" });
-        // equipmentItem.moveable = true;
+        // this.img.url = `http://localhost:8091/serve/topology-wanda/Picture/query/
+        /*  //  14d978b7edd346f088d6cfb53ada4070`;  //冷冻泵
+        //  4fde075cdafe4e4ea46e876276feab9d`;  //水冷螺杆机组
+        //  4aa6051e025d4193a776a5b2d2604ed8 //冷却塔1
+        //  ece9f93ffc754035bcec2e8f27d66a59 //冷却塔2
+        */
+
+        let equipmentItem = new SEquipmentItem(null, {
+            名称: "设备1",
+            温度: "25℃",
+        });
+        console.log(event.x, event.y);
         equipmentItem.moveTo(event.x, event.y);
+        equipmentItem.imgKey = "4aa6051e025d4193a776a5b2d2604ed8";
         this.addItem(equipmentItem);
         this.grabItem = equipmentItem;
         this.focusItem = equipmentItem;

+ 22 - 11
src/lib/items/SEquipmentItem.ts

@@ -2,28 +2,41 @@ import { SObjectItem, SImageItem, SGraphItem, STextItem } from "@saga-web/graph/
 import { ItemOrder } from "@saga-web/big/lib";
 import { SColor, SPainter, SRect } from "@saga-web/draw/lib";
 import { SMouseEvent } from "@saga-web/base/lib";
+import { EquipmentData } from "../types/EquipmentData";
 export class SEquipmentItem extends SObjectItem {
     // img对象
     img: SImageItem = new SImageItem(this);
     textArr: STextItem[] = [];
+    /** imgkey值 */
+    _imgKey: string = "";
+    get imgKey(): string {
+        return this._imgKey;
+    }
+    set imgKey(v: string) {
+        this._imgKey = v;
+        this.img.url = `http://localhost:8091/serve/topology-wanda/Picture/query/${v}`;
+        this.update();
+    }
     /**
      *
      * @param parent 父类
      * @param textInfo  需要展示的节点信息
      */
-    constructor(parent: SGraphItem | null, textInfo?: object) {
+    constructor(parent: SGraphItem | null, textInfo?: EquipmentData) {
         super(parent);
         console.log(textInfo);
-        // this.img.url = `http://adm.sagacloud.cn:8080/doc/assets/img/logo.png`;
-        this.img.url = `http://localhost:8091/serve/topology-wanda/Picture/query/1bf10f5d64aa41ffb136757f3b96f9d1`;
-        this.img.width = 50;
-        this.img.height = 50;
-        this.width = 100;
-        this.height = 100;
-
-        this.moveable = false;
+        this.img.url = `http://localhost:8091/serve/topology-wanda/Picture/query/14d978b7edd346f088d6cfb53ada4070`;
+        this.img.width = 24;
+        this.img.height = 24;
+        this.moveable = true;
         this.zOrder = ItemOrder.textOrder;
         this.textArr = [];
+        /*  if (textInfo) {
+            let x = textInfo.Pos.X;
+            let y = textInfo.Pos.Y;
+            this.x = x;
+            this.y = y;
+        } */
         // 有信息点信息时,绘制信息点信息
         if (textInfo) {
             let index = 0;
@@ -32,8 +45,6 @@ export class SEquipmentItem extends SObjectItem {
                 textItem.moveable = true;
                 textItem.backgroundColor = SColor.White;
                 textItem.font.size = 14;
-                // 偏移二分之一文本高度
-                // textItem.moveTo(17, -(textItem.height * 0.5));
                 textItem.moveTo(17, index * 20 - 10);
                 // @ts-ignore
                 textItem.text = `${key} : ${textInfo[key]}`;

+ 26 - 0
src/lib/parsers/SEquipmentParser.ts

@@ -0,0 +1,26 @@
+import { SParser } from "@saga-web/big/lib";
+import { SEquipmentItem } from "../items/SEquipmentItem";
+import { EquipmentData } from "../types/EquipmentData";
+
+/**
+ * 设备信息解析器
+ */
+export class SEquipmentParser extends SParser {
+    /** 设备list   */
+    equipmentItem: SEquipmentItem[] = [];
+    /**
+     * 解析数据
+     *
+     * @param   data    设备数据
+     * */
+    parseData(data: EquipmentData[]): void {
+        if (data) {
+            data.map((t: EquipmentData): void => {
+                let eqItem = new SEquipmentItem(null, t);
+                this.equipmentItem.push(eqItem);
+            });
+        }
+    } // Function parseData()
+
+    // private addEquipment(): void {} // Function addEquipment()
+} // class SEquipmentParser

+ 43 - 0
src/lib/types/EquipmentData.ts

@@ -0,0 +1,43 @@
+/**
+ * 系统图数据接口
+ *
+ * @author
+ */
+// 大小
+interface Size {
+    Width: number;
+    Height: number;
+}
+// 信息点信息
+interface Info {
+    Code: string; // 对应设备的信息点
+    Name: string; //信息点名称
+    X: string;
+    Y: string;
+    Width: number;
+    Height: number;
+    FontSize: number;
+    Background: string;
+    TextAlign: string;
+    Color: string;
+}
+// 图标状态信息
+interface StatusImage {
+    Status: string; // 运行
+    ImageKey: string;
+}
+export interface EquipmentData {
+    ID: string;
+    Name: string; // 名称
+    AttachObjectIds: string[]; // 返回工程信息化对象 ID 列表
+    Pos: {
+        // 位置
+        X: number;
+        Y: number;
+    };
+    Size: Size; // 大小
+    InfoList: Info[];
+    Properties?: {
+        StatusImage?: StatusImage[];
+    };
+} // Interface ElementData