feat: 样式调整

This commit is contained in:
Blizzard
2026-04-28 10:32:19 +08:00
parent 7f51b2a0a8
commit ce91e2cbbe
33 changed files with 1553 additions and 619 deletions
+16 -1
View File
@@ -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,