This commit is contained in:
2023-12-11 01:12:26 +08:00
parent e31e6d8fc5
commit 40bf8f8433
4 changed files with 10 additions and 5 deletions

View File

@@ -21,7 +21,7 @@ const API = {
todoFinished:data => net.PUT("/user/todo",data),// 修改待办列表状态
// 百科
getArticleList:data => net.GET("/article/list",data),// 百科列表
getArticleDetail:data => net.GET("/article/"+data.id),// 文章详情
getArticleDetail:(data,userId) => net.GET("/article/"+data.id,null,true,{"userId":userId}),// 文章详情
// 我的
getStarList:data => net.GET("/favorite/list",data),// 收藏列表
/*