mirror of
https://gitlab.com/Binaryify/neteasecloudmusicapi.git
synced 2025-05-23 22:37:41 +08:00
11 lines
292 B
JavaScript
11 lines
292 B
JavaScript
// 检测手机号码是否已注册
|
|
|
|
const createOption = require('../util/option.js')
|
|
module.exports = (query, request) => {
|
|
const data = {
|
|
cellphone: query.phone,
|
|
countrycode: query.countrycode,
|
|
}
|
|
return request(`/api/cellphone/existence/check`, data, createOption(query))
|
|
}
|