123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- <template>
- <view class="cu-modal bottom-modal" :class="{'show': visible}">
- <view class="mask" @click="close"></view>
- <view class="cu-dialog wrapper">
- <view class="paddingY25 flex-align-center relative">
- <view class="font6 bold color-1">实时榜单</view>
- <image :src="resource.icon_x" class="x" @click="close" />
- </view>
- <view style="height: 400px">
- <scroll-view style="height: 350px" scroll-y v-if="tableData && tableData.length > 0">
- <view v-for="(item, index) in tableData" :key="index" class="cell flex-align" style="margin-bottom: 10px">
- <view class="index bold color-white">{{index + 1}}</view>
- <image v-if="index === 0" class="rank_flag translateY" :src="resource.prince_rank_1" />
- <image v-if="index === 1" class="rank_flag translateY" :src="resource.prince_rank_2" />
- <image v-if="index === 2" class="rank_flag translateY" :src="resource.prince_rank_3" />
- <image :src="item.avatar" style="width: 52rpx;height:52rpx;border-radius: 26rpx" />
- <view class="color-white font2 marginL12 flex1">{{item.nickname}}</view>
- <view class="flex-shrink0 num">{{item.quantity}}源力值</view>
- </view>
- </scroll-view>
- <empty v-if="!tableData || tableData.length === 0" :top="100"/>
- <view v-if="myData" class="cell my flex-align">
- <image v-if="myData.index === 0" class="rank_flag translateY" :src="resource.prince_rank_1" />
- <image v-else-if="myData.index === 1" class="rank_flag translateY" :src="resource.prince_rank_2" />
- <image v-else-if="myData.index === 2" class="rank_flag translateY" :src="resource.prince_rank_3" />
- <view v-if="myData.index < 50" class="index bold color-white">{{myData.index + 1}}</view>
- <view v-else class="index color-white">暂无排名</view>
- <image :src="myData.avatar" style="width: 52rpx;height:52rpx;border-radius: 26rpx" />
- <view class="color-white font2 marginL12 flex1">{{myData.nickname}}</view>
- <view class="flex-shrink0 num">{{myData.quantity}}源力值</view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import resource from '@/utils/resource'
- import empty from '@/components/empty'
- export default {
- components: { empty },
- data() {
- return {
- tableData: null,
- resource,
- visible: false,
- myData: null
- }
- },
- methods: {
- show() {
- this.$parent.$parent.$parent.lock = true
- this.visible = true
- this.refresh()
- },
- close() {
- this.$parent.$parent.$parent.lock = false
- this.visible = false
- this.tableData = null
- this.myData = null
- },
- refresh() {
- this.loadData()
- },
- async loadData(loading = false) {
- // const res = await this.$service.award.kingUser(this.poolId, loading)
- // if (res) {
- // this.tableData = res.periodKingList
- // if (res.myPeriodKing) {
- // let my = res.myPeriodKing
- // let flag = 50
- // for (let i = 0; i < this.tableData.length; i++) {
- // if (my.userId === this.tableData[i].userId) {
- // flag = i
- // break
- // }
- // }
- // my.index = flag
- // this.myData = my
- // }
- // }
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .mask {
- position: absolute;
- left: 0;
- right: 0;
- top: 0;
- bottom: 0;
- }
- .wrapper {
- padding: 0 28rpx 64rpx;
- background: #fff;
- border-radius: 15px 15px 2px 2px !important;
- .x {
- position: absolute;
- right: 28rpx;
- top: 50%;
- margin-top: -16rpx;
- width: 32rpx;
- height: 32rpx;
- }
- .cell {
- position: relative;
- height: 48px;
- background: rgba($color: #8F4BF1, $alpha: 0.1);
- border-radius: 4px;
- padding-left: 13px;
- padding-right: 48px;
- .index {
- width: 70px;
- }
- .num {
- color: #333;
- font-size: 12px;
- }
- &.my {
- background: #8F4BF1;
- .num {
- color: #fff
- }
- }
- .rank_flag {
- width: 21px;
- height: 20px;
- position: absolute;
- left: 35px;
- }
- }
- }
- </style>
|