Skip to content

Commit

Permalink
chore: 清空调试信息,添加部分按钮说明
Browse files Browse the repository at this point in the history
  • Loading branch information
GwokHiujin authored and cjj826 committed Jun 5, 2023
1 parent 643cf5e commit 9c33aed
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion src/renderer/components/header/MyHeader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,8 @@
<div class="area-header-bot items-center content-center flex flex-wrap z-10">
<TabList :open-files="openFiles" :cur-obj="curObj"></TabList>
<button @click="changeTheme"
class="theme-element;"
:title="'切换字体主题'"
class="theme-element"
v-show="(mode === 0 || mode === 1)"
style="-webkit-app-region: no-drag; right: 10px; position: fixed; z-index: 20">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="none" version="1.1"
Expand Down
4 changes: 2 additions & 2 deletions src/renderer/components/mindEditor/FicGraph.vue
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ export default {
})
bus.on('getNodeAndLink', (obj) => {
console.log('刷新!!!')
// console.log('刷新!!!')
const data = obj.nodes
const link = obj.links
let id2NodeIndex = new Map()
Expand Down Expand Up @@ -312,7 +312,7 @@ export default {
hidingLinks.set(link.id, link)
}
}
console.log('HidingLinks: ' + hidingLinks.size)
// console.log('HidingLinks: ' + hidingLinks.size)
}, 200)
}
Expand Down
4 changes: 2 additions & 2 deletions src/renderer/components/mindEditor/FicTree.vue
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ export default defineComponent({
bus.on('sendToFicTree', (obj) => {
const rawData = JSON.parse(JSON.stringify(obj))
bfs(rawData)
console.log(rawData)
// console.log(rawData)
ficTree.setData(rawData)
mode = store.getters.getMode // 2: Tree; 5: Forest
setStyle()
Expand Down Expand Up @@ -581,7 +581,7 @@ export default defineComponent({
node.data.fillColor = '#ffffff'
node.data.color = '#dcdcdc'
} else if (type === 'table') {
console.log(node)
// console.log(node)
}
}
Expand Down

0 comments on commit 9c33aed

Please sign in to comment.