|
@@ -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;
|