fix(SelectTree): 允许 Gwj 组件的额外属性

- 在类型定义中添加索引签名支持任意属性
- 增强了 EnterpriseType 属性的灵活性
- 解决类型限制带来的扩展困难问题
2.0
LiuJiaNan 2026-06-23 16:33:33 +08:00
parent 31571d1466
commit 896b394752
1 changed files with 1 additions and 0 deletions

View File

@ -30,6 +30,7 @@ export interface Params {
inType?: InType[]; inType?: InType[];
/** 企业类型 1-监管 2-企业 3-相关方 */ /** 企业类型 1-监管 2-企业 3-相关方 */
enterpriseType?: EnterpriseType | EnterpriseType[]; enterpriseType?: EnterpriseType | EnterpriseType[];
[key: string]: any;
} }
/** /**