This commit is contained in:
lmj
2022-09-13 11:36:46 +08:00
parent 6292650ac8
commit 9ffc39c358
2 changed files with 48 additions and 0 deletions

View File

@@ -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},

View 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>