二次查询接口

This commit is contained in:
86182
2022-09-21 17:05:05 +08:00
parent bab68eb2f7
commit 2975280ccf

View File

@@ -62,12 +62,23 @@ const counts=function (aid){
return ajax.get(baseURL,'/xboe/subgroup/m/userfollow/counts?aid='+aid); return ajax.get(baseURL,'/xboe/subgroup/m/userfollow/counts?aid='+aid);
} }
/**
* 查询是否已关注
* @param{
* followId 关注人的id
* }
* */
const has=function (followId){
return ajax.get('/xboe/subgroup/m/userfollow/has?followId='+followId);
}
export default { export default {
save, save,
remove, remove,
page, page,
mypage, mypage,
ids, ids,
counts counts,
has
} }