Przeglądaj źródła

'冲突解决——2020.12.14'

zhangyu 4 lat temu
rodzic
commit
7923c578fe

+ 1 - 8
src/api/equipcomponent.ts

@@ -4,14 +4,7 @@
 import httputils from "@/api/httputils";
 const baseApi = "/equip-component";
 
-// 查询项目下所有的设备类型 --> 编辑器 添加设备 设备实例范围树
-export function categoryQuery(postParams: any): any {
-    return httputils.postJson(`${baseApi}/labsl/category`, postParams);
-}
-// 查询项目下所有的设备类型 --> 编辑器 添加设备 分区类型 列表
-export function typeQuery(postParams: any): any {
-    return httputils.postJson(`${baseApi}/labsl/zone/type`, postParams);
-}
+// 查询设备列表 
 export function equipQuery(postParams: any): any {
     return httputils.postJson(`${baseApi}/planar/equip`, postParams);
 }

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

@@ -117,47 +117,9 @@ 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 { equipQuery } from "@/api/equipcomponent";
 import { array2Tree, mapTree } from "@/utils/utils";
-const dataTree = [
-    {
-        id: "0",
-        name: "顶级顶级",
-        open: true,
 
-        children: [
-            {
-                id: "1",
-                name: "一级1",
-                // open: false,
-                //
-                children: [
-                    { id: "121", name: "测试文字溢出测试文字溢出测试文字溢出测试文字溢出测试文字溢出测" },
-                    { id: "122", name: "二级3111", checked: "uncheck" },
-                    { id: "123", name: "二级4", checked: "uncheck" },
-                    { id: "124", name: "二级1" },
-                ],
-            },
-            {
-                id: "2",
-                name: "一级2",
-                children: [
-                    { id: "221", name: "测试222", checked: "uncheck" },
-                    { id: "222", name: "二级21", checked: "uncheck" },
-                    { id: "223", name: "二级22", checked: "uncheck" },
-                ],
-            },
-            {
-                id: "3",
-                name: "一级3",
-                children: [
-                    { id: "321", name: "测试222" },
-                    { id: "322", name: "二级32" },
-                ],
-            },
-        ],
-    },
-];
 export default {
     name: "addEquipmentDialog",
     props: {
@@ -197,12 +159,12 @@ export default {
                 //     address: "dfadfasdfa",
                 // },
             ],
-            _tableData: [],
+            tableDataBak: [],
             showEditInfoPoint: false, //显示编辑信息点弹窗
         };
     },
     computed: {
-        ...mapState(["name", "folderId", "folderName", "buildingId", "floorId", "floorMap", "floorLocalName", "id", "graphId", "state"]),
+        ...mapState(["buildingId", "floorId", "id", "graphId"]),
     },
     watch: {
         // 是否打开弹窗
@@ -237,6 +199,7 @@ export default {
             deep: true,
         },
     },
+    // eslint-disable-next-line @typescript-eslint/no-empty-function
     created() {},
     mounted() {
         window.vm = this;
@@ -259,7 +222,7 @@ export default {
             this.curentSelectTree1.length && this.getTableData();
         },
         /**
-         * 空间 分区类型
+         * 空间 分区类型
          */
         spacePartitionTypeConfirm(data) {
             // 查询分区下实例列表
@@ -304,9 +267,9 @@ export default {
          * 查询设备实例树
          */
         async getCategory() {
-            let res = await dictCategoryQuery({ type: "majorSystemEquip" });
+            const res = await dictCategoryQuery({ type: "majorSystemEquip" });
             console.log(res);
-            let tree = res?.content || [];
+            const tree = res?.content || [];
             // 遍历tree,使其id属性变为为_id属性, code属性变成id属性
             console.time(1);
             this.dataTree1 = mapTree(tree, "id->_id", "code->id");
@@ -316,8 +279,8 @@ export default {
          * 空间分区类型 列表
          */
         async getType() {
-            let res = await dictCategoryQuery({ type: "space" });
-            let data = res?.content || [];
+            const res = await dictCategoryQuery({ type: "space" });
+            const data = res?.content || [];
             data.map((v) => (v.id = v.code));
             //  name,code-->    { id: "test1", name: "选择项" },
             this.spacePartitionTypeData = data;
@@ -326,18 +289,18 @@ export default {
          * 空间分区实例
          */
         async getPartiInstance() {
-            let postParams = {
+            const postParams = {
                 pageNumber: 1,
                 pageSize: 1000,
-                floorId: this.floorId, // "Fl11010500296bc7ca3a0d5d41419cf95c5b45116400",
+                floorId: this.floorId, // "Fl1101050029ecc5d3aec0644d7f88647618f7bdd023",
                 buildingId: this.buildingId, // "Bd1101050029cb77fbd1846611eaac87cd1cd6a961c6",
                 zoneTypeList: this.spacePartitionType,
             };
-            let res = await PartiInstancQuery(postParams);
+            const res = await PartiInstancQuery(postParams);
             console.log("==================");
             console.log(res);
             console.log(res.content);
-            let data = res.content.map((v) => {
+            const data = res.content.map((v) => {
                 return { id: v.id, name: v.localName };
             });
             this.selectData = data;
@@ -347,11 +310,11 @@ export default {
         },
         // 空间功能类型
         async getDict() {
-            let res = await dictQuery({
+            const res = await dictQuery({
                 filters: "code='roomFuncType'",
                 type: "GeneralZone",
             });
-            let data = res?.content[0]?.dataSource || [];
+            const data = res?.content[0]?.dataSource || [];
             data.map((v) => (v.id = v.code));
             // 构造树
             this.dataTree3 = array2Tree(data, "parentCode");
@@ -359,18 +322,18 @@ export default {
         async getTableData() {
             // console.trace("getTableData");
             // 东坝地上二层
-            let postParams = {
+            const postParams = {
                 equipTypes: this.curentSelectTree1, //设备类型  //["FFFSSN"],
                 zoneTypes: this.spacePartitionType, //空间类型
                 spaceIds: this.spacePartitionInstance, //空间实例id
                 funcTypes: this.curentSelectTree3, //空间功能区类型
-                floorId: this.floorId, // "Fl11010500296bc7ca3a0d5d41419cf95c5b45116400",
+                floorId: this.floorId, // "Fl1101050029ecc5d3aec0644d7f88647618f7bdd023",
                 buildingId: this.buildingId, // "Bd1101050029cb77fbd1846611eaac87cd1cd6a961c6",
             };
-            let res = await equipQuery(postParams);
-            let data = res.content || [];
-            this._tableData = data;
-            let map = {};
+            const res = await equipQuery(postParams);
+            const data = res.content || [];
+            this.tableDataBak = data;
+            const map = {};
             data.map((item) => {
                 if (!map[item.classCode]) {
                     map[item.classCode] = {
@@ -382,7 +345,7 @@ export default {
                     map[item.classCode].total++;
                 }
             });
-            let tableData = Object.values(map);
+            const tableData = Object.values(map);
             tableData.length && tableData.unshift({ codeName: "实例总数量: " + data.length });
             this.tableData = tableData;
         },
@@ -435,21 +398,24 @@ export default {
          * 点击弹窗确定,提交接口
          */
         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: "",
+            const postParams = {
+                content: [
+                    {
+                        id: this.id,
+                        graphId: this.graphId,
+                        returnType: "equip", // 返回类型(equip: 设备, equipGroup: 设备组, zone: 空间)
+                        commond: "query", // 命令类型(query: 查询, delete: 删除)
+                        params: {
+                            equipTypes: this.curentSelectTree1, //设备类型  //["FFFSSN"],
+                            zoneTypes: this.spacePartitionType, //空间类型
+                            spaceIds: this.spacePartitionInstance, //空间实例id
+                            funcTypes: this.curentSelectTree3, //空间功能区类型
+                        },
+                    },
+                ],
             };
             console.log(postParams);
-            let res = await ruleCreate(postParams);
+            const res = await ruleCreate(postParams);
             console.log("===============");
             console.log(res);
             if (res.result === "success") {

+ 96 - 74
src/components/editview/leftToolBar/addSpaceDialog.vue

@@ -1,3 +1,4 @@
+/* eslint-disable @typescript-eslint/no-empty-function */
 /**
  * 添加空间
  */
@@ -12,31 +13,29 @@
         :close-on-press-escape="false"
     >
         <div class="header">
-            <!-- <span class="text1">
-                <el-popover v-model="showPopover" width="240" placement="bottom-start" trigger="manual" popper-class="init-popover">
-                    <p>请先选择需展示的设备实例范围</p>
-                    <el-button size="mini" class="m-btn" @click="showPopover = false">我知道了</el-button>
-                    <span slot="reference">选择设备:</span>
-                </el-popover>
-            </span> -->
-            <!-- 空间分区类型 树 -->
-            <TreeSelect
-                title="已选项"
-                unit="个"
-                placeholder="请选择"
-                :width="240"
-                :height="300"
-                :caption="'分区类型:'"
-                :notNull="true"
-                :returnParentNode="false"
-                :isShowAllChoice="true"
-                :selectedIds="selectedIds1"
-                :choseArea="true"
-                :data="dataTree1"
-                @change="treeChange1"
-                @focusChange="focusChange1"
+            <!-- 空间分区类型 菜单 -->
+            <Select
+                width="220"
+                tipPlace="top"
+                multiple
+                caption="分区类型:"
+                @confirm="spacePartitionTypeConfirm"
+                v-model="spacePartitionType"
+                :selectdata="spacePartitionTypeData"
+                :placeholder="'请选择'"
+            />
+            <!-- 空间 分区下实例 菜单 -->
+            <Select
+                width="220"
+                tipPlace="top"
+                multiple
+                caption="分区下实例:"
+                @confirm="selectConfirm"
+                :disabled="!spacePartitionType.length"
+                v-model="spacePartitionInstance"
+                :selectdata="selectData"
+                :placeholder="'请选择'"
             />
-
             <!-- 空间功能类型 树 -->
             <TreeSelect
                 title="已选项"
@@ -48,23 +47,11 @@
                 :notNull="true"
                 :returnParentNode="false"
                 :isShowAllChoice="true"
-                :selectedIds="selectedIds2"
+                :selectedIds="selectedIds3"
                 :choseArea="true"
-                :data="dataTree2"
-                @change="treeChange2"
-                @focusChange="focusChange2"
-            />
-            <!-- 空间 分区下实例 菜单 -->
-            <Select
-                width="220"
-                tipPlace="top"
-                multiple
-                caption="分区下实例:"
-                @confirm="selectConfirm"
-                :disabled="!curentSelectTree1.length"
-                v-model="spacePartitionInstance"
-                :selectdata="selectData"
-                :placeholder="'请选择'"
+                :disabled="!spacePartitionType.length"
+                :data="dataTree3"
+                @change="treeChange3"
             />
         </div>
         <!-- 表格 -->
@@ -154,12 +141,17 @@ export default {
         return {
             timer: null,
             showPopover: false, //选择设备 popover是否显示
-            dataTree1: cloneDeep(dataTree),
-            dataTree2: cloneDeep(dataTree),
+            dataTree1: [],
+            dataTree2: [], // cloneDeep(dataTree),
+            dataTree3: [], // cloneDeep(dataTree),
             selectedIds1: [],
             selectedIds2: [],
-            curentSelectTree1: [], //选中的空间 分区类型
-            curentSelectTree2: [], //选中的空间 功能类型
+            selectedIds3: [],
+            curentSelectTree1: [], //选中的设备 实例范围
+            curentSelectTree2: [], //选中的空间 分区类型
+            spacePartitionType: [],
+            spacePartitionTypeData: [],
+            curentSelectTree3: [], //选中的空间 功能类型
             dialogTableVisible: false,
             spacePartitionInstance: "", //选中的空间分区下实例
             selectData: [
@@ -217,45 +209,42 @@ export default {
             }
         },
     },
+    // eslint-disable-next-line @typescript-eslint/no-empty-function
     created() {},
+    // eslint-disable-next-line @typescript-eslint/no-empty-function
     mounted() {},
     methods: {
         /**
-         * 空间 分区类型
+         * 空间 分区类型
          */
-        treeChange1(data, dataObj) {
-            // 清空选中的分区下的实例
-            this.spacePartitionInstance = [];
-            if (!dataObj) {
-                this.curentSelectTree1 = [];
-            } else {
-                // 筛选树的最后一级,按照组件返回数组的name中/的个数
-                this.curentSelectTree1 = 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);
-        },
-        focusChange1(status) {
-            // console.log("focusChange", status);
+            // 查询表格
+            this.getTableData();
         },
+
         /**
          * 空间功能类型
          */
-        treeChange2(data, dataObj) {
+        treeChange3(data, dataObj) {
             if (!dataObj) {
-                this.curentSelectTree2 = [];
+                this.curentSelectTree3 = [];
             } else {
                 // 筛选树的最后一级,按照组件返回数组的name中/的个数
-                this.curentSelectTree2 = dataObj.filter((v) => v.name.split("/").length === 3).map((v) => v.id);
+                this.curentSelectTree3 = dataObj.filter((v) => v.name.split("/").length === 3).map((v) => v.id);
             }
-        },
-        focusChange2(status) {
-            // console.log("focusChange", status);
+            // 查询表格
+            this.getTableData();
         },
         /**
          * 显示弹窗时的处理
@@ -269,19 +258,52 @@ export default {
                     this.showPopover = true;
                 }, 1000));
         },
-
         /**
-         *  关闭弹窗
+         * 空间分区类型 列表
          */
-        close() {
-            console.log("close");
-            // dialogTableVisible
-            this.dialogTableVisible = false;
-            this.showPopover = false;
-            clearTimeout(this.timer);
-            this.$emit("closeModal");
+        async getType() {
+            const res = await dictCategoryQuery({ type: "space" });
+            const data = res?.content || [];
+            data.map((v) => (v.id = v.code));
+            //  name,code-->    { id: "test1", name: "选择项" },
+            this.spacePartitionTypeData = data;
         },
         /**
+         * 空间分区实例
+         */
+        async getPartiInstance() {
+            const postParams = {
+                pageNumber: 1,
+                pageSize: 1000,
+                floorId: this.floorId, // "Fl11010500296bc7ca3a0d5d41419cf95c5b45116400",
+                buildingId: this.buildingId, // "Bd1101050029cb77fbd1846611eaac87cd1cd6a961c6",
+                zoneTypeList: this.spacePartitionType,
+            };
+            const res = await PartiInstancQuery(postParams);
+            console.log("==================");
+            console.log(res);
+            console.log(res.content);
+            const data = res.content.map((v) => {
+                return { id: v.id, name: v.localName };
+            });
+            this.selectData = data;
+            this.spacePartitionInstance = [];
+            //   v-model="spacePartitionInstance"
+            // :selectdata="selectData"
+        },
+        // 空间功能类型
+        async getDict() {
+            const res = await dictQuery({
+                filters: "code='roomFuncType'",
+                type: "GeneralZone",
+            });
+            const data = res?.content[0]?.dataSource || [];
+            data.map((v) => (v.id = v.code));
+            // 构造树
+            this.dataTree3 = array2Tree(data, "parentCode");
+        },
+
+        /**
          * 合并第一行
          */
         objectSpanMethod({ row, column, rowIndex, columnIndex }) {
@@ -322,7 +344,7 @@ export default {
             // dialogTableVisible
             this.dialogTableVisible = false;
             this.showPopover = false;
-            clearTimeout(this.timer);
+            // clearTimeout(this.timer);
             this.$emit("closeModal");
         },
         /**