Skip to content
Snippets Groups Projects
Commit c6ea4d09 authored by 张 达's avatar 张 达
Browse files

新增根据歌单名称获取歌单的api

parent b33782cb
No related branches found
No related tags found
No related merge requests found
......@@ -15,6 +15,17 @@ export const getPlaylistsByUser = (userInfo) => {
});
}
/*
title: string
*/
export const getPlaylistsByTitle = (titleInfo) => {
console.log(titleInfo)
return axios.get(`${PLAYLIST_MODULE}/fetchByTitle`, { params: titleInfo })
.then(res => {
return res;
});
}
/*
// TODO - modified
- user_name: string
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment