berthsection.vue
2.97 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<template>
<div>
<titlesection title="泊位"></titlesection>
<totalsection :totalNum="totalVal"></totalsection>
<ul class="flexfm berth-wrap">
<li class="pos-rel">
<halfPieChart :chart-data="pieChartData"></halfPieChart>
<div class="pos-abs halfPieText">
<p>{{scale}}%</p>
<p>占有</p>
</div>
</li>
<li>
<div class="berth-main">
<p><span class="free">{{ free|formatNum }}</span> <span>空余</span></p>
</div>
<div class="berth-main">
<p><span class="nofree">{{ nofree|formatNum }}</span> <span>占有</span></p>
</div>
</li>
</ul>
</div>
</template>
<script>
import titlesection from '../components/titlesection'
import totalsection from '../components/total'
import halfPieChart from '../components/halfPieChart'
import { berthAddress } from '../api/api'
export default {
name: 'berthsection',
components: {
titlesection,
totalsection,
halfPieChart
},
data() {
return {
pieChartData: {
yData: [1,1],
legendData: ['空余','占有']
},
totalVal: '',
free: '',
nofree: '',
scale: ''
}
},
created() {
this.getList()
},
methods: {
getList() {
berthAddress({
orgIds: this.GLOBAL.paramsvariables
}).then((res)=>{
let data = res.data.data
console.log(data)
this.totalVal = data.allBerthNum.toString()
this.free = data.freeBerthNum
this.nofree = data.isOccupyBertnNum
this.pieChartData = {
yData: [data.freeBerthNum,data.isOccupyBertnNum],
legendData: ['空余','占有']
}
// this.pieChartData.yData = [10,20]
// this.pieChartData.yData.push(data.freeBerthNum)
// this.pieChartData.yData.push(data.isOccupyBertnNum)
this.scale = ((data.isOccupyBertnNum/(data.freeBerthNum+data.isOccupyBertnNum))*100).toFixed(0)
})
},
}
}
</script>
<style lang="scss" scoped>
.berth-wrap {
display: flex;
li{
flex: 1;
.halfPieText{
width: 100%;
text-align: center;
top:50%;
transform:translateY(-50%) ;
p{
&:nth-of-type(1){
@include fonttextStyle(24px);
background-image: $fontOrange;
}
&:nth-of-type(2){
padding-top: 5px;
font-size: 12px;
color: #fff;
}
}
}
.berth-main{
height: 50%;
display: flex;
align-items:center;
p{
height: 24px;
color: #fff;
font-size: 12px;
.free{
@include fonttextStyle(24px);
background-image: $fontBlue;
}
.nofree{
@include fonttextStyle(24px);
background-image: $fontOrange;
}
span:nth-of-type(1){
width: 100px;
display: inline-block;
}
}
}
}
}
</style>