Merge pull request 'edit' (#116) from lyc-dev into main
This commit is contained in:
commit
524eedc451
|
@ -9,6 +9,7 @@ export const useToolState = defineStore('tool', {
|
||||||
showBoardAll: false, // 全屏画板-是否显示
|
showBoardAll: false, // 全屏画板-是否显示
|
||||||
isPdfWin: false, // pdf窗口是否打开
|
isPdfWin: false, // pdf窗口是否打开
|
||||||
isToolWin: false, // 工具窗口是否打开
|
isToolWin: false, // 工具窗口是否打开
|
||||||
|
curSubjectNode: {} // 当前教材节点 (包含当前教材 单元)
|
||||||
}),
|
}),
|
||||||
actions: {
|
actions: {
|
||||||
}
|
}
|
||||||
|
|
|
@ -126,4 +126,16 @@ onMounted(()=>{
|
||||||
})
|
})
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped></style>
|
<style lang="scss" scoped>
|
||||||
|
:deep(.el-tree-node) {
|
||||||
|
.el-tree-node__content {
|
||||||
|
height: 45px;
|
||||||
|
border-radius: 10px;
|
||||||
|
color: #EFEFEF;
|
||||||
|
//#368FFF
|
||||||
|
&:hover {
|
||||||
|
background-color: #272728;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
Loading…
Reference in New Issue