mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-08-25 01:59:35 +08:00
更新 TransferQueueDialog 组件
This commit is contained in:
@@ -277,7 +277,7 @@ onUnmounted(() => {
|
|||||||
<VDialogCloseBtn @click="emit('close')" />
|
<VDialogCloseBtn @click="emit('close')" />
|
||||||
|
|
||||||
<!-- 整体进度显示 -->
|
<!-- 整体进度显示 -->
|
||||||
<VProgressLinear v-if="dataList.length > 0" :value="overallProgressComputed" color="primary" />
|
<VProgressLinear v-if="dataList.length > 0" :model-value="overallProgressComputed" color="primary" />
|
||||||
<VDivider v-else />
|
<VDivider v-else />
|
||||||
|
|
||||||
<VCardText v-if="dataList.length === 0" class="text-center">
|
<VCardText v-if="dataList.length === 0" class="text-center">
|
||||||
@@ -309,7 +309,11 @@ onUnmounted(() => {
|
|||||||
|
|
||||||
<!-- 文件进度显示 -->
|
<!-- 文件进度显示 -->
|
||||||
<div v-if="task.state === 'running' && getFileProgress(task.fileitem.path).enable" class="mt-2">
|
<div v-if="task.state === 'running' && getFileProgress(task.fileitem.path).enable" class="mt-2">
|
||||||
<VProgressLinear :value="getFileProgress(task.fileitem.path).value" color="success" class="mb-1" />
|
<VProgressLinear
|
||||||
|
:model-value="getFileProgress(task.fileitem.path).value"
|
||||||
|
color="success"
|
||||||
|
class="mb-1"
|
||||||
|
/>
|
||||||
<div class="text-xs text-medium-emphasis text-center">
|
<div class="text-xs text-medium-emphasis text-center">
|
||||||
{{ getFileProgress(task.fileitem.path).value.toFixed(1) }}%
|
{{ getFileProgress(task.fileitem.path).value.toFixed(1) }}%
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user