zhengyiming
2025-03-27 55c03f35a31979aefd46aead13a145c9b293e6d8
packages/services/api/Account.ts
@@ -42,14 +42,17 @@
  body: API.LifePayPhoneMesssageCodeLoginInput,
  options?: API.RequestConfig
) {
  return request<string>('/api/Account/LifePayPhoneMesssageCodeLogin', {
  return request<API.LifePayPhoneMesssageCodeLoginOutput>(
    '/api/Account/LifePayPhoneMesssageCodeLogin',
    {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json',
    },
    data: body,
    ...(options || {}),
  });
    }
  );
}
/** 此处后端没有提供注释 GET /api/accountAuth/GetCode */