bike-ali/pages_admin/admin_index.vue

406 lines
9.3 KiB
Vue
Raw Normal View History

2024-05-08 23:18:30 +08:00
<template>
<view class="page">
2024-05-09 17:05:51 +08:00
2024-05-09 18:00:26 +08:00
<u-navbar title="地图" :is-back='false' :border-bottom="false" :background="bgc" title-color='#2E4975' title-size='36'
2024-05-08 23:18:30 +08:00
height='36'></u-navbar>
2024-05-09 17:05:51 +08:00
<view class="slider">
<view class="tit">
电量区间
</view>
<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-05-08 23:18:30 +08:00
<map class="map" id="map" ref="map" :scale="zoomSize" :latitude="latitude" :longitude="longitude"
:show-location="true" :markers="markers" :polygons="polyline" @markertap="onMarkerTap">
</map>
2024-05-09 17:05:51 +08:00
<view class="btn_box">
<view class="btn1">
车辆扫码
2024-05-08 23:18:30 +08:00
</view>
2024-05-09 17:05:51 +08:00
<view class="btn2">
车辆搜索
</view>
</view>
<view class="decice_cont">
<view class="cont">
<view class="text">
全部设备
2024-05-08 23:18:30 +08:00
</view>
2024-05-09 17:05:51 +08:00
<view class="text">
1
2024-05-08 23:18:30 +08:00
</view>
</view>
2024-05-09 18:00:26 +08:00
<view class="cont">
<view class="text">
用户行驶中
</view>
<view class="text">
1
</view>
</view>
<view class="cont" style="width: 140rpx;">
<view class="text">
用户临时锁定
</view>
<view class="text">
1
</view>
</view>
<view class="cont">
<view class="text">
已禁用
</view>
<view class="text">
1
</view>
</view>
<view class="cont">
<view class="text">
已离线
</view>
<view class="text">
1
</view>
</view>
<view class="cont">
<view class="text">
待租
</view>
<view class="text">
1
</view>
</view>
<view class="cont">
<view class="text">
用户预约中
</view>
<view class="text">
1
</view>
</view>
<view class="cont">
<view class="text">
调度设备
</view>
<view class="text">
1
</view>
</view>
2024-05-08 23:18:30 +08:00
</view>
<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-08 23:18:30 +08:00
export default {
data() {
return {
bgc: {
backgroundColor: "#F7FAFE",
},
latitude: '26.940805',
longitude: '120.356157',
isMap: false,
zoomSize: 15,
markers: [],
polyline: [],
polygons: [],
fixdata: [],
eledata: [],
listData: [],
2024-05-09 17:05:51 +08:00
infonum: {},
rangeMin: 0,
rangMax: 100,
rangeValue: [0, 100]
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(() => {
// 执行其他操作...
});
this.getArea()
this.getParking()
this.getmarks()
this.getordernum()
},
computed: {
userId() {
return this.$store.getters.userId;
},
},
methods: {
2024-05-09 17:05:51 +08:00
format(val) {
return val + '%'
},
handleRangeChange(e) {
this.rangeValue = e
},
2024-05-08 23:18:30 +08:00
onMarkerTap(e) {
if (e.type === 'markertap') {
console.log('点击了标记:', e.markerId);
// 这里可以根据需要处理点击标记的逻辑
// 阻止事件冒泡
this.sn = e.markerId
this.todetail()
}
},
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
})
}
}
console.log("no");
},
getmarks() {
this.$u.get(`/appVerify/adminOrder/list?adminId=` + 2).then((res) => {
if (res.code == 200) {
console.log('调用了');
this.listData = res.rows;
res.rows.forEach(item => {
if (item.type == 1) {
this.fixdata.push(item);
console.log(this.fixdata, 'this.fixdata');
} else if (item.type == 2) {
this.eledata.push(item);
}
// 可以在这里执行其他针对每个项的操作
});
setTimeout(() => {
this.fixdata.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',
})
})
}, 100)
setTimeout(() => {
this.eledata.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/u4UKmB47AxOj3YKIaajM',
})
})
console.log(this.markers, ' this.markers this.markers');
}, 200)
// this.markers = markers;
} else {
// 处理接口返回错误的情况
}
}).catch(error => {
// 处理接口请求失败的情况
});
},
topage() {
uni.navigateTo({
url: '/page_fix/repair/repair_index'
})
},
getordernum() {
// 发送请求获取数据
this.$u.get('/appVerify/adminOrder/num?adminId=' + 2).then((res) => {
if (res.code === 200) {
// 处理接口返回的数据,将边界数据转换为地图组件需要的折线结构
2024-05-09 17:05:51 +08:00
this.infonum = res.data
2024-05-08 23:18:30 +08:00
// console.log(this.polyline);
}
}).catch(error => {
console.error("Error fetching area data:", error);
});
},
getArea() {
// 发送请求获取数据
this.$u.get('/app/area/list').then((res) => {
if (res.code === 200) {
// 处理接口返回的数据,将边界数据转换为地图组件需要的折线结构
const polylines = res.rows
.filter(area => area.boundaryStr) // 过滤掉boundary为空的数据
.map(area => this.convertBoundaryToPolyline(area.boundaryStr));
// 更新折线数据
this.polyline = polylines;
// console.log(this.polyline);
}
}).catch(error => {
console.error("Error fetching area data:", error);
});
},
convertBoundaryToPolylines(boundaries) {
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: "#55888840", //填充颜色
strokeColor: "#558888", //描边颜色
strokeWidth: 2, //描边宽度
zIndex: 1, //层级
};
}).filter(polyline => polyline !== null); // 过滤掉无效的折线数据
},
getParking() {
// 发送请求获取数据
this.$u.get('/app/parking/list').then((res) => {
if (res.code === 200) {
// 处理接口返回的数据
const validBoundaries = res.rows.map(row => row.boundaryStr).filter(boundary =>
typeof boundary === 'string' && boundary.trim() !== '');
const polylines = this.convertBoundaryToPolylines(validBoundaries);
// 将处理后的数据添加到 this.polyline 中
this.polyline = this.polyline.concat(polylines);
console.log(this.polyline);
}
}).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 {
background-color: #F7FAFE;
}
.page {
width: 750rpx;
2024-05-09 17:05:51 +08:00
.decice_cont{
display: flex;
2024-05-09 18:00:26 +08:00
flex-wrap: wrap;
2024-05-09 17:05:51 +08:00
align-items: center;
padding: 22rpx 28rpx;
2024-05-09 18:00:26 +08:00
.cont:nth-child(5n) {
margin-right: 0;
}
2024-05-09 17:05:51 +08:00
.cont{
2024-05-09 18:00:26 +08:00
margin-top: 18rpx;
margin-right: 10rpx;
// display: flex;
width: 130rpx;
2024-05-09 17:05:51 +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-09 18:00:26 +08:00
.act1{
color: #4C97E7;
}
2024-05-08 23:18:30 +08:00
}
2024-05-09 17:05:51 +08:00
.btn_box{
width: 100%;
display: flex;
flex-wrap: nowrap;
.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-09 17:05:51 +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-09 17:05:51 +08:00
.slider{
.tit{
font-weight: 500;
font-size: 28rpx;
color: #3D3D3D;
}
width: 752rpx;
height: 150rpx;
background: #FFFFFF;
box-shadow: 0rpx 4rpx 22rpx 0rpx rgba(0,0,0,0.07);
border-radius: 0rpx 0rpx 0rpx 0rpx;
}
.map {
width: 750rpx;
height: 906rpx;
}
2024-05-08 23:18:30 +08:00
}
</style>