feat: 样式调整
This commit is contained in:
+16
-1
@@ -194,7 +194,7 @@ function getVipConfig() {
|
||||
|
||||
/** 发起 VIP 开通预支付 */
|
||||
function initiateVipPayment() {
|
||||
return post('/vip/vip',{})
|
||||
return post('/vip/vip', {})
|
||||
}
|
||||
|
||||
function getUserInfo() {
|
||||
@@ -231,6 +231,19 @@ function unlockChannel(channelId, type) {
|
||||
return post('/radio/subscription/unlock', { channelId, type })
|
||||
}
|
||||
|
||||
/** 获取点赞列表 */
|
||||
function getLikeList(params) {
|
||||
return post('/like/list', {
|
||||
current: (params && params.current) || 1,
|
||||
pageSize: (params && params.pageSize) || 30
|
||||
})
|
||||
}
|
||||
|
||||
/** 清空全部点赞 */
|
||||
function removeAllLikes() {
|
||||
return get('/like/removeAll')
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
miniLogin,
|
||||
getLocation,
|
||||
@@ -256,6 +269,8 @@ module.exports = {
|
||||
removeAllFavorites,
|
||||
getFavoriteList,
|
||||
toggleLike,
|
||||
getLikeList,
|
||||
removeAllLikes,
|
||||
addComment,
|
||||
deleteComment,
|
||||
getCommentList,
|
||||
|
||||
Reference in New Issue
Block a user