mirror of
https://gitlab.com/Binaryify/neteasecloudmusicapi.git
synced 2025-05-23 22:37:41 +08:00
13 lines
278 B
JavaScript
13 lines
278 B
JavaScript
// 更新歌曲顺序
|
|
|
|
const createOption = require('../util/option.js')
|
|
module.exports = (query, request) => {
|
|
const data = {
|
|
pid: query.pid,
|
|
trackIds: query.ids,
|
|
op: 'update',
|
|
}
|
|
|
|
return request(`/api/playlist/manipulate/tracks`, data, createOption(query))
|
|
}
|