| | |
| | | }); |
| | | } |
| | | |
| | | /** 第三方手机号验证 发送验证码 POST /api/Common/SendPhoneCertificationVerificationCode */ |
| | | export async function sendPhoneCertificationVerificationCode( |
| | | body: API.SendPhoneCertificationVerificationCodeInput, |
| | | options?: API.RequestConfig |
| | | ) { |
| | | return request<number>('/api/Common/SendPhoneCertificationVerificationCode', { |
| | | method: 'POST', |
| | | headers: { |
| | | 'Content-Type': 'application/json', |
| | | }, |
| | | data: body, |
| | | ...(options || {}), |
| | | }); |
| | | } |
| | | |
| | | /** 发送验证码 POST /api/Common/SendVerificationCode */ |
| | | export async function sendVerificationCode( |
| | | body: API.SendPhoneVerificationCodeByBusinessTypeInput, |