forked from cool-team-official/cool-admin-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcount-paid.vue
103 lines (96 loc) · 1.63 KB
/
count-paid.vue
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
<template>
<div class="count-paid">
<div class="card">
<div class="card__header">
<span class="label">支付笔数</span>
<span class="value">6560</span>
</div>
<div class="card__container">
<vue-echarts :options="chartOptions" autoresize></vue-echarts>
</div>
<div class="card__footer">
<span class="label">转化率</span>
<span class="value">60%</span>
</div>
</div>
</div>
</template>
<script>
import VueEcharts from "vue-echarts";
export default {
components: {
VueEcharts
},
data() {
return {
chartOptions: {
grid: {
left: "10%",
top: 0,
right: "10%",
bottom: 0
},
xAxis: {
type: "category",
data: ["00:00", "2:00", "4:00", "6:00", "8:00", "10:00", "12:00", "14:00"],
boundaryGap: false
},
yAxis: {
type: "value",
splitLine: {
show: false
},
axisTick: {
show: false
},
axisLine: {
show: false
},
axisLabel: {
show: false
}
},
series: [
{
barWidth: 18,
name: "付款笔数",
type: "bar",
data: [81, 24, 77, 13, 87, 92, 68, 55],
itemStyle: {
normal: {
color: "#4165d7"
}
}
},
{
type: "bar",
barWidth: 18,
xAxisIndex: 0,
barGap: "-100%",
data: [100, 100, 100, 100, 100, 100, 100, 100],
itemStyle: {
normal: {
color: "#f1f1f9"
}
},
zlevel: -1
}
]
}
};
}
};
</script>
<style lang="scss" scoped>
.count-paid {
.card {
.echarts {
height: 50px;
width: 100%;
}
&__container {
padding: 0;
}
}
}
</style>