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

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
+10
View File
@@ -0,0 +1,10 @@
module.exports = (params, useAxios) => {
const t = Number(params.t) === 0 ? 0 : 1;
return useAxios({
url: `/youth/v1/channel${t === 0 ? '_un' : ''}_subscribe`,
encryptType: 'android',
method: t === 0 ? 'delete': 'post',
params: { global_collection_id: params.global_collection_id, source: 1},
cookie: params?.cookie,
});
};