mapsection.vue
11.3 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
<template>
<div>
<ul class="title-wrap">
<li>
<img src="../assets/img/parkingtotal.svg">
<div>
<p> <countTo :startVal='startVal' :endVal='parkingtotal' :duration='durationTime'></countTo></p>
<p>停车场总数</p>
</div>
</li>
<li>
<img src="../assets/img/membertotal.svg">
<div>
<p><countTo :startVal='startVal' :endVal='membertotal' :duration='durationTime'></countTo></p>
<p>会员总数</p>
</div>
</li>
<li>
<img src="../assets/img/incometotal.svg">
<div>
<p><countTo :startVal='startVal' :endVal='incometotal' :duration='durationTime'></countTo></p>
<p>今日收入总数</p>
</div>
</li>
<li>
<img src="../assets/img/ordertotal.svg">
<div>
<p>
<countTo :startVal='startVal' :endVal='getOrderNum' :duration='durationTime'></countTo>
</p>
<p>今日订单数</p>
</div>
</li>
</ul>
<div class="allmap" id="allmap"></div>
<ul class="type-wrap">
<li>紧张</li>
<li>正常</li>
<li>空闲</li>
</ul>
<div class="park-wrap" ref="parkwrap">
<ul class="content" ref="">
<li v-for="(item, index) in parkList" :key="index" :title="item.areaName" :class="{'current-active':index===currentIndex}" @click="currentPark(item.id, index)">{{ item.areaName }}</li>
</ul>
</div>
<div class="flexfm" ></div>
</div>
</template>
<script>
import BScroll from 'better-scroll'
import busyCar from '../assets/img/busy-status.png'; //以import的方式导入图片文件
import normalCar from '../assets/img/normal-status.png'; //以import的方式导入图片文件
import idleCar from '../assets/img/idle-status.png'; //以import的方式导入图片文件
import countTo from 'vue-count-to'
import { parkAddress, memberAddress, incomeAddress, serviceAddress, parkListAddress } from '../api/api'
import { mapGetters } from 'vuex'
export default {
name: 'mapsection',
components: { countTo },
data() {
return {
durationTime:3000,
startVal: 0,
parkingtotal: 0,
membertotal: 0,
incometotal: 0,
ordertotal: '6738',
parkList: [],
currentIndex:0,
firstItem:''
}
},
computed: {
...mapGetters(['getOrderNum'])
},
created() {
parkAddress({
orgIds: this.GLOBAL.paramsvariables
}).then((response)=>{
const data = response.data.data
this.parkingtotal = data
})
memberAddress({
orgIds: this.GLOBAL.paramsvariables
}).then((response)=>{
const data = response.data.data
this.membertotal = data.registerNum
})
incomeAddress({
orgIds: this.GLOBAL.paramsvariables
}).then((response)=>{
const data = response.data.data
this.incometotal = Math.round(data.totalPay/100)
})
serviceAddress({
orgId: '10003'
}).then((response)=>{
const data = response.data.data
console.log(data)
const newData = data.filter(item => item.areaName.indexOf('测试') < 0)
this.parkList = newData
console.log(newData)
this.firstItem = newData[0].id
this.currentPark(this.firstItem,0)
})
},
mounted() {
this.$nextTick(() => {
this.scroll = new BScroll(this.$refs.parkwrap,{
scrollbars:true,//显示滚动条(默认是false不显示)
mouseWheel:true,//支持鼠标触发区域滚动
bounce:true,//取消达到边界的缓冲效果
})
})
// let data = {
// nurseryInfo: [
// {Name:'万达停车场1',MapPointX:'111.742579',MapPointY:'40.818675',status:0,free:30,total:1000},
// {Name:'万达停车场2',MapPointX:'111.622579',MapPointY:'40.878675',status:1,free:40,total:800},
// {Name:'万达停车场333333',MapPointX:'111.782579',MapPointY:'40.778675',status:2,free:300,total:500}
// ]
// }
// this.baiduMap(data)
},
methods: {
currentPark(item, index) {
this.currentIndex = index
let nurseryInfo = []
parkListAddress({
blockIds: [item]
}).then((response)=>{
const data = response.data.data
console.log(response)
nurseryInfo = data
this.baiduMap(nurseryInfo)
})
},
baiduMap (data) {
console.log(data)
if(data.length === 0){
var map = new BMap.Map('allmap', {enableMapClick: false})
var point = new BMap.Point(111.742579, 40.878675)
map.centerAndZoom(point, 14)
var mapStyle={ style : "midnight" }
map.enableScrollWheelZoom(false);
map.setMapStyle(mapStyle);
// var marker = new BMap.Marker(point) // 创建标注
// map.addOverlay(marker) // 将标注添加到地图中
map.clearOverlays();
}else{
var map = new BMap.Map('allmap', {enableMapClick: false})
var point = new BMap.Point(data[0].lonId, data[0].latId)
map.centerAndZoom(point, 15)
var mapStyle={ style : "midnight" }
map.enableScrollWheelZoom(false);
map.setMapStyle(mapStyle);
// var marker = new BMap.Marker(point) // 创建标注
// map.addOverlay(marker) // 将标注添加到地图中
map.clearOverlays();
var i = 0;
var points = [];
for (var item in data) {
(function (x) {
var itemthat = item;
//创建标注
var pt = new BMap.Point(data[item].lonId, data[item].latId);
points[i] = pt;
if(data[item].freeBrethNum/data[item].plBerthNum == 0){
var myIcon = new BMap.Icon(busyCar,
new BMap.Size(29, 40), {
offset: new BMap.Size(10, 40),
textColor: '#fff'
});
var marker = new BMap.Marker(pt,{icon:myIcon});
} else if(data[item].freeBrethNum/data[item].plBerthNum <= 0.3){
var myIcon = new BMap.Icon(normalCar,
new BMap.Size(29, 40), {
offset: new BMap.Size(10, 40),
textColor: '#fff'
});
var marker = new BMap.Marker(pt,{icon:myIcon});
} else {
var myIcon = new BMap.Icon(idleCar,
new BMap.Size(29, 40), {
offset: new BMap.Size(10, 40),
textColor: '#fff'
});
var marker = new BMap.Marker(pt,{icon:myIcon});
}
var myIcon = new BMap.Icon(busyCar,
new BMap.Size(29, 40), {
offset: new BMap.Size(10, 40),
textColor: '#fff'
});
marker.setTop(true,27000000);
map.addOverlay(marker);
var myLabel;
marker.addEventListener("click", (e)=> {
map.removeOverlay(myLabel);
var that = this;
myLabel = new BMap.Label(
`<div class="dislog-wrap">
<div class="dialog-header" title="${data[itemthat].plAddress}">${data[itemthat].plAddress}</div>
<div class="dialog-address" title="${data[itemthat].plAddress}">${data[itemthat].plAddress}</div>
<ul class="dislog-body">
<li><div>${data[itemthat].freeBrethNum}</div><div>空闲</div></li>
<li></li>
<li><div>${data[itemthat].plBerthNum}</div><div>总数</div></li>
</ul>
<div class="dislog-footer">收费标准</div>
<ul class="dislog-footer-main">
<li>收费标准收费标准收费标准收费标准</li>
<li>收费标准收费标准收费标准收费标准</li>
<li>收费标准收费标准收费标准收费标准</li>
<li>收费标准收费标准收费标准收费标准</li>
</ul>
</div>`,
{
offset: new BMap.Size(-225, -55), //label的偏移量,为了让label的中心显示在点上
position: pt
});
myLabel.setStyle({
// color: "#0f0",
// fontSize: "12px",
padding: "0",
// whiteSpace: "normal",
backgroundColor: "",
border: "0px",
zIndex: "1000"
}
);
marker.setLabel(myLabel)
marker.setTop(true,27000000);
});
// marker.addEventListener("mouseout", function (e) {
// map.removeOverlay(myLabel);
// });
i++;
})(i);
}
}
}
}
}
</script>
<style lang="scss" scoped>
.allmap{
position: absolute;
top:80px;
left: 0;
right: 0;
bottom: 0;
.parkpop-content{
background-color: black;
}
}
.title-wrap{
display: flex;
padding-top: 17px;
padding-bottom: 18px;
background:rgba(0,45,140,.9);
li{
flex: 1;
height: 45px;
text-align: center;
overflow: hidden;
font-size: 0;
img{
display: inline-block;
width: 45px;
height: 45px;
margin-right: 14px;
}
div{
display: inline-block;
vertical-align: top;
text-align: left;
max-width: 100px;
overflow: hidden;
p{
&:nth-of-type(1){
font-size:24px;
font-weight:500;
color:rgba(255,255,255,1);
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
&:nth-of-type(2){
font-size:14px;
font-weight:bold;
color:rgba(0,207,254,.7);
margin-top: 7px;
}
}
}
}
}
.type-wrap{
padding-left: 10px;
position: absolute;
left: 11px;
bottom: 11px;
background-color: rgba(10,52,140,.8);
li{
float: left;
height: 20px;
line-height: 20px;
margin-right: 10px;
padding-left: 12px;
font-size: 12px;
color:rgba(255,255,255,.7);
background-repeat: no-repeat;
background-position: 0 center;
&:nth-of-type(1){
background-image: url("../assets/img/busy-type.png");
}
&:nth-of-type(2){
background-image: url("../assets/img/nomal-type.png");
}
&:nth-of-type(3){
background-image: url("../assets/img/idle-type.png");
}
}
}
.park-wrap{
width: 200px;
max-height: 164px;
position: absolute;
right: 11px;
bottom: 11px;
background-color: #0D3689;
font-size: 12px;
overflow: hidden;
.content{
height:100%;
li{
padding-left: 26px;
height: 20px;
line-height: 20px;
color:rgba(255,255,255,.7);
background-image:url("../assets/img/office-icon.png");
background-repeat: no-repeat;
background-position: 9px center;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
cursor: pointer;
}
.current-active{
color:rgba(255,255,255,1);
background-image:url("../assets/img/officeactive-icon.png");
}
}
}
</style>