index.ts 390 B

1234567891011
  1. import { httpRequest } from '../../../services/http/index'
  2. import { HttpRequest } from '../../../services/http/interface'
  3. // import service from '../../../services'
  4. /**
  5. * 用户登录
  6. *
  7. */
  8. export function login(params: HttpRequest<{req: GuangZuan.LoginReq, rsp: GuangZuan.LoginRsp}>) {
  9. return httpRequest('http://192.168.31.201:8888/api'+'/Account/Login', 'POST', params)
  10. }