二次查询接口

This commit is contained in:
86182
2022-09-21 11:09:38 +08:00
parent a9c16f496c
commit 8f546f40c1

View File

@@ -24,7 +24,8 @@ const remove=function (followId){
* 我关注的人列表
* @param{
* pageIndex
* pageSize
* pageSize,
* aid
* }
* */
const page=function (query){
@@ -35,7 +36,8 @@ const page=function (query){
* 我关注的人列表
* @param{
* pageIndex
* pageSize
* pageSize,
* aid
* }
* */
const mypage=function (query){
@@ -49,11 +51,23 @@ const ids=function (data){
return ajax.postJson('/xboe/subgroup/m/userfollow/ids',data);
}
/**
* 被关注数
* 关注数
* @pram{
* aid
* }
* */
const counts=function (aid){
return ajax.get('/xboe/subgroup/m/userfollow/counts?aid='+aid);
}
export default {
save,
remove,
page,
mypage,
ids
ids,
counts
}