bike-ali/pages_admin/worke/worke_income.vue

442 lines
9.7 KiB
Vue
Raw Normal View History

2024-05-10 18:00:23 +08:00
<template>
<view class="page">
<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="" style="background: #FFFFFF;width: 750rpx;padding-bottom: 36rpx;">
<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>
2024-05-14 18:04:34 +08:00
<view class="top_box" v-if="typeindex==2" style="margin-top: 20rpx;">
2024-05-10 18:00:23 +08:00
<view class="left_text">
车辆编号
</view>
<view class="sear_ipt">
2024-05-14 18:04:34 +08:00
<input type="text" v-model="searchKeyword" placeholder="请输入内容" class="input"
placeholder-style="color:#C7CDD3" @input="search()">
2024-05-10 18:00:23 +08:00
</view>
</view>
<view class="data_box">
2024-05-14 18:04:34 +08:00
<view class="data_cont " :class="typeindex==1?'act1':''" @click="changeType(1)">
2024-05-10 18:00:23 +08:00
按日期
</view>
2024-05-14 18:04:34 +08:00
<view class="data_cont" :class="typeindex==2?'act1':''" @click="changeType(2)">
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>
2024-05-14 18:04:34 +08:00
<view class="cont_box" v-if="typeindex==1">
2024-05-10 18:00:23 +08:00
<view class="cont_info">
<view class="info_li" style="color:#4C97E7 ;">
2024-05-14 18:04:34 +08:00
已支付{{infoList.totalPayFee}}
2024-05-10 18:00:23 +08:00
</view>
<view class="info_li" style="color:#4C97E7 ;">
2024-05-14 18:04:34 +08:00
已退款{{infoList.totalRefundFee}}
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
手续费{{infoList.totalServiceFee}}
2024-05-10 18:00:23 +08:00
</view>
<view class="info_li" style="color:#4C97E7 ;">
2024-05-14 18:04:34 +08:00
收入{{infoList.totalIncome}}
</view>
</view>
</view>
<view class="info_card" style="margin-top: 20rpx;" v-for="(item,index) in infoList.reconciliationList"
:key="index" v-if="typeindex==1">
<view class="info_tit">
{{item.day}}
</view>
<view class="lines"></view>
<view class="cont">
<view class="info_li">
<view class="half_infoli">
支付金额<span> {{item.payFee}}</span>
</view>
<view class="half_infoli">
已退款<span> {{item.refundFee}}</span>
</view>
</view>
<view class="info_li">
<view class="half_infoli">
手续费<span>{{item.serviceFee}}</span>
</view>
<view class="half_infoli">
收入<span style="color:#4C97E7 ;">{{item.income}}</span>
</view>
2024-05-10 18:00:23 +08:00
</view>
</view>
</view>
2024-05-14 18:04:34 +08:00
<view class="info_card" style="margin-top: 20rpx;" v-for="(item,index) in infoList.reconciliationList"
:key="index" v-if="typeindex==2">
2024-05-10 18:00:23 +08:00
<view class="info_tit">
2024-05-14 18:04:34 +08:00
{{item.sn}}
2024-05-10 18:00:23 +08:00
</view>
<view class="lines"></view>
<view class="cont">
2024-05-14 18:04:34 +08:00
2024-05-10 18:00:23 +08:00
<view class="info_li">
<view class="half_infoli">
2024-05-14 18:04:34 +08:00
支付金额<span> {{item.payFee}}</span>
2024-05-10 18:00:23 +08:00
</view>
<view class="half_infoli">
2024-05-14 18:04:34 +08:00
已退款<span> {{item.refundFee}}</span>
2024-05-10 18:00:23 +08:00
</view>
</view>
<view class="info_li">
<view class="half_infoli">
2024-05-14 18:04:34 +08:00
手续费<span>{{item.serviceFee}}</span>
2024-05-10 18:00:23 +08:00
</view>
<view class="half_infoli">
2024-05-14 18:04:34 +08:00
收入<span style="color:#4C97E7 ;">{{item.income}}</span>
2024-05-10 18:00:23 +08:00
</view>
</view>
</view>
</view>
2024-05-14 18:04:34 +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-05-10 18:00:23 +08:00
</view>
</template>
<script>
2024-05-14 18:04:34 +08:00
let timerId;
2024-05-10 18:00:23 +08:00
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
typeindex: 1,
infoList: [],
searchKeyword: ''
2024-05-10 18:00:23 +08:00
}
},
2024-05-14 18:04:34 +08:00
onLoad() {
let today = new Date();
// 获取七天前的日期
let sevenDaysAgo = new Date(today.getTime() - 7 * 24 * 60 * 60 * 1000);
// 格式化日期为 yyyy-MM-dd
this.firsTime = this.formatDate(sevenDaysAgo);
this.lasTime = this.formatDate(today);
this.operatingData()
},
onReady() {
// this.firsTime = this.formatDate(sevenDaysAgo);
// this.lasTime = this.formatDate(today);
},
2024-05-10 18:00:23 +08:00
methods: {
2024-05-14 18:04:34 +08:00
search() {
clearTimeout(timerId);
timerId = setTimeout(() => {
this.operatingData()
}, 500);
},
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,
type: this.typeindex,
sn: this.searchKeyword
}
this.$u.get('/appVerify/reconciliation', data).then((res) => {
if (res.code === 200) {
// 处理接口返回的数据,将边界数据转换为地图组件需要的折线结构
this.infoList = res.data
}
}).catch(error => {
console.error("Error fetching area data:", error);
});
},
2024-05-10 18:00:23 +08:00
confirm1(e) {
2024-05-14 18:04:34 +08:00
this.firsTime = e.year + '-' + e.month + '-' + e.day;
// 计算时间间隔
let timeDiff = this.calculateTimeDifference(this.firsTime, this.lasTime);
if (timeDiff > 60) {
// 提示用户
// 示例uMessage.warning('时间区间不能超过60天');
// 或者根据您的需求采取其他措施
uni.showToast({
title: '选择时间区间需要小于60天',
icon: 'none',
duration: 2000
});
}else{
this.operatingData();
}
2024-05-10 18:00:23 +08:00
2024-05-14 18:04:34 +08:00
// 更新 firisttime
// 进行其他操作
// this.operatingData();
},
calculateTimeDifference(startTime, endTime) {
let start = new Date(startTime).getTime();
let end = new Date(endTime).getTime();
let diff = Math.abs(end - start);
return Math.ceil(diff / (1000 * 60 * 60 * 24));
2024-05-10 18:00:23 +08:00
},
confirm2(e) {
2024-05-14 18:04:34 +08:00
// 计算时间间隔
this.lasTime = e.year + '-' + e.month + '-' + e.day;
let timeDiff = this.calculateTimeDifference(this.firsTime, this.lasTime);
if (timeDiff > 60) {
uni.showToast({
title: '选择时间区间需要小于60天',
icon: 'none',
duration: 2000
});
// 提示用户
// 示例uMessage.warning('时间区间不能超过60天');
// 或者根据您的需求采取其他措施
return; // 中断操作
}else{
this.operatingData();
}
2024-05-10 18:00:23 +08:00
2024-05-14 18:04:34 +08:00
// 更新 lasttime
// 进行其他操作
//
2024-05-10 18:00:23 +08:00
},
2024-05-14 18:04:34 +08:00
changeType(num) {
this.typeindex = num
if (this.typeindex == 1) {
this.operatingData()
} else {
2024-06-03 18:06:08 +08:00
2024-05-14 18:04:34 +08:00
this.infoList = []
2024-06-03 18:06:08 +08:00
2024-05-14 18:04:34 +08:00
}
2024-05-10 18:00:23 +08:00
}
}
}
</script>
<style lang="scss">
page {
background-color: #F6F6F6;
}
.page {
width: 750rpx;
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
.info_card {
background: #FFFFFF;
2024-05-14 18:04:34 +08:00
2024-05-10 18:00:23 +08:00
.info_tit {
display: flex;
flex-wrap: nowrap;
padding: 22rpx 28rpx;
font-weight: 600;
font-size: 32rpx;
color: #3D3D3D;
2024-05-14 18:04:34 +08:00
2024-05-10 18:00:23 +08:00
.money {
margin-left: auto;
font-weight: 500;
font-size: 32rpx;
color: #4C97E7;
}
}
2024-05-14 18:04:34 +08:00
2024-05-10 18:00:23 +08:00
.lines {
width: 750rpx;
height: 2rpx;
border: 2rpx solid #ccc;
}
2024-05-14 18:04:34 +08:00
2024-05-10 18:00:23 +08:00
.cont {
padding: 26rpx 28rpx;
2024-05-14 18:04:34 +08:00
2024-05-10 18:00:23 +08:00
.info_li {
display: flex;
flex-wrap: nowrap;
font-weight: 400;
font-size: 28rpx;
color: #808080;
2024-05-14 18:04:34 +08:00
2024-05-10 18:00:23 +08:00
span {
color: #3D3D3D;
}
2024-05-14 18:04:34 +08:00
2024-05-10 18:00:23 +08:00
line-height: 48rpx;
2024-05-14 18:04:34 +08:00
2024-05-10 18:00:23 +08:00
.half_infoli {
2024-05-14 18:04:34 +08:00
display: flex;
flex-wrap: nowrap;
2024-05-10 18:00:23 +08:00
width: 50%;
font-weight: 400;
font-size: 28rpx;
color: #808080;
2024-05-14 18:04:34 +08:00
2024-05-10 18:00:23 +08:00
span {
color: #3D3D3D;
}
2024-05-14 18:04:34 +08:00
.input {
2024-05-10 18:00:23 +08:00
width: 30%;
}
}
}
}
}
2024-05-14 18:04:34 +08:00
2024-05-10 18:00:23 +08:00
.cont_box {
padding: 14rpx 30rpx;
width: 750rpx;
background: #E2F2FF;
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
2024-05-10 18:00:23 +08:00
.data_box {
width: 672rpx;
margin: 36rpx auto;
display: flex;
flex-wrap: nowrap;
align-items: center;
// justify-content: space-between;
2024-05-14 18:04:34 +08:00
2024-05-10 18:00:23 +08:00
.data_cont {
margin-right: 40rpx;
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 {
2024-05-14 18:04:34 +08:00
2024-05-10 18:00:23 +08:00
display: flex;
flex-wrap: nowrap;
align-items: center;
padding: 28rpx 30rpx;
// padding: 20rpx 0;
2024-05-14 18:04:34 +08:00
2024-05-10 18:00:23 +08:00
margin: 0 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>