This commit is contained in:
86182
2022-09-29 19:37:00 +08:00
parent 2008561872
commit 36015b4881

View File

@@ -61,12 +61,6 @@ const history=function (noteId){
return ajax.get(baseURL,'/xboe/subgroup/m/noteinfo/modify/history?noteId='+noteId);
}
/**
* 分页查询我发布的,收藏的,点赞的笔记 弃用
* */
const pagelist=function (query){
return ajax.get(baseURL,'/xboe/subgroup/m/noteinfo/pagelist',query);
}
/**
* 我的笔记
@@ -123,6 +117,21 @@ const exportPdf=function (data){
return ajax.postJson(baseURL,'/xboe/subgroup/m/noteinfo/exportPdf',data);
}
/**
* 我的笔记收藏和分享都是这一个,目前只有收藏
* @param{
* paegIndex
* pageSize
* dataType 1收藏 2分享
* orderType 排序顺序 顺序倒叙
* orderField 排序字段
* keyword 关键字查询
* }
* */
const pagelist=function (query){
return ajax.post('/xboe/subgroup/m/noteinfo/pagelist',query);
}
export default {
save,
detail,