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.
24 lines
539 B
24 lines
539 B
/*
|
|
* @Author: ch
|
|
* @Date: 2022-03-17 16:37:45
|
|
* @LastEditors: ch
|
|
* @LastEditTime: 2022-04-06 10:02:29
|
|
* @Description: file content
|
|
*/
|
|
|
|
import {MsbRequest, ToAsyncAwait} from '@/common/utils';
|
|
|
|
const BASE_URL = '/uc';
|
|
/**
|
|
* 登录
|
|
* @param {*} data
|
|
*/
|
|
export const ApiPostLogin = (data) => ToAsyncAwait(MsbRequest.post(`${BASE_URL}/user/login`, data));
|
|
/**
|
|
* 获取手机验证码
|
|
* @param {*} params
|
|
*/
|
|
export const ApiGetCode = (params) => ToAsyncAwait(MsbRequest.get(`${BASE_URL}/user/login/verificationCode`, params));
|
|
|
|
|
|
|