mirror of
https://github.com/GiriNeko/YesPlayMusic.git
synced 2025-12-18 06:07:48 +00:00
feat: personal FM (finally🎉)
This commit is contained in:
parent
e169ee19e2
commit
11eb29b3b8
9 changed files with 280 additions and 16 deletions
|
|
@ -27,3 +27,24 @@ export function search(params) {
|
|||
return data;
|
||||
});
|
||||
}
|
||||
|
||||
export function personalFM() {
|
||||
return request({
|
||||
url: "/personal_fm",
|
||||
method: "get",
|
||||
params: {
|
||||
timestamp: new Date().getTime(),
|
||||
},
|
||||
});
|
||||
}
|
||||
|
||||
export function fmTrash(id) {
|
||||
return request({
|
||||
url: "/fm_trash",
|
||||
method: "post",
|
||||
params: {
|
||||
timestamp: new Date().getTime(),
|
||||
id,
|
||||
},
|
||||
});
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue