feat:前端修改(我认为ok)

This commit is contained in:
2026-09-14 20:31:06 +08:00
parent 721cc96419
commit 7b6b2a7382
57 changed files with 9558 additions and 0 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;
}