| | |
| | | helpText?: string; |
| | | listType?: UploadListType; |
| | | maxNumber?: number; // 最大数量的文件,Infinity不限制 |
| | | modelValue?: string | string[]; // v-model 支持 |
| | | modelValue?: string | string[] | number[]; // v-model 支持 |
| | | maxSize?: number; // 文件最大多少MB |
| | | multiple?: boolean; // 是否支持多选 |
| | | resultField?: string; // support xxx.xxx.xx |
| | | returnText?: boolean; // 是否返回文件文本内容 |
| | | showDescription?: boolean; // 是否显示下面的描述 |
| | | showDownloadIcon?: boolean; // 是否显示下载按钮 |
| | | value?: string | string[]; |
| | | value?: string | string[] | number[]; |
| | | valueKey?: string; // 返回值的字段名,默认 'url',设为 'id' 时返回 blobId |
| | | valuePrefix?: string; // valueKey 返回值的前缀 |
| | | } |