bike/pages_admin/order/device_detail.vue

715 lines
20 KiB
Vue
Raw Normal View History

2024-05-09 18:00:26 +08:00
<template>
2024-05-09 20:58:53 +08:00
<view class="page">
<u-navbar title="设备详情" :border-bottom="false" :background="bgc" title-color='#2E4975' title-size='36'
2024-06-07 18:08:55 +08:00
height='45'></u-navbar>
2024-05-09 20:58:53 +08:00
<map class="map" id="map" ref="map" :scale="zoomSize" :latitude="latitude" :longitude="longitude"
2024-05-13 18:03:20 +08:00
:show-location="true" :markers="markers" :polygons="polyline" ></map>
2024-05-09 20:58:53 +08:00
<view class="info_card">
<view class="info_tit">
设备信息
</view>
<view class="lines"></view>
<view class="cont">
<view class="info_li">
<view class="half_infoli">
2024-05-13 18:03:20 +08:00
车牌号<span>{{deviceInfos.vehicleNum}}</span>
2024-05-09 20:58:53 +08:00
</view>
<view class="half_infoli">
2024-05-13 18:03:20 +08:00
MAC<span>{{deviceInfos.mac}}</span>
2024-05-09 20:58:53 +08:00
</view>
</view>
<view class="info_li">
<view class="half_infoli">
2024-05-13 18:03:20 +08:00
SN<span>{{deviceInfos.sn}}</span>
2024-05-09 20:58:53 +08:00
</view>
<view class="half_infoli">
2024-05-13 18:03:20 +08:00
车辆型号<span>{{deviceInfos.model}}</span>
2024-05-09 20:58:53 +08:00
</view>
</view>
<view class="info_li">
2024-05-13 18:03:20 +08:00
运营区域<span>{{deviceInfos.areaName}}</span>
2024-05-09 20:58:53 +08:00
</view>
</view>
<view class="lines"></view>
<view class="cont">
<view class="info_li">
<view class="half_infoli">
2024-05-13 18:03:20 +08:00
车辆状态<span>{{status()}}</span>
2024-05-09 20:58:53 +08:00
</view>
<view class="half_infoli">
2024-05-13 18:03:20 +08:00
续航里程<span>{{deviceInfos.remainingMileage}}Km</span>
2024-05-09 20:58:53 +08:00
</view>
</view>
<view class="info_li">
2024-05-13 18:03:20 +08:00
<view class="half_infoli">
电池电量<span>{{deviceInfos.remainingPower}}%</span>
</view>
2024-05-09 20:58:53 +08:00
</view>
2024-05-13 18:03:20 +08:00
<!-- <view class="info_li">
异常原因<span>已完成</span>
</view> -->
2024-05-09 20:58:53 +08:00
</view>
2024-05-13 18:03:20 +08:00
<!-- <view class="lines"></view>
2024-05-09 20:58:53 +08:00
<view class="cont">
<view class="info_li">
2024-05-13 18:03:20 +08:00
2024-05-09 20:58:53 +08:00
<view class="half_infoli">
GPRS信号<span>1Km</span>
</view>
</view>
2024-05-13 18:03:20 +08:00
</view> -->
2024-05-09 20:58:53 +08:00
<view class="lines"></view>
<view class="cont">
<view class="info_li">
2024-05-13 23:34:28 +08:00
最后定位坐标<span>{{deviceInfos.latitude}},{{deviceInfos.longitude}}</span>
2024-05-09 20:58:53 +08:00
</view>
<view class="info_li" style="flex-wrap: wrap;display: inline-block;">
2024-05-13 23:34:28 +08:00
最后定位地址<span> {{deviceInfos.location}}</span>
2024-05-09 20:58:53 +08:00
</view>
<view class="info_li">
2024-05-13 23:34:28 +08:00
最后定位时间<span>{{deviceInfos.lastTime}}</span>
2024-05-09 20:58:53 +08:00
</view>
</view>
</view>
2024-05-13 23:34:28 +08:00
<view class="info_card" style="margin-top: 20rpx;" v-if="deviceInfos.etOrders!=''">
2024-05-09 20:58:53 +08:00
<view class="info_tit">
订单信息
</view>
<view class="lines"></view>
<view class="cont">
<view class="info_li">
2024-05-13 18:03:20 +08:00
当前用户<span>{{deviceInfos.etOrders[0].phonenumber}}</span>
2024-05-09 20:58:53 +08:00
</view>
<view class="info_li" style="flex-wrap: wrap;display: inline-block;">
2024-05-13 18:03:20 +08:00
当前订单编号<span>{{deviceInfos.etOrders[0].orderNo}}</span>
2024-05-09 20:58:53 +08:00
</view>
<view class="info_li">
2024-05-13 18:03:20 +08:00
订单开始时间<span>{{deviceInfos.etOrders[0].createTime}}</span>
2024-05-09 20:58:53 +08:00
</view>
</view>
</view>
<view class="bot_btn">
2024-05-13 18:03:20 +08:00
<view class="btn" @click="btn(0)">
2024-05-09 20:58:53 +08:00
开锁
</view>
2024-05-13 18:03:20 +08:00
<view class="btn" @click="btn(1)">
2024-05-09 20:58:53 +08:00
关锁
</view>
2024-05-13 18:03:20 +08:00
<view class="btn" @click="btn(2)">
2024-05-09 20:58:53 +08:00
车辆禁用
</view>
2024-05-13 18:03:20 +08:00
<view class="btn" @click="btn(3)">
2024-05-09 20:58:53 +08:00
车辆解禁
</view>
2024-05-13 18:03:20 +08:00
<view class="btn" @click="btn(4)">
2024-05-09 20:58:53 +08:00
响铃寻车
</view>
<view class="btn" @click="tipshow=true" v-if="info.type==1">
维修处理
</view>
<view class="btn" @click="tipshow=true" v-if="info.type==2">
换电处理
</view>
</view>
2024-05-13 18:03:20 +08:00
<u-mask :show="false" @click="show = false" :z-index='100' />
<view class="tip_box" v-if="false">
2024-05-09 20:58:53 +08:00
<view class="top">
<view class="tip">
修改车牌号
</view>
<view class="ipt_box">
<view class="text">
车牌号
</view>
<view class="ipt">
<input type="text"
v-model="searchKeyword"
placeholder="0.00"
class="input"
placeholder-style="color:#C7CDD3"
>
</view>
</view>
</view>
<view class="bot">
<view class="bot_left" @click="show=false">
取消
</view>
<view class="bot_right">
确定
</view>
</view>
</view>
<!-- <view class="bot">
<view class="btn">
退款
</view>
</view> -->
2024-05-09 18:00:26 +08:00
</view>
</template>
<script>
export default {
data() {
return {
2024-05-09 20:58:53 +08:00
bgc: {
backgroundColor: "#F7FAFE",
},
show:true,
showgj:true,
searchKeyword: '11',
latitude: 39.916527,
longitude: 116.397128,
isMap: false,
zoomSize: 15,
2024-05-13 18:03:20 +08:00
markers: [],
polyline: [],
polygons: [],
cardId: '001区域',
sn:'',
deviceInfos:{}
2024-05-09 20:58:53 +08:00
2024-05-09 18:00:26 +08:00
}
},
2024-05-13 18:03:20 +08:00
onLoad(e) {
this.sn=e.id
this.deviceInfo()
this.getArea()
this.getParking()
},
2024-05-09 18:00:26 +08:00
methods: {
2024-05-13 18:03:20 +08:00
btn(num){
if(num==0){
this.$u.post('/appVerify/admin/unlocking?sn='+this.sn).then((res) => {
if (res.code === 200) {
// 处理接口返回的数据,将边界数据转换为地图组件需要的折线结构
this.deviceInfo()
}
}).catch(error => {
console.error("Error fetching area data:", error);
});
}else if(num==1){
this.$u.post('/appVerify/admin/lock?sn='+this.sn).then((res) => {
if (res.code === 200) {
// 处理接口返回的数据,将边界数据转换为地图组件需要的折线结构
this.deviceInfo()
}
}).catch(error => {
console.error("Error fetching area data:", error);
});
}else if(num==2){
this.$u.post('/appVerify/device/offline?sn='+this.sn).then((res) => {
if (res.code === 200) {
// 处理接口返回的数据,将边界数据转换为地图组件需要的折线结构
this.deviceInfo()
}
}).catch(error => {
console.error("Error fetching area data:", error);
});
}else if(num==3){
this.$u.post('/appVerify/device/online?sn='+this.sn).then((res) => {
if (res.code === 200) {
// 处理接口返回的数据,将边界数据转换为地图组件需要的折线结构
this.deviceInfo()
}
}).catch(error => {
console.error("Error fetching area data:", error);
});
}else if(num==4){
2024-06-03 21:04:26 +08:00
this.$u.post('/app/device/ring?sn=' + this.sn).then((res) => {
2024-05-13 18:03:20 +08:00
if (res.code === 200) {
2024-06-03 21:04:26 +08:00
2024-05-13 18:03:20 +08:00
}
2024-06-03 21:04:26 +08:00
})
2024-05-13 18:03:20 +08:00
}
},
status(){
if(this.deviceInfos.onlineStatus==0){
return '离线'
}else{
if(this.deviceInfos.status==0){
return '未上架'
}else if(this.deviceInfos.status==1){
return '待租'
}else if(this.deviceInfos.status==2){
return '预约中'
}else if(this.deviceInfos.status==3){
return '骑行中'
}else if(this.deviceInfos.status==4){
return '临时锁车中'
}else if(this.deviceInfos.status==8){
return '下线'
}
}
},
deviceInfo() {
this.$u.get('/app/device/info?sn=' + this.sn).then((res) => {
if (res.code === 200) {
this.deviceInfos = res.data
this.latitude= parseFloat(this.deviceInfos.latitude)
this.longitude= parseFloat(this.deviceInfos.longitude )
if (this.deviceInfos.status == 0) {
this.markers.push({
id: parseFloat(this.deviceInfos.sn),
latitude: parseFloat(this.deviceInfos.latitude),
longitude: parseFloat(this.deviceInfos.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', // 修改为气泡的显示策略
}
})
} else if (this.deviceInfos.status == 1) {
this.markers.push({
id: parseFloat(this.deviceInfos.sn),
latitude: parseFloat(this.deviceInfos.latitude),
longitude: parseFloat(this.deviceInfos.longitude),
// title: item.deviceName,
width: 40,
height: 40,
iconPath: 'https://lxnapi.ccttiot.com/bike/img/static/u1UD93BU1vfshWFoDwgX',
callout: {
content: '待租' + this.deviceInfos.remainingPower + '%', // 修改为你想要显示的文字内容
color: '#2679D1', // 修改为文字颜色
fontSize: 14, // 修改为文字大小
borderRadius: 10, // 修改为气泡圆角大小
bgColor: '#D4ECFF', // 修改为气泡背景颜色
padding: 6, // 修改为气泡内边距
display: 'ALWAYS', // 修改为气泡的显示策略
}
})
} else if (this.deviceInfos.status == 2) {
this.markers.push({
id: parseFloat(this.deviceInfos.sn),
latitude: parseFloat(this.deviceInfos.latitude),
longitude: parseFloat(this.deviceInfos.longitude),
// title: item.deviceName,
width: 40,
height: 40,
iconPath: 'https://lxnapi.ccttiot.com/bike/img/static/u1UD93BU1vfshWFoDwgX',
callout: {
content: '预约' + this.deviceInfos.remainingPower + '%', // 修改为你想要显示的文字内容
color: '#2679D1', // 修改为文字颜色
fontSize: 14, // 修改为文字大小
borderRadius: 10, // 修改为气泡圆角大小
bgColor: '#D4ECFF', // 修改为气泡背景颜色
padding: 6, // 修改为气泡内边距
display: 'ALWAYS', // 修改为气泡的显示策略
}
})
} else if (this.deviceInfos.status == 3) {
this.markers.push({
id: parseFloat(this.deviceInfos.sn),
latitude: parseFloat(this.deviceInfos.latitude),
longitude: parseFloat(this.deviceInfos.longitude),
// title: item.deviceName,
width: 40,
height: 40,
iconPath: 'https://lxnapi.ccttiot.com/bike/img/static/u1UD93BU1vfshWFoDwgX',
callout: {
content: '骑行' + this.deviceInfos.remainingPower + '%', // 修改为你想要显示的文字内容
color: '#2679D1', // 修改为文字颜色
fontSize: 14, // 修改为文字大小
borderRadius: 10, // 修改为气泡圆角大小
bgColor: '#D4ECFF', // 修改为气泡背景颜色
padding: 6, // 修改为气泡内边距
display: 'ALWAYS', // 修改为气泡的显示策略
}
})
} else if (this.deviceInfos.status == 4) {
this.markers.push({
id: parseFloat(this.deviceInfos.sn),
latitude: parseFloat(this.deviceInfos.latitude),
longitude: parseFloat(this.deviceInfos.longitude),
// title: item.deviceName,
width: 40,
height: 40,
iconPath: 'https://lxnapi.ccttiot.com/bike/img/static/u1UD93BU1vfshWFoDwgX',
callout: {
content: '锁车' + this.deviceInfos.remainingPower + '%', // 修改为你想要显示的文字内容
color: '#2679D1', // 修改为文字颜色
fontSize: 14, // 修改为文字大小
borderRadius: 10, // 修改为气泡圆角大小
bgColor: '#D4ECFF', // 修改为气泡背景颜色
padding: 6, // 修改为气泡内边距
display: 'ALWAYS', // 修改为气泡的显示策略
}
})
} else if (this.deviceInfos.status == 8) {
this.markers.push({
id: parseFloat(this.deviceInfos.sn),
latitude: parseFloat(this.deviceInfos.latitude),
longitude: parseFloat(this.deviceInfos.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', // 修改为气泡的显示策略
}
})
}
if (this.deviceInfos.onlineStatus == 0) {
this.markers.push({
id: parseFloat(this.deviceInfos.sn),
latitude: parseFloat(this.deviceInfos.latitude),
longitude: parseFloat(this.deviceInfos.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', // 修改为气泡的显示策略
}
})
}
}
})
},
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;
},
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);
res.rows.forEach(item => {
this.markers.push({
id: parseFloat(item.parkingId),
latitude: parseFloat(item.latitude),
longitude: parseFloat(item.longitude),
// title: item.deviceName,
width: 20,
height: 40,
iconPath: 'https://lxnapi.ccttiot.com/bike/img/static/u9yz0bKCWKyev0JYpTne',
callout: {
content: item.parkingName, // 修改为你想要显示的文字内容
color: '#ffffff', // 修改为文字颜色
fontSize: 14, // 修改为文字大小
borderRadius: 10, // 修改为气泡圆角大小
bgColor: '#000000', // 修改为气泡背景颜色
padding: 6, // 修改为气泡内边距
display: 'ALWAYS', // 修改为气泡的显示策略
}
})
})
}
}).catch(error => {
console.error("Error fetching parking 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);
});
},
2024-05-09 18:00:26 +08:00
}
}
</script>
2024-05-09 20:58:53 +08:00
<style lang="scss">
page {
2024-05-13 18:03:20 +08:00
overflow-x: hidden;
2024-05-09 20:58:53 +08:00
background-color: #F3F3F3;
}
.page {
padding-bottom: 250rpx;
width: 750rpx;
.map {
width: 750rpx;
height: 752rpx;
}
.tip_box {
position: fixed;
left: 72rpx;
top: 628rpx;
width: 610rpx;
// height: 282rpx;
background: #FFFFFF;
border-radius: 30rpx 30rpx 30rpx 30rpx;
z-index: 110;
padding-bottom: 100rpx;
.top {
padding: 52rpx 38rpx 42rpx 36rpx;
.ipt_box{
margin-top: 22rpx;
display: flex;
flex-wrap: nowrap;
align-items: center;
.text{
width: 96rpx;
font-weight: 400;
font-size: 32rpx;
color: #3D3D3D;
}
.ipt{
padding: 10rpx 18rpx;
display: flex;
align-items: center;
justify-content: space-between;
margin-left: 26rpx;
width: 420rpx;
height: 64rpx;
border-radius: 0rpx 0rpx 0rpx 0rpx;
border: 2rpx solid #979797;
.input{
width: 80%;
}
}
}
.tip{
width: 100%;
text-align: center;
font-weight: 700;
font-size: 32rpx;
color: #3D3D3D;
}
.txt {
margin-top: 32rpx;
width: 100%;
text-align: center;
font-weight: 500;
font-size: 32rpx;
color: #3D3D3D;
}
}
.bot {
position: absolute;
width: 610rpx;
// border-top: 2rpx solid #D8D8D8;
display: flex;
flex-wrap: nowrap;
// height: 100%;
bottom: -20rpx;
.bot_left {
border-radius: 0rpx 0rpx 0rpx 30rpx;
width: 50%;
height: 86rpx;
display: flex;
align-items: center;
justify-content: center;
font-weight: 500;
font-size: 32rpx;
color: #3D3D3D;
background: #EEEEEE;
}
.bot_right {
border-radius: 0rpx 0rpx 30rpx 0rpx;
width: 50%;
height: 86rpx;
background: #4C97E7;
display: flex;
align-items: center;
justify-content: center;
color: #FFFFFF;
// border-left: 2rpx solid #D8D8D8;
font-weight: 500;
font-size: 32rpx;
// color: #4C97E7;
}
}
}
.bot_btn{
position: fixed;
bottom: 0;
display: flex;
flex-wrap: wrap;
padding: 40rpx 18rpx;
width: 750rpx;
height: 230rpx;
background: #fff;
// background: linear-gradient( 180deg, #FFFFFF 0%, rgba(255,255,255,0) 100%);
box-shadow: 0rpx 10rpx 64rpx 0rpx rgba(0,0,0,0.08);
border-radius: 0rpx 0rpx 0rpx 0rpx;
.btn:nth-child(4n) {
margin-right: 0;
}
.btn{
margin-right: 18rpx;
display: flex;
align-items: center;
justify-content: center;
width: 164rpx;
height: 66rpx;
background: #E2F2FF;
border-radius: 0rpx 0rpx 0rpx 0rpx;
border: 2rpx solid #4C97E7;
font-weight: 400;
font-size: 28rpx;
color: #3D3D3D;
}
}
.info_card {
background: #FFFFFF;
.info_tit {
display: flex;
flex-wrap: nowrap;
padding: 22rpx 28rpx;
font-weight: 600;
font-size: 32rpx;
color: #3D3D3D;
2024-05-09 18:00:26 +08:00
2024-05-09 20:58:53 +08:00
.money {
margin-left: auto;
font-weight: 500;
font-size: 32rpx;
color: #4C97E7;
}
}
.lines {
width: 750rpx;
height: 2rpx;
border: 2rpx solid #ccc;
}
.cont {
padding: 26rpx 28rpx;
.info_li {
2024-05-13 18:03:20 +08:00
width: 98%;
2024-05-09 20:58:53 +08:00
display: flex;
flex-wrap: nowrap;
font-weight: 400;
font-size: 28rpx;
color: #808080;
span {
color: #3D3D3D;
}
2024-05-13 18:03:20 +08:00
white-space: nowrap;
/* 禁止换行 */
overflow: hidden;
/* 超出部分隐藏 */
text-overflow: ellipsis;
/* 显示省略号 */
2024-05-09 20:58:53 +08:00
line-height: 48rpx;
.half_infoli {
display: flex;
flex-wrap: nowrap;
width: 50%;
font-weight: 400;
font-size: 28rpx;
color: #808080;
span {
color: #3D3D3D;
}
.input{
width: 30%;
}
}
}
}
}
}
</style>