mirror of
https://gitee.com/yudaocode/yudao-ui-admin-vben.git
synced 2025-12-30 02:22:25 +00:00
33 lines
993 B
TypeScript
33 lines
993 B
TypeScript
import type { AxiosResponse } from '@vben/request';
|
||
|
||
import type { AxiosProgressEvent } from '#/api/infra/file';
|
||
|
||
export enum UploadResultStatus {
|
||
DONE = 'done',
|
||
ERROR = 'error',
|
||
SUCCESS = 'success',
|
||
UPLOADING = 'uploading',
|
||
}
|
||
|
||
export type UploadListType = 'picture' | 'picture-card' | 'text';
|
||
|
||
export interface FileUploadProps {
|
||
accept?: string[]; // 根据后缀,或者其他
|
||
api?: (
|
||
file: File,
|
||
onUploadProgress?: AxiosProgressEvent,
|
||
) => Promise<AxiosResponse>;
|
||
directory?: string; // 上传的目录
|
||
disabled?: boolean;
|
||
drag?: boolean; // 是否支持拖拽上传
|
||
helpText?: string;
|
||
listType?: UploadListType;
|
||
maxNumber?: number; // 最大数量的文件,Infinity不限制
|
||
modelValue?: string | string[]; // v-model 支持
|
||
maxSize?: number; // 文件最大多少MB
|
||
multiple?: boolean; // 是否支持多选
|
||
resultField?: string; // support xxx.xxx.xx
|
||
showDescription?: boolean; // 是否显示下面的描述
|
||
value?: string | string[];
|
||
}
|