Merge pull request 'edit' (#116) from lyc-dev into main

This commit is contained in:
lyc 2024-08-12 09:38:59 +08:00
commit 524eedc451
2 changed files with 14 additions and 1 deletions

View File

@ -9,6 +9,7 @@ export const useToolState = defineStore('tool', {
showBoardAll: false, // 全屏画板-是否显示
isPdfWin: false, // pdf窗口是否打开
isToolWin: false, // 工具窗口是否打开
curSubjectNode: {} // 当前教材节点 (包含当前教材 单元)
}),
actions: {
}

View File

@ -126,4 +126,16 @@ onMounted(()=>{
})
</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>