mirror of
https://gitlab.com/Binaryify/neteasecloudmusicapi.git
synced 2025-05-23 22:37:41 +08:00
16 lines
532 B
JavaScript
16 lines
532 B
JavaScript
//电台排行榜获取
|
||
const createOption = require('../util/option.js')
|
||
module.exports = (query, request) => {
|
||
const data = {
|
||
djRadioId: query.djRadioId || null, // 电台id
|
||
sortIndex: query.sortIndex || 1, // 排序 1:播放数 2:点赞数 3:评论数 4:分享数 5:收藏数
|
||
dataGapDays: query.dataGapDays || 7, // 天数 7:一周 30:一个月 90:三个月
|
||
dataType: query.dataType || 3, // 未知
|
||
}
|
||
return request(
|
||
'/api/expert/worksdata/works/top/get',
|
||
data,
|
||
createOption(query),
|
||
)
|
||
}
|