From 07c58e2ce718dd1ef66e412157960a3c6d76216f Mon Sep 17 00:00:00 2001 From: lyswhut Date: Mon, 28 Sep 2020 23:00:53 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=85=B3=E9=97=AD=E5=88=87?= =?UTF-8?q?=E6=8D=A2=E5=8A=A8=E7=94=BB=E6=97=B6=E4=BB=8E=E6=90=9C=E7=B4=A2?= =?UTF-8?q?=E5=80=99=E9=80=89=E5=88=97=E8=A1=A8=E7=82=B9=E5=87=BB=E5=86=85?= =?UTF-8?q?=E5=AE=B9=E6=97=A0=E6=95=88=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- publish/changeLog.md | 5 +++-- src/renderer/components/material/SearchInput.vue | 7 +++++-- 2 files changed, 8 insertions(+), 4 deletions(-) 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()