remove redundant services

mgy
Dawn1Ocean 2024-03-31 22:32:12 +08:00
parent da62939b0d
commit 0d1665f609
3 changed files with 1 additions and 24 deletions

View File

@ -21,7 +21,7 @@ const PageFooter: React.FC = () => {
{
key: 'EVA Tea',
title: 'EVA Tea',
href: 'https://pro.ant.design',
href: 'https://a.zjueva.net',
blankTarget: true,
},
]}

View File

@ -3,8 +3,6 @@
// API 更新时间:
// API 唯一标识:
import * as api from './api';
import * as login from './login';
export default {
api,
login,
};

View File

@ -1,21 +0,0 @@
// @ts-ignore
/* eslint-disable */
import { request } from '@umijs/max';
/** 发送验证码 POST /api/login/captcha */
export async function getFakeCaptcha(
params: {
// query
/** 手机号 */
phone?: string;
},
options?: { [key: string]: any },
) {
return request<API.FakeCaptcha>('/api/login/captcha', {
method: 'GET',
params: {
...params,
},
...(options || {}),
});
}