fix 历史记录进度条

This commit is contained in:
jxxghp
2024-04-30 18:16:09 +08:00
parent 5f8619805e
commit f817b20545
2 changed files with 4 additions and 1 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "moviepilot", "name": "moviepilot",
"version": "1.8.5-1", "version": "1.8.5-2",
"private": true, "private": true,
"bin": "dist/service.js", "bin": "dist/service.js",
"scripts": { "scripts": {
@@ -5,6 +5,7 @@ import { useToast } from 'vue-toast-notification'
import api from '@/api' import api from '@/api'
import type { TransferHistory } from '@/api/types' import type { TransferHistory } from '@/api/types'
import ReorganizeDialog from '@/components/dialog/ReorganizeDialog.vue' import ReorganizeDialog from '@/components/dialog/ReorganizeDialog.vue'
import ProgressDialog from '@/components/dialog/ProgressDialog.vue'
// 提示框 // 提示框
const $toast = useToast() const $toast = useToast()
@@ -448,6 +449,8 @@ onMounted(fetchData)
</div> </div>
</VCard> </VCard>
</VBottomSheet> </VBottomSheet>
<!-- 进度框 -->
<ProgressDialog v-if="progressDialog" v-model="progressDialog" :text="progressText" :value="progressValue" />
<!-- 文件整理弹窗 --> <!-- 文件整理弹窗 -->
<ReorganizeDialog <ReorganizeDialog
v-if="redoDialog" v-if="redoDialog"