完成网络音乐、工具页面与安装器体验升级

This commit is contained in:
2026-08-18 13:54:33 +08:00
parent 337390f53e
commit 149c28082d
1082 changed files with 26442 additions and 162838 deletions
+18
View File
@@ -0,0 +1,18 @@
// 获取排行榜往期列表
module.exports = (params, useAxios) => {
const parmasMap = {
rank_cid: params.rank_cid || 0,
rankid: params.rankid,
ranktype: 1,
type: 0,
plat: 2,
};
return useAxios({
url: '/ocean/v6/rank/vol',
method: 'get',
encryptType: 'android',
params: parmasMap,
cookie: params?.cookie || {},
});
};