派生自 wuyushui/SewerAndRainNetwork

zhangshuaibao
2021-03-31 9ebe61e0dd331eeb53c3b0cb022c732ceb9e6b87
src/components/BaseNav/PublicBounced/GasComponents/GasECharts.vue
@@ -1,21 +1,7 @@
<template>
  <!-- 框 -->
  <div class="win">
    <!-- 四个角的边框效果 -->
    <div class="border_corner border_corner_left_top"></div>
    <div class="border_corner border_corner_right_top"></div>
    <div class="border_corner border_corner_left_bottom"></div>
    <div class="border_corner border_corner_right_bottom"></div>
    <div class="main">
      <div class="ShowEcharts">
        <div id="echarts" ref="main"></div>
        <div class="border_corner border_corner_left_top"></div>
        <div class="border_corner border_corner_right_top"></div>
        <div class="border_corner border_corner_left_bottom"></div>
        <div class="border_corner border_corner_right_bottom"></div>
      </div>
    </div>
  </div>
</template>
<script>
@@ -46,8 +32,8 @@
        },
        grid: {
          left: '3%',
          right: '3%',
          bottom: '3%',
          // right: '20%',
          // bottom: '3%',
          containLabel: true
        },
        toolbox: {
@@ -163,58 +149,14 @@
</script>
<style scoped lang="less">
    .win {
        /*width: 100%;*/
        /*height: 100%;*/
    .main{
        background: #00fff6;
    }
    #echarts{
        width: 600px;
        height: 260px;
        position: relative;
        //display: inline-block;
        background-color: rgba(33, 41, 69,0.9);
        margin: 0;
        padding: 0;
    }
    .ShowEcharts{
        position: relative;
        border: 1px solid #0B89B5;
        background: #243a55;
        margin: 10px;
    }
    .border_corner{
        z-index: 2500;
        position: absolute;
        width: 14px;
        height: 14px;
        background: rgba(0,0,0,0);
        border: 2px solid #47d5ea;
    }
    .border_corner_left_top{
        top: 0;
        left: 0;
        border-right: none;
        border-bottom: none;
    }
    .border_corner_right_top{
        top: 0;
        right: 0;
        border-left: none;
        border-bottom: none;
    }
    .border_corner_left_bottom{
        bottom: 0;
        left: 0;
        border-right: none;
        border-top: none;
        border-bottom-left-radius: 4px;
    }
    .border_corner_right_bottom{
        bottom: 0;
        right: 0;
        border-left: none;
        border-top: none;
    }
  #echarts{
      width: 600px;
      height: 260px;
  }
.main {
  width: 100%;
  height: 100%;
}
</style>