123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- <!-- 分销排行 -->
- <template>
- <view class="rankings-wrap">
- <!-- 标题栏 -->
- <shopro-navbar back-icon-color="#fff" :background="{}" :backTextStyle="{ color: '#fff', fontSize: '40rpx', fontWeight: '500' }" backText="分销排行榜"></shopro-navbar>
- <!-- 排行榜 -->
- <view class="rankings-list-box">
- <scroll-view scroll-y="true" @scrolltolower="loadMore" class="scroll-box">
- <view class="ranking-list u-flex u-row-between" v-for="(item, index) in rankingsList" :key="index">
- <view class="list-left u-flex">
- <view class="tag-box u-flex u-row-center u-col-center">
- <text class="tag-text" v-if="index >= 3">{{ index + 1 }}</text>
- <image v-else class="tag-icon" :src="rankingsIcon[index]" mode=""></image>
- </view>
- <image class="user-avatar" :src="item.user ? item.user.avatar : $IMG_URL + '/imgs/base_avatar.png'" mode=""></image>
- <view class="user-info">
- <view class="name u-m-b-10">{{ item.user ? item.user.nickname : '当前用户已注销' }}</view>
- <view class="date">{{ $u.timeFormat(item.createtime, 'yyyy年mm月dd日') }}</view>
- </view>
- </view>
- <view class="list-right y-end">
- <view class="num u-m-b-10">{{ item.total_income }}</view>
- <view class="des">累计收益</view>
- </view>
- </view>
- <!-- 更多 -->
- <u-loadmore v-if="rankingsList.length" height="80rpx" :status="loadStatus" icon-type="flower" color="#ccc" />
- <view class="hack-box" style="height: 200rpx;width: 100%;"></view>
- </scroll-view>
- </view>
- </view>
- </template>
- <script>
- export default {
- components: {},
- data() {
- return {
- rankingsIcon: {
- 0: this.$IMG_URL + '/imgs/commission/01.png',
- 1: this.$IMG_URL + '/imgs/commission/02.png',
- 2: this.$IMG_URL + '/imgs/commission/03.png'
- },
- rankingsList: [], //排行榜
- loadStatus: 'loadmore', //loadmore-加载前的状态,loading-加载中的状态,nomore-没有更多的状态
- currentPage: 1,
- lastPage: 1
- };
- },
- computed: {},
- onLoad() {
- this.getRankings();
- },
- methods: {
- getRankings() {
- let that = this;
- that.loadStatus = 'loading';
- that.$http('commission.ranking', {
- page: that.currentPage
- }).then(res => {
- if (res.code === 1) {
- that.rankingsList = [...that.rankingsList, ...res.data.data];
- that.lastPage = res.data.last_page;
- that.loadStatus = that.currentPage < res.data.last_page ? 'loadmore' : 'nomore';
- }
- });
- },
- // 加载更多
- loadMore() {
- if (this.currentPage < this.lastPage) {
- this.currentPage += 1;
- this.getRankings();
- }
- }
- }
- };
- </script>
- <style lang="scss">
- .rankings-wrap {
- background: url($IMG_URL+'/imgs/commission/rankings_bg.png') no-repeat;
- background-size: 100% auto;
- height: 100%;
- overflow: hidden;
- }
- // 排行榜列表
- .rankings-list-box {
- background-color: #fff;
- border-radius: 20rpx 20rpx 0px 0px;
- width: 690rpx;
- height: 100%;
- margin: 60rpx auto 0;
- .scroll-box {
- height: 100%;
- }
- .ranking-list {
- height: 140rpx;
- padding: 0 30rpx;
- border-bottom: 1rpx solid #e5e5e5;
- .list-left {
- .tag-box {
- width: 50rpx;
- font-size: 36rpx;
- font-weight: 500;
- color: #beb4b3;
- margin-right: 20rpx;
- .tag-icon {
- width: 40rpx;
- height: 60rpx;
- }
- }
- .user-avatar {
- width: 66rpx;
- height: 66rpx;
- border-radius: 50%;
- margin-right: 30rpx;
- }
- .user-info {
- .name {
- font-size: 28rpx;
- font-weight: bold;
- color: #333333;
- }
- .date {
- font-size: 24rpx;
- font-weight: 400;
- color: #999999;
- }
- }
- }
- .list-right {
- .num {
- font-size: 30rpx;
- font-weight: 500;
- color: #5e4ddf;
- }
- .des {
- font-size: 24rpx;
- font-weight: 500;
- color: #a09a98;
- }
- }
- }
- }
- </style>
|