feat:前端

This commit is contained in:
2026-09-14 11:54:20 +08:00
parent 86b13c6484
commit e2e1d73b3d
46 changed files with 4477 additions and 128 deletions
+34
View File
@@ -0,0 +1,34 @@
export interface FundProduct {
id: number;
product_code: string;
product_name: string;
product_type: string;
risk_level: string;
expected_return: number | null;
nav: number | null;
nav_date: string | null;
fee_rate: number;
term_days: number;
fund_manager: string | null;
status: string;
support_purchase: boolean;
support_dca: boolean;
}
export interface FundProductList {
total: number;
page: number;
page_size: number;
items: FundProduct[];
}
export interface UserPayload {
id: number;
username: string;
real_name?: string | null;
phone?: string | null;
user_type: string;
employee_role: string | null;
customer_level: string | null;
status: string;
}