Prechádzať zdrojové kódy

联调管线接口及其锚点

YaolongHan 4 rokov pred
rodič
commit
1f7b23cdb2

+ 4 - 0
src/api/editer.ts

@@ -46,3 +46,7 @@ export function queryDict(postParams: any): any {
 export function queryEquipMsg(postParams: any): any {
     return httputils.postJson(`/datacenter/object/equip/query`, postParams)
 }
+//  管道列表的获取
+export function queryPipeline(postParams: any): any {
+    return httputils.postJson(`/meiku/pipeline/query`, postParams)
+}

+ 13 - 2
src/components/editClass/big-edit/BigEditFactory.ts

@@ -32,7 +32,7 @@ import {
     SBaseRectEdit,
     SBaseTextEdit
 } from "./../edit/";
-import {Marker, SBaseArrow, SBaseExpainEdit, SBaseArrowPolyEdit, SBaseEquipment, Legend} from "./"
+import { Marker, SBaseArrow, SBaseExpainEdit, SBaseArrowPolyEdit, SBaseEquipment, SBasePipe, Legend, Relation } from "./"
 import { SItemFactory } from "@persagy-web/big"
 
 /**
@@ -137,7 +137,7 @@ export class BigEditFactory extends SItemFactory {
     createBasePolygonArrowEdit(data: Marker): SBaseArrowPolyEdit {
         return new SBaseArrowPolyEdit(null, data);
     } // Function SBaseArrowPolyEdit()
-    
+
     /*
     * 创建基础设备
     *
@@ -148,4 +148,15 @@ export class BigEditFactory extends SItemFactory {
         return new SBaseEquipment(null, data);
     } // Function createBaseEquipment()
 
+    /*
+     * 创建基础管道
+     *
+     * @param data     数据
+     * @return  注释
+     */
+    createBasePipe(data: Relation): SBasePipe {
+        return new SBasePipe(null, data);
+    } // Function createBaseEquipment()
+
+
 } // Class BigEditFactory

+ 13 - 8
src/components/editClass/big-edit/SBaseEditScene.ts

@@ -179,12 +179,10 @@ export class SBaseEditScene extends SGraphEditScene {
     addEuqipment(event: SMouseEvent, legendObj: any): void {
 
         const data = {
-            /** id */
-            id: uuid(),
             /** 名称 */
             name: '基础设备',
             /** 返回物理世界对象 ID 列表 */
-            attachObjectIds: ['Eq1101050029e0adfc41c06f4a4cbd4b1c2c95c3129e'],
+            attachObjectIds: [],
             size: { width: 50, height: 50 },
             /** 图标 (Image),线类型 (Line) */
             type: "Image",
@@ -222,23 +220,30 @@ export class SBaseEditScene extends SGraphEditScene {
      *
      * @param event 鼠标事件
      */
-    addBasePipe(event: SMouseEvent) {
+    addBasePipe(event: SMouseEvent, legendObj: any) {
         const anc = this.clickIsAnchor(event);
         if (anc) {
             const p = anc.mapToScene(0, 0)
             anc.isConnected = true;
             event.x = p.x;
-            event.y = p.y;;
+            event.y = p.y;
         };
         const data = {
-            name: '管道',
+            name: legendObj.name,
+            graphElementId: legendObj.id,
             lineType: '',
+            node1Id: '',
+            node2Id: '',
+            anchor1Id: '',
+            anchor2Id: '',
             pointList: [{ x: event.x, y: event.y }],
             properties: {
                 type: "BasePipe",
             },
             style: {
                 default: {
+                    strokeColor: legendObj.color,
+                    lineWidth: 4
                 }
             }
         };
@@ -251,8 +256,8 @@ export class SBaseEditScene extends SGraphEditScene {
         item.startAnchor = anc;
         if (anc) {
             anc.parent?.connect('changePos', item, item.changePos)
-            item.anchor1ID = anc.id;
-            item.node1Id = anc.parent.id;
+            item.anchor1Id = anc.id;
+            item.node1Id = anc.parent ? anc.parent.id : '';
         }
         item.connect("finishCreated", this, this.finishCreated);
         item.connect("onContextMenu", this, this.getItem);

+ 2 - 4
src/components/editClass/big-edit/items/SBaseEquipment.ts

@@ -74,7 +74,7 @@ export class SBaseEquipment extends SBaseIconTextEdit {
             this.sWidth = this.legendData.size.width;
             this.sHeight = this.legendData.size.height;
         }
-        // this.img.connect("onMove", this, this.changeAnchorPoint.bind(this));
+        this.img.connect("onMove", this, this.changeAnchorPoint.bind(this));
         if (this.legendData.anchorList && this.legendData.anchorList.length) {
             this.anchorList = this.legendData.anchorList.map(t => {
                 let item = new SAnchorItem(this);
@@ -180,7 +180,6 @@ export class SBaseEquipment extends SBaseIconTextEdit {
             this.textItemList.splice(index, 1)
             this.scene?.removeItem(this.textItemList[index]);
         }
-        console.log('setTextItem', this.textItemList)
         // do something
     }// Function setTextItem()
 
@@ -229,8 +228,7 @@ export class SBaseEquipment extends SBaseIconTextEdit {
             });
             this.legendData.properties.infoPointList = infoPoinList;
             this.legendData.style.default.base64Url = "";
-            this.legendData
-            console.log('infoPoinList', this.legendData)
+            this.legendData;
             return this.legendData
         }
     } // Function toData

+ 82 - 34
src/components/editClass/big-edit/items/SBasePipe.ts

@@ -28,8 +28,9 @@ import { SBasePolylineEdit } from './../../edit/';
 import { SGraphItem, SAnchorItem } from "@persagy-web/graph/lib/";
 import { Relation } from "./../types/Relation";
 import { SMouseEvent, } from "@persagy-web/base/lib";
-import { Marker } from '..';
-import { SPoint } from "@persagy-web/draw"
+import { SPoint, SColor } from "@persagy-web/draw";
+import { SLineStyle } from "@persagy-web/graph/";
+
 /**
  * 编辑基础管道
  *
@@ -39,31 +40,39 @@ export class SBasePipe extends SBasePolylineEdit {
     ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
     //属性
     /** 关系型数据 */
-    RelationData: Relation;
+    _relationData: Relation | null = null;
+    set relationData(val) {
+        this._relationData = val;
+        this.initData()
+    } // set legendData()
+    get relationData(): Relation | null {
+        return this._relationData
+    } // get legendData()
+
     /** 起始锚点  */
     startAnchor: SAnchorItem | null = null;
     /** 结束锚点  */
     endAnchor: SAnchorItem | null = null;
     /** 关联锚点1ID  */
-    _anchor1ID: string = "";
-    get anchor1ID(): string {
-        return this._anchor1ID;
+    _anchor1Id: string = "";
+    get anchor1Id(): string {
+        return this._anchor1Id;
     }
-    set anchor1ID(v: string) {
-        this._anchor1ID = v;
-        if (this.data) {
-            this.data.Anchor1ID = this._anchor1ID;
+    set anchor1Id(v: string) {
+        this._anchor1Id = v;
+        if (this.relationData) {
+            this.relationData.anchor1Id = this._anchor1Id;
         }
     }
     /** 关联锚点2ID  */
-    _anchor2ID: string = "";
-    get anchor2ID(): string {
-        return this._anchor2ID;
+    _anchor2Id: string = "";
+    get anchor2Id(): string {
+        return this._anchor2Id;
     }
-    set anchor2ID(v: string) {
-        this._anchor2ID = v;
-        if (this.data) {
-            this.data.Anchor2ID = this._anchor2ID;
+    set anchor2Id(v: string) {
+        this._anchor2Id = v;
+        if (this.relationData) {
+            this.relationData.anchor2Id = this._anchor2Id;
         }
     }
 
@@ -74,8 +83,8 @@ export class SBasePipe extends SBasePolylineEdit {
     }
     set node1Id(v: string) {
         this._node1Id = v;
-        if (this.data) {
-            this.RelationData.node1Id = this._node1Id;
+        if (this.relationData) {
+            this.relationData.node1Id = this._node1Id;
         }
     }
 
@@ -86,8 +95,8 @@ export class SBasePipe extends SBasePolylineEdit {
     }
     set node2Id(v: string) {
         this._node2Id = v;
-        if (this.data) {
-            this.RelationData.node2Id = this._node2Id;
+        if (this.relationData) {
+            this.relationData.node2Id = this._node2Id;
         }
     }
 
@@ -99,21 +108,45 @@ export class SBasePipe extends SBasePolylineEdit {
      */
     constructor(parent: SGraphItem | null, data: Relation) {
         super(parent);
-        this.RelationData = data
-        const markData: Marker = {
-            name: data.name,
-            type: "line",
-            pos: { x: 0, y: 0 },
-            properties: data.properties,
-            style: Object.assign(data.style, {
-                outLine: data.pointList
-            })
-        }
-        markData.style.default.lineType = data.lineType;
-        this.data = markData;
+        this.relationData = data;
+
     } // Constructor
 
     /**
+     * 设置relationData 时 对 item 做设置
+     */
+    initData() {
+        const data = this.relationData;
+        console.log('12313131',data)
+        if (!data) return;
+        // 名称
+        this.name = data.name;
+        // 线样式
+        this.lineStyle = SLineStyle[data.lineType] ? SLineStyle[data.lineType] : SLineStyle.Solid;
+        // 折线点
+        if (data.pointList) {
+            let setPointList: SPoint[];
+            setPointList = data.pointList.map(i => {
+                return new SPoint(i.x, i.y)
+            });
+            this.pointList = setPointList;
+        }
+        // 样式
+        if (data.style && data.style.default) {
+            // 颜色
+            if (data.style.default.strokeColor) {
+                this.strokeColor = new SColor(data.style.default.strokeColor)
+            }
+            // 线宽
+            if (data.style.default.lineWidth) {
+                this.lineWidth = data.style.default.lineWidth
+            }
+        };
+
+    }// Funciton initData
+
+
+    /**
      * 鼠标按下事件
      *
      * @param event   保存事件参数
@@ -151,6 +184,21 @@ export class SBasePipe extends SBasePolylineEdit {
      * @return 相关数据
      */
     toData(): any {
-        return super.toData()
+        this.moveToOrigin();
+        const data = this.relationData;
+        console.log('todata',data)
+        if (!data) return;
+        if (this.pointList.length) {
+            const Line = this.pointList.map(pos => {
+                return {
+                    x: pos.x,
+                    y: pos.y
+                }
+            });
+            data.pointList = Line;
+        }
+        data.style.default.strokeColor = this.strokeColor.value;
+        data.style.default.lineWidth = this.lineWidth;
+        return data
     } // Function toData()
 } // Class SBasePipe

+ 1 - 1
src/components/editClass/big-edit/types/Relation.ts

@@ -46,7 +46,7 @@ export interface Relation {
     /** 关联锚点 1_id */
     anchor1Id?: string;
     /** 关联锚点 2_id */
-    anchor2id?: string;
+    anchor2Id?: string;
     /** 方向(0:无向,1:节点 1 到节点2,2:节点 2 到节点 1) */
     dir?: SRelationDir;
     /** 线类型(0:直线,1:水平/垂直线,2:曲线) */

+ 2 - 2
src/components/editClass/edit/SGraphEditScene.ts

@@ -471,7 +471,7 @@ export class SGraphEditScene extends SGraphScene {
         let len: number = -1;
         this.root.children.forEach(item => {
             if (item instanceof SBaseIconTextEdit && item.anchorList && item.anchorList.length) {
-                if (item.img && item.img instanceof SImageItem) {
+                if (item.img && item.img instanceof SBaseImageEdit) {
                     let scenePoint = item.img.mapFromScene(event.x, event.y);
                     if (item.img.contains(scenePoint.x, scenePoint.y)) {
                         let anchor = item.anchorList[0]
@@ -516,7 +516,7 @@ export class SGraphEditScene extends SGraphScene {
                         this.grabItem.endAnchor = anc;
                         anc.parent?.connect('changePos', this.grabItem, this.grabItem.changePos)
                     }
-                    this.grabItem.anchor2ID = anc.id
+                    this.grabItem.anchor2Id = anc.id
                     this.grabItem.node2Id = anc.parent.id
                     this.grabItem.onMouseDown(event)
                     this.grabItem.status = SItemStatus.Normal;

+ 1 - 1
src/components/editClass/edit/items/SBaseIconTextEdit.ts

@@ -368,7 +368,7 @@ export class SBaseIconTextEdit extends SGraphEdit {
     /**
      * 计算并移动锚点的位置
      */
-    private changeAnchorPoint(): void {
+    changeAnchorPoint(): void {
         // 判断是否有锚点
         if (this.anchorList.length) {
             let anchorPoint = [

+ 5 - 1
src/components/editClass/edit/items/SBasePolylineEdit.ts

@@ -148,7 +148,10 @@ export class SBasePolylineEdit extends SGraphEdit {
      */
     constructor(parent: null | SGraphItem, data: Marker | null = null) {
         super(parent);
-        this.data = data;
+        if (data) {
+            this.data = data;
+        }
+
     } // Constructor
 
     /**
@@ -636,6 +639,7 @@ export class SBasePolylineEdit extends SGraphEdit {
      */
     toData(): any {
         this.moveToOrigin();
+        if (!this.data) return;
         const Line = this.pointList.map(pos => {
             return {
                 x: pos.x,

+ 25 - 2
src/components/editClass/persagy-edit/PTopoParser.ts

@@ -61,7 +61,8 @@ export class PTopoParser extends SParser {
         }
         // 生成遍历关系图例
         if (data.relations && data.relations.length) {
-            data.relations.forEach(() => {
+            data.relations.forEach((item: any) => {
+                this.addRelation(item)
             })
         }
 
@@ -123,5 +124,27 @@ export class PTopoParser extends SParser {
             this.nodes.push(node);
         }
         return node
-    }
+    }//addNode Function()
+
+    /**
+     * 添加生成 Re 实例
+     *
+     * @param data Legend 图例类型数据
+     */
+    addRelation(data: Relation) {
+        let relation = null;
+        console.log('relation',data)
+        if (data.properties && data.properties.type) {
+            switch (data.properties.type) {
+                case "BasePipe":
+                    relation = this.factory.createBasePipe(data)
+                    break;
+            }
+        }
+        console.log('relation',relation)
+        if (relation) {
+            this.relations.push(relation);
+        }
+        return relation
+    }//addNode Function()
 }

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

@@ -1,4 +1,4 @@
-import { SBaseEditScene, SBasePipe,SBaseEquipment } from "./../big-edit";
+import { SBaseEditScene, SBasePipe, SBaseEquipment } from "./../big-edit";
 import { SGraphEdit, SGraphPropertyCommand, } from "./../edit";
 import { SMouseEvent } from "@persagy-web/base/lib";
 import { SGraphSelectContainer, SLineStyle } from "@persagy-web/graph";
@@ -93,12 +93,12 @@ export class PTopoScene extends SBaseEditScene {
             this.clearCmdStatus();
         }
         else if (this.editCmd == "EditBasePipe") {
-            // this.addBasePipe(event);
-            this.addBaseIconTextItem(event)
-            this.clearCmdStatus();
-        } else if (this.editCmd == "EditEuqipment" || this.legendObj) {
-            this.addEuqipment(event, this.legendObj)
+            this.addBasePipe(event, this.legendObj);
             this.clearCmdStatus();
+        } else if (this.editCmd == "EditEuqipment") {
+            // 设备暂时不需要命令添加
+            // this.addEuqipment(event)
+            // this.clearCmdStatus();
         }
         else if (this.editCmd == "") {
             super.onMouseDown(event);
@@ -160,11 +160,11 @@ export class PTopoScene extends SBaseEditScene {
      * 修改指定设备得信息点
      * @param obj Object 信息点
      */
-    changeEquipMsgPoint(obj:any):void{
-       const List = this.selectContainer.itemList.length ? this.selectContainer.itemList[0]:null;
-       if(List && List instanceof SBaseEquipment){
-           List.setMsgPoint(obj);
-       }
+    changeEquipMsgPoint(obj: any): void {
+        const List = this.selectContainer.itemList.length ? this.selectContainer.itemList[0] : null;
+        if (List && List instanceof SBaseEquipment) {
+            List.setMsgPoint(obj);
+        }
     }
 
     /**
@@ -232,7 +232,7 @@ export class PTopoScene extends SBaseEditScene {
         if (!this.view) return;
         const Marktype: string[] = ['BasePolygon', 'BaseLine', 'BaseText', 'BaseExplain', 'BaseImage', 'BaseCircle', 'BaseArrow', 'BaseTriangle', 'BaseRect', 'BaseArrowPolygon'];
         const NodeType: string[] = ['BaseEquipment'];
-        const RelationType: string[] = [];
+        const RelationType: string[] = ["BasePipe"];
         const markers: any = [];   /**图例节点 */  // 与工程信息无关的标识对象(增加文本注释,图上的图片说明)
         const nodes: any = [];   /**图例节点 */  // 与工程信息无关的标识对象(增加文本注释,图上的图片说明)
         const relations: any = [];   /**图例节点 */  // 与工程信息无关的标识对象(增加文本注释,图上的图片说明)
@@ -251,7 +251,7 @@ export class PTopoScene extends SBaseEditScene {
                 if (item.legendData && NodeType.includes(item.legendData.properties.type)) {
                     nodes.push(item.toData())
                 }
-                if (item.relationData && RelationType.includes(item.data.properties.type)) {
+                if (item.relationData && RelationType.includes(item.relationData.properties.type)) {
                     relations.push(item.toData())
                 }
             }

+ 6 - 0
src/components/editview/baseTopoEditer.vue

@@ -243,6 +243,12 @@ export default {
           this.ADDEQUIPITEM(item);
         }
       });
+      parse.relations.forEach((item) => {
+        console.log('iiiitem',item)
+        item.connect("finishCreated", this.scene, this.scene.finishCreated);
+        item.connect("onContextMenu", this, this.scene.getItem);
+        this.scene.addItem(item);
+      });
     },
     // 生成快照并保存草稿
     saveTopoDraft() {

+ 0 - 2
src/components/editview/leftToolBar/addItemModel.vue

@@ -196,7 +196,6 @@ export default {
     };
   },
   methods: {
-    ...mapMutations(["SETEQUIPLIST"]),
     // 筛选设备
     changeEquip(list) {
       const classCode = []; // 设备类型
@@ -337,7 +336,6 @@ export default {
           }
           // // 将选中的设备类存到vuex中
           console.log("this.choiceEquipList", this.choiceEquipList);
-          this.SETEQUIPLIST(this.choiceEquipList);
           bus.$emit("addEquipment", this.choiceEquipList);
           this.$loading.close(this.local2);
           this.modalClose();

+ 0 - 13
src/components/editview/leftToolBar/equipmentList.vue

@@ -239,7 +239,6 @@ export default {
           }
         });
         this.equipmentTree = category;
-        console.log("category", category);
       });
     },
     // 点击设备实例
@@ -251,23 +250,11 @@ export default {
   computed: {
     ...mapState([
       "editCmd",
-      "equipmentList",
       "equipmentItemList",
       "equipmentItemNum",
     ]),
   },
   watch: {
-    equipmentList: {
-      handler: function (val) {
-        // if (!val.length) return;
-        // const idList = [];
-        // val.forEach((item) => {
-        //   idList.push(item.id);
-        // });
-      },
-      deep: true,
-      immediate: true,
-    },
     equipmentItemNum: {
       handler: function (val) {
         this.getCategory(this.equipmentItemList);

+ 0 - 1
src/components/editview/leftToolBar/legendList.vue

@@ -23,7 +23,6 @@ import pipeList from "./pipeList.vue";
 import equipmentList from "./equipmentList.vue";
 import addItemModel from "./addItemModel.vue";
 import addBaseItem from "./addBaseItem.vue";
-import { mapMutations, mapState } from "vuex";
 export default {
   components: { pipeList, equipmentList, addItemModel, addBaseItem },
   props: ["chiceStatus"],

+ 45 - 12
src/components/editview/leftToolBar/pipeList.vue

@@ -7,38 +7,70 @@
       v-model="baseItemVal"
       @pressEnter="pressEnter"
     />
-    <ul class="type">
+    <ul class="type" v-for="(item, key) in pipeList" :key="key">
       <li class="type-item">
-        <div class="type-title">
+        <div class="type-title" @click="collapse(item)">
           <i class="el-icon-caret-bottom"></i>
-          <span>空调水</span>
+          <span>{{ item.name }}</span>
         </div>
-        <ul class="itemList">
-          <li @click="getPipe">
-            <div></div>
-            <span>冷/热水供水管</span>
-          </li>
-        </ul>
+        <el-collapse-transition>
+          <ul class="itemList" v-show="item.showchild">
+            <li
+              v-for="(a, b) in item.categoryList"
+              :key="b"
+              @click="getPipe(a)"
+            >
+              <div :style="'background:' + a.color"></div>
+              <span>{{ a.name }}</span>
+            </li>
+          </ul>
+        </el-collapse-transition>
       </li>
     </ul>
   </div>
 </template>
 <script>
 import { mapMutations } from "vuex";
+import { queryPipeline } from "@/api/editer";
+
 export default {
   data() {
-    return {};
+    return {
+      baseItemVal: "",
+      pipeList: [],
+    };
   },
   methods: {
     ...mapMutations(["SETCHOICELEHEND", "SETLEGENDOBJ"]),
     // 获取管道
-    getPipe() {
-      // this.SETLEGENDOBJ(obj);
+    getPipe(item) {
+      this.SETLEGENDOBJ(item);
       const cmd = "EditBasePipe";
       this.SETCHOICELEHEND(cmd);
     },
+    pressEnter() {},
+    // 折叠面板
+    collapse(item) {
+      item.showchild = !item.showchild;
+    },
+    // 获取管道数据
+    getPipeList() {
+      queryPipeline().then((res) => {
+        this.pipeList = [];
+        if (res.content && res.total) {
+          this.pipeList = res.content.map((item) => {
+            item.showchild = true;
+            return item;
+          });
+        }
+        console.log(" item.showchild", this.pipeList);
+      });
+    },
   },
   mounted() {},
+  created() {
+    this.getPipeList();
+  },
 };
 </script>
 <style lang="less" scoped>
@@ -57,6 +89,7 @@ li {
     .type-item {
       .type-title {
         margin: 12px 0 14px 0;
+        cursor: pointer;
         span {
           width: 14px;
           color: #1f2429;

+ 2 - 2
src/components/editview/rightPropertyBar/BaseEquipmentMsg.vue

@@ -20,12 +20,12 @@
         <div class="msg-name">信息点编码</div>
         <Input
           :width="220"
-          v-model="msgId"
+          v-model="id"
           disabled
           placeholder="请输入信息点编码"
           @input="boxInput('id')"
           name="persager"
-          :title="msgId"
+          :title="id"
           class="msg-input"
         />
       </li>

+ 1 - 8
src/store/index.ts

@@ -14,7 +14,6 @@ export default new Vuex.Store({
     categoryId: '',   //类型id 用于读图
     tupoName: '',  //拓扑图名称
     version: "", //版本号
-    equipmentList: [],  //图上所有设备数组
     equipmentItemList: [], // 图上相关的设备实例
     equipmentItemNum: 0 //图上相关的设备实例的数量
   },
@@ -43,16 +42,10 @@ export default new Vuex.Store({
       state.tupoName = val.name;  //拓扑图名称
       state.version = val.version; //版本号
     },
-    // 设置设备 list
-    SETEQUIPLIST(state, val) {
-      let arr1 = state.equipmentList;
-      state.equipmentList = arr1.concat(val)
-    },
     // 增加设备实例 item
     ADDEQUIPITEM(state, item): void {
       state.equipmentItemList.push(item);
-      state.equipmentItemNum = state.equipmentItemList.length
-      console.log(state.equipmentItemList)
+      state.equipmentItemNum = state.equipmentItemList.length;
     },
     // 删除设备实例 item
     EDITEQUIPITEM(state): void {

+ 5 - 0
vue.config.js

@@ -21,6 +21,11 @@ module.exports = {
                 changeOrigin: true,
                 secure: false,
             },
+            '/equip-componnet': {
+                target: 'http://39.102.40.239:8080',
+                changeOrigin: true,
+                secure: false,
+            },
             // 图片服务器
             '/image-service': {
                 target: 'http://adm.sagacloud.cn',