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