Logo white

BJ_web_developers / wxgzh

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • wxgzh
  • src
  • api
  • binDing
  • binding.js
  • 个人中心
    71ca44b6
    刘淇 authored
    2022-01-07 09:31:07 +0800  
    Browse Code »
binding.js 375 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
import request from '@/utils/request'


//   获取验证码
export function sendverificode(params) {
  return request({
    url: 'user/sendverificode',
    method: 'post',
    data: params
  })
}

//   绑定手机号
export function bindCustByOpenId(params) {
  return request({
    url: 'wxPublicUser/bindCustByOpenId',
    method: 'post',
    data: params
  })
}