bike/page_user/good_list.vue

198 lines
4.1 KiB
Vue
Raw Normal View History

2024-05-08 23:18:30 +08:00
<template>
2024-06-07 18:08:55 +08:00
<view class="page" >
<u-navbar title="我的订单" :border-bottom="false" :background="bgc" title-color='#000' title-size='36'
height='45'></u-navbar>
<view class="card" v-for="(item, index) in computedList" :key="index" @click="topage(item)">
<view class="top_li">
<view class="left">
<image src="https://api.ccttiot.com/smartmeter/img/static/upPr9QBpmeFzYN2kXEJj" mode=""></image> 电单车
</view>
<view class="right" v-if="item.status==4&&item.paid==1">
已完成 <view class="iconfont icon-xiangyou1"></view>
</view>
<view class="right" v-if="item.status==4&&item.paid==0" style="color: red;">
待支付 <view class="iconfont icon-xiangyou1"></view>
</view>
</view>
<view class="info">
时间{{ item.createTime }}
</view>
<view class="info">
时长{{ item.duration }}
</view>
2024-06-20 18:08:54 +08:00
<view class="info" v-if="item.distance">
2024-06-25 18:02:39 +08:00
距离{{ (item.distance / 1000).toFixed(2) }} 公里
2024-06-20 18:08:54 +08:00
</view>
<view class="info" v-else>
距离--公里
2024-06-07 18:08:55 +08:00
</view>
<view class="price">
{{item.totalFee}}
</view>
</view>
2024-06-21 18:03:21 +08:00
2024-06-07 18:08:55 +08:00
</view>
2024-05-08 23:18:30 +08:00
</template>
<script>
2024-06-07 18:08:55 +08:00
export default {
data() {
return {
bgc: {
backgroundColor: "#fff",
},
list: []
};
},
computed: {
computedList() {
return this.list.map(item => {
const createTime = new Date(item.createTime);
2024-06-21 18:03:21 +08:00
const payTime = new Date(item.returnTime);
2024-06-07 18:08:55 +08:00
const timeDifference = Math.abs(createTime - payTime);
const hours = Math.floor(timeDifference / (1000 * 60 * 60));
const minutes = Math.floor((timeDifference % (1000 * 60 * 60)) / (1000 * 60));
const seconds = Math.floor((timeDifference % (1000 * 60)) / 1000);
return {
...item,
duration: `${minutes}分钟${seconds}`
};
});
}
},
methods: {
getuserInfo() {
this.$u.get("/getAppInfo").then((res) => {
if (res.code === 200) {
this.userid = res.user.userId;
this.getlist();
} else {
uni.showToast({
title: '未登录,请登录后尝试',
icon: 'none',
duration: 2000
});
}
});
},
topage(item){
2024-06-20 18:08:54 +08:00
2024-06-07 18:08:55 +08:00
if(item.status==4&&item.paid==1){
uni.navigateTo({
url:'/page_user/xcjs?id='+item.orderNo
})
2024-06-20 18:08:54 +08:00
}else {
2024-06-07 18:08:55 +08:00
uni.showToast({
title: '请支付订单后再查看详情',
icon: 'none',
duration: 2000
});
}
},
getlist() {
let data = {
userId: this.userid,
type: '1'
};
this.$u.get("/appVerify/order/list?", data).then((res) => {
if (res.code === 200) {
this.list = res.rows;
} else {
uni.showToast({
title: '未登录,请登录后尝试',
icon: 'none',
duration: 2000
});
}
});
}
},
onShow() {
this.getuserInfo();
}
};
2024-05-08 23:18:30 +08:00
</script>
2024-05-28 17:48:29 +08:00
<style lang="scss">
2024-06-07 18:08:55 +08:00
.page {
background-color: #fff;
padding-bottom: 50rpx;
}
2024-05-28 17:48:29 +08:00
2024-06-07 18:08:55 +08:00
.page .card {
position: relative;
width: 680rpx;
background: #ffffff;
box-shadow: 0rpx 10rpx 64rpx 0rpx rgba(0, 0, 0, 0.08);
border-radius: 20rpx 20rpx 20rpx 20rpx;
padding: 22rpx 28rpx;
margin: 30rpx auto;
}
2024-05-28 17:48:29 +08:00
2024-06-07 18:08:55 +08:00
.page .card .price {
position: absolute;
right: 32rpx;
top: 110rpx;
font-weight: 500;
font-size: 28rpx;
color: #3d3d3d;
}
2024-05-28 17:48:29 +08:00
2024-06-07 18:08:55 +08:00
.page .card .top_li {
margin-bottom: 16rpx;
display: flex;
align-items: center;
justify-content: space-between;
}
2024-05-28 17:48:29 +08:00
2024-06-07 18:08:55 +08:00
.page .card .top_li .left {
display: flex;
flex-wrap: nowrap;
align-items: center;
}
2024-05-28 17:48:29 +08:00
2024-06-07 18:08:55 +08:00
.page .card .top_li .left image {
margin-right: 18rpx;
width: 42rpx;
height: 42rpx;
}
2024-05-28 17:48:29 +08:00
2024-06-07 18:08:55 +08:00
.page .card .top_li .left {
font-weight: 700;
font-size: 32rpx;
color: #3d3d3d;
}
2024-05-28 17:48:29 +08:00
2024-06-07 18:08:55 +08:00
.page .card .top_li .right {
display: flex;
flex-wrap: nowrap;
align-items: center;
font-weight: 400;
font-size: 24rpx;
color: #808080;
}
2024-05-28 17:48:29 +08:00
2024-06-07 18:08:55 +08:00
.page .card .top_li .right .iconfont {
font-size: 20rpx;
}
2024-05-28 17:48:29 +08:00
2024-06-07 18:08:55 +08:00
.page .card .info {
margin-bottom: 12rpx;
font-weight: 400;
font-size: 24rpx;
color: #808080;
}
2024-05-28 17:48:29 +08:00
2024-06-07 18:08:55 +08:00
.page .tip {
margin-top: 52rpx;
width: 100%;
text-align: center;
font-weight: 400;
font-size: 28rpx;
color: #808080;
line-height: 38rpx;
}
</style>