Browse Source

'update_2020.12.18_16.03'

zhangyu 4 years ago
parent
commit
d726c05764

+ 62 - 54
src/components/editview/basePlanEditer.vue

@@ -56,7 +56,6 @@ export default {
             "legendObj",
             "graphId",
             "id",
-            "state",
             "projectId",
             "floorMap",
             "equipItemMap",
@@ -64,6 +63,7 @@ export default {
             "floorId",
             "objExtInfo",
             "styleMap",
+            "ruleList",
         ]),
     },
     mounted() {
@@ -100,12 +100,11 @@ export default {
             "SETCHOICELEHEND",
             "SETLEGENDOBJ",
             "SETPROJECT",
-            "SETCATEGROY",
-            "SETISPUB",
             "SETVERSION",
             "ADDEQUIP",
             "DELETEQUIP",
             "INITSTYLE",
+            "INITRULELIST",
             "INITOBJEXTINFO",
         ]),
 
@@ -326,22 +325,14 @@ export default {
                 graphId: this.graphId,
                 id: this.id,
             };
-            // if (this.state === "Publish") {
-            //     // 已发布
-            //     pubPlanerRead(obj).then((res) => {
-            //         this.getDataSuc(res);
-            //     });
-            // } else {
-                // 未发布
-                planerRead(obj).then((res) => {
-                    this.getDataSuc(res);
-                });
-            // }
+            planerRead(obj).then((res) => {
+                this.getDataSuc(res);
+            });
         },
         // 读图成功回调
         getDataSuc(res) {
             if (res.result == "failure") return;
-            this.SETCATEGROY(res.content);
+            this.SETPROJECT(res.content);
             this.planContent = res.content;
             // 初始化对象实例信息
             if (res.content.elements.objExtInfo?.length) {
@@ -359,12 +350,12 @@ export default {
                 // 拼接设备默认样式
                 this.INITSTYLE(res.content.style);
             } else {
-                const style = {};
-                this.INITSTYLE(style);
+                this.INITSTYLE({});
             }
 
             // 加载规则,显示实例数据
             if (res.content.ruleList?.length) {
+                this.INITRULELIST(res.content.ruleList);
                 this.ruleNum = res.content.ruleList.length;
                 res.content.ruleList.forEach(async (rule) => {
                     this.loadedRuleNum++;
@@ -392,6 +383,8 @@ export default {
                         if (this.ruleNum === this.loadedRuleNum) this.loadMarkRelation();
                     }
                 });
+            } else {
+                this.INITRULELIST([]);
             }
         },
         // 解析设备数据
@@ -490,11 +483,35 @@ export default {
         // 生成快照并保存草稿
         saveTopoDraft() {
             const uuid = uuidv1();
-            return Promise.all([this.generateSnap(uuid), this.saveDraft(uuid)]).then((vals) => {
-                // 重设版本号
-                this.SETVERSION(vals[1].version);
-                this.$message.success(`保存成功${vals[1].version}`);
-            });
+            return Promise.all([this.generateSnap(uuid), this.saveDraft(uuid)])
+                .then((vals) => {
+                    // 重设版本号
+                    if (vals[1].version && vals[1].id && vals[1].graphId) {
+                        this.SETVERSION(vals[1].version);
+                        this.$message.success(`保存成功${vals[1].version}`);
+                        const { folderId, folderName, buildingId, floorId, floorLocalName, name, floorMap } = this.$route.query;
+                        this.$router.replace({
+                            name: "Editer",
+                            query: {
+                                folderId,
+                                folderName,
+                                buildingId,
+                                floorId,
+                                floorLocalName,
+                                name,
+                                floorMap,
+                                id: vals[1].id,
+                                graphId: vals[1].graphId,
+                                version: vals[1].version,
+                            },
+                        });
+                    } else {
+                        console.error(`保存图接口缺少返回参数!`);
+                    }
+                })
+                .catch((msg) => {
+                    this.$message.error(msg);
+                });
         },
         // 生成快照
         generateSnap(uuid) {
@@ -538,40 +555,31 @@ export default {
         // 保存草稿
         saveDraft(uuid) {
             const elements = this.scene.save();
+            const { id, graphId, name, buildingId, floorId, folderId, state, projectId, label = [], note = "" } = this.planContent;
             const obj = {
-                elements,
-                // name: this.planContent.name, // 名称
-                // projectId: this.projectId, // 项目ID
-                // label: this.planContent.label,
-                // buildingId: "1", // 建筑ID
-                // floorId: "1", // 楼层id
-                // note: "1", // 图说明
-                style: this.styleMap,
-                pic: `${uuid}.png`,
-                graphId: this.graphId,
-                id: this.id,
+                elements, // 平面图展示所需数据
+                id, //图编号
+                graphId, // 图 id
+                name, // 名称
+                folderId, // 文件夹 id
+                projectId, // 项目id
+                label, // 图标签
+                buildingId, // 建筑 id
+                floorId, // 楼层 id
+                state, // 标记
+                note, // 图说明
+                style: this.styleMap, // 样式库
+                ruleList: this.ruleList, // 实例数据获取规则
+                pic: `${uuid}.png`, // 图快照
+                version: this.version, // 版本号
             };
             return new Promise((resolve, reject) => {
-                saveGroup(obj).then((res) => {
-                    // 如果是从已发布跳转过来
-                    // if (this.state === "Publish") {
-                    //     // 设置发布状态为 未发布
-                    //     this.SETSTATE("Draft");
-                    //     const gid = res.entityList[0].graphId;
-                    //     const id = res.entityList[0].id;
-                    //     // 重设图id 与 id
-                    //     this.SETPROJECT({ graphId: gid, id: id });
-                    //     // 修改url参数
-                    //     this.$router.push({
-                    //         name: "Editer",
-                    //         query: {
-                    //             graphId: gid,
-                    //             id: id,
-                    //             state: "Draft",
-                    //         },
-                    //     });
-                    // }
-                    resolve(res.entityList[0]);
+                planerSave(obj).then((res) => {
+                    if (res.result === "success") {
+                        resolve(res.entityList[0]);
+                    } else {
+                        reject(res.message);
+                    }
                 });
             });
         },
@@ -592,7 +600,7 @@ export default {
             publishGraph(pa).then((res) => {
                 this.$message.success("发布成功");
             });
-        }
+        },
     },
     watch: {
         editCmd(val) {

+ 5 - 2
src/components/editview/leftToolBar/addEquipmentDialog.vue

@@ -115,8 +115,8 @@
 /**
  * 添加显示实例
  */
-import BasePlanEditer from '../basePlanEditer'
-import { mapState } from "vuex";
+import BasePlanEditer from "../basePlanEditer";
+import { mapState, mapMutations } from "vuex";
 import editInfoPoint from "./editInfoPoint";
 import { Select, TreeSelect } from "meri-design";
 import { cloneDeep } from "lodash";
@@ -224,6 +224,7 @@ export default {
         }, 2000); */
     },
     methods: {
+        ...mapMutations(["ADDRULE"]),
         /**
          * 设备实例范围树更改
          */
@@ -439,6 +440,8 @@ export default {
             console.log(res);
             if (res.result === "success") {
                 this.$message.success("添加成功");
+                // 在vuex中添加规则
+                this.ADDRULE(res.entityList[0]);
                 // 接口成功之后,发出添加设备指令
                 bus.$emit("addEquipment", this.tableDataBak);
                 let timer = setTimeout(() => {

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

@@ -386,7 +386,6 @@ export default {
                     this[data].imgUrl = res ? res : "";
                 })
                 .catch((res) => {
-                    debugger;
                     this[data].imgUrl = res;
                 });
         },

+ 0 - 1
src/components/homeView/createPlanarDialog.vue

@@ -227,7 +227,6 @@ export default {
                         folderId: entity.folderId,
                         name: entity.name,
                         version: entity.version,
-                        state: "Draft",
                         floorMap,
                         folderName,
                         floorLocalName,

+ 10 - 32
src/store/index.ts

@@ -7,7 +7,6 @@ export default new Vuex.Store({
     state: {
         editCmd: "", //编辑器编辑命令
         legendObj: null, //获取的相关图例数据obj
-
         name: "", //图名称
         folderId: "", //文件id
         folderName: "", //文件夹名称
@@ -18,19 +17,13 @@ export default new Vuex.Store({
         id: "", //图id
         graphId: "", //图graphId
         version: "", //版本号
-        state: "", //图状态,  Draft: 未发布, WaitCheck: 待审核, Checked: 审核完成, Recyle: 回收站, Publish: 发布
-
-        isPub: 0, // 用于读图 区分读取 已发布 or 未发布
         projectId: "Pj1101050029", // projectId
-        categoryId: "", //类型id 用于读图
-        equipmentItemList: [], // 图上相关的设备实例
-        equipmentItemNum: 0, // 图上相关的设备实例的数量
-
         equipItemMap: {}, // 图上相关的设备实例
         equipItemNum: 0, // 图上相关的设备的数量
         zoneIteMap: {}, // 图上相关的空间实例
         zoneItemNum: 0, // 图上相关的空间实例的数量
         styleMap: {}, // 样式库信息
+        ruleList: [], //规则列表
         objExtInfo: {}, // 对象实例信息
     },
     mutations: {
@@ -65,10 +58,6 @@ export default new Vuex.Store({
                 }
             });
         },
-        // 设置项目id
-        SETISPUB(state, val) {
-            state.isPub = val; // 是否发布 用于读图
-        },
         // 设置类型id
         SETCATEGROY(state, val) {
             state.folderId = val.folderId; //文件夹id
@@ -78,30 +67,14 @@ export default new Vuex.Store({
         SETVERSION(state, val) {
             state.version = val; //版本号
         },
-        // 增加设备实例 item
-        ADDEQUIPITEM(state, item): void {
-            state.equipmentItemList.push(item);
-            state.equipmentItemNum = state.equipmentItemList.length;
-        },
-        // 删除设备实例 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;
-        },
         // 初始化对象实例信息
         INITOBJEXTINFO(state, data) {
             state.objExtInfo = data;
         },
+        // 初始化规则列表
+        INITRULELIST(state, data) {
+            state.ruleList = data;
+        },
         // 初始化样式库信息
         INITSTYLE(state, data) {
             // 设备默认样式
@@ -133,6 +106,11 @@ export default new Vuex.Store({
                 state.zoneItemNum = 0;
             }
         },
+        // 添加规则
+        ADDRULE(state, data) {
+            // @ts-ignore
+            state.ruleList.push(data);
+        },
         // 添加样式信息
         ADDSTYLE(state, data) {
             // @ts-ignore

+ 26 - 26
src/views/editer.vue

@@ -2,8 +2,8 @@
     <div class="editer">
         <div class="top-bar">
             <div class="left">
-                <div class="project-name">{{ name }}</div>
-                <div class="project-type">/ {{ floorLocalName }}({{ folderName }})</div>
+                <div class="project-name">{{ name }}-{{ floorLocalName }}</div>
+                <div class="project-type">/ {{ folderName }}</div>
                 <div class="project-save">自动保存成功- v {{ version }}</div>
             </div>
             <div class="right">
@@ -29,12 +29,24 @@ import { mapState, mapMutations } from "vuex";
 export default {
     components: { planEditer },
     data() {
-        return {
-            categoryName: "", //项目分类
-        };
+        return {};
+    },
+    computed: {
+        ...mapState(["name", "folderName", "floorLocalName", "version"]),
+    },
+    created() {
+        window.vm = this;
+        this.init();
     },
     methods: {
-        ...mapMutations(["SETPROJECT", "INITEQUIPMAP"]),
+        ...mapMutations(["INITEQUIPMAP", "INITSTYLE", "INITRULELIST", "INITOBJEXTINFO"]),
+        init() {
+            // 重新加载时初始化 vuex 数据
+            this.INITEQUIPMAP();
+            this.INITOBJEXTINFO({});
+            this.INITSTYLE({});
+            this.INITRULELIST([]);
+        },
         // 保存图片
         saveTopo() {
             bus.$emit("saveTopo");
@@ -48,26 +60,14 @@ export default {
             bus.$emit("saveTopoImg");
         },
     },
-    computed: {
-        ...mapState([
-            "tupoName",
-            "name",
-            "folderId",
-            "folderName",
-            "buildingId",
-            "floorId",
-            "floorMap",
-            "floorLocalName",
-            "id",
-            "graphId",
-            "version",
-            "state",
-        ]),
-    },
-    created() {
-        window.vm = this;
-        this.INITEQUIPMAP();
-        this.SETPROJECT(this.$route.query);
+    watch: {
+        "$route.query": {
+            handler(newVal) {
+                this.SETPROJECT(newVal);
+            },
+            immediate: true,
+            deep: true,
+        },
     },
 };
 </script>