wupengfei
3 天以前 f35680f356168af8d4a3d5f34456e561af40fbba
src/services/api/auth.ts
@@ -32,6 +32,21 @@
  });
}
/** 选择微信手机号 POST /api/user/auth/chooseWxmpPhoneNumber */
export async function chooseWxmpPhoneNumber(
  body: API.ChooseWxmpPhoneNumberCommand,
  options?: API.RequestConfig
) {
  return request<boolean>('/api/user/auth/chooseWxmpPhoneNumber', {
    method: 'POST',
    headers: {
      'Content-Type': 'application/json-patch+json',
    },
    data: body,
    ...(options || {}),
  });
}
/** 获取阿里云OSS授权信息 GET /api/user/auth/getAliyunOSSAcs */
export async function getAliyunOSSAcs(
  // 叠加生成的Param类型 (非body参数swagger默认没有生成对象)