You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

175 lines
4.5 KiB

6 months ago
<template>
<view :style="viewColor">
<view class='bill-details'>
6 months ago
<!-- <view class='nav acea-row'>
6 months ago
<view class='item' :class='type==0 ? "on":""' @click='changeType(0)'>全部</view>
<view class='item' :class='type==1 ? "on":""' @click='changeType(1)'>消费</view>
<view class='item' :class='type==2 ? "on":""' @click='changeType(2)'>充值</view>
6 months ago
</view> -->
6 months ago
<view class='sign-record'>
<view class='list' v-for="(item,index) in userBillList" :key="index">
<view class='item'>
<!-- <view class='data'>{{item.time}}</view> -->
<view class='listn'>
<view class='itemn acea-row row-between-wrapper'>
<view>
<view class='name line1'>{{item.title}}</view>
<view>{{item.create_time}}</view>
</view>
<view class='num' v-if="item.pm ==1">+{{item.number}}</view>
<view class='num p-color' v-else>-{{item.number}}</view>
</view>
</view>
</view>
</view>
<view class='loadingicon acea-row row-center-wrapper' v-if="userBillList.length>0">
<text class='loading iconfont icon-jiazai' :hidden='loading==false'></text>{{loadTitle}}
</view>
<view v-if="userBillList.length == 0">
<emptyPage title="暂无账单的记录哦~"></emptyPage>
</view>
</view>
</view>
</view>
</template>
<script>
// +----------------------------------------------------------------------
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2024 https://www.crmeb.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
// +----------------------------------------------------------------------
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
import { getCommissionInfo } from '@/api/user.js';
import { mapGetters } from "vuex";
import emptyPage from '@/components/emptyPage.vue'
import { toLogin } from '@/libs/login.js';
export default {
components: {
emptyPage
},
data() {
return {
loadTitle: '加载更多',
loading: false,
loadend: false,
page: 1,
limit: 15,
6 months ago
// type: 0,
6 months ago
userBillList: [],
};
},
6 months ago
props:{
type:{
default:0
}
},
watch:{
type:{
immediate:true,
handler:function(newV){
this.userBillList=[]
this.page=1
this.loading = false;
this.loadend = false;
this.type = newV
this.getUserBillList()
}
}
},
6 months ago
computed: mapGetters(['isLogin','viewColor']),
onShow() {
if (this.isLogin) {
this.getUserBillList();
} else {
6 months ago
toLogin()
6 months ago
}
},
/**
* 生命周期函数--监听页面加载
*/
onLoad: function(options) {
this.type = options.type || 0;
},
/**
* 页面上拉触底事件的处理函数
*/
onReachBottom: function() {
this.getUserBillList();
},
methods: {
/**
* 获取账户明细
*/
getUserBillList: function() {
let that = this;
if (that.loadend) return;
if (that.loading) return;
that.loading = true;
that.loadTitle = "";
let data = {
page: that.page,
limit: that.limit,
type:that.type
}
getCommissionInfo(data).then(function(res) {
let list = res.data.list,
loadend = list.length < that.limit;
that.userBillList = that.$util.SplitArray(list, that.userBillList);
that.$set(that, 'userBillList', that.userBillList);
that.loadend = loadend;
that.loading = false;
that.loadTitle = loadend ? "哼😕~我也是有底线的~" : "加载更多";
that.page = that.page + 1;
}, function(res) {
that.loading = false;
that.loadTitle = '加载更多';
});
},
/**
* 切换导航
*/
changeType: function(type) {
this.type = type;
this.loadend = false;
this.page = 1;
this.$set(this, 'userBillList', []);
this.getUserBillList();
},
}
}
</script>
6 months ago
<style lang='scss' scoped>
.bill-details .list {
background: #FFFFFF;
margin:0 15rpx;
margin-bottom:20rpx;
overflow:hidden;
border-radius: 10px;
.itemn{
/* height:120rpx; */
padding:30rpx !important;
margin:0 !important;
align-items: flex-start;
min-height: 60px !important;
height: auto !important;
}
.name{
margin-bottom:24rpx !important;
}
.num{
font-weight: 400;
font-size: 32rpx !important;
color: #116636 !important;
}
6 months ago
}
6 months ago
6 months ago
</style>