bike-ali/page_user/yj.vue

959 lines
21 KiB
Vue
Raw Permalink Normal View History

2024-05-08 23:18:30 +08:00
<template>
<view class="page">
<u-navbar title="押金" :border-bottom="false" :background="bgc" title-color='#000' title-size='36'
2024-06-06 18:04:50 +08:00
height='45'></u-navbar>
2024-07-22 17:47:13 +08:00
<view class="norecord" v-if="userinfo.balance==0&&showList==false">
2024-05-08 23:18:30 +08:00
<view class="card">
<view class="tit">充值押金</view>
2024-07-10 18:01:47 +08:00
<view class="tit">还车后<span style="color: #1E807A ;">随时可退</span></view>
2024-05-08 23:18:30 +08:00
<view class="tit" style="font-size: 32rpx;color: #808080;margin-top: 32rpx;">
押金金额
</view>
<view class="tit"
style="margin-top: 18rpx;font-weight: 700;font-size: 92rpx;color: #3D3D3D;line-height: 72rpx;"><span
2024-05-31 17:54:23 +08:00
style="font-size: 52rpx;"></span>{{areaInfo.deposit}}</view>
2024-05-08 23:18:30 +08:00
</view>
<view class="card1">
<view class="cont">
<view class="yuan"></view>
<view class="txt">
电单车归还后并完成支付可在个人中心- 申请押金退还
</view>
</view>
<view class="cont">
<view class="yuan"></view>
<view class="txt">
申请押金退还后预计1~3个工作日退还至原支付 账户平均3分钟到账
</view>
</view>
</view>
<view class="buy_btn" @click="sub4">
立即充值
</view>
</view>
2024-07-22 17:47:13 +08:00
<view class="record" v-if="userinfo.balance!=0||showList==true">
2024-05-08 23:18:30 +08:00
<view class="card" style="padding-top: 80rpx;">
2024-07-22 17:47:13 +08:00
<view class="tit" style="font-size: 32rpx;color: #808080;">
押金余额
</view>
2024-05-08 23:18:30 +08:00
<view class="tit"
style="margin-top: 18rpx;font-weight: 700;font-size: 92rpx;color: #3D3D3D;line-height: 72rpx;"><span
style="font-size: 52rpx;"></span>{{userinfo.balance}}</view>
2024-08-20 18:02:02 +08:00
2024-08-09 18:03:26 +08:00
<view class="btn" v-if="userinfo.balance!=0&&isInAuditOrder.length==0" @click="show=true">
2024-05-08 23:18:30 +08:00
提现
</view>
2024-08-20 18:02:02 +08:00
<view class="tit" v-if="isInAuditOrder.length!=0"
style="font-size: 32rpx;color: #808080;margin-top: 0;">
2024-08-09 18:03:26 +08:00
有订单审核中暂时无法提现
2024-07-22 17:47:13 +08:00
</view>
2024-10-06 11:47:33 +08:00
<view class="btn " v-if="userinfo.balance==0" @click="sub4">
2024-08-09 18:03:26 +08:00
充值押金
2024-10-06 11:47:33 +08:00
</view>
2024-05-08 23:18:30 +08:00
</view>
2024-06-07 18:08:55 +08:00
<view class="card2" style="padding-bottom: 30rpx;">
2024-05-08 23:18:30 +08:00
<view class="card_top">
<view class="left">
2024-12-12 18:02:37 +08:00
<image src="https://api.ccttiot.com/smartmeter/img/static/uf9o0xbkFdfs5wRT7aLD" mode="aspectFit"></image>
2024-05-08 23:18:30 +08:00
押金变动明细
</view>
<view class="right">
2024-06-07 18:08:55 +08:00
{{total*2-1}}
2024-05-08 23:18:30 +08:00
</view>
</view>
<view class="cardcont">
2024-06-07 18:08:55 +08:00
<view v-for="(item,index) in orderList" :key="index"
style="display: flex;flex-wrap: wrap;width: 100%;">
<view class="cont_li" v-if="item.etRefund.amount&&item.etRefund.refundResult=='SUCCESS'"
style="display: flex;flex-wrap: wrap;width: 100%;">
2024-05-15 18:02:17 +08:00
<view class="cont_li_left">
<view class="txt">
2024-06-07 18:08:55 +08:00
押金提现
2024-05-15 18:02:17 +08:00
</view>
<view class="data">
2024-06-07 18:08:55 +08:00
{{item.etRefund.createTime}}
2024-05-15 18:02:17 +08:00
</view>
2024-05-08 23:18:30 +08:00
</view>
2024-05-15 18:02:17 +08:00
<view class="cont_li_right">
<view class="cont_price">
2024-06-07 18:08:55 +08:00
-{{item.etRefund.amount}}
2024-05-15 18:02:17 +08:00
</view>
<view class="cont_data">
2024-06-07 18:08:55 +08:00
提现成功
2024-05-15 18:02:17 +08:00
</view>
2024-05-08 23:18:30 +08:00
</view>
</view>
2024-06-07 18:08:55 +08:00
<view class="cont_li">
2024-05-15 18:02:17 +08:00
<view class="cont_li_left">
<view class="txt">
2024-06-07 18:08:55 +08:00
押金充值
2024-05-15 18:02:17 +08:00
</view>
<view class="data">
2024-06-07 18:08:55 +08:00
{{item.payTime}}
2024-05-15 18:02:17 +08:00
</view>
2024-05-08 23:18:30 +08:00
</view>
2024-05-15 18:02:17 +08:00
<view class="cont_li_right">
<view class="cont_price">
2024-06-07 18:08:55 +08:00
+{{item.totalFee}}
2024-05-15 18:02:17 +08:00
</view>
<view class="cont_data">
2024-06-07 18:08:55 +08:00
充值成功
2024-05-15 18:02:17 +08:00
</view>
2024-05-08 23:18:30 +08:00
</view>
</view>
2024-06-07 18:08:55 +08:00
2024-05-08 23:18:30 +08:00
</view>
2024-06-07 18:08:55 +08:00
2024-05-08 23:18:30 +08:00
</view>
</view>
</view>
2024-06-20 18:08:54 +08:00
<u-mask :show="showBack" @click="showBack = false" :z-index='100' duration='0' />
<view class="pops" v-if="showBack">
<view class="tit" style="font-weight: 600;">
充值成功
</view>
<view class="cont_box" style="text-align: center;color: #808080;justify-content: center;font-size: 36rpx;">
押金充值成功是否返回继续骑行
</view>
2024-08-20 18:02:02 +08:00
2024-06-20 18:08:54 +08:00
<view class="btn_box">
<view class="btn1" @click="showBack = false">
取消
</view>
2024-08-20 18:02:02 +08:00
<view class="btn2" @click="topage()">
2024-06-20 18:08:54 +08:00
确定
</view>
</view>
<!-- <view class="btn" @click="showtcs=false" style="margin-bottom: 0rpx;">
点击查看
</view> -->
2024-08-20 18:02:02 +08:00
2024-07-08 18:01:44 +08:00
</view>
<u-mask :show="showtxtip" @click="showtxtip = false" :z-index='100' duration='0' />
<view class="pops" v-if="showtxtip">
<view class="tit" style="font-weight: 600;">
提现成功
</view>
<view class="cont_box" style="text-align: center;color: #808080;justify-content: center;font-size: 36rpx;">
充值押金将在10分钟内按原路退还是否返回
</view>
2024-08-20 18:02:02 +08:00
2024-07-08 18:01:44 +08:00
<view class="btn_box">
<view class="btn1" @click="showtxtip = false">
取消
</view>
2024-08-20 18:02:02 +08:00
<view class="btn2" @click="topage()">
2024-07-08 18:01:44 +08:00
确定
</view>
</view>
<!-- <view class="btn" @click="showtcs=false" style="margin-bottom: 0rpx;">
点击查看
</view> -->
2024-08-20 18:02:02 +08:00
2024-06-20 18:08:54 +08:00
</view>
2024-05-08 23:18:30 +08:00
<u-mask :show="show" @click="show = false" :z-index='100' />
<view class="tip_box" v-if="show">
<view class="top">
<view class="txt">
2024-06-06 18:04:50 +08:00
押金提现后下次使用电单车仍需要重
2024-05-08 23:18:30 +08:00
</view>
<view class="txt">
新充值押金您要继续提现吗
</view>
</view>
<view class="bot">
<view class="bot_left" @click="show=false">
取消
</view>
2024-05-15 18:02:17 +08:00
<view class="bot_right" @click="tixian()">
2024-05-08 23:18:30 +08:00
继续提现
</view>
</view>
2024-08-20 18:02:02 +08:00
2024-05-08 23:18:30 +08:00
</view>
2024-08-20 18:02:02 +08:00
<!-- <u-mask :show="loadingmask" :z-index='100' duration='0' />
2024-06-27 18:04:37 +08:00
<view class="pops" v-if="loadingmask" style="width: 500rpx;left:124rpx">
<view class="tit" style="font-weight: 600;">
加载中...
</view>
2024-07-23 17:59:01 +08:00
2024-06-27 18:04:37 +08:00
<view class="loading_box">
2024-12-12 18:02:37 +08:00
<image src="https://lxnapi.ccttiot.com/bike/img/static/uOQxwzp0Sj9l2WZ534zp" mode="aspectFit"></image>
2024-07-23 17:59:01 +08:00
2024-06-27 18:04:37 +08:00
</view>
2024-07-23 17:59:01 +08:00
</view> -->
2024-08-20 18:02:02 +08:00
<u-mask :show="loadingmask1" :z-index='100' duration='0' />
<view class="pops" v-if="loadingmask1" style="width: 500rpx;left:124rpx">
<view class="tit" style="font-weight: 600;">
加载中...
</view>
<view class="loading_box">
2024-12-12 18:02:37 +08:00
<!-- <image src="https://lxnapi.ccttiot.com/bike/img/static/uOQxwzp0Sj9l2WZ534zp" mode="aspectFit"></image> -->
2024-08-20 18:02:02 +08:00
<u-loading mode="flower" size="80"></u-loading>
</view>
</view>
2024-05-08 23:18:30 +08:00
</view>
</template>
<script>
export default {
data() {
return {
bgc: {
2024-06-03 18:06:08 +08:00
backgroundColor: "#F7FAFE",
2024-05-08 23:18:30 +08:00
},
2024-05-15 18:02:17 +08:00
show: false,
2024-05-08 23:18:30 +08:00
bindDeviceNum: null,
userinfo: {},
2024-06-07 18:08:55 +08:00
orderList: [],
total: 0,
areaInfo: "",
2024-08-20 18:02:02 +08:00
isback: false,
showBack: false,
loadingmask: true,
ispaid: false,
showtxtip: false,
showList: false,
isInAuditOrder: [],
loadingmask1:false
2024-05-08 23:18:30 +08:00
}
},
onShow() {
2024-05-28 17:48:29 +08:00
// this.$store.dispatch('fetchFeeRules', this.$u).then(() => {
2024-05-08 23:18:30 +08:00
2024-05-28 17:48:29 +08:00
// // 执行其他操作...
// });
2024-08-09 18:03:26 +08:00
this.$u.post("/app/user/isInAuditOrder?userId=" + this.userId).then((res) => {
2024-08-20 18:02:02 +08:00
2024-08-09 18:03:26 +08:00
if (res.code == 200) {
2024-08-20 18:02:02 +08:00
this.isInAuditOrder = res.data
2024-08-09 18:03:26 +08:00
} else {
2024-08-20 18:02:02 +08:00
2024-08-09 18:03:26 +08:00
}
});
2024-05-31 17:54:23 +08:00
this.getarea()
2024-06-07 18:08:55 +08:00
},
onLoad(e) {
2024-08-20 18:02:02 +08:00
console.log(e, 'this.isback');
if (e.isback) {
if (e.isback == 'false') {
this.isback = false
} else {
this.isback = true
2024-06-20 18:08:54 +08:00
}
2024-08-20 18:02:02 +08:00
2024-06-07 18:08:55 +08:00
}
2024-08-20 18:02:02 +08:00
if (e.showList) {
this.showList = true
2024-07-22 17:47:13 +08:00
}
2024-08-20 18:02:02 +08:00
2024-05-08 23:18:30 +08:00
},
watch: {
userId(newValue, oldValue) {
// 处理userId变化的逻辑
console.log('userId 发生变化', newValue, oldValue);
2024-06-07 18:08:55 +08:00
2024-05-08 23:18:30 +08:00
}
},
computed: {
2024-06-07 18:08:55 +08:00
2024-05-08 23:18:30 +08:00
userId() {
return this.$store.getters.userId;
},
},
methods: {
2024-08-20 18:02:02 +08:00
topage() {
this.showBack = false
2024-06-20 18:08:54 +08:00
uni.navigateBack({
delta: 1 // delta值为1时表示返回的页面层数
});
2024-06-07 18:08:55 +08:00
},
2024-05-31 17:54:23 +08:00
getlist() {
2024-07-08 18:01:44 +08:00
// uni.showLoading({
// title:'加载中...'
// })
2024-06-07 18:08:55 +08:00
this.$u.get("/appVerify/order/list?type=2&userId=" + this.userId).then((res) => {
2024-08-20 18:02:02 +08:00
2024-05-31 17:54:23 +08:00
if (res.code == 200) {
2024-06-07 18:08:55 +08:00
this.orderList = res.rows
this.total = res.total
2024-05-31 17:54:23 +08:00
} else {
2024-06-07 18:08:55 +08:00
// uni.showToast({
// title: res.msg,
// icon: 'none',
// duration: 2000
// });
2024-05-31 17:54:23 +08:00
}
});
},
2024-06-07 18:08:55 +08:00
tixian() {
2024-07-08 18:01:44 +08:00
this.show = false
2024-08-20 18:02:02 +08:00
this.loadingmask = true
uni.showLoading({
title:'加载中'
})
2024-05-15 18:02:17 +08:00
this.$u.post("/appVerify/order/withdraw").then((res) => {
2024-06-07 18:08:55 +08:00
2024-05-15 18:02:17 +08:00
if (res.code == 200) {
2024-06-06 18:12:53 +08:00
setTimeout(() => {
2024-08-20 18:02:02 +08:00
uni.hideLoading()
this.loadingmask = false
2024-06-06 18:12:53 +08:00
this.getinfo()
this.getlist()
2024-08-20 18:02:02 +08:00
this.showtxtip = true
2024-06-23 17:17:51 +08:00
}, 500)
2024-06-07 18:08:55 +08:00
2024-05-15 18:02:17 +08:00
} else {
2024-06-20 18:08:54 +08:00
uni.hideLoading()
2024-08-20 18:02:02 +08:00
2024-06-20 18:08:54 +08:00
uni.showToast({
title: res.msg,
icon: 'none',
duration: 2000
});
2024-05-15 18:02:17 +08:00
}
});
},
2024-05-31 17:54:23 +08:00
getarea() {
let id = uni.getStorageSync('areaId');
2024-06-07 18:08:55 +08:00
this.$u.get("/app/area/" + id).then((res) => {
2024-05-08 23:18:30 +08:00
if (res.code == 200) {
2024-06-07 18:08:55 +08:00
this.areaInfo = res.data
2024-06-20 18:08:54 +08:00
this.getinfo()
2024-05-08 23:18:30 +08:00
} else {
2024-06-07 18:08:55 +08:00
// uni.showToast({
// title: res.msg,
// icon: 'none',
// duration: 2000
// });
2024-05-08 23:18:30 +08:00
}
});
},
getinfo() {
2024-06-27 18:04:37 +08:00
// uni.showLoading({
// title:'加载中'
// })
2024-05-08 23:18:30 +08:00
this.$u.get("/getAppInfo").then((res) => {
2024-08-20 18:02:02 +08:00
2024-05-08 23:18:30 +08:00
if (res.code == 200) {
2024-08-20 18:02:02 +08:00
2024-05-08 23:18:30 +08:00
this.$store.commit('SET_USERID', res.user.userId);
this.userinfo = res.user
2024-11-28 16:35:10 +08:00
// this.userinfo.balance=null
2024-08-20 18:02:02 +08:00
console.log(res.user.balance, 'es.user.balance', this.isback);
if (res.user.balance == parseFloat(this.areaInfo.deposit)) {
console.log('进入判断了', this.isback);
if (this.isback == true) {
2024-06-20 18:08:54 +08:00
console.log('进入判断了1');
2024-07-08 18:01:44 +08:00
// this.showBack=true
2024-06-20 18:08:54 +08:00
}
2024-08-20 18:02:02 +08:00
2024-06-07 18:08:55 +08:00
}
2024-05-16 17:59:50 +08:00
this.getlist()
2024-05-08 23:18:30 +08:00
} else {
2024-08-20 18:02:02 +08:00
setTimeout(() => {
2024-06-07 18:08:55 +08:00
this.getinfo()
this.getlist()
2024-08-20 18:02:02 +08:00
}, 500)
2024-06-27 18:04:37 +08:00
}
});
},
2024-08-20 18:02:02 +08:00
check() {
2024-06-27 18:04:37 +08:00
this.$u.get("/getAppInfo").then((res) => {
2024-08-20 18:02:02 +08:00
2024-06-27 18:04:37 +08:00
if (res.code == 200) {
2024-08-20 18:02:02 +08:00
2024-06-27 18:04:37 +08:00
this.$store.commit('SET_USERID', res.user.userId);
this.userinfo = res.user
2024-08-20 18:02:02 +08:00
console.log(res.user.balance, 'es.user.balance', this.isback);
this.loadingmask = false
this.getlist()
if (res.user.balance == parseFloat(this.areaInfo.deposit)) {
console.log('进入判断了', this.isback);
if (this.isback == true) {
2024-06-27 18:04:37 +08:00
console.log('进入判断了1');
2024-07-04 18:03:21 +08:00
// this.showBack=true
uni.navigateBack({
delta: 1 // delta值为1时表示返回的页面层数
});
2024-06-27 18:04:37 +08:00
}
2024-08-20 18:02:02 +08:00
2024-06-27 18:04:37 +08:00
}
2024-08-20 18:02:02 +08:00
2024-06-27 18:04:37 +08:00
} else {
2024-08-20 18:02:02 +08:00
2024-05-08 23:18:30 +08:00
}
});
},
sub4() {
2024-08-20 18:02:02 +08:00
if (this.ispaid == false) {
this.ispaid = true
2024-07-03 18:02:10 +08:00
let id = uni.getStorageSync('areaId');
let data = {
userId: this.userId,
2024-08-20 18:02:02 +08:00
2024-07-03 18:02:10 +08:00
// ruleId: this.freeInfo.ruleId,
money: this.areaInfo.deposit,
mark: "押金充值",
type: '4',
2024-12-26 15:52:44 +08:00
areaId: id,
platform: "2" // 2 是支付宝
2024-08-20 18:02:02 +08:00
2024-05-08 23:18:30 +08:00
}
2024-07-03 18:02:10 +08:00
let that = this
this.$u.post('/appVerify/pre/order', data).then((res) => {
if (res.code === 200) {
// this.freList=res.rows
2024-08-20 18:02:02 +08:00
let orderNo = res.data.orderNo
this.orderNo = res.data.orderNo
2024-12-26 15:52:44 +08:00
my.tradePay ({
2025-01-02 16:57:11 +08:00
tradeNO: res.data.tradeNo,
2024-07-03 18:02:10 +08:00
success(res) {
// 支付成功逻辑
// uni.showLoading({
// title: '加载中'
// })
2024-08-20 18:02:02 +08:00
that.ispaid = false
that.loadingmask = true
that.loadingmask1=true
// uni.showLoading({
// title: '加载中'
// })
2024-07-03 18:02:10 +08:00
setTimeout(() => {
2024-08-20 18:02:02 +08:00
2024-07-03 18:02:10 +08:00
that.check()
2024-08-20 18:02:02 +08:00
2024-07-03 18:02:10 +08:00
}, 2000)
setTimeout(() => {
2024-08-19 18:00:46 +08:00
2024-08-20 18:02:02 +08:00
if (that.userinfo.balance == 0) {
let data = {
orderNo: that.orderNo
}
that.$u.get("/appVerify/queryResultByOrderNo?", data).then((res) => {
if (res.code == 200) {
that.check()
console.log('关闭了2');
uni.hideLoading()
that.loadingmask1=false
} else {
// uni.showToast({
// title: res.msg,
// icon: 'none',
// duration: 2000
// });
}
});
}else{
that.check()
console.log('关闭了1');
uni.hideLoading()
that.loadingmask1=false
}
}, 3500)
2024-07-03 18:02:10 +08:00
},
fail(err) {
2024-12-26 15:52:44 +08:00
console.log(err,'err');
2024-08-20 18:02:02 +08:00
that.ispaid = false
2024-07-03 18:02:10 +08:00
// 支付失败逻辑
uni.showToast({
title: '支付失败',
icon: 'none',
duration: 2000
});
}
});
} else {
2024-08-20 18:02:02 +08:00
that.ispaid = false
2024-07-03 18:02:10 +08:00
uni.showToast({
title: res.data,
icon: 'none',
duration: 2000
});
}
})
2024-08-20 18:02:02 +08:00
2024-07-03 18:02:10 +08:00
}
2024-08-20 18:02:02 +08:00
2024-05-08 23:18:30 +08:00
},
}
}
</script>
<style lang="scss">
page {
2024-07-10 18:01:47 +08:00
// background: linear-gradient(180deg, #1E807A 0%, rgba(255, 255, 255, 0) 40%), #FFFFFF;
2024-05-08 23:18:30 +08:00
}
.page {
width: 750rpx;
2024-08-20 18:02:02 +08:00
2024-06-07 18:08:55 +08:00
.pops {
padding: 46rpx 36rpx;
position: fixed;
2024-08-20 18:02:02 +08:00
top: 600rpx;
2024-06-07 18:08:55 +08:00
left: 74rpx;
width: 604rpx;
// height: 606rpx;
2024-08-20 18:02:02 +08:00
background: #fdfdfd;
2024-06-07 18:08:55 +08:00
border-radius: 20rpx 20rpx 20rpx 20rpx;
z-index: 110;
2024-08-20 18:02:02 +08:00
2024-06-07 18:08:55 +08:00
.close {
position: absolute;
left: 266rpx;
bottom: -100rpx;
2024-08-20 18:02:02 +08:00
2024-06-07 18:08:55 +08:00
image {
width: 80rpx;
height: 80rpx;
}
}
2024-08-20 18:02:02 +08:00
.loading_box {
2024-06-27 18:04:37 +08:00
width: 100%;
// height: 200rpx;
display: flex;
align-items: center;
justify-content: center;
2024-08-20 18:02:02 +08:00
image {
2024-06-27 18:04:37 +08:00
width: 336rpx;
height: 154rpx;
}
2024-08-20 18:02:02 +08:00
2024-06-27 18:04:37 +08:00
// .loader {
// width: 120rpx;
// aspect-ratio: 1;
// border-radius: 50%;
// clip-path: inset(-360rpx); /* 4倍的比例调整 */
// box-shadow: -240rpx 60rpx, -240rpx 60rpx, -240rpx 60rpx; /* 4倍的比例调整 */
// transform: translateY(-60rpx); /* 4倍的比例调整 */
// animation: l19 1s infinite linear;
// }
2024-08-20 18:02:02 +08:00
2024-06-27 18:04:37 +08:00
// @keyframes l19 {
// 16.67% {box-shadow:-240rpx 60rpx,-240rpx 60rpx, 76rpx 60rpx} /* 4倍的比例调整 */
// 33.33% {box-shadow:-240rpx 60rpx, 0px 60rpx, 76rpx 60rpx} /* 4倍的比例调整 */
// 40%,60%{box-shadow: -76rpx 60rpx, 0px 60rpx, 76rpx 60rpx} /* 4倍的比例调整 */
// 66.67% {box-shadow: -76rpx 60rpx, 0px 60rpx, 240rpx 60rpx} /* 4倍的比例调整 */
// 83.33% {box-shadow: -76rpx 60rpx, 240rpx 60rpx,240rpx 60rpx} /* 4倍的比例调整 */
// 100% {box-shadow: 240rpx 60rpx, 240rpx 60rpx,240rpx 60rpx} /* 4倍的比例调整 */
// }
2024-08-20 18:02:02 +08:00
2024-06-27 18:04:37 +08:00
}
2024-08-20 18:02:02 +08:00
2024-06-27 18:04:37 +08:00
.btn_box {
2024-06-07 18:08:55 +08:00
margin-top: 80rpx;
display: flex;
align-items: center;
justify-content: space-between;
2024-08-20 18:02:02 +08:00
2024-06-27 18:04:37 +08:00
.btn1 {
2024-06-07 18:08:55 +08:00
display: flex;
align-items: center;
justify-content: center;
width: 216rpx;
height: 90rpx;
background: #989898;
border-radius: 54rpx 54rpx 54rpx 54rpx;
2024-08-20 18:02:02 +08:00
2024-06-07 18:08:55 +08:00
font-weight: 500;
font-size: 40rpx;
color: #FFFFFF;
}
2024-08-20 18:02:02 +08:00
2024-06-27 18:04:37 +08:00
.btn2 {
2024-06-07 18:08:55 +08:00
display: flex;
align-items: center;
justify-content: center;
width: 268rpx;
height: 90rpx;
2024-08-20 18:02:02 +08:00
background: #1E807A;
2024-06-07 18:08:55 +08:00
border-radius: 54rpx 54rpx 54rpx 54rpx;
2024-08-20 18:02:02 +08:00
2024-06-07 18:08:55 +08:00
font-weight: 500;
font-size: 40rpx;
color: #FFFFFF;
}
}
2024-08-20 18:02:02 +08:00
2024-06-07 18:08:55 +08:00
.time {
margin-top: 20rpx;
text-align: center;
font-weight: 500;
font-size: 48rpx;
2024-08-20 18:02:02 +08:00
color: #1E807A;
2024-06-07 18:08:55 +08:00
}
2024-08-20 18:02:02 +08:00
2024-06-07 18:08:55 +08:00
.cont {
2024-06-27 18:04:37 +08:00
height: 500rpx;
2024-06-07 18:08:55 +08:00
overflow-x: hidden;
overflow-y: auto;
}
2024-08-20 18:02:02 +08:00
2024-06-07 18:08:55 +08:00
.tit {
// width: 604rpx;
text-align: center;
font-weight: 500;
font-size: 36rpx;
color: #3D3D3D;
margin-bottom: 54rpx;
}
2024-08-20 18:02:02 +08:00
2024-06-07 18:08:55 +08:00
.cont_box {
margin-top: 36rpx;
display: flex;
flex-wrap: nowrap;
align-items: center;
justify-content: space-between;
2024-08-20 18:02:02 +08:00
2024-06-07 18:08:55 +08:00
.left {
display: flex;
flex-wrap: wrap;
font-weight: 600;
font-size: 36rpx;
color: #3D3D3D;
2024-08-20 18:02:02 +08:00
2024-06-07 18:08:55 +08:00
.km {
font-weight: 400;
font-size: 28rpx;
color: #3D3D3D;
}
2024-08-20 18:02:02 +08:00
2024-06-07 18:08:55 +08:00
.speed {
margin-top: 18rpx;
width: 226rpx;
height: 22rpx;
background: #ccc;
border-radius: 16rpx 16rpx 16rpx 16rpx;
2024-08-20 18:02:02 +08:00
2024-06-07 18:08:55 +08:00
.speeds {
// width: 90%;
height: 100%;
background: #77B8FD;
border-radius: 16rpx 16rpx 16rpx 16rpx;
}
}
2024-08-20 18:02:02 +08:00
2024-06-07 18:08:55 +08:00
.NO {
font-weight: 400;
font-size: 24rpx;
color: #3D3D3D;
}
}
2024-08-20 18:02:02 +08:00
2024-06-07 18:08:55 +08:00
.right {
font-weight: 600;
font-size: 36rpx;
color: #3D3D3D;
2024-08-20 18:02:02 +08:00
2024-06-07 18:08:55 +08:00
image {
width: 244rpx;
height: 196rpx;
}
}
}
2024-08-20 18:02:02 +08:00
2024-06-07 18:08:55 +08:00
.text {
margin-top: 36rpx;
display: flex;
flex-wrap: wrap;
// align-items: center;
2024-08-20 18:02:02 +08:00
2024-06-07 18:08:55 +08:00
.yuan {
margin-top: 10rpx;
margin-right: 12rpx;
width: 20rpx;
height: 20rpx;
background: #000;
border-radius: 50%;
}
2024-08-20 18:02:02 +08:00
2024-06-07 18:08:55 +08:00
span {
width: 90%;
font-weight: 400;
font-size: 28rpx;
color: #3D3D3D;
}
}
2024-08-20 18:02:02 +08:00
2024-06-07 18:08:55 +08:00
.btn {
margin-left: 40rpx;
margin-top: 50rpx;
display: flex;
align-items: center;
justify-content: center;
width: 470rpx;
height: 90rpx;
2024-08-20 18:02:02 +08:00
background: #1E807A;
2024-06-07 18:08:55 +08:00
border-radius: 54rpx 54rpx 54rpx 54rpx;
font-weight: 500;
font-size: 40rpx;
color: #FFFFFF;
}
2024-08-20 18:02:02 +08:00
2024-06-27 18:04:37 +08:00
.act1 {
background-color: #ccc;
}
2024-06-07 18:08:55 +08:00
}
2024-08-20 18:02:02 +08:00
2024-05-08 23:18:30 +08:00
.card {
display: flex;
justify-content: center;
flex-wrap: wrap;
padding: 28rpx 0;
margin: 30rpx auto;
width: 680rpx;
2024-08-09 18:03:26 +08:00
// height: 406rpx;
2024-05-08 23:18:30 +08:00
background: #FFFFFF;
box-shadow: 0rpx 10rpx 64rpx 0rpx rgba(0, 0, 0, 0.08);
border-radius: 20rpx 20rpx 20rpx 20rpx;
.tit {
width: 100%;
text-align: center;
font-weight: 500;
font-size: 52rpx;
color: #3D3D3D;
line-height: 72rpx;
}
.btn {
2024-07-22 17:47:13 +08:00
margin-top: 40rpx;
2024-05-08 23:18:30 +08:00
display: flex;
align-items: center;
justify-content: center;
width: 586rpx;
height: 68rpx;
2024-08-20 18:02:02 +08:00
background: #1E807A;
2024-05-08 23:18:30 +08:00
border-radius: 54rpx 54rpx 54rpx 54rpx;
font-weight: 500;
font-size: 32rpx;
color: #FFFFFF;
}
}
.buy_btn {
position: fixed;
bottom: 150rpx;
left: 36rpx;
display: flex;
align-items: center;
justify-content: center;
width: 680rpx;
height: 90rpx;
2024-08-20 18:02:02 +08:00
background: #1E807A;
2024-05-08 23:18:30 +08:00
border-radius: 54rpx 54rpx 54rpx 54rpx;
font-weight: 500;
font-size: 40rpx;
color: #FFFFFF;
}
.tip_box {
2024-12-26 15:52:44 +08:00
position: fixed;
left: 72rpx;
top: 50%;
transform: translateY(-50%);
width: 610rpx;
background: #FFFFFF;
border-radius: 30rpx;
z-index: 110;
overflow: hidden;
.top {
padding: 52rpx 38rpx 42rpx 36rpx;
.txt {
width: 100%;
text-align: center;
font-weight: 500;
font-size: 32rpx;
color: #3D3D3D;
line-height: 1.5;
}
}
.bot {
display: flex;
border-top: 2rpx solid #D8D8D8;
.bot_left, .bot_right {
flex: 1;
height: 98rpx;
display: flex;
align-items: center;
justify-content: center;
font-weight: 500;
font-size: 36rpx;
}
.bot_left {
color: #3D3D3D;
}
.bot_right {
color: #1E807A;
border-left: 2rpx solid #D8D8D8;
}
}
}
2024-05-08 23:18:30 +08:00
.card2 {
margin: 30rpx auto;
// padding: 38rpx 40rpx;
width: 680rpx;
// height: 252rpx;
background: #FFFFFF;
box-shadow: 0rpx 10rpx 64rpx 0rpx rgba(0, 0, 0, 0.08);
border-radius: 20rpx 20rpx 20rpx 20rpx;
.card_top {
display: flex;
flex-wrap: nowrap;
justify-content: space-between;
padding: 28rpx 35rpx 24rpx 35rpx;
border-bottom: 2rpx solid #D8D8D8;
.left {
display: flex;
flex-wrap: nowrap;
align-items: center;
font-weight: 400;
font-size: 28rpx;
color: #3D3D3D;
image {
margin-right: 18rpx;
width: 36rpx;
height: 36rpx;
}
}
.right {
font-weight: 400;
font-size: 24rpx;
color: #3D3D3D;
}
}
.cardcont {
display: flex;
flex-wrap: wrap;
padding: 0rpx 34rpx;
.cont_li {
margin-top: 28rpx;
width: 100%;
display: flex;
flex-wrap: nowrap;
justify-content: space-between;
border-bottom: 2rpx solid #D8D8D8;
padding-bottom: 28rpx;
.cont_li_left {
width: 300rpx;
display: flex;
flex-wrap: wrap;
.tit {
width: 100%;
font-weight: 400;
font-size: 32rpx;
color: #3D3D3D;
}
.data {
margin-top: 8rpx;
width: 100%;
font-weight: 400;
2024-06-06 18:04:50 +08:00
font-size: 24rpx;
2024-05-08 23:18:30 +08:00
color: #979797;
}
}
.cont_li_right {
display: flex;
flex-wrap: wrap;
width: 100rpx;
.cont_price {
width: 100rpx;
margin-left: auto;
text-align: right;
font-weight: 500;
font-size: 40rpx;
color: #3D3D3D;
}
.cont_data {
width: 100rpx;
text-align: right;
font-weight: 400;
2024-06-06 18:04:50 +08:00
font-size: 24rpx;
2024-08-20 18:02:02 +08:00
color: #1E807A;
2024-05-08 23:18:30 +08:00
}
}
}
}
}
.card1 {
margin: 30rpx auto;
padding: 38rpx 40rpx;
width: 680rpx;
// height: 252rpx;
background: #FFFFFF;
box-shadow: 0rpx 10rpx 64rpx 0rpx rgba(0, 0, 0, 0.08);
border-radius: 20rpx 20rpx 20rpx 20rpx;
.cont {
display: flex;
flex-wrap: nowrap;
align-items: center;
.yuan {
margin-right: 26rpx;
width: 20rpx;
height: 20rpx;
border-radius: 50%;
background: #808080;
}
.txt {
width: 90%;
font-weight: 400;
font-size: 28rpx;
color: #808080;
}
}
}
}
</style>