yunxing 4 年之前
父節點
當前提交
c8a5a4be31

+ 169 - 169
src/components/editview/leftToolBar/pipeList.vue

@@ -1,201 +1,201 @@
 <template>
-  <div class="pipe-list">
-    <Input
-      class="baseItemInput"
-      :width="188"
-      iconType="search"
-      v-model="getPressMsg"
-      placeholder="搜索管线名称"
-      @pressEnter="pressEnter"
-      @clear="pressEnter"
-    />
-    <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>
+    <div class="pipe-list">
+        <Input
+            class="baseItemInput"
+            :width="188"
+            iconType="search"
+            v-model="getPressMsg"
+            placeholder="搜索管线名称"
+            @pressEnter="pressEnter"
+            @clear="pressEnter"
+        />
+        <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 :class="{ 'btn-active': id == a.id }" 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>
-          </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>
+        <ul class="itemList msgList" v-show="pressMsgData.length">
+            <li :class="{ 'btn-active': id == a.id }" 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>
+            </li>
+        </ul>
+    </div>
 </template>
 <script>
 import { mapMutations } from "vuex";
 import { queryPipeline } from "@/api/editer";
 
 export default {
-  data() {
-    return {
-      getPressMsg: "",
-      pipeList: [],
-      pressMsgData: [], //搜素搜到的数组
-    };
-  },
-  methods: {
-    ...mapMutations(["SETCHOICELEHEND", "SETLEGENDOBJ"]),
-    // 获取管道
-    getPipe(item) {
-      this.SETLEGENDOBJ(item);
-      const cmd = "EditBasePipe";
-      this.SETCHOICELEHEND(cmd);
-    },
-    // 搜索回车操作
-    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;
+    data() {
+        return {
+            getPressMsg: "",
+            pipeList: [],
+            pressMsgData: [], //搜素搜到的数组
+            id: null, //选中的管线
+        };
     },
-    // 折叠面板
-    collapse(item) {
-      item.showchild = !item.showchild;
+    methods: {
+        ...mapMutations(["SETCHOICELEHEND", "SETLEGENDOBJ"]),
+        // 获取管道
+        getPipe(item) {
+            console.log(item);
+            this.id = item.id;
+            this.SETLEGENDOBJ(item);
+            const cmd = "EditBasePipe";
+            this.SETCHOICELEHEND(cmd);
+        },
+        // 搜索回车操作
+        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;
+        },
+        // 获取管道数据
+        getPipeList() {
+            queryPipeline().then((res) => {
+                this.pipeList = [];
+                if (res.content && res.total) {
+                    this.pipeList = res.content.map((item) => {
+                        item.showchild = true;
+                        return item;
+                    });
+                }
+            });
+        },
     },
-    // 获取管道数据
-    getPipeList() {
-      queryPipeline().then((res) => {
-        this.pipeList = [];
-        if (res.content && res.total) {
-          this.pipeList = res.content.map((item) => {
-            item.showchild = true;
-            return item;
-          });
-        }
-      });
+    mounted() { },
+    created() {
+        this.getPipeList();
     },
-  },
-  mounted() {},
-  created() {
-    this.getPipeList();
-  },
 };
 </script>
 <style lang="less" scoped>
 ul,
 li {
-  margin: 0;
-  padding: 0;
-  list-style-type: none;
+    margin: 0;
+    padding: 0;
+    list-style-type: none;
 }
 .pipe-list {
-  width: 100%;
-  height: 100%;
-  padding-top: 12px;
-  .type {
-    padding: 12px;
-    box-sizing: border-box;
-    .type-item {
-      .type-title {
-        margin: 12px 0 14px 0;
-        cursor: pointer;
-        span {
-          width: 14px;
-          color: #1f2429;
-          margin-left: 4px;
+    width: 100%;
+    height: 100%;
+    padding-top: 12px;
+    .type {
+        padding: 12px;
+        box-sizing: border-box;
+        .type-item {
+            .type-title {
+                margin: 12px 0 14px 0;
+                cursor: pointer;
+                span {
+                    width: 14px;
+                    color: #1f2429;
+                    margin-left: 4px;
+                }
+            }
+            .itemList {
+                width: 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;
+                }
+            }
         }
-      }
-      .itemList {
+    }
+
+    .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;
-          }
+            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;
+            background: #f5f6f7;
+            cursor: pointer;
+        }
+        .btn-active {
+            background: #e1f2ff !important;
         }
-      }
-    }
-  }
-}
-.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;
+    .msgList {
+        height: auto !important;
+        padding: 12px;
     }
-  }
-  li:hover {
-    background: #f5f6f7;
-    cursor: pointer;
-  }
 }
 </style>

+ 6 - 3
src/components/editview/topToolBar.vue

@@ -29,12 +29,12 @@
                 </li>
                 <li>
                     <el-tooltip class="item" effect="dark" content="组合" placement="bottom">
-                        <span class="icon iconfont icon-zuhe"></span>
+                        <span class="disabled icon iconfont icon-zuhe"></span>
                     </el-tooltip>
                 </li>
                 <li>
                     <el-tooltip class="item" effect="dark" content="打散" placement="bottom">
-                        <span class="icon iconfont icon-dasan"></span>
+                        <span class="disabled icon iconfont icon-dasan"></span>
                     </el-tooltip>
                 </li>
                 <li @click="setOrder('Top')">
@@ -116,7 +116,7 @@ export default {
     },
 };
 </script>
-<style lang="less">
+<style lang="less" scoped>
 ul,
 li {
     margin: 0;
@@ -173,5 +173,8 @@ li {
             }
         }
     }
+    .disabled {
+        cursor: not-allowed;
+    }
 }
 </style>

+ 101 - 98
src/components/editview/topoTooltip.vue

@@ -1,118 +1,121 @@
 <!-- 弹框 -->
 <template>
-  <div class="topo_tooltip">
-    <div v-if="havItem" class="tooltip-card">
-      <ul>
-        <li @click="editItem">编辑</li>
-        <li @click="setLock">锁定</li>
-        <li @click="toTop">置顶</li>
-        <li @click="toBottom">置底</li>
-        <li @click="deleteItem">删除</li>
-      </ul>
+    <div class="topo_tooltip">
+        <div v-if="havItem" class="tooltip-card">
+            <ul>
+                <li @click="editItem">编辑</li>
+                <li @click="setLock">{{ lock ? "解锁" : "锁定" }}</li>
+                <li @click="toTop">置顶</li>
+                <li @click="toBottom">置底</li>
+                <li @click="deleteItem">删除</li>
+            </ul>
+        </div>
+        <div v-else class="tooltip-card">
+            <ul>
+                <li @click="saveGraph">保存</li>
+                <li @click="publishGraph">发布</li>
+                <li @click="downPng">下载</li>
+            </ul>
+        </div>
     </div>
-    <div v-else class="tooltip-card">
-      <ul>
-        <li @click="saveGraph">保存</li>
-        <li @click="publishGraph">发布</li>
-        <li @click="downPng">下载</li>
-      </ul>
-    </div>
-  </div>
 </template>
 <script>
 import { SItemStatus } from "@persagy-web/big";
 import bus from "@/bus/bus";
 export default {
-  props: ["havItem"],
-  name: "topoTooltip",
-  data() {
-    return {};
-  },
-  methods: {
-    // 编辑图例
-    editItem() {
-      bus.$emit("setItemStatus");
-      this.closetooltip();
-    },
-    setLock() {
-      bus.$emit("tooltipLock");
-      this.closetooltip();
-    },
-    // 置顶
-    toTop() {
-      bus.$emit("setOrder", "Top");
-      this.closetooltip();
-    },
-    // 置底
-    toBottom() {
-      bus.$emit("setOrder", "Bottom");
-      this.closetooltip();
-    },
-    // 删除
-    deleteItem() {
-      bus.$emit("deleteItem");
-      this.closetooltip();
-    },
-    // 保存图
-    saveGraph() {
-      bus.$emit('saveTopo');
-      this.closetooltip();
-    },
-    // 发布图
-    publishGraph() {
-      bus.$emit('issueTopo');
-      this.closetooltip();
-    },
-    // 下载
-    downPng() {
-      bus.$emit('saveTopoImg');
-      this.closetooltip();
+    props: ["havItem"],
+    name: "topoTooltip",
+    data() {
+        return {
+            lock: false,
+        };
     },
-    // 关闭窗口
-    closetooltip() {
-      this.$emit("closeTooltip");
+    methods: {
+        // 编辑图例
+        editItem() {
+            bus.$emit("setItemStatus");
+            this.closetooltip();
+        },
+        setLock() {
+            this.lock = !this.lock;
+            bus.$emit("tooltipLock");
+            this.closetooltip();
+        },
+        // 置顶
+        toTop() {
+            bus.$emit("setOrder", "Top");
+            this.closetooltip();
+        },
+        // 置底
+        toBottom() {
+            bus.$emit("setOrder", "Bottom");
+            this.closetooltip();
+        },
+        // 删除
+        deleteItem() {
+            bus.$emit("deleteItem");
+            this.closetooltip();
+        },
+        // 保存图
+        saveGraph() {
+            bus.$emit("saveTopo");
+            this.closetooltip();
+        },
+        // 发布图
+        publishGraph() {
+            bus.$emit("issueTopo");
+            this.closetooltip();
+        },
+        // 下载
+        downPng() {
+            bus.$emit("saveTopoImg");
+            this.closetooltip();
+        },
+        // 关闭窗口
+        closetooltip() {
+            this.$emit("closeTooltip");
+        },
     },
-  },
-  mounted() {},
+    mounted() { },
 };
 </script>
 <style lang="less" scoped>
 ul,
 li {
-  margin: 0;
-  padding: 0;
-  list-style-type: none;
+    margin: 0;
+    padding: 0;
+    list-style-type: none;
 }
 .topo_tooltip {
-  position: relative;
-  .tooltip-card {
-    border: 1px solid #e4e5e7;
-    border-radius: 4px;
-    box-shadow: 0 2px 10px rgba(31, 35, 41, 0.1);
-    background: #fff;
-    font-size: 0;
-    ul {
-      li {
-        display: flex;
-        align-items: center;
-        justify-content: space-between;
-        position: relative;
-        width: 100px;
-        box-sizing: border-box;
-        border-radius: 0;
-        padding: 8px 0 8px 12px;
-        cursor: pointer;
-        overflow: hidden;
-        text-overflow: ellipsis;
-        white-space: nowrap;
-        background: #ffff;
-        color: #1f2328;
-        font-size: 12px;
-      }
-      li:hover {
-        background: #f5f6f7;
-      }
+    position: relative;
+    .tooltip-card {
+        border: 1px solid #e4e5e7;
+        border-radius: 4px;
+        box-shadow: 0 2px 10px rgba(31, 35, 41, 0.1);
+        background: #fff;
+        font-size: 0;
+        ul {
+            li {
+                display: flex;
+                align-items: center;
+                justify-content: space-between;
+                position: relative;
+                width: 100px;
+                box-sizing: border-box;
+                border-radius: 0;
+                padding: 8px 0 8px 12px;
+                cursor: pointer;
+                overflow: hidden;
+                text-overflow: ellipsis;
+                white-space: nowrap;
+                background: #ffff;
+                color: #1f2328;
+                font-size: 12px;
+            }
+            li:hover {
+                background: #f5f6f7;
+            }
+        }
     }
-  }
 }
 </style>