diff --git a/src/components/SharedFilesModel/index.tsx b/src/components/SharedFilesModel/index.tsx index 11b1049..0ff32ed 100644 --- a/src/components/SharedFilesModel/index.tsx +++ b/src/components/SharedFilesModel/index.tsx @@ -26,6 +26,7 @@ const SharedFilesModel = forwardRef((props: any, ref: any) => { const { state } = useLocation(); const [selectedRowKeys, setSelectedRowKeys] = useState([]); const [showRowSelection, setShowRowSelection] = useState(false); + const [isUpFile, setIsUpFile] = useState(false); const [isSharedFilesModel, setIsSharedFilesModel] = useState(false); const [user, setUser] = useState({}); const [fileList, setFileList] = useState({ @@ -80,13 +81,13 @@ const SharedFilesModel = forwardRef((props: any, ref: any) => { 共{fileList.total}个文件 -
+ {isUpFile ?
上传进度: {/* {uploadProgress === 100 ? '上传完成' : '上传中'} */} -
+
: null}
{