bike/pages_admin/admin_index.vue

947 lines
25 KiB
Vue
Raw Normal View History

2024-05-08 23:18:30 +08:00
<template>
2024-06-20 18:08:54 +08:00
<view class="page">
2024-05-11 18:01:20 +08:00
<u-navbar title="地图" :is-back='false' :border-bottom="false" :background="bgc" title-color='#2E4975'
2024-06-07 18:08:55 +08:00
title-size='36' height='45'></u-navbar>
2024-06-03 18:06:08 +08:00
<view @touchmove.stop.prevent="() => {}">
2024-06-20 18:08:54 +08:00
<view class="slider">
<view class="tit">
电量区间
</view>
<view style="width: 650rpx;margin: 0 auto;">
<slider-range :value="rangeValue" :min="rangeMin" :max="rangMax" :step="1" :bar-height="3"
:block-size="20" background-color="#EEEEF6" active-color="#4C97E7" :format="format"
:decorationVisible="true" @change="handleRangeChange"></slider-range>
</view>
2024-06-03 18:06:08 +08:00
</view>
2024-05-11 18:01:20 +08:00
</view>
2024-05-08 23:18:30 +08:00
<map class="map" id="map" ref="map" :scale="zoomSize" :latitude="latitude" :longitude="longitude"
2024-06-20 18:08:54 +08:00
:show-location="true" :markers="markers" :polygons="polyline" @markertap="onMarkerTap">
2024-05-08 23:18:30 +08:00
</map>
2024-06-23 17:17:51 +08:00
<view class="park" @click="toggleIconAndCallout">
<image src="https://lxnapi.ccttiot.com/bike/img/static/uRiYQZQEb3l2LsltEsyW" mode=""></image>
</view>
2024-06-03 18:06:08 +08:00
<view @touchmove.stop.prevent="() => {}">
2024-06-20 18:08:54 +08:00
<view class="btn_box">
<view class="btn1" @click="qecodelock()">
车辆扫码
2024-05-08 23:18:30 +08:00
</view>
2024-06-20 18:08:54 +08:00
<view class="btn2" @click="topage()">
车辆搜索
2024-05-08 23:18:30 +08:00
</view>
</view>
2024-06-20 18:08:54 +08:00
<view class="decice_cont">
<view class="cont" @click="changeidx(7)">
<view class="text" :class="statusidx==7?'act1':''">
全部设备
</view>
<view class="text" :class="statusidx==7?'act1':''">
{{deviceNum.allNum}}
</view>
</view>
<!-- <view class="cont" @click="changeidx(0)">
2024-05-11 18:01:20 +08:00
<view class="text" :class="statusidx==0?'act1':''">
未上架
2024-05-09 18:00:26 +08:00
</view>
2024-05-11 18:01:20 +08:00
<view class="text" :class="statusidx==0?'act1':''">
2024-05-09 18:00:26 +08:00
1
</view>
2024-05-11 18:01:20 +08:00
</view> -->
2024-06-20 18:08:54 +08:00
<view class="cont" @click="changeidx(1)">
<view class="text" :class="statusidx==1?'act1':''">
待租
</view>
<view class="text" :class="statusidx==1?'act1':''">
{{deviceNum.normalNum}}
</view>
2024-05-11 18:01:20 +08:00
</view>
2024-06-20 18:08:54 +08:00
<view class="cont" @click="changeidx(2)" style="width: 140rpx;">
<view class="text" :class="statusidx==2?'act1':''">
预约中
</view>
<view class="text" :class="statusidx==2?'act1':''">
{{deviceNum.inAppointmentNum}}
</view>
2024-05-09 18:00:26 +08:00
</view>
2024-06-20 18:08:54 +08:00
<view class="cont" @click="changeidx(3)">
<view class="text" :class="statusidx==3?'act1':''">
骑行中
</view>
<view class="text" :class="statusidx==3?'act1':''">
{{deviceNum.ridingNum}}
</view>
2024-05-09 18:00:26 +08:00
</view>
2024-06-20 18:08:54 +08:00
<view class="cont" @click="changeidx(4)">
<view class="text" :class="statusidx==4?'act1':''">
临时锁车
</view>
<view class="text" :class="statusidx==4?'act1':''">
{{deviceNum.temporarilyLockNum}}
</view>
2024-05-09 18:00:26 +08:00
</view>
2024-06-20 18:08:54 +08:00
<view class="cont" @click="changeidx(8)">
<view class="text" :class="statusidx==8?'act1':''">
下线
</view>
<view class="text" :class="statusidx==8?'act1':''">
{{deviceNum.disabledNum}}
</view>
2024-05-09 18:00:26 +08:00
</view>
2024-06-20 18:08:54 +08:00
<view class="cont" @click="changeidx(9)">
<view class="text" :class="statusidx==9?'act1':''">
离线
</view>
<view class="text" :class="statusidx==9?'act1':''">
{{deviceNum.offlineNum}}
</view>
2024-05-09 18:00:26 +08:00
</view>
2024-06-20 18:08:54 +08:00
<!-- <view class="cont">
2024-05-09 18:00:26 +08:00
<view class="text">
调度设备
</view>
<view class="text">
1
</view>
2024-05-11 18:01:20 +08:00
</view> -->
2024-06-20 18:08:54 +08:00
</view>
2024-05-08 23:18:30 +08:00
</view>
2024-06-20 18:08:54 +08:00
2024-05-08 23:18:30 +08:00
<tab-bar :indexs='1' style=""></tab-bar>
</view>
</template>
<script>
2024-05-09 17:05:51 +08:00
import SliderRange from '@/pages_admin/components/primewind-sliderrange/index.vue'
2024-05-11 18:01:20 +08:00
let timerId;
2024-05-08 23:18:30 +08:00
export default {
data() {
return {
bgc: {
backgroundColor: "#F7FAFE",
},
2024-06-20 18:08:54 +08:00
latitude: 0,
longitude: 0,
2024-05-08 23:18:30 +08:00
isMap: false,
zoomSize: 15,
markers: [],
polyline: [],
polygons: [],
fixdata: [],
eledata: [],
listData: [],
2024-05-09 17:05:51 +08:00
infonum: {},
rangeMin: 0,
rangMax: 100,
2024-05-11 18:01:20 +08:00
rangeValue: [1, 99],
status0: [], //未上架
status1: [], //正常
status2: [], //预约中
status3: [], //骑行中
status4: [], //临时锁车
status8: [], //下线
status9: [], //离线
markdata: {
},
statusidx: 7,
deviceNum: {},
2024-06-23 17:17:51 +08:00
areaId: 0,
showIconAndCallout:false
2024-05-11 18:01:20 +08:00
2024-05-08 23:18:30 +08:00
}
},
2024-05-09 17:05:51 +08:00
components: {
SliderRange
},
2024-05-08 23:18:30 +08:00
onShow() {
this.$store.dispatch('userInfo', this.$u).then(() => {
// 执行其他操作...
});
2024-06-23 17:17:51 +08:00
2024-05-11 18:01:20 +08:00
2024-06-21 18:03:21 +08:00
this.getareaid()
2024-06-23 17:17:51 +08:00
2024-06-20 18:08:54 +08:00
let that = this
uni.getLocation({
type: 'wgs84',
success: function(lb) {
that.latitude = Number(lb.latitude.toFixed(5)) - 0.005
that.longitude = Number(lb.longitude.toFixed(5)) + 0.005
console.log(that.areaInfo, 'that.areaInfo');
that.setMapScale()
// that.getmarks()
//
},
fail: function(error) {
uni.showToast({
title: '未获取到定位信息,请点击设置勾选允许位置信息,即可使用全部功能',
icon: 'none',
duration: 2000
});
// that.getmarks()
// 在这里处理获取位置信息失败的情况
}
})
// this.getmarks();
2024-06-06 18:04:50 +08:00
},
onLoad() {
2024-06-20 18:08:54 +08:00
2024-06-23 17:17:51 +08:00
2024-05-08 23:18:30 +08:00
},
computed: {
userId() {
return this.$store.getters.userId;
},
},
methods: {
2024-06-23 17:17:51 +08:00
toggleIconAndCallout() {
this.showIconAndCallout = !this.showIconAndCallout;
if (this.showIconAndCallout) {
const newMarkers = [];
this.parkingList.forEach(item => {
newMarkers.push({
id: parseFloat(item.parkingId),
latitude: parseFloat(item.latitude),
longitude: parseFloat(item.longitude),
width: 20,
height: 40,
iconPath: 'https://lxnapi.ccttiot.com/bike/img/static/u9yz0bKCWKyev0JYpTne',
callout: {
content: item.parkingName,
color: '#ffffff',
fontSize: 14,
borderRadius: 10,
bgColor: item.type == 1 ? '#3A7EDB' : item.type == 2 ? '#FFC107' :
'#FF473E',
padding: 6,
display: 'ALWAYS'
},
isCalloutVisible: true // 添加标记
});
});
this.$set(this, 'markers', [...this.markers, ...newMarkers]);
} else {
// 过滤掉所有气泡显示的标记
this.$set(this, 'markers', this.markers.filter(marker => !marker.isCalloutVisible));
}
},
getareaid() {
2024-06-21 18:03:21 +08:00
this.$u.post('/appVerify/getAreaId').then((res) => {
if (res.code == 200) {
// 处理接口返回的数据,将边界数据转换为地图组件需要的折线结构
// this.areaId=res.data
2024-06-23 17:17:51 +08:00
this.areaId = 14
2024-06-21 18:03:21 +08:00
this.getArea()
2024-06-23 17:17:51 +08:00
2024-06-21 18:03:21 +08:00
this.allVehicleNum()
// console.log(this.polyline);
2024-06-23 17:17:51 +08:00
} else {
this.areaId = 14
2024-06-21 18:03:21 +08:00
this.getArea()
2024-06-23 17:17:51 +08:00
2024-06-21 18:03:21 +08:00
this.allVehicleNum()
}
}).catch(error => {
2024-06-23 17:17:51 +08:00
2024-06-21 18:03:21 +08:00
});
},
2024-06-20 18:08:54 +08:00
async setMapScale(e, val) {
let mapContext = uni.createMapContext('map', this);
let setScale = () => {
return new Promise((resolve, reject) => {
mapContext.getScale({
success: r => {
resolve()
}
})
})
};
await setScale();
mapContext.moveToLocation({
success: (res) => {
const timer = setTimeout(() => {
clearTimeout(timer);
}, 500);
},
})
},
2024-06-03 21:04:26 +08:00
qecodelock() {
uni.scanCode({
onlyFromCamera: true,
scanType: ['qrCode'],
success: res => {
2024-06-20 18:08:54 +08:00
2024-06-03 21:04:26 +08:00
let sn = null;
let queryParams = res.result.split('?')[1];
if (queryParams) {
let params = queryParams.split('&');
params.forEach(param => {
let [key, value] = param.split('=');
if (key === 'sn') {
sn = value;
}
});
}
2024-06-20 18:08:54 +08:00
2024-06-03 21:04:26 +08:00
this.sn = sn
if (this.sn != '') {
uni.navigateTo({
2024-06-20 18:08:54 +08:00
url: '/pages_admin/order/device_detail?id=' + this.sn
2024-06-03 21:04:26 +08:00
})
}
2024-06-20 18:08:54 +08:00
2024-06-03 21:04:26 +08:00
},
fail: err => {
console.error('扫描失败:', err);
uni.showToast({
title: '扫描失败',
icon: 'none'
});
}
});
},
2024-06-20 18:08:54 +08:00
topage() {
2024-05-13 18:03:20 +08:00
uni.navigateTo({
2024-06-20 18:08:54 +08:00
url: '/pages_admin/order/search_device'
2024-05-13 18:03:20 +08:00
})
},
2024-05-11 18:01:20 +08:00
allVehicleNum() {
let data = {
powerStart: this.rangeValue[0],
2024-06-21 18:03:21 +08:00
powerEnd: this.rangeValue[1],
areaId: this.areaId
2024-05-11 18:01:20 +08:00
}
this.$u.get('/appVerify/allVehicleNum?', data).then((res) => {
if (res.code === 200) {
// 处理接口返回的数据,将边界数据转换为地图组件需要的折线结构
this.deviceNum = res.data
// console.log(this.polyline);
}
}).catch(error => {
console.error("Error fetching area data:", error);
});
},
changeidx(ids) {
this.statusidx = ids
this.getmarks()
},
markstause() {
// console.log(this.status9, 'aaaaaaa');
this.status0.forEach(item => {
this.markers.push({
id: parseFloat(item.sn),
latitude: parseFloat(item.latitude),
longitude: parseFloat(item.longitude),
// title: item.deviceName,
width: 40,
height: 40,
iconPath: 'https://lxnapi.ccttiot.com/bike/img/static/u76wT0QiWdAGJdF4v6AR',
callout: {
content: '未上架', // 修改为你想要显示的文字内容
color: '#ffffff', // 修改为文字颜色
fontSize: 14, // 修改为文字大小
borderRadius: 10, // 修改为气泡圆角大小
bgColor: '#000000', // 修改为气泡背景颜色
padding: 6, // 修改为气泡内边距
display: 'ALWAYS', // 修改为气泡的显示策略
}
})
})
// https://lxnapi.ccttiot.com/bike/img/static/u1UD93BU1vfshWFoDwgX
// https://lxnapi.ccttiot.com/bike/img/static/u4UKmB47AxOj3YKIaajM
this.status1.forEach(item => {
this.markers.push({
id: parseFloat(item.sn),
latitude: parseFloat(item.latitude),
longitude: parseFloat(item.longitude),
// title: item.deviceName,
width: 40,
height: 40,
iconPath: 'https://lxnapi.ccttiot.com/bike/img/static/u1UD93BU1vfshWFoDwgX',
callout: {
content: '待租' + item.remainingPower + '%', // 修改为你想要显示的文字内容
color: '#2679D1', // 修改为文字颜色
fontSize: 14, // 修改为文字大小
borderRadius: 10, // 修改为气泡圆角大小
bgColor: '#D4ECFF', // 修改为气泡背景颜色
padding: 6, // 修改为气泡内边距
display: 'ALWAYS', // 修改为气泡的显示策略
}
})
})
this.status2.forEach(item => {
this.markers.push({
id: parseFloat(item.sn),
latitude: parseFloat(item.latitude),
longitude: parseFloat(item.longitude),
// title: item.deviceName,
width: 40,
height: 40,
iconPath: 'https://lxnapi.ccttiot.com/bike/img/static/u1UD93BU1vfshWFoDwgX',
callout: {
content: '预约' + item.remainingPower + '%', // 修改为你想要显示的文字内容
color: '#2679D1', // 修改为文字颜色
fontSize: 14, // 修改为文字大小
borderRadius: 10, // 修改为气泡圆角大小
bgColor: '#D4ECFF', // 修改为气泡背景颜色
padding: 6, // 修改为气泡内边距
display: 'ALWAYS', // 修改为气泡的显示策略
}
})
})
this.status3.forEach(item => {
this.markers.push({
id: parseFloat(item.sn),
latitude: parseFloat(item.latitude),
longitude: parseFloat(item.longitude),
// title: item.deviceName,
width: 40,
height: 40,
iconPath: 'https://lxnapi.ccttiot.com/bike/img/static/u1UD93BU1vfshWFoDwgX',
callout: {
content: '骑行' + item.remainingPower + '%', // 修改为你想要显示的文字内容
color: '#2679D1', // 修改为文字颜色
fontSize: 14, // 修改为文字大小
borderRadius: 10, // 修改为气泡圆角大小
bgColor: '#D4ECFF', // 修改为气泡背景颜色
padding: 6, // 修改为气泡内边距
display: 'ALWAYS', // 修改为气泡的显示策略
}
})
})
this.status4.forEach(item => {
this.markers.push({
id: parseFloat(item.sn),
latitude: parseFloat(item.latitude),
longitude: parseFloat(item.longitude),
// title: item.deviceName,
width: 40,
height: 40,
iconPath: 'https://lxnapi.ccttiot.com/bike/img/static/u1UD93BU1vfshWFoDwgX',
callout: {
content: '锁车' + item.remainingPower + '%', // 修改为你想要显示的文字内容
color: '#2679D1', // 修改为文字颜色
fontSize: 14, // 修改为文字大小
borderRadius: 10, // 修改为气泡圆角大小
bgColor: '#D4ECFF', // 修改为气泡背景颜色
padding: 6, // 修改为气泡内边距
display: 'ALWAYS', // 修改为气泡的显示策略
}
})
})
this.status8.forEach(item => {
this.markers.push({
id: parseFloat(item.sn),
latitude: parseFloat(item.latitude),
longitude: parseFloat(item.longitude),
// title: item.deviceName,
width: 40,
height: 40,
iconPath: 'https://lxnapi.ccttiot.com/bike/img/static/u76wT0QiWdAGJdF4v6AR',
callout: {
content: '下线', // 修改为你想要显示的文字内容
color: '#ffffff', // 修改为文字颜色
fontSize: 14, // 修改为文字大小
borderRadius: 10, // 修改为气泡圆角大小
bgColor: '#000000', // 修改为气泡背景颜色
padding: 6, // 修改为气泡内边距
display: 'ALWAYS', // 修改为气泡的显示策略
}
})
})
2024-06-20 18:08:54 +08:00
this.status9.forEach(item => {
this.markers.push({
2024-06-21 18:03:21 +08:00
id: parseFloat(item.sn),
2024-06-20 18:08:54 +08:00
latitude: parseFloat(item.latitude),
longitude: parseFloat(item.longitude),
// title: item.deviceName,
width: 40,
height: 40,
iconPath: 'https://lxnapi.ccttiot.com/bike/img/static/u4UKmB47AxOj3YKIaajM',
callout: {
content: '离线', // 修改为你想要显示的文字内容
color: '#ffffff', // 修改为文字颜色
fontSize: 14, // 修改为文字大小
borderRadius: 10, // 修改为气泡圆角大小
bgColor: '#000000', // 修改为气泡背景颜色
padding: 6, // 修改为气泡内边距
display: 'ALWAYS', // 修改为气泡的显示策略
}
2024-05-11 18:01:20 +08:00
})
2024-06-20 18:08:54 +08:00
})
2024-05-11 18:01:20 +08:00
},
getmarks() {
2024-06-20 18:08:54 +08:00
2024-05-11 18:01:20 +08:00
this.markers = []
this.status0 = []
this.status1 = []
this.status2 = []
this.status3 = []
this.status4 = []
this.status8 = []
this.status9 = []
let data = {
powerStart: this.rangeValue[0],
powerEnd: this.rangeValue[1],
sort: 'desc',
2024-06-20 18:08:54 +08:00
2024-05-11 18:01:20 +08:00
}
2024-06-20 18:08:54 +08:00
if (this.statusidx != 7 && this.statusidx != 9) {
2024-05-11 18:01:20 +08:00
data.status = this.statusidx
this.$u.get(`/appVerify/allVehicleInfo?`, data).then((res) => {
if (res.code == 200) {
this.showmap = true
this.listData = res.data;
res.data.forEach(item => {
if (item.onlineStatus == 0) {
this.status9.push(item);
2024-06-20 18:08:54 +08:00
} else {
if (item.status == 0) {
this.status0.push(item);
} else if (item.status == 1) {
this.status1.push(item);
} else if (item.status == 2) {
this.status2.push(item);
} else if (item.status == 3) {
this.status3.push(item);
} else if (item.status == 4) {
this.status4.push(item);
} else if (item.status == 8) {
this.status8.push(item);
}
2024-05-11 18:01:20 +08:00
}
2024-06-20 18:08:54 +08:00
2024-05-11 18:01:20 +08:00
// 可以在这里执行其他针对每个项的操作
});
this.markstause()
2024-06-06 18:04:50 +08:00
// this.getParking()
2024-05-11 18:01:20 +08:00
// this.markers = markers;
2024-06-20 18:08:54 +08:00
2024-05-11 18:01:20 +08:00
} else {
// 处理接口返回错误的情况
}
}).catch(error => {
// 处理接口请求失败的情况
});
2024-06-20 18:08:54 +08:00
} else if (this.statusidx == 7) {
data.status = ''
2024-05-11 18:01:20 +08:00
this.$u.get(`/appVerify/allVehicleInfo?`, data).then((res) => {
if (res.code == 200) {
this.showmap = true
this.listData = res.data;
res.data.forEach(item => {
if (item.onlineStatus == 0) {
this.status9.push(item);
2024-06-20 18:08:54 +08:00
} else {
if (item.status == 0) {
this.status0.push(item);
} else if (item.status == 1) {
this.status1.push(item);
} else if (item.status == 2) {
this.status2.push(item);
} else if (item.status == 3) {
this.status3.push(item);
} else if (item.status == 4) {
this.status4.push(item);
} else if (item.status == 8) {
this.status8.push(item);
}
2024-05-11 18:01:20 +08:00
}
2024-06-20 18:08:54 +08:00
2024-05-11 18:01:20 +08:00
// 可以在这里执行其他针对每个项的操作
});
this.markstause()
2024-06-06 18:04:50 +08:00
// this.getParking()
2024-05-11 18:01:20 +08:00
// this.markers = markers;
2024-06-20 18:08:54 +08:00
2024-05-11 18:01:20 +08:00
} else {
// 处理接口返回错误的情况
}
}).catch(error => {
// 处理接口请求失败的情况
});
2024-06-20 18:08:54 +08:00
} else if (this.statusidx == 9) {
data.status = ''
2024-05-11 18:01:20 +08:00
this.$u.get(`/appVerify/allVehicleInfo?`, data).then((res) => {
if (res.code == 200) {
this.showmap = true
this.listData = res.data;
res.data.forEach(item => {
2024-06-20 18:08:54 +08:00
2024-05-11 18:01:20 +08:00
if (item.onlineStatus == 0) {
this.status9.push(item);
}
// 可以在这里执行其他针对每个项的操作
});
this.markstause()
2024-06-06 18:04:50 +08:00
// this.getParking()
2024-05-11 18:01:20 +08:00
// this.markers = markers;
2024-06-20 18:08:54 +08:00
2024-05-11 18:01:20 +08:00
} else {
// 处理接口返回错误的情况
}
}).catch(error => {
// 处理接口请求失败的情况
});
}
2024-06-20 18:08:54 +08:00
this.getParking()
2024-05-11 18:01:20 +08:00
},
2024-05-09 17:05:51 +08:00
format(val) {
return val + '%'
},
handleRangeChange(e) {
2024-06-20 18:08:54 +08:00
// 每次滑动时清除之前的定时器
clearTimeout(timerId);
// 设置一个新的定时器,在滑动停止后 500ms 执行 getmarks 方法
timerId = setTimeout(() => {
this.rangeValue = e;
this.getmarks();
}, 500);
2024-05-09 17:05:51 +08:00
},
2024-05-08 23:18:30 +08:00
onMarkerTap(e) {
if (e.type === 'markertap') {
console.log('点击了标记:', e.markerId);
// 这里可以根据需要处理点击标记的逻辑
// 阻止事件冒泡
this.sn = e.markerId
2024-06-20 18:08:54 +08:00
for (let i = 0; i < this.listData.length; i++) {
if (this.listData[i].sn == this.sn) {
2024-05-13 18:03:20 +08:00
uni.navigateTo({
2024-06-20 18:08:54 +08:00
url: '/pages_admin/order/device_detail?id=' + this.sn
})
}
}
2024-05-13 18:03:20 +08:00
// this.listData
2024-05-08 23:18:30 +08:00
}
},
todetail() {
for (let item of this.fixdata) {
if (item.sn == this.sn) {
uni.navigateTo({
2024-05-09 17:05:51 +08:00
url: '/page_fix/repair/repair_detail?id=' + item.id
2024-05-08 23:18:30 +08:00
})
}
}
for (let item of this.eledata) {
if (item.sn == this.sn) {
uni.navigateTo({
2024-05-09 17:05:51 +08:00
url: '/page_fix/repair/repair_detail?id=' + item.id
2024-05-08 23:18:30 +08:00
})
}
}
},
2024-05-11 18:01:20 +08:00
2024-06-23 17:17:51 +08:00
2024-05-08 23:18:30 +08:00
getArea() {
// 发送请求获取数据
2024-06-21 18:03:21 +08:00
let data = {
areaId: this.areaId
}
2024-06-23 17:17:51 +08:00
this.$u.get('/app/area/list?', data).then((res) => {
2024-05-08 23:18:30 +08:00
if (res.code === 200) {
// 处理接口返回的数据,将边界数据转换为地图组件需要的折线结构
const polylines = res.rows
.filter(area => area.boundaryStr) // 过滤掉boundary为空的数据
.map(area => this.convertBoundaryToPolyline(area.boundaryStr));
// 更新折线数据
this.polyline = polylines;
2024-06-23 17:17:51 +08:00
2024-06-20 18:08:54 +08:00
this.getmarks()
2024-05-08 23:18:30 +08:00
// console.log(this.polyline);
}
}).catch(error => {
console.error("Error fetching area data:", error);
});
},
2024-06-20 18:08:54 +08:00
convertBoundaryToPolylines(boundaries, num) {
if (num == 1) {
console.log('判断');
return boundaries.map(boundary => {
if (!boundary) return null;
let coords;
try {
coords = JSON.parse(boundary);
} catch (error) {
console.error("Error parsing boundary JSON:", error);
return null;
}
if (!Array.isArray(coords)) {
console.error("Parsed boundary is not an array:", coords);
return null;
}
const points = coords.map(coord => ({
latitude: coord[1],
longitude: coord[0]
}));
return {
points: points,
fillColor: "#3A7EDB10", //填充颜色
strokeColor: "#3A7EDB", //描边颜色
strokeWidth: 2, //描边宽度
zIndex: 1, //层级
};
}).filter(polyline => polyline !== null); // 过滤掉无效的折线数据
} else if (num == 2) {
return boundaries.map(boundary => {
if (!boundary) return null;
let coords;
try {
coords = JSON.parse(boundary);
} catch (error) {
console.error("Error parsing boundary JSON:", error);
return null;
}
if (!Array.isArray(coords)) {
console.error("Parsed boundary is not an array:", coords);
return null;
}
const points = coords.map(coord => ({
latitude: coord[1],
longitude: coord[0]
}));
return {
points: points,
fillColor: "#FFF5D640", //填充颜色
strokeColor: "#FFC107", //描边颜色
strokeWidth: 2, //描边宽度
zIndex: 1, //层级
};
}).filter(polyline => polyline !== null); // 过滤掉无效的折线数据
} else if (num == 3) {
return boundaries.map(boundary => {
if (!boundary) return null;
let coords;
try {
coords = JSON.parse(boundary);
} catch (error) {
console.error("Error parsing boundary JSON:", error);
return null;
}
if (!Array.isArray(coords)) {
console.error("Parsed boundary is not an array:", coords);
return null;
}
const points = coords.map(coord => ({
latitude: coord[1],
longitude: coord[0]
}));
return {
points: points,
fillColor: "#FFD1CF40", //填充颜色
strokeColor: "#FF473E", //描边颜色
strokeWidth: 2, //描边宽度
zIndex: 1, //层级
};
}).filter(polyline => polyline !== null); // 过滤掉无效的折线数据
}
2024-05-08 23:18:30 +08:00
},
getParking() {
// 发送请求获取数据
this.$u.get('/app/parking/list').then((res) => {
if (res.code === 200) {
// 处理接口返回的数据
2024-06-20 18:08:54 +08:00
const type1Data = [];
const type2Data = [];
const type3Data = [];
res.rows.forEach(row => {
if (row.type == 1) {
type1Data.push(row);
} else if (row.type == 2) {
type2Data.push(row);
} else if (row.type == 3) {
type3Data.push(row);
}
});
const validBoundaries = type1Data.map(row => row.boundaryStr).filter(boundary =>
2024-05-08 23:18:30 +08:00
typeof boundary === 'string' && boundary.trim() !== '');
2024-06-20 18:08:54 +08:00
const polylines = this.convertBoundaryToPolylines(validBoundaries, 1);
2024-05-08 23:18:30 +08:00
2024-06-20 18:08:54 +08:00
const validBoundaries1 = type2Data.map(row => row.boundaryStr).filter(boundary =>
typeof boundary === 'string' && boundary.trim() !== '');
const polylines1 = this.convertBoundaryToPolylines(validBoundaries1, 2);
const validBoundaries2 = type3Data.map(row => row.boundaryStr).filter(boundary =>
typeof boundary === 'string' && boundary.trim() !== '');
const polylines2 = this.convertBoundaryToPolylines(validBoundaries2, 3);
2024-05-08 23:18:30 +08:00
// 将处理后的数据添加到 this.polyline 中
2024-06-20 18:08:54 +08:00
this.polyline = this.polyline.concat(polylines2);
this.polyline = this.polyline.concat(polylines1);
2024-05-08 23:18:30 +08:00
this.polyline = this.polyline.concat(polylines);
2024-06-20 18:08:54 +08:00
console.log(this.polyline, 'this.polyline');
2024-05-11 18:01:20 +08:00
// console.log(this.polyline);
2024-06-23 17:17:51 +08:00
this.parkingList = res.rows
2024-05-08 23:18:30 +08:00
}
}).catch(error => {
console.error("Error fetching parking data:", error);
});
},
convertBoundaryToPolyline(boundary) {
if (!boundary) return null;
const points = JSON.parse(boundary).map(coord => ({
latitude: coord[1],
longitude: coord[0]
}));
const polyline = {
points: points,
fillColor: "#55888840", //填充颜色
strokeColor: "#22FF00", //描边颜色
strokeWidth: 2, //描边宽度
zIndex: 1, //层级
};
return polyline;
},
}
}
</script>
<style lang="scss">
page {
2024-06-04 18:12:12 +08:00
background-color: #fff;
2024-05-08 23:18:30 +08:00
}
.page {
width: 750rpx;
2024-05-11 18:01:20 +08:00
.decice_cont {
2024-05-09 17:05:51 +08:00
display: flex;
2024-05-09 18:00:26 +08:00
flex-wrap: wrap;
2024-05-09 17:05:51 +08:00
align-items: center;
2024-06-21 18:03:21 +08:00
padding: 10rpx 28rpx;
2024-05-11 18:01:20 +08:00
2024-05-09 18:00:26 +08:00
.cont:nth-child(5n) {
2024-05-11 18:01:20 +08:00
margin-right: 0;
2024-05-09 18:00:26 +08:00
}
2024-05-11 18:01:20 +08:00
.cont {
2024-06-21 18:03:21 +08:00
margin-top: 8rpx;
2024-06-03 18:06:08 +08:00
margin-right: 9rpx;
2024-05-09 18:00:26 +08:00
// display: flex;
width: 130rpx;
2024-05-11 18:01:20 +08:00
.text {
2024-05-09 18:00:26 +08:00
width: 100%;
2024-05-09 17:05:51 +08:00
text-align: center;
font-weight: 500;
font-size: 24rpx;
line-height: 38rpx;
color: #3D3D3D;
}
2024-05-11 18:01:20 +08:00
.act1 {
color: #4C97E7;
}
2024-05-09 17:05:51 +08:00
}
2024-05-11 18:01:20 +08:00
2024-05-08 23:18:30 +08:00
}
2024-06-23 17:17:51 +08:00
.park {
position: fixed;
display: flex;
align-items: center;
justify-content: center;
right: 30rpx;
bottom: 500rpx;
// background-color: #fff;
border-radius: 50%;
width: 82rpx;
height: 82rpx;
z-index: 10;
.img {
width: 82rpx;
height: 82rpx;
}
}
2024-05-11 18:01:20 +08:00
.btn_box {
2024-05-09 17:05:51 +08:00
width: 100%;
display: flex;
flex-wrap: nowrap;
2024-05-11 18:01:20 +08:00
.btn1 {
2024-05-08 23:18:30 +08:00
display: flex;
align-items: center;
justify-content: center;
2024-05-09 17:05:51 +08:00
width: 376rpx;
height: 74rpx;
background: #D4ECFF;
2024-05-08 23:18:30 +08:00
font-weight: 500;
font-size: 40rpx;
2024-05-09 17:05:51 +08:00
color: #4C97E7;
2024-05-08 23:18:30 +08:00
}
2024-05-11 18:01:20 +08:00
.btn2 {
2024-05-08 23:18:30 +08:00
display: flex;
align-items: center;
2024-05-09 17:05:51 +08:00
justify-content: center;
width: 374rpx;
height: 74rpx;
background: #4C97E7;
font-weight: 500;
font-size: 40rpx;
color: #FFFFFF;
2024-05-08 23:18:30 +08:00
}
}
2024-05-11 18:01:20 +08:00
.slider {
2024-06-03 18:06:08 +08:00
padding: 15rpx 0 0 15rpx;
2024-06-04 18:12:12 +08:00
margin-bottom: 20rpx;
2024-06-20 18:08:54 +08:00
2024-05-11 18:01:20 +08:00
.tit {
2024-05-09 17:05:51 +08:00
font-weight: 500;
font-size: 28rpx;
color: #3D3D3D;
}
2024-05-11 18:01:20 +08:00
2024-05-09 17:05:51 +08:00
width: 752rpx;
2024-06-03 18:06:08 +08:00
height:160rpx;
2024-05-09 17:05:51 +08:00
background: #FFFFFF;
2024-06-04 18:12:12 +08:00
// box-shadow: 0rpx 4rpx 22rpx 0rpx rgba(0, 0, 0, 0.07);
2024-05-09 17:05:51 +08:00
border-radius: 0rpx 0rpx 0rpx 0rpx;
}
2024-05-11 18:01:20 +08:00
2024-05-09 17:05:51 +08:00
.map {
width: 750rpx;
2024-06-21 18:03:21 +08:00
height: 50vh;
2024-05-09 17:05:51 +08:00
}
2024-05-08 23:18:30 +08:00
}
</style>