15 lines
343 B
TypeScript
Raw Normal View History

2023-06-29 22:26:35 +08:00
import { ResPage, User } from "@/api/types/common";
// import { BASEURL } from "@/api/config/servicePort";
import http from "@/api";
const BASEURL = import.meta.env.VITE_API_URL;
/**
* @name
*/
// 分析token
export const userAnalysis = (params: any) => {
return http.post(BASEURL + `/xmgl/systemUser/analysis`, params);
};