index.ts 355 B

1234567891011121314
  1. export interface disctSelectProps {
  2. dictCode: string;
  3. immediate?: boolean;
  4. multiple?: boolean;
  5. /**
  6. * 禁用的标签
  7. */
  8. disabledLables?: string[];
  9. /**
  10. * 额外的选项,会追加到字典选项之后
  11. */
  12. extraOptions?: { label: string; value: string | number; disabled?: boolean; [key: string]: any }[];
  13. [key: string]: any;
  14. }