1
2
3
4
5
6
7
8
9
10
11
12
| export const autoCompleteProps = {
| allowClear: { default: true, type: Boolean },
| disabled: { default: false, type: Boolean },
| formData: { type: Object },
| interfaceId: { default: '', type: String },
| placeholder: { default: '请选择', type: String },
| relationField: { default: 'fullName', type: String },
| rowIndex: { default: null },
| templateJson: { default: () => [], type: Array },
| total: { default: 50, type: Number },
| value: [String, Number] as PropType<number | string>,
| };
|
|