feat: 优化前端显示&修复若干bug

This commit is contained in:
CaasianVale
2025-03-07 03:33:18 +08:00
parent ff5b820a57
commit 4c115cf325
29 changed files with 3726 additions and 1209 deletions

View File

@@ -7,6 +7,18 @@ export interface ApiConfig {
saveApiConfig: boolean;
}
// 登录相关类型
export interface LoginRequest {
password: string;
}
export interface LoginResponse {
access_token?: string;
token_type?: string;
success?: boolean;
message?: string;
}
export interface StockInfo {
code: string;
name: string;