fix: 删除无用文件

This commit is contained in:
NICE CODE BY DEV 2024-03-21 16:16:20 +08:00
parent 9e1ee5c519
commit 6e32e2a23b
3 changed files with 0 additions and 23 deletions

View File

@ -1,12 +0,0 @@
import { request } from '@umijs/max';
export async function login(
body?: Login_API.IUserInfo,
options?: { [key: string]: any },
) {
return request<Login_API.IUserInfo>('/v1/ma/BusinessApi/Login', {
method: 'POST',
data: body,
...(options || {}),
});
}

View File

@ -1,5 +0,0 @@
/* eslint-disable */
import * as LoginController from './LoginController';
export default LoginController;

View File

@ -1,6 +0,0 @@
declare namespace Login_API {
interface IUserInfo {
username: string;
password: string;
}
}