123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- <template>
- <view style="text-align: left">
- <view v-for="(item, index) in list" :key="index" class="item">
- <view>
- <view style="margin-bottom: 8upx;text-align: right;">
- <text style="margin-bottom: 8upx;color: #0e80d2" v-if="item.state==1"> 提现成功</text>
- <text style="margin-bottom: 8upx;color: #0e80d2" v-if="item.state==0"> 提现中</text>
- <text style="margin-bottom: 8upx;color: #FF332F" v-if="item.state==-1"> 提现失败</text>
- </view>
- <view style="color: #999999;font-size: 28upx;">
- <view style="margin-bottom: 8upx" v-if="item.classify == 1" >支付宝账号 {{ item.zhifubao }}</view>
- <view style="margin-bottom: 8upx" v-if="item.classify == 1">支付宝姓名 {{ item.zhifubaoName }}</view>
- <view style="margin-bottom: 8upx" v-if="item.classify == 2">微信二维码提现</view>
- <view style="margin-bottom: 8upx">发起时间 {{ item.createAt }}</view>
- <view style="margin-bottom: 8upx" v-if="item.state==1">成功时间 {{ item.outAt }}</view>
- <view style="margin-bottom: 8upx;color: #FF2638" v-if="item.state==-1">失败原因:{{item.refund}}</view>
- <view style="margin-bottom: 8upx;text-align: right;">
- <!-- 提现金额: -->
- <text style="color: #FF332F;font-size: 32upx;font-weight: 600">¥{{ item.money }}</text>
- </view>
- </view>
- </view>
- </view>
- <!-- 加载更多提示 -->
- <view class="s-col is-col-24" v-if="list.length > 0">
- <load-more :loadingType="loadingType" :contentText="contentText"></load-more>
- </view>
- <!-- 加载更多提示 -->
- <empty v-if="list.length == 0" des="暂无数据"></empty>
- </view>
- </template>
- <script>
- import empty from '@/components/empty.vue'
- export default {
- components: {
- empty
- },
- data() {
- return {
- page: 1,
- size: 10,
- list: [],
- loadingType: 0,
- scrollTop: false,
- contentText: {
- contentdown: '上拉显示更多',
- contentrefresh: '正在加载...',
- contentnomore: '没有更多数据了'
- }
- };
- },
- onLoad: function(e) {
- this.$queue.showLoading('加载中...');
- this.getMoney();
- },
- onPageScroll: function(e) {
- this.scrollTop = e.scrollTop > 200;
- },
- methods: {
- getMoney(type) {
- this.loadingType = 1;
- let userId = this.$queue.getData('userId');
- let data = {
- page: this.page,
- limit: this.size,
- userId: userId
- };
- this.$Request.getT('/app/cash/selectPayDetails', data).then(res => {
- if (res.code === 0) {
- if (this.page === 1) {
- this.list = [];
- }
- res.data.list.forEach(d => {
- // if (d.state === -1) {
- // d.state = '已退款';
- // } else if (d.state === 0) {
- // d.state = '提现中';
- // } else if (d.state === 1) {
- // d.state = '提现成功';
- // }
- this.list.push(d);
- });
- if (res.data.list.length === this.size) {
- this.loadingType = 0;
- } else {
- this.loadingType = 3;
- }
- } else {
- this.loadingType = 2;
- }
- uni.hideLoading();
- if (type === 'Refresh') {
- uni.stopPullDownRefresh(); // 停止刷新
- }
- });
- }
- },
- onLoad: function(e) {
- this.getMoney();
- },
- onReachBottom: function() {
- this.page = this.page + 1;
- this.getMoney();
- },
- onPullDownRefresh: function() {
- this.page = 1;
- this.getMoney('Refresh');
- }
- };
- </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;
- }
- </style>
|