centercard.vue 916 Bytes
<template>
  <div class="centercard">
    <div class="card1">
       <CenterLeft2Chart class="map" />
    </div>
    <div class="card2"></div>
  </div>
</template>

<script>
import CenterLeft2Chart from "@/components/echart/map";
export default {
  data() {
    return {};
  },
  components: { CenterLeft2Chart },
  mounted() {},
  beforeDestroy() {},
  methods: {},
};
</script>

<style lang="scss" scoped>
 .centercard{
        width: 50%;
        height: 100%;
        .card1{
          width: 100%;
           height: 600px;
          box-sizing: border-box;
         background: url("~@/image/tablebk.png") no-repeat;
          background-size: 100% 100%;
           }
           .card2{
            width: 100%;
             height: 300px;
            box-sizing: border-box;
           background: url("~@/image/tablebk.png") no-repeat;
            background-size: 100% 100%;
             }
      }
</style>