user.ts 161 B

12345678910
  1. import { handle } from '../index'
  2. const suffix = 'api'
  3. export const getInfo = (params: any) => handle({
  4. url: `/${suffix}/info`,
  5. method: 'get',
  6. params
  7. })