Browse Source

修改dvp阶段为关闭时,dvp当前阶段为验证阶段

zhangjie 10 months ago
parent
commit
e0f7f0d3be
1 changed files with 4 additions and 0 deletions
  1. 4 0
      src/App.vue

+ 4 - 0
src/App.vue

@@ -269,6 +269,10 @@ export default {
         if (res.flag){
           this.currentStep = res.data;
           this.libStep = res.data;
+          // 如果dvp状态是关闭状态,当前阶段设置为dvp验证
+          if (this.currentStep === 3) {
+            this.currentStep = 2;
+          }
           //改变步骤条状态并跳转到对应页面
           this.changeStepsStatus(this.$store.getters.dvpId,this.currentStep);
         }