zhangjie 1 год назад
Родитель
Сommit
1df3b90a7a
2 измененных файлов с 6 добавлено и 3 удалено
  1. 1 1
      package.json
  2. 5 2
      src/modules/stmms/components/markParam/ModifyMarkParams.vue

+ 1 - 1
package.json

@@ -1,6 +1,6 @@
 {
   "name": "teachcloud-platform-web",
-  "version": "3.2.6",
+  "version": "3.2.7",
   "scripts": {
     "start": "npm run serve",
     "serve": "vue-cli-service serve",

+ 5 - 2
src/modules/stmms/components/markParam/ModifyMarkParams.vue

@@ -344,8 +344,11 @@ export default {
       done();
     },
     confirm() {
-      if (this.isLastStep) return;
-      this.selectMenu(this.tabs[this.current + 1].val);
+      if (this.isLastStep) {
+        this.selectMenu(this.tabs[0].val);
+      } else {
+        this.selectMenu(this.tabs[this.current + 1].val);
+      }
     },
   },
 };