修改注册银行账户 地址以及 融合样式改动

This commit is contained in:
孙景学
2025-07-07 15:01:11 +08:00
parent e2962e09e7
commit 56da66ee21
50 changed files with 1887 additions and 105 deletions

View File

@ -5,6 +5,14 @@ declare namespace API {
message: string;
data: T;
}
// 省市区
interface RegionOption {
label: string;
value: string;
id: string;
name: string;
children?: RegionOption[];
}
// 用户相关接口类型定义
export interface UserListRequest {