mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/learning-system-portal.git
synced 2025-12-10 11:26:43 +08:00
修改
This commit is contained in:
@@ -76,6 +76,7 @@ export const pages=[
|
||||
{title:'编辑笔记',path:'Noteedit',component:'user/Noteedit',hidden:true},
|
||||
{title:'我的测评',path:'myassess',component:'user/MyAssess',hidden:true},
|
||||
{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:'mydraft',component:'user/MyDraft',hidden:false},
|
||||
{title:'个人设置',path:'setting',component:'user/Setting',hidden:false},
|
||||
|
||||
@@ -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-top">
|
||||
@@ -136,6 +153,10 @@ export default {
|
||||
this.isReadChooseList();
|
||||
},
|
||||
methods: {
|
||||
jumResearch(){
|
||||
this.$router.push('/user/Myresearch.vue');
|
||||
// return this.webBaseUrl + '/src/views/user/myResearch.vue';
|
||||
},
|
||||
queryMessage(flag) {
|
||||
this.showMessage = '加载中...';
|
||||
if (flag) {
|
||||
|
||||
52
src/views/user/Myresearch.vue
Normal file
52
src/views/user/Myresearch.vue
Normal 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>
|
||||
Reference in New Issue
Block a user