Newer
Older
CloudBrainNew / src / views / waitBoard / waitBoardRight.vue
StephanieGitHub on 4 Feb 2021 1 KB first commit
<!--
 * @Description: 社会民生右半
 * @Author: 王晓颖
 * @Date: 2020-09-04 13:59:13
 -->
<template>
  <div class="chart-container">
    <div class="right">
      <div class="modular">
        <div class="modular-row-100" style="width: 100%">
          <chart-layout title="整体概况">
            <div style="width:100%;height:100%;padding:0.8rem 0.5rem">
              <Title1 :font="{size:'0.6'}">正在建设中,敬请期待!</Title1>
            </div>
            <corner1 slot="corner"/>
          </chart-layout>
        </div>
      </div>
    </div>
  </div>
</template>

<script>

import Title1 from '@/components/text/title/Title1'
export default {
  name: 'WaitBoardRight',
  components: {
    Title1
  },
  data () {
    return {
    }
  },
  mounted () {
  },
  methods: {
  }
}
</script>

<style rel="stylesheet/scss" lang="scss" scoped>
  .chart-container{
    position: absolute;
    padding: 0 0.1rem 0.1rem 0.3rem;
    top:0;
    right:0.2rem;
    width: 30%;
    height:100%;
    display: flex;
    z-index: 20;
    justify-content: space-between;
    background: transparent;
    .right{
      width:100%;
      height:100%;
      display: flex;
      justify-content: center;
      /*position: relative;*/
    }

  }
</style>