10 lines
206 B
JavaScript
10 lines
206 B
JavaScript
import { getHttp } from '~/api/http.js'
|
|
|
|
export async function senCode(data) {
|
|
const http = getHttp()
|
|
return await http('/api/v1/m/user/send', {
|
|
method: 'POST',
|
|
body: data,
|
|
})
|
|
}
|