This commit is contained in:
Sliverber 2024-06-03 18:06:08 +08:00
parent 55f3974337
commit 00cb6ab410
21 changed files with 764 additions and 368 deletions

View File

@ -98,7 +98,7 @@
.cont { .cont {
position: fixed; position: fixed;
// left: 60rpx; // left: 60rpx;
bottom: 10rpx; bottom: 0rpx;
width: 750rpx; width: 750rpx;
height: 118rpx; height: 118rpx;
background: #FFFFFF; background: #FFFFFF;

View File

@ -1,6 +1,6 @@
<template> <template>
<view class="page"> <view class="page">
<u-navbar title="编号开锁" :border-bottom="false" :background="bgc" title-color='#000' title-size='36'height='36'></u-navbar> <u-navbar title="编号开锁" :border-bottom="false" :background="bgc" title-color='#000' title-size='36'height='40'></u-navbar>
<view class="cont"> <view class="cont">
<view class="tit"> <view class="tit">
输入编号开锁 输入编号开锁
@ -10,7 +10,7 @@
</view> </view>
<view class="ipt"> <view class="ipt">
<input type="text" class="ips" v-model="code" placeholder="请输入车辆二维码下方编号" placeholder-style='font-weight: 400;font-size: 36rpx;color: #808080;' /> <input type="text" class="ips" v-model="sn" placeholder="请输入车辆二维码下方编号" placeholder-style='font-weight: 400;font-size: 36rpx;color: #808080;' />
</view> </view>
<view class="btn" @click="sub"> <view class="btn" @click="sub">
确认开锁 确认开锁
@ -27,21 +27,84 @@
bgc: { bgc: {
backgroundColor: "#fff", backgroundColor: "#fff",
}, },
code:'' sn:''
} }
}, },
methods: { methods: {
sub(){ sub(){
if(this.code==''){ if(this.sn==''){
uni.showToast({ uni.showToast({
title: '请输入设备编号', title: '请输入设备编号',
icon: 'none', icon: 'none',
duration: 2000 duration: 2000
}); });
}else{ }else{
uni.navigateTo({ let that = this
url:'/pages/index/index?sn='+this.code if(uni.getStorageSync('token')){
}) this.$u.get('/app/device/info?sn=' + this.sn).then((res) => {
if (res.code === 200) {
uni.navigateTo({
url:'/pages/index/index?sn='+this.code
})
}else{
uni.showToast({
title: res.msg,
icon: 'none',
duration: 2000
});
}
})
}else{
wx.login({
success(res) {
if (res.code) {
console.log('登录!', res);
let data = {
wxOpenId: res.code,
};
let areaId=uni.getStorageSync('areaId');
that.$u.post('/loginByopenid?jsCode='+res.code+'&areaId='+areaId).then(res=>{
uni.hideLoading();
if (res.code == 200) {
uni.setStorageSync('token', res.token);
that.$u.get('/app/device/info?sn=' + that.sn).then((res) => {
if (res.code === 200) {
uni.navigateTo({
url:'/pages/index/index?sn='+this.code
})
}else{
uni.showToast({
title: res.msg,
icon: 'none',
duration: 2000
});
}
})
}else if(res.code == 501){
uni.showToast({
title: res.msg,
icon: 'none',
duration: 2000
});
}else {
// console.log("",res.data)
uni.redirectTo({
url:'/pages/login/login'
})
}
});
}
},
});
}
} }
} }
} }

View File

@ -1,6 +1,6 @@
<template> <template>
<view class="page"> <view class="page">
<u-navbar title="费用明细" :border-bottom="false" :background="bgc" title-color='#fff' title-size='36' height='36'></u-navbar> <u-navbar title="费用明细" :border-bottom="false" :background="bgc" title-color='#fff' title-size='36' height='40'></u-navbar>
<view class="tit"> <view class="tit">
<view class="left">电单车</view> <view class="left">电单车</view>
<!-- <view class="right">查看计费规则 ></view> --> <!-- <view class="right">查看计费规则 ></view> -->
@ -160,3 +160,140 @@
} }
} }
</script> </script>
<style lang="scss" >
page{
background-color: #F7FAFE;
}
.page{
// width: 750rpx;
width: 750rpx;
// height: 530rpx;
background: linear-gradient( 180deg, #4C97E7 0.1%, rgba(255,255,255,0) 40%), #FFFFFF;
border-radius: 0rpx 0rpx 0rpx 0rpx;
.tit{
margin-left: 86rpx;
margin-right: 86rpx;
margin-top: 30rpx;
display: flex;
flex-wrap: nowrap;
justify-content: space-between;
align-items: center;
.left{
font-weight: 700;
font-size: 40rpx;
color: #3D3D3D;
}
.right{
font-weight: 400;
font-size: 24rpx;
color: #3D3D3D;
}
}
.data{
margin-left: 86rpx;
font-weight: 400;
font-size: 24rpx;
color: #808080;
}
.card{
padding:34rpx 44rpx ;
margin: 68rpx auto;
width: 672rpx;
// height: 458rpx;
background: #FFFFFF;
box-shadow: 0rpx 10rpx 64rpx 0rpx rgba(0,0,0,0.08);
border-radius: 32rpx 32rpx 32rpx 32rpx;
.card_tit{
width: 112rpx;
height: 38rpx;
font-family: AlibabaPuHuiTi, AlibabaPuHuiTi;
font-weight: 400;
font-size: 28rpx;
color: #3D3D3D;
background: linear-gradient( 0deg, #B1C3FF 0.1%, rgba(255,255,255,0) 40%), #FFFFFF;
}
.cont{
padding: 32rpx 28rpx;
margin-top: 26rpx;
width: 586rpx;
// height: 228rpx;
background: #F3F3F3;
border-radius: 26rpx 26rpx 26rpx 26rpx;
.cont_box{
display: flex;
flex-wrap: nowrap;
justify-content: space-between;
.cont_left{
font-weight: 400;
font-size: 28rpx;
color: #3D3D3D;
}
.cont_right{
font-weight: 400;
font-size: 28rpx;
color: #3D3D3D;
}
}
.tip{
margin-top: 32rpx;
font-weight: 400;
font-size: 24rpx;
color: #808080;
}
}
.price{
margin-top: 28rpx;
display: flex;
flex-wrap: nowrap;
.prices{
margin-left: auto;
font-weight: 400;
font-size: 24rpx;
color: #3D3D3D;
span{
margin-left: 2rpx;
margin-right: 2rpx;
}
}
.showmore{
margin-left: auto;
display: flex;
flex-wrap: nowrap;
align-items: center;
font-weight: 400;
font-size: 20rpx;
color: #3D3D3D;
.icon-xiangshang1{
font-size: 20rpx;
color: #3D3D3D;
}
.icon-xiangxia1{
font-size: 20rpx;
color: #3D3D3D;
}
}
}
.info_cont{
margin-top: 12rpx;
display: flex;
flex-wrap: nowrap;
align-items: center;
justify-content: space-between;
.cont_left{
font-weight: 400;
font-size: 24rpx;
color: #3D3D3D;
}
.cont_right{
font-weight: 400;
font-size: 24rpx;
color: #3D3D3D;
}
}
}
}
</style>

View File

@ -1,7 +1,7 @@
<template> <template>
<view class="page"> <view class="page">
<u-navbar title="查看停车点" :border-bottom="false" :background="bgc" title-color='#2E4975' title-size='36' <u-navbar title="查看停车点" :border-bottom="false" :background="bgc" title-color='#2E4975' title-size='36'
height='36'></u-navbar> height='40'></u-navbar>
<map class="map" id="map" ref="map" :scale="zoomSize" :latitude="latitude" :longitude="longitude" <map class="map" id="map" ref="map" :scale="zoomSize" :latitude="latitude" :longitude="longitude"
:show-location='true' :polygons='polygons' :markers="markers" :polyline="polyline"></map> :show-location='true' :polygons='polygons' :markers="markers" :polyline="polyline"></map>
<view class="bottom_box"> <view class="bottom_box">

View File

@ -1,7 +1,7 @@
<template> <template>
<view class="page"> <view class="page">
<u-navbar title="编号开锁" :border-bottom="false" :background="bgc" title-color='#2E4975' title-size='36' <u-navbar title="编号开锁" :border-bottom="false" :background="bgc" title-color='#2E4975' title-size='36'
height='36'></u-navbar> height='40'></u-navbar>
<map class="map" id="map" ref="map" :scale="zoomSize" :latitude="latitude" :longitude="longitude" <map class="map" id="map" ref="map" :scale="zoomSize" :latitude="latitude" :longitude="longitude"
:show-location='true' :polygons='polygons' :markers="markers" :polyline="polyline"> :show-location='true' :polygons='polygons' :markers="markers" :polyline="polyline">
</view> </view>

View File

@ -1,7 +1,7 @@
<template> <template>
<view class="page"> <view class="page">
<u-navbar title="我的订单" :border-bottom="false" :background="bgc" title-color='#000' title-size='36' <u-navbar title="我的订单" :border-bottom="false" :background="bgc" title-color='#000' title-size='36'
height='36'></u-navbar> height='40'></u-navbar>
<view class="card" v-for="(item, index) in computedList" :key="index"> <view class="card" v-for="(item, index) in computedList" :key="index">
<view class="top_li"> <view class="top_li">
<view class="left"> <view class="left">
@ -12,7 +12,7 @@
</view> </view>
</view> </view>
<view class="info"> <view class="info">
时间{{ item.payTime }} 时间{{ item.createTime }}
</view> </view>
<view class="info"> <view class="info">
时长{{ item.duration }} 时长{{ item.duration }}

View File

@ -1,7 +1,7 @@
<template> <template>
<view class="page"> <view class="page">
<u-navbar title="故障上报" :border-bottom="false" :background="bgc" title-color='#000' title-size='36' <u-navbar title="故障上报" :border-bottom="false" :background="bgc" title-color='#000' title-size='36'
height='36'></u-navbar> height='40'></u-navbar>
<view class="cardbox"> <view class="cardbox">
<view class="tip"> <view class="tip">
<view class="ipnt">*</view>故障车编号 <view class="ipnt">*</view>故障车编号
@ -290,7 +290,7 @@
btn() { btn() {
let _this = this let _this = this
let math = 'static/' + _this.$u.guid(20) let math = 'static/' + _this.$u.guid(20)
uni.chooseMessageFile({ uni.chooseImage({
count: 9, count: 9,
type: 'all', type: 'all',
success(res) { success(res) {

View File

@ -1,7 +1,7 @@
<template> <template>
<view class="page"> <view class="page">
<u-navbar title="认证" :border-bottom="false" :background="bgc" title-color='#000' title-size='36' <u-navbar title="认证" :border-bottom="false" :background="bgc" title-color='#000' title-size='36'
height='36'></u-navbar> height='40'></u-navbar>
<view class="ipt_box"> <view class="ipt_box">
<view class="li"> <view class="li">
<view class="left"> <view class="left">
@ -75,7 +75,9 @@
}; };
this.$u.get('/appVerify/user/authentication?', data).then((res) => { this.$u.get('/appVerify/user/authentication?', data).then((res) => {
if (res.code === 200) { if (res.code === 200) {
this.getisInOrder() uni.navigateBack({
delta: 1 // delta1
});
} else { } else {
uni.showToast({ uni.showToast({
title: res.msg, title: res.msg,

View File

@ -1,7 +1,7 @@
<template> <template>
<view class="page"> <view class="page">
<u-navbar title="计费规则" :border-bottom="false" :background="bgc" title-color='#000' title-size='36' <u-navbar title="计费规则" :border-bottom="false" :background="bgc" title-color='#000' title-size='36'
height='36'></u-navbar> height='40'></u-navbar>
<view class="cont" style="margin-top: 50rpx;"> <view class="cont" style="margin-top: 50rpx;">
<view class="tit" style="margin-top: 50rpx;"> <view class="tit" style="margin-top: 50rpx;">
骑行服务费 骑行服务费

View File

@ -1,7 +1,7 @@
<template> <template>
<view class="page"> <view class="page">
<u-navbar title="开锁" :border-bottom="false" :background="bgc" title-color='#2E4975' title-size='36' <u-navbar title="开锁" :border-bottom="false" :background="bgc" title-color='#2E4975' title-size='36'
height='36'></u-navbar> height='40'></u-navbar>
<map class="map" id="map" ref="map" :scale="zoomSize" :latitude="latitude" :longitude="longitude" <map class="map" id="map" ref="map" :scale="zoomSize" :latitude="latitude" :longitude="longitude"
:show-location='true' :polygons='polygons' :markers="markers" :polyline="polyline"></map> :show-location='true' :polygons='polygons' :markers="markers" :polyline="polyline"></map>
<view class="bot_btn"> <view class="bot_btn">

View File

@ -1,7 +1,7 @@
<template> <template>
<view class="page"> <view class="page">
<u-navbar title="确认开锁" :border-bottom="false" :background="bgc" title-color='#2E4975' title-size='36' <u-navbar title="确认开锁" :border-bottom="false" :background="bgc" title-color='#2E4975' title-size='36'
height='36'></u-navbar> height='40'></u-navbar>
<map class="map" id="map" ref="map" :scale="zoomSize" :latitude="latitude" :longitude="longitude" <map class="map" id="map" ref="map" :scale="zoomSize" :latitude="latitude" :longitude="longitude"
:show-location='true' :polygons='polygons' :markers="markers" :polyline="polyline"></map> :show-location='true' :polygons='polygons' :markers="markers" :polyline="polyline"></map>
<view class="bot_btn"> <view class="bot_btn">

View File

@ -1,7 +1,7 @@
<template> <template>
<view class="page"> <view class="page">
<u-navbar title="问题上报详情" :border-bottom="false" :background="bgc" title-color='#000' title-size='36' <u-navbar title="问题上报详情" :border-bottom="false" :background="bgc" title-color='#000' title-size='36'
height='36'></u-navbar> height='40'></u-navbar>
<view class="cont"> <view class="cont">
<view class="cont_top"> <view class="cont_top">
<view class="tit"> <view class="tit">

View File

@ -1,7 +1,7 @@
<template> <template>
<view class="page"> <view class="page">
<u-navbar title="问题上报记录" :border-bottom="false" :background="bgc" title-color='#000' title-size='36' <u-navbar title="问题上报记录" :border-bottom="false" :background="bgc" title-color='#000' title-size='36'
height='36'></u-navbar> height='40'></u-navbar>
<view class="card" v-for="(item,index) in list" :key="index" @click="topage(item)" v-if="list.length>=0"> <view class="card" v-for="(item,index) in list" :key="index" @click="topage(item)" v-if="list.length>=0">
<view class="top_li"> <view class="top_li">
<view class="left"> <view class="left">
@ -11,8 +11,10 @@
处理完成 <view class="iconfont icon-xiangyou1"></view> 处理完成 <view class="iconfont icon-xiangyou1"></view>
</view> </view>
</view> </view>
<view class="info" v-if="!item.address">
<view class="info"> 反馈地点--
</view>
<view class="info" v-if="item.address">
反馈地点{{item.address}} 反馈地点{{item.address}}
</view> </view>

View File

@ -1,7 +1,7 @@
<template> <template>
<view class="page"> <view class="page">
<u-navbar title="行程结束" :border-bottom="false" :background="bgc" title-color='#2E4975' title-size='36' <u-navbar title="行程结束" :border-bottom="false" :background="bgc" title-color='#2E4975' title-size='36'
height='36'></u-navbar> height='40'></u-navbar>
<map class="map" id="map" ref="map" :scale="zoomSize" :latitude="latitude" :longitude="longitude" <map class="map" id="map" ref="map" :scale="zoomSize" :latitude="latitude" :longitude="longitude"
:show-location='true' :polygons='polygons' :markers="markers" :polyline="polyline"></map> :show-location='true' :polygons='polygons' :markers="markers" :polyline="polyline"></map>
<view class="bot_btn" v-if="false"> <view class="bot_btn" v-if="false">

View File

@ -1,7 +1,7 @@
<template> <template>
<view class="page"> <view class="page">
<u-navbar title="用车指南" :border-bottom="false" :background="bgc" title-color='#000' title-size='36' <u-navbar title="用车指南" :border-bottom="false" :background="bgc" title-color='#000' title-size='36'
height='36'></u-navbar> height='40'></u-navbar>
<view class="cont"> <view class="cont">
<view class="tit"> <view class="tit">
请在运营区内骑行否则将断电 请在运营区内骑行否则将断电

View File

@ -1,7 +1,7 @@
<template> <template>
<view class="page"> <view class="page">
<u-navbar title="押金" :border-bottom="false" :background="bgc" title-color='#000' title-size='36' <u-navbar title="押金" :border-bottom="false" :background="bgc" title-color='#000' title-size='36'
height='36'></u-navbar> height='40'></u-navbar>
<view class="norecord" v-if="userinfo.balance==0"> <view class="norecord" v-if="userinfo.balance==0">
<view class="card"> <view class="card">
<view class="tit">充值押金</view> <view class="tit">充值押金</view>
@ -124,7 +124,7 @@
data() { data() {
return { return {
bgc: { bgc: {
backgroundColor: "#7bb2ec", backgroundColor: "#F7FAFE",
}, },
show: false, show: false,
bindDeviceNum: null, bindDeviceNum: null,
@ -221,13 +221,15 @@
}); });
}, },
sub4() { sub4() {
let id = uni.getStorageSync('areaId');
let data = { let data = {
userId: this.userId, userId: this.userId,
// ruleId: this.freeInfo.ruleId, // ruleId: this.freeInfo.ruleId,
money: this.areaInfo.deposit, money: this.areaInfo.deposit,
mark: "押金充值", mark: "押金充值",
type: '4' type: '4',
areaId:this.areaId
} }

File diff suppressed because it is too large Load Diff

View File

@ -1,20 +1,28 @@
<template> <template>
<view class="page"> <view class="page" >
<u-navbar title="地图" :is-back='false' :border-bottom="false" :background="bgc" title-color='#2E4975' <u-navbar title="地图" :is-back='false' :border-bottom="false" :background="bgc" title-color='#2E4975'
title-size='36' height='36'></u-navbar> title-size='36' height='36'></u-navbar>
<view @touchmove.stop.prevent="() => {}">
<view class="slider"> <view class="slider">
<view class="tit"> <view class="tit">
电量区间 电量区间
</view> </view>
<slider-range :value="rangeValue" :min="rangeMin" :max="rangMax" :step="1" :bar-height="3" :block-size="20" <view style="width: 650rpx;">
background-color="#EEEEF6" active-color="#4C97E7" :format="format" :decorationVisible="true" <slider-range :value="rangeValue" :min="rangeMin" :max="rangMax" :step="1" :bar-height="3" :block-size="20"
@change="handleRangeChange"></slider-range> background-color="#EEEEF6" active-color="#4C97E7" :format="format" :decorationVisible="true"
@change="handleRangeChange"></slider-range>
</view>
</view>
</view> </view>
<map class="map" id="map" ref="map" :scale="zoomSize" :latitude="latitude" :longitude="longitude" <map class="map" id="map" ref="map" :scale="zoomSize" :latitude="latitude" :longitude="longitude"
:show-location="true" :markers="markers" :polygons="polyline" @markertap="onMarkerTap" > :show-location="true" :markers="markers" :polygons="polyline" @markertap="onMarkerTap" >
</map> </map>
<view @touchmove.stop.prevent="() => {}">
<view class="btn_box"> <view class="btn_box">
<view class="btn1"> <view class="btn1">
车辆扫码 车辆扫码
@ -97,6 +105,8 @@
</view> </view>
</view> --> </view> -->
</view> </view>
</view>
<tab-bar :indexs='1' style=""></tab-bar> <tab-bar :indexs='1' style=""></tab-bar>
</view> </view>
</template> </template>
@ -641,7 +651,7 @@
.cont { .cont {
margin-top: 18rpx; margin-top: 18rpx;
margin-right: 10rpx; margin-right: 9rpx;
// display: flex; // display: flex;
width: 130rpx; width: 130rpx;
@ -693,6 +703,7 @@
} }
.slider { .slider {
padding: 15rpx 0 0 15rpx;
.tit { .tit {
font-weight: 500; font-weight: 500;
font-size: 28rpx; font-size: 28rpx;
@ -700,7 +711,7 @@
} }
width: 752rpx; width: 752rpx;
height: 150rpx; height:160rpx;
background: #FFFFFF; background: #FFFFFF;
box-shadow: 0rpx 4rpx 22rpx 0rpx rgba(0, 0, 0, 0.07); box-shadow: 0rpx 4rpx 22rpx 0rpx rgba(0, 0, 0, 0.07);
border-radius: 0rpx 0rpx 0rpx 0rpx; border-radius: 0rpx 0rpx 0rpx 0rpx;

View File

@ -230,7 +230,7 @@
console.error("Error fetching area data:", error); console.error("Error fetching area data:", error);
}); });
}else if(num==4){ }else if(num==4){
this.$u.post('/appVerify/device/ring?sn='+this.sn).then((res) => { this.$u.get('/appVerify/device/ring?sn='+this.sn).then((res) => {
if (res.code === 200) { if (res.code === 200) {
// 线 // 线
this.deviceInfo() this.deviceInfo()

View File

@ -17,7 +17,8 @@
<view class="iconfont icon-xiangxia1"></view> <view class="iconfont icon-xiangxia1"></view>
</view> </view>
<view class="stause_li" style="margin-left: 50rpx;" @click="showdsc=true"> <view class="stause_li" style="margin-left: 50rpx;" @click="showdsc=true">
{{sctit}} <view class="iconfont icon-xiangxia1"></view> {{sctit}}
<view class="iconfont icon-xiangxia1"></view>
</view> </view>
</view> </view>
@ -183,33 +184,15 @@
}, },
methods: { methods: {
ban(){ ban() {
let data={ let data = {
disableType:'disable', disableType: 'disable',
sns:this.selectedItems.join(',') sns: this.selectedItems.join(',')
} }
this.$u.post(`/appVerify/device/disable?sns=`+data.sns+'&disableType=disable').then((res) => { this.$u.post(`/appVerify/device/disable?sns=` + data.sns + '&disableType=disable').then((res) => {
if (res.code == 200) {
this.closestep()
this.getDevice()
} else {
//
}
}).catch(error => {
//
});
},
pick(){
let data={
disableType:'enable',
sns:this.selectedItems.join(',')
}
this.$u.post(`/appVerify/device/disable?sns=`+data.sns+'&disableType=enable').then((res) => {
if (res.code == 200) { if (res.code == 200) {
this.closestep() this.closestep()
this.getDevice() this.getDevice()
} else { } else {
// //
} }
@ -217,8 +200,26 @@
// //
}); });
}, },
confirms(e){ pick() {
let data = {
disableType: 'enable',
sns: this.selectedItems.join(',')
}
this.$u.post(`/appVerify/device/disable?sns=` + data.sns + '&disableType=enable').then((res) => {
if (res.code == 200) {
this.closestep()
this.getDevice()
} else {
//
}
}).catch(error => {
//
});
},
confirms(e) {
this.scidx = e[0].value this.scidx = e[0].value
this.sctit = e[0].label this.sctit = e[0].label
this.getDevice() this.getDevice()
@ -288,7 +289,7 @@
let data = { let data = {
powerStart: '', powerStart: '',
powerEnd: '', powerEnd: '',
sort:this.scidx, sort: this.scidx,
status: this.typeidx status: this.typeidx
} }
@ -399,13 +400,27 @@
font-weight: 400; font-weight: 400;
font-size: 28rpx; font-size: 28rpx;
color: #808080; color: #808080;
white-space: nowrap;
/* 禁止换行 */
overflow: hidden;
/* 超出部分隐藏 */
text-overflow: ellipsis;
span { span {
color: #3D3D3D; color: #3D3D3D;
white-space: nowrap;
/* 禁止换行 */
overflow: hidden;
/* 超出部分隐藏 */
text-overflow: ellipsis;
} }
.input { .input {
width: 30%; width: 30%;
white-space: nowrap;
/* 禁止换行 */
overflow: hidden;
/* 超出部分隐藏 */
text-overflow: ellipsis;
} }
} }
} }

View File

@ -246,7 +246,9 @@
if (this.typeindex == 1) { if (this.typeindex == 1) {
this.operatingData() this.operatingData()
} else { } else {
this.infoList = [] this.infoList = []
} }
} }