فهرست منبع

提交添加空间

yunxing 4 سال پیش
والد
کامیت
12810ad0ed

+ 4 - 1
src/components/editview/leftToolBar.vue

@@ -172,11 +172,14 @@ li {
             font-size: 14px;
         }
         /deep/ .p-sidebar-left {
+            max-width: 220px !important;
             overflow-x: hidden;
         }
         /deep/ .p-sidebar-custom-btn {
             top: 50% !important;
-            // left: 15px !important;
+        }
+        /deep/ .p-sidebar-custom-btn-rotate {
+            left: 219px !important;
         }
         // 隐藏拖动条
         /deep/ .p-sidebar-custom-bar {

+ 8 - 1
src/components/editview/leftToolBar/addEquipmentDialog.vue

@@ -319,8 +319,14 @@ export default {
             const data = res.content.map((v) => {
                 return { id: v.id, name: v.localName };
             });
-            this.selectData = data;
             this.spacePartitionInstance = [];
+            if (data.length) {
+                this.selectData = data;
+            } else {
+                this.selectData = [];
+                // TODO: 111
+                // this.selectData = [{ disabled: true, name: "暂无数据", id: "" }];
+            }
             //   v-model="spacePartitionInstance"
             // :selectdata="selectData"
         },
@@ -484,6 +490,7 @@ export default {
 </style>
 <style lang='less' scoped>
 /deep/ .equipment-detail-dialog {
+    margin-top: 8vh !important;
     width: 1200px;
     height: 648px;
     // background-color: blueviolet;

+ 17 - 89
src/components/editview/leftToolBar/addSpaceDialog.vue

@@ -59,9 +59,9 @@
             style="width: 100%; margin-top: 10px"
             :row-class-name="tableRowClassName"
         >
-            <el-table-column prop="date" label="业务分区名称" style="width: 30%"> </el-table-column>
-            <el-table-column prop="name" label="空间实例数量" tyle="width: 30%"> </el-table-column>
-            <el-table-column prop="address" label="操作">
+            <el-table-column prop="codeName" label="业务分区名称" style="width: 30%"> </el-table-column>
+            <el-table-column prop="total" label="空间实例数量" tyle="width: 30%"> </el-table-column>
+            <el-table-column prop="classCode" label="操作">
                 <template slot-scope="scope">
                     <el-link type="primary" @click="editInfo(scope.row)" :underline="false">编辑信息点</el-link>
                 </template>
@@ -91,49 +91,11 @@ import editInfoPoint from "./editInfoPoint";
 import { ruleCreate } from "@/api/labsl";
 import { dictCategoryQuery, dictQuery, PartiInstancQuery } from "@/api/datacenter";
 import { spaceQuery } from "@/api/equipcomponent";
-import { array2Tree, mapTree } from "@/utils/utils";
+import { array2Tree } from "@/utils/utils";
 import bus from "@/bus/bus";
-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",
+    name: "addSpaceDialog",
     props: {
         showDialog: {
             type: Boolean,
@@ -143,7 +105,7 @@ export default {
     components: { Select, TreeSelect, editInfoPoint },
     data() {
         return {
-            dataTree3: [], // cloneDeep(dataTree),
+            dataTree3: [],
             selectedIds3: [],
             spacePartitionType: [],
             spacePartitionTypeData: [],
@@ -153,16 +115,7 @@ export default {
             selectData: [
                 // { id: "test1", name: "选择项" },
             ],
-            tableData: [
-                {
-                    date: "分区总数量: 12",
-                },
-                {
-                    date: "监控器",
-                    name: "12",
-                    address: "dfadfasdfa",
-                },
-            ],
+            tableData: [],
             tableDataBak: [],
             currentInfo: {}, //点击的设备类数据
             showEditInfoPoint: false, //显示编辑信息点弹窗
@@ -207,7 +160,7 @@ export default {
         },
     },
     mounted() {
-        // console.log(1)
+        window.spaceD = this;
     },
     methods: {
         ...mapMutations(["ADDRULE"]),
@@ -279,8 +232,8 @@ export default {
             const data = res.content.map((v) => {
                 return { id: v.id, name: v.localName };
             });
-            this.selectData = data;
             this.spacePartitionInstance = [];
+            this.selectData = data ;
         },
         // 空间功能类型
         async getDict() {
@@ -322,6 +275,7 @@ export default {
             const tableData = Object.values(map);
             tableData.length && tableData.unshift({ codeName: "实例总数量: " + data.length });
             this.tableData = tableData;
+            console.log(tableData);
         },
         /**
          * 合并第一行
@@ -385,7 +339,6 @@ export default {
                     },
                 ],
             };
-            debugger
             const res = await ruleCreate(postParams);
             if (res.result === "success") {
                 this.$message.success("添加成功");
@@ -393,7 +346,7 @@ export default {
                 this.ADDRULE(res.entityList[0]);
                 // 接口成功之后,发出添加空间指令
                 // TODO: 添加空间指令
-                // bus.$emit("addZone", this.tableDataBak);
+                bus.$emit("addZone", this.tableDataBak);
                 this.dialogTableVisible = false;
                 this.showPopover = false;
             } else {
@@ -403,39 +356,9 @@ export default {
     },
 };
 </script>
-<style lang="less">
-.init-popover {
-    width: 240px;
-    height: 115px;
-    background: #0091ff;
-    box-shadow: 0px 2px 10px 0px rgba(31, 36, 41, 0.1);
-    .popper__arrow::after {
-        border-bottom-color: #0091ff !important;
-    }
-    p {
-        text-align: center;
-        font-size: 14px;
-        font-family: PingFangSC-Regular, PingFang SC;
-        font-weight: 400;
-        color: #ffffff;
-        line-height: 22px;
-    }
-    .m-btn {
-        display: flex;
-        align-items: center;
-        font-size: 14px;
-        font-family: PingFangSC-Regular, PingFang SC;
-        font-weight: 400;
-        color: #0091ff;
-        height: 28px !important;
-        position: absolute;
-        bottom: 15px;
-        right: 20px;
-    }
-}
-</style>
 <style lang='less' scoped>
 /deep/ .space-detail-dialog {
+    margin-top: 8vh !important;
     width: 1200px;
     height: 648px;
     // background-color: blueviolet;
@@ -465,5 +388,10 @@ export default {
         justify-content: center;
         align-items: center;
     }
+    /deep/ .el-dialog__footer {
+        position: absolute;
+        right: 0;
+        bottom: 0;
+    }
 }
 </style>

+ 28 - 6
src/components/editview/leftToolBar/editInfoPoint.vue

@@ -133,6 +133,7 @@
                         <p>字符大小</p>
                         <el-input-number
                             style="width: 90px"
+                            class="size-input"
                             v-model="spaceData.size"
                             controls-position="right"
                             size="mini"
@@ -160,7 +161,7 @@
                     <p>边框</p>
                     <div class="property">
                         <div class="color-box">
-                            <div class="cololorSelect">
+                            <div class="cololor-select">
                                 <el-color-picker
                                     show-alpha
                                     popper-class="m-color-picker"
@@ -173,7 +174,7 @@
                         </div>
                         <div class="line-width">
                             <el-input-number
-                                style="width: 80px"
+                                style="width: 90px"
                                 v-model="spaceData.linewidth"
                                 controls-position="right"
                                 @change="changeLineWidth"
@@ -627,6 +628,7 @@ export default {
 </style>
 <style lang='less' scoped>
 /deep/ .edit-info-point-dialog {
+    margin-top: 8vh !important;
     width: 1200px;
     height: 648px;
     display: flex;
@@ -803,6 +805,15 @@ export default {
                     }
                 }
             }
+            .size {
+                height: 56px;
+                & > p {
+                    width: 90px;
+                }
+                & > p + div {
+                    margin-top: 4px !important;
+                }
+            }
         }
         // 空间样式
         .space {
@@ -827,22 +838,33 @@ export default {
                     }
                 }
             }
+            // 字符
             .font {
                 display: flex;
                 // height: 20px;
                 .color {
                     margin-right: 20px;
                     p {
-                        margin-bottom: 10px;
+                        margin-bottom: 5px;
                     }
                     .color-select {
                         top: 4px;
                     }
                 }
+                .size {
+                    .size-input {
+                        position: relative;
+                        top: 5px;
+                    }
+                }
+            }
+            .fill-color {
+                width: 200px;
+                height: 45px;
             }
             // 边框
             .border {
-                width: 240px;
+                width: 300px;
                 .property {
                     display: flex;
                     align-items: center;
@@ -851,7 +873,7 @@ export default {
                         display: flex;
                         align-items: center;
                         flex-direction: column;
-                        .cololorSelect {
+                        .cololor-select {
                             width: 32px;
                             height: 20px;
                             overflow: hidden;
@@ -871,7 +893,7 @@ export default {
                         display: flex;
                         align-items: center;
                         flex-direction: column;
-                        margin-left: 20px;
+                        margin-left: 24px;
                         position: relative;
                     }
                     span.text {

+ 6 - 7
src/components/editview/leftToolBar/equipmentList.vue

@@ -70,13 +70,12 @@
         </div>
 
         <!-- 添加设备 -->
-        <div class="addbtn" @click="openAddEqupModle"><i class="el-icon-plus"></i>添加设备</div>
+        <div class="addbtn" @click="openAddEquipDialog"><i class="el-icon-plus"></i>添加设备</div>
         <edit-info-point type="equipment" @closeModal="showEditInfoPoint = false" :code="classCode" :showDialog="showEditInfoPoint" />
     </div>
 </template>
 <script>
 import { mapMutations, mapState } from "vuex";
-import { queryCategory } from "@/api/editer";
 import bus from "@/bus/bus";
 import editInfoPoint from "./editInfoPoint";
 
@@ -121,15 +120,15 @@ export default {
     methods: {
         ...mapMutations(["SETCHOICELEHEND", "SETLEGENDOBJ"]),
         // 打开添加弹窗
-        openAddEqupModle() {
-            this.$emit("openAddEqupModle");
+        openAddEquipDialog() {
+            this.$emit("openAddEquipDialog");
         },
         /**
          * 查新设备列表
          */
         getEquipmentList() {
             // console.log("%cgetEquipmentList:::", "color:blue;background:#fff");
-            // // console.log(this.equipItemMap);
+            // console.log(this.equipItemMap);
             // const arr = this._(this.equipItemMap).values().groupBy("legendData.classCode").values().value();
             const arr = Object.values(this.equipItemMap);
             const obj = this._(arr).groupBy("legendData.classCode").value();
@@ -146,7 +145,7 @@ export default {
             }
             // console.log(equipmentList);
             this.equipmentList = equipmentList;
-            // // console.log(this.equipmentList);
+            // console.log(this.equipmentList);
         },
         /**
          * 编辑设备类
@@ -228,7 +227,7 @@ div {
     position: relative;
     display: flex;
     flex-direction: column;
-    background-color: #fff;
+    // background-color: #fff;
     .clp {
         display: flex;
         align-items: center;

+ 3 - 7
src/components/editview/leftToolBar/legendList.vue

@@ -6,10 +6,10 @@
         <!-- 管线类 -->
         <pipeList v-show="chiceStatus == 1" />
         <!-- 设备类 -->
-        <equipment-list v-show="chiceStatus == 2" @openAddEqupModle="showAddEquipmentDialog = true" />
+        <equipment-list v-show="chiceStatus == 2" @openAddEquipDialog="showAddEquipmentDialog = true" />
         <!-- 设备组 -->
         <!-- 空间 -->
-        <space-list v-show="chiceStatus == 4" @openAddEqupModle="showAddSpaceDialog = true" />
+        <space-list v-show="chiceStatus == 4" @openAddSpaceDialog="showAddSpaceDialog = true" />
         <!-- 添加设备 -->
         <add-equipment-dialog @closeModal="showAddEquipmentDialog = false" :showDialog="showAddEquipmentDialog" />
         <!-- 添加空间 -->
@@ -34,11 +34,7 @@ export default {
             // choiceLegend: "" //选中绘制类型
         };
     },
-    methods: {
-        openAddEqupModle() {
-            this.showAddEquipmentDialog = true;
-        },
-    },
+    methods: {},
 };
 </script>
 <style scoped lang="less">

+ 265 - 340
src/components/editview/leftToolBar/spaceList.vue

@@ -1,6 +1,6 @@
 <!-- 空间列表 -->
 <template>
-    <div class="space-list">
+    <div class="equip-list">
         <!-- 筛选 -->
         <div class="clp">
             <Input
@@ -12,132 +12,73 @@
                 @pressEnter="pressEnter"
                 @clear="pressEnter"
             />
-            <!-- <Popover type="confirm" placement="bottom-center">
-                <template slot="content">
-                    <div class="">
-                        <div>
-                            <span>分区类型</span>
-                            <Cascader
-                                multiple
-                                allText="全部"
-                                :data="cascaderData6"
-                                showPanel
-                                width="300"
-                                @change="changeItem"
-                                @confirm="changeItem"
-                            ></Cascader>
-                        </div>
-                        <div>
-                            <span>建筑类型</span>
-                            <Cascader
-                                multiple
-                                allText="全部"
-                                :data="cascaderData6"
-                                showPanel
-                                width="300"
-                                @change="changeItem"
-                                @confirm="changeItem"
-                            ></Cascader>
-                        </div>
-                        <el-button class="reset" type="text">重置</el-button>
-                    </div>
-                </template>
-                <span @click="screen" class="icon iconfont icon-shaixuan shaixuan"></span>
-            </Popover> -->
         </div>
-        <!-- 设备 list -->
-        <div ref="localDom" class="box-porfess" id="boxPorfess">
-            <div class="porfess" v-show="!pressMsgData.length" v-for="(items, index) in equipmentTree" :key="index">
-                <div @click="collapse(items)" class="porfess-title">
-                    <span>{{ items.aliasName }}</span>
-                    <i v-bind:class="[items.isShow ? 'caret-icon-active' : 'caret-icon', 'el-icon-arrow-down']"></i>
+        <!-- 空间 list -->
+        <div ref="localDom" class="box-profess">
+            <div class="profess" v-show="!pressMsgData.length" v-for="items in spaceList" :key="items.classCode">
+                <!-- 空间类名称 -->
+                <div @click="collapse(items)" class="profess-title">
+                    <i v-bind:class="[items.isShow ? 'caret-icon-active' : 'caret-icon', 'el-icon-caret-bottom ']"></i>
+                    <span class="code-name">{{ items.codeName }}</span>
+                    <div class="action">
+                        <Icon class="equip-edit" name="edit" @click.stop.native="editEquipment(items)" />
+                        <Icon class="equip-delete" name="delete" @click.stop.native="deleteEquipment(items)" />
+                    </div>
                 </div>
+                <!-- 空间实例列表 -->
                 <el-collapse-transition>
                     <div v-show="items.isShow">
-                        <div class="equipType" v-for="(item, i) in items.children" :key="i">
-                            <div class="equipType-title" @click="collapse(item)">
-                                <i v-bind:class="[item.isShow ? 'caret-icon-active' : 'caret-icon', 'el-icon-caret-bottom']"></i>
-                                <span>{{ item.aliasName }}</span>
+                        <div
+                            class="equipType"
+                            @click="chioceItem(item)"
+                            v-for="(item, i) in items.children"
+                            :class="[item.visible ? 'equip-visible' : 'equip-hidden', item.selected ? 'equip-selected' : '']"
+                            :key="i"
+                        >
+                            <!-- 本地名称-本地编码 -->
+                            <span
+                                class="local-name"
+                                :title="`${item.legendData.localName}${item.legendData.localId ? '-' + item.legendData.localId : ''}`"
+                                >{{ item.legendData.localName }}<span class="local-id">-{{ item.legendData.localId || "-" }}</span>
+                            </span>
+                            <!-- hover行显示小眼睛 -->
+                            <div class="toggle-eyes">
+                                <Icon :name="item.visible ? 'preview' : 'hide'" @click.native.stop="toggleItemVisible(item)" />
                             </div>
-                            <el-collapse-transition>
-                                <ul @mouseout="deletehover" v-show="item.isShow">
-                                    <li v-for="(a, b) in item.children" :key="b" @mouseover="sethover(index, i, b)" @click="clickEquipItem(a)">
-                                        <div class="left">
-                                            <div class="showEyes">
-                                                <Icon
-                                                    v-show="hoverIndex == '' + index + i + b"
-                                                    :name="a.visible ? 'preview' : 'hide'"
-                                                    @click="ShowItem(a)"
-                                                />
-                                            </div>
-                                            <div class="icon">
-                                                <img width="28" height="28" :src="a.img.url" alt="" />
-                                            </div>
-                                        </div>
-                                        <div class="right">
-                                            <div class="t" :title="a.legendData.properties.localName">
-                                                {{ a.legendData.properties.localName ? a.legendData.properties.localName : "--" }}
-                                            </div>
-                                            <div class="b" :title="a.legendData.properties.localId">
-                                                {{ a.legendData.properties.localId ? a.legendData.properties.localId : "--" }}
-                                            </div>
-                                        </div>
-                                        <div class="icons">
-                                            <Popover v-show="hoverIndex == '' + index + i + b" type="base" placement="top-center">
-                                                <template slot="content">
-                                                    <Button @click="deleteItem(a)" type="text" icon="edit">删除</Button>
-                                                </template>
-                                                <Icon name="more" />
-                                            </Popover>
-                                        </div>
-                                    </li>
-                                </ul>
-                            </el-collapse-transition>
                         </div>
                     </div>
                 </el-collapse-transition>
             </div>
-            <ul class="choiceEquip" v-show="pressMsgData.length">
-                <li v-for="(a, b) in pressMsgData" :key="b" @mouseover="sethover(10000, 10000, b)" @click="clickEquipItem(a)">
-                    <div class="left">
-                        <div class="showEyes">
-                            <Icon v-show="hoverIndex == '' + 10000 + 10000 + b" :name="a.visible ? 'preview' : 'hide'" @click="ShowItem(a)" />
-                        </div>
-                        <div class="icon">
-                            <img width="28" height="28" :src="a.img.url" alt="" />
-                        </div>
-                    </div>
-                    <div class="right">
-                        <div class="t" :title="a.legendData.properties.localName">
-                            {{ a.legendData.properties.localName ? a.legendData.properties.localName : "--" }}
-                        </div>
-                        <div class="b" :title="a.legendData.properties.localId">
-                            {{ a.legendData.properties.localId ? a.legendData.properties.localId : "--" }}
-                        </div>
-                    </div>
-                    <div class="icons">
-                        <Popover v-show="hoverIndex == '' + 10000 + 10000 + b" type="base" placement="top-center">
-                            <template slot="content">
-                                <Button @click="deleteItem(a)" type="text" icon="edit">删除</Button>
-                            </template>
-                            <Icon name="more" />
-                        </Popover>
+
+            <!-- 筛选显示的空间类,空间实例 -->
+            <div class="choice-equip" v-show="pressMsgData.length">
+                <div
+                    class="equipType"
+                    @click="chioceItem(item)"
+                    v-for="item in pressMsgData"
+                    :key="item.id"
+                    :class="[item.visible ? 'equip-visible' : 'equip-hidden', item.selected ? 'equip-selected' : '']"
+                >
+                    <span class="local-name" :title="`${item.legendData.localName}${item.legendData.localId ? '-' + item.legendData.localId : ''}`"
+                        >{{ item.legendData.localName }}<span class="local-id">-{{ item.legendData.localId || "-" }}</span>
+                    </span>
+                    <div class="toggle-eyes">
+                        <Icon :name="item.visible ? 'preview' : 'hide'" @click.native.stop="toggleItemVisible(item)" />
                     </div>
-                </li>
-            </ul>
+                </div>
+            </div>
         </div>
 
-        <!-- 添加设备 -->
-        <div class="addbtn" @click="openAddEqupModle">
-            <i class="el-icon-plus"></i>
-            添加显示空间
-        </div>
+        <!-- 添加空间 -->
+        <div class="addbtn" @click="openAddSpaceDialog"><i class="el-icon-plus"></i>添加显示空间</div>
+        <edit-info-point type="space" @closeModal="showEditInfoPoint = false" :code="classCode" :showDialog="showEditInfoPoint" />
     </div>
 </template>
 <script>
-import { mapMutations, mapState } from "vuex";
-import { queryCategory } from "@/api/editer";
+import { mapState } from "vuex";
 import bus from "@/bus/bus";
+import editInfoPoint from "./editInfoPoint";
+
 export default {
     data() {
         return {
@@ -145,77 +86,109 @@ export default {
             hoverIndex: -1,
             getPressMsg: "", //搜索框
             pressMsgData: [], //搜索对应得数组
-            equipmentTree: [], //三级设备树
+            spaceList: [], //空间列表 二维数组
             local: null, //table loading
+            classCode: "",
+            showEditInfoPoint: false,
         };
     },
+    components: { editInfoPoint },
+    computed: {
+        ...mapState(["equipItemMap", "equipItemNum"]),
+    },
+    watch: {
+        equipItemNum(newV) {
+            newV && this.getSpaceList();
+        },
+    },
+    mounted() {
+        this.getSpaceList();
+    },
     methods: {
-        ...mapMutations(["SETCHOICELEHEND", "SETLEGENDOBJ"]),
         // 打开添加弹窗
-        openAddEqupModle() {
-            this.$emit("openAddEqupModle");
+        openAddSpaceDialog() {
+            this.$emit("openAddSpaceDialog");
+        },
+        /**
+         * 查新空间列表
+         */
+        getSpaceList() {
+            // TODO: 获取vuex中空间列表数据
+            /* const arr = Object.values(this.equipItemMap);
+            const obj = this._(arr).groupBy("legendData.classCode").value();
+            const spaceList = [];
+            for (const key in obj) {
+                const element = obj[key];
+                spaceList.push({
+                    classCode: element[0].legendData.classCode,
+                    codeName: element[0].legendData.codeName,
+                    children: element,
+                    isShow: true,
+                });
+            }
+            this.spaceList = spaceList; */
+
+            const spaceArr = [
+                {
+                    classCode: "GeneralZone",
+                    codeName: "通用分区",
+                    isShow: true,
+                    children: [
+                        {
+                            id: "Eq11010500290353e50d583840c6a0b34d739dd0949b123123",
+                            visible: true,
+                            legendData: {
+                                localName: "风井",
+                                localId: "123sdf",
+                                id: "Eq11010500290353e50d583840c6a0b34d739dd0949b",
+                            },
+                        },
+                        {
+                            id: "Eq11010500290353e50d583840c6a0b34d739dd0949b123123eqwrrw",
+                            visible: true,
+                            legendData: {
+                                localName: "hhh",
+                                localId: "43qwasdfa",
+                                id: "Eq11010500290353e50d583840c6a0b34d739dd0949brweqrqer",
+                            },
+                        },
+                    ],
+                },
+            ];
+            this.spaceList = spaceArr;
+        },
+        /**
+         * 编辑空间类
+         */
+        editEquipment(items) {
+            this.classCode = items.classCode;
+            this.showEditInfoPoint = true;
         },
-        // 设置hover显示
-        sethover(a, b, c) {
-            this.hoverIndex = "" + a + b + c;
+        deleteEquipment(items) {
+            return true;
         },
-        deletehover() {
-            this.hoverIndex = -1;
+        /**
+         * 点击空间,更改图chioceItem
+         */
+        chioceItem(item) {
+            bus.$emit("chioceItem", item);
         },
-        // 是否展示图例
-        ShowItem(a) {
-            a.visible = !a.visible;
+        /**
+         * 切换空间显隐状态
+         */
+        toggleItemVisible(item) {
+            // console.log(item);
+            item.visible = !item.visible;
         },
+
         // 删除Item
         deleteItem(a) {
             bus.$emit("deleteItem", a);
         },
-        // 获取设备图例
-        getEquipItem(id) {
-            const obj = {
-                url: id,
-            };
-            this.SETLEGENDOBJ(obj);
-            const cmd = "EditEuqipment";
-            this.SETCHOICELEHEND(cmd);
-        },
-        // 筛选
-        screen() {},
-        // 判断是否再数组中
-        isinlist(item, idName, name, list) {
-            let index = -1;
-            list.forEach((item, i) => {
-                if (item[idName] == item[idName]) {
-                    index = i;
-                }
-            });
-            if (index < 0) {
-                list.push({
-                    [idName]: item[idName],
-                    [name]: item[name],
-                    isShow: true,
-                    children: [],
-                });
-            }
-            return index;
-        },
         // 折叠
         collapse(item) {
             item.isShow = !item.isShow;
         },
-        //  局部加载
-        localLoading() {
-            // 为了解决 v-if refs获取不到dom
-            setTimeout(() => {
-                this.local = this.$loading({
-                    el: this.$refs.localDom,
-                    type: "local",
-                    size: "min",
-                });
-            });
-        },
-        //
-        changeItem() {},
         // 搜索回车操作
         pressEnter() {
             const list = [];
@@ -224,78 +197,16 @@ export default {
                 return;
             }
             // 对信息点相同得提取出来
-            this.equipmentTree.forEach((item) => {
-                item.children.forEach((a) => {
-                    console.log("a.name", a);
-                    a.children.forEach((b) => {
-                        console.log("b.name", b);
-                        if (b.legendData.properties.localName.includes(this.getPressMsg)) {
-                            list.push(b);
-                        }
-                    });
+            this.spaceList.map((item) => {
+                item.children.map((a) => {
+                    if (a?.legendData?.localName.includes(this.getPressMsg)) {
+                        list.push(a);
+                    }
                 });
             });
             this.pressMsgData = list;
         },
-        // 获取设备相关的专业以及设备类型
-        getCategory(itemList) {
-            // id 数组
-            const idList = [];
-            itemList.forEach((item) => {
-                idList.push(item.legendData.attachObjectIds[0]);
-            });
-            queryCategory(idList)
-                .then((res) => {
-                    // 返回专业及其类型,根据类型 添加设备
-                    let category = res.content ? res.content : [];
-                    category.forEach((item) => {
-                        item.isShow = true;
-                        if (item.children && item.children.length) {
-                            item.children.map((child) => {
-                                let obj = [];
-                                child.isShow = true;
-                                this.equipmentItemList.forEach((choiceItem) => {
-                                    if (choiceItem.legendData.properties.classCode == child.aliasCode) {
-                                        obj.push(choiceItem);
-                                    }
-                                });
-                                if (obj.length) {
-                                    child.children = obj;
-                                }
-                                return child;
-                            });
-                        }
-                    });
-                    this.equipmentTree = category;
-                    // $loading结束
-                    this.$loading.close(this.local);
-                })
-                .catch((err) => {
-                    console.log("接口问题:", err);
-                    // $loading结束
-                    this.$loading.close(this.local);
-                });
-        },
-        // 点击设备实例
-        clickEquipItem(item) {
-            // 选中 item
-            bus.$emit("chioceItem", item);
-        },
-    },
-    computed: {
-        ...mapState(["editCmd", "equipmentItemList", "equipmentItemNum"]),
-    },
-    watch: {
-        equipmentItemNum: {
-            handler: function (val) {
-                // this.localLoading();
-                // this.getCategory(this.equipmentItemList);
-            },
-            deep: true,
-            immediate: true,
-        },
     },
-    mounted() {},
 };
 </script>
 <style lang="less" scoped>
@@ -306,18 +217,14 @@ div {
     -khtml-user-select: none; /*早期浏览器*/
     user-select: none;
 }
-ul,
-li {
-    margin: 0;
-    padding: 0;
-    list-style-type: none;
-}
-.space-list {
+
+.equip-list {
     width: 100%;
     height: 100%;
     position: relative;
     display: flex;
     flex-direction: column;
+    // background-color: #fff;
     .clp {
         display: flex;
         align-items: center;
@@ -328,76 +235,95 @@ li {
             cursor: pointer;
         }
     }
-    .box-porfess {
+    .box-profess {
         // min-height: 500px;
         flex: 1;
         overflow-y: scroll;
+        padding: 12px 0;
     }
-    .porfess {
-        .porfess-title {
+    .profess {
+        .profess-title {
             width: 100%;
-            padding: 16px 16px 0 16px;
+            height: 40px;
+            line-height: 40px;
+            display: flex;
+            padding: 0 10px 0 16px;
             display: flex;
-            justify-content: space-between;
+            align-items: center;
             cursor: pointer;
+            font-size: 14px;
+            font-weight: 600;
+            color: #1f2429;
+            .code-name {
+                margin-left: 10px;
+                flex: 1;
+            }
+            .action {
+                // width: 100px;
+                display: none;
+                .equip-delete {
+                    cursor: not-allowed;
+                }
+            }
+            &:hover {
+                .action {
+                    display: flex;
+                    align-items: center;
+                }
+            }
         }
         .equipType {
+            padding: 0 10px 0 40px;
+            display: flex;
+            align-items: center;
+            .toggle-eyes {
+                width: 20px;
+                padding-left: 4px;
+                display: flex;
+                align-items: center;
+                .p-icon {
+                    display: none;
+                }
+            }
+            &:hover {
+                background-color: #f5f6f7;
+                .p-icon {
+                    display: inline-block;
+                }
+            }
+            .local-name {
+                flex: 1;
+                height: 40px;
+                line-height: 40px;
+                font-size: 14px;
+                font-weight: 600;
+                color: #1f2429;
+                overflow: hidden;
+                text-overflow: ellipsis;
+                white-space: nowrap;
+
+                .local-id {
+                    font-weight: 500;
+                    color: #8d9399;
+                    line-height: 16px;
+                }
+            }
+
             .equipType-title {
                 margin: 20px 0 20px 18px;
                 cursor: pointer;
             }
-            ul {
-                li {
-                    width: 100%;
-                    height: 48px;
-                    display: flex;
-                    cursor: pointer;
-                    justify-content: space-around;
-                    align-items: center;
-                    &:hover {
-                        background: #f5f6f7;
-                    }
-                    .left {
-                        width: 60px;
-                        display: flex;
-                        height: 100%;
-                        align-items: center;
-                        .showEyes {
-                            width: 28px;
-                            height: 28px;
-                        }
-                        .icon {
-                            width: 28px;
-                            height: 28px;
-                            border-radius: 50% 50%;
-                            display: flex;
-                            align-items: center;
-                            justify-content: center;
-                        }
-                    }
-                    .right {
-                        padding: 4px;
-                        box-sizing: border-box;
-                        flex: 1;
-                        .t {
-                            font-size: 14px;
-                            color: #1f2429;
-                            overflow: hidden;
-                            text-overflow: ellipsis;
-                            white-space: nowrap;
-                        }
-                        .b {
-                            font-size: 10px;
-                            color: #8d9399;
-                            overflow: hidden;
-                            text-overflow: ellipsis;
-                            white-space: nowrap;
-                        }
-                    }
-                    .icons {
-                        width: 28px;
-                        height: 28px;
-                    }
+        }
+        // 选中的空间样式
+        .equip-selected {
+            background-color: #f5f6f7;
+        }
+        // 隐藏的空间列表样式
+        .equip-hidden {
+            .local-name {
+                color: #8d9399;
+                .local-id {
+                    color: #8d9399;
                 }
             }
         }
@@ -406,10 +332,6 @@ li {
     .addbtn {
         width: 100%;
         height: 40px;
-        // position: absolute;
-        // bottom: 0;
-        // left: 0;
-        // transform: translateY(-40%);
         display: flex;
         align-items: center;
         justify-content: center;
@@ -426,57 +348,60 @@ li {
         animation: whirling 0.2s linear forwards;
     }
 }
-.choiceEquip {
-    li {
-        width: 100%;
-        height: 48px;
+.choice-equip {
+    .equipType {
+        padding: 0 10px 0 20px;
         display: flex;
-        cursor: pointer;
-        justify-content: space-around;
         align-items: center;
-        &:hover {
-            background: #f5f6f7;
-        }
-        .left {
-            width: 60px;
+        .toggle-eyes {
+            width: 20px;
+            padding-left: 4px;
             display: flex;
-            height: 100%;
             align-items: center;
-            .showEyes {
-                width: 28px;
-                height: 28px;
+            .p-icon {
+                display: none;
             }
-            .icon {
-                width: 28px;
-                height: 28px;
-                border-radius: 50% 50%;
-                display: flex;
-                align-items: center;
-                justify-content: center;
+        }
+        &:hover {
+            background-color: #f5f6f7;
+            .p-icon {
+                display: inline-block;
             }
         }
-        .right {
-            padding: 4px;
-            box-sizing: border-box;
+        .local-name {
             flex: 1;
-            .t {
-                font-size: 14px;
-                color: #1f2429;
-                overflow: hidden;
-                text-overflow: ellipsis;
-                white-space: nowrap;
-            }
-            .b {
-                font-size: 10px;
+            height: 40px;
+            line-height: 40px;
+            font-size: 14px;
+            font-weight: 600;
+            color: #1f2429;
+            overflow: hidden;
+            text-overflow: ellipsis;
+            white-space: nowrap;
+
+            .local-id {
+                font-weight: 500;
                 color: #8d9399;
-                overflow: hidden;
-                text-overflow: ellipsis;
-                white-space: nowrap;
+                line-height: 16px;
             }
         }
-        .icons {
-            width: 28px;
-            height: 28px;
+
+        .equipType-title {
+            margin: 20px 0 20px 18px;
+            cursor: pointer;
+        }
+    }
+    // 选中的空间样式
+    .equip-selected {
+        background-color: #f5f6f7;
+    }
+    // 隐藏的空间列表样式
+    .equip-hidden {
+        .local-name {
+            color: #8d9399;
+            .local-id {
+                color: #8d9399;
+            }
         }
     }
 }