YaolongHan 4 lat temu
rodzic
commit
1eabb744ae

+ 1 - 0
package.json

@@ -23,6 +23,7 @@
     "ant-design-vue": "^1.6.5",
     "axios": "^0.20.0",
     "core-js": "^3.6.5",
+    "crypto-js": "^4.0.0",
     "element-ui": "^2.13.2",
     "lodash": "^4.17.20",
     "meri-design": "^1.3.8",

+ 0 - 146
src/components/editClass/big-edit/items/SBaseEquipment copy.ts

@@ -1,146 +0,0 @@
-/*
- * *********************************************************************************************************************
- *
- *          !!
- *        .F88X
- *        X8888Y
- *      .}888888N;
- *        i888888N;        .:!              .I$WI:
- *          R888888I      .'N88~            i8}+8Y&8"l8i$8>8W~'>W8}8]KW+8IIN"8&
- *          .R888888I    .;N8888~          .X8'  "8I.!,/8"  !%NY8`"8I8~~8>,88I
- *            +888888N;  .8888888Y                                  "&&8Y.}8,
- *            ./888888N;  .R888888Y        .'}~    .>}'.`+>  i}!    "i'  +/'  .'i~  !11,.:">,  .~]!  .i}i
- *              ~888888%:  .I888888l      .]88~`1/iY88Ii+1'.R$8$8]"888888888>  Y8$  W8E  X8E  W8888'188Il}Y88$*
- *              18888888    E8888881    .]W%8$`R8X'&8%++N8i,8N%N8+l8%`  .}8N:.R$RE%N88N%N$K$R  188,FE$8%~Y88I
- *            .E888888I  .i8888888'      .:$8I;88+`E8R:/8N,.>881.`$8E/1/]N8X.Y8N`"KF&&FK!'88*."88K./$88%RN888+~
- *            8888888I  .,N888888~        ~88i"8W,!N8*.I88.}888%F,i$88"F88"  888:E8X.>88!i88>`888*.}Fl1]*}1YKi'
- *          i888888N'      I888Y          ]88;/EX*IFKFK88X  K8R  .l8W  88Y  ~88}'88E&%8W.X8N``]88!.$8K  .:W8I
- *        .i888888N;        I8Y          .&8$  .X88!  i881.:%888>I88  ;88]  +88+.';;;;:.Y88X  18N.,88l  .+88/
- *      .:R888888I
- *      .&888888I                                          Copyright (c) 2016-2020.  博锐尚格科技股份有限公司
- *        ~8888'
- *        .!88~                                                                     All rights reserved.
- *
- * *********************************************************************************************************************
- */
-
-import { SGraphItem, SAnchorItem } from "@persagy-web/graph/lib";
-import { Legend } from "./../types/Legend";
-import { SBaseIconTextEdit } from './../../edit/';
-
-/**
- * 编辑基础设备类
- *
- * @author 韩耀龙 <han_yao_long@163.com>
- */
-export class SBaseEquipment extends SBaseIconTextEdit {
-    /** 设备图例 */
-    _legendData: Legend | null = null;
-    set legendData(val) {
-        this._legendData = val;
-        this.initData()
-    }
-    get legendData(): Legend | null {
-        return this._legendData
-    }
-
-    /**
-     * 构造函数
-     *
-     * @param parent    指向父对象
-     * @param data      数据
-     */
-    constructor(parent: SGraphItem | null, data: Legend) {
-        super(parent);
-        this.legendData = data;
-    } // Constructor
-
-    /**
-     * 设置legendData 时 对 item 做设置
-     */
-    initData() {
-        if (!this.legendData) return;
-        if (this.legendData.size) {
-            this.sWidth = this.legendData.size.width;
-            this.sHeight = this.legendData.size.height;
-        }
-        // 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);
-                if (t.id) {
-                    item.id = t.id;
-                }
-                item.moveTo(t.pos.x, t.pos.y);
-                return item;
-            });
-        } else {
-            const anchorPoint = [
-                { x: this.img.x, y: this.img.y, id: "" },
-            ];
-            this.anchorList = anchorPoint.map(t => {
-                let item = new SAnchorItem(this);
-                if (t.id) {
-                    item.id = t.id;
-                }
-                item.moveTo(t.x, t.y);
-                return item;
-            });
-        }
-
-        this.showAnchor = false;
-        this.textItem.text = this.legendData.style.default.text || '';
-        this.textItem.font.size = this.legendData.style.default.font || 12;
-        this.img.url = this.legendData.style.default.url;
-        this.x = this.legendData.pos.x;
-        this.y = this.legendData.pos.y;
-        // 偏移二分之一文本高度
-        this.textItem.moveTo(
-            this.img.width * 0.5,
-            -(this.font.size * 1.25 * 0.5)
-        );
-        this.moveable = true;
-        this.selectable = true;
-    }// Function initData()
-
-    /**
-     * 返回对象储存的相关数据
-     *
-     * @return	对象储存的相关数据
-     */
-    toData(): any {
-        if (this.legendData) {
-            const list = this.anchorList.map((item) => {
-                return {
-                    id: item.id,
-                    pos: {
-                        x: this.x,
-                        y: this.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.style.default.text = this.textItem.text ? this.textItem.text : '';
-            // 文本大小
-            this.legendData.style.default.font = this.font.size;
-            // 位置
-            this.legendData.pos = {
-                x: this.x,
-                y: this.y
-            };
-            return this.legendData
-        }
-    } // Function toData
-
-} // Class SBaseEquipment

+ 21 - 22
src/components/editClass/big-edit/items/SBaseEquipment.ts

@@ -28,7 +28,7 @@ import { SGraphItem, SAnchorItem } from "@persagy-web/graph/lib";
 import { Legend } from "./../types/Legend";
 import { SBaseIconTextEdit, SBaseTextEdit } from './../../edit/';
 import { SColor } from '@persagy-web/draw/lib';
-
+import { svgTobase64 } from "./../until"
 /**
  * 编辑基础设备类
  *
@@ -114,16 +114,15 @@ export class SBaseEquipment extends SBaseIconTextEdit {
 
 
         this.showAnchor = false;
-        // this.textItem.text = this.legendData.style.default.text || '';
-        // this.textItem.font.size = this.legendData.style.default.font || 12;
-        this.img.url = this.legendData.style.default.url;
+        const url = this.legendData.style.default.base64Url ? this.legendData.style.default.base64Url : this.legendData.style.default.url
+        svgTobase64(url).then((res) => {
+            this.img.url = res?res:'';
+        }).catch((res) => {
+            this.img.url = res;
+        })
+
         this.x = this.legendData.pos.x;
         this.y = this.legendData.pos.y;
-        // 偏移二分之一文本高度
-        // this.textItem.moveTo(
-        //     this.img.width * 0.5,
-        //     -(this.font.size * 1.25 * 0.5)
-        // );
         this.moveable = true;
         this.selectable = true;
     }// Function initData()
@@ -174,7 +173,7 @@ export class SBaseEquipment extends SBaseIconTextEdit {
             item.font.size = val.font ? val.font : 12;
             item.isTransform = false;
             item.showSelect = false;
-            item.color = item.color ? new SColor(item.color) : new SColor('#000000');
+            item.color = val.strokeColor ? new SColor(val.strokeColor) : new SColor('#000000');
             item.connect('textSelect', this, this.textSelectChange)
             this.textItemList.push(item)
         } else {
@@ -185,14 +184,6 @@ export class SBaseEquipment extends SBaseIconTextEdit {
     }// Function setTextItem()
 
     /**
-     * 增加 textItem
-     *
-     * @params obj	textItem文本信息
-     */
-    removeTextItem(val: any) {
-        // do something
-    }
-    /**
      * 返回对象储存的相关数据
      *
      * @return	对象储存的相关数据
@@ -219,15 +210,23 @@ export class SBaseEquipment extends SBaseIconTextEdit {
                     height: this.sHeight
                 }
             }
-            // 反馈文本
-            // this.legendData.style.default.text = this.textItem.text ? this.textItem.text : '';
-            // 文本大小
-            this.legendData.style.default.font = this.font.size;
             // 位置
             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,
+                    strokeColor: item.strokeColor.value
+                })
+                infoPoinList.push(obj)
+            })
+            this.legendData.properties.infoPointList = infoPoinList;
+            this.legendData.style.default.base64Url = "";
             return this.legendData
         }
     } // Function toData

+ 3 - 3
src/components/editClass/big-edit/types/ElementData.ts

@@ -35,9 +35,9 @@ import { Relation } from "./Relation";
  */
 export interface ElementData {
     /** 在数据中台有数据的节点 */
-    Nodes: Legend[];
+    nodes: Legend[];
     /** 说明型节点 */
-s: Marker[];
+    markers: Marker[];
     /** 关系类节点 */
-    Relations: Relation[];
+    relations: Relation[];
 } // Interface ElementData

+ 25 - 1
src/components/editClass/big-edit/until.ts

@@ -1,5 +1,6 @@
 //  生成uuid
-
+import axios from "axios";
+import crypto from "crypto-js";
 export function uuid() {
   var s: any[] = [];
   var hexDigits = "0123456789abcdef";
@@ -17,4 +18,27 @@ export function uuid() {
 export function rgbaNum(rgba: string) {
   let val = rgba.match(/(\d(\.\d+)?)+/g);
   return val;
+}
+export function svgTobase64(url: string) {
+  let baseUrl: string = ''
+  return new Promise((relve, res) => {
+    if (url.includes(".svg")) {
+      axios.get(url).then((res) => {
+        if (res.data) {
+          const index = res.data.indexOf('"UTF-8"?>');
+          const str = res.data.substr(index + 9);
+          const a = crypto.enc.Utf8.parse(str);
+          baseUrl =
+            "data:image/svg+xml;base64," + crypto.enc.Base64.stringify(a);
+        }
+        relve(baseUrl)
+      }).catch((err) => {
+        res(err)
+      });
+    } else {
+      baseUrl = url;
+      relve(baseUrl)
+    }
+  })
+
 }

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

@@ -264,7 +264,7 @@ export class SBaseIconTextEdit extends SGraphEdit {
     } // Set font
 
     /** 图像 */
-    img: SBaseImageEdit = new SBaseImageEdit(this, {name: '', pos: {x: 0, y: 0}, type: '', style: {}});
+    img: SBaseImageEdit = new SBaseImageEdit(this);
 
     /** 文本数组 */
     textItemList: SBaseTextEdit[] = [];
@@ -414,7 +414,7 @@ export class SBaseIconTextEdit extends SGraphEdit {
      * @param newSize   改之后大小
     */
     onResize(oldSize: SSize, newSize: SSize) {
-        console.log(arguments);
+        // console.log(arguments);
     } // Function onResize()
 
     /**
@@ -470,7 +470,7 @@ export class SBaseIconTextEdit extends SGraphEdit {
         if (this.status == SItemStatus.Edit || this.selected) {
             // doto 如果子元素被选中
             painter.pen.lineWidth = lw;
-            painter.pen.lineDash = [3*lw, 7*lw];
+            painter.pen.lineDash = [3 * lw, 7 * lw];
             painter.pen.color = SColor.Black;
             painter.brush.color = SColor.Transparent;
             painter.drawRect(rect);
@@ -479,10 +479,10 @@ export class SBaseIconTextEdit extends SGraphEdit {
         if (this.status == SItemStatus.Edit) {
             painter.pen.lineDash = [];
             painter.brush.color = SColor.White;
-            painter.drawCircle(rect.x, rect.y, 5*lw)
-            painter.drawCircle(rect.right, rect.bottom, 5*lw)
-            painter.drawCircle(rect.x, rect.bottom, 5*lw)
-            painter.drawCircle(rect.right, rect.y, 5*lw)
+            painter.drawCircle(rect.x, rect.y, 5 * lw)
+            painter.drawCircle(rect.right, rect.bottom, 5 * lw)
+            painter.drawCircle(rect.x, rect.bottom, 5 * lw)
+            painter.drawCircle(rect.right, rect.y, 5 * lw)
         }
         if (this.isActive) {
             painter.pen.color = SColor.Transparent;

Plik diff jest za duży
+ 31 - 7
src/components/editClass/edit/items/SBaseImageEdit.ts


+ 1 - 0
src/components/editClass/edit/items/SBaseTextEdit.ts

@@ -372,6 +372,7 @@ export class SBaseTextEdit extends SGraphEdit {
      * @return 对象储存的相关数据
      */
     toData(): any {
+        if(!this.data) return;
         if (this.data.size) {
             this.data.size.width = this.width;
             this.data.size.height = this.height;

+ 3 - 3
src/components/editClass/edit/type/ElementData.ts

@@ -35,9 +35,9 @@ import { Relation } from "./Relation";
  */
 export interface ElementData {
     /** 在数据中台有数据的节点 */
-    Nodes: Legend[];
+    nodes: Legend[];
     /** 说明型节点 */
-    Markers: Marker[];
+    markers: Marker[];
     /** 关系类节点 */
-    Relations: Relation[];
+    relations: Relation[];
 } // Interface ElementData

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

@@ -21,13 +21,13 @@ import {
   PTopoParser,
   PTopoView,
 } from "@/components/editClass/persagy-edit";
-// import { SGraphView } from "@persagy-web/graph";
-// import { SFloorParser } from "@persagy-web/big/lib";
+import { SBaseEquipment } from "@/components/editClass/big-edit";
 import topoTooltip from "./topoTooltip.vue";
 import { mapState, mapMutations } from "vuex";
 import base64ToFile from "@/utils/base64ToFile";
 import { v1 as uuidv1 } from "uuid";
 import bus from "@/bus/bus";
+import axios from "axios";
 import {
   saveGroup,
   readGroup,
@@ -36,6 +36,7 @@ import {
   readPubGroup,
 } from "@/api/editer";
 import { publishGraph } from "@/api/home";
+import crypto from "crypto-js/";
 export default {
   components: { topoTooltip },
   data() {
@@ -88,6 +89,8 @@ export default {
       "SETPROJECT",
       "SETCATEGROY",
       "SETISPUB",
+      "ADDEQUIPITEM",
+      "EDITEQUIPITEM",
     ]),
     // 恢复命令状态
     clearCmdStatus() {
@@ -184,9 +187,14 @@ export default {
         this.addEquipmentList(val);
       });
       // 更改设备信息点
-      bus.$off('changeEquipMsgPoint');
+      bus.$off("changeEquipMsgPoint");
       bus.$on("changeEquipMsgPoint", (val) => {
-          this.scene.changeEquipMsgPoint(val)
+        this.scene.changeEquipMsgPoint(val);
+      });
+      // 选中item
+      bus.$off("chioceItem");
+      bus.$on("chioceItem", (item) => {
+        this.scene.toggleItem(item);
       });
     },
     // 读取拓扑图
@@ -224,8 +232,11 @@ export default {
         item.connect("finishCreated", this.scene, this.scene.finishCreated);
         item.connect("onContextMenu", this, this.scene.getItem);
         this.scene.addItem(item);
+        // 如果为设备则存于vuex中便于联动
+        if (item instanceof SBaseEquipment) {
+          this.ADDEQUIPITEM(item);
+        }
       });
-      this.view.fitSceneToView();
     },
     // 保存草稿
     saveTopoDraft() {
@@ -341,9 +352,13 @@ export default {
     addEquipmentList(list) {
       const parse = new PTopoParser();
       list.forEach((item, i) => {
-        const x = (i + 1) * 100;
-        const baseUrl = "/image-service/common/image_get?systemId=dataPlatform&key=";
-        const url = item.url ? baseUrl+ item.url : require("./../../assets/images/equip/lengganji.svg");
+        const x = (i + 1) * 100 + 300;
+        const baseUrl =
+          "/image-service/common/image_get?systemId=dataPlatform&key=";
+        const url = baseUrl + item.url;
+        let svg2Base = "";
+        let EquipHeight = this.canvasHeight - 100;
+
         let data = {
           /** 名称 */
           name: "基础设备",
@@ -358,21 +373,28 @@ export default {
           properties: {
             type: "BaseEquipment",
             classCode: item.classCode, // 设备类型
+            localId: item.localId, // 本地编码
+            localName: item.localName, //本地名称
           },
           style: {
             default: {
               strokecolor: "#c0ccda",
               url: url,
+              base64Url: "",
             },
           },
         };
         parse.addNode(data);
-        parse.nodes.forEach((item) => {
-          item.connect("finishCreated", this.scene, this.scene.finishCreated);
-          item.connect("onContextMenu", this, this.scene.getItem);
-          this.scene.addItem(item);
-        });
-        this.view.fitSceneToView();
+      });
+      // 添加到 scence 中
+      parse.nodes.forEach((item) => {
+        item.connect("finishCreated", this.scene, this.scene.finishCreated);
+        item.connect("onContextMenu", this, this.scene.getItem);
+        this.scene.addItem(item);
+        // 如果为设备则存于vuex中便于联动
+        if (item instanceof SBaseEquipment) {
+          this.ADDEQUIPITEM(item);
+        }
       });
     },
   },

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

@@ -337,12 +337,14 @@ export default {
             this.choiceEquipList = list;
           }
           // // 将选中的设备类存到vuex中
+          console.log('this.choiceEquipList',this.choiceEquipList)
           this.SETEQUIPLIST(this.choiceEquipList);
           bus.$emit("addEquipment", this.choiceEquipList);
           this.$loading.close(this.local2);
           this.modalClose();
         })
         .catch((res) => {
+          console.log(res)
           this.$loading.close(this.local2);
           this.modalClose();
         });

+ 58 - 24
src/components/editview/leftToolBar/equipmentList.vue

@@ -74,33 +74,37 @@
               <el-collapse-transition>
                 <ul @mouseout="deletehover" v-show="item.isShow">
                   <li
-                    @click="getEquipItem('lengganji.svg')"
                     v-for="(a, b) in item.children"
                     :key="b"
                     @mouseover="sethover(index, i, b)"
+                    @click="clickEquipItem(a)"
                   >
                     <div class="left">
                       <div class="showEyes">
                         <Icon
                           v-show="hoverIndex == '' + index + i + b"
-                          name="preview"
+                          :name="a.visible ? 'preview' : 'hide'"
+                          @click="ShowItem(a)"
                         />
                       </div>
                       <div class="icon">
-                        <img
-                          width="28"
-                          height="28"
-                          :src="'http://adm.sagacloud.cn/image-service/common/image_get?systemId=dataPlatform&key=2135465488465400.svg'"
-                          alt=""
-                        />
+                        <img width="28" height="28" :src="a.img.url" alt="" />
                       </div>
                     </div>
                     <div class="right">
-                      <div class="t" :title="a.localName">
-                        {{ a.localName ? a.localName : "--" }}
+                      <div class="t" :title="a.legendData.properties.localName">
+                        {{
+                          a.legendData.properties.localName
+                            ? a.legendData.properties.localName
+                            : "--"
+                        }}
                       </div>
-                      <div class="b" :title="a.localId">
-                        {{ a.localId ? a.localId : "--" }}
+                      <div class="b" :title="a.legendData.properties.localId">
+                        {{
+                          a.legendData.properties.localId
+                            ? a.legendData.properties.localId
+                            : "--"
+                        }}
                       </div>
                     </div>
                     <div class="icons">
@@ -128,6 +132,7 @@
 <script>
 import { mapMutations, mapState } from "vuex";
 import { queryCategory } from "@/api/editer";
+import bus from "@/bus/bus";
 export default {
   data() {
     return {
@@ -150,6 +155,10 @@ export default {
     deletehover() {
       this.hoverIndex = -1;
     },
+    // 是否展示图例
+    ShowItem(a) {
+      a.visible = !a.visible;
+    },
     // 获取设备图例
     getEquipItem(id) {
       const obj = {
@@ -187,19 +196,26 @@ export default {
     changeItem() {},
     pressEnter() {},
     // 获取设备相关的专业以及设备类型
-    getCategory(idList) {
+    getCategory(itemList) {
+      // id 数组
+      const idList = [];
+      itemList.forEach((item) => {
+        idList.push(item.legendData.attachObjectIds[0]);
+      });
+
       queryCategory(idList).then((res) => {
         // 返回专业及其类型,根据类型 添加设备
-        let category = res.content;
+        let category = res.content ? res.content : [];
         category.forEach((item) => {
           item.isShow = true;
           if (item.children && item.children.length) {
             item.children.map((child) => {
               let obj = [];
               child.isShow = true;
-              this.equipmentList.forEach((choiceItem) => {
-                choiceItem.isShow = true;
-                if (choiceItem.classCode == child.aliasCode) {
+              this.equipmentItemList.forEach((choiceItem) => {
+                if (
+                  choiceItem.legendData.properties.classCode == child.aliasCode
+                ) {
                   obj.push(choiceItem);
                 }
               });
@@ -211,21 +227,39 @@ export default {
           }
         });
         this.equipmentTree = category;
+        console.log("category", category);
       });
     },
+    // 点击设备实例
+    clickEquipItem(item) {
+      // 选中 item
+      bus.$emit("chioceItem", item);
+    },
   },
   computed: {
-    ...mapState(["editCmd", "equipmentList"]),
+    ...mapState([
+      "editCmd",
+      "equipmentList",
+      "equipmentItemList",
+      "equipmentItemNum",
+    ]),
   },
   watch: {
     equipmentList: {
       handler: function (val) {
-        if (!val.length) return;
-        const idList = [];
-        val.forEach((item) => {
-          idList.push(item.id);
-        });
-        this.getCategory(idList);
+        // 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);
+        console.log("vvvvvvvvvv", val);
       },
       deep: true,
       immediate: true,

+ 122 - 3
src/components/editview/rightPropertyBar/BaseEquipmentMsg.vue

@@ -1,20 +1,139 @@
 <!-- 设备信息点详情 -->
 <template>
-  <div>设备信息点详情</div>
+  <div id="equip-msg">
+    <div class="title">设备实例本地名称</div>
+    <ul class="msg">
+      <li>
+        <div class="msg-name">全局编码</div>
+        <Input
+          :width="220"
+          v-model="equipId"
+          placeholder="请输入全局编码"
+          @input="boxInput"
+          name="persager"
+          disabled
+          class="msg-input"
+          :title="equipId"
+        />
+      </li>
+      <li>
+        <div class="msg-name">信息点编码</div>
+        <Input
+          :width="220"
+          v-model="msgId"
+          disabled
+          placeholder="请输入信息点编码"
+          @input="boxInput"
+          name="persager"
+          :title="msgId"
+          class="msg-input"
+        />
+      </li>
+      <li>
+        <div class="msg-name">信息点名称</div>
+        <Input
+          :width="220"
+          v-model="msgName"
+          placeholder="请输入信息点名称"
+          @input="boxInput"
+          name="persager"
+          class="msg-input"
+        />
+      </li>
+      <li>
+        <div class="msg-name">数据格式</div>
+        <Input
+          :width="220"
+          v-model="inputVal"
+          placeholder="请输入数据格式"
+          @input="boxInput"
+          name="persager"
+          class="msg-input"
+        />
+      </li>
+      <li>
+        <div class="msg-name">实时值</div>
+        <Input
+          :width="220"
+          v-model="inputVal"
+          placeholder="请输入实时值"
+          @input="boxInput"
+          name="persager"
+          class="msg-input"
+        />
+      </li>
+      <li>
+        <div class="msg-name">单位</div>
+        <Input
+          :width="220"
+          v-model="unit"
+          placeholder="请输入单位"
+          @input="boxInput"
+          name="persager"
+          class="msg-input"
+        />
+      </li>
+    </ul>
+  </div>
 </template>
 <script>
 export default {
   props: ["EquipMsgData"],
   data() {
-    return {};
+    return {
+      inputVal: "",
+      equipId: "", //全局id
+      msgId: "", // 信息点id
+      msgName: "", //信息点名称
+      unit: "", // 信息点的单位
+    };
   },
   mounted() {},
+  methods: {
+    boxInput() {},
+  },
   watch: {
     EquipMsgData(val) {
+      this.equipId = val.currentEquipMsg.attachObjectIds[0];
+      this.msgId = val.id;
+      this.msgName = val.name;
+      this.unit = val.unit ? val.unit : "";
       console.log("EquipMsgData", val);
     },
   },
 };
 </script>
-<style lang="less">
+<style lang="less" scoped>
+ul,
+li,
+p {
+  margin: 0;
+  padding: 0;
+  list-style-type: none;
+}
+#equip-msg {
+  .title {
+    height: 47px;
+    border-bottom: 1px solid #979797;
+    color: #646c73;
+    font-size: 16px;
+    padding-left: 12px;
+    box-sizing: border-box;
+  }
+  .msg {
+    padding: 12px;
+    box-sizing: border-box;
+    li {
+      width: 100%;
+      .msg-name {
+        color: #8d9399;
+        font-size: 16px;
+        margin-bottom: 8px;
+      }
+      .msg-input {
+        margin: 8px 0 16px 0;
+      }
+    }
+  }
+}
 </style>

+ 6 - 1
src/components/editview/rightPropertyBar/property.vue

@@ -107,6 +107,7 @@ export default {
       EquipData: {}, //设备 id
       equipHeight: "", // 设备属性栏得高度
       EquipMsgData: {}, //设备信息点详情数据
+      currentEquipMsg: {}, // 当前设备的信息
     };
   },
   mounted() {
@@ -130,6 +131,7 @@ export default {
       }
       // 对设备做出判断 看是否点入的是设备相关信息点
       if (this.itemType == "BaseEquipment") {
+        this.currentEquipMsg = itemList[0].legendData;
         if (itemList[0].curTextItem) {
           this.itemType = "BaseEquipmentMsg";
         }
@@ -185,7 +187,10 @@ export default {
         }
         this.EquipData = item.legendData;
       } else if (this.itemType == "BaseEquipmentMsg") {
-        this.EquipMsgData = item.curTextItem.propertyData;
+        // 获取信息点信息,同时拼接设备点信息
+        let EquipMsgData = item.curTextItem.propertyData;
+        EquipMsgData.currentEquipMsg = this.currentEquipMsg;
+        this.EquipMsgData = EquipMsgData;
       }
     },
   },

+ 24 - 1
src/store/index.ts

@@ -14,7 +14,9 @@ export default new Vuex.Store({
     categoryId: '',   //类型id 用于读图
     tupoName: '',  //拓扑图名称
     version: "", //版本号
-    equipmentList: []  //图上所有设备数组
+    equipmentList: [],  //图上所有设备数组
+    equipmentItemList: [], // 图上相关的设备实例
+    equipmentItemNum: 0 //图上相关的设备实例的数量
   },
   mutations: {
     // 修改编辑器命令
@@ -45,6 +47,27 @@ export default new Vuex.Store({
     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)
+    },
+    // 删除设备实例 item
+    EDITEQUIPITEM(state): void {
+      // 如果设备实例数组中parent 为null 则删除该数组
+      let arr1 = state.equipmentItemList;
+      if (!arr1.length) return;
+
+      for (var i = 0; i < arr1.length; i++) {
+        if (arr1[i].parent) {
+          arr1.splice(i, 1);
+          i--;//i需要自减,否则每次删除都会讲原数组索引发生变化
+        }
+      };
+      state.equipmentItemList = arr1;
+      state.equipmentItemNum = state.equipmentItemList.length
     }
   },
   actions: {