SelectValue.ts 443 B

12345678910111213141516171819202122232425
  1. import type { SelectProps } from "ant-design-vue";
  2. export interface IDynamicFormItemSelectValueOption {
  3. text: string,
  4. value: unknown,
  5. }
  6. export interface SimpleSelectValueFormItemProps {
  7. /**
  8. * 是否禁用
  9. */
  10. disabled: boolean;
  11. /**
  12. * 选项数据
  13. */
  14. options: IDynamicFormItemSelectValueOption[];
  15. /**
  16. * 选择值
  17. */
  18. value: unknown;
  19. /**
  20. * a-select 其他自定义参数
  21. */
  22. customProps: SelectProps;
  23. }