闫增涛
2024-11-19 d8c24a06b3e7844ad65e7c821c022dbb36d29430
src/books/childHealth/view/content/components/chapter001.vue
@@ -4453,13 +4453,27 @@
          <p class="custom_tag">•回顾与反思•</p>
          <p class="block"><b>一、判断对错</b></p>
          <p class="block">
            1.学前儿童关节窝较浅,周围韧带较为松弛,易发生脱臼。(<input
              type="text"
              class="judge-input"
              v-model="chapterOneData.question.judge.qOne"
              @input="saveChapterOneData"
            />)
            1.学前儿童关节窝较浅,周围韧带较为松弛,易发生脱臼。()
          </p>
          <div class="radio-box">
            <label>
              <input
                type="radio"
                name="qOne"
                value="correct"
                v-model="chapterOneData.question.judge.qOne"
                @change="saveChapterOneData"
               />
              对</label>
            <label>
              <input
                type="radio"
                name="qOne"
                value="error"
                v-model="chapterOneData.question.judge.qOne"
                @change="saveChapterOneData"
              />错</label>
          </div>
          <p class="block">
            2.学前儿童的脉搏易受各种内外因素的影响,因此,必须在学前儿童安静时测量脉
          </p>
@@ -4477,30 +4491,71 @@
        </div>
        <div class="padding-96">
          <p class="block t0">
            搏。测量脉搏时,我们会发现学前儿童的脉搏比成人快。(<input
              type="text"
              class="judge-input"
              v-model="chapterOneData.question.judge.qTwo"
              @input="saveChapterOneData"
            />)
            搏。测量脉搏时,我们会发现学前儿童的脉搏比成人快。()
          </p>
          <div class="radio-box">
            <label>
              <input
                type="radio"
                name="qTwo"
                value="correct"
                v-model="chapterOneData.question.judge.qTwo"
                @change="saveChapterOneData"
               />
              对</label>
            <label>
              <input
                type="radio"
                name="qTwo"
                value="error"
                v-model="chapterOneData.question.judge.qTwo"
                @change="saveChapterOneData"
              />错</label>
          </div>
          <p class="block">
            3.随着学前儿童神经系统发育的不断完善,3~4岁幼儿能够很容易画直线。(<input
              type="text"
              class="judge-input"
              v-model="chapterOneData.question.judge.qThree"
              @input="saveChapterOneData"
            />)
            3.随着学前儿童神经系统发育的不断完善,3~4岁幼儿能够很容易画直线。()
          </p>
          <div class="radio-box">
            <label>
              <input
                type="radio"
                name="qThree"
                value="correct"
                v-model="chapterOneData.question.judge.qThree"
                @change="saveChapterOneData"
               />
              对</label>
            <label>
              <input
                type="radio"
                name="qThree"
                value="error"
                v-model="chapterOneData.question.judge.qThree"
                @change="saveChapterOneData"
              />错</label>
          </div>
          <p class="block">
            4.因为睡眠时各器官所需要的血液量比活动时少得多,能减轻心脏的负担。因此,要保证学前儿童充足的睡眠,至于什么时候睡并不重要。(<input
              type="text"
              class="judge-input"
              v-model="chapterOneData.question.judge.qFour"
              @input="saveChapterOneData"
            />)
            4.因为睡眠时各器官所需要的血液量比活动时少得多,能减轻心脏的负担。因此,要保证学前儿童充足的睡眠,至于什么时候睡并不重要。()
          </p>
          <div class="radio-box">
            <label>
              <input
                type="radio"
                name="qFour"
                value="correct"
                v-model="chapterOneData.question.judge.qFour"
                @change="saveChapterOneData"
               />
              对</label>
            <label>
              <input
                type="radio"
                name="qFour"
                value="error"
                v-model="chapterOneData.question.judge.qFour"
                @change="saveChapterOneData"
              />错</label>
          </div>
          <p class="block"><b>二、填空</b></p>
          <p class="block">
            1.幼儿穿的鞋过小会影响<input
@@ -4973,6 +5028,10 @@
        JSON.stringify(this.chapterOneData)
      );
    },
    handleRadio(e) {
      console.log(e);
    }
  },
};
</script>