You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
109 lines
2.9 KiB
109 lines
2.9 KiB
import request from '@/utils/request';
|
|
// import { setToken } from '@/utils/token-util';
|
|
import type { ApiResult } from '@/api';
|
|
import type {
|
|
LoginParam,
|
|
LoginResult,
|
|
CaptchaResult,
|
|
SmsCaptchaResult
|
|
} from './model';
|
|
import { SERVER_API_URL } from '~/config';
|
|
|
|
/**
|
|
* 登录
|
|
*/
|
|
export async function login(data: LoginParam) {
|
|
const res = await request.post<ApiResult<LoginResult>>(
|
|
SERVER_API_URL + '/login',
|
|
data
|
|
);
|
|
if (res.data.code === 0) {
|
|
// setToken(res.data.data?.access_token, data.remember);
|
|
if (res.data.data?.user) {
|
|
const user = res.data.data?.user;
|
|
localStorage.setItem('TenantId', String(user.tenantId));
|
|
localStorage.setItem('UserId', String(user.userId));
|
|
}
|
|
|
|
return res.data.message;
|
|
}
|
|
return Promise.reject(new Error(res.data.message));
|
|
}
|
|
|
|
/**
|
|
* 获取验证码
|
|
*/
|
|
export async function getCaptcha() {
|
|
const res = await request.get<ApiResult<CaptchaResult>>(
|
|
SERVER_API_URL + '/captcha'
|
|
);
|
|
if (res.data.code === 0 && res.data.data) {
|
|
return res.data.data;
|
|
}
|
|
return Promise.reject(new Error(res.data.message));
|
|
}
|
|
|
|
export async function loginBySms(data: LoginParam) {
|
|
const res = await request.post<ApiResult<LoginResult>>(
|
|
SERVER_API_URL + '/loginBySms',
|
|
data
|
|
);
|
|
if (res.data.code === 0) {
|
|
console.log(res.data,'登录成功')
|
|
// setToken(res.data.data?.access_token, data.remember);
|
|
// if (res.data.data?.user) {
|
|
// const user = res.data.data?.user;
|
|
// localStorage.setItem('TenantId', String(user.tenantId));
|
|
// localStorage.setItem('Phone', String(user.phone));
|
|
// localStorage.setItem('UserId', String(user.userId));
|
|
// localStorage.setItem('MerchantId', String(user.merchantId));
|
|
// localStorage.setItem('MerchantName', String(user.merchantName));
|
|
// }
|
|
|
|
return res.data.message;
|
|
}
|
|
return Promise.reject(new Error(res.data.message));
|
|
}
|
|
|
|
/**
|
|
* 发送短信验证码
|
|
*/
|
|
export async function sendSmsCaptcha(data: LoginParam) {
|
|
const res = await request.post<ApiResult<SmsCaptchaResult>>(
|
|
SERVER_API_URL + '/sendSmsCaptcha',
|
|
data
|
|
);
|
|
if (res.data.code === 0) {
|
|
return res.data.message;
|
|
}
|
|
return Promise.reject(new Error(res.data.message));
|
|
}
|
|
|
|
/**
|
|
* 登录
|
|
*/
|
|
export async function remoteLogin(data: LoginParam) {
|
|
const res = await request.post<ApiResult<LoginResult>>(
|
|
'https://open.gxwebsoft.com/api/login',
|
|
data
|
|
);
|
|
if (res.data.code === 0) {
|
|
// setToken(res.data.data?.access_token, data.remember);
|
|
return res.data.message;
|
|
}
|
|
return Promise.reject(new Error(res.data.message));
|
|
}
|
|
|
|
/**
|
|
* 获取企业微信登录链接
|
|
*/
|
|
export async function getWxWorkQrConnect(data: any) {
|
|
const res = await request.post<ApiResult<unknown>>(
|
|
SERVER_API_URL + '/wx-work',
|
|
data
|
|
);
|
|
if (res.data.code === 0 && res.data.data) {
|
|
return res.data.data;
|
|
}
|
|
return Promise.reject(new Error(res.data.message));
|
|
}
|