Browse Source

fix(photography): 修复进度步骤显示逻辑

- 移除了抠图步骤的特殊条件判断
- 统一使用 step.current 显示当前进度
- 确保所有步骤状态显示一致性
panqiuyao 1 week ago
parent
commit
e5eca535c4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      frontend/src/views/Photography/components/ProgressSteps.vue

+ 1 - 1
frontend/src/views/Photography/components/ProgressSteps.vue

@@ -29,7 +29,7 @@
           <div class="step-status">
             {{ getStepTitle(step) }}
             <div v-if="step.status !== '等待处理'" class="step-details">
-              第{{ step.status === '正在处理' && step.name === '抠图' ?  step.current+1 : step.current }}/{{ step.total }}款
+              第{{ step.current }}/{{ step.total }}款
               {{ getCurrentGoodsNo(step) }}
               <span v-if="step.error" style="color: red; margin-left:5px;">失败:{{step.error}}款</span>