wangzhibo
6 天以前 da0230346106bc810664488a2b152bc24f853a44
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<template>
    <div class="count-views">
        <div class="card">
            <div class="card__header">
                <span class="label">{{ $t('浏览量') }}</span>
                <cl-svg name="trend" class="icon" />
            </div>
 
            <div class="card__container">
                <v-chart :option="chartOption" autoresize />
            </div>
 
            <div class="card__footer">
                <span class="mr-2">{{ $t('访客数') }}</span>
                <span>142</span>
            </div>
        </div>
    </div>
</template>
 
<script lang="ts" setup>
import { onMounted, reactive, ref } from 'vue';
import { random, range } from 'lodash-es';
 
const chartOption = reactive({
    grid: {
        left: 0,
        top: 1,
        right: 0,
        bottom: 0
    },
    xAxis: {
        type: 'category',
        boundaryGap: false,
        axisLine: {
            show: false
        },
        data: [
            '00:00',
            '2:00',
            '4:00',
            '6:00',
            '8:00',
            '10:00',
            '12:00',
            '14:00',
            '16:00',
            '18:00',
            '20:00',
            '22:00'
        ]
    },
    yAxis: {
        type: 'value',
        splitLine: {
            show: false
        },
        axisTick: {
            show: false
        },
        axisLine: {
            show: false
        },
        axisLabel: {
            show: false
        }
    },
    series: [
        {
            type: 'line',
            smooth: true,
            showSymbol: false,
            symbol: 'circle',
            symbolSize: 6,
            data: range(12).map(() => parseInt((Math.random() * 1000).toFixed(0)) + 500),
            itemStyle: {
                color: '#4165d7'
            },
            lineStyle: {
                width: 2
            }
        }
    ]
});
 
const num = ref(0);
 
onMounted(() => {
    num.value = random(1000000);
});
</script>
 
<style lang="scss" scoped>
.count-views {
    .card {
        .echarts {
            height: 50px;
            width: 100%;
        }
 
        &__container {
            padding: 0;
        }
 
        &__footer {
            border-top: 0;
        }
    }
}
</style>