- export interface disctSelectProps {
- dictCode: string;
- immediate?: boolean;
- multiple?: boolean;
- /**
- * 禁用的标签
- */
- disabledLables?: string[];
- /**
- * 额外的选项,会追加到字典选项之后
- */
- extraOptions?: { label: string; value: string | number; disabled?: boolean; [key: string]: any }[];
- [key: string]: any;
- }
|