Browse Source

Merge branch 'dev' of git.sagacloud.cn:web/persagy-plan-editer into dev

zhangyu 4 years ago
parent
commit
f556a3a1e6
5 changed files with 263 additions and 195 deletions
  1. 5 0
      src/api/labsl.ts
  2. 72 68
      src/components/editview/leftToolBar/addEquipmentDialog.vue
  3. 136 110
      src/store/index.ts
  4. 33 5
      src/views/editer.vue
  5. 17 12
      src/views/home.vue

+ 5 - 0
src/api/labsl.ts

@@ -66,3 +66,8 @@ export function pubPlanerRecycle(postParams: any): any {
 export function pubPlanerUpdate(postParams: any): any {
     return httputils.postJson(`${baseApi}/planar/graph/pub/update`, postParams);
 }
+
+// 平面图-规则
+export function ruleCreate(postParams: any): any {
+    return httputils.postJson(`${baseApi}/planar/rule/create`, postParams);
+}

+ 72 - 68
src/components/editview/leftToolBar/addEquipmentDialog.vue

@@ -1,6 +1,4 @@
-/**
- * 添加显示实例(设备)
- */
+<!-- 添加显示实例(设备) -->
 <template>
     <el-dialog
         custom-class="equipment-detail-dialog"
@@ -34,26 +32,10 @@
                 :choseArea="true"
                 :data="dataTree1"
                 @change="treeChange1"
-                @focusChange="focusChange1"
             />
             <span class="text2">选择空间:</span>
-            <!-- 空间分区类型 树 -->
-            <!-- <TreeSelect
-                title="已选项"
-                unit="个"
-                placeholder="请选择"
-                :width="240"
-                :height="300"
-                :caption="'分区类型:'"
-                :notNull="true"
-                :returnParentNode="false"
-                :isShowAllChoice="true"
-                :selectedIds="selectedIds2"
-                :choseArea="true"
-                :data="dataTree2"
-                @change="treeChange2"
-                @focusChange="focusChange2"
-            /> -->
+            <!-- 空间分区类型 菜单 -->
+
             <Select
                 width="220"
                 tipPlace="top"
@@ -92,7 +74,6 @@
                 :disabled="!spacePartitionType.length"
                 :data="dataTree3"
                 @change="treeChange3"
-                @focusChange="focusChange3"
             />
         </div>
         <!-- 表格 -->
@@ -133,6 +114,7 @@
 import editInfoPoint from "./editInfoPoint";
 import { Select, TreeSelect } from "meri-design";
 import { cloneDeep } from "lodash";
+import { ruleCreate } from "@/api/labsl";
 import { dictCategoryQuery, dictQuery, PartiInstancQuery } from "@/api/datacenter";
 import { categoryQuery, typeQuery, equipQuery } from "@/api/equipcomponent";
 import { array2Tree, mapTree } from "@/utils/utils";
@@ -226,13 +208,37 @@ export default {
                 this.initModal();
             }
         },
+        /**
+         * 监听分区类型变化(点击下拉框删除按钮,触发表格数据查询)
+         */
+        spacePartitionType: {
+            handler(newV, oldV) {
+                if (!newV.length && oldV.length) {
+                    this.spacePartitionInstance = [];
+                    this.curentSelectTree3 = [];
+                    // this.getTableData();
+                }
+            },
+            deep: true,
+        },
+        /**
+         * 监听分区下实例变化(点击下拉框删除按钮,触发表格数据查询)
+         */
+        spacePartitionInstance: {
+            handler(newV, oldV) {
+                if (!newV.length && oldV.length) {
+                    this.getTableData();
+                }
+            },
+            deep: true,
+        },
     },
     created() {},
     mounted() {
-        // window.vm = this;
-        setTimeout(() => {
+        window.vm = this;
+        /*   setTimeout(() => {
             this.showPopover = true;
-        }, 2000);
+        }, 2000); */
     },
     methods: {
         /**
@@ -248,39 +254,25 @@ export default {
             // 查询设备列表
             this.curentSelectTree1.length && this.getTableData();
         },
-        focusChange1(status) {
-            // console.log("focusChange", status);
-        },
         /**
          * 空间 分区类型树
          */
-        /*  treeChange2(data, dataObj) {
-            // 清空选中的分区下的实例
-            this.spacePartitionInstance = [];
-            if (!dataObj) {
-                this.curentSelectTree2 = [];
-            } else {
-                // 筛选树的最后一级,按照组件返回数组的name中/的个数
-                this.curentSelectTree2 = dataObj.filter((v) => v.name.split("/").length === 2).map((v) => v.id);
-            }
-        }, */
         spacePartitionTypeConfirm(data) {
             // 查询分区下实例列表
             if (this.spacePartitionType.length) {
                 this.getPartiInstance();
             }
+            // 查询表格
+            this.getTableData();
         },
         /**
          * 空间 分区下实例
          */
         selectConfirm(data) {
-            console.log("selectConfirm");
-            console.log(data);
-            console.log(this.spacePartitionInstance);
-        },
-        focusChange2(status) {
-            // console.log("focusChange", status);
+            // 查询表格
+            this.getTableData();
         },
+
         /**
          * 空间功能类型
          */
@@ -291,9 +283,8 @@ export default {
                 // 筛选树的最后一级,按照组件返回数组的name中/的个数
                 this.curentSelectTree3 = dataObj.filter((v) => v.name.split("/").length === 3).map((v) => v.id);
             }
-        },
-        focusChange3(status) {
-            // console.log("focusChange", status);
+            // 查询表格
+            this.getTableData();
         },
         /**
          * 显示弹窗时的处理
@@ -313,7 +304,9 @@ export default {
             console.log(res);
             let tree = res?.content || [];
             // 遍历tree,使其id属性变为为_id属性, code属性变成id属性
+            console.time(1);
             this.dataTree1 = mapTree(tree, "id->_id", "code->id");
+            console.timeEnd(1);
         },
         /**
          * 空间分区类型 列表
@@ -362,12 +355,13 @@ export default {
             this.dataTree3 = array2Tree(data, "parentCode");
         },
         async getTableData() {
+            // console.trace("getTableData");
             // 东坝地上二层
             let postParams = {
                 equipTypes: this.curentSelectTree1, //设备类型  //["FFFSSN"],
-                zoneTypes: [], //空间类型
-                spaceIds: [], //空间实例id
-                funcTypes: [], //空间功能区类型
+                zoneTypes: this.spacePartitionType, //空间类型
+                spaceIds: this.spacePartitionInstance, //空间实例id
+                funcTypes: this.curentSelectTree3, //空间功能区类型
                 floorId: "Fl11010500296bc7ca3a0d5d41419cf95c5b45116400",
                 buildingId: "Bd1101050029cb77fbd1846611eaac87cd1cd6a961c6",
             };
@@ -387,7 +381,7 @@ export default {
                 }
             });
             let tableData = Object.values(map);
-            tableData.unshift({ codeName: "实例总数量: " + data.length });
+            tableData.length && tableData.unshift({ codeName: "实例总数量: " + data.length });
             this.tableData = tableData;
         },
         /**
@@ -432,28 +426,38 @@ export default {
             // dialogTableVisible
             this.dialogTableVisible = false;
             this.showPopover = false;
-            clearTimeout(this.timer);
+            // clearTimeout(this.timer);
             this.$emit("closeModal");
         },
         /**
          * 点击弹窗确定,提交接口
          */
-        confirm() {
-            /**
-             * 设备实例范围:
-             * []
-             * 空间
-             * 分区类型
-             * []
-             * 分区下实例
-             * id
-             * 空间功能类型
-             * []
-             *
-             */
-            this.dialogTableVisible = false;
-            this.showPopover = false;
-            clearTimeout(this.timer);
+        async confirm() {
+            let postParams = {
+                id: "48598fc65edd4f2f8402202f0b793972",
+                graphId: "806a12663cb147cebefb393d49fc0357",
+                returnType: "equip", // 返回类型(equip: 设备, equipGroup: 设备组, zone: 空间)
+                commond: "query", // 命令类型(query: 查询, delete: 删除)
+                params: {
+                    equipTypes: this.curentSelectTree1, //设备类型  //["FFFSSN"],
+                    zoneTypes: this.spacePartitionType, //空间类型
+                    spaceIds: this.spacePartitionInstance, //空间实例id
+                    funcTypes: this.curentSelectTree3, //空间功能区类型
+                },
+                note: "",
+            };
+            console.log(postParams);
+            let res = await ruleCreate(postParams);
+            console.log("===============");
+            console.log(res);
+            if (res.result === "success") {
+                this.$message.success("添加成功");
+                this.dialogTableVisible = false;
+                this.showPopover = false;
+            } else {
+                this.$message.error(res.message || "添加失败");
+            }
+            // clearTimeout(this.timer);
         },
     },
 };

+ 136 - 110
src/store/index.ts

@@ -1,118 +1,144 @@
-import Vue from 'vue'
-import { delete } from 'vue/types/umd';
-import Vuex from 'vuex'
+import Vue from "vue";
+import Vuex from "vuex";
 
-Vue.use(Vuex)
+Vue.use(Vuex);
 
 export default new Vuex.Store({
-  state: {
-    editCmd: '', //编辑器编辑命令
-    legendObj: null, //获取的相关图例数据obj
-    graphId: '',    //图 id 用于读图
-    id: '',        // id  用于读图
-    isPub: 0,     // 用于读图 区分读取 已发布 or 未发布
-    projectId: 'Pj1101050029',  // projectId
-    categoryId: '',   //类型id 用于读图
-    folderId: '',// 文件夹id
-    tupoName: '',  //拓扑图名称
-    version: "", //版本号
-    equipmentItemList: [], // 图上相关的设备实例
-    equipmentItemNum: 0, // 图上相关的设备实例的数量
-    equipItemList: {},// 图上相关的设备实例
-    equipItemNum: 0,// 图上相关的设备的数量
-    zoneItemList: {},// 图上相关的空间实例
-    zoneItemNum: 0,// 图上相关的空间实例的数量
-    style: {},// 样式库信息
-    equiPos: {},// 设备位置信息
-  },
-  mutations: {
-    // 修改编辑器命令
-    SETCHOICELEHEND(state, data) {
-      state.editCmd = data;
-    },
-    // 修改编辑器图例
-    SETLEGENDOBJ(state, data) {
-      state.legendObj = data;
-    },
-    // 设置项目id
-    SETPROJECT(state, data) {
-      state.graphId = data.graphId;   //图 id 用于读图
-      state.id = data.id;       // id  用于读图
-      // projectId: ''  // projectId
-    },
-    // 设置项目id
-    SETISPUB(state, val) {
-      state.isPub = val;   // 是否发布 用于读图
-    },
-    // 设置类型id
-    SETCATEGROY(state, val) {
-      state.categoryId = val.categoryId;
-    //   state.folderId = val.folderId;
-      state.tupoName = val.name;  //拓扑图名称
-      state.version = val.version; //版本号
-    },
-    SETVERSION(state, val){
-      console.log('asdfasfas',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;
+    state: {
+        editCmd: "", //编辑器编辑命令
+        legendObj: null, //获取的相关图例数据obj
 
-      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
-    },
-    // 初始化设备位置信息
-    INITEQUIPOS(state, data) {
-        state.equiPos = data;
-    },
-    // 初始化样式库信息
-    INITSTYLE(state, data) {
-        state.style = data;
-    },
-    // 添加样式信息
-    ADDSTYLE(state, data) {
-        // const {id, style} = {...data}
-        // state.style[data.id] = style
-    },
-    // 增加设备实例item
-    ADDEQUIP(state, item): void {
-        // @ts-ignore
-        if (!state.equipItemList[item.id]) {
-            // @ts-ignore
-            state.equipItemList[item.id] = item;
-            state.equipItemNum = Object.keys(state.equipItemList).length;
-        }
+        name: "", //图名称
+        folderId: "", //文件id
+        folderName: "", //文件夹名称
+        buildingId: "", //建筑id
+        floorId: "", //楼层id
+        floorMap: "", //floorMap
+        floorLocalName: "", //楼层本地名称
+        id: "", //图id
+        graphId: "", //图graphId
+        state: "", //图状态,  Draft: 未发布, WaitCheck: 待审核, Checked: 审核完成, Recyle: 回收站, Publish: 发布
+
+        // graphId: '',    //图 id 用于读图
+        // id: '',        // id  用于读图
+        isPub: 0, // 用于读图 区分读取 已发布 or 未发布
+        projectId: "Pj1101050029", // projectId
+        categoryId: "", //类型id 用于读图
+        // folderId: '',// 文件夹id
+        tupoName: "", //拓扑图名称
+        version: "", //版本号
+        equipmentItemList: [], // 图上相关的设备实例
+        equipmentItemNum: 0, // 图上相关的设备实例的数量
+        equipItemList: {}, // 图上相关的设备实例
+        equipItemNum: 0, // 图上相关的设备的数量
+        zoneItemList: {}, // 图上相关的空间实例
+        zoneItemNum: 0, // 图上相关的空间实例的数量
+        style: {}, // 样式库信息
+        equiPos: {}, // 设备位置信息
     },
-    DELETEQUIP(state): void {
-        // 如果设备实例数组中parent 为null 则删除该数组
-        let arr1 = Object.keys(state.equipItemList);
-        if (!arr1.length) return;
-        
-        arr1.forEach(key => {
+    mutations: {
+        // 修改编辑器命令
+        SETCHOICELEHEND(state, data) {
+            state.editCmd = data;
+        },
+        // 修改编辑器图例
+        SETLEGENDOBJ(state, data) {
+            state.legendObj = data;
+        },
+        // 设置项目信息
+        SETPROJECT(state, data) {
+            // name:'',//图名称
+            // folderId: "", //文件id
+            // folderName: "", //文件夹名称
+            // buildingId: "", //建筑id
+            // floorId: "", //楼层id
+            // floorMap: "", //floorMap
+            // floorLocalName: "", //楼层本地名称
+            // id: "", //图id
+            // graphId: "", //图graphId
+            // state:'', //图状态,  Draft: 未发布, WaitCheck: 待审核, Checked: 审核完成, Recyle: 回收站, Publish: 发布
+
+            // const { folderId, folderName, buildingId, floorId, floorMap, floorLocalName, id, graphId, state } = data;
+            const arr = ["name", "folderId", "folderName", "buildingId", "floorId", "floorMap", "floorLocalName", "id", "graphId", "state"];
+            arr.map((key) => {
+                // 对传入的参数进行修改
+                if (data[key] !== undefined) {
+                    // @ts-ignore
+                    state[key] = data[key];
+                }
+            });
+        },
+        // 设置项目id
+        SETISPUB(state, val) {
+            state.isPub = val; // 是否发布 用于读图
+        },
+        // 设置类型id
+        SETCATEGROY(state, val) {
+            state.categoryId = val.categoryId;
+            //   state.folderId = val.folderId;
+            state.tupoName = val.name; //拓扑图名称
+            state.version = val.version; //版本号
+        },
+        SETVERSION(state, val) {
+            console.log("asdfasfas", 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;
+        },
+        // 初始化设备位置信息
+        INITEQUIPOS(state, data) {
+            state.equiPos = data;
+        },
+        // 初始化样式库信息
+        INITSTYLE(state, data) {
+            state.style = data;
+        },
+        // 添加样式信息
+        ADDSTYLE(state, data) {
+            // const {id, style} = {...data}
+            // state.style[data.id] = style
+        },
+        // 增加设备实例item
+        ADDEQUIP(state, item): void {
             // @ts-ignore
-            if (!state.equipItemList[key].parent) {
+            if (!state.equipItemList[item.id]) {
                 // @ts-ignore
-                delete state.equipItemList[key]
+                state.equipItemList[item.id] = item;
+                state.equipItemNum = Object.keys(state.equipItemList).length;
             }
-        })
-    }
-  },
-  actions: {
-  },
-  modules: {
-  }
-})
+        },
+        DELETEQUIP(state): void {
+            // 如果设备实例数组中parent 为null 则删除该数组
+            let arr1 = Object.keys(state.equipItemList);
+            if (!arr1.length) return;
+
+            arr1.forEach((key) => {
+                // @ts-ignore
+                if (!state.equipItemList[key].parent) {
+                    // @ts-ignore
+                    delete state.equipItemList[key];
+                }
+            });
+        },
+    },
+    actions: {},
+    modules: {},
+});

+ 33 - 5
src/views/editer.vue

@@ -2,8 +2,8 @@
     <div class="editer">
         <div class="top-bar">
             <div class="left">
-                <div class="project-name">{{ tupoName }}</div>
-                <div class="project-type">/ {{ categoryName }}</div>
+                <div class="project-name">{{ name }}</div>
+                <div class="project-type">/ {{ floorLocalName }}({{ folderName }})</div>
                 <div class="project-save">自动保存成功- v {{ version }}</div>
             </div>
             <div class="right">
@@ -25,7 +25,7 @@
 // import topoEditer from "@/components/editview/topoEditer.vue";
 import planEditer from "@/components/editview/planEditer.vue";
 import bus from "@/bus/bus";
-import { mapState } from "vuex";
+import { mapState, mapMutations } from "vuex";
 export default {
     components: { planEditer },
     data() {
@@ -34,6 +34,7 @@ export default {
         };
     },
     methods: {
+        ...mapMutations(["SETPROJECT"]),
         // 保存图片
         saveTopo() {
             bus.$emit("saveTopo");
@@ -48,11 +49,38 @@ export default {
         },
     },
     computed: {
-        ...mapState(["tupoName", "version"]),
+        ...mapState([
+            "tupoName",
+            "version",
+
+            "name",
+            "folderId",
+            "folderName",
+            "buildingId",
+            "floorId",
+            "floorMap",
+            "floorLocalName",
+            "id",
+            "graphId",
+            "state",
+        ]),
     },
     mounted() {
         this.categoryName = decodeURI(this.$route.query.categoryName);
-        console.log(decodeURI(decodeURI(window.location.href)));
+        // console.log(decodeURI(decodeURI(window.location.href)));
+
+        //     folderId: "", //文件id
+        //     folderName: "", //文件夹名称
+        //     buildingId: "", //建筑id
+        //     floorId: "", //楼层id
+        //     floorMap: "", //floorMap
+        //     floorLocalName: "", //楼层本地名称
+        //     id: "", //图id
+        //     graphId: "", //图graphId
+        //     isPub: 0, /
+        // 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.SETPROJECT(this.$route.query);
     },
 };
 </script>

+ 17 - 12
src/views/home.vue

@@ -71,8 +71,10 @@
                 <div class="main-body" v-loading="cardLoading">
                     <div class="has-data-body" v-if="cardTree.length">
                         <div class="building" v-for="buildingData in cardTree" :key="buildingData.buildingId">
+                            <!-- 建筑名称 -->
                             <p class="buinding-name"><span class="border-left"></span> {{ buildingData.localName }}</p>
                             <div class="floor" v-for="floor in buildingData.floorList" :key="floor.floorId">
+                                <!-- 楼层名称 -->
                                 <p class="floor-name">{{ floor.localName }}</p>
                                 <template v-for="t in floor.planarGraphList">
                                     <planImageCard
@@ -85,7 +87,7 @@
                                         @moveTo="moveTo"
                                         @delete="deleteGraph"
                                         @editTag="editTag"
-                                        @toEdit="toEdit(t, floor.infos)"
+                                        @toEdit="toEdit(t, floor.localName, floor.infos || {})"
                                         @download="download"
                                     ></planImageCard>
                                 </template>
@@ -377,25 +379,25 @@ export default {
         /**
          * 跳转编辑器
          */
-        toEdit(data, infos) {
-            const { id, graphId, buildingId, floorId } = data,
+        toEdit(data, floorLocalName, infos) {
+            const { name, id, graphId, buildingId, floorId } = data,
                 { floorMap } = infos,
                 { folderId, folderName } = this;
-            console.log(data, infos);
-            this.$message.warning("功能开发中");
-            return true;
+            // this.$message.warning("功能开发中");
             this.$router.push({
                 name: "Editer",
                 query: {
+                    folderId,
+                    folderName,
                     buildingId,
                     floorId,
+                    floorLocalName,
+                    name,
                     id,
                     graphId,
-                    floorMap: infos.floorMap,
-                    folderId,
-                    folderName,
+                    floorMap: floorMap || "",
                     // categoryName: encodeURI(this.categoryName),
-                    isPub: this.isPub,
+                    isPub: this.isPub === 1 ? "Publish" : "Draft", // 1: 已发布 0: 未发布
                 },
             });
         },
@@ -431,11 +433,14 @@ export default {
             if (this.isPub) {
                 res = await pubPlanerQuery(postParams);
             } else {
-                // state 1(草稿箱),state 4(回收站)
-                postParams.filters += ";state=1";
+                // state Draft(未发布),state Recyle(回收站)
+                postParams.filters += ";state='Draft'";
                 res = await planerQuery(postParams);
             }
             if (res.result !== "success") {
+                this.cardTree = [];
+                this.cardList = [];
+                this.cardLoading = false;
                 return false;
             }
             let cardTree = [],