From 96b209aeddc3e68bb9b82181882f566962064886 Mon Sep 17 00:00:00 2001 From: 86182 Date: Thu, 20 Oct 2022 15:22:21 +0800 Subject: [PATCH] =?UTF-8?q?=E6=88=91=E7=9A=84=E5=85=B3=E6=B3=A8=E4=BA=8C?= =?UTF-8?q?=E6=AC=A1=E6=9F=A5=E8=AF=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/phase2/userfollow.js | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/api/phase2/userfollow.js b/src/api/phase2/userfollow.js index 680e2a89..91b4aafd 100644 --- a/src/api/phase2/userfollow.js +++ b/src/api/phase2/userfollow.js @@ -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 }