@@ -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",
@@ -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);
+ }
};