一个简单vue答题小demo,单选多选

复制粘贴就能看到成品,具体自己看代码
成果:
在这里插入图片描述

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
  <script src="https://cdn.jsdelivr.net/npm/vue@2.6.14/dist/vue.js"></script>
</head>
<style>
  * {
    padding: 0;
    box-sizing: border-box;
    font-size: 14px;
  }

  .question {
    margin-top: 50px;
    width: 500px;
    /* height: 200px; */
    background-color: rgb(240, 240, 240);
    border-radius: 10px;
    padding: 20px;
    color: rgb(81, 81, 82);
    font-size: 16px;
  }

  button {
    margin-top: 15px;
    margin-right: 10px;
    outline: none;
    background-color: rgb(255, 153, 98);
    border: 0;
    padding: 10px;
    color: rgb(61, 61, 61);
    border-radius: 5px;
  }

  button:active {
    background-color: rgba(248, 161, 121, 0.664);
  }

  #app {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .title {
    color: black;
    font-weight: 600;
    font-size: 18px;
    height: 30px;
    line-height: 30px;
  }

  .list {

    margin-top: 10px;
    padding: 10px 5px;
    font-size: 16px;
    border: 1px rgb(46, 46, 46) solid;
    border-radius: 10px;
  }

  .bgc {

    border: 1px rgb(250, 109, 0) solid;
    color: aliceblue;
    background-color: rgb(240, 125, 38);
  }

  .answer {
    color: brown;
    font-size: 16px;
    margin-left: 20px;
  }

  .select {
    font-size: 18px;
    color: rgb(243, 25, 25);
  }
</style>

<body>
  <div id="app">
    <div v-for="(item,index) in question" :key="index" v-show="index==idx" class="question">
      <div class="title">
        <span v-if="item.ismultiple" class="select">多选</span>
        <span v-else="item.ismultiple" class="select">单选</span>
        题目:{{item.name}}
        <span class="answer" v-show="answerShow">答案:{{item.answer}}</span>
        <span style="float: right;">{{idx+1}}/{{question.length}}</span>
      </div>
      <div>
        <div :class="val.checked ? 'bgc' : ''" v-for="val in item.option" :key="val.id" class="list"
          @click="handleCilck(val)">{{val.letter}}.
          {{val.name}}</div>
      </div>
    </div>
    <div>

      <button @click="back()" :style="idx == 0 ? 'background-color:#ccc;':''"
        :disabled="idx == 0 ? true : false">上一题</button>
      <button @click="next()" :style="idx == question.length - 1 ? 'background-color:#ccc;':''"
        :disabled="idx == question.length - 1 ? true : false">下一题</button>
      <button @click="sumbit" style="background-color: rgb(250, 142, 0);color: aliceblue;">提交</button>
      <button v-show="isshow" @click="answerShow = true"
        style="background-color: rgb(238, 190, 79);color: rgb(255, 255, 255);">查看答案</button>
    </div>
  </div>
  <script>
    var app = new Vue({
      el: '#app',
      data: {
        idx: 0,
        allSocre: 0,
        isshow: false,
        answerShow: false,
        ismultipleAnswer: [],
        question: [
          {
            id: 1,
            ismultiple: false,
            name: '今天星期几?',
            answer: 'A',
            score: 2,
            option: [
              {
                id: 1,
                name: '星期一',
                checked: false,
                letter: 'A'
              },
              {
                id: 2,
                name: '星期三',
                checked: false,
                letter: 'B'
              },
              {
                id: 3,
                name: '星期四',
                checked: false,
                letter: 'C'
              },
            ],

          },
          {
            id: 2,
            ismultiple: false,
            name: '你喜欢吃什么?',
            answer: 'C',
            score: 2,
            option: [
              {
                id: 1,
                name: '香蕉',
                checked: false,
                letter: 'A'
              },
              {
                id: 2,
                name: '苹果',
                checked: false,
                letter: 'B'
              },
              {
                id: 3,
                name: '橘子',
                checked: false,
                letter: 'C'
              },
            ],

          },
          {
            id: 3,
            ismultiple: false,
            name: '你的梦想是什么?',
            answer: 'B',
            score: 2,
            option: [
              {
                id: 1,
                name: '当一名程序员',
                checked: false,
                letter: 'A'
              },
              {
                id: 2,
                name: '当一名测试员',
                checked: false,
                letter: 'B'
              },
              {
                id: 3,
                name: '当一名运维',
                checked: false,
                letter: 'C'
              },
            ],

          },
          {
            id: 4,
            ismultiple: true, //是否多选
            name: '这是一题多选吗?',
            answer: 'BC',
            score: 2,
            option: [ //选项
              {
                id: 1,
                name: '不是',
                checked: false,
                letter: 'A'
              },
              {
                id: 2,
                name: '是的',
                checked: false,
                letter: 'B'
              },
              {
                id: 3,
                name: '是的',
                checked: false,
                letter: 'C'
              },
            ],

          },
          {
            id: 5,
            ismultiple: true, //是否多选
            name: '是多选吧?',
            answer: 'ABC',
            score: 2,
            option: [ //选项
              {
                id: 1,
                name: '是的',
                checked: false,
                letter: 'A'
              },
              {
                id: 2,
                name: '是的',
                checked: false,
                letter: 'B'
              },
              {
                id: 3,
                name: '是的',
                checked: false,
                letter: 'C'
              },
            ],

          },
        ]
      },
      methods: {
        next () {
          this.idx++
        },
        back () {
          this.idx--
        },
        handleCilck (info) {
          let question = this.question[this.idx]  //每题选项
          let option = this.question[this.idx].option //每一题题目的选项

          //选中添加样式
          option.forEach(item => {
            if (item.id == info.id) {  //如果选中的与数据里面的相等就改变他的样式
              item.checked = !item.checked  // 是否选中,取反 
            } else if (!question.ismultiple) {  //如果不是多选 只能选中一个 其他的都为false
              item.checked = false
            }
          });


          let isAnswer = info.letter //选中的答案
          let answer = this.question[this.idx].answer //题目中的答案

          //如果是多选
          if (question.ismultiple) {
            this.ismultipleAnswer = []
            option.forEach(item => {
              if (item.checked) { //将选中的push到 ismultipleAnswer 数组中
                this.ismultipleAnswer.push(item.letter)
              }
            });
            isAnswer = this.ismultipleAnswer.join('')  //将ismultipleAnswer转为字符串 下面与答案比较
          }


          console.log('选中的答案', isAnswer);
          console.log('题目的答案', answer);


          //判断是否选正确,计算分数

          if (isAnswer == answer) { // 如果选的答案与题目答案相等,isOk 说明选对了
            this.question[this.idx].isOk = true
          } else {
            this.question[this.idx].isOk = false
          }

        },

        // 提交计算分数
        sumbit () {
          this.allSocre = 0  //每次计算总分先清0,,在计算
          let result = []  //定义选中的个数
          this.question.forEach(item => {
            //返回是否选中的数组
            let selsetArr = item.option.map(val => {
              if (val.checked) {
                return val.checked //map最终返回一个数组,返回 checked 的数组
              }
            })
            console.log('selsetArr', selsetArr);
            //这边是否包含true,包含 true 就push到result中
            const isTrue = selsetArr.includes(true)  //如果包含返回true,否则返回false
            //这里判断一下,如果 isTrue 是 true,说明包含true 就说明选了
            if (isTrue) {
              result.push(isTrue)  //如果选了,就push到 result 中
            }

            if (item.isOk) { //如果isOK 为 true 说明选了,计算分数
              this.allSocre += item.score
            }
          })
          //用选中 result 的长度  与 题目的长度比较 是否相当 不等就没选完
          if (result.length < this.question.length) {
            alert('还有题目没做呢')
            return
          }

          setTimeout(() => {
            alert('获得分数:' + this.allSocre)
            this.isshow = true
          }, 100);

        }
      }
    })
  </script>
</body>

</html>
  • 7
    点赞
  • 58
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 10
    评论
评论 10
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

一头小绵羊

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值