VIncome.vue 797 Bytes
<template>
    <div class="theme-wrap">
        <card-title> <span>收入消息</span></card-title>
        <div class="theme-body">
            <account-num>
                <span>总计</span>
            </account-num>
            <div class="income-echart">

            </div>
        </div>
    </div>
</template>

<script>
import CardTitle from './base/CardTitle'
import AccountNum from './base/AccountNum'
export default {
  name: 'VIncome',
  components: {
    CardTitle,
    AccountNum
  },
  data() {
    return {

    }
  }
}
</script>

<style scoped lang="scss">
    .theme-wrap {
        height: 100%;
    }
    .theme-body {
        height: calc(100% - 30px);
        margin-left: 20px;
    }
    .income-echart{
        height: 70%;
        background-color: #f00;
    }

</style>