This commit is contained in:
lmj
2022-11-23 17:15:14 +08:00
parent 8b84c42333
commit 0a22b8387d
3 changed files with 74 additions and 0 deletions

View File

@@ -76,6 +76,7 @@ export const pages=[
{title:'编辑笔记',path:'Noteedit',component:'user/Noteedit',hidden:true}, {title:'编辑笔记',path:'Noteedit',component:'user/Noteedit',hidden:true},
{title:'我的测评',path:'myassess',component:'user/MyAssess',hidden:true}, {title:'我的测评',path:'myassess',component:'user/MyAssess',hidden:true},
{title:'我的收藏',path:'favorites',component:'user/MyFavorites',hidden:false}, {title:'我的收藏',path:'favorites',component:'user/MyFavorites',hidden:false},
{title:'用户调研',path:'research',component:'user/Myresearch',hidden:false},
{title:'我的关注',path:'follows',component:'user/MyFollow',hidden:false}, {title:'我的关注',path:'follows',component:'user/MyFollow',hidden:false},
{title:'我的草稿',path:'mydraft',component:'user/MyDraft',hidden:false}, {title:'我的草稿',path:'mydraft',component:'user/MyDraft',hidden:false},
{title:'个人设置',path:'setting',component:'user/Setting',hidden:false}, {title:'个人设置',path:'setting',component:'user/Setting',hidden:false},

View File

@@ -43,6 +43,23 @@
<!-- 临时增加上线一段时间后删除 结束 --> <!-- 临时增加上线一段时间后删除 结束 -->
<div class="msg-list">
<a href="javascript:void(0);">
<div class="msg-top">
<div>
<span style="padding-right: 10px;"><el-checkbox disabled></el-checkbox></span>
<!-- <router-link to="../../user/Myresearch.vue" > -->
<span @click="jumResearch()">系统消息</span>
<!-- </router-link> -->
</div>
</div>
<div class="msg-body" @click="jumResearch()">
<div class="msg-body-content">学习平台 V2.0邀您进行用户调研体验</div>
</div>
<div class="msg-time">2022-11-23 12:40:50</div>
</a>
</div>
<div class="msg-list" v-for="(item, index) in data" :key="index"> <div class="msg-list" v-for="(item, index) in data" :key="index">
<div class="msg-top"> <div class="msg-top">
@@ -136,6 +153,10 @@ export default {
this.isReadChooseList(); this.isReadChooseList();
}, },
methods: { methods: {
jumResearch(){
this.$router.push('/user/Myresearch.vue');
// return this.webBaseUrl + '/src/views/user/myResearch.vue';
},
queryMessage(flag) { queryMessage(flag) {
this.showMessage = '加载中...'; this.showMessage = '加载中...';
if (flag) { if (flag) {

View File

@@ -0,0 +1,52 @@
<template>
<div>
<div class="title">学习平台 V2.0邀您进行用户体验调研</div>
<div style="margin-bottom:20px;">亲爱的校友您好</div>
<div class="content">学习平台V2.0已于11月4日上线V2.0 围绕学习激励学习社交学习偏好等用户关注的学习体验进行了改进优化现诚邀您对本次升级后的使用体验进行测评我们将以您的意见反馈为输入不断优化和改进</div>
<div class="button-box">
<el-button type="primary" round>立即参与</el-button>
</div>
</div>
</template>
<script>
import { mapGetters } from 'vuex';
import portalHeader from '@/components/PortalHeader.vue';
import portalFooter from '@/components/PortalFooter.vue';
export default {
components: {
portalHeader,
portalFooter
},
computed: {
...mapGetters(['userInfo'])
},
}
</script>
<style lang="scss" scoped>
.button-box{
width: 100%;
margin-top: 30px;
text-align: center;
button{
width: 180px;
padding: 0;
height: 30px;
font-size: #fff;
font-weight: normal;
text-align: center;
background-color: #0078FC;
}
}
.content{
font-size: 15px;
color: #000;
}
.title{
text-align: center;
margin-top: 20px;
margin-bottom: 15px;
}
</style>