Browse Source

refactor(frontend): 修复摄影详情页面代码执行顺序问题

- 在摄影详情页面的处理成功函数中添加 handleComplete 调用,确保所有操作完成后自动打开目标目录
- 标记高级配置页面为已废弃,添加相关注释
panqiuyao 5 months ago
parent
commit
15c8e1baf6

+ 1 - 0
frontend/src/views/Photography/detail.vue

@@ -432,6 +432,7 @@ const generate = async function () {
       progress.value = 100
       disabledButton.value = false
       message.value = loadingMsg
+      handleComplete()
     }
     // 部分成功
     function handlePartSuccess(output_folder: string, partSuccessList) {

+ 2 - 0
frontend/src/views/Photography/seniorDetail.vue

@@ -109,6 +109,8 @@
 </template>
 
 <script setup lang="ts">
+
+/*高级配置  已废弃*/
 import headerBar from '@/components/header-bar/index.vue'
 import { ref } from 'vue'
 import { Close, Warning } from '@element-plus/icons-vue'