From 65c7175a1d7d448f91ee61a8a9aa935263939d37 Mon Sep 17 00:00:00 2001 From: wupengfei <834520024@qq.com> Date: 星期四, 17 四月 2025 10:10:22 +0800 Subject: [PATCH] feat: 接口对接 --- src/services/api/Common.ts | 15 +++++++++++++++ 1 files changed, 15 insertions(+), 0 deletions(-) diff --git a/src/services/api/Common.ts b/src/services/api/Common.ts index 93aa15e..33f7365 100644 --- a/src/services/api/Common.ts +++ b/src/services/api/Common.ts @@ -17,6 +17,21 @@ }); } +/** 绗笁鏂规墜鏈哄彿楠岃瘉 鍙戦�侀獙璇佺爜 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, -- Gitblit v1.9.1