@我的全部

This commit is contained in:
86182
2022-07-14 15:26:05 +08:00
parent 68a0960b76
commit 682195c732

View File

@@ -97,6 +97,15 @@ const delReply=function(data){
return ajax.post('/xboe/m/comment/delete-reply',data);
}
/**
* @我的全部
* @pageIndex 页数
* @paramSize 每页展示行数
* @uname 根据人员姓名搜索
* */
const queryAll=function (query){
return ajax.post('/xboe/m/comment/queryAll',query);
}
export default{
del,
@@ -107,5 +116,6 @@ export default{
reply,
replyList,
userReplyList,
delReply
delReply,
queryAll
}