bike-ali/pages_admin/worke/worke_Operation.vue

808 lines
19 KiB
Vue
Raw Permalink Normal View History

2024-05-10 18:00:23 +08:00
<template>
2024-07-02 18:07:01 +08:00
<view class="page" v-if="loading">
2024-05-10 18:00:23 +08:00
<u-navbar title="运营数据" :border-bottom="false" :background="bgc" title-color='#000' title-size='36'
2024-06-07 18:08:55 +08:00
height='45'></u-navbar>
2024-05-10 18:00:23 +08:00
<view class="top_box">
<view class="left_text">
时间范围
</view>
<view class="timebox">
<view class="left_time" @click="time1=true">
{{firsTime}}
</view>
-
<view class="right_time" @click="time2=true">
{{lasTime}}
</view>
</view>
</view>
<view class="data_box">
2024-05-14 18:04:34 +08:00
<view class="data_cont " :class="cutidx==0?'act1':''" @click="changeTime(0)">
2024-05-10 18:00:23 +08:00
今日
</view>
2024-05-14 18:04:34 +08:00
<view class="data_cont" :class="cutidx==1?'act1':''" @click="changeTime(1)">
2024-05-10 18:00:23 +08:00
昨日
</view>
2024-05-14 18:04:34 +08:00
<view class="data_cont" :class="cutidx==2?'act1':''" @click="changeTime(2)">
2024-05-10 18:00:23 +08:00
本月
</view>
2024-05-14 18:04:34 +08:00
<view class="data_cont" :class="cutidx==3?'act1':''" @click="changeTime(3)">
2024-05-10 18:00:23 +08:00
上个月
</view>
</view>
2024-08-23 17:55:37 +08:00
<view class="top_card" >
2024-05-10 18:00:23 +08:00
<view class="tit">
2024-12-12 18:02:37 +08:00
<image src="https://lxnapi.ccttiot.com/bike/img/static/uR7EhQMLnjuRoi0G3tA6" mode="aspectFit"></image>
2024-05-10 18:00:23 +08:00
收入相关
</view>
<view class="info">
<view class="info_li">
2024-07-03 18:02:10 +08:00
订单总费用
<span style="color: #4C97E7;" >{{displayAmount(info.income.totalFee) }}</span>
</view>
<view class="info_li">
手续费
<span style="color: #4C97E7;" >{{displayAmount(info.income.handlingFee)}}</span>
</view>
</view>
<view class="info">
<view class="info_li">
总营收:
2024-07-02 18:07:01 +08:00
<span style="color: #4C97E7;" v-if="info.income.totalIncome">{{info.income.totalIncome}}</span>
<span style="color: #4C97E7;" v-else>--</span>
2024-05-10 18:00:23 +08:00
</view>
<view class="info_li">
2024-07-03 18:02:10 +08:00
累计待支付:
2024-07-02 18:07:01 +08:00
<span style="color: #4C97E7;" v-if="info.income.totalUnpaid">{{info.income.totalUnpaid}}</span>
<span style="color: #4C97E7;" v-else>--</span>
2024-05-10 18:00:23 +08:00
</view>
</view>
<view class="info">
<view class="info_li">
2024-07-03 18:02:10 +08:00
已支付:
2024-07-02 18:07:01 +08:00
<span style="color: #3D3D3D;" v-if="info.income.totalPaid">{{info.income.totalPaid}}</span>
<span style="color: #3D3D3D;" v-else>--</span>
2024-05-10 18:00:23 +08:00
</view>
<view class="info_li">
2024-07-03 18:02:10 +08:00
已退款:
2024-07-02 18:07:01 +08:00
<span style="color: #3D3D3D;" v-if="info.income.totalRefund">{{info.income.totalRefund}}</span>
<span style="color: #3D3D3D;" v-else>--</span>
2024-05-10 18:00:23 +08:00
</view>
</view>
2024-08-19 18:00:46 +08:00
</view>
2024-08-23 17:55:37 +08:00
<view class="top_info_box" v-if="false">
2024-08-20 18:02:02 +08:00
<view class="info_lis">
<view class="lis_top" @click="showtipss(1)">
2024-12-12 18:02:37 +08:00
营业收入 <image src="https://lxnapi.ccttiot.com/bike/img/static/uJFB9IlTZQG31V17R5Pn" mode="aspectFit"></image>
2024-08-20 18:02:02 +08:00
</view>
<view class="lis_bot">
{{info.income.operatingIncome}}
</view>
</view>
<view class="info_lis">
<view class="lis_top" @click="showtipss(2)">
2024-12-12 18:02:37 +08:00
押金余额 <image src="https://lxnapi.ccttiot.com/bike/img/static/uJFB9IlTZQG31V17R5Pn" mode="aspectFit"></image>
2024-08-20 18:02:02 +08:00
</view>
<view class="lis_bot">
{{info.income.depositBalance}}
</view>
</view>
<view class="info_lis">
<view class="lis_top" @click="showtipss(3)">
2024-12-12 18:02:37 +08:00
账户盈余 <image src="https://lxnapi.ccttiot.com/bike/img/static/uJFB9IlTZQG31V17R5Pn" mode="aspectFit"></image>
2024-08-20 18:02:02 +08:00
</view>
<view class="lis_bot">
{{info.income.accountSurplus}}
</view>
</view>
2024-05-10 18:00:23 +08:00
</view>
2024-08-20 18:02:02 +08:00
<view class="lines"></view>
2024-08-23 17:55:37 +08:00
<view class="cont_info_box" v-if="false">
2024-08-20 18:02:02 +08:00
<view class="info_li2">
总流水{{info.income.totalFlowAmount}}
</view>
<view class="info_li3">
订单支付{{info.income.orderPaid}} <span>包含押金抵扣:{{info.income.deductionAmount}}</span>
</view>
<view class="info_li3">
押金充值{{info.income.depositPaid}}
</view>
<view class="info_li2" style="margin-top: 38rpx;">
总支出{{info.income.totalExpenditure}}
</view>
<view class="info_li3" style=" display: flex;" >
<span style="width: 50%;color: #3D3D3D;">订单退款{{info.income.orderRefund}} </span><span style="color: #3D3D3D;width: 50%;">押金退款{{info.income.depositRefund}}</span>
</view>
<view class="info_li3" style=" display: flex; ">
<span style="width: 50%;color: #3D3D3D;">手续费{{info.income.handlingFee}}</span> <span style="color: #3D3D3D;width: 50%;">平台服务费{{info.income.platformServiceFee}}</span>
</view>
</view>
<view class="lines"></view>
2024-08-23 17:55:37 +08:00
<view class="cont_box" >
2024-05-10 18:00:23 +08:00
<view class="cont_info">
<view class="info_li" style="color:#4C97E7 ;">
租赁费
</view>
<view class="info_li" style="color:#4C97E7 ;">
2024-09-26 18:01:28 +08:00
调度费(运营区外)
2024-05-10 18:00:23 +08:00
</view>
2024-05-14 18:04:34 +08:00
2024-05-10 18:00:23 +08:00
</view>
<view class="cont_info">
2024-07-02 18:07:01 +08:00
<view class="info_li" v-if="info.income.totalRidingFee">
2024-05-14 18:04:34 +08:00
已支付{{info.income.totalRidingFee}}
2024-05-10 18:00:23 +08:00
</view>
2024-07-02 18:07:01 +08:00
<view class="info_li" v-else>
已支付--
</view>
<view class="info_li" v-if="info.income.totalDispatchFee">
已支付{{info.income.totalDispatchFee}}
</view>
<view class="info_li" v-else>
已支付--
2024-05-10 18:00:23 +08:00
</view>
</view>
<view class="cont_info">
2024-05-14 18:04:34 +08:00
2024-05-10 18:00:23 +08:00
<view class="info_li">
2024-07-02 18:07:01 +08:00
已退款{{ displayAmount(info.income.totalRidingRefund)}}
2024-05-10 18:00:23 +08:00
</view>
<view class="info_li">
2024-07-02 18:07:01 +08:00
已退款{{ displayAmount(info.income.totalDispatchRefund)}}
2024-05-10 18:00:23 +08:00
</view>
2024-05-14 18:04:34 +08:00
2024-05-10 18:00:23 +08:00
</view>
<view class="cont_info">
<view class="info_li" style="color:#4C97E7 ;">
2024-05-14 18:04:34 +08:00
预约费
2024-05-10 18:00:23 +08:00
</view>
<view class="info_li" style="color:#4C97E7 ;">
2024-09-26 18:01:28 +08:00
调度费 (停车区外)
2024-05-10 18:00:23 +08:00
</view>
</view>
<view class="cont_info">
2024-05-14 18:04:34 +08:00
2024-05-10 18:00:23 +08:00
<view class="info_li">
2024-07-02 18:07:01 +08:00
已支付{{displayAmount(info.income.totalAppointmentFee) }}
2024-05-10 18:00:23 +08:00
</view>
<view class="info_li">
2024-07-02 18:07:01 +08:00
已支付{{displayAmount(info.income.totalManageFee) }}
2024-05-10 18:00:23 +08:00
</view>
2024-05-14 18:04:34 +08:00
2024-05-10 18:00:23 +08:00
</view>
<view class="cont_info">
2024-05-14 18:04:34 +08:00
2024-05-10 18:00:23 +08:00
<view class="info_li">
2024-07-02 18:07:01 +08:00
已退款{{displayAmount(info.income.totalAppointmentRefund) }}
2024-05-10 18:00:23 +08:00
</view>
<view class="info_li">
2024-07-02 18:07:01 +08:00
已退款{{displayAmount(info.income.totalManageRefund) }}
2024-05-10 18:00:23 +08:00
</view>
2024-05-14 18:04:34 +08:00
2024-05-10 18:00:23 +08:00
</view>
</view>
<view class="card">
<view class="tit">
2024-12-12 18:02:37 +08:00
<image src="https://lxnapi.ccttiot.com/bike/img/static/uGs0Ayq797AurrBpU8xm" mode="aspectFit"></image>
2024-05-10 18:00:23 +08:00
订单相关
</view>
<view class="info_box">
<view class="one_cont">
<view class="text">
2024-07-02 18:07:01 +08:00
{{displayAmount(info.order.ridingOrder) }}
2024-05-10 18:00:23 +08:00
</view>
<view class="text">
新增行程订单
</view>
</view>
<view class="one_cont">
<view class="text">
2024-07-02 18:07:01 +08:00
{{displayAmount(info.order.paidOrder) }}
2024-05-10 18:00:23 +08:00
</view>
<view class="text">
已支付订单
</view>
</view>
<view class="one_cont">
<view class="text">
2024-07-02 18:07:01 +08:00
{{displayAmount(info.order.refundOrder)}}
2024-05-10 18:00:23 +08:00
</view>
<view class="text">
已退款订单
</view>
</view>
<view class="one_cont">
<view class="text">
2024-07-02 18:07:01 +08:00
{{displayAmount(info.order.unpaidOrder) }}
2024-05-10 18:00:23 +08:00
</view>
<view class="text">
2024-05-14 18:04:34 +08:00
待支付订单
2024-05-10 18:00:23 +08:00
</view>
</view>
</view>
</view>
2024-08-20 18:02:02 +08:00
<!-- <view class="lines"></view> -->
2024-08-23 17:55:37 +08:00
<view class="card" >
2024-05-10 18:00:23 +08:00
<view class="tit">
2024-12-12 18:02:37 +08:00
<image src="https://lxnapi.ccttiot.com/bike/img/static/uBgz6OZvl3KHGGGJ16vy" mode="aspectFit"></image>
2024-05-10 18:00:23 +08:00
车辆相关
</view>
<view class="info_box">
<view class="one_cont">
<view class="text">
2024-07-02 18:07:01 +08:00
{{displayAmount(info.device.inOperationDevice)}}
2024-05-10 18:00:23 +08:00
</view>
<view class="text">
运营中车辆
</view>
</view>
<view class="one_cont">
<view class="text">
2024-07-02 18:07:01 +08:00
{{displayAmount(info.device.inOrderDevice)}}
2024-05-10 18:00:23 +08:00
</view>
<view class="text">
有订单车辆
</view>
</view>
<view class="one_cont">
<view class="text">
2024-07-02 18:07:01 +08:00
{{displayAmount(info.device.noOrderDevice)}}
2024-05-10 18:00:23 +08:00
</view>
<view class="text">
无订单车辆
</view>
</view>
2024-05-14 18:04:34 +08:00
2024-05-10 18:00:23 +08:00
</view>
</view>
<view class="lines"></view>
2024-08-23 17:55:37 +08:00
<view class="card">
2024-05-10 18:00:23 +08:00
<view class="tit">
2024-12-12 18:02:37 +08:00
<image src="https://lxnapi.ccttiot.com/bike/img/static/uCpE3kS6X0uD9q6pWzUu" mode="aspectFit"></image>
2024-05-10 18:00:23 +08:00
用户相关
</view>
<view class="info_box">
<view class="one_cont">
<view class="text">
2024-07-02 18:07:01 +08:00
{{ displayAmount(info.user.totalUser)}}
2024-05-10 18:00:23 +08:00
</view>
<view class="text">
用户总数
</view>
</view>
<view class="one_cont">
<view class="text">
2024-07-02 18:07:01 +08:00
{{displayAmount(info.user.newUser) }}
2024-05-10 18:00:23 +08:00
</view>
<view class="text">
新增用户
</view>
</view>
<view class="one_cont">
<view class="text">
2024-07-02 18:07:01 +08:00
{{displayAmount(info.user.leaseUser) }}
2024-05-10 18:00:23 +08:00
</view>
<view class="text">
租赁用户
</view>
</view>
2024-05-14 18:04:34 +08:00
2024-05-10 18:00:23 +08:00
</view>
</view>
2024-07-02 18:07:01 +08:00
<u-picker mode="time" v-model="time1" :params="params" @confirm="confirm1" :default-time='firsTime'></u-picker>
<u-picker mode="time" v-model="time2" :params="params" @confirm="confirm2" :default-time='lasTime'></u-picker>
2024-08-20 18:02:02 +08:00
<u-mask :show="showtips" :z-index='100' />
<view class="tip_box1" v-if="showtips">
2024-12-12 18:02:37 +08:00
<image class="close" src="https://lxnapi.ccttiot.com/bike/img/static/uyRmNa7d2WThHjr1Jzqk" mode="aspectFit" @click="showtips=false"></image>
2024-08-20 18:02:02 +08:00
<view class="top1">
<view class="tip">
2024-08-21 16:46:15 +08:00
{{tiptit}}
2024-08-20 18:02:02 +08:00
</view>
2024-08-21 16:46:15 +08:00
<view class="txt" v-html="tiptxt">
<!-- {{tiptxt}} -->
2024-08-20 18:02:02 +08:00
</view>
</view>
2024-08-21 16:46:15 +08:00
<!-- <view class="bot1">
2024-08-20 18:02:02 +08:00
<view class="bot_right" @click="showtips=false">
确定
</view>
2024-08-21 16:46:15 +08:00
</view> -->
2024-08-20 18:02:02 +08:00
</view>
2024-05-10 18:00:23 +08:00
</view>
</template>
<script>
export default {
data() {
return {
bgc: {
backgroundColor: "#fff",
},
time1: false,
time2: false,
2024-05-14 18:04:34 +08:00
lasTime: '',
firsTime: '',
2024-05-10 18:00:23 +08:00
params: {
year: true,
month: true,
day: true,
hour: false,
minute: false,
second: false
},
2024-05-14 18:04:34 +08:00
cutidx: 0,
2024-07-02 18:07:01 +08:00
info: {},
areaId: 0,
2024-08-20 18:02:02 +08:00
loading:false,
2024-08-21 16:46:15 +08:00
showtips:false,
tiptxt:'',
tiptit:''
2024-05-10 18:00:23 +08:00
}
},
2024-05-14 18:04:34 +08:00
onLoad() {
let today = new Date();
// 获取七天前的日期
2024-07-02 18:07:01 +08:00
2024-05-14 18:04:34 +08:00
// 格式化日期为 yyyy-MM-dd
this.firsTime = this.formatDate(today);
this.lasTime = this.formatDate(today);
2024-07-02 18:07:01 +08:00
if (uni.getStorageSync('adminAreaid')) {
2024-06-25 09:23:55 +08:00
this.areaId = uni.getStorageSync('adminAreaid')
this.operatingData()
}
2024-07-02 18:07:01 +08:00
2024-05-14 18:04:34 +08:00
},
2024-07-02 18:07:01 +08:00
methods: {
2024-08-20 18:02:02 +08:00
showtipss(num){
if(num==1){
2024-08-21 16:46:15 +08:00
this.tiptxt='该时间段骑车实际利润'
this.tiptit='营业收入'
2024-08-20 18:02:02 +08:00
}else if(num==2){
2024-08-21 16:46:15 +08:00
this.tiptxt='该时间段押金余额'
this.tiptit='押金余额'
2024-08-20 18:02:02 +08:00
}else if(num==3){
2024-08-21 16:46:15 +08:00
this.tiptxt='该时间段账户盈余<br/>总流水减去总支出'
this.tiptit='账户盈余'
2024-08-20 18:02:02 +08:00
}
this.showtips=true
},
2024-07-02 18:07:01 +08:00
displayAmount(amount) {
return amount ? amount : '--';
},
2024-05-14 18:04:34 +08:00
changeTime(num) {
if (num == 0) {
this.cutidx = num;
let today = new Date();
this.firsTime = this.formatDate(today);
this.lasTime = this.formatDate(today);
this.operatingData()
} else if (num == 1) {
this.cutidx = num;
let yesterday = new Date();
yesterday.setDate(yesterday.getDate() - 1);
this.firsTime = this.formatDate(yesterday);
2024-07-02 18:07:01 +08:00
this.lasTime =this.formatDate(yesterday);
2024-05-14 18:04:34 +08:00
this.operatingData()
} else if (num == 2) {
this.cutidx = num;
let today = new Date();
let firstDayOfMonth = new Date(today.getFullYear(), today.getMonth(), 1);
this.firsTime = this.formatDate(firstDayOfMonth);
this.lasTime = this.formatDate(new Date());
this.operatingData()
} else if (num == 3) {
this.cutidx = num;
let today = new Date();
let firstDayOfLastMonth = new Date(today.getFullYear(), today.getMonth() - 1, 1);
let lastDayOfLastMonth = new Date(today.getFullYear(), today.getMonth(), 0);
this.firsTime = this.formatDate(firstDayOfLastMonth);
this.lasTime = this.formatDate(lastDayOfLastMonth);
this.operatingData()
}
},
formatDate(date) {
let year = date.getFullYear();
let month = String(date.getMonth() + 1).padStart(2, '0');
let day = String(date.getDate()).padStart(2, '0');
return `${year}-${month}-${day}`;
},
operatingData() {
let data = {
timeStart: this.firsTime,
timeEnd: this.lasTime,
2024-07-02 18:07:01 +08:00
areaId: this.areaId
2024-05-14 18:04:34 +08:00
}
2024-08-23 17:55:37 +08:00
this.$u.get('/appVerify/operatingData', data).then((res) => {
2024-05-14 18:04:34 +08:00
if (res.code === 200) {
// 处理接口返回的数据,将边界数据转换为地图组件需要的折线结构
2024-07-02 18:07:01 +08:00
this.info = res.data
this.loading=true
2024-05-14 18:04:34 +08:00
}
}).catch(error => {
console.error("Error fetching area data:", error);
});
},
2024-05-10 18:00:23 +08:00
confirm1(e) {
2024-07-02 18:07:01 +08:00
2024-05-10 18:00:23 +08:00
this.firsTime = e.year + '-' + e.month + '-' + e.day
2024-07-02 18:07:01 +08:00
this.cutidx = -1
2024-07-04 18:03:21 +08:00
this.operatingData()
2024-05-10 18:00:23 +08:00
},
confirm2(e) {
this.lasTime = e.year + '-' + e.month + '-' + e.day
2024-07-02 18:07:01 +08:00
this.cutidx = -1
2024-07-04 18:03:21 +08:00
this.operatingData()
2024-05-10 18:00:23 +08:00
},
}
2024-07-02 18:07:01 +08:00
2024-05-10 18:00:23 +08:00
}
</script>
<style lang="scss">
page {
background-color: #fff;
}
.page {
width: 750rpx;
2024-08-20 18:02:02 +08:00
.tip_box1 {
position: fixed;
left: 72rpx;
top: 628rpx;
width: 610rpx;
// height: 282rpx;
background: #FFFFFF;
border-radius: 30rpx 30rpx 30rpx 30rpx;
z-index: 110;
2024-08-21 16:46:15 +08:00
padding-bottom: 10rpx;
.close{
position: absolute;
width: 60rpx;
height: 60rpx;
bottom: -98rpx;
left: 274rpx;
}
2024-08-20 18:02:02 +08:00
.top1 {
padding: 52rpx 38rpx 42rpx 36rpx;
.ipt_box {
margin-top: 22rpx;
display: flex;
flex-wrap: nowrap;
align-items: center;
.text {
width: 350rpx;
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: 24 rpx;
color: #3D3D3D;
}
}
.bot1 {
position: absolute;
width: 610rpx;
// border-top: 2rpx solid #D8D8D8;
display: flex;
flex-wrap: nowrap;
// height: 100%;
// bottom: -20rpx;
justify-content: center;
.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: 30rpx 30rpx 30rpx 30rpx;
width: 60%;
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;
}
}
}
2024-08-19 18:00:46 +08:00
.top_info_box{
2024-08-20 18:02:02 +08:00
padding: 70rpx 50rpx;
display: flex;
justify-content: space-around;
2024-08-19 18:00:46 +08:00
background: #FFFFFF;
box-shadow: 0rpx 4rpx 22rpx 0rpx rgba(0,0,0,0.2);
2024-08-20 18:02:02 +08:00
border-radius: 40rpx 40rpx 0 0;
.info_lis{
display: flex;
flex-wrap: wrap;
width: 180rpx;
.lis_top{
display: inline-flex;
align-items: center;
flex-wrap: nowrap;
font-weight: 500;
font-size: 32rpx;
color: #3D3D3D;
image{
margin-left: 16rpx;
width: 31.83rpx;
height: 31.83rpx;
}
}
.lis_bot{
text-align: center;
margin-top: 16rpx;
font-weight: 500;
font-size: 40rpx;
color: #4C97E7;
}
}
}
.cont_info_box{
padding: 36rpx 38rpx;
display: flex;
flex-wrap: wrap;
background: #FFFFFF;
.info_li2{
width: 100%;
font-weight: 600;
font-size: 32rpx;
color: #3D3D3D;
}
.info_li3{
margin-top: 22rpx;
width: 100%;
font-weight: 400;
font-size: 28rpx;
color: #3D3D3D;
span{
color: #979797;
}
}
2024-08-19 18:00:46 +08:00
}
2024-05-14 18:04:34 +08:00
.lines {
2024-05-10 18:00:23 +08:00
width: 748rpx;
height: 22rpx;
background: #F6F6F6;
border-radius: 0rpx 0rpx 0rpx 0rpx;
}
2024-05-14 18:04:34 +08:00
2024-05-10 18:00:23 +08:00
.cont_box {
padding: 14rpx 30rpx;
width: 750rpx;
background: #F6F6F6;
border-radius: 0rpx 0rpx 0rpx 0rpx;
.cont_info {
margin-top: 8rpx;
display: flex;
flex-wrap: nowrap;
.info_li {
width: 50%;
font-weight: 400;
font-size: 28rpx;
color: #3D3D3D;
}
}
}
2024-05-14 18:04:34 +08:00
.card {
2024-05-10 18:00:23 +08:00
padding: 30rpx 30rpx;
background: #FFFFFF;
// box-shadow: 0rpx 4rpx 22rpx 0rpx rgba(0, 0, 0, 0.2);
width: 750rpx;
// border-radius: 40rpx 40rpx 0 0;
2024-05-14 18:04:34 +08:00
2024-05-10 18:00:23 +08:00
.tit {
display: flex;
flex-wrap: nowrap;
align-items: center;
2024-05-14 18:04:34 +08:00
2024-05-10 18:00:23 +08:00
image {
margin-right: 18rpx;
width: 38rpx;
height: 38rpx;
}
2024-05-14 18:04:34 +08:00
2024-05-10 18:00:23 +08:00
font-weight: 500;
font-size: 32rpx;
color: #3D3D3D;
}
2024-05-14 18:04:34 +08:00
.info_box {
2024-05-10 18:00:23 +08:00
display: flex;
flex-wrap: nowrap;
2024-05-14 18:04:34 +08:00
.one_cont {
2024-05-10 18:00:23 +08:00
display: flex;
flex-wrap: wrap;
2024-05-14 18:04:34 +08:00
.text {
2024-05-10 18:00:23 +08:00
margin-top: 12rpx;
text-align: center;
width: 170rpx;
}
}
}
}
.top_card {
padding: 30rpx 30rpx;
background: #FFFFFF;
box-shadow: 0rpx 4rpx 22rpx 0rpx rgba(0, 0, 0, 0.2);
width: 750rpx;
border-radius: 40rpx 40rpx 0 0;
.info {
margin-top: 28rpx;
display: flex;
flex-wrap: nowrap;
align-items: center;
.info_li {
width: 50%;
}
}
.tit {
display: flex;
flex-wrap: nowrap;
align-items: center;
image {
margin-right: 18rpx;
width: 38rpx;
height: 38rpx;
}
font-weight: 500;
font-size: 32rpx;
color: #3D3D3D;
}
}
.data_box {
width: 672rpx;
margin: 36rpx auto;
display: flex;
flex-wrap: nowrap;
align-items: center;
justify-content: space-between;
.data_cont {
display: flex;
align-items: center;
justify-content: center;
width: 150rpx;
height: 60rpx;
background: #FFFFFF;
box-shadow: 0rpx 4rpx 22rpx 0rpx rgba(0, 0, 0, 0.07);
border-radius: 10rpx 10rpx 10rpx 10rpx;
font-weight: 400;
font-size: 32rpx;
color: #3D3D3D;
border: 2rpx solid #fff;
}
.act1 {
background: #E2F2FF;
box-shadow: 0rpx 4rpx 22rpx 0rpx rgba(0, 0, 0, 0.07);
color: #4C97E7;
border: 2rpx solid #4C97E7;
}
}
.top_box {
display: flex;
flex-wrap: nowrap;
align-items: center;
padding: 28rpx 30rpx;
margin: 20rpx auto;
width: 672rpx;
height: 100rpx;
background: #FFFFFF;
box-shadow: 0rpx 4rpx 22rpx 0rpx rgba(0, 0, 0, 0.07);
border-radius: 10rpx 10rpx 10rpx 10rpx;
.left_text {
width: 25%;
font-weight: 400;
font-size: 32rpx;
color: #3D3D3D;
}
.timebox {
width: 75%;
display: flex;
flex-wrap: nowrap;
align-items: center;
margin-left: 34rpx;
.left_time {
text-align: center;
margin-right: 6rpx;
height: 50rpx;
width: 45%;
border: 2rpx solid #ccc;
border-radius: 12rpx;
font-weight: 400;
font-size: 32rpx;
color: #979797;
}
.right_time {
text-align: center;
margin-left: 6rpx;
height: 50rpx;
width: 45%;
border: 2rpx solid #ccc;
border-radius: 12rpx;
font-weight: 400;
font-size: 32rpx;
color: #979797;
}
}
}
}
</style>