回复的api

This commit is contained in:
86182
2022-11-08 14:03:22 +08:00
parent bf7e0de08b
commit eef23a6cd8

View File

@@ -25,12 +25,13 @@ const del=function (id){
/** /**
* 回复或者删除留言 * 回复或者删除留言
* @param{ * @param{
* id * parentId 父id
* reply 回复内容 * topId 一级id
* content 回复内容
* } * }
* */ * */
const answer=function (data){ const answer=function (data){
return ajax.post(baseURL,'/xboe/subgroup/m/guest/answer',data); return ajax.postJson(baseURL,'/xboe/subgroup/m/guest/answer',data);
} }
/** /**