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
| <template>
| <el-statistic :group-separator="''" v-bind="$attrs" class="pro-statistics">
| <template #title>
| <slot name="title"> </slot>
| </template>
| <template #prefix>
| <slot name="prefix"> </slot>
| </template>
| <template #suffix>
| <slot name="suffix"> </slot>
| </template>
| </el-statistic>
| </template>
|
| <script setup lang="ts">
| defineOptions({
| name: 'ProStatistics',
| });
| </script>
|
| <style lang="scss" scoped>
| @use '@/style/common.scss' as *;
|
| .pro-statistic {
| :deep() {
| .el-statistic__head {
| margin-bottom: 8px;
| color: getCssVar('text-color', 'regular');
| }
|
| .el-statistic__content {
| font-size: 24px;
| font-weight: bold;
| color: getCssVar('text-color', 'primary');
| }
| }
| }
| </style>
|
|