添加菜单页面.

This commit is contained in:
lijiahang
2023-08-08 17:59:37 +08:00
parent d86b301628
commit f2251e6c65
25 changed files with 1078 additions and 45 deletions

View File

@@ -1,11 +1,17 @@
import axios from 'axios';
import { UserState } from '@/store/modules/user/types';
/**
* 登陆请求
*/
export interface LoginRequest {
username: string;
password: string;
}
/**
* 登陆响应
*/
export interface LoginResponse {
token: string;
}