user.ts 276 B

123456789101112131415
  1. import { handle } from '../../index'
  2. const suffix = 'api'
  3. // 验证码
  4. export const captcha = () => handle({
  5. url: `/${suffix}/captcha`,
  6. method: 'get',
  7. })
  8. // 验证码
  9. export const login = (params: any) => handle({
  10. url: `/${suffix}/login`,
  11. method: 'post',
  12. params
  13. })