This commit is contained in:
yj 2024-12-17 14:05:56 +08:00
parent db568f46eb
commit 12eaca27f9
1 changed files with 2 additions and 2 deletions

View File

@ -292,7 +292,7 @@ const SharedFilesModel = forwardRef((props: any, ref: any) => {
/> />
<Column title="操作" render={(item) => ( <Column title="操作" render={(item) => (
<> <>
<VerticalAlignBottomOutlined title='下载' {!item.showPercentComplete ? <VerticalAlignBottomOutlined title='下载'
style={{ color: '#5575F2', cursor: 'pointer' }} style={{ color: '#5575F2', cursor: 'pointer' }}
onClick={async () => { onClick={async () => {
storage.setItem('loading', true) storage.setItem('loading', true)
@ -367,7 +367,7 @@ const SharedFilesModel = forwardRef((props: any, ref: any) => {
}).finally(() => { }).finally(() => {
storage.setItem('loading', false) storage.setItem('loading', false)
}) })
}} /> }} /> : null}
{/* <FolderOutlined title='文件' style={{ color: '#FFA000', cursor: 'pointer', marginLeft: '10px' }} /> */} {/* <FolderOutlined title='文件' style={{ color: '#FFA000', cursor: 'pointer', marginLeft: '10px' }} /> */}
</> </>
)} /> )} />