2025-03-26

This commit is contained in:
2025-03-26 11:00:21 +08:00
parent 927d7381b8
commit b45f4950d3
468 changed files with 54473 additions and 124 deletions

View File

@@ -0,0 +1,20 @@
import http from "@/api";
const ARTICLE_MESSAGE = `/article/message`;
//文章评论列表
export const getArticleRemarkListApi = (params: any) => {
return http.get<any>(`${ARTICLE_MESSAGE}/index`, params);
};
//文章评论审核接口
export const getArticleRemarkExamineApi = (params: any) => {
return http.get<any>(`${ARTICLE_MESSAGE}/audit/${params}`);
};
//文章评论删除接口
export const getArticleRemarkDelApi = (params: any) => {
return http.delete<any>(`${ARTICLE_MESSAGE}/delete/${params}`);
};
//
export const getArticleRemarkExportApi = (params: any) => {
return http.get<any>(`${ARTICLE_MESSAGE}/export`, params, {
responseType: "arraybuffer"
});
};