[测评系统]--前端(用户答题页面)
yj
2024-12-03 7f4105bc2f1d4f8562e1cb9776ce49f8be0c98d2
src/views/exam/components/QuestionEdit.vue
@@ -4,7 +4,7 @@
      <div class="q-title" v-html="qLabel+'&nbsp;&nbsp;'+question.title" style="font-size: 23px"/>
      <div class="q-content">
        <el-radio-group v-model="answer.content" @change="answer.completed = true">
          <el-radio  v-for="item in question.items"  :key="item.prefix"  :label="item.prefix" @change="jumpNext" :disabled="answer.readOnly" style="display:block;">
          <el-radio v-for="item in question.items"  :key="item.prefix"  :label="item.prefix" @change="jumpNext" :disabled="answer.readOnly" style="display:block;border:1px solid #b3b5ba;margin:5px 0px 5px 0px;padding:0px 25px 0px 15px;border-radius:5px;">
            <span class="question-prefix" style="font-size: 18px">{{abcValue[item.prefix]}}.</span>
            <span v-html="item.content" class="q-item-span-content" style="font-size: 18px"></span>
          </el-radio>
@@ -93,6 +93,7 @@
      if (this.answer.content === null || this.answer.content.trim() === '') {
        return
      }
      _this.$emit('callSelected')
      setTimeout(function () {
        _this.$emit('callNextSubject')
      }, 500)