Explorar o código

提交添加实例

yunxing %!s(int64=4) %!d(string=hai) anos
pai
achega
85651b97f4

+ 19 - 0
src/api/datacenter4.ts

@@ -0,0 +1,19 @@
+/**
+ * 数据中台通用接口文档
+ */
+import httputils from "@/api/httputils";
+const baseApi = "/datacenter4";
+
+// 查询建筑信息
+export function buildingQuery(postParams: any): any {
+    return httputils.postJson(`${baseApi}/object/building/query`, postParams);
+}
+// 查询项目下类型的信息点-->编辑器 空间功能类型 树
+
+export function dictQuery(postParams: any): any {
+    // postParams:{
+    // "filters": "code='roomFuncType'",
+    // "type": "GeneralZone"
+    // }
+    return httputils.postJson(`${baseApi}/dict/query`, postParams);
+}

+ 14 - 0
src/api/equipcomponent4.ts

@@ -0,0 +1,14 @@
+/**
+ * 数据中台专用接口文档
+ */
+import httputils from "@/api/httputils";
+const baseApi = "/equip-componet4";
+
+// 查询项目下所有的设备类型 --> 编辑器 添加设备 设备实例范围树
+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);
+}

+ 1 - 0
src/components/editview/basePlanEditer.vue

@@ -555,6 +555,7 @@ export default {
     },
     watch: {
         editCmd(val) {
+            console.trace(val)
             if (this.scene) {
                 // 设置当前编辑状态
                 this.scene.editCmd = val;

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

@@ -20,6 +20,7 @@
                 </template>
             </SidebarCustom>
         </div>
+        <info-point/>
     </div>
 </template>
 <script>
@@ -58,8 +59,9 @@ const leftData = [
 import { SidebarCustom } from "meri-design";
 import legendList from "./leftToolBar/legendList.vue";
 import { mapMutations } from "vuex";
+import infoPoint from './leftToolBar/editInfoPoint'
 export default {
-    components: { legendList, SidebarCustom },
+    components: { legendList, SidebarCustom ,infoPoint},
     data() {
         return {
             chiceStatus: -1, //选中按钮状态
@@ -156,6 +158,9 @@ li {
         .m-legend-list {
             font-size: 14px;
         }
+        /deep/ .p-sidebar-left {
+            overflow-x: hidden;
+        }
         /deep/ .p-sidebar-custom-btn {
             top: 50% !important;
             // left: 15px !important;

+ 260 - 55
src/components/editview/leftToolBar/addEquipmentDialog.vue

@@ -2,18 +2,92 @@
  * 添加显示实例(设备)
  */
 <template>
-    <el-dialog custom-class="equipment-detail-dialog" append-to-body title="添加显示实例" :visible.sync="dialogTableVisible" @close="close">
+    <el-dialog
+        custom-class="equipment-detail-dialog"
+        @click.native="showPopover && (showPopover = false)"
+        append-to-body
+        title="添加显示实例"
+        :visible="dialogTableVisible"
+        @close="close"
+        :close-on-press-escape="false"
+    >
         <div class="header">
-            <span class="text1">选择设备:</span>
-            <Cascader caption="设备实例范围:" multiple excludeTop :data="cascaderData" @confirm="equipmentConfirm" showPanel width="240"></Cascader>
+            <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"
+            />
             <span class="text2">选择空间:</span>
-            <Cascader caption="分区类型:" multiple excludeTop :data="cascaderData" showPanel width="240"></Cascader>
-            <Select width="220" tipPlace="top" caption="分区下实例:" @change="" v-model="sl" :selectdata="selectData" :placeholder="'请选择'" />
-            <Cascader caption="空间功能类型" multiple excludeTop :data="cascaderData" showPanel width="240"></Cascader>
+            <!-- 空间分区类型 树 -->
+            <TreeSelect
+                title="已选项"
+                unit="个"
+                placeholder="请选择"
+                :width="240"
+                :height="300"
+                :caption="'分区类型:'"
+                :notNull="true"
+                :returnParentNode="false"
+                :isShowAllChoice="true"
+                :selectedIds="selectedIds2"
+                :choseArea="true"
+                :data="dataTree2"
+                @change="treeChange2"
+                @focusChange="focusChange2"
+            />
+            <!-- 空间 分区下实例 菜单 -->
+            <Select
+                width="220"
+                tipPlace="top"
+                multiple
+                caption="分区下实例:"
+                @confirm="selectConfirm"
+                :disabled="!curentSelectTree2.length"
+                v-model="spacePartitionInstance"
+                :selectdata="selectData"
+                :placeholder="'请选择'"
+            />
+            <!-- 空间功能类型 树 -->
+            <TreeSelect
+                title="已选项"
+                unit="个"
+                placeholder="请选择"
+                :width="240"
+                :height="300"
+                :caption="'空间功能类型:'"
+                :notNull="true"
+                :returnParentNode="false"
+                :isShowAllChoice="true"
+                :selectedIds="selectedIds3"
+                :choseArea="true"
+                :data="dataTree3"
+                @change="treeChange3"
+                @focusChange="focusChange3"
+            />
         </div>
+        <!-- 表格 -->
         <el-table
-            v-if="false"
-            :data="tableData.concat(tableData).concat(tableData)"
+            v-show="tableData.length"
+            :data="tableData"
             max-height="420"
             :span-method="objectSpanMethod"
             style="width: 100%; margin-top: 10px"
@@ -28,21 +102,66 @@
             </el-table-column>
         </el-table>
         <!-- 无数据 -->
-        <div class="no-data-body" v-show="true || !tableData.length">
+        <div class="no-data-body" v-show="!tableData.length">
             <img src="@/assets/images/no-data.png" style="width: 116px; height: 116px" />
             <p style="font-size: 16px; margin-top: 15px">暂无数据</p>
         </div>
+        <!-- 确定,取消按钮 -->
         <div slot="footer" class="dialog-footer">
             <el-button @click="close">取 消</el-button>
-            <el-button type="primary" @click="confirm">确 定</el-button>
+            <el-button :disabled="!tableData.length" :type="tableData.length ? 'primary' : 'info'" @click="confirm">确 定</el-button>
         </div>
+        <edit-info-point @closeModal="showEditInfoPoint = false" :showDialog="showEditInfoPoint" />
     </el-dialog>
 </template>
 <script>
 /**
  * 添加显示实例
  */
-import { Select } from "meri-design";
+import editInfoPoint from "./editInfoPoint";
+import { Select, TreeSelect } from "meri-design";
+import { cloneDeep } from "lodash";
+import { dictQuery } from "@/api/datacenter4";
+import { categoryQuery, typeQuery } from "@/api/equipcomponent4";
+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: {
@@ -51,43 +170,22 @@ export default {
             required: true,
         },
     },
-    components: { Select },
+    components: { Select, TreeSelect, editInfoPoint },
     data() {
         return {
+            timer: null,
+            showPopover: false, //选择设备 popover是否显示
+            dataTree1: cloneDeep(dataTree),
+            dataTree2: cloneDeep(dataTree),
+            dataTree3: cloneDeep(dataTree),
+            selectedIds1: [],
+            selectedIds2: [],
+            selectedIds3: [],
+            curentSelectTree1: [], //选中的设备 实例范围
+            curentSelectTree2: [], //选中的空间 分区类型
+            curentSelectTree3: [], //选中的空间 功能类型
             dialogTableVisible: false,
-            cascaderData: [
-                {
-                    title: "给排水系统",
-                    id: "1",
-                    children: [
-                        {
-                            title: "水景系统",
-                            id: "1_1",
-                            children: [
-                                { title: "水景水泵", id: "1_1_1" },
-                                { title: "水景灯具", id: "1_1_2" },
-                                { title: "水景控制箱", id: "1_1_3" },
-                            ],
-                        },
-                        {
-                            title: "污水",
-                            id: "1_2code",
-                        },
-                    ],
-                },
-                {
-                    title: "弱电系统",
-                    id: "2",
-                    children: [
-                        {
-                            title: "照明系统",
-                            id: "2_1",
-                            children: [{ title: "弱", id: "2_1_1" }],
-                        },
-                    ],
-                },
-            ],
-            sl: "",
+            spacePartitionInstance: "", //选中的空间分区下实例
             selectData: [
                 { id: "test1", name: "选择项" },
                 { id: "test2", name: "单平米" },
@@ -132,6 +230,7 @@ export default {
                     name: "22",
                 },
             ],
+            showEditInfoPoint: false, //显示编辑信息点弹窗
         };
     },
     watch: {
@@ -144,20 +243,79 @@ export default {
         },
     },
     created() {},
+    async mounted() {},
     methods: {
-        initModal() {},
-
         /**
-         *  关闭弹窗
+         * 设备实例范围树更改
          */
-        close() {
-            // dialogTableVisible
-            this.dialogTableVisible = false;
-            this.$emit("closeModal");
+        treeChange1(data, dataObj) {
+            if (!dataObj) {
+                this.curentSelectTree1 = [];
+            } else {
+                // 筛选树的最后一级,按照组件返回数组的name中/的个数
+                this.curentSelectTree1 = dataObj.filter((v) => v.name.split("/").length === 3).map((v) => v.id);
+            }
+        },
+        focusChange1(status) {
+            // console.log("focusChange", status);
+        },
+        /**
+         * 空间 分区类型树
+         */
+        treeChange2(data, dataObj) {
+            // 清空选中的分区下的实例
+            this.spacePartitionInstance = [];
+            if (!dataObj) {
+                this.curentSelectTree2 = [];
+            } else {
+                // 筛选树的最后一级,按照组件返回数组的name中/的个数
+                this.curentSelectTree2 = dataObj.filter((v) => v.name.split("/").length === 2).map((v) => v.id);
+            }
         },
-        equipmentConfirm(data) {
+        /**
+         * 空间 分区下实例
+         */
+        selectConfirm(data) {
+            console.log("selectConfirm");
             console.log(data);
         },
+        focusChange2(status) {
+            // console.log("focusChange", status);
+        },
+        /**
+         * 空间功能类型
+         */
+        treeChange3(data, dataObj) {
+            if (!dataObj) {
+                this.curentSelectTree3 = [];
+            } else {
+                // 筛选树的最后一级,按照组件返回数组的name中/的个数
+                this.curentSelectTree3 = dataObj.filter((v) => v.name.split("/").length === 3).map((v) => v.id);
+            }
+        },
+        focusChange3(status) {
+            // console.log("focusChange", status);
+        },
+        /**
+         * 显示弹窗时的处理
+         */
+        async initModal() {
+            this.showPopover = false;
+            // this.tableData = []; //TODO:
+            // 没有tableData,显示popover
+            !this.tableData.length &&
+                (this.timer = setTimeout(() => {
+                    this.showPopover = true;
+                }, 1000));
+            let res1 = await categoryQuery({});
+            let res2 = await typeQuery({});
+
+            let res3 = await dictQuery({
+                filters: "code='roomFuncType'",
+                type: "GeneralZone",
+            });
+            console.log(JSON.stringify(res3,null,2))
+        },
         /**
          * 合并第一行
          */
@@ -185,15 +343,28 @@ export default {
             }
             return "m-row";
         },
-
+        /**
+         * 编辑信息点
+         */
         editInfo(data) {
             console.log(data);
+            this.showEditInfoPoint = true;
+        },
+        /**
+         *  关闭弹窗
+         */
+        close() {
+            console.log("close");
+            // dialogTableVisible
+            this.dialogTableVisible = false;
+            this.showPopover = false;
+            clearTimeout(this.timer);
+            this.$emit("closeModal");
         },
         /**
          * 点击弹窗确定,提交接口
          */
         confirm() {
-            this.dialogTableVisible = false;
             /**
              * 设备实例范围:
              * []
@@ -206,10 +377,44 @@ export default {
              * []
              *
              */
+            this.dialogTableVisible = false;
+            this.showPopover = false;
+            clearTimeout(this.timer);
         },
     },
 };
 </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/ .equipment-detail-dialog {
     width: 1200px;

+ 414 - 0
src/components/editview/leftToolBar/addSpaceDialog.vue

@@ -0,0 +1,414 @@
+/**
+ * 添加空间
+ */
+<template>
+    <el-dialog
+        custom-class="equipment-detail-dialog"
+        @click.native="showPopover && (showPopover = false)"
+        append-to-body
+        title="添加显示空间"
+        :visible="dialogTableVisible"
+        @close="close"
+        :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"
+            />
+
+            <!-- 空间功能类型 树 -->
+            <TreeSelect
+                title="已选项"
+                unit="个"
+                placeholder="请选择"
+                :width="240"
+                :height="300"
+                :caption="'空间功能类型:'"
+                :notNull="true"
+                :returnParentNode="false"
+                :isShowAllChoice="true"
+                :selectedIds="selectedIds2"
+                :choseArea="true"
+                :data="dataTree2"
+                @change="treeChange2"
+                @focusChange="focusChange2"
+            />
+            <!-- 空间 分区下实例 菜单 -->
+            <Select
+                width="220"
+                tipPlace="top"
+                multiple
+                caption="分区下实例:"
+                @confirm="selectConfirm"
+                :disabled="!curentSelectTree1.length"
+                v-model="spacePartitionInstance"
+                :selectdata="selectData"
+                :placeholder="'请选择'"
+            />
+        </div>
+        <!-- 表格 -->
+        <el-table
+            v-show="tableData.length"
+            :data="tableData"
+            max-height="420"
+            :span-method="objectSpanMethod"
+            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="操作">
+                <template slot-scope="scope">
+                    <el-link type="primary" @click="editInfo(scope.row)" :underline="false">编辑信息点</el-link>
+                </template>
+            </el-table-column>
+        </el-table>
+        <!-- 无数据 -->
+        <div class="no-data-body" v-show="!tableData.length">
+            <img src="@/assets/images/no-data.png" style="width: 116px; height: 116px" />
+            <p style="font-size: 16px; margin-top: 15px">暂无数据</p>
+        </div>
+        <!-- 确定,取消按钮 -->
+        <div slot="footer" class="dialog-footer">
+            <el-button @click="close">取 消</el-button>
+            <el-button :disabled="!tableData.length" :type="tableData.length ? 'primary' : 'info'" @click="confirm">确 定</el-button>
+        </div>
+    </el-dialog>
+</template>
+<script>
+/**
+ * 添加显示实例
+ */
+import { Select, TreeSelect } from "meri-design";
+import { cloneDeep } from "lodash";
+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: {
+        showDialog: {
+            type: Boolean,
+            required: true,
+        },
+    },
+    components: { Select, TreeSelect },
+    data() {
+        return {
+            timer: null,
+            showPopover: false, //选择设备 popover是否显示
+            dataTree1: cloneDeep(dataTree),
+            dataTree2: cloneDeep(dataTree),
+            selectedIds1: [],
+            selectedIds2: [],
+            curentSelectTree1: [], //选中的空间 分区类型
+            curentSelectTree2: [], //选中的空间 功能类型
+            dialogTableVisible: false,
+            spacePartitionInstance: "", //选中的空间分区下实例
+            selectData: [
+                { id: "test1", name: "选择项" },
+                { id: "test2", name: "单平米" },
+                { id: "test3", name: "下级分项" },
+                { id: "test4", name: "4444444" },
+                { id: "test5", name: "555555555" },
+                { id: "test6", name: "66666666666" },
+                { id: "test7", name: "6666" },
+                { id: "test8", name: "6" },
+            ],
+            tableData: [
+                {
+                    date: "分区总数量: 111111",
+                },
+                {
+                    date: "监控器",
+                    name: "111",
+                    address: "dfadfasdfa",
+                },
+                {
+                    date: "监控前端设备",
+                    name: "222",
+                },
+                {
+                    date: "监控控制箱",
+                    name: "333",
+                },
+                {
+                    date: "监控摄像头",
+                    name: "44",
+                },
+                {
+                    date: "水景系统",
+                    name: "11",
+                },
+                {
+                    date: "泳池系统",
+                    name: "11",
+                },
+                {
+                    date: "网络系统",
+                    name: "22",
+                },
+            ],
+        };
+    },
+    watch: {
+        // 是否打开弹窗
+        showDialog(val) {
+            this.dialogTableVisible = val;
+            if (val) {
+                this.initModal();
+            }
+        },
+    },
+    created() {},
+    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);
+            }
+        },
+        /**
+         * 空间 分区下实例
+         */
+        selectConfirm(data) {
+            console.log("selectConfirm");
+            console.log(data);
+        },
+        focusChange1(status) {
+            // console.log("focusChange", status);
+        },
+        /**
+         * 空间功能类型
+         */
+        treeChange2(data, dataObj) {
+            if (!dataObj) {
+                this.curentSelectTree2 = [];
+            } else {
+                // 筛选树的最后一级,按照组件返回数组的name中/的个数
+                this.curentSelectTree2 = dataObj.filter((v) => v.name.split("/").length === 3).map((v) => v.id);
+            }
+        },
+        focusChange2(status) {
+            // console.log("focusChange", status);
+        },
+        /**
+         * 显示弹窗时的处理
+         */
+        initModal() {
+            this.showPopover = false;
+            // this.tableData = []; //TODO:
+            // 没有tableData,显示popover
+            !this.tableData.length &&
+                (this.timer = setTimeout(() => {
+                    this.showPopover = true;
+                }, 1000));
+        },
+
+        /**
+         *  关闭弹窗
+         */
+        close() {
+            console.log("close");
+            // dialogTableVisible
+            this.dialogTableVisible = false;
+            this.showPopover = false;
+            clearTimeout(this.timer);
+            this.$emit("closeModal");
+        },
+        /**
+         * 合并第一行
+         */
+        objectSpanMethod({ row, column, rowIndex, columnIndex }) {
+            if (rowIndex === 0) {
+                if (columnIndex === 0) {
+                    return {
+                        rowspan: 1,
+                        colspan: 3,
+                    };
+                } else {
+                    return {
+                        rowspan: 1,
+                        colspan: 0,
+                    };
+                }
+            }
+        },
+        /**
+         * 行样式
+         */
+        tableRowClassName({ row, rowIndex }) {
+            if (rowIndex === 0) {
+                return "";
+            }
+            return "m-row";
+        },
+        /**
+         * 编辑信息点
+         */
+        editInfo(data) {
+            console.log(data);
+        },
+        /**
+         *  关闭弹窗
+         */
+        close() {
+            console.log("close");
+            // dialogTableVisible
+            this.dialogTableVisible = false;
+            this.showPopover = false;
+            clearTimeout(this.timer);
+            this.$emit("closeModal");
+        },
+        /**
+         * 点击弹窗确定,提交接口
+         */
+        confirm() {
+            /**
+             * 设备实例范围:
+             * []
+             * 空间
+             * 分区类型
+             * []
+             * 分区下实例
+             * id
+             * 空间功能类型
+             * []
+             *
+             */
+            this.dialogTableVisible = false;
+            this.showPopover = false;
+            clearTimeout(this.timer);
+        },
+    },
+};
+</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/ .equipment-detail-dialog {
+    width: 1200px;
+    height: 648px;
+    // background-color: blueviolet;
+    .header {
+        display: flex;
+        align-items: center;
+        .text1,
+        .text2 {
+            margin-right: 10px;
+        }
+        .text2 {
+            margin-left: 15px;
+        }
+        & > div {
+            margin-right: 10px;
+        }
+    }
+    .m-row {
+        color: #1f2429;
+        font-weight: 600;
+    }
+    .no-data-body {
+        width: 100%;
+        height: 420px;
+        display: flex;
+        flex-direction: column;
+        justify-content: center;
+        align-items: center;
+    }
+}
+</style>

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

@@ -0,0 +1,293 @@
+<!-- 编辑信息点页面 -->
+<template>
+    <el-dialog
+        custom-class="edit-info-point-dialog"
+        append-to-body
+        title="编辑信息点"
+        :visible="dialogVisible"
+        @close="close"
+        :close-on-press-escape="false"
+    >
+        <div class="tabs">
+            <div class="tab tab-left" :class="{ active: tab === 0 }" @click="tab = 0">信息点</div>
+            <div class="tab tab-right" :class="{ active: tab === 1 }" @click="tab = 1">属性</div>
+        </div>
+
+        <!-- 信息点 -->
+        <div class="info-point-tab" v-if="tab === 0">
+            <!-- 公式 -->
+            <div class="formula">
+                <div class="header">公式</div>
+                <div class="tag-container">
+                    <el-tag :key="tag" v-for="tag in dynamicTags" closable :disable-transitions="false" @close="handleClose(tag)">
+                        {{ tag }}
+                    </el-tag>
+                    <el-input
+                        class="input-new-tag m-input"
+                        v-if="inputVisible"
+                        v-model="inputValue"
+                        ref="saveTagInput"
+                        size="small"
+                        @keyup.enter.native="handleInputConfirm"
+                        @blur="handleInputConfirm"
+                        :maxlength="20"
+                    >
+                    </el-input>
+                    <el-button v-else class="button-new-tag add-tag" size="small" @click="showInput">+ 自定义公式</el-button>
+                </div>
+            </div>
+            <!-- 信息点 -->
+            <div class="info-point">
+                <div class="header">选择信息点</div>
+                <div class="instantaneous">
+                    <div class="title">瞬时状态</div>
+                    <el-checkbox-group v-model="instantaneousCheckList" class="m-check-group">
+                        <el-checkbox v-for="({ name }, index) in instantaneousList" :label="name" :key="index" />
+                    </el-checkbox-group>
+                </div>
+                <div class="accumulative">
+                    <div class="title">累计指标</div>
+                    <el-checkbox-group v-model="accumulativeCheckList" class="m-check-group">
+                        <el-checkbox v-for="({ name }, index) in accumulativeList" :label="name" :key="index" />
+                    </el-checkbox-group>
+                </div>
+            </div>
+        </div>
+
+        <!-- 属性 -->
+        <div class="property-tab" v-else-if="tab === 1"></div>
+        <!-- 确定,取消按钮 -->
+        <div slot="footer" class="dialog-footer">
+            <el-button @click="close">取 消</el-button>
+            <el-button type="primary" @click="confirm">确 定</el-button>
+        </div>
+    </el-dialog>
+</template>
+<script>
+/**
+ * 编辑信息点页面
+ */
+import { cloneDeep } from "lodash";
+const list = [
+    { name: "运行状态", id: "yxzt" },
+    { 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",
+    props: {
+        showDialog: {
+            type: Boolean,
+            required: true,
+        },
+    },
+    components: {},
+    data() {
+        return {
+            dialogVisible: true,
+            tab: 0,
+            dynamicTags: [1, 2, 3, 4, 555, 234],
+            inputVisible: false,
+            inputValue: null,
+
+            //瞬时状态列表
+            instantaneousCheckList: [],
+            instantaneousList: cloneDeep(list),
+            // 累计指标列表
+            accumulativeCheckList: [],
+            accumulativeList: cloneDeep(list),
+        };
+    },
+    watch: {
+        // 是否打开弹窗
+        showDialog(val) {
+            this.dialogVisible = val;
+            if (val) {
+                this.initModal();
+            }
+        },
+    },
+    beforeMount() {},
+    mounted() {
+        console.log("mountdddddd");
+    },
+    methods: {
+        initModal() {},
+        // 展示标签输入框
+        showInput() {
+            this.inputVisible = true;
+            this.$nextTick(() => {
+                this.$refs.saveTagInput.$refs.input.focus();
+            });
+        },
+        // 添加标签
+        handleInputConfirm() {
+            const inputValue = this.inputValue;
+            if (inputValue) {
+                this.dynamicTags.push(inputValue);
+            }
+            this.inputVisible = false;
+            this.inputValue = "";
+        },
+        // 删除标签
+        handleClose(tag) {
+            this.dynamicTags.splice(this.dynamicTags.indexOf(tag), 1);
+        },
+        /**
+         *  关闭弹窗
+         */
+        close() {
+            this.dialogVisible = false;
+            this.$emit("closeModal");
+        },
+        /**
+         * 点击弹窗确定,提交接口
+         */
+        confirm() {
+            this.dialogVisible = false;
+            this.$emit("closeModal");
+        },
+    },
+};
+</script>
+<style lang='less' scoped>
+/deep/ .edit-info-point-dialog {
+    width: 1200px;
+    height: 648px;
+    display: flex;
+    flex-direction: column;
+    .el-dialog__header {
+        border-bottom: 1px solid #e4e5e7;
+    }
+    .el-dialog__body {
+        flex: 1;
+        padding-bottom: 0 !important;
+    }
+    .tabs {
+        width: 100%;
+        height: 30px;
+        display: flex;
+        .tab {
+            width: 74px;
+            height: 30px;
+            line-height: 30px;
+            font-size: 14px;
+            color: #1f2429;
+            text-align: center;
+            border-radius: 0 4px 4px 0;
+            border: 1px solid #c3c7cb;
+        }
+        .tab-left {
+            border-radius: 4px 0 0 4px;
+        }
+        .active {
+            color: #0091ff;
+            background: #e1f2ff;
+            border: 1px solid #0091ff;
+        }
+    }
+    // 信息点tab
+    .info-point-tab {
+        width: 100%;
+        // 大标题
+        .header {
+            width: 100%;
+            height: 22px;
+            margin: 20px 0 15px 0;
+            padding-left: 5px;
+            font-size: 16px;
+            font-weight: 500;
+            color: #1f2329;
+            line-height: 22px;
+            border-left: 2px solid #0091ff;
+        }
+        // 公式
+        .formula {
+            width: 100%;
+
+            .tag-container {
+                width: 100%;
+                height: 80px;
+                border-radius: 4px;
+                border: 1px solid #e4e5e7;
+                padding: 7px 12px;
+                line-height: 1;
+                .el-tag {
+                    background: #eff0f1;
+                    border-radius: 2px;
+                    color: #1f2429ff;
+                    margin: 0 8px 8px 0;
+                    padding: 5px 6px 5px 8px;
+                    font-size: 14px;
+                    height: 24px;
+                    line-height: 1;
+                    border: none;
+                    &:hover {
+                        border: none;
+                    }
+                    .el-icon-close {
+                        color: #9ca2a9ff;
+                        right: 0;
+                        &:hover {
+                            color: #fff;
+                            background-color: #ccc;
+                        }
+                    }
+                }
+                .m-input {
+                    width: auto !important;
+                }
+                .add-tag {
+                    border-radius: 2px;
+                    border: 1px dotted #0091ff;
+                    font-weight: 400;
+                    color: #0091ff;
+                }
+            }
+        }
+        // 信息点
+        .info-point {
+            flex: 1;
+            overflow: auto;
+            .instantaneous {
+                margin-bottom: 15px;
+            }
+            .accumulative {
+            }
+        }
+        // 瞬时状态,累计指标
+        .title {
+            margin-bottom: 15px;
+            font-weight: 500;
+            color: #1f2329;
+            font-size: 14px;
+        }
+        .m-check-group {
+            max-height: 90px;
+            overflow: auto;
+            .el-checkbox {
+                width: 150px;
+                height: 30px;
+                // color: #1f2429;
+                // font-size: 14px;
+                // font-weight: 400;
+            }
+        }
+    }
+    // 属性tab
+    .property-tab {
+    }
+}
+</style>

+ 18 - 15
src/components/editview/leftToolBar/equipmentList.vue

@@ -7,12 +7,12 @@
                 class="baseItemInput"
                 :width="188"
                 iconType="search"
-                placeholder="搜索图例名称"
+                placeholder="搜索设备名称"
                 v-model="getPressMsg"
                 @pressEnter="pressEnter"
                 @clear="pressEnter"
             />
-            <Popover type="confirm" placement="bottom-center">
+            <!-- <Popover type="confirm" placement="bottom-center">
                 <template slot="content">
                     <div class="">
                         <div>
@@ -43,7 +43,7 @@
                     </div>
                 </template>
                 <span @click="screen" class="icon iconfont icon-shaixuan shaixuan"></span>
-            </Popover>
+            </Popover> -->
         </div>
         <!-- 设备 list -->
         <div ref="localDom" class="box-porfess" id="boxPorfess">
@@ -288,19 +288,19 @@ export default {
     watch: {
         equipmentItemNum: {
             handler: function (val) {
-                this.localLoading();
-                this.getCategory(this.equipmentItemList);
+                // this.localLoading();
+                // this.getCategory(this.equipmentItemList);
             },
             deep: true,
             immediate: true,
         },
     },
     mounted() {
-        const dombox = document.getElementById("equiplist");
-        const boxPorfess = document.getElementById("boxPorfess");
-        if (dombox) {
-            boxPorfess.style.height = dombox.offsetHeight - 90 + "px";
-        }
+        // const dombox = document.getElementById("equiplist");
+        // const boxPorfess = document.getElementById("boxPorfess");
+        // if (dombox) {
+        //     boxPorfess.style.height = dombox.offsetHeight - 90 + "px";
+        // }
     },
 };
 </script>
@@ -322,6 +322,8 @@ li {
     width: 100%;
     height: 100%;
     position: relative;
+    display: flex;
+    flex-direction: column;
     .clp {
         display: flex;
         align-items: center;
@@ -333,7 +335,8 @@ li {
         }
     }
     .box-porfess {
-        min-height: 500px;
+        // min-height: 500px;
+        flex: 1;
         overflow-y: scroll;
     }
     .porfess {
@@ -409,10 +412,10 @@ li {
     .addbtn {
         width: 100%;
         height: 40px;
-        position: absolute;
-        bottom: 0;
-        left: 0;
-        transform: translateY(-40%);
+        // position: absolute;
+        // bottom: 0;
+        // left: 0;
+        // transform: translateY(-40%);
         display: flex;
         align-items: center;
         justify-content: center;

+ 14 - 8
src/components/editview/leftToolBar/legendList.vue

@@ -2,35 +2,41 @@
 <template>
     <div class="lengend-list">
         <!-- 基础图例 -->
-        <addBaseItem v-if="chiceStatus == 0"></addBaseItem>
-        <!-- 设备类 -->
-        <equipmentList v-if="chiceStatus == 2" @openAddEqupModle="openAddEqupModle"></equipmentList>
+        <addBaseItem v-if="chiceStatus == 0" />
         <!-- 管线类 -->
-        <pipeList v-if="chiceStatus == 1"></pipeList>
-
+        <pipeList v-else-if="chiceStatus == 1" />
+        <!-- 设备类 -->
+        <equipment-list v-else-if="chiceStatus == 2" @openAddEqupModle="showAddEquipmentDialog = true" />
+        <!-- 设备组 -->
+        <!-- 空间 -->
+        <space-list v-else-if="chiceStatus == 4" @openAddEqupModle="showAddSpaceDialog = true" />
         <!-- 添加设备 -->
         <add-equipment-dialog @closeModal="showAddEquipmentDialog = false" :showDialog="showAddEquipmentDialog" />
+        <!-- 添加空间 -->
+        <add-space-dialog @closeModal="showAddSpaceDialog = false" :showDialog="showAddSpaceDialog" />
         <!-- <div class="close-lengend"></div> -->
     </div>
 </template>
 <script>
 import pipeList from "./pipeList.vue";
 import equipmentList from "./equipmentList.vue";
+import spaceList from "./spaceList.vue";
 // import addItemModel from "./addItemModel.vue";
 import addBaseItem from "./addBaseItem.vue";
 import addEquipmentDialog from "./addEquipmentDialog";
+import addSpaceDialog from "./addSpaceDialog";
 export default {
-    components: { pipeList, equipmentList, addBaseItem, addEquipmentDialog },
+    components: { pipeList, equipmentList, spaceList, addBaseItem, addEquipmentDialog, addSpaceDialog },
     props: ["chiceStatus"],
     data() {
         return {
-            showAddEquipmentDialog: false,
+            showAddEquipmentDialog: false, //添加设备弹窗显隐状态
+            showAddSpaceDialog: false, //添加空间弹窗显隐状态
             // choiceLegend: "" //选中绘制类型
         };
     },
     methods: {
         openAddEqupModle() {
-            console.log("openAddEqupModle");
             this.showAddEquipmentDialog = true;
         },
     },

+ 520 - 0
src/components/editview/leftToolBar/spaceList.vue

@@ -0,0 +1,520 @@
+<!-- 空间列表 -->
+<template>
+    <div class="space-list">
+        <!-- 筛选 -->
+        <div class="clp">
+            <Input
+                class="baseItemInput"
+                :width="188"
+                iconType="search"
+                placeholder="搜索空间名称"
+                v-model="getPressMsg"
+                @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>
+                </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>
+                            <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>
+                </li>
+            </ul>
+        </div>
+
+        <!-- 添加设备 -->
+        <div class="addbtn" @click="openAddEqupModle">
+            <i class="el-icon-plus"></i>
+            添加显示空间
+        </div>
+    </div>
+</template>
+<script>
+import { mapMutations, mapState } from "vuex";
+import { queryCategory } from "@/api/editer";
+import bus from "@/bus/bus";
+export default {
+    data() {
+        return {
+            cascaderData6: [], // 筛选待定
+            hoverIndex: -1,
+            getPressMsg: "", //搜索框
+            pressMsgData: [], //搜索对应得数组
+            equipmentTree: [], //三级设备树
+            local: null, //table loading
+        };
+    },
+    methods: {
+        ...mapMutations(["SETCHOICELEHEND", "SETLEGENDOBJ"]),
+        // 打开添加弹窗
+        openAddEqupModle() {
+            this.$emit("openAddEqupModle");
+        },
+        // 设置hover显示
+        sethover(a, b, c) {
+            this.hoverIndex = "" + a + b + c;
+        },
+        deletehover() {
+            this.hoverIndex = -1;
+        },
+        // 是否展示图例
+        ShowItem(a) {
+            a.visible = !a.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 = [];
+            if (!this.getPressMsg) {
+                this.pressMsgData = [];
+                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.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>
+div {
+    -moz-user-select: none; /*火狐*/
+    -webkit-user-select: none; /*webkit浏览器*/
+    -ms-user-select: none; /*IE10*/
+    -khtml-user-select: none; /*早期浏览器*/
+    user-select: none;
+}
+ul,
+li {
+    margin: 0;
+    padding: 0;
+    list-style-type: none;
+}
+.space-list {
+    width: 100%;
+    height: 100%;
+    position: relative;
+    display: flex;
+    flex-direction: column;
+    .clp {
+        display: flex;
+        align-items: center;
+        justify-content: space-between;
+        padding-top: 12px;
+        padding-right: 6px;
+        .shaixuan {
+            cursor: pointer;
+        }
+    }
+    .box-porfess {
+        // min-height: 500px;
+        flex: 1;
+        overflow-y: scroll;
+    }
+    .porfess {
+        .porfess-title {
+            width: 100%;
+            padding: 16px 16px 0 16px;
+            display: flex;
+            justify-content: space-between;
+            cursor: pointer;
+        }
+        .equipType {
+            .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;
+                    }
+                }
+            }
+        }
+    }
+
+    .addbtn {
+        width: 100%;
+        height: 40px;
+        // position: absolute;
+        // bottom: 0;
+        // left: 0;
+        // transform: translateY(-40%);
+        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;
+        }
+    }
+    .caret-icon {
+        animation: nowhirling 0.2s linear forwards;
+    }
+    .caret-icon-active {
+        animation: whirling 0.2s linear forwards;
+    }
+}
+.choiceEquip {
+    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;
+        }
+    }
+}
+.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>

+ 10 - 0
vue.config.js

@@ -24,11 +24,21 @@ module.exports = {
                 changeOrigin: true,
                 secure: false,
             },
+            "/datacenter4": {
+                target: "http://60.205.177.43:8080",
+                changeOrigin: true,
+                secure: false,
+            },
             "/equip-componnet": {
                 target: "http://60.205.177.43:8080",
                 changeOrigin: true,
                 secure: false,
             },
+            "/equip-component4": {
+                target: "http://60.205.177.43:8080",
+                changeOrigin: true,
+                secure: false,
+            },
             // 图片服务器
             "/image-service": {
                 target: "http://adm.sagacloud.cn",