VParking.vue
2.4 KB
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="theme-wrap">
<card-title> <span>停车场消息</span></card-title>
<div class="theme-body">
<account-num :totalnum="total">
<span>总计</span>
</account-num>
<ul class="theme-container">
<li class="roadside">
<p>{{rodeside|filterTotal}}</p>
<p>路侧</p>
</li>
<li class="roadclose">
<p>{{rodeclose|filterTotal}}</p>
<p>封闭</p>
</li>
</ul>
</div>
</div>
</template>
<script>
import CardTitle from './base/CardTitle'
import AccountNum from './base/AccountNum'
export default {
name: 'VParking',
components: {
CardTitle,
AccountNum
},
props:['total','rodeside','rodeclose'],
data(){
return{
}
},
created(){
},
watch:{
// rodeside:function(val){
// //console.log(val)
// },
// total:function (val) {
// //console.log(val)
// }
}
}
</script>
<style scoped lang="scss">
.theme-wrap {
height: 100%;
}
.theme-body {
height: calc(100% - 30px);
margin-left: 20px;
}
.theme-container{
height: 70%;
display: flex;
align-items: center;
>li{
flex: 1;
height: 57px;
padding-left: 70px;
display: flex;
flex-direction: column;
justify-content: space-between;
&:nth-of-type(1){
p{
&:first-child{
@include fontStyle(24px);
background-image: $fontBlue;
}
&:last-child{
font-size: 14px;
}
}
}
&:nth-of-type(2){
p{
&:first-child{
@include fontStyle(24px);
background-image: $fontOrange;
}
&:last-child{
font-size: 14px;
}
}
}
}
.roadside{
background: url("../images/content/roadside.png") no-repeat 0 center;
}
.roadclose{
background: url("../images/content/roadclose.png") no-repeat 0 center;
}
}
</style>