diff --git a/frontend/src/views/host/file-management/process/index.vue b/frontend/src/views/host/file-management/process/index.vue index 8d5c944d6..c6ef2822d 100644 --- a/frontend/src/views/host/file-management/process/index.vue +++ b/frontend/src/views/host/file-management/process/index.vue @@ -6,15 +6,47 @@ :before-close="handleClose" :title="$t('file.downloadProcess')" > -
- {{ value['percent'] === 100 ? $t('file.downloadSuccess') : $t('file.downloading') }} - - - - - {{ getFileSize(value['written']) }}/ - {{ getFileSize(value['total']) }} - +
+
+
+
+ +
+ {{ value.percent === 100 ? $t('file.downloadSuccess') : $t('file.downloading') }} +
+
+
+ +
+
+ {{ getFileSize(value.written) }} + /{{ getFileSize(value.total) }} +
+
+ + +
+
+
@@ -108,3 +140,30 @@ const onOpen = () => { getKeys(); }; +