| 1234567891011 |
- import { httpRequest } from '../../../services/http/index'
- import { HttpRequest } from '../../../services/http/interface'
- // import service from '../../../services'
- /**
- * 用户登录
- *
- */
- export function login(params: HttpRequest<{req: GuangZuan.LoginReq, rsp: GuangZuan.LoginRsp}>) {
- return httpRequest('http://192.168.31.201:8888/api'+'/Account/Login', 'POST', params)
- }
|