no message

This commit is contained in:
A1300399510
2023-12-25 18:39:49 +08:00
parent 4607702bdc
commit c80cee6eb0
11 changed files with 879 additions and 389 deletions

View File

@@ -30,11 +30,11 @@ export const detailsCommentListHttp = query => {
}
// 详情数据 - 获取子评论数据
export const detailsChildCommentListHttp = query => {
return Http.post("https://ask.gter.net/api/comment/childrenList", query)
return Http.post("/api/comment/childrenList", query)
}
// 详情数据 - 提交评论
export const detailsSubmitommentListHttp = query => {
return Http.post("https://ask.gter.net/api/comment/submit", query)
return Http.post("/api/comment/submit", query)
}
// 发布相关 - 发布问题初始化,编辑
@@ -42,6 +42,11 @@ export const publishInitHttp = query => {
return Http.post("/api/publish", query)
}
// 发布相关 - 发布问题初始化,编辑
export const publishSchoolSearchHttp = query => {
return Http.post("https://offer.gter.net/miniprogram/InterviewExperience/schoolSearch", query)
}
// 我的 - 用户信息
export const MyUserInfoHttp = query => {
return Http.post("/api/user", query)
@@ -50,4 +55,9 @@ export const MyUserInfoHttp = query => {
// 我的 - 我的发布的面经
export const MyUserPublishHttp = query => {
return Http.post("/api/user/publish", query)
}
// 数据操作 - 收藏
export const MyUserCollectHttp = query => {
return Http.post("/api/user/collect", query)
}