|
@@ -174,7 +174,7 @@ export default defineComponent({
|
|
|
}
|
|
|
|
|
|
// 有正在上传中的
|
|
|
- if (item.downloadStatus === 1) return
|
|
|
+ // if (item.downloadStatus === 1) return
|
|
|
if (!item.hasCache) {
|
|
|
const hasFree = String(item.accessScope) === '0'
|
|
|
if (!hasFree) {
|
|
@@ -421,14 +421,14 @@ export default defineComponent({
|
|
|
</Button>
|
|
|
) : (
|
|
|
<Button
|
|
|
- disabled={item.downloadStatus === 1 ? true : false}
|
|
|
+ // disabled={item.downloadStatus === 1 ? true : false}
|
|
|
class={[
|
|
|
styles.baseBtn,
|
|
|
isLock ? styles.disable : styles.down,
|
|
|
item.downloadStatus ? styles.downing : ''
|
|
|
]}
|
|
|
>
|
|
|
- {item.downloadStatus === 1 ? `查看` : '查看'}
|
|
|
+ {item.downloadStatus === 1 ? `取消下载` : '查看'}
|
|
|
</Button>
|
|
|
)}
|
|
|
</>
|