2024-01-27 16:37:52 +08:00
|
|
|
<template>
|
|
|
|
<view class="pages">
|
2024-05-21 18:02:34 +08:00
|
|
|
<u-navbar title="收支明细" :border-bottom="false" :background="bgc" back-icon-color="#fff" title-color='#fff' title-size='36'
|
2024-06-03 16:47:25 +08:00
|
|
|
height='50'></u-navbar>
|
2024-01-27 16:37:52 +08:00
|
|
|
|
2024-03-13 10:54:22 +08:00
|
|
|
|
2024-05-10 17:37:36 +08:00
|
|
|
<view class="cards" v-for="(item,index) in wateringList" :key="index" @click="btndetail(item.billId)" @scrolltolower="onReachBottom">
|
2024-01-27 16:37:52 +08:00
|
|
|
<view class="card_left">
|
2024-06-08 18:04:47 +08:00
|
|
|
<view class="top" v-if="item.type == 1">用户充值</view>
|
|
|
|
<view class="top" v-if="item.type == 2">商户提现</view>
|
2024-01-27 16:37:52 +08:00
|
|
|
<view class="bot">
|
2024-03-25 19:46:07 +08:00
|
|
|
{{item.createTime}}
|
2024-01-27 16:37:52 +08:00
|
|
|
</view>
|
|
|
|
</view>
|
|
|
|
<view class="card_right">
|
2024-06-08 18:04:47 +08:00
|
|
|
<view class="top" v-if="item.type == 1">{{item.suitTime}}分钟</view>
|
2024-01-27 16:37:52 +08:00
|
|
|
<view class="bot">
|
2024-03-25 19:46:07 +08:00
|
|
|
¥{{item.money}}
|
2024-01-27 16:37:52 +08:00
|
|
|
</view>
|
2024-05-10 17:37:36 +08:00
|
|
|
|
2024-01-27 16:37:52 +08:00
|
|
|
</view>
|
|
|
|
</view>
|
2024-03-13 10:54:22 +08:00
|
|
|
|
2024-06-04 14:50:30 +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-05-31 18:00:39 +08:00
|
|
|
src="https://api.ccttiot.com/smartmeter/img/static/uZFUpcz0YZZ4f4RjvGg2" mode=""></image>
|
2024-06-04 14:50:30 +08:00
|
|
|
<view class="" style="font-size: 28rpx;color: #808080;margin-top: 30rpx;">暂无更多收支记录...</view>
|
2024-05-31 18:00:39 +08:00
|
|
|
</view>
|
|
|
|
|
2024-01-27 16:37:52 +08:00
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</view>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
bgc: {
|
2024-05-21 18:02:34 +08:00
|
|
|
backgroundColor: "#8883f0",
|
2024-01-27 16:37:52 +08:00
|
|
|
},
|
2024-03-25 19:46:07 +08:00
|
|
|
obj:{},
|
2024-05-10 17:37:36 +08:00
|
|
|
pagenum: 1,
|
|
|
|
wateringList: [],
|
|
|
|
pagesize: 10, // 一页多少数据
|
|
|
|
isLoading: false, // 是否正在加载数据
|
|
|
|
noMoreData: false, // 是否没有更多数据
|
2024-05-31 18:00:39 +08:00
|
|
|
total: 0,
|
|
|
|
showflag: false
|
2024-01-27 16:37:52 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
onLoad() {
|
2024-03-25 19:46:07 +08:00
|
|
|
this.getList()
|
2024-01-27 16:37:52 +08:00
|
|
|
},
|
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-01-27 16:37:52 +08:00
|
|
|
methods: {
|
2024-03-25 19:46:07 +08:00
|
|
|
// 请求收支列表
|
|
|
|
getList(){
|
|
|
|
this.$u.get("/app/bill/list").then((res) => {
|
|
|
|
if (res.code == 200) {
|
2024-05-10 17:37:36 +08:00
|
|
|
this.total = res.total
|
2024-05-31 18:00:39 +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 {
|
|
|
|
// 没有更多数据
|
|
|
|
this.noMoreData = true;
|
|
|
|
}
|
|
|
|
this.isLoading = false;
|
2024-03-25 19:46:07 +08:00
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
2024-05-10 17:37:36 +08:00
|
|
|
onReachBottom() {
|
|
|
|
let sum = this.total / this.pagesize
|
|
|
|
if (this.pagenum-1 < sum) {
|
|
|
|
this.getList(); // 上拉加载更多
|
|
|
|
} else {
|
|
|
|
uni.showToast({
|
|
|
|
title: '没有更多收支明细记录了',
|
|
|
|
icon: 'none',
|
|
|
|
duration: 1000
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
2024-03-25 19:46:07 +08:00
|
|
|
// 点击查询收支详情
|
|
|
|
btndetail(id){
|
|
|
|
uni.navigateTo({
|
2024-05-10 17:37:36 +08:00
|
|
|
url:'/page_user/order_detail?id=' + id
|
2024-03-25 19:46:07 +08:00
|
|
|
})
|
|
|
|
}
|
2024-01-27 16:37:52 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
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-01-27 16:37:52 +08:00
|
|
|
page {
|
|
|
|
background-color: #F7FAFE;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pages {
|
|
|
|
width: 750rpx;
|
2024-05-10 17:37:36 +08:00
|
|
|
padding-bottom: 200rpx;
|
2024-01-27 16:37:52 +08:00
|
|
|
.tops {
|
|
|
|
margin-top: 20rpx;
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
.tit {
|
|
|
|
margin-left: 36rpx;
|
|
|
|
font-size: 48rpx;
|
|
|
|
font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
|
|
|
|
font-weight: 400;
|
|
|
|
color: #262B37;
|
|
|
|
}
|
|
|
|
|
|
|
|
.more {
|
|
|
|
margin-right: 36rpx;
|
|
|
|
font-size: 28rpx;
|
|
|
|
font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
|
|
|
|
font-weight: 400;
|
|
|
|
color: #8883F0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.cards {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
width: 672rpx;
|
|
|
|
height: 154rpx;
|
|
|
|
background: #FFFFFF;
|
|
|
|
box-shadow: 0rpx 16rpx 40rpx 0rpx rgba(42, 130, 228, 0.1);
|
|
|
|
margin: 18rpx auto;
|
|
|
|
border-radius: 30rpx;
|
|
|
|
.card_left {
|
|
|
|
margin-left: 50rpx;
|
|
|
|
|
|
|
|
.top {
|
2024-06-05 18:07:50 +08:00
|
|
|
font-size: 26rpx;
|
2024-01-27 16:37:52 +08:00
|
|
|
font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
|
|
|
|
font-weight: 400;
|
|
|
|
color: #262B37;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bot {
|
|
|
|
margin-top: 12rpx;
|
2024-06-05 18:07:50 +08:00
|
|
|
font-size: 26rpx;
|
2024-01-27 16:37:52 +08:00
|
|
|
font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
|
|
|
|
font-weight: 400;
|
|
|
|
color: #808080;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.card_right {
|
|
|
|
margin-right: 24rpx;
|
|
|
|
text-align: right;
|
|
|
|
|
|
|
|
.top {
|
|
|
|
margin-top: 12rpx;
|
|
|
|
font-size: 28rpx;
|
|
|
|
font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
|
|
|
|
font-weight: 400;
|
|
|
|
color: #8883F0
|
|
|
|
}
|
|
|
|
|
|
|
|
.bot {
|
|
|
|
margin-top: 12rpx;
|
2024-06-05 18:07:50 +08:00
|
|
|
font-size: 26rpx;
|
2024-01-27 16:37:52 +08:00
|
|
|
font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
|
|
|
|
font-weight: 400;
|
|
|
|
color: #808080;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.btn{
|
|
|
|
margin-left: 116rpx;
|
|
|
|
margin-top: 124rpx;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
width: 520rpx;
|
|
|
|
height: 104rpx;
|
|
|
|
background: #8883F0;
|
|
|
|
box-shadow: 0rpx 16rpx 40rpx 0rpx rgba(42,130,228,0.1);
|
|
|
|
border-radius: 52rpx 52rpx 52rpx 52rpx;
|
|
|
|
|
|
|
|
font-size: 32rpx;
|
|
|
|
font-family: HarmonyOS Sans SC, HarmonyOS Sans SC;
|
|
|
|
font-weight: 400;
|
|
|
|
color: #FFFFFF;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
</style>
|