|  |  |  | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** life pay手机验证码登录 POST /api/Account/LifePayPhoneMesssageCodeLogin */ | 
|---|
|  |  |  | export async function lifePayPhoneMesssageCodeLogin( | 
|---|
|  |  |  | body: API.PhoneMesssageCodeLoginInput, | 
|---|
|  |  |  | options?: API.RequestConfig | 
|---|
|  |  |  | ) { | 
|---|
|  |  |  | return request<string>('/api/Account/LifePayPhoneMesssageCodeLogin', { | 
|---|
|  |  |  | method: 'POST', | 
|---|
|  |  |  | headers: { | 
|---|
|  |  |  | 'Content-Type': 'application/json', | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | data: body, | 
|---|
|  |  |  | ...(options || {}), | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** 密码登录 POST /api/Account/PasswordLogin */ | 
|---|
|  |  |  | export async function passwordLogin(body: API.PasswordLoginInput, options?: API.RequestConfig) { | 
|---|
|  |  |  | return request<API.IdentityModelTokenCacheItem>('/api/Account/PasswordLogin', { | 
|---|