Преглед на файлове

edit:feat>获取图例接口,调整联动添加与左侧栏

YaolongHan преди 4 години
родител
ревизия
27a72445e3
променени са 5 файла, в които са добавени 230 реда и са изтрити 166 реда
  1. 8 0
      src/api/editer.ts
  2. 71 18
      src/components/editview/leftToolBar/addItemModel.vue
  3. 143 146
      src/components/editview/leftToolBar/equipmentList.vue
  4. 3 2
      src/store/index.ts
  5. 5 0
      vue.config.js

+ 8 - 0
src/api/editer.ts

@@ -30,3 +30,11 @@ export function readCategory(postParams: any): any {
 export function queryEquip(postParams: any): any {
     return httputils.postJson(`/equip-componnet/labsl/query/equip`, postParams)
 }
+// 根据设备 id 查询设备对应的专业 /labsl/major/category
+export function queryCategory(postParams: any): any {
+    return httputils.postJson(`/equip-componnet/labsl/major/category`, postParams)
+}
+// 查询设备图例图片
+export function queryLegend(postParams: any): any {
+    return httputils.postJson(`/meiku/legend/query`, postParams)
+}

+ 71 - 18
src/components/editview/leftToolBar/addItemModel.vue

@@ -157,8 +157,12 @@
 </template>
 <script>
 import { mapMutations, mapState } from "vuex";
-import { EquipmentList } from "./equipData";
-import { buildiFloor, readCategory, queryEquip } from "@/api/editer";
+import {
+  buildiFloor,
+  readCategory,
+  queryEquip,
+  queryLegend,
+} from "@/api/editer";
 export default {
   props: ["showAddItemModel", "filtIdList"],
   computed: {
@@ -179,14 +183,15 @@ export default {
       floorIdString: "", // 楼层id 类型string
       tableTotal: 0, //搜索获取得设备总数
       equiptable: [], //table数据
-      equipData: [], //选中得设备数组
+      equipData: [], //选中得设备数组 右侧二级树
       buildFloorList: [], // 建筑查询数据
       categoryList: [], //设备类型
       tableHeight: 0, //table的高度
       choiceEquipList: [], // 选中得设备数组//非树机构
       pageSize: 20,
       currentPage: 1,
-      local: null,
+      local: null, //table loading
+      local2: null, // 全局 loading
       queryText: "", //搜索框数据
     };
   },
@@ -195,6 +200,7 @@ export default {
     // 筛选设备
     changeEquip(list) {
       const classCode = []; // 设备类型
+      this.currentPage = 1;
       list.forEach((val) => {
         if (val.index == 3) {
           classCode.push(val.id);
@@ -213,6 +219,7 @@ export default {
       let floorIdList = [];
       let isfloornull = "";
       let isbuildnull = "";
+      this.currentPage = 1;
       // 遍历获取对应得楼层id、建筑id
       list.forEach((val) => {
         if (val.index == 1) {
@@ -257,20 +264,20 @@ export default {
     // 搜索设备
     queryEquip() {
       let data = {
-        Cascade: [
+        cascade: [
           {
-            Name: "building",
-            Projection: ["id", "name", "localName"],
+            name: "building",
+            projection: ["id", "name", "localName"],
           },
           {
-            Name: "floor",
-            Projection: ["id", "name", "localName"],
+            name: "floor",
+            projection: ["id", "name", "localName"],
           },
         ],
-        Orders: "name asc, createTime desc",
-        PageNumber: this.currentPage,
-        PageSize: this.pageSize,
-        Filters: `projectId='${this.projectId}'${this.filtIdListString}${this.buildIdString}${this.floorIdString}${this.equipTypeString};localName contain "${this.queryText}" or localId contain "${this.queryText}"`,
+        orders: "name asc, createTime desc",
+        pageNumber: this.currentPage,
+        pageSize: this.pageSize,
+        filters: `projectId='${this.projectId}'${this.filtIdListString}${this.buildIdString}${this.floorIdString}${this.equipTypeString};localName contain "${this.queryText}" or localId contain "${this.queryText}"`,
       };
       this.localLoading();
       queryEquip(data)
@@ -291,13 +298,55 @@ export default {
     },
     // 确认/提交
     finish() {
-      // 将选中的设备类存到vuex中
-      this.SETEQUIPLIST(this.choiceEquipList);
-      // 获取专业和设备类型
-      this.modalClose();
+      // 获取选中图例得 iamge url
+      if (!this.equipData.length) {
+        this.modalClose();
+      }
+      const categoryList = [];
+      this.equipData.forEach((item) => {
+        categoryList.push(item.id);
+      });
+      const categoryListString = JSON.stringify(categoryList);
+      let data = {
+        cascade: [
+          {
+            name: "anchorList",
+          },
+          {
+            name: "state",
+          },
+        ],
+        filters: `category in ${categoryListString}`,
+        pageNumber: 1,
+        pageSize: 1000,
+      };
+      this.local2 = this.$loading({ type: "global" });
+      queryLegend(data)
+        .then((res) => {
+          if (res.content && res.content.length) {
+            let list = this.choiceEquipList;
+            res.content.forEach((contentType) => {
+              list.forEach((item) => {
+                if (item.classCode == contentType.category) {
+                  item.url = contentType.state[0].pic;
+                }
+              });
+            });
+            this.choiceEquipList = list;
+          }
+          // // 将选中的设备类存到vuex中
+          this.SETEQUIPLIST(this.choiceEquipList);
+          this.$loading.close(this.local2);
+          this.modalClose();
+        })
+        .catch((res) => {
+          this.$loading.close(this.local2);
+          this.modalClose();
+        });
     },
     // 搜索回车
     pressEnter() {
+      this.currentPage = 1;
       this.queryEquip();
     },
     // /是否下拉折叠
@@ -399,7 +448,6 @@ export default {
           };
           obj.children.push(item);
           arr.push(obj);
-          console.log("this.equipData", arr);
         }
       });
       this.equipData = arr;
@@ -435,6 +483,7 @@ export default {
           ["code", "name", "children"]
         );
       });
+      // 设置table的高
       setTimeout(() => {
         const domLeft = document.getElementById("left");
         if (domLeft) {
@@ -443,6 +492,10 @@ export default {
           this.queryEquip();
         }
       });
+      // 清空选中的item;
+      this.choiceEquipList = [];
+      // 清空右侧二级树
+      this.equipData = [];
     },
   },
   watch: {

+ 143 - 146
src/components/editview/leftToolBar/equipmentList.vue

@@ -1,6 +1,6 @@
 <!-- 设备列表 -->
 <template>
-  <div class="equip-list">
+  <div class="equip-list" id="equiplist">
     <!-- 筛选 -->
     <div class="clp">
       <Input
@@ -48,55 +48,74 @@
       </Popover>
     </div>
     <!-- 设备 list -->
-    <div class="porfess" v-for="(items, index) in equipmentList" :key="index">
-      <div @click="collapse(items)" class="porfess-title">
-        <span>{{ items.porfess }}</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.equipType }}</span>
-            </div>
-            <el-collapse-transition>
-              <ul @mouseout="deletehover" v-show="item.isShow">
-                <li
-                  @click="getEquipItem('lengganji.svg')"
-                  v-for="(a, b) in item.children"
-                  :key="b"
-                  @mouseover="sethover(b)"
-                >
-                  <div class="left">
-                    <div class="showEyes">
-                      <Icon v-show="hoverIndex == b" name="preview" />
+    <div class="box-porfess" id="boxPorfess">
+      <div class="porfess" 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
+                    @click="getEquipItem('lengganji.svg')"
+                    v-for="(a, b) in item.children"
+                    :key="b"
+                    @mouseover="sethover(index, i, b)"
+                  >
+                    <div class="left">
+                      <div class="showEyes">
+                        <Icon
+                          v-show="hoverIndex == '' + index + i + b"
+                          name="preview"
+                        />
+                      </div>
+                      <div class="icon">
+                        <img
+                          width="28"
+                          height="28"
+                          src="./../../../assets/images/equip/lengganji.svg"
+                          alt=""
+                        />
+                      </div>
                     </div>
-                    <div class="icon"></div>
-                  </div>
-                  <div class="right">
-                    <div class="t">{{ a.name }}</div>
-                    <div class="b">W3456112345093</div>
-                  </div>
-                  <div class="icons">
-                    <Icon v-show="hoverIndex == b" name="more" />
-                  </div>
-                </li>
-              </ul>
-            </el-collapse-transition>
+                    <div class="right">
+                      <div class="t" :title="a.localName">
+                        {{ a.localName ? a.localName : "--" }}
+                      </div>
+                      <div class="b" :title="a.localId">
+                        {{ a.localId ? a.localId : "--" }}
+                      </div>
+                    </div>
+                    <div class="icons">
+                      <Icon
+                        v-show="hoverIndex == '' + index + i + b"
+                        name="more"
+                      />
+                    </div>
+                  </li>
+                </ul>
+              </el-collapse-transition>
+            </div>
           </div>
-        </div>
-      </el-collapse-transition>
+        </el-collapse-transition>
+      </div>
     </div>
 
     <!-- 添加设备 -->
@@ -108,78 +127,14 @@
 </template>
 <script>
 import { mapMutations, mapState } from "vuex";
-import { equipmentList } from "./equipData";
+import { queryCategory } from "@/api/editer";
 export default {
   data() {
     return {
-      cascaderData6: [
-        {
-          title: "United Kingdom",
-          id: "id1",
-          children: [
-            { id: "id2", title: "London" },
-            { id: "id3", title: "Edinburgh" },
-            { id: "id4", title: "Cardiff" },
-            { id: "id5", title: "Birmingham" },
-            { id: "id6", title: "Liverpool" },
-            { id: "id7", title: "Oxford" },
-            { id: "id8", title: "Plymouth" },
-          ],
-        },
-        {
-          title: "AMERICAN",
-          id: "id9",
-          children: [
-            { id: "id10", title: "Chicago" },
-            { id: "id11", title: "Philadelphia" },
-            { id: "id12", title: "Boston" },
-            { id: "id13", title: "Houston" },
-            { id: "id14", title: "Atlanta" },
-            { id: "id15", title: "San Francisco" },
-          ],
-        },
-        {
-          title: "CHINA",
-          id: "id16",
-          children: [
-            { id: "id17", title: "BeiJing" },
-            { id: "id18", title: "ShangHAI" },
-            {
-              title: "GuiYang",
-              id: "id19",
-              children: [
-                { id: "id20", title: "Qingyan" },
-                { id: "id21", title: "Guian" },
-              ],
-            },
-            { id: "id22", title: "ZunYi" },
-          ],
-        },
-        {
-          title: "韩国",
-          id: "id23",
-          children: [
-            { id: "id24", title: "首尔" },
-            { id: "id25", title: "仁川" },
-            { id: "id26", title: "釜山" },
-            {
-              id: "id27",
-              title: "蔚山",
-              children: [
-                { id: "id10", title: "Chicago" },
-                { id: "id11", title: "Philadelphia" },
-                { id: "id12", title: "Boston" },
-                { id: "id13", title: "Houston" },
-                { id: "id14", title: "Atlanta" },
-                { id: "id15", title: "San Francisco" },
-              ],
-            },
-          ],
-        },
-      ],
-      equipmentList: [],
+      cascaderData6: [],
       hoverIndex: -1,
       baseItemVal: "",
+      equipmentTree: [],
     };
   },
   methods: {
@@ -189,8 +144,8 @@ export default {
       this.$emit("openAddEqupModle");
     },
     // 设置hover显示
-    sethover(b) {
-      this.hoverIndex = b;
+    sethover(a, b, c) {
+      this.hoverIndex = "" + a + b + c;
     },
     deletehover() {
       this.hoverIndex = -1;
@@ -230,37 +185,59 @@ export default {
     },
     //
     changeItem() {},
-    pressEnter(){}
+    pressEnter() {},
+    // 获取设备相关的专业以及设备类型
+    getCategory(idList) {
+      queryCategory(idList).then((res) => {
+        // 返回专业及其类型,根据类型 添加设备
+        let category = res.content;
+        category.forEach((item) => {
+          item.isShow = true;
+          if (item.children && item.children.length) {
+            item.children.map((child) => {
+              let obj = [];
+              child.isShow = true;
+              this.equipmentList.forEach((choiceItem) => {
+                choiceItem.isShow = true;
+                if (choiceItem.classCode == child.aliasCode) {
+                  obj.push(choiceItem);
+                }
+              });
+              if (obj.length) {
+                child.children = obj;
+              }
+              return child;
+            });
+          }
+        });
+        this.equipmentTree = category;
+      });
+    },
   },
   computed: {
-    ...mapState(["editCmd"]),
-    // equipmentList
+    ...mapState(["editCmd", "equipmentList"]),
+  },
+  watch: {
+    equipmentList: {
+      handler: function (val) {
+        if (!val.length) return;
+        const idList = [];
+        val.forEach((item) => {
+          idList.push(item.id);
+        });
+        this.getCategory(idList);
+      },
+      deep: true,
+      immediate: true,
+    },
   },
   mounted() {
-    let list = [];
-    // 获取树专业
-    equipmentList.forEach((items) => {
-      const porfessId = items.porfessId;
-      const equipTypeId = items.equipTypeId;
-      const listIndex = this.isinlist(items, "porfessId", "porfess", list);
-      // 第二次;
-      list.forEach((listItem) => {
-        this.isinlist(items, "equipTypeId", "equipType", listItem.children);
-        // 第三层
-        if (porfessId == listItem.porfessId) {
-          listItem.children.forEach((item) => {
-            if (equipTypeId == item.equipTypeId) {
-              item.children.push({
-                name: items.name,
-                id: items.id,
-                url: items.url,
-              });
-            }
-          });
-        }
-      });
-    });
-    this.equipmentList = list;
+    const dombox = document.getElementById("equiplist");
+    const boxPorfess = document.getElementById("boxPorfess");
+    if (dombox) {
+      boxPorfess.style.height = dombox.offsetHeight - 90 + "px";
+      console.log("boxPorfess", boxPorfess.style);
+    }
   },
 };
 </script>
@@ -291,6 +268,10 @@ li {
       cursor: pointer;
     }
   }
+  .box-porfess {
+    min-height: 500px;
+    overflow-y: scroll;
+  }
   .porfess {
     .porfess-title {
       width: 100%;
@@ -310,6 +291,8 @@ li {
           height: 48px;
           display: flex;
           cursor: pointer;
+          justify-content: space-around;
+          align-items: center;
           &:hover {
             background: #f5f6f7;
           }
@@ -326,21 +309,34 @@ li {
               width: 28px;
               height: 28px;
               border-radius: 50% 50%;
-              background: red;
+              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;
+          }
         }
       }
     }
@@ -348,10 +344,11 @@ li {
 
   .addbtn {
     width: 100%;
-    height: 46px;
+    height: 40px;
     position: absolute;
     bottom: 0;
     left: 0;
+    transform: translateY(-40%);
     display: flex;
     align-items: center;
     justify-content: center;

+ 3 - 2
src/store/index.ts

@@ -12,7 +12,7 @@ export default new Vuex.Store({
     isPub: 0,     // 用于读图 区分读取 已发布 or 未发布
     projectId: 'Pj1101050029',  // projectId
     categoryId: '',   //类型id 用于读图
-    equipmentList: []  //设备数组
+    equipmentList: []  //图上所有设备数组
   },
   mutations: {
     // 修改编辑器命令
@@ -39,7 +39,8 @@ export default new Vuex.Store({
     },
     // 设置设备 list
     SETEQUIPLIST(state, val) {
-      state.equipmentList.concat(val);
+      let arr1 = state.equipmentList;
+      state.equipmentList = arr1.concat(val)
     }
   },
   actions: {

+ 5 - 0
vue.config.js

@@ -11,6 +11,11 @@ module.exports = {
                 changeOrigin: true,
                 secure: false,
             },
+            '/meiku': {
+                target: 'http://39.102.40.239:8080',
+                changeOrigin: true,
+                secure: false,
+            },
             // 图片服务器
             '/image-service': {
                 target: 'http://adm.sagacloud.cn',