我的关注二次查询

This commit is contained in:
86182
2022-10-20 15:22:21 +08:00
parent c2fd895155
commit 96b209aedd

View File

@@ -82,6 +82,13 @@ const has=function (followId){
return ajax.get(baseURL,'/xboe/subgroup/m/userfollow/has?followId='+followId);
}
/**
* 我的关注二次查询
* */
const list=function (){
return ajax.get(baseURL,'/xboe/subgroup/m/userfollow/list');
}
export default {
save,
remove,
@@ -90,5 +97,6 @@ export default {
ids,
counts,
has,
checkFllow
checkFllow,
list
}