yunxing 4 rokov pred
rodič
commit
f44b79376c

+ 5 - 5
package.json

@@ -19,24 +19,24 @@
   "dependencies": {
     "@persagy-web/base": "2.2.1",
     "@persagy-web/big": "2.2.19",
-    "@persagy-web/draw": "2.2.8",
-    "@persagy-web/graph": "2.2.23",
     "@persagy-web/big-edit": "2.2.1",
+    "@persagy-web/draw": "2.2.8",
     "@persagy-web/edit": "2.2.2",
+    "@persagy-web/graph": "2.2.23",
     "@types/uuid": "^8.0.0",
     "ant-design-vue": "^1.6.5",
     "axios": "^0.20.0",
+    "compression-webpack-plugin": "^5.0.2",
     "core-js": "^3.6.5",
     "crypto-js": "^4.0.0",
     "element-ui": "^2.13.2",
     "lodash": "^4.17.20",
-    "meri-design": "1.3.8",
+    "meri-design": "^1.4.3",
     "vue": "^2.6.11",
     "vue-class-component": "^7.2.3",
     "vue-property-decorator": "^8.4.2",
     "vue-router": "^3.2.0",
-    "vuex": "^3.4.0",
-    "compression-webpack-plugin": "^5.0.2"
+    "vuex": "^3.4.0"
   },
   "devDependencies": {
     "@typescript-eslint/eslint-plugin": "^2.33.0",

+ 0 - 65
src/components/editview/addEquipmentDialog.vue

@@ -1,65 +0,0 @@
-/**
- * 添加设备 显示实例
- */
-<template>
-    <div class="add-equipment">
-        <el-dialog custom-class="equipment-detail-dialog" title="添加显示实例" :visible.sync="dialogTableVisible">
-            <div class="header">
-                <span>选择设备:</span>
-                <Cascader caption="设备实例范围:" multiple excludeTop :data="cascaderData1" showPanel width="260"></Cascader>
-            </div>
-        </el-dialog>
-    </div>
-</template>
-<script>
-/**
- * 添加设备 显示实例
- */
-export default {
-    name: "addEquipmentDialog",
-    props: {},
-    components: {},
-    data() {
-        return {
-            dialogTableVisible: false,
-            cascaderData1: [
-                {
-                    title: "1",
-                    id: "1code",
-                    children: [
-                        {
-                            title: "1_1",
-                            id: "1_1code",
-                        },
-                        {
-                            title: "1_2",
-                            id: "1_2code",
-                        },
-                    ],
-                },
-                {
-                    title: "2",
-                    id: "2code",
-                    children: [
-                        {
-                            title: "2_1",
-                            id: "2_1code",
-                        },
-                    ],
-                },
-            ],
-        };
-    },
-    created() {},
-    methods: {},
-};
-</script>
-<style lang='less' scoped>
-.add-equipment {
-    /deep/ .equipment-detail-dialog {
-        width: 1200px;
-        height: 648px;
-        // background-color: blueviolet;
-    }
-}
-</style>

+ 177 - 148
src/components/editview/leftToolBar.vue

@@ -1,177 +1,206 @@
 <!-- 左侧工具栏 -->
 <template>
-  <div class="left-tool-bar">
-    <div class="btn-list">
-      <ul>
-        <li
-          v-for="(item, index) in leftData"
-          :key="index"
-          :class="{ 'btn-active': chiceStatus == index }"
-          @click="openTool(index)"
+    <div class="left-tool-bar">
+        <div class="btn-list">
+            <ul>
+                <li v-for="(item, index) in leftData" :key="index" :class="{ 'btn-active': chiceStatus == index }" @click="openTool(index)">
+                    <span :class="['icon', 'iconfont', 'fontstyle', item.icon]"></span>
+                    <span>{{ item.name }}</span>
+                    <div class="btborder"></div>
+                </li>
+            </ul>
+        </div>
+        <div class="sidebarCustom">
+            <SidebarCustom ref="sidebarCus" @change="handleChange">
+                <template #left style="width: 240px">
+                    <legendList class="m-legend-list" :chiceStatus="chiceStatus"></legendList>
+                    <!-- <div class="m-legend-list"></div> -->
+                </template>
+                <template #right>
+                    <div style="font-size: 14px; width: 20px"></div>
+                </template>
+            </SidebarCustom>
+        </div>
+        <!-- <el-drawer
+            size="220px"
+            :with-header="false"
+            :destroy-on-close="true"
+            :visible.sync="drawer"
+            :direction="direction"
+            :modal="false"
+            :modal-append-to-body="false"
+            :show-close="true"
+            :before-close="handleClose"
+            :wrapperClosable="false"
+            custom-class="drawer-box"
         >
-          <!-- <img
-            width="20px"
-            height="20px"
-            :src="chiceStatus == index ? item.activeIcon : item.icon"
-            alt
-          /> -->
-          <span :class="['icon', 'iconfont', 'fontstyle', item.icon]"></span>
-          <span>{{ item.name }}</span>
-          <div class="btborder"></div>
-        </li>
-      </ul>
+            <legendList :chiceStatus="chiceStatus"></legendList>
+        </el-drawer> -->
     </div>
-    <el-drawer
-      size="220px"
-      :with-header="false"
-      :destroy-on-close="true"
-      :visible.sync="drawer"
-      :direction="direction"
-      :modal="false"
-      :modal-append-to-body="false"
-      :show-close="true"
-      :before-close="handleClose"
-      :wrapperClosable="false"
-      custom-class="drawer-box"
-    >
-      <legendList :chiceStatus="chiceStatus"></legendList>
-    </el-drawer>
-  </div>
 </template>
 <script>
 const leftData = [
-  {
-    id: "tongyong",
-    name: "通用",
-    icon: "icon-tongyong",
-  },
-  {
-    id: "equipment",
-    name: "设备",
-    icon: "icon-shebei",
-  },
-  {
-    id: "equipList",
-    name: "设备组",
-    icon: "icon-shebeizu",
-  },
-  {
-    id: "guanxian",
-    name: "管线",
-    icon: "icon-guanxian",
-  },
-  {
-    id: "space",
-    name: "空间",
-    icon: "icon-kongjian",
-  },
-  {
-    id: "same",
-    name: "楼层",
-    icon: "icon-louceng",
-  },
+    {
+        id: "tongyong",
+        name: "通用",
+        icon: "icon-tongyong",
+    },
+    {
+        id: "guanxian",
+        name: "管线",
+        icon: "icon-guanxian",
+    },
+    {
+        id: "equipment",
+        name: "设备",
+        icon: "icon-shebei",
+    },
+    {
+        id: "equipList",
+        name: "设备组",
+        icon: "icon-shebeizu",
+    },
+
+    {
+        id: "space",
+        name: "空间",
+        icon: "icon-kongjian",
+    },
+    // {
+    //     id: "same",
+    //     name: "楼层",
+    //     icon: "icon-louceng",
+    // },
 ];
+import { SidebarCustom } from "meri-design";
 import legendList from "./leftToolBar/legendList.vue";
 import { mapMutations } from "vuex";
 export default {
-  components: { legendList },
-  data() {
-    return {
-      drawer: false,
-      chiceStatus: -1, //选中按钮状态
-      direction: "ltr",
-      leftData,
-    };
-  },
-  methods: {
-    ...mapMutations(["SETCHOICELEHEND"]),
-    handleClose() {
-      this.drawer = false;
+    components: { legendList, SidebarCustom },
+    data() {
+        return {
+            drawer: false,
+            chiceStatus: -1, //选中按钮状态
+            direction: "ltr",
+            leftData,
+        };
     },
-    openTool(val) {
-      if (val != this.chiceStatus) {
-        this.chiceStatus = val;
-        if (this.drawer) {
-          this.drawer = false;
-          4;
-          setTimeout(() => {
-            this.drawer = true;
-          }, 300);
-        } else {
-          this.drawer = true;
-        }
-      } else {
-        this.drawer = !this.drawer;
-        this.chiceStatus = -1;
-      }
+    created() {
+        window.vm = this;
     },
-    choiceStatus() {
-      this.chiceStatus = 0;
-      this.drawer = false;
-      this.SETCHOICELEHEND("");
+    methods: {
+        ...mapMutations(["SETCHOICELEHEND"]),
+        handleClose() {
+            this.drawer = false;
+        },
+        handleChange(leftWidth, leftShow) {
+            console.log(leftWidth, leftShow);
+        },
+        openTool(val) {
+            if (val != this.chiceStatus) {
+                this.chiceStatus = val;
+                if (this.drawer) {
+                    this.drawer = false;
+                    4;
+                    setTimeout(() => {
+                        this.drawer = true;
+                    }, 300);
+                } else {
+                    this.drawer = true;
+                }
+            } else {
+                this.drawer = !this.drawer;
+                this.chiceStatus = -1;
+            }
+        },
+        choiceStatus() {
+            this.chiceStatus = 0;
+            this.drawer = false;
+            this.SETCHOICELEHEND("");
+        },
     },
-  },
 };
 </script>
 <style lang="less" scoped>
 ul,
 li {
-  margin: 0;
-  padding: 0;
-  list-style-type: none;
+    margin: 0;
+    padding: 0;
+    list-style-type: none;
 }
 .left-tool-bar {
-  height: calc(~"100% - 2px");
-  position: relative;
-  .btn-list {
-    height: 100%;
-    z-index: 99;
+    width: 55px;
+    height: calc(100% - 2px);
     position: relative;
-    ul {
-      width: 54px;
-      height: 100%;
-      border-top: 1px solid #eee;
-      border-right: 1px solid #eee;
-      li {
-        width: 100%;
-        height: 58px;
-        display: flex;
-        justify-content: center;
-        align-items: center;
-        flex-direction: column;
-        cursor: pointer;
-        border-right: 2px solid rgba(0, 145, 255, 0);
-        .btborder {
-          width: 30px;
-          height: 1px;
-          background: #eee;
-        }
-        span {
-          color: #8d9399;
-          font-size: 12px;
+    display: flex;
+    .btn-list {
+        height: 100%;
+        z-index: 99;
+        position: relative;
+
+        ul {
+            width: 54px;
+            height: 100%;
+            border-top: 1px solid #eee;
+            border-right: 1px solid #eee;
+            li {
+                width: 100%;
+                height: 58px;
+                display: flex;
+                justify-content: center;
+                align-items: center;
+                flex-direction: column;
+                cursor: pointer;
+                border-right: 2px solid rgba(0, 145, 255, 0);
+                .btborder {
+                    width: 30px;
+                    height: 1px;
+                    background: #eee;
+                }
+                span {
+                    color: #8d9399;
+                    font-size: 12px;
+                }
+                .fontstyle {
+                    font-size: 18px;
+                }
+            }
+            li:hover {
+                background: #f5f6f7;
+            }
+            .btn-active {
+                background: #e1f2ff !important;
+                border-right: 2px solid #0091ff;
+                span {
+                    color: #0091ff;
+                }
+            }
         }
-        .fontstyle {
-          font-size: 18px;
-        }
-      }
-      li:hover {
-        background: #f5f6f7;
-      }
-      .btn-active {
-        background: #e1f2ff !important;
-        border-right: 2px solid #0091ff;
-        span {
-          color: #0091ff;
+    }
+    .sidebarCustom {
+        // width: 240px;
+        // height: calc(100% - 2px);
+        // /deep/ .p-sidebar-custom-btn-rotate,
+        // /deep/ .p-sidebar-custom-bar-change-size {
+        //     left: 219px !important;
+        // }
+        // /deep/ .p-sidebar-left {
+        //     width: 220px !important;
+        // }
+        // /deep/ .p-sidebar-right {
+        //     // width: calc(100% - 220px) !important;
+        // }
+        .m-legend-list {
+            width: 278px;
+            height: 100%;
         }
-      }
     }
-  }
 }
 .el-drawer__wrapper {
-  left: 64px;
-  top: 86px;
-  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1);
-  width: 221px;
-  border-right: 1px solid #eee;
+    left: 64px;
+    top: 86px;
+    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1);
+    width: 221px;
+    border-right: 1px solid #eee;
 }
 </style>

+ 235 - 0
src/components/editview/leftToolBar/addEquipmentDialog.vue

@@ -0,0 +1,235 @@
+/**
+ * 添加显示实例(设备)
+ */
+<template>
+    <el-dialog custom-class="equipment-detail-dialog" append-to-body title="添加显示实例" :visible.sync="dialogTableVisible" @close="close">
+        <div class="header">
+            <span class="text1">选择设备:</span>
+            <Cascader caption="设备实例范围:" multiple excludeTop :data="cascaderData" @confirm="equipmentConfirm" showPanel width="240"></Cascader>
+            <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>
+        </div>
+        <el-table
+            v-if="false"
+            :data="tableData.concat(tableData).concat(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="true || !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="dialogTableVisible = false">确 定</el-button>
+        </div>
+    </el-dialog>
+</template>
+<script>
+/**
+ * 添加显示实例
+ */
+import { Select } from "meri-design";
+export default {
+    name: "addEquipmentDialog",
+    props: {
+        showDialog: {
+            type: Boolean,
+            required: true,
+        },
+    },
+    components: { Select },
+    data() {
+        return {
+            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: "",
+            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() {},
+    methods: {
+        initModal() {},
+
+        /**
+         *  关闭弹窗
+         */
+        close() {
+            // dialogTableVisible
+            this.dialogTableVisible = false;
+            this.$emit("closeModal");
+        },
+        equipmentConfirm(data) {
+            console.log(data);
+        },
+        /**
+         * 合并第一行
+         */
+        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);
+        },
+    },
+};
+</script>
+<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>

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

@@ -190,7 +190,7 @@
     <!-- 添加设备 -->
     <div class="addbtn" @click="openAddEqupModle">
       <i class="el-icon-plus"></i>
-      添加设备示例
+      添加设备
     </div>
   </div>
 </template>

+ 40 - 40
src/components/editview/leftToolBar/legendList.vue

@@ -1,55 +1,55 @@
 <!--左侧工具栏 -- 图例列表-->
 <template>
-  <div class="lengend-list">
-    <!-- 基础图例 -->
-    <addBaseItem v-if="chiceStatus == 0"></addBaseItem>
-    <!-- 设备类 -->
-    <equipmentList
-      v-if="chiceStatus == 1"
-      @openAddEqupModle="showAddItemModel = true"
-    ></equipmentList>
-    <!-- 管线类 -->
-    <pipeList v-if="chiceStatus == 3"></pipeList>
+    <div class="lengend-list">
+        <!-- 基础图例 -->
+        <addBaseItem v-if="chiceStatus == 0"></addBaseItem>
+        <!-- 设备类 -->
+        <equipmentList v-if="chiceStatus == 1" @openAddEqupModle="openAddEqupModle"></equipmentList>
+        <!-- 管线类 -->
+        <pipeList v-if="chiceStatus == 3"></pipeList>
 
-    <!-- 新增实例对象 -->
-    <addItemModel
-      @closeModel="showAddItemModel = false"
-      :showAddItemModel="showAddItemModel"
-    ></addItemModel>
-
-    <div class="close-lengend"></div>
-  </div>
+        <!-- 添加设备 -->
+        <add-equipment-dialog @closeModal="showAddEquipmentDialog = false" :showDialog="showAddEquipmentDialog" />
+        <!-- <div class="close-lengend"></div> -->
+    </div>
 </template>
 <script>
 import pipeList from "./pipeList.vue";
 import equipmentList from "./equipmentList.vue";
-import addItemModel from "./addItemModel.vue";
+// import addItemModel from "./addItemModel.vue";
 import addBaseItem from "./addBaseItem.vue";
+import addEquipmentDialog from "./addEquipmentDialog";
 export default {
-  components: { pipeList, equipmentList, addItemModel, addBaseItem },
-  props: ["chiceStatus"],
-  data() {
-    return {
-      showAddItemModel: false,
-      // choiceLegend: "" //选中绘制类型
-    };
-  },
+    components: { pipeList, equipmentList, addBaseItem, addEquipmentDialog },
+    props: ["chiceStatus"],
+    data() {
+        return {
+            showAddEquipmentDialog: false,
+            // choiceLegend: "" //选中绘制类型
+        };
+    },
+    methods: {
+        openAddEqupModle() {
+            console.log("openAddEqupModle");
+            this.showAddEquipmentDialog = true;
+        },
+    },
 };
 </script>
 <style scoped lang="less">
 .lengend-list {
-  width: 100%;
-  height: 100%;
-  position: relative;
-  .close-lengend{
-    width: 20px;
-    height: 40px;
-    position: absolute;
-    right: -20px;
-    top: 50%;
-    transform: translateY(-50%);
-    background: red;
-    z-index: 999;
-  }
+    width: 100%;
+    height: 100%;
+    position: relative;
+    .close-lengend {
+        width: 20px;
+        height: 40px;
+        position: absolute;
+        right: -20px;
+        top: 50%;
+        transform: translateY(-50%);
+        background: red;
+        z-index: 999;
+    }
 }
 </style>

+ 1 - 3
src/views/editer.vue

@@ -19,16 +19,14 @@
             </div>
         </div>
         <topo-editer></topo-editer>
-        <add-equipment />
     </div>
 </template>
 <script>
 import topoEditer from "@/components/editview/topoEditer.vue";
 import bus from "@/bus/bus";
 import { mapState } from "vuex";
-import addEquipment from "@/components/editview/addEquipmentDialog";
 export default {
-    components: { topoEditer, addEquipment },
+    components: { topoEditer },
     data() {
         return {
             categoryName: "", //项目分类