pengwei
2025-03-12 18fcb8ad28f583e3e1b99b23e4f7d9e1833dcd83
1
2
3
4
5
6
7
8
9
10
11
12
import http from "./http";
 
//获取验证码接口
export const GetPageDataApi = (data) =>
  http.post("api/Registry/GetPageData", data);
//审核接口
export const AuditApi = (data) => http.post("api/Registry/AuditRegistry", data);
//删除
export const DelApi = (id) => http.post("/api/Registry/Del", [id]);
//用户注册
export const UserRegisterApi = (data) =>
  http.post("/api/Registry/UserRegistry", data);