mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/learning-system-portal.git
synced 2025-12-09 02:46:44 +08:00
修改
This commit is contained in:
@@ -72,6 +72,7 @@ export const pages=[
|
||||
{title:'个人',path:'/user',hidden:false,children:[
|
||||
{title:'我的分享',path:'myshare',component:'share/MyList',hidden:false},
|
||||
{title:'分享给我的',path:'toshare',component:'share/ToList',hidden:false},
|
||||
{title:'我的笔记',path:'Mynotes',component:'user/Mynotes',hidden:true},
|
||||
{title:'我的测评',path:'myassess',component:'user/MyAssess',hidden:true},
|
||||
{title:'我的收藏',path:'favorites',component:'user/MyFavorites',hidden:false},
|
||||
{title:'我的关注',path:'follows',component:'user/MyFollow',hidden:false},
|
||||
|
||||
47
src/views/user/Mynotes.vue
Normal file
47
src/views/user/Mynotes.vue
Normal file
@@ -0,0 +1,47 @@
|
||||
<template>
|
||||
<div>
|
||||
<div class="note-hear">
|
||||
<h3>我的笔记</h3>
|
||||
<div>
|
||||
<el-button>导入</el-button>
|
||||
<el-button>导出</el-button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="note-sift">
|
||||
<el-button>默认按钮</el-button>
|
||||
<el-button>默认按钮</el-button>
|
||||
<el-button>默认按钮</el-button>
|
||||
<el-button>默认按钮</el-button>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.note-hear{
|
||||
padding: 38px 42px;
|
||||
h3{
|
||||
margin: 0;
|
||||
float: left;
|
||||
font-size: 18px;
|
||||
font-weight: 600;
|
||||
color: #333333;
|
||||
}
|
||||
div{
|
||||
float: right;
|
||||
button{
|
||||
width: 140px;
|
||||
font-size: 14px;
|
||||
height: 40px;
|
||||
border-radius: 4px;
|
||||
border: 1px solid rgba(153,153,153,0.2);
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user