|
@@ -173,6 +173,8 @@ export default defineComponent({
|
|
|
return
|
|
|
}
|
|
|
|
|
|
+ // 有正在上传中的
|
|
|
+ if (item.downloadStatus === 1) return
|
|
|
if (!item.hasCache) {
|
|
|
const hasFree = String(item.accessScope) === '0'
|
|
|
if (!hasFree) {
|
|
@@ -419,6 +421,7 @@ export default defineComponent({
|
|
|
</Button>
|
|
|
) : (
|
|
|
<Button
|
|
|
+ disabled={item.downloadStatus === 1 ? true : false}
|
|
|
class={[
|
|
|
styles.baseBtn,
|
|
|
isLock ? styles.disable : styles.down,
|