centercard.vue 1.74 KB
<template>
  <div class="centercard">
    <div class="card1">
      <maps class="map" />
    </div>
    <div class="card2 mt-10">
      <div class="title">数据趋势</div>
      <brokenline class="brokenline" />
    </div>
  </div>
</template>

<script>
  import maps from "@/components/Echart/Map";
  import brokenline from "@/components/Echart/Brokenline";
  export default {
    data () {
      return {};
    },
    components: { maps, brokenline },
    mounted () { },
    beforeDestroy () { },
    methods: {},
  };
</script>

<style lang="scss" scoped>
  .centercard {
    width: 44%;
    height: calc(100vh - 114px);
    box-sizing: border-box;
    padding: 0 0.0521rem;
    display: flex;
    flex-direction: column;

    .card1 {
      width: 100%;
      background: url("~@/image/mapcenter.png") no-repeat;
      background-size: 100% 100%;
      position: relative;
      height: 64%;

      .title {
        position: absolute;
        font-weight: bold;
        color: #02d9fd;
        line-height: 0.1354rem;
        font-size: 0.1146rem;
        position: absolute;
        left: 0;
        right: 0;
        top: 0.0365rem;
        text-align: right;
        padding-right: 15%;
      }
    }

    .card2 {
      width: 100%;
      background: url("~@/image/sjqs.png") no-repeat;
      background-size: 100% 100%;
      position: relative;
      flex: 1;

      .title {
        position: absolute;
        font-weight: bold;
        color: #02d9fd;
        line-height: 0.1354rem;
        font-size: 0.1146rem;
        position: absolute;
        left: 0;
        right: 0;
        top: 0.0365rem;
        text-align: center;
        margin-bottom: 0.0521rem;
      }
      .brokenline {
        margin: auto;
        width: 100%;
      }
    }
  }
</style>