Browse Source

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

zhangyu 4 years ago
parent
commit
91868937e3

+ 182 - 0
src/components/editview/bottomToolBar.vue

@@ -0,0 +1,182 @@
+<template>
+    <div>
+        <div class="action-box">
+            <div class="small-block" @click="showText">
+                <i>
+                    <el-tooltip v-if="isShow" effect="dark" content="隐藏店铺名称" placement="top">
+                        <!-- <img src="@/assets/images/issue.png" alt /> -->
+                    </el-tooltip>
+                    <el-tooltip v-else effect="dark" content="显示店铺名称" placement="top">
+                        <!-- <img src="@/assets/images/issue.png" alt /> -->
+                    </el-tooltip>
+                </i>
+            </div>
+            <div class="small-block" @click="">
+                <i>
+                    <!-- <img src="../../assets/imgs/eye2.jpg" alt /> -->
+                </i>
+            </div>
+            <div class="small-size" @click="reduce">
+                <i class="reduce">-</i>
+                <i class="value">100%</i>
+                <i class="plus">+</i>
+            </div>
+            <!-- <div class="small-text">
+                <el-slider tooltip-class="tooltip-class" :min="min" v-model="sliderVal" :show-tooltip="false" @input="scale" :max="max"></el-slider>
+                100%
+            </div> -->
+            <!-- <div class="small-size" @click="plus">
+                <i>+</i>
+            </div> -->
+        </div>
+    </div>
+</template>
+<script>
+export default {
+    data() {
+        return {
+            sliderVal: 1, // 滑块值
+            active: "",
+            min: 1,
+            max: 200,
+            everyScale: 1, // 每份的放大倍数
+            isSwitch: false, // 是否开启吸附
+            isShow: false,
+        };
+    },
+
+    methods: {
+        // 适配大小
+        fitToWindow() {
+            this.$emit("fit");
+        },
+        // 下拉菜单
+        handleCommand(command) {
+            this.$emit(command);
+        },
+        // 是否开启吸附
+        handleDivideCommand(commond) {
+            this.$emit("changeAbsorb", this.isSwitch);
+        },
+        // 切割编辑
+        divide() {
+            this.active = "divide";
+            this.$emit("divide");
+        },
+        // 清除编辑
+        clearDivide() {
+            this.active = "";
+            this.$emit("clearDivide");
+        },
+        // 减
+        reduce() {
+            this.sliderVal /= 1.1;
+            if (this.sliderVal < this.min) {
+                this.sliderVal = this.min;
+            }
+            this.scale(this.sliderVal);
+        },
+        // 缩放
+        scale(val) {
+            // 换算
+            let scale = (val * this.everyScale) / 10;
+            this.$emit("scale", scale);
+        },
+        // 加
+        plus() {
+            this.sliderVal *= 1.1;
+            if (this.sliderVal > this.maxScale) {
+                this.sliderVal = this.maxScale;
+            }
+            this.scale(this.sliderVal);
+        },
+        showText() {
+            this.isShow = !this.isShow;
+            this.$emit("showText", this.isShow);
+        },
+    },
+    mounted() {},
+};
+</script>
+<style lang="less" scoped>
+.action-box {
+    width: 183px;
+    height: 32px;
+    box-shadow: 0px 3px 5px 0px rgba(141, 147, 153, 0.1);
+    border-radius: 2px;
+    border: 1px solid #c3c7cb;
+    margin: 0 auto;
+    display: flex;
+    align-items: center;
+    overflow: hidden;
+    .small-block {
+        width: 40px;
+        height: 100%;
+        border-right: 1px solid #e2e4e6;
+        display: flex;
+        align-items: center;
+        justify-content: center;
+        // padding: 12px;
+        cursor: not-allowed;
+        i {
+            width: 16px;
+            height: 16px;
+            display: inline-block;
+            img {
+                width: 100%;
+                height: 100%;
+                vertical-align: top;
+            }
+        }
+    }
+    .small-size {
+        width: 102px;
+        padding: 0 9px;
+        display: flex;
+        align-items: center;
+        justify-content: space-around;
+        .reduce,
+        .plus {
+            width: 15px;
+            display: inline-block;
+            cursor: pointer;
+            font-size: 28px;
+        }
+        .value {
+            display: inline-block;
+            flex: 1;
+            font-size: 14px;
+            color: #646a73;
+            text-align: center;
+        }
+    }
+}
+</style>
+<style lang="less">
+.action-box {
+    .el-slider__button {
+        width: 13px;
+        height: 13px;
+        border: 2px solid #025baa;
+    }
+    .el-slider__runway {
+        height: 3px;
+        background-color: #e4e7ed;
+        background: rgba(0, 0, 0, 0.45);
+        border-radius: 1px;
+    }
+    .el-slider__button-wrapper {
+        top: -17px;
+    }
+    .el-slider__bar {
+        height: 3px;
+        background-color: #025baa;
+        border-top-left-radius: 1px;
+        border-bottom-left-radius: 1px;
+    }
+    .action-box .el-slider__runway {
+        background-color: #e8e8e8 !important;
+        background: #e8e8e8 !important;
+    }
+}
+</style>

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

@@ -52,7 +52,7 @@ const leftData = [
         id: "equipList",
         name: "设备组",
         icon: "icon-shebeizu",
-        state: "disabled",
+        // state: "disabled",
     },
     {
         id: "space",

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

@@ -160,7 +160,7 @@ export default {
         },
     },
     mounted() {
-        window.spaceD = this;
+        // 
     },
     methods: {
         ...mapMutations(["ADDRULE"]),

+ 135 - 77
src/components/editview/leftToolBar/editInfoPoint.vue

@@ -167,7 +167,7 @@
                                     popper-class="m-color-picker"
                                     @change=""
                                     class="fix-box-1"
-                                    v-model="spaceData.borderColor"
+                                    v-model="spaceData.strokeColor"
                                 ></el-color-picker>
                             </div>
                             <span class="text">颜色</span>
@@ -175,7 +175,7 @@
                         <div class="line-width">
                             <el-input-number
                                 style="width: 90px"
-                                v-model="spaceData.linewidth"
+                                v-model="spaceData.lineWidth"
                                 controls-position="right"
                                 @change="changeLineWidth"
                                 size="mini"
@@ -188,7 +188,7 @@
 
                         <div class="line-width">
                             <el-select
-                                v-model="spaceData.linestyle"
+                                v-model="spaceData.lineStyle"
                                 :default-value="borderLineOption[0].id"
                                 size="mini"
                                 style="width: 90px"
@@ -232,17 +232,6 @@ const list = [
     { name: "故障状态", id: "gzzt" },
     { name: "云端控制状态", id: "gzzt1" },
     { name: "故障状态2", id: "gzzt2" },
-    { name: "故障状态3", id: "gzzt3" },
-    { name: "故障状态4", id: "gzzt4" },
-    { name: "故障状态5", id: "gzzt5" },
-    { name: "故障状态6", id: "gzzt6" },
-    { name: "故障状态7", id: "gzzt7" },
-    { name: "故障状态8", id: "gzzt8" },
-    { name: "故障状态9", id: "gzzt9" },
-    { name: "故障状态10", id: "gzzt10" },
-    { name: "故障状态11", id: "gzzt11" },
-    { name: "故障状态12", id: "gzzt12" },
-    { name: "故障状态13", id: "gzzt13" },
 ];
 export default {
     name: "editInfoPoint",
@@ -290,30 +279,32 @@ export default {
                 color: "",
                 size: 1,
                 fillColor: "",
-                borderColor: "#cccccc",
-                linewidth: 1,
-                linestyle: "Solid",
-                linestyle: "",
+                strokeColor: "#cccccc",
+                lineWidth: 1,
+                lineStyle: "",
             },
             borderLineOption: [
                 {
                     id: "Solid",
                     src: require("@/assets/images/solidLine.png"),
+                    _value: 0,
                 },
                 {
                     id: "Dashed",
                     src: require("@/assets/images/dashedLine.png"),
+                    _value: 1,
                 },
-                {
-                    id: "Dotted",
-                    src: require("@/assets/images/dotLine.png"),
-                },
+                // {
+                //     id: "Dotted",
+                //     src: require("@/assets/images/dotLine.png"),
+                //     value: 2,
+                // },
             ],
             /** -------------------空间属性使用值end-------------------------- */
         };
     },
     computed: {
-        ...mapState(["styleMap", "state", "id", "graphId", "buildingId", "floorId", "equipItemMap"]),
+        ...mapState(["styleMap", "state", "id", "graphId", "buildingId", "floorId", "equipItemMap", "zoneIteMap"]),
     },
     watch: {
         // 是否打开弹窗
@@ -322,24 +313,35 @@ export default {
             // 打开弹窗
             val && this.initDialog();
         },
-        spaceData: {
-            handler(newV, oldV) {
-                // // console.log("spaceData");
-                if (newV.linestyle) {
+        // spaceData: {
+        //     handler(newV, oldV) {
+        //         // console.log("spaceData", newV.lineStyle);
+
+        //     },
+        //     deep: true,
+        // },
+        // code(newV, oldV) {
+        //     if (newV && newV !== oldV) {
+        //         // this.getInfoPoint();
+        //     }
+        // },
+        /**
+         * 切换tab到属性
+         */
+        tab(newV) {
+            if (newV === 1) {
+                // 设置空间的线型样式
+                if (this.type === "space" && this.spaceData.lineStyle !== undefined) {
                     this.$nextTick(() => {
                         this.setLineStyle();
                     });
                 }
-            },
-            deep: true,
-        },
-        code(newV, oldV) {
-            if (newV && newV !== oldV) {
-                // this.getInfoPoint();
             }
         },
     },
-    mounted() {},
+    mounted() {
+        //
+    },
     methods: {
         ...mapMutations(["ADDSTYLE"]),
         // 展示标签输入框
@@ -350,36 +352,55 @@ export default {
             });
         },
         initDialog() {
-            this.spaceData = {
-                color: "",
-                size: 1,
-                fillColor: "",
-                borderColor: "#cccccc",
-                linewidth: 1,
-                linestyle: "",
-            };
             this.tab = 0;
-            this.$nextTick(() => {
-                this.setLineStyle();
-            });
             // 获取信息点值
             this.getInfoPoint();
-            // 获取公式,属性信息
+            switch (this.type) {
+                case "equipment":
+                    this.initEquipment();
+                    break;
+                case "space":
+                    this.initSpace();
+                    break;
+                case "equipmentGroup":
+                    break;
+                default:
+                    break;
+            }
+        },
+        /**
+         * 初始化设备数据
+         */
+        initEquipment() {
             const styleMap = { ...this.styleMap.defaultEquipStyle, ...(this.styleMap[this.code] || {}) };
+            console.log("styleMap:", styleMap);
             const { formula, url, color, size } = styleMap;
             this.chooseList = JSON.parse(formula || "[]");
             // color 8位hex转rgba
+            // 设备数据
             this.equipmentData = { url, color: new SColor(color).toRgba(), size, imgUrl: "" };
-            // 设置设备/设备组/空间 图片地址
             const imgUrl = url ? imgBaseUrl + url : "";
-            // equipment 设备, equipmentGroup 设备组, space 空间
-            const dict = {
-                equipment: "equipmentData",
-                equipmentGroup: "equipmentGroupData",
-                space: "spaceData",
+            this.initImgUrl(imgUrl, "equipmentData");
+        },
+        /**
+         * 初始化空间数据
+         */
+        initSpace() {
+            const spaceStyleMap = { ...this.styleMap.defaultZoneStyle, ...(this.styleMap[this.code] || {}) };
+            console.log("styleMap:", spaceStyleMap);
+            // eslint-disable-next-line prefer-const
+            let { formula, color, size, fillColor, strokeColor, lineWidth, lineStyle } = spaceStyleMap;
+            this.chooseList = JSON.parse(formula || "[]");
+            // lineStyle转换
+            lineStyle = this.borderLineOption[lineStyle].id;
+            this.spaceData = {
+                color: new SColor(color).toRgba(),
+                size,
+                fillColor: new SColor(fillColor).toRgba(),
+                strokeColor: new SColor(strokeColor).toRgba(),
+                lineWidth,
+                lineStyle,
             };
-            // console.log(imgUrl);
-            imgUrl && this.initImgUrl(imgUrl, dict[this.type]);
         },
         /**
          * 设置设备/设备组/空间 图片地址
@@ -393,18 +414,19 @@ export default {
                     this[data].imgUrl = res;
                 });
         },
+        /**
+         * 查询信息点
+         */
         async getInfoPoint() {
-            // console.time(1);
             const res = await dictQuery({ pageNumber: 1, pageSize: 1000, type: this.code });
-            // console.timeEnd(1);
-            // console.time(2);
             let data = res.content;
             // 按照一级名称,将一维数组拆分成二维数组
             data = this._(data).groupBy("firstName").values().value();
             this.list = data;
-            // console.timeEnd(2);
         },
-        // 添加标签
+        /**
+         * 添加自定义公式
+         */
         handleInputConfirm() {
             const inputValue = this.inputValue;
             if (inputValue) {
@@ -413,7 +435,7 @@ export default {
             this.inputVisible = false;
             this.inputValue = "";
         },
-        // 删除标签
+        // 删除公式 标签
         handleClose(tag) {
             this.chooseList.splice(this.chooseList.indexOf(tag), 1);
         },
@@ -429,33 +451,24 @@ export default {
          */
         async confirm() {
             // equipment 设备, equipmentGroup 设备组, space 空间
-            const formula = JSON.stringify(this.chooseList);
-            // eslint-disable-next-line prefer-const
-            let { color, url, size } = this.equipmentData;
-            // eslint-disable-next-line prefer-const
-            let colorlist = rgbaNum(color);
             let style = {};
             switch (this.type) {
                 case "equipment":
-                    color = new SColor(Number(colorlist[0]), Number(colorlist[1]), Number(colorlist[2]), colorlist[3] * 255).value;
-                    style = { color, size, formula, url };
+                    style = this.uploadEquipment();
                     break;
                 case "equipmentGroup":
                     break;
                 case "space":
+                    style = this.uploadSpace();
                     break;
-
                 default:
                     break;
             }
-            // console.log({ id: this.code, style });
             let res = "";
             // 上传的style全量信息
             const postStyle = { ...this.styleMap, [this.code]: style };
             delete postStyle.defaultEquipStyle;
-            // console.log("===================");
-            // console.log(postStyle);
-            // console.log("===================");
+            delete postStyle.defaultZoneStyle;
             // 未发布接口
             if (this.state === "Draft") {
                 res = await planerUpdate({
@@ -487,8 +500,19 @@ export default {
             }
             if (res.result === "success") {
                 this.ADDSTYLE({ id: this.code, style });
-                // 修改图上设备类 样式
-                SPlanDecorator.equipMapDecorator(this.code, this.equipItemMap, this.styleMap);
+                // 修改图上设备类/设备组/空间 样式
+                switch (this.type) {
+                    case "equipment":
+                        SPlanDecorator.equipMapDecorator(this.code, this.equipItemMap, this.styleMap);
+                        break;
+                    case "equipmentGroup":
+                        break;
+                    case "space":
+                        SPlanDecorator.zoneMapDecorator(this.code, this.zoneIteMap, this.styleMap);
+                        break;
+                    default:
+                        break;
+                }
                 this.dialogVisible = false;
                 this.$emit("closeModal");
             } else {
@@ -496,6 +520,39 @@ export default {
             }
         },
         /**
+         * 设备上传参数处理
+         */
+        uploadEquipment() {
+            const formula = JSON.stringify(this.chooseList);
+            // eslint-disable-next-line prefer-const
+            let { color, url, size } = this.equipmentData;
+            const colorlist = rgbaNum(color);
+            color = new SColor(Number(colorlist[0]), Number(colorlist[1]), Number(colorlist[2]), colorlist[3] * 255).value;
+            return { color, size, formula, url };
+        },
+        /**
+         * 空间上传参数处理
+         */
+        uploadSpace() {
+            const formula = JSON.stringify(this.chooseList);
+            const handleColor = (color) => {
+                const colorlist = rgbaNum(color);
+                return new SColor(Number(colorlist[0]), Number(colorlist[1]), Number(colorlist[2]), colorlist[3] * 255).value;
+            };
+            // eslint-disable-next-line prefer-const
+            let { color, size, fillColor, strokeColor, lineWidth, lineStyle } = this.spaceData;
+            lineStyle = this.borderLineOption.filter((v) => v.id === lineStyle)[0]._value;
+            return {
+                color: handleColor(color),
+                size,
+                formula,
+                fillColor: handleColor(fillColor),
+                strokeColor: handleColor(strokeColor),
+                lineWidth,
+                lineStyle,
+            };
+        },
+        /**
          * 属性
          */
         /** ----------设备的属性---------- */
@@ -589,11 +646,12 @@ export default {
         // eslint-disable-next-line @typescript-eslint/no-empty-function
         changeLineWidth() {},
         changeLineStyle() {
-            // this.setLineStyle();
+            this.setLineStyle();
         },
         setLineStyle() {
-            const img = this.borderLineOption.filter((v) => v.id === this.spaceData.linestyle)[0]?.src;
-            // // console.log(img);
+            console.log("setLineStyle");
+            const img = this.borderLineOption.filter((v) => v.id === this.spaceData.lineStyle)[0]?.src;
+            console.log(img);
             if (img) {
                 this.$refs.selectLine?.$el?.children[0].children[0].setAttribute(
                     "style",

+ 462 - 0
src/components/editview/leftToolBar/equipmentGroupList.vue

@@ -0,0 +1,462 @@
+<!-- 设备组列表 -->
+<template>
+    <div class="equip-list" id="equiplist">
+        <!-- 筛选 -->
+        <div class="clp">
+            <Input
+                class="baseItemInput"
+                :width="188"
+                iconType="search"
+                placeholder="搜索设备组名称"
+                v-model="getPressMsg"
+                @pressEnter="pressEnter"
+                @clear="pressEnter"
+                @input="pressEnter"
+            />
+        </div>
+        <!-- 设备 list -->
+        <div ref="localDom" class="box-profess" id="boxprofess">
+            <div class="profess" v-show="!getPressMsg" v-for="items in equipmentList" :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"
+                            @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>
+                        </div>
+                    </div>
+                </el-collapse-transition>
+            </div>
+
+            <!-- 筛选显示的设备类,设备实例 -->
+            <div class="choice-equip" v-show="getPressMsg && 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>
+                </div>
+            </div>
+            <!-- 筛选显示的设备类, -->
+            <div class="no-data" v-show="getPressMsg && !pressMsgData.length">
+                <p class="">暂无数据</p>
+            </div>
+        </div>
+
+        <!-- 添加显示实例 -->
+        <div class="addbtn disabled" @click="openAddEquipGroupDialog"><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 bus from "@/bus/bus";
+import editInfoPoint from "./editInfoPoint";
+
+export default {
+    data() {
+        return {
+            cascaderData6: [], // 筛选待定
+            hoverIndex: -1,
+            getPressMsg: "", //搜索框
+            pressMsgData: [], //搜索对应得数组
+            equipmentList: [], //设备列表 二维数组
+            local: null, //table loading
+            classCode: "",
+            showEditInfoPoint: false,
+        };
+    },
+    components: { editInfoPoint },
+    computed: {
+        ...mapState(["editCmd", "equipmentItemList", "equipmentItemNum", "equipItemMap", "equipItemNum"]),
+    },
+    watch: {
+        equipmentItemNum: {
+            handler: function (val) {
+                // this.localLoading();
+                // this.getCategory(this.equipmentItemList);
+            },
+            deep: true,
+            immediate: true,
+        },
+        equipItemNum(newV, oldV) {
+            // newV && this.getEquipmentList();
+        },
+    },
+    mounted() {
+        // TODO: 
+        // this.getEquipmentList();
+    },
+    methods: {
+        ...mapMutations(["SETCHOICELEHEND", "SETLEGENDOBJ"]),
+        // 打开添加弹窗
+        openAddEquipGroupDialog() {
+            this.$emit("openAddEquipGroupDialog");
+        },
+        /**
+         * 查新设备列表
+         */
+        getEquipmentList() {
+            const arr = Object.values(this.equipItemMap);
+            const obj = this._(arr).groupBy("legendData.classCode").value();
+            // console.log(arr);
+            const equipmentList = [];
+            for (const key in obj) {
+                const element = obj[key];
+                equipmentList.push({
+                    classCode: element[0].legendData.classCode,
+                    codeName: element[0].legendData.codeName,
+                    children: element,
+                    isShow: true,
+                });
+            }
+            // console.log(equipmentList);
+            this.equipmentList = equipmentList;
+            // console.log(this.equipmentList);
+        },
+        /**
+         * 编辑设备类
+         */
+        editEquipment(items) {
+            this.classCode = items.classCode;
+            this.showEditInfoPoint = true;
+        },
+        deleteEquipment(items) {
+            return true;
+        },
+        /**
+         * 点击设备,更改图chioceItem
+         */
+        chioceItem(item) {
+            bus.$emit("chioceItem", item);
+        },
+        /**
+         * 切换设备显隐状态
+         */
+        toggleItemVisible(item) {
+            // console.log(item);
+            item.visible = !item.visible;
+        },
+
+        // 删除Item
+        deleteItem(a) {
+            bus.$emit("deleteItem", a);
+        },
+        // 折叠
+        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() {
+            // TODO:
+            /*  const list = [];
+            if (!this.getPressMsg) {
+                this.pressMsgData = [];
+                return;
+            }
+            // 对信息点相同得提取出来
+            this.equipmentList.map((item) => {
+                item.children.map((equipment) => {
+                    const localName = equipment?.legendData?.localName?.toLowerCase();
+                    const localId = equipment?.legendData?.localId?.toLowerCase();
+                    const msg = this.getPressMsg.toLowerCase();
+                    if (localName.includes(msg) || localId.includes(msg)) {
+                        list.push(equipment);
+                    }
+                });
+            });
+            this.pressMsgData = list; */
+        },
+    },
+};
+</script>
+<style lang="less" scoped>
+div {
+    -moz-user-select: none; /*火狐*/
+    -webkit-user-select: none; /*webkit浏览器*/
+    -ms-user-select: none; /*IE10*/
+    -khtml-user-select: none; /*早期浏览器*/
+    user-select: none;
+}
+
+.equip-list {
+    width: 100%;
+    height: 100%;
+    position: relative;
+    display: flex;
+    flex-direction: column;
+    // background-color: #fff;
+    .clp {
+        display: flex;
+        align-items: center;
+        justify-content: space-between;
+        padding-top: 12px;
+        padding-right: 6px;
+        .shaixuan {
+            cursor: pointer;
+        }
+    }
+    .box-profess {
+        // min-height: 500px;
+        flex: 1;
+        overflow-y: scroll;
+        padding: 12px 0;
+        .no-data {
+            position: relative;
+            top: 50%;
+            transform: translateY(-50%);
+            text-align: center;
+        }
+    }
+    .profess {
+        .profess-title {
+            width: 100%;
+            height: 40px;
+            line-height: 40px;
+            display: flex;
+            padding: 0 10px 0 16px;
+            display: flex;
+            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;
+            }
+        }
+        // 选中的设备样式
+        .equip-selected {
+            background-color: #f5f6f7;
+        }
+        // 隐藏的设备列表样式
+        .equip-hidden {
+            .local-name {
+                color: #8d9399;
+                .local-id {
+                    color: #8d9399;
+                }
+            }
+        }
+    }
+
+    .addbtn {
+        width: 100%;
+        height: 40px;
+        display: flex;
+        align-items: center;
+        justify-content: center;
+        box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.11);
+        cursor: pointer;
+        &:hover {
+            color: #0091ff;
+        }
+    }
+    .disabled {
+        cursor: not-allowed;
+        &:hover {
+            color: initial;
+        }
+    }
+    .caret-icon {
+        animation: nowhirling 0.2s linear forwards;
+    }
+    .caret-icon-active {
+        animation: whirling 0.2s linear forwards;
+    }
+}
+.choice-equip {
+    .equipType {
+        padding: 0 10px 0 20px;
+        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;
+        }
+    }
+    // 选中的设备样式
+    .equip-selected {
+        background-color: #f5f6f7;
+    }
+    // 隐藏的设备列表样式
+    .equip-hidden {
+        .local-name {
+            color: #8d9399;
+            .local-id {
+                color: #8d9399;
+            }
+        }
+    }
+}
+.reset {
+    position: absolute;
+    bottom: 16px;
+    left: 24px;
+}
+@keyframes whirling {
+    0% {
+        transform: rotate(-90deg);
+        -ms-transform: rotate(-90deg); /* Internet Explorer */
+        -moz-transform: rotate(-90deg); /* Firefox */
+        -webkit-transform: rotate(-90deg); /* Safari 和 Chrome */
+        -o-transform: rotate(-90deg); /* Opera */
+    }
+    100% {
+        transform: rotate(0deg);
+        -ms-transform: rotate(0deg); /* Internet Explorer */
+        -moz-transform: rotate(0deg); /* Firefox */
+        -webkit-transform: rotate(0deg); /* Safari 和 Chrome */
+        -o-transform: rotate(0deg); /* Opera */
+    }
+}
+@keyframes nowhirling {
+    0% {
+        transform: rotate(0deg);
+        -ms-transform: rotate(0deg); /* Internet Explorer */
+        -moz-transform: rotate(0deg); /* Firefox */
+        -webkit-transform: rotate(0deg); /* Safari 和 Chrome */
+        -o-transform: rotate(0deg); /* Opera */
+    }
+    100% {
+        transform: rotate(-90deg);
+        -ms-transform: rotate(-90deg); /* Internet Explorer */
+        -moz-transform: rotate(-90deg); /* Firefox */
+        -webkit-transform: rotate(-90deg); /* Safari 和 Chrome */
+        -o-transform: rotate(-90deg); /* Opera */
+    }
+}
+</style>

+ 19 - 5
src/components/editview/leftToolBar/equipmentList.vue

@@ -11,11 +11,12 @@
                 v-model="getPressMsg"
                 @pressEnter="pressEnter"
                 @clear="pressEnter"
+                @input="pressEnter"
             />
         </div>
         <!-- 设备 list -->
         <div ref="localDom" class="box-profess" id="boxprofess">
-            <div class="profess" v-show="!pressMsgData.length" v-for="items in equipmentList" :key="items.classCode">
+            <div class="profess" v-show="!getPressMsg" v-for="items in equipmentList" :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>
@@ -51,7 +52,7 @@
             </div>
 
             <!-- 筛选显示的设备类,设备实例 -->
-            <div class="choice-equip" v-show="pressMsgData.length">
+            <div class="choice-equip" v-show="getPressMsg && pressMsgData.length">
                 <div
                     class="equipType"
                     @click="chioceItem(item)"
@@ -67,6 +68,10 @@
                     </div>
                 </div>
             </div>
+            <!-- 筛选显示的设备类, -->
+            <div class="no-data" v-show="getPressMsg && !pressMsgData.length">
+                <p class="">暂无数据</p>
+            </div>
         </div>
 
         <!-- 添加显示实例 -->
@@ -201,9 +206,12 @@ export default {
             }
             // 对信息点相同得提取出来
             this.equipmentList.map((item) => {
-                item.children.map((a) => {
-                    if (a?.legendData?.localName.includes(this.getPressMsg)) {
-                        list.push(a);
+                item.children.map((equipment) => {
+                    const localName = equipment?.legendData?.localName?.toLowerCase();
+                    const localId = equipment?.legendData?.localId?.toLowerCase();
+                    const msg = this.getPressMsg.toLowerCase();
+                    if (localName.includes(msg) || localId.includes(msg)) {
+                        list.push(equipment);
                     }
                 });
             });
@@ -243,6 +251,12 @@ div {
         flex: 1;
         overflow-y: scroll;
         padding: 12px 0;
+        .no-data {
+            position: relative;
+            top: 50%;
+            transform: translateY(-50%);
+            text-align: center;
+        }
     }
     .profess {
         .profess-title {

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

@@ -8,6 +8,7 @@
         <!-- 设备类 -->
         <equipment-list v-show="chiceStatus == 2" @openAddEquipDialog="showAddEquipmentDialog = true" />
         <!-- 设备组 -->
+        <equipment-group-list v-show="chiceStatus == 3" @openAddEquipGroupDialog="showAddEquipmentGroupDialog = true" />
         <!-- 空间 -->
         <space-list v-show="chiceStatus == 4" @openAddSpaceDialog="showAddSpaceDialog = true" />
         <!-- 添加设备 -->
@@ -20,16 +21,18 @@
 <script>
 import pipeList from "./pipeList.vue";
 import equipmentList from "./equipmentList.vue";
+import equipmentGroupList from "./equipmentGroupList.vue";
 import spaceList from "./spaceList.vue";
 import addBaseItem from "./addBaseItem.vue";
 import addEquipmentDialog from "./addEquipmentDialog";
 import addSpaceDialog from "./addSpaceDialog";
 export default {
-    components: { pipeList, equipmentList, spaceList, addBaseItem, addEquipmentDialog, addSpaceDialog },
+    components: { pipeList, equipmentList, equipmentGroupList, spaceList, addBaseItem, addEquipmentDialog, addSpaceDialog },
     props: ["chiceStatus"],
     data() {
         return {
             showAddEquipmentDialog: false, //添加设备弹窗显隐状态
+            showAddEquipmentGroupDialog: false, //添加设备组弹窗显隐状态
             showAddSpaceDialog: false, //添加空间弹窗显隐状态
             // choiceLegend: "" //选中绘制类型
         };

+ 13 - 9
src/components/editview/leftToolBar/spaceList.vue

@@ -11,6 +11,7 @@
                 v-model="getPressMsg"
                 @pressEnter="pressEnter"
                 @clear="pressEnter"
+                @input="pressEnter"
             />
         </div>
         <!-- 空间 list -->
@@ -94,10 +95,10 @@ export default {
     },
     components: { editInfoPoint },
     computed: {
-        ...mapState(["equipItemMap", "equipItemNum"]),
+        ...mapState(["zoneIteMap", "zoneItemNum"]),
     },
     watch: {
-        equipItemNum(newV) {
+        zoneItemNum(newV) {
             newV && this.getSpaceList();
         },
     },
@@ -114,7 +115,7 @@ export default {
          */
         getSpaceList() {
             // TODO: 获取vuex中空间列表数据
-            /* const arr = Object.values(this.equipItemMap);
+            const arr = Object.values(this.zoneIteMap);
             const obj = this._(arr).groupBy("legendData.classCode").value();
             const spaceList = [];
             for (const key in obj) {
@@ -126,9 +127,9 @@ export default {
                     isShow: true,
                 });
             }
-            this.spaceList = spaceList; */
+            this.spaceList = spaceList;
 
-            const spaceArr = [
+            /*  const spaceArr = [
                 {
                     classCode: "GeneralZone",
                     codeName: "通用分区",
@@ -155,7 +156,7 @@ export default {
                     ],
                 },
             ];
-            this.spaceList = spaceArr;
+            this.spaceList = spaceArr; */
         },
         /**
          * 编辑空间类
@@ -198,9 +199,12 @@ export default {
             }
             // 对信息点相同得提取出来
             this.spaceList.map((item) => {
-                item.children.map((a) => {
-                    if (a?.legendData?.localName.includes(this.getPressMsg)) {
-                        list.push(a);
+                item.children.map((space) => {
+                    const localName = space?.legendData?.localName?.toLowerCase();
+                    const localId = space?.legendData?.localId?.toLowerCase();
+                    const msg = this.getPressMsg.toLowerCase();
+                    if (localName.includes(msg) || localId.includes(msg)) {
+                        list.push(space);
                     }
                 });
             });

+ 14 - 4
src/components/editview/planEditer.vue

@@ -14,6 +14,9 @@
                 <rightPropertyBar></rightPropertyBar>
             </div>
         </div>
+        <div class="bottom-bar">
+            <bottomToolBar />
+        </div>
     </div>
 </template>
 <script>
@@ -21,20 +24,20 @@ import leftToolBar from "./leftToolBar";
 import rightPropertyBar from "./rightPropertyBar";
 import basePlanEditer from "./basePlanEditer";
 import topToolBar from "./topToolBar";
+import bottomToolBar from "./bottomToolBar";
 export default {
-    components: { leftToolBar, rightPropertyBar, topToolBar, basePlanEditer },
+    components: { leftToolBar, rightPropertyBar, topToolBar, basePlanEditer, bottomToolBar },
     data() {
         return {};
     },
-    methods: {
-
-    },
+    methods: {},
 };
 </script>
 <style lang="less">
 .topo-editer {
     width: 100%;
     height: 100%;
+    position: relative;
     .top-bar {
         width: 100%;
         z-index: 99;
@@ -53,5 +56,12 @@ export default {
             height: 100%;
         }
     }
+    .bottom-bar {
+        position: absolute;
+        // width: 100%;
+        // right: 0;
+        bottom: 20px;
+        right: 250px;
+    }
 }
 </style>