YaolongHan 4 years ago
parent
commit
6e7fdbd91a

+ 3 - 1
src/components/editClass/big-edit/SBaseEditScene.ts

@@ -90,6 +90,7 @@ export class SBaseEditScene extends SGraphEditScene {
         item.moveable = true;
         this.addItem(item);
         this.grabItem = null;
+        item.connect("onContextMenu", this, this.getItem);
         this.finishCreated(item);
     } // Function addExplainItem()
 
@@ -126,6 +127,7 @@ export class SBaseEditScene extends SGraphEditScene {
         }
     } // Function addPolyLineArrow()
 
+
     /**
      * 添加基本设备 item
      *
@@ -145,7 +147,7 @@ export class SBaseEditScene extends SGraphEditScene {
             pos: { x: event.x, y: event.y },
             /** 由应用自己定义 */
             properties: {
-                type: "baseEquipment",
+                type: "BaseEquipment",
             },
             style: {
                 default: {

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

@@ -26,6 +26,7 @@
 
 import { SGraphItem } from "@persagy-web/graph/lib";
 import { Marker } from "./../types/Marker";
+import { Legend } from "./../types/Legend";
 import { SBaseIconTextEdit } from './../../edit/';
 
 /**
@@ -34,15 +35,28 @@ import { SBaseIconTextEdit } from './../../edit/';
  * @author 韩耀龙 <han_yao_long@163.com>
  */
 export class SBaseEquipment extends SBaseIconTextEdit {
-
+    /** 设备图例 */
+    legendData: Legend;
     /**
      * 构造函数
      *
      * @param parent    指向父对象
      * @param data      数据
      */
-    constructor(parent: SGraphItem | null, data: Marker) {
-        super(parent, data);
+    constructor(parent: SGraphItem | null, data: Legend) {
+        const markData = {
+            /** 名称 */
+            name: data.name,
+            /** 图标(Image),线类型(Line) */
+            type: data.type,
+            /** 位置 */
+            pos: data.pos,
+            /** 由应用自己定义 */
+            properties: data.properties,
+            style: data.style
+        }
+        super(parent, markData);
+        this.legendData = data;
     } // Constructor
 
     /**
@@ -51,6 +65,19 @@ export class SBaseEquipment extends SBaseIconTextEdit {
      * @return	对象储存的相关数据
      */
     toData(): any {
-        return super.toData()
+        super.toData();
+        if (this.data) {
+            const list = this.legendData.anchorList.map((item) => {
+                return {
+                    id: item.id,
+                    x: item.x,
+                    y: item.y
+                }
+            })
+            this.legendData.anchorList = list
+        }
+
+
     } // Function toData
+
 } // Class SBaseEquipment

+ 16 - 16
src/components/editClass/big-edit/types/Legend.ts

@@ -36,33 +36,33 @@ import { SPoint } from '@persagy-web/draw/';
  */
 export interface Legend {
     /** ID */
-    ID: string;
+    id: string;
     /** 名称 */
-    Name: string;
+    name: string;
     /** 返回工程信息化对象 ID 列表 */
-    AttachObjectIds?: any[];
+    attachObjectIds?: any[];
     /** 图标,区域类型 */
-    GraphElementType: string;
+    graphElementType: string;
     /** 对应的图例 ID */
-    GraphElementId: string;
+    graphElementId: string;
     /** 图例数量 */
-    Num?: number;
+    num?: number;
     /** 位置 */
-    Pos: Point;
+    pos: Point;
     /** item 类型 */
-    Type: string
+    type: string
     /** 缩放 */
-    Scale?: Point;
+    scale?: Point;
     /** 旋转 */
-    Rolate?: Point;
+    rolate?: Point;
     /** 大小 */
-    Size?: Size;
+    size?: Size;
     /** 锚点 List */
-    AnchorList?: Anchor[];
+    anchorList?: Anchor[];
     /** 轮廓线 */
-    OutLine?: Point[] | SPoint[];
+    outLine?: Point[] | SPoint[];
     /** 由应用自己定义 */
-    Properties?: any;
-     /** zone 区分防火分区和石材铺装 */
-    SubType?:string
+    properties?: any;
+    /** 样式 */
+    style?: any
 } // Interface Legend

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

@@ -34,7 +34,7 @@ import { Size } from "@persagy-web/big/lib/types/Size";
  */
 export interface Marker {
     /** ID */
-    iD?: string;
+    id?: string;
     /** 名称 */
     name: string;
     /** 图标 (Image),线类型 (Line) */

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

@@ -186,7 +186,7 @@ export class SGraphEditScene extends SGraphScene {
         item.selectable = true;
         item.moveable = true;
         this.addItem(item);
-        // this.undoStack.push(new SGraphAddCommand(this, item));
+        item.connect("onContextMenu", this, this.getItem);
         this.finishCreated(item);
     } // Function addImageItem()
 

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

@@ -387,7 +387,7 @@ export class SBaseIconTextEdit extends SGraphEdit {
      * Item 绘制操作
      *
      * @param painter    绘制对象
-    */
+     */
     onDraw(painter: SPainter): void {
         if (this.status == SItemStatus.Edit) {
             painter.pen.lineWidth = painter.toPx(1);
@@ -429,4 +429,49 @@ export class SBaseIconTextEdit extends SGraphEdit {
             }
         }
     } // Function onDraw()
+
+    /**
+    * 返回对象储存的相关数据
+    *
+    * @return 相关数据
+    */
+    toData(): any {
+        if (this.data) {
+            if (this.data.size) {
+                this.data.size.width = this.sWidth;
+                this.data.size.height = this.sHeight;
+            }
+            this.data.style.default.text = this.textItem.text;
+            this.data.pos.x = this.pos.x;
+            this.data.pos.y = this.pos.y;
+            this.data.style.default.zorder = this.zOrder;
+            this.data.style.default.url = this.img.url;
+        }
+
+        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.textItem.font.size = this.data.style.default.font || 12;
+        this.img.url = this.data.style.default.url;
+        // this.img.width = 100;
+        // this.img.height = 100;
+        this.x = this.data.pos.x;
+        this.y = this.data.pos.y
+        // 偏移二分之一文本高度
+        this.textItem.moveTo(
+            this.img.width * 0.5,
+            -(this.font.size * 1.25 * 0.5)
+        );
+        this.moveable = true;
+        this.selectable = true;
+    } // Function toData()
 } // Class SBaseIconTextEdit

+ 1 - 1
src/components/editClass/edit/type/Legend.ts

@@ -36,7 +36,7 @@ import { SPoint } from '@persagy-web/draw/lib';
  */
 export interface Legend {
     /** ID */
-    iD: string;
+    id: string;
     /** 名称 */
     name: string;
     /** 返回工程信息化对象 ID 列表 */

+ 1 - 1
src/components/editClass/edit/type/Marker.ts

@@ -34,7 +34,7 @@ import { Size } from "@persagy-web/big/lib/types/Size";
  */
 export interface Marker {
     /** ID */
-    iD?: string;
+    id?: string;
     /** 名称 */
     name: string;
     /** 图标(Image),线类型 (Line) */

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

@@ -181,6 +181,7 @@ export class PTopoScene extends SBaseEditScene {
      *
      */
     getItem(item: SGraphEdit | null, event: SMouseEvent[]) {
+        // alert('onContextMenu')
     } // Function getItem()
 
     /**

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

@@ -36,7 +36,7 @@ export default {
     };
   },
   computed: {
-    ...mapState(["editCmd", "legendObj", "graphId", "id"]),
+    ...mapState(["editCmd", "legendObj", "graphId", "id", "categoryId"]),
   },
   mounted() {
     this.canvasWidth = this.$refs.baseTopo.offsetWidth;
@@ -67,6 +67,7 @@ export default {
       "SETLEGENDOBJ",
       "SETPROJECT",
       "projectId",
+      "SETCATEGROY",
     ]),
     // 恢复命令状态
     clearCmdStatus() {
@@ -126,7 +127,7 @@ export default {
         const obj = {
           elements,
           name: "1", // 名称
-          categoryId: "1", // 图分类ID
+          categoryId: this.categoryId, // 图分类ID
           projectId: this.projectId, // 项目ID
           buildingId: "1", // 建筑ID
           floorId: "1", // 楼层id
@@ -168,11 +169,14 @@ export default {
         id: this.id,
       };
       readGroup(obj).then((res) => {
+        this.SETCATEGROY(res.content.categoryId);
         const parse = new PTopoParser();
         parse.parseData(res.content.elements);
         parse.markers.forEach((item) => {
           item.selectable = true;
           item.moveable = true;
+          item.connect("finishCreated", this.scene, this.scene.finishCreated);
+          item.connect("onContextMenu", this, this.scene.getItem);
           this.scene.addItem(item);
         });
       });

+ 82 - 0
src/components/editview/rightPropertyBar/BaseEquipment.vue

@@ -0,0 +1,82 @@
+<template>
+  <div id="equip_pro">
+    <div class="title">设备实例本地名称</div>
+    <el-tabs v-model="activeName" @tab-click="handleClick">
+      <el-tab-pane label="属性" name="first">
+        <div class="property">
+          <div class="base-property">
+            <div>
+              <span>W</span>
+              <el-input
+                style="width: 74px; margin-left: 6px"
+                size="mini"
+                v-model="width"
+                @input="changeWidth"
+                placeholder="请输入内容"
+              ></el-input>
+            </div>
+            <div>
+              <span>H</span>
+              <el-input
+                style="width: 74px; margin-left: 6px"
+                size="mini"
+                v-model="height"
+                @input="changeHeight"
+                placeholder="请输入内容"
+              ></el-input>
+            </div>
+            <el-upload
+              class="avatar-uploader"
+              action="https://jsonplaceholder.typicode.com/posts/"
+              :show-file-list="false"
+              :before-upload="beforeAvatarUpload"
+            >
+              <i class="el-icon-link"></i>
+            </el-upload>
+          </div>
+        </div>
+      </el-tab-pane>
+      <el-tab-pane label="信息点" name="second">信息点</el-tab-pane>
+    </el-tabs>
+  </div>
+</template>
+<script>
+export default {
+  data() {
+    return {
+      activeName: "first",
+    };
+  },
+  methods: {
+    handleClick(tab, event) {
+      console.log(tab, event);
+    },
+  },
+  mounted() {},
+};
+</script>
+<style lang="less" scoped>
+ul,
+li {
+  margin: 0;
+  padding: 0;
+  list-style-type: none;
+}
+#equip_pro {
+  .title {
+    height: 47px;
+    border-bottom: 1px solid #979797;
+    color: #646c73;
+    font-size: 16px;
+    padding-left: 12px;
+    box-sizing: border-box;
+  }
+  .property {
+    .base-property {
+      display: flex;
+      align-items: center;
+      justify-content: space-around;
+    }
+  }
+}
+</style>

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

@@ -56,7 +56,7 @@
             <a-select
               style="width: 80px; margin-right: 8px"
               v-model="begin"
-              :default-value="borderLineOption[0].id"
+              :default-value="arrowType[0].id"
               @change="changeArrowType('begin')"
             >
               <a-select-option
@@ -71,7 +71,7 @@
             <a-select
               style="width: 80px"
               v-model="end"
-              :default-value="borderLineOption[0].id"
+              :default-value="arrowType[0].id"
               @change="changeArrowType('end')"
             >
               <a-select-option

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

@@ -40,6 +40,7 @@
       :Height="Height"
       v-show="itemType == 'BaseImage'"
     ></BaseImagePro>
+    <BaseEquipment v-show="itemType == 'BaseEquipment'"></BaseEquipment>
   </div>
 </template>
 <script>
@@ -47,6 +48,7 @@ import baseTextPro from "./baseTextPro.vue";
 import baseLinePro from "./baseLinePro.vue";
 import BaseGraphy from "./BaseGraphy";
 import BaseImagePro from "./BaseImagePro";
+import BaseEquipment from "./BaseEquipment";
 import bus from "@/bus/bus";
 const lineStyle = {
   0: "Solid",
@@ -67,7 +69,7 @@ const arrowType = {
   5: "Circle",
 };
 export default {
-  components: { baseTextPro, baseLinePro, BaseGraphy, BaseImagePro },
+  components: { baseTextPro, baseLinePro, BaseGraphy, BaseImagePro,BaseEquipment },
   data() {
     return {
       itemType: "", // item 类型
@@ -110,7 +112,7 @@ export default {
         this.lineWidth = item.lineWidth;
         this.begin = arrowType[item.begin];
         this.end = arrowType[item.end];
-        console.log(this.begin,this.end)
+        console.log(this.begin, this.end);
       } else if (
         this.itemType == "BaseText" ||
         this.itemType == "BaseExplain"

+ 6 - 1
src/store/index.ts

@@ -9,7 +9,8 @@ export default new Vuex.Store({
     legendObj: null, //获取的相关图例数据obj
     graphId: '',    //图 id 用于读图
     id: '',        // id  用于读图
-    projectId: ''  // projectId
+    projectId: '',  // projectId
+    categoryId: ''   //类型id 用于读图
   },
   mutations: {
     // 修改编辑器命令
@@ -25,6 +26,10 @@ export default new Vuex.Store({
       state.graphId = data.graphId;   //图 id 用于读图
       state.id = data.id;       // id  用于读图
       // projectId: ''  // projectId
+    },
+    // 设置类型id
+    SETCATEGROY(state, val) {
+      state.categoryId = val
     }
   },
   actions: {