dashboard 接口
1. 获取概览
/** * @path /management/dashboard/overview/getOverview * @method POST * @param */const result = { data: { postCount: 988, channelCount: 15, sheetCount: 12, userCount: 6, authorCount: 6, onlinePostCount: 971, }, code: 200, success: true, message: "SUCCESS",};
2. 获取文章趋势
/** * @path /management/dashboard/overview/getPostTrends * @method POST * @param {days} */const result = { data: { postTrends: [ { date: "2024/7/2", count: 0, }, { date: "2024/7/3", count: 0, }, ], }, code: 200, success: true, message: "SUCCESS",};
3. 获取前 channel, sheet, user, author 前 5
/** * @path /management/dashboard/overview/getChannelSheetUserAuthorLimit5 * @method POST * @param {id} */const result = { data: { channelLimit5: [ { id: "650ada42a0114870bb37dfbbae9a7138", name: "无", pos: 15, visible: "0", }, ], sheetLimit5: [ { id: "12af235486fde6684e4b9e83f5d2b779", name: "文化人文", cover: "", description: "社科/文学", visible: "1", }, ], userLimit5: [ { id: "d756c3184d924937b901e65e82752aac", friendCount: 0, gender: 1, avatarUrl: "http://cn-sy1.rains3.com:443/blog-service-oss/assets/h5/user/avatar/20240118/076d60b3cd504ca191be019944b7aa0f.png", articleCount: 0, fansCount: 0, type: 1, nickname: "hejian_test3 的昵称", score: 0, loginTime: null, createTime: 1705566703531, username: "hejian_test3", region: "", address: "天津市;河东区&", description: "这个人很懒,什么都没有留下", }, ], authorLimit5: [ { id: "d4f4cc7f6e6a41da8177c91a1a4ddc10", name: "test", followCount: 0, type: 1, status: 0, avatarUrl: "http://cn-sy1.rains3.com:443/blog-service-oss/assets/post-author/4ca6a7d21d484a4fa1e65df7ffe6f729.png", articleCount: 0, fansCount: 0, nick: "test@123", score: 0, createTime: 1702019640171, updateTime: 1702020129065, loginTime: null, description: "1", coverUrl: "http://cn-sy1.rains3.com:443/blog-service-oss/assets/post-author/aa0a1430c5a943caa2ad4b9996c6d5c2.png", companyVerifyInfoId: null, defaultUser: 0, }, ], postCommentTop5: [ { id: "6066", title: "孩子越大越没自信,请问到底是哪出了问题?", createTime: 1676196092000, updateTime: 1676196092000, shelveTimeEnd: null, shelveTimeStart: null, status: "PUBLISHED", poster: "", view: 0, authorId: "5ba1a83e33cf47d182b98ac1fe1beac8", directoryId: "6a1c244119558802ad9e1da41a348c4f", channelId: "db0bbb22ae11a11c352110e2cf31ce41", postType: "1", srcTopicId: "b97f9e3412b93a06a846ba779b52cfbe", videoPoster: null, videoUrl: null, postTags: null, galleries: null, pinned: "0", recommended: "0", featured: "0", hot: "0", original: "0", paid: "0", free: "0", political: "0", carousel: "0", privated: "0", publiced: "0", comment: 521, }, ], }, code: 200, success: true, message: "SUCCESS",};