unknown
2024-05-31 28214e38ea02cca66c747034f57f8dce912bee42
src/books/lifeCare/view/chapter003.vue
@@ -2111,6 +2111,84 @@
          <p>
            2~4人为一组开展婴幼儿口腔清洁的模拟实训,其中一人操作,其他同学观摩。操作者一边实操一边讲解操作要领,其他同学按照婴幼儿口腔清洁的评分标准给操作者打分。
          </p>
          <div class="tips-bk">
            <div class="bj-tip">
              婴幼儿口腔清洁的评分标准
              <div @click="activityScore5">
                <svg
                  xmlns="http://www.w3.org/2000/svg"
                  width="19.28"
                  height="20.563"
                  viewBox="0 0 19.28 20.563"
                >
                  <g transform="translate(-109.056 -82.941)">
                    <path
                      class="a"
                      d="M3439.656-15185.7h-12.643a1.815,1.815,0,0,1-1.816-1.81v-16.944a1.83,1.83,0,0,1,1.816-1.809h15.674a1.8,1.8,0,0,1,1.79,1.809v13.93h-4.217a.6.6,0,0,0-.6.6v4.217h0Zm-9.819-2.764a.5.5,0,0,0-.5.5.5.5,0,0,0,.5.5h4a.5.5,0,0,0,.5-.5.5.5,0,0,0-.5-.5Zm0-2a.5.5,0,0,0-.5.5.5.5,0,0,0,.5.5h4a.5.5,0,0,0,.5-.5.5.5,0,0,0-.5-.5Zm1.393-8.525a2.416,2.416,0,0,0-2.416,2.411,2.421,2.421,0,0,0,2.416,2.42h.111a1.8,1.8,0,0,0,1.1,1.1,1.809,1.809,0,0,0,.6.107,1.808,1.808,0,0,0,1.7-1.206h4.072l-.172.172a.635.635,0,0,0-.179.454.569.569,0,0,0,.179.4.637.637,0,0,0,.435.176.6.6,0,0,0,.424-.176l1.2-1.214a.618.618,0,0,0,0-.858l-1.2-1.187a.619.619,0,0,0-.431-.176.6.6,0,0,0-.427.176.615.615,0,0,0,0,.854l.172.176h-4.072a1.8,1.8,0,0,0-1.1-1.1,1.755,1.755,0,0,0-.6-.1,1.808,1.808,0,0,0-1.7,1.206h-.111a.554.554,0,0,1-.145-.016,1.2,1.2,0,0,1-.84-.4,1.217,1.217,0,0,1-.3-.878,1.2,1.2,0,0,1,1.206-1.137.407.407,0,0,1,.069,0h3.729a1.807,1.807,0,0,0,1.118,1.114,1.816,1.816,0,0,0,.576.091,1.789,1.789,0,0,0,1.7-1.205h.309a2.415,2.415,0,0,0,1.679-.775,2.407,2.407,0,0,0,.637-1.729,2.411,2.411,0,0,0-2.419-2.324h-6.213a1.821,1.821,0,0,0-1.107-1.1,1.8,1.8,0,0,0-.6-.1,1.814,1.814,0,0,0-1.706,1.2,1.8,1.8,0,0,0,.077,1.389,1.787,1.787,0,0,0,1.026.92,1.841,1.841,0,0,0,.6.1,1.807,1.807,0,0,0,1.706-1.2h6.266a1.179,1.179,0,0,1,.836.4,1.22,1.22,0,0,1,.305.874,1.213,1.213,0,0,1-1.214,1.146h-.172a1.8,1.8,0,0,0-1.118-1.118,1.711,1.711,0,0,0-.576-.1,1.8,1.8,0,0,0-1.706,1.214Z"
                      transform="translate(-3316.14 15289.201)"
                    />
                    <path
                      class="a"
                      d="M316.806,239.727a.6.6,0,1,0,.6-.6A.6.6,0,0,0,316.806,239.727Zm-5.421-4.207a.6.6,0,1,0,.6.6A.587.587,0,0,0,311.385,235.52Zm2.4,8.438a.607.607,0,1,0-.6-.613A.621.621,0,0,0,313.789,243.958Z"
                      transform="translate(-196.896 -148.921)"
                    />
                    <path
                      class="a"
                      d="M763.392,793.79l3.262-3.262h-3.262Z"
                      transform="translate(-638.661 -690.634)"
                    />
                  </g>
                </svg>
              </div>
            </div>
            <div v-if="chapter003.isScore5Open" class="tips-file">
              <table class="table111 table122">
                <thead>
                  <tr>
                    <th
                      :style="{
                        width:
                          index == 1 ||
                          index == chapter003.scoreData5.length - 1
                            ? '100px'
                            : '',
                      }"
                      v-for="(header, index) in chapter003.publicHeader"
                      :key="index"
                    >
                      {{ header }}
                    </th>
                  </tr>
                </thead>
                <tbody>
                  <tr
                    v-for="(row, rowIndex) in chapter003.scoreData5"
                    :key="rowIndex"
                  >
                    <td v-for="(cell, cellIndex) in row" :key="cellIndex">
                      <template v-if="cell === ''">
                        <input
                          type="text"
                          v-model="chapter003.scoreData5[rowIndex][cellIndex]"
                          @blur="
                            updateCellScore5(
                              rowIndex,
                              cellIndex,
                              $event.target.value
                            )
                          "
                        />
                      </template>
                      <template v-else>
                        {{ cell }}
                      </template>
                    </td>
                  </tr>
                </tbody>
              </table>
            </div>
          </div>
          <p><br /></p>
          <h4 id="d028">
            ▶▶ 活动3:指导幼儿漱口<span class="fontsz1">>>>>>>>></span>
          </h4>
@@ -3094,6 +3172,57 @@
            "",
          ],
        ],
        // 婴幼儿口腔
        scoreData5: [
          [
            1,
            "操作者准备",
            10,
            "束起头发,剪短指甲,摘除手表及首饰,洗净双手(共 5 分),在漱口杯内放入温水,水温控制在 37 ℃~ 39 ℃(共 5 分)",
            "",
            "",
          ],
          [
            2,
            "物品准备",
            7,
            "牙齿模型、漱口杯、指套牙刷、细软的消毒纱布(约 4 cm见方)、婴幼儿牙刷、婴幼儿牙膏、擦嘴小毛巾(共 7 分)",
            "",
            "",
          ],
          [
            3,
            "无牙期的口腔护理",
            18,
            "用温水浸湿消毒纱布,先将消毒纱布拧成半干,再将消毒纱的一角裹在食指上(共 6 分);擦拭上牙龈的外侧,换一个角轻轻擦拭上牙龈的内侧;换不同的纱布角分别擦拭下牙龈的外侧和内侧(共 6 分);用干净的纱布角擦拭舌头(共 6 分)",
            "",
            "",
          ],
          [
            4,
            "1 岁内婴儿长牙期的口腔护理",
            10,
            "将指套牙刷清理干净,再放入沸水里煮1 ~ 2 分钟消毒(共5 分);正确手法操作,手法轻柔(操作不合格扣 5 分,共 5 分);",
            "",
            "",
          ],
          [
            5,
            "1 岁以上幼儿的口腔护理",
            45,
            "将牙刷用温水浸泡 1 ~ 2 分钟(共 5 分);取适量牙膏置于牙刷上(共 5 分);手握牙刷柄后 1/3 处(共 5 分);先刷前牙唇侧;再刷上牙前腭面,下牙舌面;再刷后牙颊面;再刷后牙舌面;最后刷牙咬合面(共 20 分);用温水含漱数次,直至牙膏泡沫完全清洗干净(共 5 分);擦洗婴幼儿的嘴角及面部(共 5 分);",
            "",
            "",
          ],
          [
            6,
            "整理物品",
            10,
            "整理物品,清洁漱口杯、小方巾等,将物品摆放整齐(共 10 分)",
            "",
            "",
          ],
        ],
        textAreaItem: {},
        radio: {},
        drawDataOne: {
@@ -3317,6 +3446,23 @@
      }
      localStorage.setItem("chapter003", JSON.stringify(this.chapter003));
    },
    activityScore5() {
      this.chapter003.isScore5Open = !this.chapter003.isScore5Open;
      localStorage.setItem("chapter003", JSON.stringify(this.chapter003));
    },
    updateCellScore5(rowIndex, cellIndex, value) {
      // 更新单元格数据
      this.$set(this.chapter003.scoreData5[rowIndex], cellIndex, value);
      if (cellIndex == 4) {
        this.$set(
          this.chapter003.scoreData5[rowIndex],
          5,
          this.chapter003.scoreData5[rowIndex][2] -
            this.chapter003.scoreData5[rowIndex][cellIndex]
        );
      }
      localStorage.setItem("chapter003", JSON.stringify(this.chapter003));
    },
    onBlurChange() {
      localStorage.setItem("chapter003", JSON.stringify(this.chapter003));
    },