Files
aiot-platform-ui/apps/web-antd/src/components/upload/typing.ts

40 lines
1012 B
TypeScript
Raw Normal View History

2025-05-26 18:46:06 +08:00
import type { AxiosResponse } from '@vben/request';
import type { AxiosProgressEvent } from '#/api/infra/file';
2025-04-17 23:30:34 +08:00
export enum UploadResultStatus {
DONE = 'done',
ERROR = 'error',
SUCCESS = 'success',
UPLOADING = 'uploading',
}
2025-04-24 17:56:02 +08:00
export type UploadListType = 'picture' | 'picture-card' | 'text';
2025-05-26 18:46:06 +08:00
export interface FileUploadProps {
// 根据后缀,或者其他
accept?: string[];
api?: (
file: File,
onUploadProgress?: AxiosProgressEvent,
) => Promise<AxiosResponse<any>>;
// 上传的目录
directory?: string;
disabled?: boolean;
drag?: boolean; // 是否支持拖拽上传
2025-05-26 18:46:06 +08:00
helpText?: string;
listType?: UploadListType;
// 最大数量的文件Infinity不限制
maxNumber?: number;
modelValue?: string | string[]; // v-model 支持
2025-05-26 18:46:06 +08:00
// 文件最大多少MB
maxSize?: number;
// 是否支持多选
multiple?: boolean;
// support xxx.xxx.xx
resultField?: string;
// 是否显示下面的描述
showDescription?: boolean;
value?: string | string[];
}