瀏覽代碼

信息点

YaolongHan 4 年之前
父節點
當前提交
661438e710

+ 4 - 4
package.json

@@ -16,11 +16,11 @@
   },
   },
   "dependencies": {
   "dependencies": {
     "@persagy-web/base": "2.2.1",
     "@persagy-web/base": "2.2.1",
-    "@persagy-web/big": "2.2.38",
+    "@persagy-web/big": "2.2.43",
     "@persagy-web/draw": "2.2.10",
     "@persagy-web/draw": "2.2.10",
-    "@persagy-web/graph": "2.2.37",
-    "@persagy-web/big-edit": "2.2.14",
-    "@persagy-web/edit": "2.2.12",
+    "@persagy-web/graph": "2.2.40",
+    "@persagy-web/big-edit": "2.2.22",
+    "@persagy-web/edit": "2.2.20",
     "@types/uuid": "^8.0.0",
     "@types/uuid": "^8.0.0",
     "ant-design-vue": "^1.6.5",
     "ant-design-vue": "^1.6.5",
     "axios": "^0.20.0",
     "axios": "^0.20.0",

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

@@ -0,0 +1,58 @@
+/*
+ * *********************************************************************************************************************
+ *
+ *          !!
+ *        .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 { 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 { SLineStyle } from "@persagy-web/graph"
+import { BigEditFactory, Legend, Marker, Relation, ElementData } from "@persagy-web/big-edit"
+/**
+ * item 创建工厂
+ *
+ * @author 韩耀龙 <han_yao_long@163.com>
+ */
+export class PTopoFactory extends BigEditFactory {
+
+    /**
+     * 构造函数
+     */
+    constructor() {
+        super()
+    }
+
+    /**
+     * 创建信息点
+     *
+     * @param data  数据
+     * @return 线
+     */
+    createBaseInfoPoint(data: Marker): SBaseInfoPoint {
+        const item = new SBaseInfoPoint(null,data);
+        item.data = data;
+        return item;
+    }
+}

+ 7 - 3
src/components/editClass/persagy-edit/PTopoParser.ts

@@ -23,8 +23,9 @@
  *
  *
  * ****/
  * ****/
 
 
-import { SParser ,ItemOrder} from '@persagy-web/big/lib';
+import { SParser, ItemOrder } from '@persagy-web/big/lib';
 import { BigEditFactory, Legend, Marker, Relation, ElementData } from "@persagy-web/big-edit"
 import { BigEditFactory, Legend, Marker, Relation, ElementData } from "@persagy-web/big-edit"
+import {PTopoFactory} from "./PTopoFactory"
 
 
 /**
 /**
  * 拓扑图解析器
  * 拓扑图解析器
@@ -38,9 +39,9 @@ export class PTopoParser extends SParser {
     markers: any = [];
     markers: any = [];
     /**  管线对象 */
     /**  管线对象 */
     relations: any = [];
     relations: any = [];
-    factory:BigEditFactory = new BigEditFactory()
+    factory: PTopoFactory = new PTopoFactory()
     constructor() {
     constructor() {
-        super(new BigEditFactory());
+        super(new PTopoFactory());
     }
     }
 
 
     /**
     /**
@@ -103,6 +104,9 @@ export class PTopoParser extends SParser {
                 case "BasePolygon":
                 case "BasePolygon":
                     this.markers.push(this.factory.createBasePolygonEdit(data));
                     this.markers.push(this.factory.createBasePolygonEdit(data));
                     break;
                     break;
+                case "InfoPoint":
+                    this.markers.push(this.factory.createBaseInfoPoint(data));
+                    break;
                 case "BaseArrowPolygon":
                 case "BaseArrowPolygon":
                     this.markers.push(this.factory.createBasePolygonArrowEdit(data));
                     this.markers.push(this.factory.createBasePolygonArrowEdit(data));
             }
             }

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

@@ -436,7 +436,7 @@ export class PTopoScene extends SBaseEditScene {
      */
      */
     save(isAll: boolean = true) {
     save(isAll: boolean = true) {
         if (!this.view) return;
         if (!this.view) return;
-        const Marktype: string[] = ['BasePolygon', 'BaseLine', 'BaseText', 'BaseExplain', 'BaseImage', 'BaseCircle', 'BaseArrow', 'BaseTriangle', 'BaseRect', 'BaseArrowPolygon'];
+        const Marktype: string[] = ['BasePolygon', 'BaseLine', 'BaseText', 'BaseExplain', 'BaseImage', 'BaseCircle', 'BaseArrow', 'BaseTriangle', 'BaseRect', 'BaseArrowPolygon','InfoPoint'];
         const NodeType: string[] = ['BaseEquipment'];
         const NodeType: string[] = ['BaseEquipment'];
         const RelationType: string[] = ["BasePipe"];
         const RelationType: string[] = ["BasePipe"];
         const markers: any = [];   /**图例节点 */  // 与工程信息无关的标识对象(增加文本注释,图上的图片说明)
         const markers: any = [];   /**图例节点 */  // 与工程信息无关的标识对象(增加文本注释,图上的图片说明)

+ 9 - 0
src/components/editClass/persagy-edit/items/SBaseInfoPoint.ts

@@ -46,4 +46,13 @@ export class SBaseInfoPoint extends SBaseTextEdit {
         super(parent, data);
         super(parent, data);
         this.data = data;
         this.data = data;
     } // Constructor
     } // Constructor
+
+    /**
+     * 返回对象储存的相关数据
+     *
+     * @return 相关数据
+     */
+    toData(): any {
+        return super.toData();
+    }
 }
 }

+ 218 - 0
src/components/editview/rightPropertyBar/InfoPoint.vue

@@ -0,0 +1,218 @@
+<!-- 通用信息点 -->
+
+<template>
+  <div class="InfoPoint">
+    <div class="title">通用信息点</div>
+    <el-form
+      label-position="top"
+      label-width="120px"
+      :model="formLabelAlign"
+      :rules="rules"
+      ref="infopointform"
+    >
+      <el-form-item label="全局编码" prop="EqId">
+        <el-input
+          @keyup.enter.native="submitForm"
+          @blur="submitForm"
+          v-model="formLabelAlign.EqId"
+        ></el-input>
+      </el-form-item>
+      <el-form-item label="设备类型(classCode)" prop="classCode">
+        <el-input
+          @keyup.enter.native="submitForm"
+          @blur="submitForm"
+          v-model="formLabelAlign.classCode"
+        ></el-input>
+      </el-form-item>
+      <el-form-item label="信息点编码(code)" prop="code">
+        <el-input
+          @keyup.enter.native="submitForm"
+          @blur="submitForm"
+          v-model="formLabelAlign.code"
+        ></el-input>
+      </el-form-item>
+      <el-form-item label="信息点名称" @blur="changeText" v-show="InfoItem &&InfoItem.data.properties.infoData">
+        <el-input v-model="formLabelAlign.subName"></el-input>
+      </el-form-item>
+    </el-form>
+  </div>
+</template>
+<script>
+import bus from "@/bus/bus";
+import { queryDict } from "@/api/editer";
+export default {
+  data() {
+    return {
+      text: "", //文本
+      formLabelAlign: {
+        EqId: "", //全局code(设备id)
+        classCode: "", //设备类型
+        code: "", //信息点编码
+        subName: "",
+      },
+      rules: {
+        // 校验规则
+        EqId: [{ required: true, message: "请输入全局编码", trigger: "blur" }],
+        classCode: [
+          { required: true, message: "请输入设备类型", trigger: "blur" },
+        ],
+        code: [
+          { required: true, message: "请输入信息点编码", trigger: "blur" },
+        ],
+      },
+      InfoItem: null, //信息点实例
+    };
+  },
+  methods: {
+    // 改变文字
+    changeText(val) {
+      bus.$emit("updateStyle", "text", val);
+    },
+    // 提交表单
+    submitForm() {
+      this.$refs["infopointform"].validate((valid) => {
+        if (valid) {
+          // 请求信息
+          this.queryMsg();
+        } else {
+          this.$message.error("信息点参数请求失败!");
+          return false;
+        }
+      });
+    },
+    // 请求公共信息点
+    queryMsg() {
+      const data = {
+        filters: `classCode = '${this.formLabelAlign.classCode}';code = '${this.formLabelAlign.code}'`,
+      };
+      queryDict(data).then((res) => {
+        if (res && res.content && res.content.length) {
+          this.formLabelAlign.subName = res.content[0].aliasName;
+          this.changeText(this.formLabelAlign.subName);
+          // 获取到信息点信息存入实例中的infoData字段
+          if (this.InfoItem) {
+            this.InfoItem.data.properties.infoData = Object.assign(
+              res.content[0],
+              {
+                equipId: this.formLabelAlign.EqId,
+              }
+            );
+          }
+        } else {
+          this.changeText("信息点");
+          if (this.InfoItem) {
+            if (this.InfoItem.data.properties.infoData) {
+              this.$delete(this.InfoItem.data.properties, "infoData");
+              console.log("this.InfoItem.data.properties",this.InfoItem.data.properties);
+            }
+          }
+        }
+      });
+    },
+    // 获取到信息点
+    emitChoice(itemList) {
+      let itemType = null;
+      this.formLabelAlign.EqId = "";
+      this.formLabelAlign.classCode = "";
+      this.formLabelAlign.code = "";
+
+      this.InfoItem = null;
+      if (itemList.length == 1) {
+        const data = itemList[0].data
+          ? itemList[0].data
+          : itemList[0].legendData
+          ? itemList[0].legendData
+          : itemList[0].relationData
+          ? itemList[0].relationData
+          : null;
+        itemType = data.properties.type ? data.properties.type : "";
+      } else {
+        itemType = "";
+      }
+      if (itemType == "InfoPoint") {
+        this.InfoItem = itemList[0];
+        //赋值名称
+        this.formLabelAlign.subName = itemList[0].text;
+        if (itemList[0].data.properties.infoData) {
+          const data = itemList[0].data.properties.infoData;
+          this.formLabelAlign.EqId = data.equipId;
+          this.formLabelAlign.classCode = data.classCode;
+          this.formLabelAlign.code = data.code;
+        }
+      }
+    },
+  },
+  mounted() {
+    bus.$on("emitChoice", this.emitChoice);
+  },
+};
+</script>
+<style lang="less" scoped>
+ul,
+li {
+  margin: 0;
+  padding: 0;
+  list-style-type: none;
+}
+.InfoPoint {
+  padding: 0 12px 0 12px;
+  box-sizing: border-box;
+  .title {
+    height: 47px;
+    border-bottom: 1px solid #979797;
+    color: #646c73;
+    font-size: 16px;
+    padding-left: 12px;
+    box-sizing: border-box;
+  }
+  ul {
+    width: calc(~"100% - 24px");
+    margin: -1px 12px 0 12px;
+    li {
+      border-top: 1px solid #979797;
+      .small-title {
+        font-size: 12px;
+        color: #8d9399;
+        margin: 12px 0;
+      }
+      .property {
+        display: flex;
+        align-items: center;
+        justify-content: space-around;
+        .color-box {
+          display: flex;
+          align-items: center;
+          flex-direction: column;
+          .cololorSelect {
+            width: 32px;
+            height: 20px;
+            overflow: hidden;
+            position: relative;
+            margin: 4px 0;
+            .fix-box-1 {
+              margin-top: -8px;
+              margin-left: -8px;
+              /deep/ .el-color-picker__trigger {
+                width: 200px;
+                height: 200px;
+              }
+            }
+          }
+        }
+        .line-width {
+          display: flex;
+          align-items: center;
+          flex-direction: column;
+          margin-left: 8px;
+          position: relative;
+        }
+        span {
+          font-size: 12px;
+          color: #1f2429;
+          margin-top: 4px;
+        }
+      }
+    }
+  }
+}
+</style>

+ 5 - 4
src/components/editview/rightPropertyBar/property.vue

@@ -67,6 +67,7 @@
       @changeEquipMsgData="changeEquipMsg"
       @changeEquipMsgData="changeEquipMsg"
     ></BaseEquipmentMsg>
     ></BaseEquipmentMsg>
     <Equation  v-show="itemType == 'Equation'" :textMsg="textMsg"></Equation>
     <Equation  v-show="itemType == 'Equation'" :textMsg="textMsg"></Equation>
+    <InfoPoint  v-show="itemType == 'InfoPoint'"></InfoPoint>
     <graphPaper v-show="!itemType"> </graphPaper>
     <graphPaper v-show="!itemType"> </graphPaper>
   </div>
   </div>
 </template>
 </template>
@@ -79,6 +80,7 @@ import BaseEquipment from "./BaseEquipment";
 import BaseEquipmentMsg from "./BaseEquipmentMsg";
 import BaseEquipmentMsg from "./BaseEquipmentMsg";
 import BasePipe from "./BasePipe";
 import BasePipe from "./BasePipe";
 import Equation from "./Equation";
 import Equation from "./Equation";
+import InfoPoint from "./InfoPoint"
 import graphPaper from "./graphPaper";
 import graphPaper from "./graphPaper";
 import bus from "@/bus/bus";
 import bus from "@/bus/bus";
 const lineStyle = {
 const lineStyle = {
@@ -109,7 +111,8 @@ export default {
     BaseEquipmentMsg,
     BaseEquipmentMsg,
     graphPaper,
     graphPaper,
     BasePipe,
     BasePipe,
-    Equation
+    Equation,
+    InfoPoint
   },
   },
   data() {
   data() {
     return {
     return {
@@ -141,6 +144,7 @@ export default {
   },
   },
   methods: {
   methods: {
     emitChoice(itemList) {
     emitChoice(itemList) {
+        console.log('itemList',itemList)
       if (itemList.length == 1) {
       if (itemList.length == 1) {
         const data = itemList[0].data
         const data = itemList[0].data
           ? itemList[0].data
           ? itemList[0].data
@@ -230,9 +234,6 @@ export default {
         this.strokeColor = item.strokeColor.toRgba();
         this.strokeColor = item.strokeColor.toRgba();
         this.lineStyle = lineStyle[item.lineStyle];
         this.lineStyle = lineStyle[item.lineStyle];
         this.lineWidth = item.lineWidth;
         this.lineWidth = item.lineWidth;
-      }else if(this.itemType == "Equation"){
-        // 公式
-         this.textMsg = item.text;
       }
       }
     },
     },
     // 修改设备信息点数据
     // 修改设备信息点数据