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.
17 lines
329 B
17 lines
329 B
import request from '@/utils/request'
|
|
|
|
// 前缀
|
|
const prefix ="slb/"
|
|
|
|
// api地址
|
|
const api = {
|
|
login: prefix+'user/v1/userLogin',
|
|
loginMpWx: 'passport/loginMpWx',
|
|
loginMpWxMobile: 'passport/loginMpWxMobile',
|
|
}
|
|
|
|
// 用户登录(手机号+验证码)
|
|
export function login(data) {
|
|
return request.post(api.login, data)
|
|
}
|
|
|
|
|