From 6887129e91d32557c2b57178180329f46df09d12 Mon Sep 17 00:00:00 2001 From: wupengfei <834520024@qq.com> Date: 星期一, 10 三月 2025 13:23:49 +0800 Subject: [PATCH] feat: api --- packages/services/api/Common.ts | 48 ------------------------------------------------ 1 files changed, 0 insertions(+), 48 deletions(-) diff --git a/packages/services/api/Common.ts b/packages/services/api/Common.ts index 4ed4f00..33f7365 100644 --- a/packages/services/api/Common.ts +++ b/packages/services/api/Common.ts @@ -17,36 +17,6 @@ }); } -/** 绗笁鏂归摱琛屽崱棰勭暀鎵嬫満鍙烽獙璇� 鍙戦�侀獙璇佺爜 POST /api/Common/SendBankCardCertificationVerificationCode */ -export async function sendBankCardCertificationVerificationCode( - body: API.SendBankCardCertificationVerificationCodeInput, - options?: API.RequestConfig -) { - return request<number>('/api/Common/SendBankCardCertificationVerificationCode', { - method: 'POST', - headers: { - 'Content-Type': 'application/json', - }, - data: body, - ...(options || {}), - }); -} - -/** 鍙戦�侀偖绠遍獙璇佺爜 POST /api/Common/SendEmailVerificationCode */ -export async function sendEmailVerificationCode( - body: API.SendEmailVerificationCodeByBusinessTypeInput, - options?: API.RequestConfig -) { - return request<number>('/api/Common/SendEmailVerificationCode', { - method: 'POST', - headers: { - 'Content-Type': 'application/json', - }, - data: body, - ...(options || {}), - }); -} - /** 绗笁鏂规墜鏈哄彿楠岃瘉 鍙戦�侀獙璇佺爜 POST /api/Common/SendPhoneCertificationVerificationCode */ export async function sendPhoneCertificationVerificationCode( body: API.SendPhoneCertificationVerificationCodeInput, @@ -87,22 +57,4 @@ data: body, ...(options || {}), }); -} - -/** 韬唤璇丱CR璇嗗埆 璇嗗埆韬唤璇佹鍙嶉潰淇℃伅銆傛鎺ュ彛鎸夌収璋冪敤娆℃暟鍗曠嫭璁¤垂 POST /api/Common/UserCredentialVerifyOcrIDCard */ -export async function userCredentialVerifyOcrIDCard( - body: API.UserCredentialVerifyOcrIDCardInput, - options?: API.RequestConfig -) { - return request<API.UserCredentialVerifyOcrIDCardResponse>( - '/api/Common/UserCredentialVerifyOcrIDCard', - { - method: 'POST', - headers: { - 'Content-Type': 'application/json', - }, - data: body, - ...(options || {}), - } - ); } -- Gitblit v1.9.1