mirror of
https://gitlab.com/Binaryify/neteasecloudmusicapi.git
synced 2025-05-23 22:37:41 +08:00
20 lines
482 B
JavaScript
20 lines
482 B
JavaScript
// 数字专辑&数字单曲-榜单
|
|
const createOption = require('../util/option.js')
|
|
module.exports = (query, request) => {
|
|
let data = {
|
|
albumType: query.albumType || 0, //0为数字专辑,1为数字单曲
|
|
}
|
|
const type = query.type || 'daily' // daily,week,year,total
|
|
if (type === 'year') {
|
|
data = {
|
|
...data,
|
|
year: query.year,
|
|
}
|
|
}
|
|
return request(
|
|
`/api/feealbum/songsaleboard/${type}/type`,
|
|
data,
|
|
createOption(query, 'weapi'),
|
|
)
|
|
}
|