瀏覽代碼

editer:feat>左侧工具栏所有相关搜索功能

YaolongHan 4 年之前
父節點
當前提交
e5e11bfdce

+ 69 - 2
src/components/editview/leftToolBar/addBaseItem.vue

@@ -5,12 +5,14 @@
     <Input
       class="baseItemInput"
       :width="188"
-      placeholder="搜索元素名称"
+      placeholder="搜索图例名称"
       iconType="search"
       v-model="baseItemVal"
       @pressEnter="pressEnter"
+      @clear="pressEnter"
     />
     <div
+      v-show="!baseItemList.length"
       class="lengend-item"
       v-for="(item, index) in baseEditItems"
       :key="index"
@@ -46,6 +48,18 @@
         </el-collapse-transition>
       </div>
     </div>
+    <ul class="baseItems" v-show="baseItemList.length">
+      <li
+        :class="{ 'btn-active': editCmd == baseItem.id }"
+        v-for="(baseItem, k) in baseItemList"
+        :key="k"
+        @click="drawItem(baseItem.id)"
+        :title="baseItem.name"
+      >
+        <img class="icon" :src="baseItem.icon" />
+        <span class="iconName">{{ baseItem.name }}</span>
+      </li>
+    </ul>
   </div>
 </template>
 <script>
@@ -56,6 +70,7 @@ export default {
     return {
       baseEditItems,
       baseItemVal: "", //基础组件搜索
+      baseItemList: [], // 搜索后返回得数组
     };
   },
   computed: {
@@ -66,7 +81,22 @@ export default {
     drawItem(item) {
       this.SETCHOICELEHEND(item);
     },
-    pressEnter() {},
+    pressEnter() {
+      const list = [];
+      if (!this.baseItemVal) {
+        this.baseItemList = [];
+        return;
+      }
+      // 对信息点相同得提取出来
+      this.baseEditItems[0].itemList.forEach((item) => {
+        item.itemList.forEach((a) => {
+          if (a.name.includes(this.baseItemVal)) {
+            list.push(a);
+          }
+        });
+      });
+      this.baseItemList = list;
+    },
     // /是否下拉折叠
     collapse(item) {
       item.isClip = !item.isClip;
@@ -181,4 +211,41 @@ export default {
     }
   }
 }
+.baseItems {
+  display: flex;
+  flex-wrap: wrap;
+  border-bottom: 1px solid #eee;
+  li {
+    font-size: 12px;
+    width: 52px;
+    height: 52px;
+    display: flex;
+    align-items: center;
+    justify-content: center;
+    flex-direction: column;
+    padding: 4px;
+    box-sizing: border-box;
+    margin: 0 10px 16px 10px;
+    .icon {
+      width: 28px;
+      height: 28px;
+      // background: red;
+    }
+    .iconName {
+      width: 100%;
+      display: flex;
+      justify-content: center;
+      overflow: hidden;
+      text-overflow: ellipsis;
+      white-space: nowrap;
+    }
+    cursor: pointer;
+  }
+  li:hover {
+    background: #f5f6f7;
+  }
+  .btn-active {
+    background: #e1f2ff !important;
+  }
+}
 </style>

+ 185 - 37
src/components/editview/leftToolBar/equipmentList.vue

@@ -7,9 +7,10 @@
         class="baseItemInput"
         :width="188"
         iconType="search"
-        placeholder="搜索元素名称"
-        v-model="baseItemVal"
+        placeholder="搜索图例名称"
+        v-model="getPressMsg"
         @pressEnter="pressEnter"
+        @clear="pressEnter"
       />
       <Popover type="confirm" placement="bottom-center">
         <template slot="content">
@@ -48,8 +49,13 @@
       </Popover>
     </div>
     <!-- 设备 list -->
-    <div class="box-porfess" id="boxPorfess">
-      <div class="porfess" v-for="(items, index) in equipmentTree" :key="index">
+    <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
@@ -128,6 +134,57 @@
           </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>
 
     <!-- 添加设备 -->
@@ -144,10 +201,12 @@ import bus from "@/bus/bus";
 export default {
   data() {
     return {
-      cascaderData6: [],
+      cascaderData6: [], // 筛选待定
       hoverIndex: -1,
-      baseItemVal: "",
-      equipmentTree: [],
+      getPressMsg: "", //搜索框
+      pressMsgData: [], //搜索对应得数组
+      equipmentTree: [], //三级设备树
+      local: null, //table loading
     };
   },
   methods: {
@@ -204,9 +263,40 @@ export default {
     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() {},
+    // 搜索回车操作
+    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 数组
@@ -214,32 +304,40 @@ export default {
       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);
+      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;
               });
-              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);
         });
-        this.equipmentTree = category;
-      });
     },
     // 点击设备实例
     clickEquipItem(item) {
@@ -248,17 +346,13 @@ export default {
     },
   },
   computed: {
-    ...mapState([
-      "editCmd",
-      "equipmentItemList",
-      "equipmentItemNum",
-    ]),
+    ...mapState(["editCmd", "equipmentItemList", "equipmentItemNum"]),
   },
   watch: {
     equipmentItemNum: {
       handler: function (val) {
+        this.localLoading();
         this.getCategory(this.equipmentItemList);
-        console.log("vvvvvvvvvv", val);
       },
       deep: true,
       immediate: true,
@@ -397,6 +491,60 @@ li {
     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;

+ 89 - 25
src/components/editview/leftToolBar/pipeList.vue

@@ -4,29 +4,45 @@
       class="baseItemInput"
       :width="188"
       iconType="search"
-      v-model="baseItemVal"
+      v-model="getPressMsg"
       @pressEnter="pressEnter"
+      @clear="pressEnter"
     />
-    <ul class="type" v-for="(item, key) in pipeList" :key="key">
-      <li class="type-item">
-        <div class="type-title" @click="collapse(item)">
-          <i class="el-icon-caret-bottom"></i>
-          <span>{{ item.name }}</span>
-        </div>
-        <el-collapse-transition>
-          <ul class="itemList" v-show="item.showchild">
-            <li
-              v-for="(a, b) in item.categoryList"
-              :key="b"
-              @click="getPipe(a)"
-            >
-              <div :style="'background:' + a.color"></div>
-              <span>{{ a.name }}</span>
-            </li>
-          </ul>
-        </el-collapse-transition>
-      </li>
-    </ul>
+    <div v-show="!pressMsgData.length">
+      <ul class="type" v-for="(item, key) in pipeList" :key="key">
+        <li class="type-item">
+          <div class="type-title" @click="collapse(item)">
+            <i class="el-icon-caret-bottom"></i>
+            <span>{{ item.name }}</span>
+          </div>
+          <el-collapse-transition>
+            <ul class="itemList" v-show="item.showchild">
+              <li
+                v-for="(a, b) in item.categoryList"
+                :key="b"
+                @click="getPipe(a)"
+              >
+                <div :style="'background:' + a.color"></div>
+                <span>{{ a.name }}</span>
+              </li>
+            </ul>
+          </el-collapse-transition>
+        </li>
+      </ul>
+    </div>
+      <ul class="itemList" v-show="pressMsgData.length">
+              <li
+                v-for="(a, b) in pressMsgData"
+                :key="b"
+                @click="getPipe(a)"
+              >
+                <div :style="'background:' + a.color"></div>
+                <span>{{ a.name }}</span>
+              </li>
+            </ul>
+          </el-collapse-transition>
+        </li>
+      </ul>
   </div>
 </template>
 <script>
@@ -36,8 +52,9 @@ import { queryPipeline } from "@/api/editer";
 export default {
   data() {
     return {
-      baseItemVal: "",
+      getPressMsg: "",
       pipeList: [],
+      pressMsgData: [], //搜素搜到的数组
     };
   },
   methods: {
@@ -48,7 +65,23 @@ export default {
       const cmd = "EditBasePipe";
       this.SETCHOICELEHEND(cmd);
     },
-    pressEnter() {},
+    // 搜索回车操作
+    pressEnter() {
+      const list = [];
+      if (!this.getPressMsg) {
+        this.pressMsgData = [];
+        return;
+      }
+      // 对信息点相同得提取出来
+      this.pipeList.forEach((item) => {
+        item.categoryList.forEach((a) => {
+          if (a.name.includes(this.getPressMsg)) {
+            list.push(a);
+          }
+        });
+      });
+      this.pressMsgData = list;
+    },
     // 折叠面板
     collapse(item) {
       item.showchild = !item.showchild;
@@ -63,7 +96,6 @@ export default {
             return item;
           });
         }
-        console.log(" item.showchild", this.pipeList);
       });
     },
   },
@@ -98,7 +130,6 @@ li {
       }
       .itemList {
         width: 100%;
-        height: 100%;
         display: flex;
         flex-wrap: wrap;
         li {
@@ -132,4 +163,37 @@ li {
     }
   }
 }
+.itemList {
+  width: 100%;
+  height: 100%;
+  display: flex;
+  flex-wrap: wrap;
+  li {
+    width: 60px;
+    height: 62px;
+    border-radius: 2px;
+    cursor: pointer;
+    display: flex;
+    flex-direction: column;
+    justify-content: center;
+    align-items: center;
+    padding: 4px;
+    box-sizing: border-box;
+    span {
+      color: #646a73;
+      font-size: 10px;
+      line-height: 11px;
+    }
+    div {
+      width: 32px;
+      height: 4px;
+      background: #fa9900;
+      margin: 6px 0 8px 0;
+    }
+  }
+  li:hover {
+    background: #f5f6f7;
+    cursor: pointer;
+  }
+}
 </style>