15 lines
343 B
TypeScript
15 lines
343 B
TypeScript
|
|
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);
|
||
|
|
};
|