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

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
+22
View File
@@ -0,0 +1,22 @@
// 歌曲评论
module.exports = (params, useAxios) => {
const paramsMap = {
mixsongid: params.mixsongid,
need_show_image: 1,
p: params.page || 1,
pagesize: params.pagesize || 30,
show_classify: params.show_classify || 1,
show_hotword_list: params.show_hotword_list || 1,
extdata: '0',
code: 'fc4be23b4e972707f36b8a828a93ba8a'
}
return useAxios({
url: '/mcomment/v1/cmtlist',
encryptType: 'android',
method: 'POST',
params: paramsMap,
cookie: params?.cookie || {},
});
};