import request from '@/utils/request' // 微信登录 export function wechatLogin(data) { return request({ url: '/wechat/login', method: 'post', data: data }) } // 获取微信用户信息 export function getWechatUserInfo(openid) { return request({ url: '/wechat/user/' + openid, method: 'get' }) } // 绑定微信账号 export function bindWechat(data) { return request({ url: '/wechat/bind', method: 'post', data: data }) } // 解绑微信账号 export function unbindWechat(data) { return request({ url: '/wechat/unbind', method: 'post', data: data }) }