import request from '@/utils/request' import { encrypt } from '@/utils/jsencrypt' // 登录方法 export function login(username, password, code, uuid,type, mobile) { password = encrypt(password); const data = { username, password, code, uuid, type, mobile, } return request({ 'url': '/login', headers: { isToken: false }, 'method': 'post', 'data': data }) } export function getlogin(username, password, code, uuid) { const data = { username, password, code, uuid } return request({ url: '/cus/login', headers: { isToken: false }, method: 'post', params: data }) } // 获取用户详细信息 export function loadUnionid(data) { return request({ url: '/cus/wx/login', method: 'post', params: data }) } // 获取用户详细信息 export function getInfo() { return request({ 'url': '/getInfo', 'method': 'get' }) } // 退出方法 export function logout() { return request({ 'url': '/logout', 'method': 'post' }) } // 获取验证码 export function getCodeImg() { return request({ 'url': '/captchaImage', headers: { isToken: false }, method: 'get', timeout: 20000 }) } //根据身份证号获取用户信息 export function bindPhone(data) { return request({ "url": '/cus/wx/bindPhone', method: 'post', params: data }) } //小程序根据手机号码获取用户身份证号码 export function getIdCardByPhone(phone) { return request({ "url": '/cus/hospital/getIdCardByPhone?phone='+ phone, // /?phone=+ phone method: 'get', // data:{ // phone : phone // } }) } // 小程序获取用户详情信息接口 export function getWxInfo() { return request({ 'url': '/cus/wx/getWxInfo', 'method': 'get' }) } //电话 export function wxbindphone(data) { return request({ "url": '/cus/wx/bindPhoneV2', method: 'post', data: data }) }