| | |
| | | }, |
| | | nextQuestion: function (nowPartOrder) { |
| | | let _this = this |
| | | let num = ++_this.order |
| | | let num = _this.order + 1 |
| | | // 跳到没有答的题目的段 |
| | | while (_this.isContentNotEmpty(num) && num !== _this.answer.answerItems.length - 1) { |
| | | num = ++_this.order |
| | | num = _this.order + 1 |
| | | this.getEmptySubjct(num) |
| | | } |
| | | this.determineWhetherIntelligenceTitle() |
| | |
| | | return |
| | | } |
| | | // 特殊处理 LAQ测试包 结束提示语 |
| | | if (_this.form.name === 'LAQ') { |
| | | if (_this.form.name.indexOf('LAQ') !== -1) { |
| | | _this.$router.push({ path: '/exam/finish', query: { name: _this.form.name, content: _this.$t('finishMsg') } }) |
| | | return |
| | | } |