diff --git a/publish/changeLog.md b/publish/changeLog.md index 3adfdbeb..56676394 100644 --- a/publish/changeLog.md +++ b/publish/changeLog.md @@ -11,6 +11,7 @@ ### 修复 - 修复存在弹出层时,搜索建议列表被弹出层覆盖的问题 +- 修复搜索、排行榜、歌单列表多选框从不定状态到选中的Bug ### 移除 diff --git a/src/renderer/components/material/Checkbox.vue b/src/renderer/components/material/Checkbox.vue index 901e4e39..9cc82e68 100644 --- a/src/renderer/components/material/Checkbox.vue +++ b/src/renderer/components/material/Checkbox.vue @@ -71,9 +71,9 @@ export default { let bool = this.bool if (this.indeterminate) { bool = true - // this.$nextTick(() => { - this.bool = true - // }) + this.$nextTick(() => { + this.bool = bool + }) } checked = bool } else {