PipeColor.vue 3.34 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
<!--
 * @Author: your name
 * @Date: 2022-01-26 10:52:10
 * @LastEditTime: 2022-02-17 10:11:35
 * @LastEditors: Please set LastEditors
 * @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
 * @FilePath: /test/hello-world/src/components/PipeColor.vue
-->
<template>
  <div>
11 12
    <div class="pipePressure">
<!-- 
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
      <div style="float: left;margin-right: 5px;">
        <div class="hasColorBox">
          <img src="../../assets/image/bigtyx.svg" alt="">
          调压箱
        </div>
        <div class="hasColorBox">
          <img src="../../assets/image/bigfmj.svg" alt="">
          阀门井
        </div>
        <div class="hasColorBox">
          <img src="../../assets/image/bigcz.svg" alt="">
          厂站
        </div>
        <div class="hasColorBox">
          <img src="../../assets/image/biguser.svg" alt="">
          用户
        </div>
        <div class="hasColorBox">
          <img src="../../assets/image/bigjk.svg" alt="">
          监控
        </div>
34
      </div> -->
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
      <div>
        <div class="hasColorBox" :style="{ color: pipeColor[`1`] }">
          <div :style="{ backgroundColor: pipeColor[`1`] }"></div>
          低压管线
        </div>
        <div class="hasColorBox" :style="{ color: pipeColor[`2`] }">
          <div :style="{ backgroundColor: pipeColor[`2`] }"></div>
          中压管线
        </div>
        <div class="hasColorBox" :style="{ color: pipeColor[`3`] }">
          <div :style="{ backgroundColor: pipeColor[`3`] }"></div>
          次高压管线
        </div>
        <div class="hasColorBox" :style="{ color: pipeColor[`4`] }">
          <div :style="{ backgroundColor: pipeColor[`4`] }"></div>
          高压管线
        </div>
      </div>
53
    </div>
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87

    <div class="mapChange">
      <div :class="{ active: mapStyle }" @click="mapChange(2)">全景地图</div>
      <div :class="{ active: !mapStyle }" @click="mapChange(1)">卫星地图</div>
    </div>
  </div>
</template>

<script>
import { pipeColor } from "@/utils/mapClass/config.js";
export default {
  data() {
        downIcon: true;
      return {
        pipeColor,
        mapStyle:true,
      };
    },
    methods: {
      // 更改卫星图
      mapChange(num) {
        if (num == 1) {
          this.mapStyle = false;
        } else {
          this.mapStyle = true;
        }
        this.$parent.map.changeMap(this.mapStyle);
      },
    },
};
</script>

<style lang="scss" scoped>
.pipePressure {
88
  width: 130px;
89 90 91 92 93
  height: auto;
  border: 1px solid #a5a5a5;
  background-color: #112238b3;
  position: fixed;
  color: rgb(205, 219, 228);
94 95
  left: 530px;
  bottom: 50px;
96 97
  padding: 5px;
  font-size: 14px;
98
  pointer-events: none;
99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
  // background: rgba(6, 29, 51, 0.8);
  .hasColorBox {
    // border: 1px solid #053b6a;
    padding: 2px 5px;
    margin-bottom: 5px;
    & > div {
      display: inline-block;
      width: 10px;
      height: 10px;
    }
  }
}
.hasColorBox>img{
  width: 14px;
}
.mapChange {
  left: 10px;
  top: 55px;
  color: #fff;
  padding: 5px;
  position: absolute;
  display: flex;
  z-index: 9999;
  div {
    border: 1px solid #339CC9;
    padding: 3px 6px;
    margin-left: 8px;
    color: #339CC9;
    cursor: pointer;
    font-size: 14px;
    &.active,
    &:hover
    {
      background-color: #053B6A ;
      color: #2CD5DB;
    }
  }
}


</style>