23 lines
523 B
JavaScript
23 lines
523 B
JavaScript
import { request } from '@/api-collect-code/http.js'
|
|
|
|
export async function checkPhone(data) {
|
|
return await request({
|
|
url:'/api/v1/common/check/phone',
|
|
method: 'POST',
|
|
data
|
|
})
|
|
}
|
|
export async function userSend(data) {
|
|
return await request( {
|
|
url:'/api/v1/m/user/mobile/send',
|
|
method: 'POST',
|
|
data
|
|
})
|
|
}
|
|
export async function mobileLogin(data) {
|
|
return await request( {
|
|
url:'/api/v1/m/user/mobile/login',
|
|
method: 'POST',
|
|
data
|
|
})
|
|
} |