[测评系统]--前端(用户答题页面)
yj
2024-07-19 5e4bed2d67b26eeb7eab4d176bfabe3f527836e4
src/views/exam/paper/intelligence.vue
@@ -413,10 +413,10 @@
    },
    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()
@@ -695,7 +695,7 @@
            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
          }