1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- import request from '@/utils/request'
- // 登录方法
- export function wxLogin(code) {
- const data = {
- code
- }
- return request({
- 'url': '/wxLogin',
- headers: {
- isToken: false
- },
- 'method': 'post',
- 'params': data
- })
- }
- // 注册方法
- export function register(data) {
- return request({
- url: '/register',
- headers: {
- isToken: false
- },
- method: 'post',
- data: 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
- })
- }
|