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,12 @@
import http from "@/api";
const L = `/leavemsg`;
// 联系我们列表
export const getLeaveMsgListApi = (params: any) => {
return http.get<any>(`${L}/index`, params);
};
//导出 getLeaveMsgListExportApi getLeaveMsgListApi
export const getLeaveMsgListExportApi = (params: any) => {
return http.get<any>(`${L}/export`, params, {
responseType: "arraybuffer"
});
};