This commit is contained in:
tx 2024-08-16 18:05:31 +08:00
parent 6699d5bf84
commit 277a6bbf03
4 changed files with 92 additions and 16 deletions

View File

@ -12,17 +12,29 @@
有效期至2024-08-04
</view>
<view class="txt3">
剩余次数 <span >5</span>
剩余次数 <span>5</span>
</view>
</view>
<view class="card2">
<view class="tit1">
电单车15天5次卡
</view>
<view class="tit2">
有效期至2024-08-04
</view>
<view class="txt3">
<span style="font-size: 64rpx;">已过期</span>
</view>
</view>
<view class="card3">
<view class="txt4">
有效期至2024-08-28
</view>
</view>
<view class="card4">
<view class="txt4">
有效期至2024-08-28
</view>
</view>
</view>
</view>
@ -58,17 +70,20 @@
display: flex;
justify-content: center;
flex-wrap: wrap;
.tit1{
.tit1 {
font-weight: 500;
font-size: 32rpx;
color: #FFFFFF;
}
.tit2{
.tit2 {
margin-top: 10rpx;
font-weight: 500;
font-size: 24rpx;
color: #FFFFFF;
}
.card1 {
position: relative;
margin-top: 18rpx;
@ -80,15 +95,28 @@
background-position: center;
/* 背景图片居中显示 */
background-repeat: no-repeat;
padding: 22rpx 46rpx;
.txt3{
padding: 22rpx 46rpx;
.txt3 {
position: absolute;
right: 42rpx ;
bottom: 26rpx;
right: 42rpx;
bottom: 16rpx;
font-weight: 400;
font-size: 28rpx;
color: #FFFFFF;
span {
margin-left: 26rpx;
font-size: 100rpx;
}
}
/* 防止背景图片重复 */
}
.card2 {
position: relative;
padding: 22rpx 46rpx;
margin-top: 18rpx;
width: 680rpx;
height: 176rpx;
@ -98,9 +126,26 @@
background-position: center;
/* 背景图片居中显示 */
background-repeat: no-repeat;
/* 防止背景图片重复 */
.txt3 {
position: absolute;
right: 42rpx;
bottom: 16rpx;
font-weight: 400;
font-size: 28rpx;
color: #FFFFFF;
span {
margin-left: 26rpx;
font-size: 100rpx;
}
}
}
.card3 {
position: relative;
margin-top: 18rpx;
width: 680rpx;
height: 410rpx;
@ -111,8 +156,18 @@
/* 背景图片居中显示 */
background-repeat: no-repeat;
/* 防止背景图片重复 */
.txt4{
position: absolute;
top: 72rpx;
right: 78rpx;
font-weight: 400;
font-size: 24rpx;
color: #F5C164;
}
}
.card4 {
position: relative;
margin-top: 18rpx;
width: 680rpx;
height: 410rpx;
@ -123,6 +178,14 @@
/* 背景图片居中显示 */
background-repeat: no-repeat;
/* 防止背景图片重复 */
.txt4{
position: absolute;
top: 72rpx;
right: 78rpx;
font-weight: 400;
font-size: 24rpx;
color: #BBB7B7 ;
}
}
}

View File

@ -205,6 +205,15 @@
"enablePullDownRefresh": false,
"navigationStyle": "custom"
}
},
{
"path" : "buyCard",
"style" :
{
"navigationBarTitleText": "上传",
"enablePullDownRefresh": false,
"navigationStyle": "custom"
}
}

View File

@ -170,7 +170,9 @@
</view>
</view>
<view class="center">
<view class="tips" v-if="freList.length<1" style="width: 100%;height: 200rpx;font-size: 40rpx;color: #ccc;text-align: center;padding-top: 80rpx;">
运营商未设置收费方式无法使用
</view>
<view class="card" v-for="(item,index ) in freList" :key="index"
@click.stop="changefree(item,index+1)" :class="freeListIndex==index+1?'act1':''">
<image src="https://lxnapi.ccttiot.com/bike/img/static/uPtfF3jVLMVvEYpilzTk" mode=""
@ -250,10 +252,12 @@
我已同意并阅读 <span @click.stop="toxy()">电动车租赁协议</span>
</view>
</view>
<view class="btn" @click="taploadmask(1)" v-if="type==1">
<view class="btn" @click="taploadmask(1)" v-if="type==1&&freList.length>1">
确认开锁
</view>
<view class="btn" v-if="type==1&&freList.length<1" style="background-color: #ccc;color: #fff;">
确认开锁
</view>
<view class="btn" @click="sub3()" v-if="type==2">
确认预约
</view>

View File

@ -660,7 +660,7 @@
uni.showLoading({
title:'加载中...'
})
this.$u.put('/appVerify/device/reboot' + this.sn).then((res) => {
this.$u.post('/appVerify/device/seatCushionLock?sn=' + this.sn).then((res) => {
if (res.code == 200) {
this.deviceInfo()
uni.showToast({
@ -669,8 +669,8 @@
duration: 2000
});
} else {
uni.hideLoading()
this.bulebtn(4)
// uni.hideLoading()
// this.bulebtn(4)
}
})