smartswrtch-app/page_user/cbRecord.vue

195 lines
5.6 KiB
Vue
Raw Normal View History

2024-05-10 17:37:36 +08:00
<template>
<view class="page">
2024-11-11 18:01:14 +08:00
<!-- #ifdef MP-ALIPAY -->
<u-navbar title="充值记录" :border-bottom="false" :background="bgc" title-color='#fff' back-icon-color="#fff" title-size='36'
height='50'></u-navbar>
<!-- #endif -->
<!-- #ifdef MP-WEIXIN -->
<u-navbar title="充值记录" :border-bottom="false" :background="bgc" title-color='#fff' back-icon-color="#fff" title-size='36'
height='50'></u-navbar>
<!-- #endif -->
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>
2024-07-18 18:06:40 +08:00
<view class="wz">地点{{item.storeAddress == null ? '--' : item.storeAddress.length > 15 ? item.storeAddress.slice(0, 15) + '...' : item.storeAddress}}</view>
2024-05-10 17:37:36 +08:00
<view class="wz">订单号{{item.billNo}}</view>
<view class="wz">消费时间{{item.createTime}}</view>
</view>
<view class="rt">
2024-07-29 18:03:40 +08:00
<view class="top" v-if="item.status == 2">
已支付
<!-- <u-icon name="arrow-right" color="#808080" size="20" style="margin-left: 10rpx;"></u-icon> -->
2024-05-10 17:37:36 +08:00
</view>
<view class="top" v-if="item.status == 1">
2024-07-29 18:03:40 +08:00
未支付
<!-- <u-icon name="arrow-right" color="#808080" size="20" style="margin-left: 10rpx;"></u-icon> -->
2024-05-10 17:37:36 +08:00
</view>
<view class="top" v-if="item.status == 3">
2024-07-29 18:03:40 +08:00
已退款
<!-- <u-icon name="arrow-right" color="#808080" size="20" style="margin-left: 10rpx;"></u-icon> -->
2024-05-10 17:37:36 +08:00
</view>
<view class="top" v-if="item.status == 4">
2024-07-29 18:03:40 +08:00
已取消(用户)
<!-- <u-icon name="arrow-right" color="#808080" size="20" style="margin-left: 10rpx;"></u-icon> -->
2024-05-10 17:37:36 +08:00
</view>
<view class="top" v-if="item.status == 5">
2024-07-29 18:03:40 +08:00
已取消(系统)
<!-- <u-icon name="arrow-right" color="#808080" size="20" style="margin-left: 10rpx;"></u-icon> -->
2024-05-10 17:37:36 +08:00
</view>
<view class="top" v-if="item.status == 6">
2024-07-29 18:03:40 +08:00
支付中
<!-- <u-icon name="arrow-right" color="#808080" size="20" style="margin-left: 10rpx;"></u-icon> -->
</view>
2024-05-10 17:37:36 +08:00
<view class="je" style="text-align: right;">
{{item.money}}
</view>
</view>
</view>
</view>
2024-07-27 18:43:42 +08:00
<view v-if="jlflag" class="" style="font-size: 28rpx;color: red;margin-top: 30rpx;width: 100%;text-align: center;">-没有更多记录了-</view>
2024-06-18 13:43:37 +08:00
<view class="" v-if="showflag" style="width: 100%;height: 200rpx;margin: auto;margin-top: 170rpx;text-align: center;">
<image style="width: 200rpx;height: 200rpx;"
2024-11-08 18:01:35 +08:00
src="https://api.ccttiot.com/smartmeter/img/static/uZFUpcz0YZZ4f4RjvGg2" mode="aspectFit"></image>
2024-06-18 13:43:37 +08:00
<view class="" style="font-size: 28rpx;color: #808080;margin-top: 30rpx;">暂无更多充值记录...</view>
</view>
2024-05-10 17:37:36 +08:00
</view>
</view>
</template>
<script>
export default {
data() {
return {
bgc: {
backgroundColor: " #8883F0",
},
pagenum: 1,
wateringList: [],
pagesize: 10, // 一页多少数据
isLoading: false, // 是否正在加载数据
noMoreData: false, // 是否没有更多数据
total: 0,
2024-06-18 13:43:37 +08:00
deviceId:'',
2024-07-27 18:43:42 +08:00
showflag:false,
jlflag:false
2024-05-10 17:37:36 +08:00
}
},
onLoad(option) {
this.deviceId = option.id
this.getlist()
},
2024-07-17 17:59:51 +08:00
// 分享到好友(会话)
onShareAppMessage: function () {
return {
title: '创想物联',
path: '/pages/shouye/index'
}
},
// 分享到朋友圈
onShareTimeline: function () {
return {
title: '创想物联',
query: '',
path: '/pages/shouye/index'
}
},
2024-05-10 17:37:36 +08:00
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
2024-06-18 13:43:37 +08:00
if (this.total > 0) {
this.showflag = false
} else {
this.showflag = true
}
2024-05-10 17:37:36 +08:00
if (res.rows.length > 0) {
// 有数据,追加到列表
this.wateringList = this.wateringList.concat(res.rows)
this.pagenum++
} else {
// 没有更多数据
2024-08-06 18:04:09 +08:00
this.noMoreData = true
2024-05-10 17:37:36 +08:00
}
2024-08-06 18:04:09 +08:00
this.isLoading = false
2024-05-10 17:37:36 +08:00
}
})
},
onReachBottom() {
let sum = this.total / this.pagesize
if (this.pagenum-1 < sum) {
this.getlist(); // 上拉加载更多
} else {
2024-07-27 18:43:42 +08:00
this.jlflag = true
2024-05-10 17:37:36 +08:00
}
},
}
}
</script>
<style lang="scss">
2024-05-24 16:48:42 +08:00
/deep/ .u-title{
2024-06-03 16:47:25 +08:00
padding-bottom: 22rpx;
2024-05-24 16:48:42 +08:00
}
/deep/ .u-icon__icon{
2024-06-03 16:47:25 +08:00
padding-bottom: 22rpx;
2024-05-24 16:48:42 +08:00
}
2024-05-10 17:37:36 +08:00
page {
2024-06-04 14:50:30 +08:00
background: #F4F5F7;
2024-05-10 17:37:36 +08:00
}
.page {
width: 750rpx;
.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{
2024-06-05 18:07:50 +08:00
font-size: 26rpx;
2024-05-10 17:37:36 +08:00
color: #808080;
margin-top: 16rpx;
}
}
.rt{
.top{
2024-06-05 18:07:50 +08:00
font-size: 26rpx;
2024-05-10 17:37:36 +08:00
color: #808080;
}
.je{
font-weight: 600;
font-size: 28rpx;
color: #3D3D3D;
margin-top: 66rpx;
}
}
}
}
}
}
</style>