2023-12-16 18:10:04 +08:00
|
|
|
import { POST, GET } from './index'
|
|
|
|
|
// 获取短信验证码
|
|
|
|
|
export const getSendIphoneCodeApi = params => POST(`/system/sms/codeLogin?phone=${params.phone}`,)
|
|
|
|
|
// 账号密码登录
|
2024-03-07 09:19:00 +08:00
|
|
|
export const authLoginApi = params => POST(`/screen/auth/loginApp`, params)
|
2023-12-16 18:10:04 +08:00
|
|
|
// 手机号登录
|
|
|
|
|
export const loginCodeApi = params => POST(`/auth/loginCode`, params)
|
|
|
|
|
// export const getImageCode = params => GET(`/iot/gywlw/publishVersion/page`, params)
|
|
|
|
|
// export const getImageCode = params => GET(`/antelope-common/common/get/gray/screen/time`, params)
|