1234567891011121314151617181920212223 |
- import { httpApp } from "@/plugins/axiosApp";
- /** 用户登录 */
- export async function loginApi(
- accountType: string,
- accountValue: string,
- password: string,
- domain: string,
- rootOrgId: number
- ) {
- return httpApp.post<{ content: any }>(
- "/api/ecs_core/verifyCode/gt/login",
- {
- accountType,
- accountValue,
- password,
- domain,
- rootOrgId,
- alwaysOK: true,
- },
- { setGlobalMask: true }
- );
- }
|