Browse Source

Merge branch 'dev' of http://39.106.8.246:3003/web/persagy-plan-editer into dev

yunxing 4 years ago
parent
commit
566faf9261

+ 12 - 0
src/api/labsl.ts

@@ -50,6 +50,14 @@ export function planerRecycle(postParams: any): any {
 export function planerUpdate(postParams: any): any {
     return httputils.postJson(`${baseApi}/planar/graph/drafts/update`, postParams);
 }
+// 未发布 - 查询图形以及所有节点信息
+export function planerRead(postParams: any): any {
+    return httputils.postJson(`${baseApi}/planar/graph/drafts/read`, postParams);
+}
+// 未发布 - 保存图形
+export function planerSave(postParams: any): any {
+    return httputils.postJson(`${baseApi}/planar/graph/drafts/save`, postParams);
+}
 
 /**
  * 已发布的平面图接口
@@ -66,6 +74,10 @@ export function pubPlanerRecycle(postParams: any): any {
 export function pubPlanerUpdate(postParams: any): any {
     return httputils.postJson(`${baseApi}/planar/graph/pub/update`, postParams);
 }
+// 已发布 - 查询图形以及所有节点信息
+export function pubPlanerRead(postParams: any): any {
+    return httputils.postJson(`${baseApi}/planar/graph/pub/read`, postParams);
+}
 
 // 平面图-规则
 export function ruleCreate(postParams: any): any {

+ 51 - 49
src/components/editview/basePlanEditer.vue

@@ -20,8 +20,10 @@ import { mapState, mapMutations } from "vuex";
 import base64ToFile from "@/utils/base64ToFile";
 import { v1 as uuidv1 } from "uuid";
 import bus from "@/bus/bus";
-import { saveGroup, readGroup, uploadGroup, getImageGroup, readPubGroup } from "@/api/editer";
+import { saveGroup } from "@/api/editer";
 import { publishGraph } from "@/api/home";
+import { planerSave, planerRead, pubPlanerRead } from "@/api/labsl";
+import { equipQuery } from "@/api/equipcomponent";
 import { imgBaseUrl, imgServeUpload } from "@/api/imageservice";
 export default {
     components: { topoTooltip },
@@ -62,16 +64,12 @@ export default {
             canvasHeight: 700, //画布高
             havItem: false, //右击是否选中item
             showTooltip: false, //是否显示tooltip
-            topoContent: {}, // 读图后存储图所有数据
+            planContent: {}, // 读图后存储图所有数据
             autoSave: null, // 自动保存定时器
-            floorMap: "base/ebd53bb00d3511eb9a1db95f725712e8.jsonz",
         };
     },
     computed: {
-        ...mapState(["editCmd", "legendObj", "graphId", "id", "state", "categoryId", "projectId", "version", "equipItemList"]),
-    },
-    created() {
-        this.clearImg();
+        ...mapState(["editCmd", "legendObj", "graphId", "id", "state", "projectId", "floorMap", "equipItemList", "buildingId", "floorId", "objExtInfo"]),
     },
     mounted() {
         // 获取 canvas 的宽高
@@ -115,7 +113,7 @@ export default {
             "ADDEQUIP",
             "DELETEQUIP",
             "INITSTYLE",
-            "INITEQUIPOS",
+            "INITOBJEXTINFO",
         ]),
 
         // 清空画布
@@ -133,10 +131,10 @@ export default {
         init() {
             this.clearImg();
             this.view ? (this.view.scene = this.scene) : null;
-            // 获取压缩包数据并解压
-            this.getMapBlob();
-            // 读取底图
-            this.readtopoMsg();
+            // 判断是否有楼层底图,有则获取数据并解析
+            if (this.floorMap) this.getMapBlob();
+            // 读取平面图数据
+            this.readPlanMsg();
         },
         // 请求获取地图的压缩包
         getMapBlob() {
@@ -299,7 +297,7 @@ export default {
             bus.$on("saveTopoImg", () => {
                 // 隐藏选择器
                 this.scene.selectContainer.clear();
-                this.view.saveImageSize(`${this.topoContent.name}.png`, "png", this.canvasWidth, this.canvasHeight);
+                this.view.saveImageSize(`${this.planContent.name}.png`, "png", this.canvasWidth, this.canvasHeight);
             });
             // 发布图片
             bus.$off("issueTopo");
@@ -325,18 +323,18 @@ export default {
             });
         },
         // 读取拓扑图
-        readtopoMsg() {
+        readPlanMsg() {
             const obj = {
                 graphId: this.graphId,
                 id: this.id,
             };
             if (this.state === "Publish") {
                 // 已发布
-                readPubGroup(obj).then((res) => {
+                pubPlanerRead(obj).then((res) => {
                     this.getDataSuc(res);
                 });
             } else {
-                readGroup(obj).then((res) => {
+                planerRead(obj).then((res) => {
                     this.getDataSuc(res);
                 });
             }
@@ -346,7 +344,7 @@ export default {
             // let anchorList = []; //保存锚点对象
             if (res.result == "failure") return;
             this.SETCATEGROY(res.content);
-            this.topoContent = res.content;
+            this.planContent = res.content;
             const parse = new SPlanParser();
             parse.parseData(res.content.elements);
             parse.markers.forEach((item) => {
@@ -356,7 +354,7 @@ export default {
                 item.connect("onContextMenu", this, this.scene.getItem);
                 // 判断如果是图,需要拼接路径
                 if (item.data.properties.type == "BaseImage") {
-                    if (item.data.style.default.url) {
+                    if (item.data.style?.default?.url) {
                         item.url = imgBaseUrl + item.data.style.default.url;
                     }
                 }
@@ -364,16 +362,20 @@ export default {
             });
 
             // 保存设备位置信息
-            if (res.content.elements && res.content.elements.objExtInfo && res.content.elements.objExtInfo.length) {
-                const equipos = {};
-                res.content.elements.objExtInfo.forEach((item) => {
-                    equipos[item.id] = item;
-                });
-                this.INITEQUIPOS(equipos);
+            if (res.content.elements.objExtInfo?.length) {
+                const objExtInfo = {};
+                if (res.content.elements.objExtInfo?.length) {
+                    res.content.elements.objExtInfo.forEach((item) => {
+                        objExtInfo[item.id] = item;
+                    });
+                }
+                this.INITOBJEXTINFO(objExtInfo);
             }
 
             // 保存样式信息
             if (res.content.style) {
+                // 拼接设备默认样式
+                res.content.style.defaultEquipStyle = this.defaultEquipStyle;
                 this.INITSTYLE(res.content.style);
             }
 
@@ -424,25 +426,27 @@ export default {
             //     this.scene.addItem(t);
             // });
 
-            if (res.content.ruleList && res.content.ruleList.length) {
-                res.content.ruleList.forEach((rule) => {
+            if (res.content.ruleList?.length) {
+                res.content.ruleList.forEach(async (rule) => {
                     if (rule.commond && rule.commond === "query") {
                         if (rule.returnType && rule.returnType === "equip") {
-                            setTimeout(() => {
-                                console.log("请求设备数据");
-                                // this.mergeEquipData(res.content)
-                            }, parseInt(Math.random() * 10 + 1, 10) * 100);
+                            const params = {...rule.params, buildingId: this.buildingId, floorId: this.floorId}
+                            const res = await equipQuery(params);
+                            this.mergeEquipData(res.content);
                         } else if (rule.returnType && rule.returnType === "zone") {
                             setTimeout(() => {
-                                console.log("请求空间数据");
+                                console.error("请求空间数据");
                             }, 1000);
                         } else if (rule.returnType && rule.returnType === "equipGroup") {
                             setTimeout(() => {
-                                console.log("请求设备组数据");
+                                console.error("请求设备组数据");
                             }, 1000);
                         }
                     } else if (rule.commond && rule.commond === "delete") {
-                        console.log("删除命令!!!", rule);
+                        /**
+                         * 暂未实现
+                         */
+                        console.error("删除命令!!!", rule);
                     }
                 });
             }
@@ -451,20 +455,18 @@ export default {
         mergeEquipData(equipList) {
             equipList.forEach((equip) => {
                 if (!this.equipItemList[equip.id]) {
-                    /**
-                     * 如果未维护BIM坐标,默认显示在什么位置
-                     * 如果未维护BIM坐标,连线原点在什么位置(可能要在item里面处理)
-                     */
-                    if (this.equipos[equip.id]) {
-                        // 判断设备是否维护位置信息
-                        equip.pos = this.equipos[equip.id];
-                    } else if (equip.locationJson) {
-                        // 判断设备是否维护BIM坐标
-                        equip.pos = equip.locationJson;
-                    } else {
-                        // 否则显示默认坐标位置
-                        equip.pos = { x: 0, y: 0, z: 0 };
+                    if (this.objExtInfo[equip.id]) {
+                        equip = {...this.objExtInfo[equip.id], ...equip}
                     }
+                    if (!equip.pos) { //如果未维护设备在图中的坐标
+                        if (equip.locationJson) {
+                            // 判断设备是否维护BIM坐标
+                            equip.pos = equip.locationJson;
+                        } else {
+                            // 否则显示默认坐标位置
+                            equip.pos = { x: 0, y: 0, z: 0 };
+                        }
+                    } 
                     const equipItem = new SPlanEquipment(null, equip);
                     equipItem.selectable = true;
                     equipItem.moveable = true;
@@ -475,7 +477,7 @@ export default {
                     } else if (this.style[equip.classCode]) {
                         Object.assign(equipItem, this.style[equip.calssCode]);
                     } else {
-                        Object.assign(equipItem, this.style["equipDefault"]);
+                        Object.assign(equipItem, this.style["defaultEquipStyle"]);
                     }
                     this.scene.addItem(equipItem);
                     this.equipItemList[equip.id] = equipItem;
@@ -536,10 +538,10 @@ export default {
             const elements = this.scene.save();
             const obj = {
                 elements,
-                // name: this.topoContent.name, // 名称
+                // name: this.planContent.name, // 名称
                 // categoryId: this.categoryId, // 图分类ID
                 // projectId: this.projectId, // 项目ID
-                // label: this.topoContent.label,
+                // label: this.planContent.label,
                 // buildingId: "1", // 建筑ID
                 // floorId: "1", // 楼层id
                 // note: "1", // 图说明

+ 142 - 0
src/lib/SPlanDecorator.ts

@@ -0,0 +1,142 @@
+/*
+ * *********************************************************************************************************************
+ *
+ *          !!
+ *        .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) 2009-2020.  博锐尚格科技股份有限公司
+ *        ~8888'
+ *        .!88~                                                                     All rights reserved.
+ *
+ * ****/
+
+import { BigEditFactory, Legend, Marker, Relation, ElementData } from "@persagy-web/big-edit";
+
+/**
+ * 平面图装饰器
+ *
+ *  @author  张宇 <taohuzy@163.com>
+ */
+export class SPlanDecorator {
+    /**
+     * 解析拓扑图绘制数据
+     *
+     * @param data    业务空间数据
+     */
+    parseData(data: ElementData): void {
+        // 生成遍历基本图例
+        if (data.markers && data.markers.length) {
+            data.markers.forEach((item) => {
+                this.addMarker(item);
+            });
+        }
+
+        // 生成遍历Node图例
+        if (data.nodes && data.nodes.length) {
+            data.nodes.forEach((item: any) => {
+                this.addNode(item);
+            });
+        }
+
+        // 生成遍历关系图例
+        if (data.relations && data.relations.length) {
+            data.relations.forEach((item: any) => {
+                this.addRelation(item);
+            });
+        }
+    }
+
+    /**
+     * 添加生成 mark 实例
+     *
+     * @param data Marker   图例类型数据
+     */
+    addMarker(data: Marker) {
+        if (data.properties && data.properties.type) {
+            switch (data.properties.type) {
+                case "BaseLine":
+                    this.markers.push(this.factory.createBaseLineEdit(data));
+                    break;
+                case "BaseText":
+                    this.markers.push(this.factory.createBaseTextEdit(data));
+                    break;
+                case "BaseImage":
+                    this.markers.push(this.factory.createBaseImageEdit(data));
+                    break;
+                case "BaseExplain":
+                    this.markers.push(this.factory.createBaseExpainEdit(data));
+                    break;
+                case "BaseCircle":
+                    this.markers.push(this.factory.createBaseCircleEdit(data));
+                    break;
+                case "BaseArrow":
+                    this.markers.push(this.factory.createBaseArrow(data));
+                    break;
+                case "BaseRect":
+                    this.markers.push(this.factory.createBaseRectEdit(data));
+                    break;
+                case "BasePolygon":
+                    this.markers.push(this.factory.createBasePolygonEdit(data));
+                    break;
+                case "BaseArrowPolygon":
+                    this.markers.push(this.factory.createBasePolygonArrowEdit(data));
+            }
+        }
+    }
+
+    /**
+     * 添加生成 Node 实例
+     *
+     * @param data Legend   图例类型数据
+     */
+    addNode(data: Legend) {
+        let node = null;
+        if (data.properties && data.properties.type) {
+            switch (data.properties.type) {
+                case "BaseEquipment":
+                    node = this.factory.createBaseEquipment(data);
+                    break;
+            }
+        }
+        if (node) {
+            this.nodes.push(node);
+        }
+
+        return node;
+    }
+
+    /**
+     * 添加生成 Relation 实例
+     *
+     * @param data Relation   图例类型数据
+     */
+    addRelation(data: Relation) {
+        let relation = null;
+        if (data.properties && data.properties.type) {
+            switch (data.properties.type) {
+                case "BasePipe":
+                    relation = this.factory.createBasePipe(data);
+                    break;
+            }
+        }
+
+        if (relation) {
+            this.relations.push(relation);
+        }
+
+        return relation;
+    }
+}

+ 1 - 1
src/lib/item/SPlanEquipment.ts

@@ -120,7 +120,7 @@ export class SPlanEquipment extends SBaseIconTextEdit {
         }
 
         this.showAnchor = false;
-        this.anotherMsg = this.legendData.properties.anotherMsg ? this.legendData.properties.anotherMsg : '';
+        this.anotherMsg = this.legendData.properties?.anotherMsg ? this.legendData.properties.anotherMsg : '';
         this.x = this.legendData.pos.x;
         this.y = this.legendData.pos.y;
         this.moveable = true;

+ 6 - 8
src/store/index.ts

@@ -23,7 +23,6 @@ export default new Vuex.Store({
         isPub: 0, // 用于读图 区分读取 已发布 or 未发布
         projectId: "Pj1101050029", // projectId
         categoryId: "", //类型id 用于读图
-        tupoName: "", //拓扑图名称
         equipmentItemList: [], // 图上相关的设备实例
         equipmentItemNum: 0, // 图上相关的设备实例的数量
         equipItemList: {}, // 图上相关的设备实例
@@ -31,7 +30,7 @@ export default new Vuex.Store({
         zoneItemList: {}, // 图上相关的空间实例
         zoneItemNum: 0, // 图上相关的空间实例的数量
         style: {}, // 样式库信息
-        equiPos: {}, // 设备位置信息
+        objExtInfo: {}, // 设备位置信息
     },
     mutations: {
         // 修改编辑器命令
@@ -44,7 +43,7 @@ export default new Vuex.Store({
         },
         // 设置项目信息
         SETPROJECT(state, data) {
-            const arr = ["name", "folderId", "folderName", "buildingId", "floorId", "floorMap", "floorLocalName", "id", "graphId", "state"];
+            const arr = ["name", "folderId", "folderName", "buildingId", "floorId", "floorMap", "floorLocalName", "id", "graphId", "state", "version"];
             arr.map((key) => {
                 // 对传入的参数进行修改
                 if (data[key] !== undefined) {
@@ -59,9 +58,8 @@ export default new Vuex.Store({
         },
         // 设置类型id
         SETCATEGROY(state, val) {
-            state.categoryId = val.categoryId;
-            //   state.folderId = val.folderId;
-            state.tupoName = val.name; //拓扑图名称
+            state.folderId = val.folderId; //文件夹id
+            state.name = val.name; //拓扑图名称
             state.version = val.version; //版本号
         },
         SETVERSION(state, val) {
@@ -88,8 +86,8 @@ export default new Vuex.Store({
             state.equipmentItemNum = state.equipmentItemList.length;
         },
         // 初始化设备位置信息
-        INITEQUIPOS(state, data) {
-            state.equiPos = data;
+        INITOBJEXTINFO(state, data) {
+            state.objExtInfo = data;
         },
         // 初始化样式库信息
         INITSTYLE(state, data) {

+ 2 - 17
src/views/editer.vue

@@ -34,7 +34,7 @@ export default {
         };
     },
     methods: {
-        ...mapMutations(["SETPROJECT", "SETVERSION"]),
+        ...mapMutations(["SETPROJECT"]),
         // 保存图片
         saveTopo() {
             bus.$emit("saveTopo");
@@ -64,22 +64,7 @@ export default {
             "state",
         ]),
     },
-    mounted() {
-        this.categoryName = decodeURI(this.$route.query.categoryName);
-        // console.log(decodeURI(decodeURI(window.location.href)));
-
-        //     folderId: "", //文件id
-        //     folderName: "", //文件夹名称
-        //     buildingId: "", //建筑id
-        //     floorId: "", //楼层id
-        //     floorMap: "", //floorMap
-        //     floorLocalName: "", //楼层本地名称
-        //     id: "", //图id
-        //     graphId: "", //图graphId
-        //     state: "Draft", /
-        // const { folderId, folderName, buildingId, floorId, floorMap, floorLocalName, id, graphId, state } = this.$route.query;
-        // this.SETPROJECT({ folderId, folderName, buildingId, floorId, floorMap, floorLocalName, id, graphId, state });
-        this.SETVERSION(this.$route.query.version);
+    created() {
         this.SETPROJECT(this.$route.query);
     },
 };

+ 0 - 1
src/views/home.vue

@@ -384,7 +384,6 @@ export default {
             const { name, id, graphId, buildingId, floorId, version } = data,
                 { floorMap } = infos,
                 { folderId, folderName } = this;
-            // this.$message.warning("功能开发中");
             this.$router.push({
                 name: "Editer",
                 query: {