first commit

This commit is contained in:
2026-02-26 09:32:03 +08:00
commit 36a8e4c51b
845 changed files with 116474 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
/* eslint-disable */
// @ts-ignore
import request from '@/http/vue-query';
import type { CustomRequestOptions } from '@/http/types';
import * as API from './types';
/** 发送验证码 POST /app/sms/send */
export async function appSmsSendPost({
body,
options,
}: {
body: API.SendSmsBo;
options?: CustomRequestOptions;
}) {
return request<API.RString>('/app/sms/send', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
data: body,
...(options || {}),
});
}