You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
320 lines
8.1 KiB
320 lines
8.1 KiB
<template> |
|
<view class="wrap"> |
|
<view class="banner"> |
|
<image class="pic" :src="form.coverUrl" mode="widthFix"></image> |
|
</view> |
|
|
|
<view class="info"> |
|
<view class="line"> |
|
<view class="label">活动名称:</view> |
|
<view class="val">{{ form.name }}</view> |
|
</view> |
|
<view class="line"> |
|
<view class="label">状态:</view> |
|
<view class="val">进行中</view> |
|
</view> |
|
<view class="line"> |
|
<view class="label">人数限制:</view> |
|
<view class="val">{{ form.quantityLimit }}</view> |
|
</view> |
|
<view class="line items-start"> |
|
<view class="label">举办时间:</view> |
|
<view class="val">{{ form.playStartTime + ' ~ ' + form.playEndTime }}</view> |
|
</view> |
|
<view class="line"> |
|
<view class="label">活动地点:</view> |
|
<view class="val">{{ form.reportingPlace }}</view> |
|
</view> |
|
<view class="line"> |
|
<view class="label">主办方:</view> |
|
<view class="val">{{ form.sponsor }}</view> |
|
</view> |
|
<view v-if="form.whetherToShowApplicants === '1'" class="line"> |
|
<view class="label">已报名人员:</view> |
|
<view class="val">({{ form.applicantNum }}/{{ form.quantityLimit }})</view> |
|
</view> |
|
</view> |
|
|
|
<ul class="tab"> |
|
<li :class="{active: curTab === 0}" @click="tabChange(0)">活动详情</li> |
|
<li :class="{active: curTab === 1}" @click="tabChange(1)">活动通知</li> |
|
<li v-if="form.whetherToShowApplicants === '1'" :class="{active: curTab === 2}" @click="tabChange(2)">已报名人员({{ form.applicantNum }}/{{ form.quantityLimit }})</li> |
|
</ul> |
|
|
|
<view v-if="!curTab" class="detail"> |
|
<mp-html :content="form.description"/> |
|
</view> |
|
<view v-else class="list"> |
|
<view v-for="(item, i) in list" :key="i" class="item" @click="toDetail(item)"> |
|
<view class="top"> |
|
<image class="avatar" :src="item.userAvatars || Common.avatar"></image> |
|
<view class="name">{{ item.username }}</view> |
|
</view> |
|
</view> |
|
</view> |
|
|
|
<view class="btns"> |
|
<view class="btn share">分享</view> |
|
<view :class="['btn sign', {disabled: !form.signing}]" @click="presign">立刻报名</view> |
|
</view> |
|
|
|
<uni-popup ref="popup" type="dialog"> |
|
<uni-popup-dialog mode="input" placeholder="请输入4位数邀请码" :duration="2000" :before-close="true" @close="closePopup" @confirm="codeSubmit"></uni-popup-dialog> |
|
</uni-popup> |
|
</view> |
|
</template> |
|
|
|
<script> |
|
import { getCompetition, individualEventRegistration, queryRegistrationByCondition } from '@/apis/modules/activity.js' |
|
import Util from '@/libs/util' |
|
import Common from '@/config/common' |
|
export default { |
|
data() { |
|
return { |
|
Common, |
|
id: '', |
|
curTab: 0, |
|
reachBottom: 0, // 是否是上拉加载。0->否,1->是,-1->加载完所有数据 |
|
status: 'more', // 上拉加载状态 more|loading|noMore |
|
list: [], |
|
page: 1, |
|
pageSize: 5, |
|
total: 0, |
|
form: { |
|
quantityLimit: '', |
|
playStartTime: '', |
|
playEndTime: '', |
|
reportingPlace: '', |
|
sponsor: '', |
|
}, |
|
shopCartTotal: 0, |
|
types: [], |
|
mpStyle: { |
|
p: 'font-size: 25rpx !important;font-family: Microsoft Yahei !important;font-weight: 400 !important;color: #333 !important;', |
|
span: 'font-size: 25rpx !important;font-family: Microsoft Yahei !important;font-weight: 400 !important;color: #333 !important;' |
|
}, |
|
timer: null, |
|
now: '', |
|
invitationCode: '', |
|
} |
|
}, |
|
// 下拉刷新 |
|
onPullDownRefresh() { |
|
this.initList() |
|
setTimeout(() => { |
|
uni.stopPullDownRefresh() |
|
}, 1500) |
|
}, |
|
// 上拉加载 |
|
onReachBottom() { |
|
if (this.reachBottom >= 0) { |
|
this.reachBottom = 1 |
|
this.status = 'loading' |
|
this.getList() |
|
} |
|
}, |
|
onShow() { |
|
const pages = getCurrentPages() |
|
const { options } = pages[pages.length - 1] |
|
this.id = options.id |
|
this.getInfo() |
|
}, |
|
methods: { |
|
// 获取详情 |
|
getInfo() { |
|
uni.showLoading({ |
|
title: '加载中' |
|
}) |
|
getCompetition(this.id).then(async (res) => { |
|
const data = res.competition |
|
this.form = data |
|
|
|
this.now = await Util.getNow() |
|
this.statusInterval() |
|
this.timer = setInterval(() => { |
|
this.now = new Date(this.now.setSeconds(this.now.getSeconds() + 1)) |
|
this.statusInterval() |
|
}, 1000) |
|
uni.hideLoading() |
|
}).catch(e => { |
|
uni.hideLoading() |
|
}) |
|
}, |
|
async statusInterval () { |
|
const data = this.form |
|
if (data.signUpStartTime && data.signUpEndTime) { |
|
this.handleStatus() |
|
} |
|
}, |
|
// 定时处理时间及状态 |
|
handleStatus () { |
|
const data = this.form |
|
let signing = 0 |
|
const signUpStartTime = new Date(data.signUpStartTime) // 报名开始时间 |
|
const signUpEndTime = new Date(data.signUpEndTime) // 报名结束时间 |
|
const { now } = this |
|
// 报名中(whetherToSignUp 是否已报名 1已报名,0未报名) |
|
if (!data.competitionRegistration && now > signUpStartTime && now < signUpEndTime) { |
|
signing = 1 |
|
} |
|
this.$set(this.form, 'signing', signing) |
|
}, |
|
// 已报名人员 |
|
getRegList() { |
|
uni.showLoading({ |
|
title: '加载中' |
|
}) |
|
queryRegistrationByCondition({ |
|
competitionId: this.id, |
|
pageNum: this.page, |
|
pageSize: this.pageSize, |
|
}).then(async ({ data }) => { |
|
this.list = this.reachBottom > 0 ? [...this.list, ...data.records] : data.records |
|
this.page++ // 每次获取了数据后page+1 |
|
const noMore = this.list.length === data.total // 是否加载完所有数据 |
|
this.status = noMore ? 'noMore' : 'more' // 加载完了则设置为noMore |
|
this.reachBottom = noMore ? -1 : 0 // 加载完了则设置为-1 |
|
uni.hideLoading() |
|
}).catch(e => { |
|
uni.hideLoading() |
|
}) |
|
}, |
|
initList() { |
|
this.page = 1 |
|
this.reachBottom = 0 |
|
this.getRegList() |
|
}, |
|
// tab切换 |
|
tabChange(id) { |
|
id === 2 && this.initList() |
|
this.curTab = id |
|
}, |
|
// 报名前的判断 |
|
async presign() { |
|
if (this.form.competitionRegistration) return this.$util.errMsg('你已经报名过该活动!') |
|
if (!this.form.signing) return this.$util.errMsg('现在不在报名时间!') |
|
this.invitationCode = '' |
|
// 需要输入验证码就弹出邀请码弹框,否则直接报名 |
|
this.form.isNeedCode ? this.$refs.popup.open() : this.sign() |
|
}, |
|
// 报名 |
|
async sign() { |
|
const res = await individualEventRegistration({ |
|
competitionId: this.form.id, |
|
registrationInvitationCode: this.invitationCode |
|
}) |
|
this.getInfo() |
|
this.$util.sucMsg('报名成功!') |
|
this.closePopup() |
|
}, |
|
// 关闭邀请码弹框 |
|
closePopup() { |
|
this.$refs.popup.close() |
|
}, |
|
// 邀请码确定 |
|
codeSubmit(value) { |
|
if (!value || value.length !== 4) return this.$util.errMsg('请输入4位数邀请码!') |
|
this.invitationCode = value |
|
this.sign() |
|
}, |
|
} |
|
} |
|
</script> |
|
|
|
<style scoped lang="scss"> |
|
.wrap { |
|
padding-bottom: 140rpx; |
|
} |
|
.banner { |
|
.pic { |
|
width: 100%; |
|
} |
|
} |
|
.info { |
|
position: relative; |
|
padding: 20rpx; |
|
margin: -150rpx 30rpx 0; |
|
background-color: #fff; |
|
border-radius: 8px; |
|
.line { |
|
display: flex; |
|
align-items: center; |
|
margin: 20rpx 0; |
|
} |
|
.items-start { |
|
align-items: flex-start; |
|
} |
|
.label { |
|
min-width: 180rpx; |
|
font-size: 28rpx; |
|
text-align: right; |
|
} |
|
.val { |
|
font-size: 28rpx; |
|
font-weight: 600; |
|
color: #333; |
|
} |
|
} |
|
.detail { |
|
padding: 34rpx 32rpx; |
|
margin: 20rpx; |
|
border-radius: 20px; |
|
background-color: #fff; |
|
} |
|
.list { |
|
margin: 0 30rpx; |
|
.item { |
|
padding: 30rpx; |
|
margin: 10rpx 0; |
|
background-color: #fff; |
|
border-radius: 8px; |
|
} |
|
.top { |
|
display: flex; |
|
align-items: center; |
|
} |
|
.avatar { |
|
width: 60rpx; |
|
height: 60rpx; |
|
margin-right: 20rpx; |
|
border-radius: 50%; |
|
} |
|
.name { |
|
font-size: 30rpx; |
|
font-weight: 600; |
|
} |
|
.meta { |
|
margin: 10rpx 0; |
|
font-size: 26rpx; |
|
} |
|
} |
|
.btns { |
|
position: fixed; |
|
bottom: 0; |
|
display: flex; |
|
justify-content: center; |
|
width: 100%; |
|
padding: 20rpx 0; |
|
background-color: #fff; |
|
.btn { |
|
width: 200rpx; |
|
padding: 16rpx 0; |
|
font-size: 28rpx; |
|
color: #fff; |
|
text-align: center; |
|
} |
|
.share { |
|
background-color: #75b4ff; |
|
border-top-left-radius: 40rpx; |
|
border-bottom-left-radius: 40rpx; |
|
} |
|
.sign { |
|
background-color: $uni-primary; |
|
border-top-right-radius: 40rpx; |
|
border-bottom-right-radius: 40rpx; |
|
&.disabled { |
|
background-color: #d7d7d7; |
|
} |
|
} |
|
} |
|
</style>
|
|
|