bug修复 新功能添加

This commit is contained in:
tx 2024-08-26 17:56:55 +08:00
parent 261c0f187a
commit 1ff9f1a705
7 changed files with 467 additions and 173 deletions

View File

@ -1,13 +1,13 @@
const install = (Vue, vm) => { const install = (Vue, vm) => {
uni.setStorageSync('deptId', 100); uni.setStorageSync('deptId', 101);
Vue.prototype.$u.http.setConfig({ Vue.prototype.$u.http.setConfig({
// baseUrl: 'http://61.174.243.28:15861', // baseUrl: 'http://61.174.243.28:15861',
// baseUrl: 'http://192.168.2.46:8080', // baseUrl: 'http://192.168.2.46:8080',
baseUrl: 'https://che.chuangtewl.com/prod-api', // baseUrl: 'https://che.chuangtewl.com/prod-api',
// 测试环境 // 测试环境
// baseUrl: 'https://dianche.chuantewulian.cn/prod-api', baseUrl: 'https://dianche.chuantewulian.cn/prod-api',
// 俞山岛 // 俞山岛
// baseUrl: 'https://dche.ccttiot.com/prod-api', // baseUrl: 'https://dche.ccttiot.com/prod-api',
// 创特 // 创特

View File

@ -51,7 +51,7 @@
/* */ /* */
"mp-weixin" : { "mp-weixin" : {
"libVersion" : "latest", "libVersion" : "latest",
"appid" : "wx3428c498d5061192", "appid" : "wx4d178f8c80348214",
"setting" : { "setting" : {
"urlCheck" : false, "urlCheck" : false,
"minified" : true "minified" : true

View File

@ -495,53 +495,53 @@
this.loading = true; this.loading = true;
this.getArea(); this.getArea();
if (res.data.tripRouteStr) { // if (res.data.tripRouteStr) {
let abb; // let abb;
try { // try {
abb = JSON.parse(res.data.tripRouteStr); // abb = JSON.parse(res.data.tripRouteStr);
} catch (error) { // } catch (error) {
console.error("Error parsing tripRouteStr:", error); // console.error("Error parsing tripRouteStr:", error);
return; // return;
} // }
if (abb.length > 2) { // if (abb.length > 2) {
this.latitude = parseFloat(abb[0][1]); // this.latitude = parseFloat(abb[0][1]);
this.longitude = parseFloat(abb[0][0]); // this.longitude = parseFloat(abb[0][0]);
this.polyline[0].points = abb.map(coord => ({ // this.polyline[0].points = abb.map(coord => ({
latitude: coord[1], // latitude: coord[1],
longitude: coord[0] // longitude: coord[0]
})); // }));
this.markers.push({ // this.markers.push({
id: 0, // id: 0,
latitude: abb[0][1], // latitude: abb[0][1],
longitude: abb[0][0], // longitude: abb[0][0],
width: 25, // width: 25,
height: 38, // height: 38,
iconPath: 'https://lxnapi.ccttiot.com/bike/img/static/u06paUGiHLvL08Pw7BGr' // iconPath: 'https://lxnapi.ccttiot.com/bike/img/static/u06paUGiHLvL08Pw7BGr'
}, { // }, {
id: 1, // id: 1,
latitude: abb[abb.length - 1][1], // latitude: abb[abb.length - 1][1],
longitude: abb[abb.length - 1][0], // longitude: abb[abb.length - 1][0],
width: 25, // width: 25,
height: 38, // height: 38,
iconPath: 'https://lxnapi.ccttiot.com/bike/img/static/uwpAj9vYtPRmhtTOtflx' // iconPath: 'https://lxnapi.ccttiot.com/bike/img/static/uwpAj9vYtPRmhtTOtflx'
}, { // }, {
id: 3, // id: 3,
latitude: abb[0][1], // latitude: abb[0][1],
longitude: abb[0][0], // longitude: abb[0][0],
width: 40, // width: 40,
height: 28, // height: 28,
iconPath: 'https://api.ccttiot.com/smartmeter/img/static/uF9qLejuAZErNTrRuHq7' // iconPath: 'https://api.ccttiot.com/smartmeter/img/static/uF9qLejuAZErNTrRuHq7'
}); // });
// Start the track playback
this.translateMarkerFun(abb);
} else {
this.latitude = parseFloat(abb[0][1]);
this.longitude = parseFloat(abb[0][0]);
}
}
// // Start the track playback
// this.translateMarkerFun(abb);
// } else {
// this.latitude = parseFloat(abb[0][1]);
// this.longitude = parseFloat(abb[0][0]);
// }
// }
this.getpolyline()
uni.hideLoading(); uni.hideLoading();
} }
}).catch(error => { }).catch(error => {
@ -549,7 +549,51 @@
}); });
}, },
getpolyline() {
this.$u.post("/system/device/trajectoryByOrderNo?orderNo=" + this.orderId).then((res) => {
if (res.code === 200) {
this.polyline[0].points = JSON.parse(res.data).map(coord => ({
latitude: coord[1],
longitude: coord[0]
}));
let abb;
try {
abb = JSON.parse(res.data);
console.log(abb,'abbbb');
} catch (error) {
console.error("Error parsing tripRouteStr:", error);
return;
}
if (abb.length > 2) {
this.latitude = parseFloat(abb[0][1]);
this.longitude = parseFloat(abb[0][0]);
this.polyline[0].points = abb.map(coord => ({
latitude: coord[1],
longitude: coord[0]
}));
this.markers.push({
id: 0,
latitude: abb[0][1],
longitude: abb[0][0],
width: 25,
height: 38,
iconPath: 'https://lxnapi.ccttiot.com/bike/img/static/u06paUGiHLvL08Pw7BGr'
}, {
id: 1,
latitude: abb[abb.length - 1][1],
longitude: abb[abb.length - 1][0],
width: 25,
height: 38,
iconPath: 'https://lxnapi.ccttiot.com/bike/img/static/uwpAj9vYtPRmhtTOtflx'
});
}
}
}).catch(error => {
console.error("Error fetching area data:", error);
});
},
translateMarkerFun(path) { translateMarkerFun(path) {
let abb = JSON.parse(this.orderInfo.tripRouteStr); let abb = JSON.parse(this.orderInfo.tripRouteStr);
// console.log(abb,'abb'); // console.log(abb,'abb');

View File

@ -12,7 +12,7 @@
<view style="width: 650rpx;margin: 0 auto;"> <view style="width: 650rpx;margin: 0 auto;">
<slider-range :value="rangeValue" :min="rangeMin" :max="rangMax" :step="1" :bar-height="3" <slider-range :value="rangeValue" :min="rangeMin" :max="rangMax" :step="1" :bar-height="3"
:block-size="20" background-color="#EEEEF6" active-color="#4C97E7" :format="format" :block-size="20" background-color="#EEEEF6" active-color="#4C97E7" :format="format"
:decorationVisible="true" @change="handleRangeChange" ></slider-range> :decorationVisible="true" @change="handleRangeChange" @regionchange="onMapRegionChange"></slider-range>
</view> </view>
</view> </view>
@ -24,6 +24,10 @@
<view class="park" @click="toggleIconAndCallout"> <view class="park" @click="toggleIconAndCallout">
<image src="https://lxnapi.ccttiot.com/bike/img/static/uRiYQZQEb3l2LsltEsyW" mode=""></image> <image src="https://lxnapi.ccttiot.com/bike/img/static/uRiYQZQEb3l2LsltEsyW" mode=""></image>
</view> </view>
<view class="park" @click="showdevList=!showdevList" style="bottom: 600rpx;">
<image src=" https://lxnapi.ccttiot.com/bike/img/static/uSMkyrHwO1sybH8diPuF" mode=""></image>
</view>
<view @touchmove.stop.prevent="() => {}"> <view @touchmove.stop.prevent="() => {}">
<view class="btn_box"> <view class="btn_box">
<view class="btn1" @click="qecodelock()"> <view class="btn1" @click="qecodelock()">
@ -133,7 +137,32 @@
</view> --> </view> -->
</view> </view>
</view> </view>
<view class="fixdivce" v-if="nearbyMarkers.length>1&&showdevList">
<view class="scrollable-content">
<view class="divce_li" v-for="(item,index) in nearbyMarkers" :key="index" @click="tapsn(item.sn)">
<view class="left_img">
<image src="https://lxnapi.ccttiot.com/bike/img/static/uEW2Zm3sO8E5eqOf2wwl" mode=""></image>
</view>
<view class="right_cont">
<view class="right_top">
<view class="right_top_left">
<image src=" https://lxnapi.ccttiot.com/bike/img/static/u9pggdTCxcZgUTNsEvXQ" mode="" v-if="item.remainingPower<=39" ></image>
<image src="https://lxnapi.ccttiot.com/bike/img/static/uu1004113wsUShxo11X9" mode="" v-if="item.remainingPower>=40&&item.remainingPower<=69"></image>
<image src="https://lxnapi.ccttiot.com/bike/img/static/uRI1LMpzqfIM060BO7np" mode="" v-if="item.remainingPower>=70&&item.remainingPower<=100"></image>
{{item.remainingPower}}%
</view>
<view class="right_top_right">
状态{{status(item)}}
</view>
</view>
<view class="right_bot">
SN:{{item.sn}}
</view>
</view>
</view>
</view>
</view>
<tab-bar :indexs='1' style=""></tab-bar> <tab-bar :indexs='1' style=""></tab-bar>
</view> </view>
</template> </template>
@ -174,7 +203,9 @@
statusidx: '-0', statusidx: '-0',
deviceNum: {}, deviceNum: {},
areaId: 0, areaId: 0,
showIconAndCallout: false showIconAndCallout: false,
nearbyMarkers: [],
showdevList:false
} }
@ -237,6 +268,25 @@
}, },
}, },
methods: { methods: {
status(item) {
if (item.status == 0) {
return '仓库中'
} else if (item.status == 1) {
return '待租'
} else if (item.status == 2) {
return '预约中'
} else if (item.status == 3) {
return '骑行中'
} else if (item.status == 4) {
return '临时锁车中'
} else if (item.status == 6) {
return '调度中'
} else if (item.status == 7) {
return '未绑定'
} else if (item.status == 8) {
return '禁用中'
}
},
onMapRegionChange(event) { onMapRegionChange(event) {
// console.log('regionchange', event) // console.log('regionchange', event)
// console.log('', event.detail.scale); // console.log('', event.detail.scale);
@ -259,6 +309,27 @@
fail: (err) => {} fail: (err) => {}
}) })
}, },
onMapRegionChange(event) {
// console.log('regionchange', event)
if (event.detail.type == 'end') {
this.getCenterLanLat()
}
//
},
getCenterLanLat() {
let that = this
uni.createMapContext("map", this).getCenterLocation({
type: 'gcj02',
success: (res) => {
// console.log("", res)
// that.deviceGps.latitude = res.latitude;
// that.deviceGps.longitude = res.longitude;
this.getNearbyMarkers(res.latitude, res.longitude);
//
},
fail: (err) => {}
})
},
getareaid() { getareaid() {
this.$u.post('/appVerify/getAreaId').then((res) => { this.$u.post('/appVerify/getAreaId').then((res) => {
if (res.code == 200) { if (res.code == 200) {
@ -296,6 +367,11 @@
}, },
}) })
}, },
tapsn(sn){
uni.navigateTo({
url: '/pages_admin/order/device_detail?id=' + sn
})
},
qecodelock() { qecodelock() {
uni.scanCode({ uni.scanCode({
onlyFromCamera: true, onlyFromCamera: true,
@ -411,6 +487,34 @@
} }
}, },
getNearbyMarkers(clickedLat, clickedLon) {
console.log(clickedLat,clickedLon);
const nearbyMarkers = this.listData.filter(item => {
if (item.latitude && item.longitude) {
const distance = this.haversineDistance(
parseFloat(clickedLat),
parseFloat(clickedLon),
parseFloat(item.latitude),
parseFloat(item.longitude)
);
return distance <= 100;
}
return false;
});
this.nearbyMarkers = nearbyMarkers
console.log('Nearby markers within 15 meters:', nearbyMarkers);
},
haversineDistance(lat1, lon1, lat2, lon2) {
const R = 6371e3; // Earth radius in meters
const toRad = angle => angle * Math.PI / 180;
const dLat = toRad(lat2 - lat1);
const dLon = toRad(lon2 - lon1);
const a = Math.sin(dLat / 2) * Math.sin(dLat / 2) +
Math.cos(toRad(lat1)) * Math.cos(toRad(lat2)) *
Math.sin(dLon / 2) * Math.sin(dLon / 2);
const c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1 - a));
return R * c;
},
todetail() { todetail() {
for (let item of this.fixdata) { for (let item of this.fixdata) {
if (item.sn == this.sn) { if (item.sn == this.sn) {
@ -937,7 +1041,79 @@
.page { .page {
width: 750rpx; width: 750rpx;
.fixdivce {
padding: 12rpx 22rpx 12rpx 22rpx;
position: fixed;
left: 0;
top: 25vh;
width: 334rpx;
height: 460rpx;
background: #FFFFFF;
border-radius: 0 40rpx 40rpx 0;
box-shadow: 0rpx 4rpx 10rpx 0rpx rgba(0, 0, 0, 0.3);
.scrollable-content::-webkit-scrollbar {
display: none;
}
.scrollable-content {
height: 100%;
overflow-y: auto;
.divce_li:last-child {
border-bottom: 1rpx solid #fff;
}
.divce_li {
padding: 10rpx 0;
display: flex;
flex-wrap: nowrap;
align-items: center;
border-bottom: 1rpx solid #D8D8D8;
.left_img {
image {
width: 44rpx;
height: 70rpx;
}
}
.right_cont {
margin-left: 20rpx;
display: flex;
flex-wrap: wrap;
font-weight: 400;
font-size: 24rpx;
color: #3D3D3D;
.right_top {
width: 100%;
display: flex;
flex-wrap: nowrap;
align-items: center;
.right_top_left {
display: flex;
flex-wrap: nowrap;
align-items: center;
image {
margin-right: 6rpx;
width: 12rpx;
height: 26rpx;
}
}
.right_top_right {
margin-left: auto;
}
}
.right_bot {
margin-top: 8rpx;
}
}
}
}
}
.decice_cont { .decice_cont {
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;

View File

@ -187,9 +187,12 @@
<view class="btn" @click="btn(7)"> <view class="btn" @click="btn(7)">
车牌修改 车牌修改
</view> </view>
<view class="btn" @click="btn(8)"> <view class="btn" @click="btn(9)">
坐垫锁 坐垫锁
</view> </view>
<view class="btn" @click="btn(10)">
定位更新
</view>
<!-- <view class="btn" @click="tipshow=true" v-if="info.type==1"> <!-- <view class="btn" @click="tipshow=true" v-if="info.type==1">
维修处理 维修处理
</view> </view>
@ -660,7 +663,7 @@
uni.showLoading({ uni.showLoading({
title:'加载中...' title:'加载中...'
}) })
this.$u.post('/appVerify/device/seatCushionLock?sn=' + this.sn).then((res) => { this.$u.post('/appVerify/device/reboot?sn=' + this.sn).then((res) => {
if (res.code == 200) { if (res.code == 200) {
this.deviceInfo() this.deviceInfo()
uni.showToast({ uni.showToast({
@ -695,6 +698,26 @@
}); });
} }
}) })
}else if (num == 10) {
uni.showLoading({
title:'加载中...'
})
this.$u.post('/appVerify/refreshDevice?sn=' + this.sn).then((res) => {
if (res.code == 200) {
this.deviceInfo()
uni.showToast({
title: '操作成功',
icon: 'none',
duration: 2000
});
} else {
uni.showToast({
title: res.msg,
icon: 'none',
duration: 2000
});
}
})
} }
}, },

View File

@ -55,13 +55,13 @@
网络状态<span style="color: #FF4444;">离线</span> 网络状态<span style="color: #FF4444;">离线</span>
</view> </view>
<view class="half_infoli" v-if="deviceInfos.onlineStatus==1"> <view class="half_infoli" v-if="deviceInfos.onlineStatus==1">
网络状态<span >在线</span> 网络状态<span>在线</span>
</view> </view>
<view class="half_infoli" v-if="deviceInfos.lockStatus==0"> <view class="half_infoli" v-if="deviceInfos.lockStatus==0">
锁状态<span >关锁</span> 锁状态<span>关锁</span>
</view> </view>
<view class="half_infoli" v-if="deviceInfos.lockStatus==1"> <view class="half_infoli" v-if="deviceInfos.lockStatus==1">
锁状态<span >开锁</span> 锁状态<span>开锁</span>
</view> </view>
</view> </view>
<view class="info_li"> <view class="info_li">
@ -85,8 +85,8 @@
</view> </view>
</view> --> </view> -->
<view class="info_li"> <view class="info_li">
</view> </view>
</view> </view>
</view> </view>
@ -121,7 +121,7 @@
</view> </view>
<view class="info_li"> <view class="info_li">
<view class="half_infoli"> <view class="half_infoli">
停车点外调度费<span>{{orderInfo.manageFee}}</span> 停车点外调度费<span>{{orderInfo.manageFee}}</span>
</view> </view>
<view class="half_infoli"> <view class="half_infoli">
@ -132,7 +132,8 @@
实收<span>{{orderInfo.totalFee}}</span> 实收<span>{{orderInfo.totalFee}}</span>
</view> </view>
<view class="info_li"> <view class="info_li">
支付方式<span v-if="orderInfo.payType=='yj'">押金抵扣</span><span v-if="orderInfo.payType=='wx'">微信支付</span> 支付方式<span v-if="orderInfo.payType=='yj'">押金抵扣</span><span
v-if="orderInfo.payType=='wx'">微信支付</span>
</view> </view>
<view class="info_li" v-if="orderInfo.rule" style="display: inline-block;"> <view class="info_li" v-if="orderInfo.rule" style="display: inline-block;">
计费模板<span>{{orderInfo.rule.name}}</span> 计费模板<span>{{orderInfo.rule.name}}</span>
@ -252,7 +253,7 @@
<view class="info_lis" v-if="item.type==4"> <view class="info_lis" v-if="item.type==4">
关锁时间<view class="text">{{ displayAmount(item.createTime)}}</view> 关锁时间<view class="text">{{ displayAmount(item.createTime)}}</view>
</view> </view>
<!-- <view class="info_lis" v-if="item.type==4"> <!-- <view class="info_lis" v-if="item.type==4">
关锁地点<view class="text">{{displayAmount(item.address)}}</view> 关锁地点<view class="text">{{displayAmount(item.address)}}</view>
</view> --> </view> -->
</view> </view>
@ -275,18 +276,18 @@
退款 退款
</view> </view>
</view> --> </view> -->
<view class="bot_btn"> <view class="bot_btn">
<view class="btn" @click="backfee()" v-if='orderInfo.paid==1'> <view class="btn" @click="backfee()" v-if='orderInfo.paid==1'>
退款 退款
</view> </view>
<view class="btn" @click="showfzhc=true" v-if=' orderInfo.status==0||orderInfo.status==2'> <view class="btn" @click="showfzhc=true" v-if=' orderInfo.status==0||orderInfo.status==2'>
辅助还车 辅助还车
</view> </view>
<view class="btn" @click="showgj=true" v-if=' orderInfo.status==1||orderInfo.status==3'> <view class="btn" @click="showgj=true" v-if=' orderInfo.status==1||orderInfo.status==3'>
改价 改价
</view> </view>
<view class="btn" @click="pass()" v-if="orderInfo.status==5"> <view class="btn" @click="pass()" v-if="orderInfo.status==5">
审核通过 审核通过
</view> </view>
@ -299,33 +300,31 @@
<view class="btn" @click="closeBtn()" v-if="orderInfo.status==2"> <view class="btn" @click="closeBtn()" v-if="orderInfo.status==2">
关锁 关锁
</view> </view>
<view class="btn" @click="unpass" v-if="orderInfo.status==5"> <view class="btn" @click="unpass" v-if="orderInfo.status==5">
有损坏 有损坏
</view> </view>
<view class="btn" @click="showck=true" <view class="btn" @click="showck=true" v-if="orderInfo.status==6">
v-if="orderInfo.status==6">
押金扣款 押金扣款
</view> </view>
<view class="btn" @click="backpass()" <view class="btn" @click="backpass()" v-if="orderInfo.status==6">
v-if="orderInfo.status==6">
撤销损坏 撤销损坏
</view> </view>
<view class="btn" @click="callPhone"> <view class="btn" @click="callPhone">
联系客户 联系客户
</view> </view>
</view> </view>
<u-mask :show="showload" :z-index='100' /> <u-mask :show="showload" :z-index='100' />
<u-mask :show="show" :z-index='100' /> <u-mask :show="show" :z-index='100' />
<u-mask :show="showfzhc" @click="show = false" :z-index='100' /> <u-mask :show="showfzhc" @click="show = false" :z-index='100' />
<u-mask :show="showgj" :z-index='100' /> <u-mask :show="showgj" :z-index='100' />
<view class="tip_box1" v-if="showgj"> <view class="tip_box1" v-if="showgj">
<view class="top1"> <view class="top1">
<view class="tip"> <view class="tip">
改价 改价
</view> </view>
<view class="ipt_box"> <view class="ipt_box">
<view class="text"> <view class="text">
运营区外调度费 运营区外调度费
@ -381,7 +380,7 @@
<view class="tip"> <view class="tip">
提示 提示
</view> </view>
<view class="txt"> <view class="txt">
确定要辅助还车吗 确定要辅助还车吗
</view> </view>
@ -413,12 +412,12 @@
</view> </view>
<view class="ipt_box" style="width:100%;margin-top: 6rpx;"> <view class="ipt_box" style="width:100%;margin-top: 6rpx;">
<view class="width:10% ;"> <view class="width:10% ;">
</view> </view>
<view style="color: #ccc;margin-left: auto; font-size: 24rpx;"> <view style="color: #ccc;margin-left: auto; font-size: 24rpx;">
最大可退款金额:{{orderInfo.dispatchFee}} 最大可退款金额:{{orderInfo.dispatchFee}}
</view> </view>
</view> </view>
<view class="ipt_box"> <view class="ipt_box">
<view class="text"> <view class="text">
@ -432,12 +431,12 @@
</view> </view>
<view class="ipt_box" style="width:100%;margin-top: 6rpx;"> <view class="ipt_box" style="width:100%;margin-top: 6rpx;">
<view class="width:10% ;"> <view class="width:10% ;">
</view> </view>
<view style="color: #ccc;margin-left: auto; font-size: 24rpx;"> <view style="color: #ccc;margin-left: auto; font-size: 24rpx;">
最大可退款金额:{{orderInfo.manageFee}} 最大可退款金额:{{orderInfo.manageFee}}
</view> </view>
</view> </view>
<view class="ipt_box"> <view class="ipt_box">
<view class="text"> <view class="text">
@ -451,12 +450,12 @@
</view> </view>
<view class="ipt_box" style="width:100%;margin-top: 6rpx;"> <view class="ipt_box" style="width:100%;margin-top: 6rpx;">
<view class="width:10% ;"> <view class="width:10% ;">
</view> </view>
<view style="color: #ccc;margin-left: auto; font-size: 24rpx;"> <view style="color: #ccc;margin-left: auto; font-size: 24rpx;">
最大可退款金额:{{orderInfo.ridingFee}} 最大可退款金额:{{orderInfo.ridingFee}}
</view> </view>
</view> </view>
<view class="ipt_box"> <view class="ipt_box">
<view class="text"> <view class="text">
@ -470,12 +469,12 @@
</view> </view>
<view class="ipt_box" style="width:100%;margin-top: 6rpx;"> <view class="ipt_box" style="width:100%;margin-top: 6rpx;">
<view class="width:10% ;"> <view class="width:10% ;">
</view> </view>
<view style="color: #ccc;margin-left: auto; font-size: 24rpx;"> <view style="color: #ccc;margin-left: auto; font-size: 24rpx;">
最大可退款金额:{{orderInfo.appointmentFee}} 最大可退款金额:{{orderInfo.appointmentFee}}
</view> </view>
</view> </view>
<view class="ipt_box"> <view class="ipt_box">
<view class="text"> <view class="text">
@ -560,14 +559,14 @@
showck: false, showck: false,
money: '', money: '',
areaNum: 1, areaNum: 1,
showload:false, showload: false,
showfzhc:false, showfzhc: false,
showgj:false, showgj: false,
deviceInfos:{}, deviceInfos: {},
dispatchFee:0, dispatchFee: 0,
manageFee:0, manageFee: 0,
ridingFee:0, ridingFee: 0,
appointmentFee:0, appointmentFee: 0,
} }
}, },
@ -619,17 +618,17 @@
}, },
methods: { methods: {
backpass(){ backpass() {
this.showload=true this.showload = true
uni.showLoading({ uni.showLoading({
title:'加载中...' title: '加载中...'
}) })
let data = { let data = {
orderNo: this.orderId, orderNo: this.orderId,
"status": "5" "status": "5"
} }
this.$u.put("/appVerify/order/damaged", data).then((res) => { this.$u.put("/appVerify/order/damaged", data).then((res) => {
this.showload=false this.showload = false
if (res.code === 200) { if (res.code === 200) {
uni.hideLoading() uni.hideLoading()
// 线 // 线
@ -654,7 +653,7 @@
// if (this.deviceInfos.onlineStatus == 0) { // if (this.deviceInfos.onlineStatus == 0) {
// return '线' // return '线'
// } else { // } else {
// } // }
if (this.deviceInfos.status == 0) { if (this.deviceInfos.status == 0) {
return '仓库中' return '仓库中'
@ -666,24 +665,24 @@
return '骑行中' return '骑行中'
} else if (this.deviceInfos.status == 4) { } else if (this.deviceInfos.status == 4) {
return '临时锁车中' return '临时锁车中'
}else if (this.deviceInfos.status == 6) { } else if (this.deviceInfos.status == 6) {
return '调度中' return '调度中'
} else if (this.deviceInfos.status == 8) { } else if (this.deviceInfos.status == 8) {
return '下线' return '下线'
} }
}, },
deviceInfo() { deviceInfo() {
this.$u.get('/app/device/info?sn=' + this.orderInfo.sn).then((res) => { this.$u.get('/app/device/info?sn=' + this.orderInfo.sn).then((res) => {
console.log(res,'rererer'); console.log(res, 'rererer');
if (res.code === 200) { if (res.code === 200) {
this.deviceInfos = res.data this.deviceInfos = res.data
this.$forceUpdate() this.$forceUpdate()
}else{ } else {
uni.showToast({ uni.showToast({
title: res.msg, title: res.msg,
icon: 'none', icon: 'none',
@ -693,21 +692,21 @@
}) })
}, },
// //
openBtn(){ openBtn() {
uni.showLoading({ uni.showLoading({
title:'加载中...' title: '加载中...'
}) })
this.$u.post('/appVerify/admin/unlocking?sn=' + this.orderInfo.sn).then((res) => { this.$u.post('/appVerify/admin/unlocking?sn=' + this.orderInfo.sn).then((res) => {
if (res.code == 200) { if (res.code == 200) {
// 线 // 线
uni.showToast({ uni.showToast({
title: '操作成功', title: '操作成功',
icon: 'none', icon: 'none',
duration: 2000 duration: 2000
}); });
}else{ } else {
uni.showToast({ uni.showToast({
title: res.msg, title: res.msg,
icon: 'none', icon: 'none',
@ -719,20 +718,20 @@
}); });
}, },
// //
closeBtn(){ closeBtn() {
uni.showLoading({ uni.showLoading({
title:'加载中...' title: '加载中...'
}) })
this.$u.post('/appVerify/admin/lock?sn=' + this.orderInfo.sn).then((res) => { this.$u.post('/appVerify/admin/lock?sn=' + this.orderInfo.sn).then((res) => {
if (res.code == 200) { if (res.code == 200) {
// 线 // 线
uni.showToast({ uni.showToast({
title: '操作成功', title: '操作成功',
icon: 'none', icon: 'none',
duration: 2000 duration: 2000
}); });
}else{ } else {
uni.showToast({ uni.showToast({
title: res.msg, title: res.msg,
icon: 'none', icon: 'none',
@ -744,24 +743,24 @@
}); });
}, },
// //
yjdkBtn(){ yjdkBtn() {
uni.showLoading({ uni.showLoading({
title:'加载中' title: '加载中'
}) })
let data = { let data = {
orderNo: this.orderInfo.orderNo, orderNo: this.orderInfo.orderNo,
} }
this.$u.post('/appVerify/order/deduction', data).then((res) => { this.$u.post('/appVerify/order/deduction', data).then((res) => {
if (res.code === 200) { if (res.code === 200) {
// 线 // 线
uni.showToast({ uni.showToast({
title: '操作成功', title: '操作成功',
icon: 'none', icon: 'none',
duration: 2000 duration: 2000
}); });
this.getOrderDetail() this.getOrderDetail()
} else { } else {
uni.showToast({ uni.showToast({
@ -777,7 +776,7 @@
// //
changeMoney() { changeMoney() {
uni.showLoading({ uni.showLoading({
title:'加载中' title: '加载中'
}) })
let data = { let data = {
orderNo: this.orderInfo.orderNo, orderNo: this.orderInfo.orderNo,
@ -786,11 +785,11 @@
ridingFee: this.orderInfo.ridingFee, ridingFee: this.orderInfo.ridingFee,
appointmentFee: this.orderInfo.appointmentFee, appointmentFee: this.orderInfo.appointmentFee,
} }
this.$u.put('/appVerify/order/editPrice', data).then((res) => { this.$u.put('/appVerify/order/editPrice', data).then((res) => {
if (res.code === 200) { if (res.code === 200) {
// 线 // 线
this.showgj = false this.showgj = false
this.getOrderDetail() this.getOrderDetail()
uni.showToast({ uni.showToast({
@ -816,7 +815,7 @@
}, },
backDevice() { backDevice() {
uni.showLoading({ uni.showLoading({
title:'加载中' title: '加载中'
}) })
this.$u.post('/appVerify/device/return?orderNo=' + this.orderInfo.orderNo + '&returnType=2').then(( this.$u.post('/appVerify/device/return?orderNo=' + this.orderInfo.orderNo + '&returnType=2').then((
res) => { res) => {
@ -843,10 +842,10 @@
}, },
ckmoney() { ckmoney() {
uni.showLoading({ uni.showLoading({
title:'加载中...' title: '加载中...'
}) })
this.showload=true this.showload = true
if (this.money != '') { if (this.money != '') {
let data = { let data = {
orderNo: this.orderId, orderNo: this.orderId,
@ -855,7 +854,7 @@
audioFiles: '' audioFiles: ''
} }
this.$u.put("/appVerify/order/submitAudit", data).then((res) => { this.$u.put("/appVerify/order/submitAudit", data).then((res) => {
this.showload=false this.showload = false
uni.hideLoading() uni.hideLoading()
if (res.code === 200) { if (res.code === 200) {
// 线 // 线
@ -887,16 +886,16 @@
}, },
unpass() { unpass() {
this.showload=true this.showload = true
uni.showLoading({ uni.showLoading({
title:'加载中...' title: '加载中...'
}) })
let data = { let data = {
orderNo: this.orderId, orderNo: this.orderId,
"status": "6" "status": "6"
} }
this.$u.put("/appVerify/order/damaged", data).then((res) => { this.$u.put("/appVerify/order/damaged", data).then((res) => {
this.showload=false this.showload = false
if (res.code === 200) { if (res.code === 200) {
uni.hideLoading() uni.hideLoading()
// 线 // 线
@ -918,13 +917,13 @@
}); });
}, },
pass() { pass() {
this.showload=true this.showload = true
uni.showLoading({ uni.showLoading({
title:'加载中...' title: '加载中...'
}) })
this.$u.post("/appVerify/passAudit/" + this.orderId).then((res) => { this.$u.post("/appVerify/passAudit/" + this.orderId).then((res) => {
uni.hideLoading() uni.hideLoading()
this.showload=false this.showload = false
if (res.code === 200) { if (res.code === 200) {
// 线 // 线
this.getOrderDetail() this.getOrderDetail()
@ -1246,18 +1245,18 @@
// reason: this.reason // reason: this.reason
} }
if ( if (
data.dispatchFee > this.orderInfo.dispatchFee || data.dispatchFee > this.orderInfo.dispatchFee ||
data.manageFee > this.orderInfo.manageFee || data.manageFee > this.orderInfo.manageFee ||
data.ridingFee > this.orderInfo.ridingFee || data.ridingFee > this.orderInfo.ridingFee ||
data.appointmentFee > this.orderInfo.appointmentFee data.appointmentFee > this.orderInfo.appointmentFee
) { ) {
uni.showToast({ uni.showToast({
title: '退款金额不能大于实际支付金额', title: '退款金额不能大于实际支付金额',
icon: 'none', icon: 'none',
duration: 2000 duration: 2000
}); });
return; // return; //
} }
this.$u.put('/appVerify/order/refund', data).then((res) => { this.$u.put('/appVerify/order/refund', data).then((res) => {
if (res.code === 200) { if (res.code === 200) {
// 线 // 线
@ -1284,20 +1283,68 @@
this.areaNum = this.areaNum + 1 this.areaNum = this.areaNum + 1
if (this.areaNum != 0) { if (this.areaNum != 0) {
this.getArea() this.getArea()
} }
this.deviceInfo() this.deviceInfo()
this.loading = true this.loading = true
this.latitude = parseFloat(this.orderInfo.latitude) this.latitude = parseFloat(this.orderInfo.latitude)
this.longitude = parseFloat(this.orderInfo.longitude) this.longitude = parseFloat(this.orderInfo.longitude)
this.polyline[0].points = JSON.parse(res.data.tripRouteStr).map(coord => ({ this.getpolyline()
// this.polyline[0].points = JSON.parse(res.data.tripRouteStr).map(coord => ({
// latitude: coord[1],
// longitude: coord[0]
// }));
// let abb;
// try {
// abb = JSON.parse(res.data.tripRouteStr);
// } catch (error) {
// console.error("Error parsing tripRouteStr:", error);
// return;
// }
// if (abb.length > 2) {
// this.latitude = parseFloat(abb[0][1]);
// this.longitude = parseFloat(abb[0][0]);
// this.polyline[0].points = abb.map(coord => ({
// latitude: coord[1],
// longitude: coord[0]
// }));
// this.markers.push({
// id: 0,
// latitude: abb[0][1],
// longitude: abb[0][0],
// width: 25,
// height: 38,
// iconPath: 'https://lxnapi.ccttiot.com/bike/img/static/u06paUGiHLvL08Pw7BGr'
// }, {
// id: 1,
// latitude: abb[abb.length - 1][1],
// longitude: abb[abb.length - 1][0],
// width: 25,
// height: 38,
// iconPath: 'https://lxnapi.ccttiot.com/bike/img/static/uwpAj9vYtPRmhtTOtflx'
// });
// }
}
// console.log(points,'');
// this.polyline[0].points=points
}).catch(error => {
console.error("Error fetching area data:", error);
});
},
getpolyline() {
this.$u.post("/system/device/trajectoryByOrderNo?orderNo=" + this.orderId).then((res) => {
if (res.code === 200) {
this.polyline[0].points = JSON.parse(res.data).map(coord => ({
latitude: coord[1], latitude: coord[1],
longitude: coord[0] longitude: coord[0]
})); }));
let abb; let abb;
try { try {
abb = JSON.parse(res.data.tripRouteStr); abb = JSON.parse(res.data);
console.log(abb,'abbbb');
} catch (error) { } catch (error) {
console.error("Error parsing tripRouteStr:", error); console.error("Error parsing tripRouteStr:", error);
return; return;
@ -1326,12 +1373,11 @@
}); });
} }
} }
// console.log(points,'');
// this.polyline[0].points=points
}).catch(error => { }).catch(error => {
console.error("Error fetching area data:", error); console.error("Error fetching area data:", error);
}); });
} }
} }
} }
@ -1346,8 +1392,9 @@
.page { .page {
padding-bottom: 200rpx; padding-bottom: 200rpx;
width: 750rpx; width: 750rpx;
.bot_btn { .bot_btn {
position: fixed; position: fixed;
bottom: 0; bottom: 0;
display: flex; display: flex;
@ -1359,11 +1406,12 @@
// background: linear-gradient( 180deg, #FFFFFF 0%, rgba(255,255,255,0) 100%); // background: linear-gradient( 180deg, #FFFFFF 0%, rgba(255,255,255,0) 100%);
box-shadow: 0rpx 10rpx 64rpx 0rpx rgba(0, 0, 0, 0.08); box-shadow: 0rpx 10rpx 64rpx 0rpx rgba(0, 0, 0, 0.08);
border-radius: 0rpx 0rpx 0rpx 0rpx; border-radius: 0rpx 0rpx 0rpx 0rpx;
// padding-bottom: 40rpx; // padding-bottom: 40rpx;
.btn:nth-child(4n) { .btn:nth-child(4n) {
margin-right: 0; margin-right: 0;
} }
.btn { .btn {
margin-top: 10rpx; margin-top: 10rpx;
margin-right: 18rpx; margin-right: 18rpx;
@ -1381,6 +1429,7 @@
color: #3D3D3D; color: #3D3D3D;
} }
} }
.tip_box1 { .tip_box1 {
position: fixed; position: fixed;
left: 72rpx; left: 72rpx;
@ -1391,23 +1440,23 @@
border-radius: 30rpx 30rpx 30rpx 30rpx; border-radius: 30rpx 30rpx 30rpx 30rpx;
z-index: 110; z-index: 110;
padding-bottom: 100rpx; padding-bottom: 100rpx;
.top1 { .top1 {
padding: 52rpx 38rpx 42rpx 36rpx; padding: 52rpx 38rpx 42rpx 36rpx;
.ipt_box { .ipt_box {
margin-top: 22rpx; margin-top: 22rpx;
display: flex; display: flex;
flex-wrap: nowrap; flex-wrap: nowrap;
align-items: center; align-items: center;
.text { .text {
width: 350rpx; width: 350rpx;
font-weight: 400; font-weight: 400;
font-size: 32rpx; font-size: 32rpx;
color: #3D3D3D; color: #3D3D3D;
} }
.ipt { .ipt {
padding: 10rpx 18rpx; padding: 10rpx 18rpx;
display: flex; display: flex;
@ -1418,13 +1467,13 @@
height: 64rpx; height: 64rpx;
border-radius: 0rpx 0rpx 0rpx 0rpx; border-radius: 0rpx 0rpx 0rpx 0rpx;
border: 2rpx solid #979797; border: 2rpx solid #979797;
.input { .input {
width: 80%; width: 80%;
} }
} }
} }
.tip { .tip {
width: 100%; width: 100%;
text-align: center; text-align: center;
@ -1432,7 +1481,7 @@
font-size: 32rpx; font-size: 32rpx;
color: #3D3D3D; color: #3D3D3D;
} }
.txt { .txt {
margin-top: 32rpx; margin-top: 32rpx;
width: 100%; width: 100%;
@ -1442,17 +1491,17 @@
color: #3D3D3D; color: #3D3D3D;
} }
} }
.bot1 { .bot1 {
position: absolute; position: absolute;
width: 610rpx; width: 610rpx;
// border-top: 2rpx solid #D8D8D8; // border-top: 2rpx solid #D8D8D8;
display: flex; display: flex;
flex-wrap: nowrap; flex-wrap: nowrap;
// height: 100%; // height: 100%;
bottom: -20rpx; bottom: -20rpx;
.bot_left { .bot_left {
border-radius: 0rpx 0rpx 0rpx 30rpx; border-radius: 0rpx 0rpx 0rpx 30rpx;
width: 50%; width: 50%;
@ -1465,7 +1514,7 @@
color: #3D3D3D; color: #3D3D3D;
background: #EEEEEE; background: #EEEEEE;
} }
.bot_right { .bot_right {
border-radius: 0rpx 0rpx 30rpx 0rpx; border-radius: 0rpx 0rpx 30rpx 0rpx;
width: 50%; width: 50%;
@ -1479,12 +1528,12 @@
font-weight: 500; font-weight: 500;
font-size: 32rpx; font-size: 32rpx;
// color: #4C97E7; // color: #4C97E7;
} }
} }
} }
.tip_box { .tip_box {
position: fixed; position: fixed;
left: 72rpx; left: 72rpx;

View File

@ -389,6 +389,8 @@
return '骑行中' return '骑行中'
} else if (item.status == 4) { } else if (item.status == 4) {
return '临时锁车中' return '临时锁车中'
} else if (item.status == 6) {
return '调度中'
} else if (item.status == 7) { } else if (item.status == 7) {
return '未绑定' return '未绑定'
} else if (item.status == 8) { } else if (item.status == 8) {