From 033c3cd8e9121ed542188bd5f63e877144b103eb Mon Sep 17 00:00:00 2001 From: lyswhut Date: Sun, 15 Dec 2019 21:23:52 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A4=9A=E4=BF=AE=E5=A4=8D=E9=80=89=E6=A1=86?= =?UTF-8?q?=E4=B8=8D=E5=AE=9A=E7=8A=B6=E6=80=81=E5=88=B0=E9=80=89=E4=B8=AD?= =?UTF-8?q?=E7=9A=84Bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- publish/changeLog.md | 1 + src/renderer/components/material/Checkbox.vue | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) 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 {