|
|
@ -56,7 +56,7 @@ |
|
|
|
<span>社区活动</span> |
|
|
|
<span @click="$router.push('/activity')">更多</span> |
|
|
|
</div> |
|
|
|
<div class="activity_content flex" v-for="(item, index) in activityList" :key="index" @click="$router.push({ path: `/activityDetail`,query: { id:item.id} })"> |
|
|
|
<div class="activity_content flex" v-for="(item, index) in activityList" :key="index" @click="handelClickJump(`activityDetail`,item)"> |
|
|
|
<img :src="item.coverPic" alt="" class="mr10" style="width: 75px;height: 95px;"> |
|
|
|
<div class="flex flex-y flex1 flex-end" style="overflow: hidden;"> |
|
|
|
<div class="van-ellipsis">{{ item.activityName }}</div> |
|
|
@ -321,7 +321,11 @@ export default { |
|
|
|
this.showRegister = true; |
|
|
|
} |
|
|
|
} else { |
|
|
|
if (this.$store.state.app.userInfo.mobile) { |
|
|
|
this.$router.push({ path: `/${path}`,query:{id:item.id} }) |
|
|
|
} else { |
|
|
|
this.showRegister = true; |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
|
|
|
|