| 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(service.config.goAccess+'/Account/Login', 'POST', params)
- }
|