|
@@ -89,12 +89,15 @@ const goDetail=(id)=>{
|
|
|
}
|
|
|
})
|
|
|
}
|
|
|
-
|
|
|
+import { ElMessage,ElMessageBox } from 'element-plus'
|
|
|
import {apiActivityAddRemind,apiActivityCancelRemind} from '@/api/activity.js'
|
|
|
+import {applyAuth} from './applyAuth'
|
|
|
// 添加/取消提醒
|
|
|
const handleRemind=(item)=>{
|
|
|
if(item.hasRemind===0){
|
|
|
addRemind(item)
|
|
|
+ }else{
|
|
|
+ cancelRemind(item)
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -102,15 +105,62 @@ const handleRemind=(item)=>{
|
|
|
const addRemind=async (item)=>{
|
|
|
const res=await apiActivityAddRemind({activity_id:Number(item.activityId)})
|
|
|
if(res.code===200){
|
|
|
+ const htmlStr=`<h4 style="text-align:center;margin-bottom:5px;font-size:16px;margin-top:0">设置成功</h4>
|
|
|
+ <p style="text-align:center;">关注【弘则研究】公众号,接收会前15分钟微信提醒,并及时获取活动信息变更通知</p>`
|
|
|
+ ElMessageBox({
|
|
|
+ title:'会议提醒',
|
|
|
+ message:htmlStr,
|
|
|
+ dangerouslyUseHTMLString: true,
|
|
|
+ confirmButtonText:'知道了',
|
|
|
+ confirmButtonClass:'self-elmessage-confirm-btn'
|
|
|
+ })
|
|
|
+ item.hasRemind=1
|
|
|
+ }else if(res.code===4001){
|
|
|
+ if(res.data.type=='time'){
|
|
|
+ const htmlStr=`<p style="text-align:center;">会议开始前15分钟内无法设置会议提醒</p>`
|
|
|
+ ElMessageBox({
|
|
|
+ title:'会议提醒',
|
|
|
+ message:htmlStr,
|
|
|
+ dangerouslyUseHTMLString: true,
|
|
|
+ confirmButtonText:'知道了',
|
|
|
+ confirmButtonClass:'self-elmessage-confirm-btn'
|
|
|
+ })
|
|
|
+ }
|
|
|
+ }else if(res.code===403){
|
|
|
+ applyAuth(res.data,'会议',2,'活动列表')
|
|
|
+ }
|
|
|
+}
|
|
|
|
|
|
+//取消提醒
|
|
|
+const cancelRemind=async (item)=>{
|
|
|
+ const res=await apiActivityCancelRemind({activity_id:Number(item.activityId)})
|
|
|
+ if(res.code===200){
|
|
|
+ ElMessage('取消提醒成功')
|
|
|
+ item.hasRemind=0
|
|
|
+ }else if(res.code===403){
|
|
|
+ ElMessage.warning(res.msg)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+// 记录滚动条
|
|
|
+import {onActivated} from 'vue'
|
|
|
+let listWrap=ref(null)
|
|
|
+onActivated(()=>{
|
|
|
+ listWrap.value.scrollTop=scrollTopNum.value
|
|
|
+})
|
|
|
+
|
|
|
+let scrollTopNum=ref(0)
|
|
|
+const listWrapScroll=(e)=>{
|
|
|
+ scrollTopNum.value=e.srcElement.scrollTop
|
|
|
+}
|
|
|
</script>
|
|
|
|
|
|
|
|
|
<template>
|
|
|
- <div class="activity-list-page">
|
|
|
+ <div class="activity-list-page" ref="listWrap" @scroll="listWrapScroll">
|
|
|
<el-affix>
|
|
|
<div class="top-nav-wrap">
|
|
|
<div class="nav-first">
|
|
@@ -129,7 +179,7 @@ const addRemind=async (item)=>{
|
|
|
<img src="@/assets/empty-bg.png" alt="">
|
|
|
<p>暂无数据</p>
|
|
|
</div>
|
|
|
- <ul class="list-wrap" v-infinite-scroll="onLoad" :infinite-scroll-immediate="false" v-if="listData.list.length>0">
|
|
|
+ <ul class="list-wrap" v-infinite-scroll="onLoad" :infinite-scroll-immediate="false" v-if="listData.list.length>0">
|
|
|
<li class="flex item" v-for="item in listData.list" :key="item.activityId" @click="goDetail(item.activityId)">
|
|
|
<el-image
|
|
|
style="width: 93px; height: 111px;border-radius: 4px;flex-shrink: 0;"
|
|
@@ -169,6 +219,8 @@ const addRemind=async (item)=>{
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
.activity-list-page{
|
|
|
+ height: 100%;
|
|
|
+ overflow-y: auto;
|
|
|
.top-nav-wrap{
|
|
|
padding: 20px 0;
|
|
|
background-color: #fff;
|