123456789101112131415 |
- import { handle } from '../../index'
- const suffix = 'api'
- // 验证码
- export const captcha = () => handle({
- url: `/${suffix}/captcha`,
- method: 'get',
- })
- // 验证码
- export const login = (params: any) => handle({
- url: `/${suffix}/login`,
- method: 'post',
- params
- })
|