CarRental/pages/my.vue

412 lines
9.0 KiB
Vue
Raw Normal View History

2024-05-08 23:18:30 +08:00
<template>
<view class="page">
2024-09-19 17:33:39 +08:00
<u-navbar :is-back="false" title="订单管理" :border-bottom="false" :background="bgc" title-color='#2E4975' title-size='36' height='45'></u-navbar>
2024-07-10 18:01:47 +08:00
2024-09-19 17:33:39 +08:00
<view class="tap">
<view class="tap_cont " :class="curtitidx==0?'act1':''" @click="changeidx(0)">
全部
2024-05-08 23:18:30 +08:00
</view>
2024-09-19 17:33:39 +08:00
<view class="tap_cont" :class="curtitidx==1?'act1':''" @click="changeidx(1)">
进行中
</view>
<view class="tap_cont" :class="curtitidx==2?'act1':''" @click="changeidx(2)">
待支付
</view>
<view class="tap_cont" :class="curtitidx==3?'act1':''" @click="changeidx(3)">
已完成
</view>
<view class="tap_cont" :class="curtitidx==4?'act1':''" @click="changeidx(4)" v-if="areainfo.returnVerify==01">
待审核
</view>
</view>
2024-09-05 18:00:43 +08:00
2024-09-19 17:33:39 +08:00
<u-mask :show="show" :z-index='100' />
2024-06-24 17:59:49 +08:00
2024-09-19 17:33:39 +08:00
<view class="warp_box">
<swiper class="swiper" :style="{ height: swiperHeight + 'rpx' }" :current='curtitidx' @change="swiperchange" style="padding-bottom: 50rpx;" next-margin='0rpx'>
<swiper-item>
<view class="swiper-item">
<view class="card">
<view class="btn_box">
<view class="btn1">续租</view>
<view class="btn2">还车</view>
2024-05-08 23:18:30 +08:00
</view>
2024-09-19 17:33:39 +08:00
<view class="info_li">
<view class="txt">还车时间2024-09-11 13:56</view>
<view class="txt3" style="color: #4297F3;">待取车</view>
2024-05-08 23:18:30 +08:00
</view>
2024-09-19 17:33:39 +08:00
<view class="info_li">
<view class="txt">还车方式自行前往门店</view>
2024-05-08 23:18:30 +08:00
</view>
2024-09-19 17:33:39 +08:00
<view class="info_li">
<view class="txt">用户地址福鼎市太姥山镇秦屿大道2号</view>
<view class="txt2">118.8</view>
2024-05-15 18:02:17 +08:00
</view>
2024-09-19 17:33:39 +08:00
<view class="line"></view>
<view class="info_li">
<view class="txt">门店云行租车汇丰公寓</view>
2024-06-22 18:06:23 +08:00
</view>
2024-09-19 17:33:39 +08:00
<view class="info_li">
<view class="txt">车型全新车网红泡泡</view>
2024-05-08 23:18:30 +08:00
</view>
</view>
</view>
2024-09-19 17:33:39 +08:00
</swiper-item>
2024-06-24 17:59:49 +08:00
2024-09-19 17:33:39 +08:00
<swiper-item>
<view class="swiper-item">
<view class="card">
<!-- Add content here -->
2024-05-08 23:18:30 +08:00
</view>
2024-09-19 17:33:39 +08:00
</view>
</swiper-item>
2024-06-24 17:59:49 +08:00
2024-09-19 17:33:39 +08:00
<swiper-item>
<view class="swiper-item">
<!-- Add content here -->
</view>
</swiper-item>
2024-06-24 17:59:49 +08:00
2024-09-19 17:33:39 +08:00
<swiper-item>
<view class="swiper-item">
<view class="card">
<!-- Add content here -->
2024-05-08 23:18:30 +08:00
</view>
</view>
2024-09-19 17:33:39 +08:00
</swiper-item>
<swiper-item>
<view class="swiper-item">
<!-- Add content here -->
2024-09-03 18:02:16 +08:00
</view>
2024-09-19 17:33:39 +08:00
</swiper-item>
</swiper>
2024-07-10 18:01:47 +08:00
</view>
2024-09-05 18:00:43 +08:00
2024-09-19 17:33:39 +08:00
<!-- <u-select v-model="shows" :list="list" title='添加方式' @confirm="searchconfirm"></u-select> -->
<TabBar :indexs='2' style=""></TabBar>
2024-05-08 23:18:30 +08:00
</view>
</template>
<script>
export default {
2024-09-19 17:33:39 +08:00
2024-05-08 23:18:30 +08:00
data() {
return {
2024-09-19 17:33:39 +08:00
bgc: {
backgroundColor: "#fff",
2024-05-08 23:18:30 +08:00
},
2024-07-10 18:01:47 +08:00
2024-09-19 17:33:39 +08:00
searchKeyword: '',
curtitidx: 0,
swiperHeight: 400,
2024-05-08 23:18:30 +08:00
}
},
2024-09-19 17:33:39 +08:00
onShow() {
2024-07-10 18:01:47 +08:00
},
2024-09-19 17:33:39 +08:00
watch: {
curtitidx(newValue, oldValue) {
// 处理userId变化的逻辑
console.log('userId 发生变化', newValue, oldValue);
// if (newValue == 0) {
// this.swiperHeight = (this.allList.length * 440)
// } else if (newValue == 1) {
// this.swiperHeight = this.ingList.length * 440
// } else if (newValue == 2) {
// this.swiperHeight = this.reprement.length * 440
// } else if (newValue == 3) {
// this.swiperHeight = this.alreadyList.length * 440
// }
}
2024-05-08 23:18:30 +08:00
},
2024-06-24 17:59:49 +08:00
computed: {
2024-09-19 17:33:39 +08:00
userId() {
return this.$store.getters.userId;
2024-06-24 17:59:49 +08:00
},
},
2024-09-19 17:33:39 +08:00
computed: {
2024-09-05 18:00:43 +08:00
2024-09-19 17:33:39 +08:00
},
onReachBottom() {
// 触底时增加 pageNum 并调用 getlist 获取更多数据
this.pageNum++;
if (this.curtitidx == 0) {
this.orderList()
2024-09-05 18:00:43 +08:00
2024-09-19 17:33:39 +08:00
} else if (this.curtitidx == 1) {
this.orderList1()
2024-09-05 18:00:43 +08:00
2024-09-19 17:33:39 +08:00
} else if (this.curtitidx == 2) {
this.orderList2()
2024-09-05 18:00:43 +08:00
2024-09-19 17:33:39 +08:00
} else if (this.curtitidx == 3) {
this.orderList3()
2024-09-05 18:00:43 +08:00
2024-09-19 17:33:39 +08:00
} else if (this.curtitidx == 4) {
this.orderList4()
2024-09-05 18:00:43 +08:00
2024-09-19 17:33:39 +08:00
}
},
methods: {
async swiperchange(e) {
// this.curtitidx = e.detail.current
// console.log( this.curtitidx,'eee');
// // this.pageNum=1
// // this.allList=[]
// // this.ingList=[]
// // this.reprement=[]
// // this.alreadyList=[]
// if ( e.detail.current == 0) {
// this.orderList()
// } else if ( e.detail.current == 1) {
// this.orderList1()
// } else if ( e.detail.current == 2) {
// this.orderList2()
// } else if ( e.detail.current == 3) {
// this.orderList3()
// }else if ( e.detail.current ==4 ) {
// this.orderList4()
// }
2024-09-03 18:02:16 +08:00
},
2024-09-19 17:33:39 +08:00
async changeidx(idx) {
// this.pageNum=1
// this.allList=[]
// this.ingList=[]
// this.reprement=[]
// this.alreadyList=[]
// if (idx == 0) {
// this.orderList()
// } else if (idx == 1) {
// this.orderList1()
// } else if (idx == 2) {
// this.orderList2()
// } else if (idx == 3) {
// this.orderList3()
// } else if (idx == 4) {
// this.orderList4()
// }
2024-09-05 18:00:43 +08:00
},
2024-09-19 17:33:39 +08:00
formatDate(value) {
if (!value) return '';
let date = new Date(value);
let month = date.getMonth() + 1; // 月份从0开始计数所以加1
let day = date.getDate();
let hours = date.getHours();
let minutes = date.getMinutes();
// 确保月份、日期、小时和分钟都是两位数
month = month < 10 ? '0' + month : month;
day = day < 10 ? '0' + day : day;
hours = hours < 10 ? '0' + hours : hours;
minutes = minutes < 10 ? '0' + minutes : minutes;
return `${month}-${day} ${hours}:${minutes}`;
2024-06-25 09:23:55 +08:00
},
2024-09-19 17:33:39 +08:00
searchconfirm(e) {
// console.log(e,'eeeeeeeeee');
this.typeidx = e[0].value
this.tit = e[0].label
2024-07-10 18:01:47 +08:00
2024-09-19 17:33:39 +08:00
// console.log(e);
// this.mode = e[0].label
// this.gettype()
2024-06-24 17:59:49 +08:00
},
2024-07-10 18:01:47 +08:00
2024-06-24 17:59:49 +08:00
2024-05-08 23:18:30 +08:00
}
}
</script>
<style lang="scss">
page {
2024-09-19 17:33:39 +08:00
background-color: #F7F7F7;
2024-05-08 23:18:30 +08:00
}
.page {
width: 750rpx;
2024-09-05 18:00:43 +08:00
2024-09-19 17:33:39 +08:00
.warp_box {
.swiper {
.swiper-item {
.card {
position: relative;
margin: 0 auto;
margin-top: 20rpx;
width: 714rpx;
padding: 32rpx 24rpx;
background: #FFFFFF;
border-radius: 20rpx 20rpx 20rpx 20rpx;
.line{
margin-top: 26rpx;
width: 100%;
height: 1rpx;
background: #D8D8D8;
}
.txt {
font-weight: 400;
font-size: 26rpx;
color: #3D3D3D;
}
2024-09-05 18:00:43 +08:00
2024-09-19 17:33:39 +08:00
.info_li:first-child {
margin-top: 0;
}
.btn_box{
display: flex;
flex-wrap: nowrap;
position: absolute;
right: 26rpx;
bottom: 54rpx;
.btn1{
display: flex;
align-items: center;
justify-content: center;
width: 106rpx;
height: 52rpx;
border-radius: 8rpx 8rpx 8rpx 8rpx;
border: 2rpx solid #4297F3;
font-weight: 400;
font-size: 26rpx;
color: #4297F3;
}
.btn2{
margin-left: 28rpx;
display: flex;
align-items: center;
justify-content: center;
width: 106rpx;
height: 52rpx;
background: #4297F3;
border-radius: 8rpx 8rpx 8rpx 8rpx;
border: 2rpx solid #4297F3;
font-weight: 400;
font-size: 26rpx;
color: #FFFFFF;
}
}
.info_li {
margin-top: 18rpx;
width: 100%;
display: flex;
flex-wrap: nowrap;
align-items: center;
justify-content: space-between;
.txt1 {
font-weight: 400;
font-size: 30rpx;
color: #6F6F6F;
}
2024-09-05 18:00:43 +08:00
2024-09-19 17:33:39 +08:00
.txt2 {
font-weight: 600;
font-size: 32rpx;
color: #3D3D3D;
}
}
2024-09-05 18:00:43 +08:00
}
}
}
2024-09-03 18:02:16 +08:00
}
2024-09-05 18:00:43 +08:00
2024-09-19 17:33:39 +08:00
.tap {
padding-top: 24rpx;
width: 750rpx;
display: flex;
flex-wrap: nowrap;
align-items: center;
justify-content: space-around;
background: #FFFFFF;
2024-09-05 18:00:43 +08:00
2024-09-19 17:33:39 +08:00
.tap_cont {
text-align: center;
padding-bottom: 15rpx;
width: 100rpx;
2024-09-02 18:02:31 +08:00
font-weight: 500;
2024-09-19 17:33:39 +08:00
font-size: 32rpx;
color: #3D3D3D;
border-bottom: 6rpx solid #fff;
2024-09-02 18:02:31 +08:00
}
2024-09-05 18:00:43 +08:00
2024-09-19 17:33:39 +08:00
.act1 {
border-bottom: 6rpx solid #4C97E7;
color: #4C97E7;
2024-09-02 18:02:31 +08:00
}
}
2024-09-05 18:00:43 +08:00
2024-09-19 17:33:39 +08:00
.top_box {
display: flex;
2024-09-19 17:33:39 +08:00
flex-wrap: nowrap;
align-items: center;
2024-09-19 17:33:39 +08:00
padding: 28rpx 30rpx;
// padding: 20rpx 0;
2024-09-05 18:00:43 +08:00
margin: 0 auto;
2024-09-19 17:33:39 +08:00
width: 672rpx;
height: 100rpx;
background: #FFFFFF;
box-shadow: 0rpx 4rpx 22rpx 0rpx rgba(0, 0, 0, 0.07);
border-radius: 10rpx 10rpx 10rpx 10rpx;
2024-09-05 18:00:43 +08:00
2024-09-19 17:33:39 +08:00
.left_text {
2024-07-10 18:01:47 +08:00
display: flex;
flex-wrap: nowrap;
2024-09-19 17:33:39 +08:00
align-items: center;
width: 25%;
2024-07-10 18:01:47 +08:00
font-weight: 400;
font-size: 32rpx;
2024-09-19 17:33:39 +08:00
color: #3D3D3D;
2024-09-05 18:00:43 +08:00
2024-09-19 17:33:39 +08:00
.icon-xiangxia1 {
font-size: 26rpx;
2024-07-10 18:01:47 +08:00
}
}
2024-09-05 18:00:43 +08:00
2024-09-19 17:33:39 +08:00
.timebox {
width: 75%;
2024-07-10 18:01:47 +08:00
display: flex;
2024-09-19 17:33:39 +08:00
flex-wrap: nowrap;
align-items: center;
margin-left: 34rpx;
2024-09-05 18:00:43 +08:00
2024-09-19 17:33:39 +08:00
.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;
2024-07-10 18:01:47 +08:00
}
2024-09-05 18:00:43 +08:00
2024-09-19 17:33:39 +08:00
.right_time {
2024-07-10 18:01:47 +08:00
text-align: center;
2024-09-19 17:33:39 +08:00
margin-left: 6rpx;
height: 50rpx;
width: 45%;
border: 2rpx solid #ccc;
border-radius: 12rpx;
2024-07-10 18:01:47 +08:00
font-weight: 400;
2024-09-19 17:33:39 +08:00
font-size: 32rpx;
color: #979797;
2024-07-10 18:01:47 +08:00
}
}
}
2024-09-05 18:00:43 +08:00
2024-06-24 17:59:49 +08:00
2024-05-08 23:18:30 +08:00
}
</style>