wangzhibo
4 天以前 656e2507b9aa388afa4c3346927b1b94ab70a0b2
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<template>
    <div class="kpi-card" :class="{ 'is-alert': alert }">
        <div class="kpi-card__label">{{ label }}</div>
        <div class="kpi-card__value">
            <cl-number :value="numeric" :fixed="fixed" type="amount" :suffix="suffix" />
        </div>
        <div v-if="hint" class="kpi-card__hint">{{ hint }}</div>
    </div>
</template>
 
<script lang="ts" setup>
import { computed } from 'vue';
 
const props = defineProps<{
    label: string;
    value: number | string;
    suffix?: string;
    fixed?: number;
    hint?: string;
    alert?: boolean;
}>();
 
const numeric = computed(() => Number(props.value) || 0);
</script>
 
<style lang="scss" scoped>
.kpi-card {
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid var(--el-border-color-extra-light);
    background: var(--el-bg-color);
    color: var(--el-text-color-primary);
    min-height: 96px;
 
    &__label {
        font-size: 13px;
        color: var(--el-text-color-secondary);
    }
 
    &__value {
        margin-top: 8px;
        font-size: 26px;
        font-weight: 700;
        line-height: 1.2;
        color: var(--el-text-color-primary);
 
        :deep(.cl-number__suffix) {
            margin-left: 4px;
            font-size: 13px;
            font-weight: 500;
            color: var(--el-text-color-secondary);
        }
    }
 
    &__hint {
        margin-top: 8px;
        font-size: 12px;
        color: var(--el-text-color-secondary);
    }
 
    &.is-alert {
        border-color: var(--el-color-danger-light-5);
        background: var(--el-color-danger-light-9);
 
        .kpi-card__value {
            color: var(--el-color-danger);
        }
    }
}
</style>