kaiguan-zfb/page_user/cbRecord.vue
2024-06-03 16:47:25 +08:00

165 lines
4.4 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<view class="page">
<u-navbar title="充值记录" :border-bottom="false" :background="bgc" title-color='#fff' back-icon-color="#fff" title-size='36'
height='50'></u-navbar>
<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({
// url:'/page_fenbao/statulist/myorder/detailxq/index?billId=' + item.billId
// })
// }
}
}
</script>
<style lang="scss">
/deep/ .u-title{
padding-bottom: 22rpx;
}
/deep/ .u-icon__icon{
padding-bottom: 22rpx;
}
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>