修复关闭切换动画时从搜索候选列表点击内容无效的问题
parent
6fe794fdf5
commit
07c58e2ce7
|
@ -2,9 +2,10 @@
|
||||||
|
|
||||||
- 优化我的列表滚动条位置的保存逻辑
|
- 优化我的列表滚动条位置的保存逻辑
|
||||||
|
|
||||||
|
|
||||||
### 修复
|
### 修复
|
||||||
|
|
||||||
- 修复初始化搜索历史列表功能
|
- 修复初始化搜索历史列表功能
|
||||||
- 修复重启软件后试听列表与收藏列表无法恢复上次的滚动位置的问题
|
- 修复重启软件后试听列表与收藏列表无法恢复上次的滚动位置的问题
|
||||||
|
- 修复歌曲封面无法嵌入的Bug
|
||||||
|
- 修复酷狗歌词格式问题
|
||||||
|
- 修复关闭切换动画时从搜索候选列表点击内容无效的问题
|
||||||
|
|
|
@ -94,6 +94,7 @@ export default {
|
||||||
this.$refs.dom_input.focus()
|
this.$refs.dom_input.focus()
|
||||||
},
|
},
|
||||||
handleTemplistClick(index) {
|
handleTemplistClick(index) {
|
||||||
|
console.log(index)
|
||||||
this.sendEvent('listClick', index)
|
this.sendEvent('listClick', index)
|
||||||
},
|
},
|
||||||
handleFocus() {
|
handleFocus() {
|
||||||
|
@ -101,8 +102,10 @@ export default {
|
||||||
this.sendEvent('focus')
|
this.sendEvent('focus')
|
||||||
},
|
},
|
||||||
handleBlur() {
|
handleBlur() {
|
||||||
this.focus = false
|
setTimeout(() => {
|
||||||
this.sendEvent('blur')
|
this.focus = false
|
||||||
|
this.sendEvent('blur')
|
||||||
|
}, 80)
|
||||||
},
|
},
|
||||||
handleSearch() {
|
handleSearch() {
|
||||||
this.hideList()
|
this.hideList()
|
||||||
|
|
Loading…
Reference in New Issue