mirror of
https://github.com/NeteaseCloudMusicApiEnhanced/api-enhanced.git
synced 2025-10-22 06:03:09 +00: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))
|
|
}
|