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
46
47
48
49
50
51
52
53
54
| <template>
| <div :class="[prefixCls]">
| <slot name="subtitle">
| <div :class="[`${prefixCls}-subtitle`]">{{ typeof subTitle === 'string' ? subTitle : subTitle() }}</div>
| </slot>
| <div class="number-info-value">
| <span>{{ total }}</span>
| <span class="sub-total">
| {{ subTotal }}
| <icon :type="`caret-${status}`" />
| </span>
| </div>
| </div>
| </template>
|
| <script>
| import Icon from 'ant-design-vue/es/icon'
|
| export default {
| name: 'NumberInfo',
| props: {
| prefixCls: {
| type: String,
| default: 'ant-pro-number-info'
| },
| total: {
| type: Number,
| required: true
| },
| subTotal: {
| type: Number,
| required: true
| },
| subTitle: {
| type: [String, Function],
| default: ''
| },
| status: {
| type: String,
| default: 'up'
| }
| },
| components: {
| Icon
| },
| data () {
| return {}
| }
| }
| </script>
|
| <style lang="less" scoped>
| @import "index";
| </style>
|
|