修复聚合搜索的分页问题
parent
1fa015704a
commit
c40dc0fa50
|
@ -1,25 +1,4 @@
|
||||||
提前祝大家中秋&国庆快乐~
|
|
||||||
|
|
||||||
### 新增
|
|
||||||
|
|
||||||
- 播放控制栏开启/关闭桌面歌词按钮 新增右击按钮时锁定/解锁桌面歌词功能
|
|
||||||
|
|
||||||
### 优化
|
|
||||||
|
|
||||||
- 优化我的列表滚动条位置的保存逻辑
|
|
||||||
- 更新设置-备份与恢复功能的描述
|
|
||||||
- 优化软件内鼠标悬停的提示界面
|
|
||||||
|
|
||||||
### 修复
|
### 修复
|
||||||
|
|
||||||
- 修复桌面歌词窗口不允许拖出桌面之外的位置计算偏移Bug
|
- 修复聚合搜索的分页问题
|
||||||
- 修复网易云KTV嗨榜无法加载的问题
|
|
||||||
- 修复初始化搜索历史列表功能
|
|
||||||
- 修复重启软件后试听列表与收藏列表无法恢复上次的滚动位置的问题
|
|
||||||
- 修复歌曲封面无法嵌入的Bug
|
|
||||||
- 修复酷狗歌词格式问题
|
|
||||||
- 修复关闭切换动画时从搜索候选列表点击内容无效的问题
|
|
||||||
|
|
||||||
### 其他
|
|
||||||
|
|
||||||
- 更新 Electron 到 v10.1.3
|
|
||||||
|
|
|
@ -84,12 +84,11 @@ export default {
|
||||||
if (limit != null) this.limit = limit
|
if (limit != null) this.limit = limit
|
||||||
return this.musicSearch(str, page).then(result => {
|
return this.musicSearch(str, page).then(result => {
|
||||||
if (!result || result.code !== 200) return this.search(str, page, { limit }, retryNum)
|
if (!result || result.code !== 200) return this.search(str, page, { limit }, retryNum)
|
||||||
// console.log(result.result)
|
let list = this.handleResult(result.result.songs || [])
|
||||||
let list = this.handleResult(result.result.songs)
|
|
||||||
|
|
||||||
if (list == null) return this.search(str, page, { limit }, retryNum)
|
if (list == null) return this.search(str, page, { limit }, retryNum)
|
||||||
|
|
||||||
this.total = result.result.songCount
|
this.total = result.result.songCount || 0
|
||||||
this.page = page
|
this.page = page
|
||||||
this.allPage = Math.ceil(this.total / this.limit)
|
this.allPage = Math.ceil(this.total / this.limit)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue