diff --git a/publish/changeLog.md b/publish/changeLog.md index a214d4bc..85b09797 100644 --- a/publish/changeLog.md +++ b/publish/changeLog.md @@ -2,9 +2,10 @@ - 优化我的列表滚动条位置的保存逻辑 - ### 修复 - 修复初始化搜索历史列表功能 - 修复重启软件后试听列表与收藏列表无法恢复上次的滚动位置的问题 - +- 修复歌曲封面无法嵌入的Bug +- 修复酷狗歌词格式问题 +- 修复关闭切换动画时从搜索候选列表点击内容无效的问题 diff --git a/src/renderer/components/material/SearchInput.vue b/src/renderer/components/material/SearchInput.vue index 1f829139..142d5a00 100644 --- a/src/renderer/components/material/SearchInput.vue +++ b/src/renderer/components/material/SearchInput.vue @@ -94,6 +94,7 @@ export default { this.$refs.dom_input.focus() }, handleTemplistClick(index) { + console.log(index) this.sendEvent('listClick', index) }, handleFocus() { @@ -101,8 +102,10 @@ export default { this.sendEvent('focus') }, handleBlur() { - this.focus = false - this.sendEvent('blur') + setTimeout(() => { + this.focus = false + this.sendEvent('blur') + }, 80) }, handleSearch() { this.hideList()