123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583 |
- <template>
- <view class="challenage-container">
- <view class="nav-container">
- <view v-for="(nav, ni) in navList" :key="ni" class="nav-item" :class="active === ni ? 'active' : ''" @click="(active = ni), ToTop()">{{ nav }}</view>
- </view>
- <view class="challenage-list">
- <template v-if="list.length > 0">
- <view v-for="item in list" :key="item.id" class="challenage-item" @click="goDetail(item)">
- <!-- <view class="challenage-status" :class="Date.now() < item.guessing_endtime ? (item.status ? (item.status == 1 ? 'ing' : '') : 'no') : ''">
- {{
- (Date.now() < item.guessing_endtime) ?
- !item.status ?
- '未应战' : item.status == 1 ?
- '对战中' : '已结束'
- : '已结束'
- }}
- </view> -->
- <view class="challenage-status" :class="item.status == 1 ? 'ing' : item.status == 0 ? 'no' : ''" v-if="active == 0">
- <view v-if="item.status == 0">未应战</view>
- <view v-if="item.status == 1">对战中</view>
- <view v-if="item.status == 2">已结束</view>
- <view v-if="item.status == 3">已拒绝</view>
- </view>
- <view class="challenage-status" :class="item.get_challenge.challenge_status == 1 ? 'ing' : ''" v-if="active == 1">{{ item.get_challenge.challenge_status == 1 ? '对战中' : '已结束' }}</view>
- <view class="challenage-status" :class="item.status == 1 ? 'ing' : ''" v-if="active == 2 || active == 3">{{ item.status == 1 ? '对战中' : '已结束' }}</view>
- <view class="body body2">
- <view v-if="active == 1" class="user-avatar" :class="item.status == 2 && item.challenge_id == item.success_id ? 'win' : ''">
- <view class="avatar-bg accept" v-if="item.get_challenge"><view class="avatar-img" :style="{ backgroundImage: `url(${item.get_challenge.get_challenge_user.avatar})` }" /></view>
- <view class="user-name" v-if="item.get_challenge">{{ item.get_challenge.get_challenge_user.nickname | getName }}</view>
- </view>
- <view v-else class="user-avatar" :class="item.status == 2 && item.challenge_id == item.success_id ? 'win' : ''">
- <view class="avatar-bg" v-if="item.challenge_avatar"><view class="avatar-img" :style="{ backgroundImage: `url(${item.challenge_avatar})` }" /></view>
- <view class="user-name">{{ item.challenge_nickname | getName }}</view>
- </view>
- <!-- 我的挑战 -->
- <template v-if="active === 0">
- <view class="challenage-info">
- <view class="info-title">
- <text class="text">“</text>
- <text class="text spec">{{ item.challenge_nickname | getName }}</text>
- <text class="text">”向你发起的挑战</text>
- </view>
- <view class="info-num">
- <!-- Math.floor向下取整 -->
- <view class="num">{{ Math.floor(item.day / 10) }}</view>
- <view class="num">{{ item.day % 10 }}</view>
- </view>
- <view class="info-time">{{ item.time }}</view>
- <view class="info-btn" :class="item.status == 1 || item.status == 2 ? 'active' : ''" >
- {{ item | getAction(nowActive) }}
- </view>
- </view>
- </template>
- <!-- 我的竞猜 -->
- <template v-if="active == 1">
- <view class="challenage-info info2">
- <view class="challenage-vs">
- <view class="info-score">{{ item.get_challenge.challenge_total }}</view>
- <view class="vs-img"></view>
- <view class="info-score accept">{{ item.get_challenge.accept_total }}</view>
- </view>
- <view v-if="status == 1" class="info-btn" :class="active">查看详情</view>
- </view>
- </template>
- <!-- 围观竞猜 挑战排行 -->
- <template v-if="active == 2 || active == 3">
- <view class="challenage-info info2">
- <view class="challenage-vs">
- <view class="info-score">{{ item.challenge_total }}</view>
- <view class="vs-img"></view>
- <view class="info-score accept">{{ item.accept_total }}</view>
- </view>
- <!-- <view class="info-btn" :class="item.status !== 3 || Date.now() > item.guessing_endtime ? 'active' : ''" @click="toDetail(item)"> -->
- <view class="info-btn" :class="item.status == 1 ? 'active' : ''">{{ item | getAction(nowActive) }}</view>
- <!-- <view :class="item.guessing ? 'info-btn' : 'active'" @click="toDetail(item)">{{ item | getAction(nowActive) }}</view> -->
- </view>
- </template>
- <view v-if="active == 1" class="user-avatar" :class="item.status == 2 && item.accept_id == item.success_id ? 'win' : ''">
- <view class="avatar-bg" v-if="item.get_challenge"><view class="avatar-img" :style="{ backgroundImage: `url(${item.get_challenge.get_accept_user.avatar})` }" /></view>
- <view class="user-name" v-if="item.get_challenge">{{ item.get_challenge.get_accept_user.nickname | getName }}</view>
- </view>
- <view v-else class="user-avatar" :class="item.status == 2 && item.accept_id == item.success_id ? 'win' : ''">
- <view class="avatar-bg accept" v-if="item.accept_avatar"><view class="avatar-img" :style="{ backgroundImage: `url(${item.accept_avatar})` }" /></view>
- <view class="user-name">{{ item.accept_nickname | getName }}</view>
- </view>
- </view>
- <view class="sucTip" v-if="item.get_challenge.challenge_status == 2 && active == 1">
- <view v-if="item.support_id == item.get_challenge.challenge_success_id" class="sucTip_suc">恭喜您猜对了,奖励50学分!</view>
- <view v-else class="sucTip_err">很抱歉,猜错了,下次继续努力!</view>
- </view>
- </view>
- </template>
- <template v-else>
- <view class="noTip">暂无竞猜挑战</view>
- </template>
- </view>
- <view class="start-challenge" @click="getChallenge">
- <view class="start-cilcle"></view>
- <view class="text">发起挑战</view>
- </view>
- </view>
- </template>
- <script>
- import { api_Mychallenge_list, api_GuessingList, api_GuessingRanklList, api_challengeMyGuessing} from '@/api.js';
- export default {
- data() {
- return {
- navList: ['我的挑战', '我的竞猜', '围观竞猜', '挑战排行'],
- pageTitle: '学分挑战',
- active: 1,
- nowActive: 0,
- list: [],
- page: 1,
- requesting: false,
- scrollViewHeight: 0,
- showScrollView: false,
- // scrollTop: 0
- };
- },
- watch: {
- active() {
- this.refresherrefresh();
- }
- },
- filters: {
- getAction(item, nowActive) {
- if (nowActive == 0) { // 我的挑战
- // status状态 0:未应战 1:对战中 2:已结束 3:已拒绝
- if (item.status == 1 || item.status == 2) {
- return '挑战详情';
- } else if (item.status == 0) {
- if (item.type == 0) {
- return '查看详情';
- } else if (item.type == 1) {
- return '应战';
- }
- } else if (item.status == 3) {
- return '已拒绝';
- }
- } else { // 围观竞猜 挑战排行
- if (item.guessing) {
- return '已竞猜';
- } else {
- if (Date.now() > item.guessing_endtime) {
- return '竞猜结束';
- } else {
- return '围观竞猜';
- }
- }
- }
- return '';
- },
- getLong(long, index) {
- return (Number(long) > 9 ? String(long) : '0' + long)[index];
- },
- getName(name) {
- if (name) {
- return name.length > 8 ? name.slice(0, 8) + '...' : name;
- }
- return '';
- }
- },
- // onPageScroll(e) {
- // this.scrollTop = e.scrollTop;
- // },
- onLoad(e) {
- if (e.active) {
- this.active = Number(e.active);
- }
- this.request(true);
- uni.$on('RejectPK', id => (this.list.find(e => e.id == id).status = 3));
- uni.$on('AcceptPK', id => (this.list.find(e => e.id == id).status = 1));
- uni.$on('Guesst', id => (this.list.find(e => e.id == id).guessing = true));
- uni.$on('REDRESH', () => this.refresherrefresh());
- },
- onReachBottom() {
- this.request();
- },
- methods: {
- // 查看详情
- goDetail(item) {
- let that = this
- if (that.active == 1) {
- that.toDetailCai(item)
- } else {
- that.toDetail(item)
- }
- },
- //返回顶部
- ToTop() {
- uni.pageScrollTo({
- scrollTop: 0,
- duration: 300
- });
- },
- refresherrefresh() {
- this.page = 1;
- this.request(true);
- },
- request(refresh) {
- if (!this.requesting && this.page > 0) {
- this.requesting = true;
- uni.loading();
- this.$ajax
- .get(
- this.active == 0
- ? api_Mychallenge_list + `?page=${this.page}`
- : this.active === 1
- ? api_challengeMyGuessing + `?page=${this.page}`
- : this.active === 2
- ? api_GuessingList + `?page=${this.page}`
- : api_GuessingRanklList + `?page=${this.page}`
- )
- .then(([, { data: { data: { list, size } } }]) => {
- list.length < size ? (this.page = 0) : (this.page += 1);
- (this.list = refresh ? list : [...this.list, ...list]), (this.nowActive = this.active);
- uni.hideLoading();
- this.requesting = false;
- });
- }
- },
- getChallenge() {
- // 点击发起挑战
- uni.navigateTo({ url: '../challenge/challenge' });
- },
- toDetail(item) {
- const type = this.$options.filters.getAction(item, this.active);
- if (type == '查看详情' || type == '应战') {
- uni.pkInfo = {
- challenge_id: item.challenge_id,
- challenge_avatar: item.challenge_avatar,
- challenge_nickname: item.challenge_nickname,
- accept_id: item.accept_id,
- accept_avatar: item.accept_avatar,
- accept_nickname: item.accept_nickname,
- id: item.id
- };
- }
- if (type == '查看详情') {
- uni.navigateTo({ url: '../challenge/challenge?type=1' });
- } else if (type == '应战') {
- uni.navigateTo({ url: '../challenge/challenge?type=2' });
- } else if (type == '挑战详情' || type == '围观竞猜' || type == '已竞猜' || type == '竞猜结束') {
- uni.temp1 = item;
- uni.navigateTo({ url: '../challenge-detail/challenge-detail' + (type == '挑战详情' ? '?from=1' + '&active=' + this.active : '?active=' + this.active) });
- }
- },
- toDetailCai(item) {
- const type = this.$options.filters.getAction(item, this.active)
- uni.temp1 = item
- uni.navigateTo({ url: '../challenge-detail/challenge-jingcai' + (type == '挑战详情' ? '?from=1' + '&active=' + this.active : '?active=' + this.active) });
- }
- }
- };
- </script>
- <style lang="scss">
- page {
- width: 100%;
- min-height: 100vh;
- .sucTip {
- width: 498rpx;
- line-height: 68rpx;
- font-size: 28rpx;
- font-weight: bold;
- text-align: center;
- margin: 20rpx auto 0 auto;
- &_suc {
- background: #FFF4F3;
- color: #FF0E00;
- border-radius: 56rpx;
- }
- &_err {
- border-radius: 56rpx;
- background: #F8F8F8;
- color: #333;
- }
- }
- .challenage-container {
- width: 100%;
- min-height: 100vh;
- display: flex;
- flex-direction: column;
- .nav-container {
- width: 100%;
- height: 104rpx;
- background-color: #ffffff;
- padding: 0 30rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- position: fixed;
- top: 0;
- left: 0;
- background: #fff;
- z-index: 9999;
- .nav-item {
- color: #333333;
- font-size: 32rpx;
- line-height: 44rpx;
- font-weight: bolder;
- &.active {
- color: #ea4a41 !important;
- position: relative;
- &::after {
- content: '';
- display: block;
- width: 30rpx;
- height: 4rpx;
- border-radius: 4rpx;
- background: linear-gradient(97deg, #f97c55 0%, #f44545 100%);
- position: absolute;
- left: 50%;
- bottom: 0;
- transform: translate(-50%, 4rpx);
- }
- }
- }
- }
- .challenage-list {
- margin-top: 120rpx;
- flex: 1;
- // overflow: hidden;
- overflow: scroll;
- -webkit-overflow-scrolling: touch;
- background-color: #f9f9fb;
- box-sizing: border-box;
- .noTip {
- width: 100%;
- padding: 20rpx 0;
- text-align: center;
- color: #999999;
- }
- .challenage-item {
- width: calc(100% - 60rpx);
- margin: 0 auto 30rpx auto;
- border-radius: 24rpx;
- background-color: #ffffff;
- padding: 30rpx;
- box-sizing: border-box;
- overflow: hidden;
- &:nth-of-type(1) {
- margin-top: 30rpx;
- }
- position: relative;
- .challenage-status {
- position: absolute;
- top: 0;
- right: 0;
- height: 56rpx;
- padding: 0 30rpx;
- line-height: 56rpx;
- color: #999999;
- font-size: 28rpx;
- border-bottom-left-radius: 56rpx;
- background-color: #eeeeee;
- font-weight: bolder;
- &.ing {
- background: linear-gradient(113deg, #ffc401 0%, #fe0000 100%) !important;
- color: #ffffff !important;
- }
- &.no {
- background: linear-gradient(180deg, #13aefe 0%, #7bc9fb 100%) !important;
- color: #ffffff !important;
- }
- }
- .body {
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: space-between;
- &.body2 {
- padding-top: 30rpx !important;
- }
- .user-avatar {
- width: 140rpx;
- position: relative;
- &.win {
- &::before {
- content: '';
- display: block;
- width: 74rpx;
- height: 32rpx;
- background: url(../../static/new_challenge/win_t.png) center no-repeat;
- background-size: 100%;
- position: absolute;
- top: -30rpx;
- left: 50%;
- transform: translateX(-50%);
- z-index: 99;
- }
- &::after {
- content: '';
- display: block;
- width: 150rpx;
- height: 65rpx;
- background: url(../../static/new_challenge/win_b.png) center no-repeat;
- background-size: 100%;
- position: absolute;
- left: 50%;
- bottom: 24rpx;
- transform: translateX(-50%);
- z-index: 99;
- }
- }
- .avatar-bg {
- width: 140rpx;
- height: 124rpx;
- background: linear-gradient(180deg, #f97c55 0%, #f44545 100%);
- &.accept {
- background: linear-gradient(180deg, #13aefe 0%, #7bc9fb 100%);
- }
- clip-path: polygon(0 50%, 25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%);
- display: flex;
- align-items: center;
- justify-content: center;
- margin-bottom: 6rpx;
- .avatar-img {
- width: calc(100% - 20rpx);
- height: calc(100% - 12rpx);
- clip-path: polygon(0 50%, 25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%);
- background-position: center;
- background-repeat: no-repeat;
- background-size: 100%;
- background-color: transparent;
- }
- }
- .user-name {
- width: 140rpx;
- height: 40rpx;
- color: #333333;
- font-size: 28rpx;
- line-height: 40rpx;
- text-align: center;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- }
- .challenage-info {
- flex: 1;
- overflow: hidden;
- display: flex;
- flex-direction: column;
- align-items: center;
- .info-title {
- width: 100%;
- text-align: center;
- margin-bottom: 20rpx;
- .text {
- color: #333333;
- font-size: 28rpx;
- line-height: 40rpx;
- &.spec {
- color: #ea4a41 !important;
- }
- }
- }
- .info-num {
- display: flex;
- align-items: center;
- justify-content: center;
- margin-bottom: 10rpx;
- .num {
- height: 86rpx;
- padding: 0 14rpx;
- background: linear-gradient(180deg, #f97c55 0%, #f44545 100%);
- color: #ffffff;
- font-size: 48rpx;
- line-height: 86rpx;
- border-radius: 8rpx;
- &:nth-of-type(1) {
- margin-right: 10rpx;
- }
- }
- }
- .info-time {
- color: #333333;
- font-size: 28rpx;
- line-height: 40rpx;
- margin-bottom: 20rpx;
- text-align: center;
- }
- .info-btn {
- width: 192rpx;
- height: 68rpx;
- border-radius: 68rpx;
- text-align: center;
- line-height: 68rpx;
- background-color: #f8f8f8;
- color: #333333;
- font-size: 28rpx;
- }
- // .active {
- // width: 192rpx;
- // height: 68rpx;
- // border-radius: 68rpx;
- // text-align: center;
- // line-height: 68rpx;
- // background-color: #f8f8f8;
- // color: #333333;
- // font-size: 28rpx;
- // }
- &.info2 {
- .challenage-vs {
- display: flex;
- align-items: center;
- justify-content: space-between;
- margin-bottom: 28rpx;
- padding-top: 44rpx;
- .info-score {
- min-width: 104rpx;
- box-sizing: border-box;
- text-align: center;
- height: 62rpx;
- border-radius: 8rpx;
- line-height: 62rpx;
- padding: 0 8rpx;
- background: linear-gradient(92deg, #f97c55 0%, #f44545 100%);
- color: #ffffff;
- font-size: 36rpx;
- &.accept {
- background: linear-gradient(268deg, #13aefe 0%, #7bc9fb 100%) !important;
- }
- }
- .vs-img {
- width: 100rpx;
- height: 100rpx;
- background: url('https://api.jiuweiyun.cn/public/uploads/weapp/icon/vs.png') center no-repeat;
- background-size: 100%;
- margin: 0 10rpx;
- }
- }
- }
- }
- }
- }
- }
- .start-challenge {
- position: fixed;
- right: 0;
- bottom: 240rpx;
- height: 88rpx;
- border-top-left-radius: 88rpx;
- border-bottom-left-radius: 88rpx;
- padding: 0 24rpx 0 16rpx;
- background: linear-gradient(81deg, #ffc401 0%, #fe0000 100%);
- display: flex;
- align-items: center;
- justify-content: center;
- .start-cilcle {
- width: 68rpx;
- height: 68rpx;
- border-radius: 68rpx;
- background-color: #ffffff;
- margin-right: 20rpx;
- position: relative;
- &::after,
- &::before {
- content: '';
- display: block;
- width: 40rpx;
- height: 6rpx;
- background-color: #ffc401;
- position: absolute;
- left: 50%;
- top: 50%;
- transform: translate(-50%, -50%);
- }
- &::after {
- transform: translate(-50%, -50%) rotate(90deg) !important;
- }
- }
- .text {
- color: #ffffff;
- font-size: 32rpx;
- font-weight: bolder;
- }
- }
- }
- }
- </style>
|