172 lines
		
	
	
		
			4.2 KiB
		
	
	
	
		
			Vue
		
	
	
			
		
		
	
	
			172 lines
		
	
	
		
			4.2 KiB
		
	
	
	
		
			Vue
		
	
	
| <template>
 | |
|   <s-layout class="widthdraw-log-wrap" title="充值记录">
 | |
|     <!-- 记录卡片 -->
 | |
|     <view class="wallet-log-box ss-p-b-30">
 | |
|       <view class="log-list" v-for="item in state.pagination.data" :key="item">
 | |
|         <view class="head ss-flex ss-col-center ss-row-between">
 | |
|           <view class="title">充值金额</view>
 | |
|           <view
 | |
|             class="num"
 | |
|             :class="
 | |
|               item.status === -1
 | |
|                 ? 'danger-color'
 | |
|                 : item.status === 2
 | |
|                 ? 'success-color'
 | |
|                 : 'warning-color'
 | |
|             "
 | |
|             >{{ item.pay_fee }}元</view
 | |
|           >
 | |
|         </view>
 | |
|         <view class="status-box item ss-flex ss-col-center ss-row-between">
 | |
|           <view class="item-title">支付状态</view>
 | |
|           <view
 | |
|             class="status-text"
 | |
|             :class="
 | |
|               item.status === -1
 | |
|                 ? 'danger-color'
 | |
|                 : item.status === 2
 | |
|                 ? 'success-color'
 | |
|                 : 'warning-color'
 | |
|             "
 | |
|             >{{ item.status_text }}</view
 | |
|           >
 | |
|         </view>
 | |
|         <view class="time-box item ss-flex ss-col-center ss-row-between">
 | |
|           <text class="item-title">充值渠道</text>
 | |
|           <view class="time ss-ellipsis-1">{{ item.platform_text }}</view>
 | |
|         </view>
 | |
|         <view class="time-box item ss-flex ss-col-center ss-row-between">
 | |
|           <text class="item-title">充值单号</text>
 | |
|           <view class="time"> {{ item.order_sn }} </view>
 | |
|         </view>
 | |
|         <view class="time-box item ss-flex ss-col-center ss-row-between">
 | |
|           <text class="item-title">充值时间</text>
 | |
|           <view class="time"> {{ item.paid_time }}</view>
 | |
|         </view>
 | |
|       </view>
 | |
|     </view>
 | |
|     <s-empty
 | |
|       v-if="state.pagination.total === 0"
 | |
|       icon="/static/comment-empty.png"
 | |
|       text="暂无充值记录"
 | |
|     ></s-empty>
 | |
|     <uni-load-more
 | |
|       v-if="state.pagination.total > 0"
 | |
|       :status="state.loadStatus"
 | |
|       :content-text="{
 | |
|         contentdown: '上拉加载更多',
 | |
|       }"
 | |
|       @tap="loadmore"
 | |
|     />
 | |
|   </s-layout>
 | |
| </template>
 | |
| 
 | |
| <script setup>
 | |
|   import { reactive } from 'vue';
 | |
|   import sheep from '@/sheep';
 | |
|   import { onLoad, onReachBottom } from '@dcloudio/uni-app';
 | |
|   import _ from 'lodash';
 | |
|   const state = reactive({
 | |
|     currentTab: 0,
 | |
|     pagination: {
 | |
|       data: [],
 | |
|       current_page: 1,
 | |
|       total: 1,
 | |
|       last_page: 1,
 | |
|     },
 | |
|     loadStatus: '',
 | |
|   });
 | |
|   async function getLogList(page = 1, list_rows = 5) {
 | |
|     const res = await sheep.$api.trade.orderLog({ type: 'recharge', list_rows, page });
 | |
|     if (res.error === 0) {
 | |
|       let logList = _.concat(state.pagination.data, res.data.data);
 | |
|       state.pagination = {
 | |
|         ...res.data,
 | |
|         data: logList,
 | |
|       };
 | |
|       if (state.pagination.current_page < state.pagination.last_page) {
 | |
|         state.loadStatus = 'more';
 | |
|       } else {
 | |
|         state.loadStatus = 'noMore';
 | |
|       }
 | |
|     }
 | |
|   }
 | |
|   // 加载更多
 | |
|   function loadmore() {
 | |
|     if (state.loadStatus !== 'noMore') {
 | |
|       getLogList(state.pagination.current_page + 1);
 | |
|     }
 | |
|   }
 | |
|   onLoad(() => {
 | |
|     getLogList();
 | |
|   });
 | |
|   onReachBottom(() => {
 | |
|     loadmore();
 | |
|   });
 | |
| </script>
 | |
| 
 | |
| <style lang="scss" scoped>
 | |
|   // 记录卡片
 | |
|   .log-list {
 | |
|     min-height: 213rpx;
 | |
|     background: $white;
 | |
|     margin-bottom: 10rpx;
 | |
|     padding-bottom: 10rpx;
 | |
| 
 | |
|     .head {
 | |
|       padding: 0 35rpx;
 | |
|       height: 80rpx;
 | |
|       border-bottom: 1rpx solid $gray-e;
 | |
|       margin-bottom: 20rpx;
 | |
| 
 | |
|       .title {
 | |
|         font-size: 28rpx;
 | |
|         font-weight: 500;
 | |
|         color: $dark-3;
 | |
|       }
 | |
| 
 | |
|       .num {
 | |
|         font-size: 28rpx;
 | |
|         font-weight: 500;
 | |
|       }
 | |
|     }
 | |
| 
 | |
|     .item {
 | |
|       padding: 0 30rpx 10rpx;
 | |
| 
 | |
|       .item-icon {
 | |
|         color: $gray-d;
 | |
|         font-size: 36rpx;
 | |
|         margin-right: 8rpx;
 | |
|       }
 | |
| 
 | |
|       .item-title {
 | |
|         width: 180rpx;
 | |
|         font-size: 24rpx;
 | |
|         font-weight: 400;
 | |
|         color: #666666;
 | |
|       }
 | |
| 
 | |
|       .status-text {
 | |
|         font-size: 24rpx;
 | |
|         font-weight: 500;
 | |
|       }
 | |
| 
 | |
|       .time {
 | |
|         font-size: 24rpx;
 | |
|         font-weight: 400;
 | |
|         color: #c0c0c0;
 | |
|       }
 | |
|     }
 | |
|   }
 | |
|   .warning-color {
 | |
|     color: #faad14;
 | |
|   }
 | |
|   .danger-color {
 | |
|     color: #ff4d4f;
 | |
|   }
 | |
|   .success-color {
 | |
|     color: #67c23a;
 | |
|   }
 | |
| </style>
 |