|
|
@@ -102,7 +102,7 @@
|
|
|
</div>
|
|
|
|
|
|
|
|
|
- <loading-dialog v-model="dialogVisible" :progress="progress" :message="message" :show-button="showButton"
|
|
|
+ <loading-dialog v-model="loadingDialogVisible" :progress="progress" :message="message" :show-button="showButton"
|
|
|
@button-click="handleComplete" />
|
|
|
</div>
|
|
|
|
|
|
@@ -126,7 +126,7 @@ const checkSimilar = ref(false) // 同款检验
|
|
|
const specificPage = ref('') // 可指定页面独修改
|
|
|
|
|
|
|
|
|
-const dialogVisible = ref(false)
|
|
|
+const loadingDialogVisible = ref(false)
|
|
|
const progress = ref(0)
|
|
|
const message = ref('正在为您处理,请稍后')
|
|
|
const showButton = ref(true)
|
|
|
@@ -145,7 +145,7 @@ const saveConfig = () => {
|
|
|
}
|
|
|
|
|
|
const startProcess = () => {
|
|
|
- dialogVisible.value = true
|
|
|
+ loadingDialogVisible.value = true
|
|
|
progress.value = 0
|
|
|
showButton.value = true
|
|
|
// 模拟进度更新
|
|
|
@@ -161,7 +161,7 @@ const startProcess = () => {
|
|
|
}
|
|
|
|
|
|
const handleComplete = () => {
|
|
|
- dialogVisible.value = false
|
|
|
+ loadingDialogVisible.value = false
|
|
|
// 这里可以添加打开目录的逻辑
|
|
|
console.log('打开目录')
|
|
|
}
|