2024-05-10 17:37:36 +08:00
|
|
|
|
<template>
|
|
|
|
|
<view class="page">
|
2024-05-21 18:02:34 +08:00
|
|
|
|
<u-navbar title="充值记录" :border-bottom="false" :background="bgc" title-color='#fff' back-icon-color="#fff" title-size='36'
|
|
|
|
|
height='58'></u-navbar>
|
2024-05-10 17:37:36 +08:00
|
|
|
|
<view class="box">
|
|
|
|
|
<view class="list" @scrolltolower="onReachBottom" v-for="(item,index) in wateringList" :key="index">
|
|
|
|
|
<view class="list_val">
|
|
|
|
|
<view class="lt">
|
|
|
|
|
<view class="tit">{{item.deviceName}}</view>
|
|
|
|
|
<view class="wz">地点:{{item.storeName}}</view>
|
|
|
|
|
<view class="wz">订单号:{{item.billNo}}</view>
|
|
|
|
|
<view class="wz">消费时间:{{item.createTime}}</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="rt">
|
|
|
|
|
<!-- <view class="top" v-if="item.status == 2">
|
|
|
|
|
已支付 <u-icon name="arrow-right" color="#808080" size="20" style="margin-left: 10rpx;"></u-icon>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="top" v-if="item.status == 1">
|
|
|
|
|
未支付 <u-icon name="arrow-right" color="#808080" size="20" style="margin-left: 10rpx;"></u-icon>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="top" v-if="item.status == 3">
|
|
|
|
|
已退款 <u-icon name="arrow-right" color="#808080" size="20" style="margin-left: 10rpx;"></u-icon>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="top" v-if="item.status == 4">
|
|
|
|
|
已取消(用户) <u-icon name="arrow-right" color="#808080" size="20" style="margin-left: 10rpx;"></u-icon>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="top" v-if="item.status == 5">
|
|
|
|
|
已取消(系统) <u-icon name="arrow-right" color="#808080" size="20" style="margin-left: 10rpx;"></u-icon>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="top" v-if="item.status == 6">
|
|
|
|
|
支付中 <u-icon name="arrow-right" color="#808080" size="20" style="margin-left: 10rpx;"></u-icon>
|
|
|
|
|
</view> -->
|
|
|
|
|
<view class="je" style="text-align: right;">
|
|
|
|
|
{{item.money}}元
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
bgc: {
|
|
|
|
|
backgroundColor: " #8883F0",
|
|
|
|
|
},
|
|
|
|
|
pagenum: 1,
|
|
|
|
|
wateringList: [],
|
|
|
|
|
pagesize: 10, // 一页多少数据
|
|
|
|
|
isLoading: false, // 是否正在加载数据
|
|
|
|
|
noMoreData: false, // 是否没有更多数据
|
|
|
|
|
total: 0,
|
|
|
|
|
deviceId:''
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
onLoad(option) {
|
|
|
|
|
this.deviceId = option.id
|
|
|
|
|
this.getlist()
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
getlist(){
|
|
|
|
|
this.$u.get('/app/bill/rechargeListByDevice?deviceId='+this.deviceId+ '&pageNum=' + this.pagenum + '&pageSize='+this.pagesize).then((res) => {
|
|
|
|
|
if (res.code == 200) {
|
|
|
|
|
this.total = res.total
|
|
|
|
|
if (res.rows.length > 0) {
|
|
|
|
|
// 有数据,追加到列表
|
|
|
|
|
this.wateringList = this.wateringList.concat(res.rows)
|
|
|
|
|
this.pagenum++
|
|
|
|
|
} else {
|
|
|
|
|
// 没有更多数据
|
|
|
|
|
this.noMoreData = true;
|
|
|
|
|
}
|
|
|
|
|
this.isLoading = false;
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
onReachBottom() {
|
|
|
|
|
let sum = this.total / this.pagesize
|
|
|
|
|
if (this.pagenum-1 < sum) {
|
|
|
|
|
this.getlist(); // 上拉加载更多
|
|
|
|
|
} else {
|
|
|
|
|
uni.showToast({
|
|
|
|
|
title: '没有更多订单记录了',
|
|
|
|
|
icon: 'none',
|
|
|
|
|
duration: 1000
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// btndetail(item){
|
|
|
|
|
// uni.navigateTo({
|
2024-05-10 19:51:14 +08:00
|
|
|
|
// url:'/page_fenbao/statulist/myorder/detailxq/index?billId=' + item.billId
|
2024-05-10 17:37:36 +08:00
|
|
|
|
// })
|
|
|
|
|
// }
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
|
page {
|
|
|
|
|
// background: linear-gradient(180deg, #8883F0 0%, rgba(255, 255, 255, 0) 100%);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.page {
|
|
|
|
|
width: 750rpx;
|
|
|
|
|
// position: fixed;
|
|
|
|
|
// top: 0;
|
|
|
|
|
// left: 0;
|
|
|
|
|
.box{
|
|
|
|
|
width: 750rpx;
|
|
|
|
|
height:100%;
|
|
|
|
|
background: #F4F5F7;
|
|
|
|
|
border-radius: 0rpx 0rpx 0rpx 0rpx;
|
|
|
|
|
padding-top: 22rpx;
|
|
|
|
|
padding-bottom: 300rpx;
|
|
|
|
|
.list{
|
|
|
|
|
width: 680rpx;
|
|
|
|
|
height: 252rpx;
|
|
|
|
|
background: #FFFFFF;
|
|
|
|
|
border-radius: 20rpx 20rpx 20rpx 20rpx;
|
|
|
|
|
margin: auto;
|
|
|
|
|
padding: 34rpx 28rpx;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
margin-bottom: 30rpx;
|
|
|
|
|
.list_val{
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
.lt{
|
|
|
|
|
.tit{
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
font-size: 32rpx;
|
|
|
|
|
color: #3D3D3D;
|
|
|
|
|
}
|
|
|
|
|
.wz{
|
|
|
|
|
font-size: 24rpx;
|
|
|
|
|
color: #808080;
|
|
|
|
|
margin-top: 16rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.rt{
|
|
|
|
|
.top{
|
|
|
|
|
font-size: 24rpx;
|
|
|
|
|
color: #808080;
|
|
|
|
|
}
|
|
|
|
|
.je{
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
color: #3D3D3D;
|
|
|
|
|
margin-top: 66rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|