cellphone_existence_check.js 292 B

12345678910
  1. // 检测手机号码是否已注册
  2. const createOption = require('../util/option.js')
  3. module.exports = (query, request) => {
  4. const data = {
  5. cellphone: query.phone,
  6. countrycode: query.countrycode,
  7. }
  8. return request(`/api/cellphone/existence/check`, data, createOption(query))
  9. }