VIncome.vue
797 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<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>