Bladeren bron

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

zhangyu 4 jaren geleden
bovenliggende
commit
1721982a9f
5 gewijzigde bestanden met toevoegingen van 427 en 336 verwijderingen
  1. 110 0
      src/components/editview/equipmentDeatil.vue
  2. 194 184
      src/components/homeView/topoImageCard.vue
  3. 38 0
      src/utils/merge.js
  4. 64 23
      src/views/home.vue
  5. 21 129
      src/views/mockData.js

+ 110 - 0
src/components/editview/equipmentDeatil.vue

@@ -0,0 +1,110 @@
+/**
+ * 设备详情弹窗页面
+ */
+<template>
+    <div class="equipment-detail">
+        <el-dialog custom-class="equipment-detail-dialog" title="设备详情" :visible.sync="dialogTableVisible">
+            <el-table :data="gridData">
+                <el-table-column property="date" label="日期" width="150"></el-table-column>
+                <el-table-column property="name" label="姓名" width="200"></el-table-column>
+                <el-table-column property="address" label="地址"></el-table-column>
+            </el-table>
+            <el-container>
+                <el-aside>
+                    <ul class="outer" v-for="(item, index) in asideData" :key="index">
+                        {{
+                            item.name
+                        }}
+                        <li class="inner" v-for="(detail, dIndex) in item.children" :key="dIndex">
+                            {{ detail.name }}
+                        </li>
+                    </ul>
+                </el-aside>
+                <el-main> 222 </el-main>
+            </el-container>
+        </el-dialog>
+    </div>
+</template>
+<script>
+/**
+ * 设备详情弹窗页面
+ */
+export default {
+    name: "equipmentDetail",
+    props: {},
+    components: {},
+    data() {
+        return {
+            asideData: [
+                {
+                    name: "静态信息点",
+                    id: "staticInfoPoint",
+                    children: [
+                        {
+                            name: "基本信息",
+                            id: "baseInfo",
+                            focus: true,
+                        },
+                        {
+                            name: "设备厂家",
+                            id: "equipmentManufacturer",
+                            focus: false,
+                        },
+                        {
+                            name: "供应购买",
+                            id: "supplyPurchase",
+                            focus: false,
+                        },
+                    ],
+                },
+                {
+                    name: "动态信息点",
+                    id: "dynamicInfoPpoint",
+                    children: [
+                        {
+                            name: "能源信息",
+                            id: "energyInfo",
+                            focus: false,
+                        },
+                    ],
+                },
+            ],
+            gridData: [
+                {
+                    date: "2016-05-02",
+                    name: "王小虎",
+                    address: "上海市普陀区金沙江路 1518 弄",
+                },
+                {
+                    date: "2016-05-04",
+                    name: "王小虎",
+                    address: "上海市普陀区金沙江路 1518 弄",
+                },
+                {
+                    date: "2016-05-01",
+                    name: "王小虎",
+                    address: "上海市普陀区金沙江路 1518 弄",
+                },
+                {
+                    date: "2016-05-03",
+                    name: "王小虎",
+                    address: "上海市普陀区金沙江路 1518 弄",
+                },
+            ],
+            dialogTableVisible: true,
+        };
+    },
+    created() {},
+    mounted() {},
+    methods: {},
+};
+</script>
+<style lang='less' scoped>
+.equipment-detail {
+    /deep/ .equipment-detail-dialog {
+        width: 1200px;
+        height: 648px;
+        // background-color: blueviolet;
+    }
+}
+</style>

+ 194 - 184
src/components/homeView/topoImageCard.vue

@@ -1,209 +1,219 @@
 <!--拓扑图缩略图卡片-->
 <template>
-  <el-card :class="{'box-card': true, 'active': data.checked}" shadow="hover" :body-style="{ padding: '0px' }">
-    <div class="image" v-if="!data.pic" style="line-height: 120px;text-align: center;">
-      <img :src="require('@/assets/images/noImg.png')" style="height:60px;">
-    </div>
-    <img class="image" v-else :src="`/image-service/common/image_get?systemId=dataPlatform&key=${data.pic}`">
-    <div class="shadow image" v-if="!isRecycle" @click.stop="toEdit">
-      <el-checkbox v-model="data.checked" class="shadowCheck" @change="changeCheck"></el-checkbox>
-    </div>
-    <div class="content">
-      <div>
-        <span class="title" :title="data.name">{{data.name}}</span>
-        <div class="func">
-          <el-popover placement="top" width="200" trigger="hover" popper-class="customPop">
-            <p>版本 : {{data.version}}</p>
-            <p>更新时间 : {{data.lastUpdate}}</p>
-            <!-- <p>更新人 : {{data.putUser || '张三'}}</p> -->
-            <span slot="reference"><img :src="require('@/assets/images/tips.png')" style="width: 20px;height:20px" /></span>
-          </el-popover>
-          <el-dropdown :hide-on-click="false" placement="bottom-start" trigger="click" @command="handleCommand">
-            <span class="el-dropdown-link">
-              <img :src="require('@/assets/images/more.png')" style="width: 20px;height:20px" />
-            </span>
-            <el-dropdown-menu slot="dropdown">
-              <template v-for="t in moreList">
-                <el-dropdown-item :key="t.name" :command="t.name" v-if="dropdownItemShow(t)">{{t.label}}</el-dropdown-item>
-              </template>
-            </el-dropdown-menu>
-          </el-dropdown>
+    <el-card :class="{ 'box-card': true, active: data.checked }" shadow="hover" :body-style="{ padding: '0px' }">
+        <div class="image" v-if="!data.pic" style="line-height: 120px; text-align: center">
+            <img :src="require('@/assets/images/noImg.png')" style="height: 60px" />
         </div>
-      </div>
-      <div class="tags">
-        <span v-for="(t,i) in data.label" :key="data.name + i">{{t}}</span>
-      </div>
-    </div>
-  </el-card>
+        <img class="image" v-else :src="`/image-service/common/image_get?systemId=dataPlatform&key=${data.pic}`" />
+        <div class="shadow image" v-if="!isRecycle" @click.stop="toEdit">
+            <el-checkbox v-model="data.checked" class="shadowCheck" @change="changeCheck"></el-checkbox>
+        </div>
+        <div class="content">
+            <div>
+                <span class="title" :title="data.name">{{ data.name }}</span>
+                <div class="func">
+                    <el-popover placement="top" width="220" trigger="hover" popper-class="customPop">
+                        <p>版本 : {{ data.version }}</p>
+                        <p>更新时间 : {{ data.lastUpdate }}</p>
+                        <!-- <p>更新人 : {{data.putUser || '张三'}}</p> -->
+                        <span slot="reference"><img :src="require('@/assets/images/tips.png')" style="width: 20px; height: 20px" /></span>
+                    </el-popover>
+                    <el-dropdown :hide-on-click="false" placement="bottom-start" trigger="click" @command="handleCommand">
+                        <span class="el-dropdown-link">
+                            <img :src="require('@/assets/images/more.png')" style="width: 20px; height: 20px" />
+                        </span>
+                        <el-dropdown-menu slot="dropdown">
+                            <template v-for="t in moreList">
+                                <el-dropdown-item :key="t.name" :command="t.name" v-if="dropdownItemShow(t)">{{ t.label }}</el-dropdown-item>
+                            </template>
+                        </el-dropdown-menu>
+                    </el-dropdown>
+                </div>
+            </div>
+            <div class="tags">
+                <span v-for="(t, i) in data.label" :key="data.name + i">{{ t }}</span>
+            </div>
+        </div>
+    </el-card>
 </template>
 <script>
-import { publishGraph } from "@/api/home"
+import { publishGraph } from "@/api/home";
 export default {
-  props: {
-    data: {
-      type: Object,
-      default: () => {
-        return {}
-      }
+    props: {
+        data: {
+            type: Object,
+            default: () => {
+                return {};
+            },
+        },
+        isRecycle: {
+            type: Boolean,
+            default: false,
+        },
+        isPub: {
+            type: Number,
+            default: 0,
+        },
     },
-    isRecycle: {
-      type: Boolean,
-      default: false
-    },
-    isPub: {
-      type: Number,
-      default: 0
-    }
-  },
-  data() {
-    return {
-      moreList: [
-        { name: 'rename', label: '重命名', show: 'any' }, // 类型为 未发布/已发布 时出现
-        { name: 'publish', label: '发布', show: 0 }, // 类型为 未发布 时出现
-        { name: 'download', label: '下载', show: 1 }, // 类型为 已发布 时出现
-        { name: 'editTag', label: '修改标签', show: 1 }, // 类型为 已发布 时出现
-        { name: 'moveTo', label: '移动到', show: 'any' }, // 类型为 未发布/已发布 时出现
-        { name: 'delete', label: '删除', show: 'any' }, // 类型为 未发布/已发布 时出现
-        { name: 'recover', label: '恢复', show: 'isRecycle' },  // 类型为 回收站 时出现
-        { name: 'deleteRecycle', label: '永久删除', show: 'isRecycle' }, // 类型为 回收站 时出现
-      ],
-      checked: false
-    };
-  },
-  methods: {
-    // 显示下拉框内容选项判断
-    dropdownItemShow(item) {
-      return (!this.isRecycle && (item.show == 'any' || item.show == this.isPub)) || (this.isRecycle && item.show == "isRecycle")
+    data() {
+        return {
+            moreList: [
+                { name: "edit", label: "编辑", show: "any" }, // 类型为 未发布/已发布 时出现
+                { name: "rename", label: "重命名", show: "any" }, // 类型为 未发布/已发布 时出现
+                { name: "publish", label: "发布", show: 0 }, // 类型为 未发布 时出现
+                { name: "download", label: "下载", show: 1 }, // 类型为 已发布 时出现
+                { name: "editTag", label: "修改标签", show: 1 }, // 类型为 已发布 时出现
+                { name: "moveTo", label: "移动到", show: "any" }, // 类型为 未发布/已发布 时出现
+                { name: "delete", label: "删除", show: "any" }, // 类型为 未发布/已发布 时出现
+                { name: "recover", label: "恢复", show: "isRecycle" }, // 类型为 回收站 时出现
+                { name: "deleteRecycle", label: "永久删除", show: "isRecycle" }, // 类型为 回收站 时出现
+            ],
+            checked: false,
+        };
     },
-    // 复选框改变时
-    changeCheck() {
-      this.$emit('changeCheck', this.data);
-    },
-    // 点击更多中的命令时
-    handleCommand(command) {
-      const pa = {
-        graphId: this.data.graphId,
-        id: this.data.id
-      };
-      switch (command) {
-        case "rename":
-        case "download":
-        case "editTag":
-        case "moveTo":
-        case "delete":
-        case "recover":
-        case "deleteRecycle":
-          this.$emit(command, this.data)
-          break;
-        case "publish":
-          publishGraph(pa).then(res => {
-            if (res.result == "success") {
-              this.$message.success("发布成功");
-              this.$emit('publishSuc')
-            } else {
-              this.$message.success("发布失败");
+    methods: {
+        // 显示下拉框内容选项判断
+        dropdownItemShow(item) {
+            return (!this.isRecycle && (item.show == "any" || item.show == this.isPub)) || (this.isRecycle && item.show == "isRecycle");
+        },
+        // 复选框改变时
+        changeCheck() {
+            this.$emit("changeCheck", this.data);
+        },
+        // 点击更多中的命令时
+        handleCommand(command) {
+            const pa = {
+                graphId: this.data.graphId,
+                id: this.data.id,
+            };
+            switch (command) {
+                // 选择编辑,跳转编辑页面
+                case "edit":
+                    this.$emit("toEdit", this.data);
+                    break;
+                case "rename":
+                case "download":
+                case "editTag":
+                case "moveTo":
+                case "delete":
+                case "recover":
+                case "deleteRecycle":
+                    this.$emit(command, this.data);
+                    break;
+                case "publish":
+                    publishGraph(pa).then((res) => {
+                        if (res.result == "success") {
+                            this.$message.success("发布成功");
+                            this.$emit("publishSuc");
+                        } else {
+                            this.$message.success("发布失败");
+                        }
+                    });
+                    break;
+            }
+        },
+        // 进入编辑页面
+        toEdit(e) {
+            const targetName = e.target.nodeName.toLowerCase();
+            if (targetName == "div") {
+                this.$emit("toEdit", this.data);
             }
-          });
-          break;
-      }
+        },
     },
-    // 进入编辑页面
-    toEdit(e) {
-      const targetName = e.target.nodeName.toLowerCase();
-      if (targetName == 'div') {
-        this.$emit("toEdit", this.data)
-      }
-    }
-  },
 };
 </script>
 <style lang="less" scoped>
 .box-card {
-  position: relative;
-  width: 260px;
-  height: 193px;
-  border-radius: 8px;
-  margin-right: 20px;
-  margin-bottom: 20px;
-  cursor: pointer;
-  &:hover,
-  &.active {
-    border-color: #0091ff80;
-    box-shadow: 0px 8px 16px 0px rgba(195, 199, 203, 0.4);
-    .shadow {
-      display: block;
+    position: relative;
+    width: 260px;
+    height: 193px;
+    border-radius: 8px;
+    margin-right: 20px;
+    margin-bottom: 20px;
+    cursor: pointer;
+    &:hover,
+    &.active {
+        border-color: #0091ff80;
+        box-shadow: 0px 8px 16px 0px rgba(195, 199, 203, 0.4);
+        .shadow {
+            display: block;
+        }
+        .content {
+            .func {
+                display: block;
+            }
+        }
     }
-    .content {
-      .func {
+    .image {
         display: block;
-      }
-    }
-  }
-  .image {
-    display: block;
-    width: 100%;
-    height: 120px;
-    background-color: #f7f9fa;
-  }
-  .shadow {
-    display: none;
-    position: absolute;
-    top: 0;
-    left: 0;
-    background-color: #8d939926;
-    .shadowCheck {
-      position: absolute;
-      top: 8px;
-      left: 12px;
+        width: 100%;
+        height: 120px;
+        background-color: #f7f9fa;
     }
-  }
-  .content {
-    padding: 8px 12px;
-    vertical-align: middle;
-    .title {
-      display: inline-block;
-      color: #1f2429;
-      margin: 0;
-      max-width: 182px;
-      white-space: nowrap;
-      overflow: hidden;
-      text-overflow: ellipsis;
-    }
-    .func {
-      & > * + * {
-        margin-left: 8px;
-      }
-      display: none;
-      float: right;
-      vertical-align: middle;
-      i {
-        font-size: 20px;
-      }
+    .shadow {
+        display: none;
+        position: absolute;
+        top: 0;
+        left: 0;
+        background-color: #8d939926;
+        .shadowCheck {
+            position: absolute;
+            // top: 8px;
+            // left: 12px;
+            width: 40px;
+            height: 40px;
+            padding: 8px 0 0 12px;
+            // background-color: #aaa;
+        }
     }
-    .tags {
-      margin-top: 4px;
-      span {
-        display: inline-block;
-        padding: 1px 6px;
-        font-size: 12px;
-        color: #8d9399;
-        line-height: 18px;
-        border: 1px solid #8d9399;
-        border-radius: 3px;
-        margin-bottom: 11px;
-        & + span {
-          margin-left: 4px;
+    .content {
+        padding: 8px 12px;
+        vertical-align: middle;
+        .title {
+            display: inline-block;
+            color: #1f2429;
+            margin: 0;
+            max-width: 182px;
+            white-space: nowrap;
+            overflow: hidden;
+            text-overflow: ellipsis;
+        }
+        .func {
+            & > * + * {
+                margin-left: 8px;
+            }
+            display: none;
+            float: right;
+            vertical-align: middle;
+            i {
+                font-size: 20px;
+            }
+        }
+        .tags {
+            cursor: default;
+            margin-top: 4px;
+            span {
+                display: inline-block;
+                padding: 1px 6px;
+                font-size: 12px;
+                color: #8d9399;
+                line-height: 18px;
+                border: 1px solid #8d9399;
+                border-radius: 3px;
+                margin-bottom: 11px;
+                & + span {
+                    margin-left: 4px;
+                }
+            }
         }
-      }
     }
-  }
 }
 .customPop {
-  p {
-    font-size: 12px;
-    & + p {
-      margin-top: 10px;
+    p {
+        font-size: 12px;
+        & + p {
+            margin-top: 10px;
+        }
     }
-  }
 }
 </style>

+ 38 - 0
src/utils/merge.js

@@ -0,0 +1,38 @@
+import _, { cloneDeep, keyBy, isArray, isString } from "lodash";
+
+/**
+ * 按照键值合并两个对象数组
+ * @param {*} arr1 数组1
+ * @param {*} arr2 数组2
+ * @param {*} keyArr1 数组1中的键名
+ * @param {*} keyArr2 数组2中的键名
+ */
+//   // 合并数据,a,b合并,相同键值按照.merge后的对象(b)
+//   var a = [
+//     { name: "a", id: "1111", a: 1, b: 2, c: 3 },
+//     { name: "b", id: "2222", a: 2 },
+//     { name: "c", id: "3333", a: 3 },
+// ];
+// var b = [
+//     { text: "vv", pid: "1111", a: {assas:1} },
+//     { text: "vv", pid: "2222", a: 22 },
+//     { text: "vv", pid: "3333", a: 33 },
+// ];
+// console.log(mergeArrByKey(a, b, "id", "pid"));
+export default function mergeArrByKey(arr1, arr2, keyArr1, keyArr2 = keyArr1) {
+    if (!(arr1 && arr2 && keyArr1)) {
+        throw new Error("请检查参数");
+    }
+    if (!(isArray(arr1) && isArray(arr2))) {
+        throw new Error("请传入两个数组");
+    }
+    if (!isString(keyArr1)) {
+        throw new Error("键名必须为字符串");
+    }
+    let newArr = _(cloneDeep(arr1))
+        .keyBy(keyArr1)
+        .merge(keyBy(arr2, keyArr2))
+        .values()
+        .value();
+    return newArr;
+}

+ 64 - 23
src/views/home.vue

@@ -69,8 +69,8 @@
                     </div>
                 </div>
                 <div class="main-body" v-loading="cardLoading">
-                    <div class="has-data-body" v-if="cardList.length">
-                        <div class="building" v-for="buildingData in cardList" :key="buildingData.buildingId">
+                    <div class="has-data-body" v-if="cardTree.length">
+                        <div class="building" v-for="buildingData in cardTree" :key="buildingData.buildingId">
                             <p class="buinding-name"><span class="border-left"></span> {{ buildingData.buildingName }}</p>
                             <div class="floor" v-for="floor in buildingData.floorList" :key="floor.floorId">
                                 <p class="floor-name">{{ floor.floorName }}</p>
@@ -113,6 +113,7 @@
         <tagDialog ref="tagDialog" :isPub="isPub" @updateSuc="updateSuc"></tagDialog>
         <!-- 回收站全屏弹窗 -->
         <recycle ref="recycle" @recycleDialogClose="recycleDialogClose"></recycle>
+        <!-- <equipment-deatil /> -->
     </el-container>
 </template>
 
@@ -130,10 +131,24 @@ import recycle from "@/components/homeView/recycle";
 import createGraphDialog from "@/components/homeView/createGraphDialog";
 import createCanvasDialog from "@/components/homeView/createCanvasDialog";
 import { SNetUtil } from "@persagy-web/base";
+import equipmentDeatil from "@/components/editview/equipmentDeatil";
 export default {
     name: "home",
     // components: { leftAsideTree, createGraphDialog },
-    components: { Select, Dropdown, DropDownButton, topoImageCard, rename, move, deleteDialog, recycle, tagDialog, createCanvasDialog, leftFolder },
+    components: {
+        Select,
+        Dropdown,
+        DropDownButton,
+        topoImageCard,
+        rename,
+        move,
+        deleteDialog,
+        recycle,
+        tagDialog,
+        createCanvasDialog,
+        leftFolder,
+        equipmentDeatil,
+    },
     data() {
         return {
             dataSelect3: [
@@ -163,7 +178,8 @@ export default {
             ], // 排序选项
             queryText: "", // 搜索文字
             isPub: 1, // 发布类型()
-            cardList: [], // 当前显示的卡片列表
+            cardTree: [], // 当前显示的卡片树
+            cardList: [], //卡片平铺树
             checkAll: false, // 全选
             selectCard: [], // 当前选中的卡片列表
             isIndeterminate: true, // 全选按钮
@@ -199,25 +215,36 @@ export default {
         changeCheck(v) {
             console.log("%c选项更改:", "color:blue;");
             console.log(JSON.stringify(v, null, 2));
-            const index = this.selectCard.indexOf(v);
-            if (index > -1) {
+            // 获取该对象在选中数组中的下标(按照id匹配)
+            let index = this._.findIndex(this.selectCard, ["id", v.id]);
+            if (index !== -1) {
                 this.selectCard.splice(index, 1);
             } else {
                 this.selectCard.push(v);
             }
+            console.log(index);
+            this.isIndeterminate = Boolean(this.selectCard.length) && this.selectCard.length < this.cardList.length;
+            this.checkAll = this.selectCard.length === this.cardList.length;
         },
         // 全选按钮
         handleCheckAllChange(val) {
-            this.cardList = this.cardList.map((t) => {
-                t.checked = val;
-                return t;
+            console.log(val);
+            let cardTree = [];
+            cardTree = this.cardTree.map((building) => {
+                building.floorList.map((_floor) => {
+                    _floor.floor.map((card) => {
+                        card.checked = val;
+                    });
+                    return _floor;
+                });
+                return building;
             });
-            this.selectCard = val
-                ? this.cardList.map((t) => {
-                      t.checked = true;
-                      return t;
-                  })
-                : [];
+            this.cardTree = cardTree;
+            if (val) {
+                this.selectCard = this._.cloneDeep(this.cardList);
+            } else {
+                this.selectCard = [];
+            }
             this.isIndeterminate = false;
         },
         // 批量移动到
@@ -283,14 +310,28 @@ export default {
             // this.queryGraph();
             // TODO:
             let { yfbMocKdata } = require("./mockData");
-            console.log(yfbMocKdata);
-            this.cardList = yfbMocKdata.content.map((item) => {
-                item.floorList.map((card) => {
-                    card.checked = false;
-                    return card;
+            // console.log(yfbMocKdata);
+            let cardTree = [],
+                cardList = [];
+            cardTree = yfbMocKdata.content.map((building) => {
+                building.floorList.map((_floor) => {
+                    _floor.floor.map((card) => {
+                        card.checked = false;
+                        cardList.push({
+                            buildingId: building.buildingId,
+                            buildingName: building.buildingName,
+                            floorId: _floor.floorId,
+                            floorName: _floor.floorName,
+                            ...card,
+                        });
+                        return card;
+                    });
+                    return _floor;
                 });
-                return item;
+                return building;
             });
+            this.cardTree = cardTree;
+            this.cardList = cardList;
             this.cardLoading = false;
         },
         // 发布修改
@@ -346,7 +387,7 @@ export default {
              */
             if (this.isPub) {
                 queryPubGraph(pa).then((res) => {
-                    this.cardList = res.content.map((t) => {
+                    this.cardTree = res.content.map((t) => {
                         t.checked = false;
                         return t;
                     });
@@ -355,7 +396,7 @@ export default {
             } else {
                 pa.filters += ";state=1";
                 queryDraftsGraph(pa).then((res) => {
-                    this.cardList = res.content.map((t) => {
+                    this.cardTree = res.content.map((t) => {
                         t.checked = false;
                         return t;
                     });

+ 21 - 129
src/views/mockData.js

@@ -30,52 +30,16 @@ let yfbMocKdata = {
                         {
                             available: true,
                             buildingId: "1",
-                            categoryId: "120103",
-                            createTime: "2020-10-29 11:15:08",
-                            floorId: "1",
-                            graphId: "2dd925178d164a96941c34326ad340e8",
-                            id: "376f578716fb48febe8fb291b527169f",
-                            label: ["接电话岁微内核你", "阿双方各施工好的好的"],
-                            lastUpdate: "2020-11-19 17:05:18",
-                            name: "个环境接口",
-                            note: "1",
-                            pic: "f1e7da10-1994-11eb-9680-fdc5a286ca5f.png",
-                            projectId: "Pj1101050029",
-                            state: 0,
-                            statistics: {},
-                            version: "2.1.0",
-                        },
-                        {
-                            available: true,
-                            buildingId: "1",
-                            categoryId: "120103",
-                            createTime: "2020-10-29 11:15:08",
-                            floorId: "1",
-                            graphId: "2dd925178d164a96941c34326ad340e8",
-                            id: "376f578716fb48febe8fb291b527169f",
-                            label: ["接电话岁微内核你"],
-                            lastUpdate: "2020-11-19 17:05:18",
-                            name: "个环境接口",
-                            note: "1",
-                            pic: "f1e7da10-1994-11eb-9680-fdc5a286ca5f.png",
-                            projectId: "Pj1101050029",
-                            state: 0,
-                            statistics: {},
-                            version: "2.1.0",
-                        },
-                        {
-                            available: true,
-                            buildingId: "1",
-                            categoryId: "120103",
-                            createTime: "2020-10-29 11:15:08",
+                            categoryId: "110101",
+                            createTime: "2020-11-05 23:14:46",
                             floorId: "1",
-                            graphId: "2dd925178d164a96941c34326ad340e8",
-                            id: "376f578716fb48febe8fb291b527169f",
-                            label: ["阿双方各施工好的好的"],
-                            lastUpdate: "2020-11-19 17:05:18",
-                            name: "个环境接口",
+                            graphId: "344745c9bc69485a89dd62ca7fdb4e54",
+                            id: "ee8ac7aeca514e4dbef5066a5674e199",
+                            label: [],
+                            lastUpdate: "2020-11-05 23:14:46",
+                            name: "北京东城",
                             note: "1",
-                            pic: "f1e7da10-1994-11eb-9680-fdc5a286ca5f.png",
+                            pic: "37715eb0-1f55-11eb-ad39-a16c62663b78.png",
                             projectId: "Pj1101050029",
                             state: 0,
                             statistics: {},
@@ -84,34 +48,16 @@ let yfbMocKdata = {
                         {
                             available: true,
                             buildingId: "1",
-                            categoryId: "120103",
-                            createTime: "2020-10-29 11:15:08",
+                            categoryId: "130201",
+                            createTime: "2020-10-29 11:19:14",
                             floorId: "1",
-                            graphId: "2dd925178d164a96941c34326ad340e8",
-                            id: "376f578716fb48febe8fb291b527169f",
-                            label: ["阿双方各施工好的好的"],
-                            lastUpdate: "2020-11-19 17:05:18",
-                            name: "个环境接口",
+                            graphId: "36eddec793d747e3ab1e5a344f7d10cd",
+                            id: "38ba8b2679eb452ab1b0d30d3c0bccab",
+                            label: [1, 2, 3, 4, 5],
+                            lastUpdate: "2020-10-29 11:19:14",
+                            name: "好几年狂欢节",
                             note: "1",
-                            pic: "f1e7da10-1994-11eb-9680-fdc5a286ca5f.png",
-                            projectId: "Pj1101050029",
-                            state: 0,
-                            statistics: {},
-                            version: "2.1.0",
-                        },
-                        {
-                            available: true,
-                            buildingId: "1",
-                            categoryId: "120103",
-                            createTime: "2020-10-29 11:15:08",
-                            floorId: "1",
-                            graphId: "2dd925178d164a96941c34326ad340e8",
-                            id: "376f578716fb48febe8fb291b527169f",
-                            label: ["阿双方各施工好的好的"],
-                            lastUpdate: "2020-11-19 17:05:18",
-                            name: "个环境接口",
-                            note: "1",
-                            pic: "f1e7da10-1994-11eb-9680-fdc5a286ca5f.png",
+                            pic: "847b0b90-1995-11eb-9680-fdc5a286ca5f.png",
                             projectId: "Pj1101050029",
                             state: 0,
                             statistics: {},
@@ -130,7 +76,7 @@ let yfbMocKdata = {
                             createTime: "2020-10-29 11:15:08",
                             floorId: "1",
                             graphId: "2dd925178d164a96941c34326ad340e8",
-                            id: "376f578716fb48febe8fb291b527169f",
+                            id: "376f578716fb48febe8fb291b527169f22222",
                             label: ["接电话岁微内核你", "阿双方各施工好的好的"],
                             lastUpdate: "2020-11-19 17:05:18",
                             name: "个环境接口",
@@ -148,7 +94,7 @@ let yfbMocKdata = {
                             createTime: "2020-10-29 11:15:08",
                             floorId: "1",
                             graphId: "2dd925178d164a96941c34326ad340e8",
-                            id: "376f578716fb48febe8fb291b527169f",
+                            id: "376f578716fb48febe8fb291b527169f33333",
                             label: ["接电话岁微内核你"],
                             lastUpdate: "2020-11-19 17:05:18",
                             name: "个环境接口",
@@ -159,24 +105,6 @@ let yfbMocKdata = {
                             statistics: {},
                             version: "2.1.0",
                         },
-                        {
-                            available: true,
-                            buildingId: "1",
-                            categoryId: "120103",
-                            createTime: "2020-10-29 11:15:08",
-                            floorId: "1",
-                            graphId: "2dd925178d164a96941c34326ad340e8",
-                            id: "376f578716fb48febe8fb291b527169f",
-                            label: ["阿双方各施工好的好的"],
-                            lastUpdate: "2020-11-19 17:05:18",
-                            name: "个环境接口",
-                            note: "1",
-                            pic: "f1e7da10-1994-11eb-9680-fdc5a286ca5f.png",
-                            projectId: "Pj1101050029",
-                            state: 0,
-                            statistics: {},
-                            version: "2.1.0",
-                        },
                     ],
                 },
             ],
@@ -196,43 +124,7 @@ let yfbMocKdata = {
                             createTime: "2020-10-29 11:15:08",
                             floorId: "1",
                             graphId: "2dd925178d164a96941c34326ad340e8",
-                            id: "376f578716fb48febe8fb291b527169f",
-                            label: ["接电话岁微内核你", "阿双方各施工好的好的"],
-                            lastUpdate: "2020-11-19 17:05:18",
-                            name: "个环境接口",
-                            note: "1",
-                            pic: "f1e7da10-1994-11eb-9680-fdc5a286ca5f.png",
-                            projectId: "Pj1101050029",
-                            state: 0,
-                            statistics: {},
-                            version: "2.1.0",
-                        },
-                        {
-                            available: true,
-                            buildingId: "1",
-                            categoryId: "120103",
-                            createTime: "2020-10-29 11:15:08",
-                            floorId: "1",
-                            graphId: "2dd925178d164a96941c34326ad340e8",
-                            id: "376f578716fb48febe8fb291b527169f",
-                            label: ["接电话岁微内核你", "阿双方"],
-                            lastUpdate: "2020-11-19 17:05:18",
-                            name: "个环境接口",
-                            note: "1",
-                            pic: "f1e7da10-1994-11eb-9680-fdc5a286ca5f.png",
-                            projectId: "Pj1101050029",
-                            state: 0,
-                            statistics: {},
-                            version: "2.1.0",
-                        },
-                        {
-                            available: true,
-                            buildingId: "1",
-                            categoryId: "120103",
-                            createTime: "2020-10-29 11:15:08",
-                            floorId: "1",
-                            graphId: "2dd925178d164a96941c34326ad340e8",
-                            id: "376f578716fb48febe8fb291b527169f",
+                            id: "376f578716fb48febe8fb291b527169f4444",
                             label: ["阿双方各施工好的好的"],
                             lastUpdate: "2020-11-19 17:05:18",
                             name: "个环境接口",
@@ -250,7 +142,7 @@ let yfbMocKdata = {
                             createTime: "2020-10-29 11:15:08",
                             floorId: "1",
                             graphId: "2dd925178d164a96941c34326ad340e8",
-                            id: "376f578716fb48febe8fb291b527169f",
+                            id: "376f578716fb48febe8fb291b527169f5555",
                             label: ["阿双方各施工好的好的"],
                             lastUpdate: "2020-11-19 17:05:18",
                             name: "个环境接口",
@@ -272,4 +164,4 @@ let yfbMocKdata = {
     result: "success",
     total: 1,
 };
-export { yfbMocKdata };
+export { yfbMocKdata };