This commit is contained in:
changjinpeng
2022-03-07 14:59:22 +08:00
parent 09a0135703
commit f042951e79

View File

@@ -1,5 +1,5 @@
<template> <template>
<div class="detail" v-if="pageShow" :style="{paddingBottom: info.status === '0' ? '130px' : '40px'}"> <div class="detail" v-if="pageShow" :style="{ paddingBottom: info.status === '0' ? '130px' : '40px' }">
<div class="detail-wrapper"> <div class="detail-wrapper">
<image class="banner" mode="aspectFill" :src="info.url" /> <image class="banner" mode="aspectFill" :src="info.url" />
<h2>{{ info.title }}</h2> <h2>{{ info.title }}</h2>
@@ -44,16 +44,7 @@
</div> </div>
</div> </div>
<div class="detail-tips"> <div class="detail-tips">
<u-tabs <u-tabs :list="tabs" font-size="32" bg-color="transparent" inactive-color="#999999" :active-item-style="tabActive" :is-scroll="true" :current="currIndex" @change="(i) => (currIndex = i)"> </u-tabs>
:list="tabs"
font-size="32"
bg-color="transparent"
inactive-color="#999999"
:active-item-style="tabActive"
:is-scroll="true"
:current="currIndex"
@change="i => currIndex = i">
</u-tabs>
<div class="tab-content"> <div class="tab-content">
<div class="rich-content" v-show="currIndex === 0"> <div class="rich-content" v-show="currIndex === 0">
<u-parse :html="info.content"></u-parse> <u-parse :html="info.content"></u-parse>
@@ -66,7 +57,7 @@
</div> </div>
<p>{{ item.content }}</p> <p>{{ item.content }}</p>
<div class="images" v-if="item.images.length"> <div class="images" v-if="item.images.length">
<image v-for="(img, i) in item.images" @click="preview(img.url, item.images)" :key="i" class="banner" :src="img.url" /> <image v-for="(img, i) in item.images" @click="preview(img.url, item.images)" :key="i" class="banner" :src="img.url" v-if="i < 3" />
</div> </div>
</div> </div>
<AiEmpty v-if="!list.length"></AiEmpty> <AiEmpty v-if="!list.length"></AiEmpty>
@@ -80,42 +71,45 @@
<div class="btn-wrapper" v-if="info.status === '0'"> <div class="btn-wrapper" v-if="info.status === '0'">
<div class="btn" :class="[info.hasReport === '1' ? 'disabled' : '']" @click="signUp" hover-class="text-hover">{{ info.hasReport === '1' ? '已报名' : '立即报名' }}</div> <div class="btn" :class="[info.hasReport === '1' ? 'disabled' : '']" @click="signUp" hover-class="text-hover">{{ info.hasReport === '1' ? '已报名' : '立即报名' }}</div>
</div> </div>
<AiLogin ref="login"/> <AiLogin ref="login" />
</div> </div>
</template> </template>
<script> <script>
import { mapState } from 'vuex' import { mapState } from 'vuex'
export default { export default {
appName:"活动详情", appName: '活动详情',
data () { data() {
return { return {
currIndex: 0, currIndex: 0,
tabActive: { tabActive: {
color: '#333333', color: '#333333',
fontSize: '16px' fontSize: '16px',
}, },
pageShow: false, pageShow: false,
id: '', id: '',
current: 1, current: 1,
list: [], list: [],
isMore: false, isMore: false,
info: '' info: '',
} }
}, },
computed: { computed: {
tabs () { tabs() {
return [{ return [
name: '活动须知' {
}, { name: '活动须知',
name: '活动动态' },
}] {
name: '活动动态',
},
]
}, },
...mapState(['user', 'token']), ...mapState(['user', 'token']),
isShowAdd () { isShowAdd() {
const time = (new Date().getTime() - new Date(this.info.endTime).getTime()) / 60 / 60 / 1000 const time = (new Date().getTime() - new Date(this.info.endTime).getTime()) / 60 / 60 / 1000
if (!this.info.endTime) { if (!this.info.endTime) {
return false return false
@@ -125,11 +119,11 @@
return false return false
} }
return !(this.info.status === '2' && time > 24); return !(this.info.status === '2' && time > 24)
} },
}, },
onLoad (query) { onLoad(query) {
this.$loading() this.$loading()
this.id = query.id this.id = query.id
this.getList(query.id) this.getList(query.id)
@@ -144,11 +138,13 @@
}, },
methods: { methods: {
getInfo (id) { getInfo(id) {
this.$instance.post(`/app/appvillageactivityinfo/queryDetailById?id=${id}`).then(res => { this.$instance
.post(`/app/appvillageactivityinfo/queryDetailById?id=${id}`)
.then((res) => {
if (res.code === 0) { if (res.code === 0) {
this.info = res.data this.info = res.data
this.info.url = res.data.url ? JSON.parse(res.data.url)[0].url: '' this.info.url = res.data.url ? JSON.parse(res.data.url)[0].url : ''
this.$nextTick(() => { this.$nextTick(() => {
this.pageShow = true this.pageShow = true
@@ -156,12 +152,13 @@
} }
this.$hideLoading() this.$hideLoading()
}).catch(() => { })
.catch(() => {
this.$hideLoading() this.$hideLoading()
}) })
}, },
toAdd (url) { toAdd(url) {
if (!this.token) { if (!this.token) {
this.$refs.login.show() this.$refs.login.show()
@@ -181,7 +178,7 @@
this.$linkTo(url) this.$linkTo(url)
}, },
signUp () { signUp() {
if (this.info.status === '1') { if (this.info.status === '1') {
return this.$toast('报名已截止') return this.$toast('报名已截止')
} }
@@ -203,12 +200,14 @@
} }
this.$loading() this.$loading()
this.$instance.post('/app/appvillageactivityuser/report', { this.$instance
.post('/app/appvillageactivityuser/report', {
activityId: this.id, activityId: this.id,
userId: this.$store.state.user.id, userId: this.$store.state.user.id,
name: this.$store.state.user.nickName, name: this.$store.state.user.nickName,
phone: this.$store.state.user.phone phone: this.$store.state.user.phone,
}).then(res => { })
.then((res) => {
if (res.code === 0) { if (res.code === 0) {
this.$toast('报名成功') this.$toast('报名成功')
this.getInfo(this.id) this.getInfo(this.id)
@@ -218,35 +217,37 @@
}) })
}, },
preview (url, imgs) { preview(url, imgs) {
uni.previewImage({ uni.previewImage({
urls: imgs.map(v => v.url), urls: imgs.map((v) => v.url),
current: url current: url,
}) })
}, },
getList (id) { getList(id) {
if (this.isMore) return if (this.isMore) return
this.$instance.post(`/app/appvillageactivitypost/list?activityId=${id}`, null, { this.$instance
.post(`/app/appvillageactivitypost/list?activityId=${id}`, null, {
params: { params: {
current: this.current, current: this.current,
size: 10 size: 10,
} },
}).then(res => { })
.then((res) => {
if (res.code == 0) { if (res.code == 0) {
if (this.current > 1) { if (this.current > 1) {
this.list = [...this.list, ...res.data.records].map(v => { this.list = [...this.list, ...res.data.records].map((v) => {
return { return {
...v, ...v,
images: v.images ? JSON.parse(v.images) : [] images: v.images ? JSON.parse(v.images) : [],
} }
}) })
} else { } else {
this.list = res.data.records.map(v => { this.list = res.data.records.map((v) => {
return { return {
...v, ...v,
images: v.images ? JSON.parse(v.images) : [] images: v.images ? JSON.parse(v.images) : [],
} }
}) })
} }
@@ -262,21 +263,21 @@
}) })
}, },
call (phone) { call(phone) {
uni.makePhoneCall({ uni.makePhoneCall({
phoneNumber: phone phoneNumber: phone,
}) })
} },
}, },
onReachBottom() { onReachBottom() {
this.getList() this.getList()
} },
} }
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.detail { .detail {
min-height: 100vh; min-height: 100vh;
padding: 0 0 250px 0; padding: 0 0 250px 0;
background: #fff; background: #fff;
@@ -296,10 +297,10 @@
} }
::v-deep .u-tab-item { ::v-deep .u-tab-item {
font-size: 32px!important; font-size: 32px !important;
&:first-child { &:first-child {
padding: 0!important; padding: 0 !important;
} }
} }
@@ -331,7 +332,7 @@
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
padding: 34px 0; padding: 34px 0;
border-bottom: 1px solid #DDDDDD; border-bottom: 1px solid #dddddd;
label { label {
color: #999999; color: #999999;
@@ -351,7 +352,7 @@
&.detail-info__item--phone { &.detail-info__item--phone {
span { span {
color: #4181FF; color: #4181ff;
} }
} }
} }
@@ -370,16 +371,16 @@
line-height: 44px; line-height: 44px;
text-align: center; text-align: center;
color: #fff; color: #fff;
background: #42D784; background: #42d784;
border-radius: 8px; border-radius: 8px;
font-size: 26px; font-size: 26px;
&.status1 { &.status1 {
background: #1AAAFF; background: #1aaaff;
} }
&.status2 { &.status2 {
background: #E4E4E4; background: #e4e4e4;
} }
} }
@@ -394,7 +395,7 @@
i { i {
font-style: normal; font-style: normal;
color: #4181FF; color: #4181ff;
font-size: 28px; font-size: 28px;
} }
} }
@@ -406,7 +407,7 @@
} }
.detail-tips { .detail-tips {
padding: 10px 32px 0!important; padding: 10px 32px 0 !important;
& > h2 { & > h2 {
height: 116px; height: 116px;
@@ -439,6 +440,9 @@
margin: 0 4px 4px 0; margin: 0 4px 4px 0;
border-radius: 16px; border-radius: 16px;
} }
image:nth-child(3n + 0) {
margin: 0;
}
} }
.dynamic-item__top { .dynamic-item__top {
@@ -466,5 +470,5 @@
} }
} }
} }
} }
</style> </style>