<template>
<div class="notebar">
<Card :padding="0" shadow style="width: 220px;height: 100%">
<p slot="title">
<Icon type="md-add-circle" style="float: right;font-size: 20px;cursor: pointer;padding-top: 2px"/>
<Dropdown @on-click="handleChange">
<span style='cursor: pointer'>切换笔记本</span>
<Icon type="ios-arrow-down"></Icon>
<Dropdown-menu slot="list">
<Dropdown-item v-for='item in notebooks' :key='item.id' :name="item.id">{{item.title}}</Dropdown-item>
</Dropdown-menu>
</Dropdown>
</p>
<CellGroup @on-click='cellChange'>
<Cell
v-for='item in notes'
:key="item.id"
:title="item.title||'标题为空'"
style="border-bottom: 1px solid #eee"
:name="item.id"
:to="`/notes?notebookId=${$route.query.notebookId}¬eId=${item.id}`"
/>
</CellGroup>
</Card>
</div>
</template>
<script>
import Notebook from '../apis/Notebooks'
import Note from '../apis/Notes'
export default {
data(){
return {
notebooks: null,
notes: null,
curNotebookId: '',
curNoteId: ''
}
},
created(){
Notebook.getNotebooks().then(res=>{
this.notebooks = res.data
this.curNotebookId = this.$route.query.notebookId||res.data[0].id;
Note.getNotes({notebookId: this.curNotebookId}).then(res=>{
this.notes = res.data
this.$emit('setCurNote',res.data[0])
this.curNoteId = res.data[0]?res.data[0].id:'null'
console.log(this.curNoteId)
this.$router.replace({
path: '/notes',
query: {
notebookId: this.curNotebookId,
noteId: this.curNoteId
}
})
})
})
},
methods: {
handleChange(id){
this.curNotebookId = id
Note.getNotes({notebookId:id}).then(res=>{
this.notes = res.data || []
this.curNoteId = res.data[0]?res.data[0].id:'null'
this.$emit('setCurNote',res.data[0])
// 如果笔记本中笔记为空
this.$router.replace({
path: '/notes',
query: {
notebookId: this.curNotebookId,
noteId: this.curNoteId
}
})
})
},
cellChange(id){
let curNote = this.notes.find(item=>item.id===id)
this.$emit('setCurNote',curNote)
}
}
// beforeRouteUpdate(to,from,next){
// console.log(111)
// }
}
</script>
07-6 笔记侧边栏.md
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 属性mode有3个可选值:over(默认)、push、side属性align有2个可选值:start(默认)、en...
- 参考教程 https://neutronx.github.io/django-markdownx/ Django博...
- Javascript 是 ECMAScript 的实现和扩展,ES6标准的制定也为Javascript 加入了许多...