feat: add upload comp

This commit is contained in:
xingyu4j
2025-05-09 16:17:20 +08:00
parent 684d564ea1
commit 477e387ce9
6 changed files with 693 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
export enum UploadResultStatus {
DONE = 'done',
ERROR = 'error',
SUCCESS = 'success',
UPLOADING = 'uploading',
}
export type UploadListType = 'picture' | 'picture-card' | 'text';