| 12345678910111213141516171819202122232425 |
- import type { SelectProps } from "ant-design-vue";
- export interface IDynamicFormItemSelectValueOption {
- text: string,
- value: unknown,
- }
- export interface SimpleSelectValueFormItemProps {
- /**
- * 是否禁用
- */
- disabled: boolean;
- /**
- * 选项数据
- */
- options: IDynamicFormItemSelectValueOption[];
- /**
- * 选择值
- */
- value: unknown;
- /**
- * a-select 其他自定义参数
- */
- customProps: SelectProps;
- }
|