收藏的回答

This commit is contained in:
86182
2022-10-29 14:15:02 +08:00
parent 999d9c14b4
commit b1bb55d0ee

View File

@@ -103,6 +103,16 @@ const isNoFavorite=function(date){
return ajax.postJson('/xboe/m/favorite/isNoFavorite',data);
}
/**
* 我收藏的回答
* pageIndex 页数
* pageSize 条数
* keyword 关键词
* */
const findAnswerPage=function(data){
return ajax.post('/xboe/m/favorite/favorite-answer',data);
}
export default{
has,
remove,
@@ -115,5 +125,6 @@ export default{
coursePageList,
findAll,
queryAll,
isNoFavorite
isNoFavorite,
findAnswerPage
}