122 lines
2.5 KiB
Vue
122 lines
2.5 KiB
Vue
<template>
|
|
<view style="text-align: left">
|
|
<view v-if="list.length" v-for="(item, index) in list" :key="index" class="item">
|
|
<view>
|
|
|
|
<view style="color: #000000;font-size: 28upx;">
|
|
<view style="margin-bottom: 8upx;"> 类型: {{item.title}}</view>
|
|
<view style="margin-bottom: 8upx"> 内容: {{item.content}}</view>
|
|
<view style="margin-bottom: 8upx"> 时间: {{item.createTime}}</view>
|
|
<view style="margin-bottom: 8upx;text-align: right;">
|
|
<!-- 提现金额: -->
|
|
<text v-if="item.type==2" style="color: #FD6416;font-size: 32upx;font-weight: 600"> - ¥{{item.money}}</text>
|
|
<text v-if="item.type==1" style="color: #FD6416;font-size: 32upx;font-weight: 600">+ ¥{{item.money}}</text>
|
|
</view>
|
|
</view>
|
|
|
|
</view>
|
|
</view>
|
|
<view class="page-box" v-if="!list.length">
|
|
<view class="centre">
|
|
<image src="../../static/images/learn/none.png" mode=""></image>
|
|
<view class="tips">
|
|
暂无明细
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
list: [],
|
|
page: 1,
|
|
limit: 10
|
|
}
|
|
},
|
|
onLoad: function(e) {
|
|
this.getMoney();
|
|
},
|
|
|
|
methods: {
|
|
getMoney() {
|
|
let that = this;
|
|
let token = uni.getStorageSync('token')
|
|
|
|
if (token) {
|
|
let data = {
|
|
page : that.page,
|
|
limit : that.limit
|
|
}
|
|
that.$u.api.moneyDet(data).then(res => {
|
|
if(that.page == 1) {
|
|
that.list = res.data.records
|
|
uni.stopPullDownRefresh();
|
|
return
|
|
}
|
|
that.list = [...that.list, ...res.data.records]
|
|
})
|
|
|
|
}
|
|
|
|
},
|
|
},
|
|
onReachBottom: function() {
|
|
this.page = this.page + 1;
|
|
this.getMoney();
|
|
},
|
|
onPullDownRefresh: function() {
|
|
this.page = 1;
|
|
// that.list = []
|
|
this.getMoney();
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang='scss' scoped>
|
|
/* @import "../../static/css/index.css"; */
|
|
|
|
page {
|
|
background: #FFFFFF;
|
|
}
|
|
|
|
.item {
|
|
background: white;
|
|
padding: 32rpx;
|
|
margin: 32rpx;
|
|
font-size: 28rpx;
|
|
box-shadow: 7px 9px 34px rgba(0, 0, 0, 0.1);
|
|
border-radius: 16upx;
|
|
}
|
|
|
|
.centre {
|
|
text-align: center;
|
|
margin: 200rpx auto;
|
|
font-size: 32rpx;
|
|
image {
|
|
width: 360rpx;
|
|
height: 360rpx;
|
|
// margin-bottom: 20rpx;
|
|
margin: 0 auto 20rpx;
|
|
// border: 1px dotted #000000;
|
|
}
|
|
.tips {
|
|
font-size: 34rpx;
|
|
color: #5074FF;
|
|
margin-top: 20rpx;
|
|
}
|
|
.btn {
|
|
margin: 80rpx auto;
|
|
width: 600rpx;
|
|
border-radius: 32rpx;
|
|
line-height: 90rpx;
|
|
color: #ffffff;
|
|
font-size: 34rpx;
|
|
background: #5074FF;
|
|
}
|
|
}
|
|
</style>
|