src/books/lifeCare/css/default.less | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
src/books/lifeCare/view/components/index.vue | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
src/books/sportsAndHealth/css/default.less | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
src/books/sportsAndHealth/view/components/chapter001.vue | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
src/books/sportsAndHealth/view/components/index.vue | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
src/books/sportsAndHealth/view/components/testPp.vue | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
src/books/sportsAndHealth/view/components/text.html | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 |
src/books/lifeCare/css/default.less
@@ -50,6 +50,9 @@ } .coverImg { display: block; width: 100%; height: 100%; position: absolute; top: 0; left: 0; @@ -1843,7 +1846,7 @@ font-size: 16px; border-radius: 5px; max-width: 620px; min-width: 500px; min-width: 300px; } } @@ -1903,12 +1906,18 @@ @media screen and (max-width: 800px) { .coverImg { position: absolute; top: 25%; left: 0; img { height: 100%; } } .chapter { .page-box { min-height: 1000px !important; } .prefaceImg { width: 100% !important; position: absolute; @@ -2015,6 +2024,28 @@ } } } @media screen and (max-width:700px) { .coverImg { img { height: 100%; } } .chapter { .page-box { min-height: 800px !important; } } } @media screen and (max-width:600px) { .chapter { .page-box { min-height: 500px !important; } } } } } src/books/lifeCare/view/components/index.vue
@@ -104,6 +104,7 @@ </template> <script> import Vue from "vue"; import front001 from "./front001"; import ChapterOne from "./chapter001"; import ChapterTwo from "./chapter002"; @@ -156,11 +157,6 @@ return this.$store.state.qiankun.scale / 100; }, }, provide() { return { changeQuestionData: this.changeQuestionData, }; }, watch: { showCatalogList: { handler(newVal, oldVal) { @@ -181,11 +177,19 @@ }, }, loadPageList: { handler() { handler(newVal, oldVal) { setTimeout(() => { this.initSwiper(); this.initViewer(); }, 200); }, }, pageZoom: { handler(newVal, oldVal) { const scrollBox = ( this.container ? this.container : document ).querySelector(".page-main"); scrollBox.scrollTop = (scrollBox.scrollTop / oldVal) * newVal; }, }, }, @@ -248,12 +252,12 @@ // 测试页面跳转 // setTimeout(() => { // this.gotoPage(1, 15); // this.gotoPage(1,10); // setTimeout(() => { // this.renderSign("Note", { // this.renderSign("Highlight", { // id: "2ACA9359", // txt: "营养素和热量,才能", // page: "100", // txt: "题一学习主题一 运动", // page: "10", // type: "Highlight", // color: "#F5E12A" // }); @@ -262,16 +266,48 @@ // ids: ["2ACA9359"] // }); // }, 2000); // }, 1000); // }, 1000); // }, 5000); // const pageDom = (this.container ? this.container : document) // .querySelector("#app") // .querySelectorAll(".page-box"); // 检索 // console.log(this.searchTextByPage("保护内脏器官"), "searchTextByPage"); // 检索跳转 // this.searchItemLocation({ // catalog: 2, // page: 10, // txt: " 运动系统是由骨、骨连结和骨骼肌三部分组成的。全身的骨通过骨连结组成人体骨骼(见图1-1)。骨骼是人体的支架,具有保护内脏器官、供肌肉附着和作为肌肉运动的杠杆等作用。在神经系统的支配下,肌肉收缩牵动所附着的骨绕着关节转动,使身体产生各种动作。所以,运动系统具有运动、支持和保护等功能,幼年时期的骨骼还具有造血功能。 ", // txtIndex: 57 // }); // }, 500); }, methods: { changeDomViewer() { setTimeout(() => { this.initViewer(); }, 500); swdtChange(data) { if (this.$store.state.qiankun && this.$store.state.qiankun.chooseWords) { this.$store.state.qiankun.chooseWords({ type: data.type, data: data.data, }); } }, changeDomViewer() { this.initViewer(); }, // setZoom1() { // let scale = this.$store.state.qiankun.scale + 10; // const scrollBox = ( // this.container ? this.container : document // ).querySelector(".page-main"); // this.$store.commit("setZoom", scale); // }, // setZoom2() { // let scale = this.$store.state.qiankun.scale - 10; // const scrollBox = ( // this.container ? this.container : document // ).querySelector(".page-main"); // this.$store.commit("setZoom", scale); // }, // 滚动监听 scrollFun(event) { // 判断向上滚动还是向下滚动 @@ -421,7 +457,6 @@ } } }, // 删除标记渲染 delSign({ ids, type }) { if (ids && ids.length) { @@ -449,7 +484,6 @@ } } }, initObservation() { const sections = ( this.container ? this.container : document @@ -478,7 +512,6 @@ } }); }, initThemeColor() { // 获取各种需要主题色的节点 const colorDom = ( @@ -558,7 +591,15 @@ } }); }, getParentWithClass(element, className) { console.log(element, className, "element, className"); while (element.parentElement) { element = element.parentElement; if (element.classList.contains(className)) { return element; } } }, pageChangeCallback(entries, observer) { //entries:代表观察到的目标元素的集合。 observer:代表观察者对象。 entries.forEach((entry) => { @@ -590,7 +631,6 @@ } }); }, loadPageCallback(entries, observer) { entries.forEach(async (entry) => { if (entry.isIntersecting) { @@ -627,7 +667,6 @@ } } } // 渲染这一页的标记 for (const key in this.renderSignMap) { if (this.renderSignMap[key][page]) { @@ -641,7 +680,10 @@ // 高亮行 setTimeout(() => { // 获取页面所有text节点 const pageTextList = document.createTreeWalker(target, NodeFilter.SHOW_TEXT); const pageTextList = document.createTreeWalker( target, NodeFilter.SHOW_TEXT ); // 匹配关键字 const allPageTextNodes = []; let currentNode = pageTextList.nextNode(); @@ -674,7 +716,6 @@ } }); }, initSwiper() { const doms = ( this.container ? this.container : document @@ -754,7 +795,6 @@ }); } }, initViewer() { const doms = ( this.container ? this.container : document @@ -771,16 +811,6 @@ }); } }, swdtChange(data) { if (this.$store.state.qiankun && this.$store.state.qiankun.chooseWords) { this.$store.state.qiankun.chooseWords({ type: data.type, data: data.data, }); } }, // 根据关键字全文检索 searchTextByPage(keyword) { const searchResult = []; @@ -817,7 +847,7 @@ propsData: { showPageList: [], questionData: {}, isSearch: true isSearch: true, }, }); pageExample.$mount( @@ -849,7 +879,7 @@ propsData: { showPageList: [pageNum], questionData: {}, isSearch: true isSearch: true, }, }); pageExample.$mount( @@ -897,10 +927,9 @@ } } // 输出搜索结果 // console.log(searchResult); console.log(searchResult); return searchResult; }, // 根据检索结果跳转对应位置并高亮 searchItemLocation(data) { // 记录高亮信息 src/books/sportsAndHealth/css/default.less
@@ -1659,7 +1659,18 @@ } @media screen and (max-width: 800px) { .chapter { .coverImg { height: 100%; overflow: hidden; } .page-box { min-height: 1000px !important; } .pdf-tips-con { width: 100%; min-width: 200px; @@ -1727,6 +1738,40 @@ } } } @media screen and (max-width:700px) { // .coverImg { // img { // height: 100%; // } // } .chapter { .coverImg { margin: 0; } .page-box { min-height: 800px !important; } } } @media screen and (max-width:600px) { .chapter { .coverImg { margin: 0; height: 100%; } .page-box { min-height: 500px !important; margin-bottom: 20px; } } } } } } @@ -1758,6 +1803,20 @@ .el-dialog__header { background-color: rgba(0, 0, 0, 0.8); .header_title { display: flex; justify-content: space-between; align-items: center; color: #fff; font-weight: 900; font-size: 16px; font-family: 'FZLTXIHJW'; span:nth-child(2):hover { cursor: pointer; } } .el-dialog__title, .el-dialog__headerbtn .el-dialog__close { color: #fff; src/books/sportsAndHealth/view/components/chapter001.vue
@@ -115,7 +115,7 @@ </div> <br /> <div class="public-tips">请同学们查阅“健康概念的演变”。</div> <div v-if="chapter002.isShowXyx01"> <div v-if="chapter001.isShowXyx01"> <div class="xyx-title">健康概念的演变</div> <p class="xyx-con"> 在人类发展历程中,先后形成了不同的健康观。早期朴素的健康观认为“健康就是没 @@ -148,7 +148,7 @@ </div> <!-- <p> 请同学们<a id="w1"></a ><a href="chapter002.html#m1"><sup>[1]</sup></a ><a href="chapter001.html#m1"><sup>[1]</sup></a >查阅“健康概念的演变”。 </p> --> </div> @@ -175,7 +175,7 @@ <div class="public-tips"> 请同学们进行“小测试:世界卫生组织五项身心健康指标评价”。 </div> <div v-if="chapter002.isShowXyx02"> <div v-if="chapter001.isShowXyx02"> <!-- <p>请同学们进行“小测试:世界卫生组织五项身心健康指标评价”。</p> --> <div class="xyx-title">世界卫生组织五项身心健康指标评价</div> <div class="xyx-text"> @@ -203,7 +203,7 @@ <td> <input @change="changeBox($event, 'text1')" :checked="chapter002.tablexyx1.text1" :checked="chapter001.tablexyx1.text1" type="checkbox" value="5" /> @@ -212,7 +212,7 @@ <td> <input @change="changeBox($event, 'text2')" :checked="chapter002.tablexyx1.text2" :checked="chapter001.tablexyx1.text2" type="checkbox" value="4" />4 @@ -220,7 +220,7 @@ <td> <input @change="changeBox($event, 'text3')" :checked="chapter002.tablexyx1.text3" :checked="chapter001.tablexyx1.text3" type="checkbox" value="3" />3 @@ -228,7 +228,7 @@ <td> <input @change="changeBox($event, 'text4')" :checked="chapter002.tablexyx1.text4" :checked="chapter001.tablexyx1.text4" type="checkbox" value="2" />2 @@ -236,7 +236,7 @@ <td> <input @change="changeBox($event, 'text5')" :checked="chapter002.tablexyx1.text5" :checked="chapter001.tablexyx1.text5" type="checkbox" value="1" />1 @@ -244,7 +244,7 @@ <td> <input @change="changeBox($event, 'text6')" :checked="chapter002.tablexyx1.text6" :checked="chapter001.tablexyx1.text6" type="checkbox" value="0" />0 @@ -255,7 +255,7 @@ <td> <input @change="changeBox($event, 'text7')" :checked="chapter002.tablexyx1.text7" :checked="chapter001.tablexyx1.text7" type="checkbox" value="5" />5 @@ -263,7 +263,7 @@ <td> <input @change="changeBox($event, 'text8')" :checked="chapter002.tablexyx1.text8" :checked="chapter001.tablexyx1.text8" type="checkbox" value="4" />4 @@ -271,7 +271,7 @@ <td> <input @change="changeBox($event, 'text9')" :checked="chapter002.tablexyx1.text9" :checked="chapter001.tablexyx1.text9" type="checkbox" value="3" />3 @@ -279,7 +279,7 @@ <td> <input @change="changeBox($event, 'text10')" :checked="chapter002.tablexyx1.text10" :checked="chapter001.tablexyx1.text10" type="checkbox" value="2" />2 @@ -287,7 +287,7 @@ <td> <input @change="changeBox($event, 'text11')" :checked="chapter002.tablexyx1.text11" :checked="chapter001.tablexyx1.text11" type="checkbox" value="1" />1 @@ -295,7 +295,7 @@ <td> <input @change="changeBox($event, 'text12')" :checked="chapter002.tablexyx1.text12" :checked="chapter001.tablexyx1.text12" type="checkbox" value="0" />0 @@ -308,7 +308,7 @@ <td> <input @change="changeBox($event, 'text13')" :checked="chapter002.tablexyx1.text13" :checked="chapter001.tablexyx1.text13" type="checkbox" value="5" />5 @@ -316,7 +316,7 @@ <td> <input @change="changeBox($event, 'text14')" :checked="chapter002.tablexyx1.text14" :checked="chapter001.tablexyx1.text14" type="checkbox" value="4" />4 @@ -324,7 +324,7 @@ <td> <input @change="changeBox($event, 'text15')" :checked="chapter002.tablexyx1.text15" :checked="chapter001.tablexyx1.text15" type="checkbox" value="3" />3 @@ -332,7 +332,7 @@ <td> <input @change="changeBox($event, 'text16')" :checked="chapter002.tablexyx1.text16" :checked="chapter001.tablexyx1.text16" type="checkbox" value="2" />2 @@ -340,7 +340,7 @@ <td> <input @change="changeBox($event, 'text17')" :checked="chapter002.tablexyx1.text17" :checked="chapter001.tablexyx1.text17" type="checkbox" value="1" />1 @@ -348,7 +348,7 @@ <td> <input @change="changeBox($event, 'text18')" :checked="chapter002.tablexyx1.text18" :checked="chapter001.tablexyx1.text18" type="checkbox" value="0" />0 @@ -361,7 +361,7 @@ <td> <input @change="changeBox($event, 'text19')" :checked="chapter002.tablexyx1.text19" :checked="chapter001.tablexyx1.text19" type="checkbox" value="5" />5 @@ -369,7 +369,7 @@ <td> <input @change="changeBox($event, 'text20')" :checked="chapter002.tablexyx1.text20" :checked="chapter001.tablexyx1.text20" type="checkbox" value="4" />4 @@ -377,7 +377,7 @@ <td> <input @change="changeBox($event, 'text21')" :checked="chapter002.tablexyx1.text21" :checked="chapter001.tablexyx1.text21" type="checkbox" value="3" />3 @@ -385,7 +385,7 @@ <td> <input @change="changeBox($event, 'text22')" :checked="chapter002.tablexyx1.text22" :checked="chapter001.tablexyx1.text22" type="checkbox" value="2" />2 @@ -393,7 +393,7 @@ <td> <input @change="changeBox($event, 'text23')" :checked="chapter002.tablexyx1.text23" :checked="chapter001.tablexyx1.text23" type="checkbox" value="1" />1 @@ -401,7 +401,7 @@ <td> <input @change="changeBox($event, 'text24')" :checked="chapter002.tablexyx1.text24" :checked="chapter001.tablexyx1.text24" type="checkbox" value="0" />0 @@ -414,7 +414,7 @@ <td> <input @change="changeBox($event, 'text25')" :checked="chapter002.tablexyx1.text25" :checked="chapter001.tablexyx1.text25" type="checkbox" value="5" />5 @@ -422,7 +422,7 @@ <td> <input @change="changeBox($event, 'text26')" :checked="chapter002.tablexyx1.text26" :checked="chapter001.tablexyx1.text26" type="checkbox" value="4" />4 @@ -430,7 +430,7 @@ <td> <input @change="changeBox($event, 'text27')" :checked="chapter002.tablexyx1.text27" :checked="chapter001.tablexyx1.text27" type="checkbox" value="3" />3 @@ -438,7 +438,7 @@ <td> <input @change="changeBox($event, 'text28')" :checked="chapter002.tablexyx1.text28" :checked="chapter001.tablexyx1.text28" type="checkbox" value="2" />2 @@ -446,7 +446,7 @@ <td> <input @change="changeBox($event, 'text29')" :checked="chapter002.tablexyx1.text29" :checked="chapter001.tablexyx1.text29" type="checkbox" value="1" />1 @@ -454,7 +454,7 @@ <td> <input @change="changeBox($event, 'text30')" :checked="chapter002.tablexyx1.text30" :checked="chapter001.tablexyx1.text30" type="checkbox" value="0" />0 @@ -468,7 +468,7 @@ </div> <div class="score" v-if="isShowScore1"> 您的得分: <span style="color: red">{{ chapter002.score1 }}</span> <span style="color: red">{{ chapter001.score1 }}</span> </div> <div class="btn"> <span @click="submit(1)">提交</span> @@ -536,7 +536,7 @@ <br /> <div class="public-tips">请同学们进行“8种健康状况测评”。</div> <!-- <p>请同学们进行“8种健康状况测评”。</p> --> <div class="bj-byb" v-if="chapter002.isShowXyx03"> <div class="bj-byb" v-if="chapter001.isShowXyx03"> <div class="byb-title">8 种健康状况测评</div> <p> 美国学者沃林斯基借鉴医学、社会学、心理学的相关理论,提出了 8 @@ -561,7 +561,7 @@ @change="changeByb($event, 'text1')" type="checkbox" value="" :checked="chapter002.tablebyb1.text1" :checked="chapter001.tablebyb1.text1" />正常健康 </td> <td> @@ -569,7 +569,7 @@ @change="changeByb($event, 'text2')" type="checkbox" value="" :checked="chapter002.tablebyb1.text2" :checked="chapter001.tablebyb1.text2" />健康 </td> <td> @@ -577,7 +577,7 @@ @change="changeByb($event, 'text2')" type="checkbox" value="" :checked="chapter002.tablebyb1.text2" :checked="chapter001.tablebyb1.text2" />健康 </td> <td> @@ -585,7 +585,7 @@ @change="changeByb($event, 'text4')" type="checkbox" value="" :checked="chapter002.tablebyb1.text4" :checked="chapter001.tablebyb1.text4" />健康 </td> </tr> @@ -596,7 +596,7 @@ @change="changeByb($event, 'text5')" type="checkbox" value="" :checked="chapter002.tablebyb1.text5" :checked="chapter001.tablebyb1.text5" />悲观 </td> <td> @@ -604,7 +604,7 @@ @change="changeByb($event, 'text6')" type="checkbox" value="" :checked="chapter002.tablebyb1.text6" :checked="chapter001.tablebyb1.text6" />不健康 </td> <td> @@ -612,7 +612,7 @@ @change="changeByb($event, 'text7')" type="checkbox" value="" :checked="chapter002.tablebyb1.text7" :checked="chapter001.tablebyb1.text7" />健康 </td> <td> @@ -620,7 +620,7 @@ @change="changeByb($event, 'text8')" type="checkbox" value="" :checked="chapter002.tablebyb1.text8" :checked="chapter001.tablebyb1.text8" />健康 </td> </tr> @@ -631,7 +631,7 @@ @change="changeByb($event, 'text9')" type="checkbox" value="" :checked="chapter002.tablebyb1.text9" :checked="chapter001.tablebyb1.text9" />社会方面不健康 </td> <td> @@ -639,7 +639,7 @@ @change="changeByb($event, 'text10')" type="checkbox" value="" :checked="chapter002.tablebyb1.text10" :checked="chapter001.tablebyb1.text10" />健康 </td> <td> @@ -647,7 +647,7 @@ @change="changeByb($event, 'text11')" type="checkbox" value="" :checked="chapter002.tablebyb1.text11" :checked="chapter001.tablebyb1.text11" />健康 </td> <td> @@ -655,7 +655,7 @@ @change="changeByb($event, 'text12')" type="checkbox" value="" :checked="chapter002.tablebyb1.text12" :checked="chapter001.tablebyb1.text12" />不健康 </td> </tr> @@ -666,7 +666,7 @@ @change="changeByb($event, 'text13')" type="checkbox" value="" :checked="chapter002.tablebyb1.text13" :checked="chapter001.tablebyb1.text13" />患疑病症 </td> <td> @@ -674,7 +674,7 @@ @change="changeByb($event, 'text14')" type="checkbox" value="" :checked="chapter002.tablebyb1.text14" :checked="chapter001.tablebyb1.text14" />不健康 </td> <td> @@ -682,7 +682,7 @@ @change="changeByb($event, 'text15')" type="checkbox" value="" :checked="chapter002.tablebyb1.text15" :checked="chapter001.tablebyb1.text15" />健康 </td> <td> @@ -690,7 +690,7 @@ @change="changeByb($event, 'text16')" type="checkbox" value="" :checked="chapter002.tablebyb1.text16" :checked="chapter001.tablebyb1.text16" />健康 </td> </tr> @@ -701,7 +701,7 @@ @change="changeByb($event, 'text17')" type="checkbox" value="" :checked="chapter002.tablebyb1.text17" :checked="chapter001.tablebyb1.text17" />身体不健康 </td> <td> @@ -709,7 +709,7 @@ @change="changeByb($event, 'text18')" type="checkbox" value="" :checked="chapter002.tablebyb1.text18" :checked="chapter001.tablebyb1.text18" />健康 </td> <td> @@ -717,7 +717,7 @@ @change="changeByb($event, 'text19')" type="checkbox" value="" :checked="chapter002.tablebyb1.text19" :checked="chapter001.tablebyb1.text19" />不健康 </td> <td> @@ -725,7 +725,7 @@ @change="changeByb($event, 'text20')" type="checkbox" value="" :checked="chapter002.tablebyb1.text20" :checked="chapter001.tablebyb1.text20" />健康 </td> </tr> @@ -736,7 +736,7 @@ @change="changeByb($event, 'text21')" type="checkbox" value="" :checked="chapter002.tablebyb1.text21" :checked="chapter001.tablebyb1.text21" />长期受病折磨 </td> <td> @@ -744,7 +744,7 @@ @change="changeByb($event, 'text22')" type="checkbox" value="" :checked="chapter002.tablebyb1.text22" :checked="chapter001.tablebyb1.text22" />不健康 </td> <td> @@ -752,7 +752,7 @@ @change="changeByb($event, 'text23')" type="checkbox" value="" :checked="chapter002.tablebyb1.text23" :checked="chapter001.tablebyb1.text23" />不健康 </td> <td> @@ -760,7 +760,7 @@ @change="changeByb($event, 'text24')" type="checkbox" value="" :checked="chapter002.tablebyb1.text24" :checked="chapter001.tablebyb1.text24" />健康 </td> </tr> @@ -771,7 +771,7 @@ @change="changeByb($event, 'text25')" type="checkbox" value="" :checked="chapter002.tablebyb1.text25" :checked="chapter001.tablebyb1.text25" />乐观 </td> <td> @@ -779,7 +779,7 @@ @change="changeByb($event, 'text26')" type="checkbox" value="" :checked="chapter002.tablebyb1.text26" :checked="chapter001.tablebyb1.text26" />健康 </td> <td> @@ -787,7 +787,7 @@ @change="changeByb($event, 'text27')" type="checkbox" value="" :checked="chapter002.tablebyb1.text27" :checked="chapter001.tablebyb1.text27" />不健康 </td> <td> @@ -795,7 +795,7 @@ @change="changeByb($event, 'text28')" type="checkbox" value="" :checked="chapter002.tablebyb1.text28" :checked="chapter001.tablebyb1.text28" />健康 </td> </tr> @@ -806,7 +806,7 @@ @change="changeByb($event, 'text29')" type="checkbox" value="" :checked="chapter002.tablebyb1.text29" :checked="chapter001.tablebyb1.text29" />患病严重 </td> <td> @@ -814,7 +814,7 @@ @change="changeByb($event, 'text30')" type="checkbox" value="" :checked="chapter002.tablebyb1.text30" :checked="chapter001.tablebyb1.text30" />不健康 </td> <td> @@ -822,7 +822,7 @@ @change="changeByb($event, 'text31')" type="checkbox" value="" :checked="chapter002.tablebyb1.text31" :checked="chapter001.tablebyb1.text31" />不健康 </td> <td> @@ -830,7 +830,7 @@ @change="changeByb($event, 'text32')" type="checkbox" value="" :checked="chapter002.tablebyb1.text32" :checked="chapter001.tablebyb1.text32" />不健康 </td> </tr> @@ -896,7 +896,7 @@ <br /> <div class="public-tips">请同学们进行“生活事件评价”。</div> <!-- <p>请同学们进行“生活事件评价”。</p> --> <div v-if="chapter002.isShowXyx04"> <div v-if="chapter001.isShowXyx04"> <div class="xyx-title">生活事件评价</div> <div class="xyx-text"> 请同学们根据下表分析在过去 3 @@ -924,7 +924,7 @@ @change="changecyc2($event, 'text1')" type="checkbox" value="0" :checked="chapter002.tablecyc2.text1" :checked="chapter001.tablecyc2.text1" />0 </td> <td> @@ -932,7 +932,7 @@ @change="changecyc2($event, 'text2')" type="checkbox" value="1" :checked="chapter002.tablecyc2.text2" :checked="chapter001.tablecyc2.text2" />1 </td> <td> @@ -940,7 +940,7 @@ @change="changecyc2($event, 'text3')" type="checkbox" value="2" :checked="chapter002.tablecyc2.text3" :checked="chapter001.tablecyc2.text3" />2 </td> <td> @@ -948,7 +948,7 @@ @change="changecyc2($event, 'text4')" type="checkbox" value="3" :checked="chapter002.tablecyc2.text4" :checked="chapter001.tablecyc2.text4" />3 </td> <td> @@ -956,7 +956,7 @@ @change="changecyc2($event, 'text5')" type="checkbox" value="4" :checked="chapter002.tablecyc2.text5" :checked="chapter001.tablecyc2.text5" />4 </td> <td> @@ -964,7 +964,7 @@ @change="changecyc2($event, 'text6')" type="checkbox" value="5" :checked="chapter002.tablecyc2.text6" :checked="chapter001.tablecyc2.text6" />5 </td> </tr> @@ -975,7 +975,7 @@ @change="changecyc2($event, 'text82')" type="checkbox" value="0" :checked="chapter002.tablecyc2.text82" :checked="chapter001.tablecyc2.text82" />0 </td> <td> @@ -983,7 +983,7 @@ @change="changecyc2($event, 'text83')" type="checkbox" value="1" :checked="chapter002.tablecyc2.text83" :checked="chapter001.tablecyc2.text83" />1 </td> <td> @@ -991,7 +991,7 @@ @change="changecyc2($event, 'text84')" type="checkbox" value="2" :checked="chapter002.tablecyc2.text84" :checked="chapter001.tablecyc2.text84" />2 </td> <td> @@ -999,7 +999,7 @@ @change="changecyc2($event, 'text85')" type="checkbox" value="3" :checked="chapter002.tablecyc2.text85" :checked="chapter001.tablecyc2.text85" />3 </td> <td> @@ -1007,7 +1007,7 @@ @change="changecyc2($event, 'text86')" type="checkbox" value="4" :checked="chapter002.tablecyc2.text86" :checked="chapter001.tablecyc2.text86" />4 </td> <td> @@ -1015,7 +1015,7 @@ @change="changecyc2($event, 'text87')" type="checkbox" value="5" :checked="chapter002.tablecyc2.text87" :checked="chapter001.tablecyc2.text87" />5 </td> </tr> @@ -1026,7 +1026,7 @@ @change="changecyc2($event, 'text88')" type="checkbox" value="0" :checked="chapter002.tablecyc2.text88" :checked="chapter001.tablecyc2.text88" />0 </td> <td> @@ -1034,7 +1034,7 @@ @change="changecyc2($event, 'text89')" type="checkbox" value="1" :checked="chapter002.tablecyc2.text89" :checked="chapter001.tablecyc2.text89" />1 </td> <td> @@ -1042,7 +1042,7 @@ @change="changecyc2($event, 'text90')" type="checkbox" value="2" :checked="chapter002.tablecyc2.text90" :checked="chapter001.tablecyc2.text90" />2 </td> <td> @@ -1050,7 +1050,7 @@ @change="changecyc2($event, 'text92')" type="checkbox" value="3" :checked="chapter002.tablecyc2.text92" :checked="chapter001.tablecyc2.text92" />3 </td> <td> @@ -1058,7 +1058,7 @@ @change="changecyc2($event, 'text93')" type="checkbox" value="4" :checked="chapter002.tablecyc2.text93" :checked="chapter001.tablecyc2.text93" />4 </td> <td> @@ -1066,7 +1066,7 @@ @change="changecyc2($event, 'text94')" type="checkbox" value="5" :checked="chapter002.tablecyc2.text94" :checked="chapter001.tablecyc2.text94" />5 </td> </tr> @@ -1077,7 +1077,7 @@ @change="changecyc2($event, 'text95')" type="checkbox" value="0" :checked="chapter002.tablecyc2.text95" :checked="chapter001.tablecyc2.text95" />0 </td> <td> @@ -1085,7 +1085,7 @@ @change="changecyc2($event, 'text96')" type="checkbox" value="1" :checked="chapter002.tablecyc2.text96" :checked="chapter001.tablecyc2.text96" />1 </td> <td> @@ -1093,7 +1093,7 @@ @change="changecyc2($event, 'text97')" type="checkbox" value="2" :checked="chapter002.tablecyc2.text97" :checked="chapter001.tablecyc2.text97" />2 </td> <td> @@ -1101,7 +1101,7 @@ @change="changecyc2($event, 'text98')" type="checkbox" value="3" :checked="chapter002.tablecyc2.text98" :checked="chapter001.tablecyc2.text98" />3 </td> <td> @@ -1109,7 +1109,7 @@ @change="changecyc2($event, 'text99')" type="checkbox" value="4" :checked="chapter002.tablecyc2.text99" :checked="chapter001.tablecyc2.text99" />4 </td> <td> @@ -1117,7 +1117,7 @@ @change="changecyc2($event, 'text100')" type="checkbox" value="5" :checked="chapter002.tablecyc2.text100" :checked="chapter001.tablecyc2.text100" />5 </td> </tr> @@ -1128,7 +1128,7 @@ @change="changecyc2($event, 'text101')" type="checkbox" value="0" :checked="chapter002.tablecyc2.text101" :checked="chapter001.tablecyc2.text101" />0 </td> <td> @@ -1136,7 +1136,7 @@ @change="changecyc2($event, 'text102')" type="checkbox" value="1" :checked="chapter002.tablecyc2.text102" :checked="chapter001.tablecyc2.text102" />1 </td> <td> @@ -1144,7 +1144,7 @@ @change="changecyc2($event, 'text103')" type="checkbox" value="2" :checked="chapter002.tablecyc2.text103" :checked="chapter001.tablecyc2.text103" />2 </td> <td> @@ -1152,7 +1152,7 @@ @change="changecyc2($event, 'text104')" type="checkbox" value="3" :checked="chapter002.tablecyc2.text104" :checked="chapter001.tablecyc2.text104" />3 </td> <td> @@ -1160,7 +1160,7 @@ @change="changecyc2($event, 'text105')" type="checkbox" value="4" :checked="chapter002.tablecyc2.text105" :checked="chapter001.tablecyc2.text105" />4 </td> <td> @@ -1168,7 +1168,7 @@ @change="changecyc2($event, 'text106')" type="checkbox" value="5" :checked="chapter002.tablecyc2.text106" :checked="chapter001.tablecyc2.text106" />5 </td> </tr> @@ -1179,7 +1179,7 @@ @change="changecyc2($event, 'text107')" type="checkbox" value="0" :checked="chapter002.tablecyc2.text107" :checked="chapter001.tablecyc2.text107" />0 </td> <td> @@ -1187,7 +1187,7 @@ @change="changecyc2($event, 'text108')" type="checkbox" value="1" :checked="chapter002.tablecyc2.text108" :checked="chapter001.tablecyc2.text108" />1 </td> <td> @@ -1195,7 +1195,7 @@ @change="changecyc2($event, 'text109')" type="checkbox" value="2" :checked="chapter002.tablecyc2.text109" :checked="chapter001.tablecyc2.text109" />2 </td> <td> @@ -1203,7 +1203,7 @@ @change="changecyc2($event, 'text110')" type="checkbox" value="3" :checked="chapter002.tablecyc2.text110" :checked="chapter001.tablecyc2.text110" />3 </td> <td> @@ -1211,7 +1211,7 @@ @change="changecyc2($event, 'text111')" type="checkbox" value="4" :checked="chapter002.tablecyc2.text111" :checked="chapter001.tablecyc2.text111" />4 </td> <td> @@ -1219,7 +1219,7 @@ @change="changecyc2($event, 'text112')" type="checkbox" value="5" :checked="chapter002.tablecyc2.text112" :checked="chapter001.tablecyc2.text112" />5 </td> </tr> @@ -1230,7 +1230,7 @@ @change="changecyc2($event, 'text113')" type="checkbox" value="0" :checked="chapter002.tablecyc2.text113" :checked="chapter001.tablecyc2.text113" />0 </td> <td> @@ -1238,7 +1238,7 @@ @change="changecyc2($event, 'text114')" type="checkbox" value="1" :checked="chapter002.tablecyc2.text114" :checked="chapter001.tablecyc2.text114" />1 </td> <td> @@ -1246,7 +1246,7 @@ @change="changecyc2($event, 'text115')" type="checkbox" value="2" :checked="chapter002.tablecyc2.text115" :checked="chapter001.tablecyc2.text115" />2 </td> <td> @@ -1254,7 +1254,7 @@ @change="changecyc2($event, 'text116')" type="checkbox" value="3" :checked="chapter002.tablecyc2.text116" :checked="chapter001.tablecyc2.text116" />3 </td> <td> @@ -1262,7 +1262,7 @@ @change="changecyc2($event, 'text117')" type="checkbox" value="4" :checked="chapter002.tablecyc2.text117" :checked="chapter001.tablecyc2.text117" />4 </td> <td> @@ -1270,7 +1270,7 @@ @change="changecyc2($event, 'text118')" type="checkbox" value="5" :checked="chapter002.tablecyc2.text118" :checked="chapter001.tablecyc2.text118" />5 </td> </tr> @@ -1281,7 +1281,7 @@ @change="changecyc2($event, 'text119')" type="checkbox" value="0" :checked="chapter002.tablecyc2.text119" :checked="chapter001.tablecyc2.text119" />0 </td> <td> @@ -1289,7 +1289,7 @@ @change="changecyc2($event, 'text120')" type="checkbox" value="1" :checked="chapter002.tablecyc2.text120" :checked="chapter001.tablecyc2.text120" />1 </td> <td> @@ -1297,7 +1297,7 @@ @change="changecyc2($event, 'text122')" type="checkbox" value="2" :checked="chapter002.tablecyc2.text122" :checked="chapter001.tablecyc2.text122" />2 </td> <td> @@ -1305,7 +1305,7 @@ @change="changecyc2($event, 'text123')" type="checkbox" value="3" :checked="chapter002.tablecyc2.text123" :checked="chapter001.tablecyc2.text123" />3 </td> <td> @@ -1313,7 +1313,7 @@ @change="changecyc2($event, 'text121')" type="checkbox" value="4" :checked="chapter002.tablecyc2.text121" :checked="chapter001.tablecyc2.text121" />4 </td> <td> @@ -1321,7 +1321,7 @@ @change="changecyc2($event, 'text124')" type="checkbox" value="5" :checked="chapter002.tablecyc2.text124" :checked="chapter001.tablecyc2.text124" />5 </td> </tr> @@ -1332,7 +1332,7 @@ @change="changecyc2($event, 'text125')" type="checkbox" value="0" :checked="chapter002.tablecyc2.text125" :checked="chapter001.tablecyc2.text125" />0 </td> <td> @@ -1340,7 +1340,7 @@ @change="changecyc2($event, 'text126')" type="checkbox" value="1" :checked="chapter002.tablecyc2.text126" :checked="chapter001.tablecyc2.text126" />1 </td> <td> @@ -1348,7 +1348,7 @@ @change="changecyc2($event, 'text127')" type="checkbox" value="2" :checked="chapter002.tablecyc2.text127" :checked="chapter001.tablecyc2.text127" />2 </td> <td> @@ -1356,7 +1356,7 @@ @change="changecyc2($event, 'text128')" type="checkbox" value="3" :checked="chapter002.tablecyc2.text128" :checked="chapter001.tablecyc2.text128" />3 </td> <td> @@ -1364,7 +1364,7 @@ @change="changecyc2($event, 'text129')" type="checkbox" value="4" :checked="chapter002.tablecyc2.text129" :checked="chapter001.tablecyc2.text129" />4 </td> <td> @@ -1372,7 +1372,7 @@ @change="changecyc2($event, 'text130')" type="checkbox" value="5" :checked="chapter002.tablecyc2.text130" :checked="chapter001.tablecyc2.text130" />5 </td> </tr> @@ -1383,7 +1383,7 @@ @change="changecyc2($event, 'text131')" type="checkbox" value="0" :checked="chapter002.tablecyc2.text131" :checked="chapter001.tablecyc2.text131" />0 </td> <td> @@ -1391,7 +1391,7 @@ @change="changecyc2($event, 'text132')" type="checkbox" value="1" :checked="chapter002.tablecyc2.text132" :checked="chapter001.tablecyc2.text132" />1 </td> <td> @@ -1399,7 +1399,7 @@ @change="changecyc2($event, 'text133')" type="checkbox" value="2" :checked="chapter002.tablecyc2.text133" :checked="chapter001.tablecyc2.text133" />2 </td> <td> @@ -1407,7 +1407,7 @@ @change="changecyc2($event, 'text134')" type="checkbox" value="3" :checked="chapter002.tablecyc2.text134" :checked="chapter001.tablecyc2.text134" />3 </td> <td> @@ -1415,7 +1415,7 @@ @change="changecyc2($event, 'text135')" type="checkbox" value="4" :checked="chapter002.tablecyc2.text135" :checked="chapter001.tablecyc2.text135" />4 </td> <td> @@ -1423,7 +1423,7 @@ @change="changecyc2($event, 'text136')" type="checkbox" value="5" :checked="chapter002.tablecyc2.text136" :checked="chapter001.tablecyc2.text136" />5 </td> </tr> @@ -1434,7 +1434,7 @@ @change="changecyc2($event, 'text137')" type="checkbox" value="0" :checked="chapter002.tablecyc2.text137" :checked="chapter001.tablecyc2.text137" />0 </td> <td> @@ -1442,7 +1442,7 @@ @change="changecyc2($event, 'text138')" type="checkbox" value="1" :checked="chapter002.tablecyc2.text138" :checked="chapter001.tablecyc2.text138" />1 </td> <td> @@ -1450,7 +1450,7 @@ @change="changecyc2($event, 'text139')" type="checkbox" value="2" :checked="chapter002.tablecyc2.text139" :checked="chapter001.tablecyc2.text139" />2 </td> <td> @@ -1458,7 +1458,7 @@ @change="changecyc2($event, 'text140')" type="checkbox" value="3" :checked="chapter002.tablecyc2.text140" :checked="chapter001.tablecyc2.text140" />3 </td> <td> @@ -1466,7 +1466,7 @@ @change="changecyc2($event, 'text141')" type="checkbox" value="4" :checked="chapter002.tablecyc2.text141" :checked="chapter001.tablecyc2.text141" />4 </td> <td> @@ -1474,7 +1474,7 @@ @change="changecyc2($event, 'text142')" type="checkbox" value="5" :checked="chapter002.tablecyc2.text142" :checked="chapter001.tablecyc2.text142" />5 </td> </tr> @@ -1485,7 +1485,7 @@ @change="changecyc2($event, 'text7')" type="checkbox" value="0" :checked="chapter002.tablecyc2.text7" :checked="chapter001.tablecyc2.text7" />0 </td> <td> @@ -1493,7 +1493,7 @@ @change="changecyc2($event, 'text8')" type="checkbox" value="1" :checked="chapter002.tablecyc2.text8" :checked="chapter001.tablecyc2.text8" />1 </td> <td> @@ -1501,7 +1501,7 @@ @change="changecyc2($event, 'text9')" type="checkbox" value="2" :checked="chapter002.tablecyc2.text9" :checked="chapter001.tablecyc2.text9" />2 </td> <td> @@ -1509,7 +1509,7 @@ @change="changecyc2($event, 'text10')" type="checkbox" value="3" :checked="chapter002.tablecyc2.text10" :checked="chapter001.tablecyc2.text10" />3 </td> <td> @@ -1517,7 +1517,7 @@ @change="changecyc2($event, 'text11')" type="checkbox" value="4" :checked="chapter002.tablecyc2.text11" :checked="chapter001.tablecyc2.text11" />4 </td> <td> @@ -1525,7 +1525,7 @@ @change="changecyc2($event, 'text12')" type="checkbox" value="5" :checked="chapter002.tablecyc2.text12" :checked="chapter001.tablecyc2.text12" />5 </td> </tr> @@ -1536,7 +1536,7 @@ @change="changecyc2($event, 'text13')" type="checkbox" value="0" :checked="chapter002.tablecyc2.text13" :checked="chapter001.tablecyc2.text13" />0 </td> <td> @@ -1544,7 +1544,7 @@ @change="changecyc2($event, 'text14')" type="checkbox" value="1" :checked="chapter002.tablecyc2.text14" :checked="chapter001.tablecyc2.text14" />1 </td> <td> @@ -1552,7 +1552,7 @@ @change="changecyc2($event, 'text15')" type="checkbox" value="2" :checked="chapter002.tablecyc2.text15" :checked="chapter001.tablecyc2.text15" />2 </td> <td> @@ -1560,7 +1560,7 @@ @change="changecyc2($event, 'text16')" type="checkbox" value="3" :checked="chapter002.tablecyc2.text16" :checked="chapter001.tablecyc2.text16" />3 </td> <td> @@ -1568,7 +1568,7 @@ @change="changecyc2($event, 'text17')" type="checkbox" value="4" :checked="chapter002.tablecyc2.text17" :checked="chapter001.tablecyc2.text17" />4 </td> <td> @@ -1576,7 +1576,7 @@ @change="changecyc2($event, 'text18')" type="checkbox" value="5" :checked="chapter002.tablecyc2.text18" :checked="chapter001.tablecyc2.text18" />5 </td> </tr> @@ -1587,7 +1587,7 @@ @change="changecyc2($event, 'text19')" type="checkbox" value="0" :checked="chapter002.tablecyc2.text19" :checked="chapter001.tablecyc2.text19" />0 </td> <td> @@ -1595,7 +1595,7 @@ @change="changecyc2($event, 'text20')" type="checkbox" value="1" :checked="chapter002.tablecyc2.text20" :checked="chapter001.tablecyc2.text20" />1 </td> <td> @@ -1603,7 +1603,7 @@ @change="changecyc2($event, 'text21')" type="checkbox" value="2" :checked="chapter002.tablecyc2.text21" :checked="chapter001.tablecyc2.text21" />2 </td> <td> @@ -1611,7 +1611,7 @@ @change="changecyc2($event, 'text22')" type="checkbox" value="3" :checked="chapter002.tablecyc2.text22" :checked="chapter001.tablecyc2.text22" />3 </td> <td> @@ -1619,7 +1619,7 @@ @change="changecyc2($event, 'text23')" type="checkbox" value="4" :checked="chapter002.tablecyc2.text23" :checked="chapter001.tablecyc2.text23" />4 </td> <td> @@ -1627,7 +1627,7 @@ @change="changecyc2($event, 'text24')" type="checkbox" value="5" :checked="chapter002.tablecyc2.text24" :checked="chapter001.tablecyc2.text24" />5 </td> </tr> @@ -1638,7 +1638,7 @@ @change="changecyc2($event, 'text25')" type="checkbox" value="0" :checked="chapter002.tablecyc2.text25" :checked="chapter001.tablecyc2.text25" />0 </td> <td> @@ -1646,7 +1646,7 @@ @change="changecyc2($event, 'text26')" type="checkbox" value="1" :checked="chapter002.tablecyc2.text26" :checked="chapter001.tablecyc2.text26" />1 </td> <td> @@ -1654,7 +1654,7 @@ @change="changecyc2($event, 'text27')" type="checkbox" value="2" :checked="chapter002.tablecyc2.text27" :checked="chapter001.tablecyc2.text27" />2 </td> <td> @@ -1662,7 +1662,7 @@ @change="changecyc2($event, 'text28')" type="checkbox" value="3" :checked="chapter002.tablecyc2.text28" :checked="chapter001.tablecyc2.text28" />3 </td> <td> @@ -1670,7 +1670,7 @@ @change="changecyc2($event, 'text29')" type="checkbox" value="4" :checked="chapter002.tablecyc2.text29" :checked="chapter001.tablecyc2.text29" />4 </td> <td> @@ -1678,7 +1678,7 @@ @change="changecyc2($event, 'text30')" type="checkbox" value="5" :checked="chapter002.tablecyc2.text30" :checked="chapter001.tablecyc2.text30" />5 </td> </tr> @@ -1689,7 +1689,7 @@ @change="changecyc2($event, 'text31')" type="checkbox" value="0" :checked="chapter002.tablecyc2.text31" :checked="chapter001.tablecyc2.text31" />0 </td> <td> @@ -1697,7 +1697,7 @@ @change="changecyc2($event, 'text32')" type="checkbox" value="1" :checked="chapter002.tablecyc2.text32" :checked="chapter001.tablecyc2.text32" />1 </td> <td> @@ -1705,7 +1705,7 @@ @change="changecyc2($event, 'text33')" type="checkbox" value="2" :checked="chapter002.tablecyc2.text33" :checked="chapter001.tablecyc2.text33" />2 </td> <td> @@ -1713,7 +1713,7 @@ @change="changecyc2($event, 'text34')" type="checkbox" value="3" :checked="chapter002.tablecyc2.text34" :checked="chapter001.tablecyc2.text34" />3 </td> <td> @@ -1721,7 +1721,7 @@ @change="changecyc2($event, 'text35')" type="checkbox" value="4" :checked="chapter002.tablecyc2.text35" :checked="chapter001.tablecyc2.text35" />4 </td> <td> @@ -1729,7 +1729,7 @@ @change="changecyc2($event, 'text36')" type="checkbox" value="5" :checked="chapter002.tablecyc2.text36" :checked="chapter001.tablecyc2.text36" />5 </td> </tr> @@ -1740,7 +1740,7 @@ @change="changecyc2($event, 'text37')" type="checkbox" value="0" :checked="chapter002.tablecyc2.text37" :checked="chapter001.tablecyc2.text37" />0 </td> <td> @@ -1748,7 +1748,7 @@ @change="changecyc2($event, 'text38')" type="checkbox" value="1" :checked="chapter002.tablecyc2.text38" :checked="chapter001.tablecyc2.text38" />1 </td> <td> @@ -1756,7 +1756,7 @@ @change="changecyc2($event, 'text39')" type="checkbox" value="2" :checked="chapter002.tablecyc2.text39" :checked="chapter001.tablecyc2.text39" />2 </td> <td> @@ -1764,7 +1764,7 @@ @change="changecyc2($event, 'text40')" type="checkbox" value="3" :checked="chapter002.tablecyc2.text40" :checked="chapter001.tablecyc2.text40" />3 </td> <td> @@ -1772,7 +1772,7 @@ @change="changecyc2($event, 'text41')" type="checkbox" value="4" :checked="chapter002.tablecyc2.text41" :checked="chapter001.tablecyc2.text41" />4 </td> <td> @@ -1780,7 +1780,7 @@ @change="changecyc2($event, 'text42')" type="checkbox" value="5" :checked="chapter002.tablecyc2.text42" :checked="chapter001.tablecyc2.text42" />5 </td> </tr> @@ -1791,7 +1791,7 @@ @change="changecyc2($event, 'text43')" type="checkbox" value="0" :checked="chapter002.tablecyc2.text43" :checked="chapter001.tablecyc2.text43" />0 </td> <td> @@ -1799,7 +1799,7 @@ @change="changecyc2($event, 'text44')" type="checkbox" value="1" :checked="chapter002.tablecyc2.text44" :checked="chapter001.tablecyc2.text44" />1 </td> <td> @@ -1807,7 +1807,7 @@ @change="changecyc2($event, 'text45')" type="checkbox" value="2" :checked="chapter002.tablecyc2.text45" :checked="chapter001.tablecyc2.text45" />2 </td> <td> @@ -1815,7 +1815,7 @@ @change="changecyc2($event, 'text46')" type="checkbox" value="3" :checked="chapter002.tablecyc2.text46" :checked="chapter001.tablecyc2.text46" />3 </td> <td> @@ -1823,7 +1823,7 @@ @change="changecyc2($event, 'text47')" type="checkbox" value="4" :checked="chapter002.tablecyc2.text47" :checked="chapter001.tablecyc2.text47" />4 </td> <td> @@ -1831,7 +1831,7 @@ @change="changecyc2($event, 'text48')" type="checkbox" value="5" :checked="chapter002.tablecyc2.text48" :checked="chapter001.tablecyc2.text48" />5 </td> </tr> @@ -1842,7 +1842,7 @@ @change="changecyc2($event, 'text6')" type="checkbox" value="0" :checked="chapter002.tablecyc2.text49" :checked="chapter001.tablecyc2.text49" />0 </td> <td> @@ -1850,7 +1850,7 @@ @change="changecyc2($event, 'text6')" type="checkbox" value="1" :checked="chapter002.tablecyc2.text50" :checked="chapter001.tablecyc2.text50" />1 </td> <td> @@ -1858,7 +1858,7 @@ @change="changecyc2($event, 'text6')" type="checkbox" value="2" :checked="chapter002.tablecyc2.text51" :checked="chapter001.tablecyc2.text51" />2 </td> <td> @@ -1866,7 +1866,7 @@ @change="changecyc2($event, 'text6')" type="checkbox" value="3" :checked="chapter002.tablecyc2.text52" :checked="chapter001.tablecyc2.text52" />3 </td> <td> @@ -1874,7 +1874,7 @@ @change="changecyc2($event, 'text6')" type="checkbox" value="4" :checked="chapter002.tablecyc2.text53" :checked="chapter001.tablecyc2.text53" />4 </td> <td> @@ -1882,7 +1882,7 @@ @change="changecyc2($event, 'text6')" type="checkbox" value="5" :checked="chapter002.tablecyc2.text54" :checked="chapter001.tablecyc2.text54" />5 </td> </tr> @@ -1893,7 +1893,7 @@ @change="changecyc2($event, 'text55')" type="checkbox" value="0" :checked="chapter002.tablecyc2.text55" :checked="chapter001.tablecyc2.text55" />0 </td> <td> @@ -1901,7 +1901,7 @@ @change="changecyc2($event, 'text56')" type="checkbox" value="1" :checked="chapter002.tablecyc2.text56" :checked="chapter001.tablecyc2.text56" />1 </td> <td> @@ -1909,7 +1909,7 @@ @change="changecyc2($event, 'text57')" type="checkbox" value="2" :checked="chapter002.tablecyc2.text57" :checked="chapter001.tablecyc2.text57" />2 </td> <td> @@ -1917,7 +1917,7 @@ @change="changecyc2($event, 'text58')" type="checkbox" value="3" :checked="chapter002.tablecyc2.text58" :checked="chapter001.tablecyc2.text58" />3 </td> <td> @@ -1925,7 +1925,7 @@ @change="changecyc2($event, 'text59')" type="checkbox" value="4" :checked="chapter002.tablecyc2.text59" :checked="chapter001.tablecyc2.text59" />4 </td> <td> @@ -1933,7 +1933,7 @@ @change="changecyc2($event, 'text60')" type="checkbox" value="5" :checked="chapter002.tablecyc2.text60" :checked="chapter001.tablecyc2.text60" />5 </td> </tr> @@ -1944,7 +1944,7 @@ @change="changecyc2($event, 'text61')" type="checkbox" value="0" :checked="chapter002.tablecyc2.text61" :checked="chapter001.tablecyc2.text61" />0 </td> <td> @@ -1952,7 +1952,7 @@ @change="changecyc2($event, 'text62')" type="checkbox" value="1" :checked="chapter002.tablecyc2.text62" :checked="chapter001.tablecyc2.text62" />1 </td> <td> @@ -1960,7 +1960,7 @@ @change="changecyc2($event, 'text63')" type="checkbox" value="2" :checked="chapter002.tablecyc2.text63" :checked="chapter001.tablecyc2.text63" />2 </td> <td> @@ -1968,7 +1968,7 @@ @change="changecyc2($event, 'text64')" type="checkbox" value="3" :checked="chapter002.tablecyc2.text64" :checked="chapter001.tablecyc2.text64" />3 </td> <td> @@ -1976,7 +1976,7 @@ @change="changecyc2($event, 'text65')" type="checkbox" value="4" :checked="chapter002.tablecyc2.text65" :checked="chapter001.tablecyc2.text65" />4 </td> <td> @@ -1984,7 +1984,7 @@ @change="changecyc2($event, 'text66')" type="checkbox" value="5" :checked="chapter002.tablecyc2.text66" :checked="chapter001.tablecyc2.text66" />5 </td> </tr> @@ -1995,7 +1995,7 @@ @change="changecyc2($event, 'text67')" type="checkbox" value="0" :checked="chapter002.tablecyc2.text67" :checked="chapter001.tablecyc2.text67" />0 </td> <td> @@ -2003,7 +2003,7 @@ @change="changecyc2($event, 'text68')" type="checkbox" value="1" :checked="chapter002.tablecyc2.text68" :checked="chapter001.tablecyc2.text68" />1 </td> <td> @@ -2011,7 +2011,7 @@ @change="changecyc2($event, 'text69')" type="checkbox" value="2" :checked="chapter002.tablecyc2.text69" :checked="chapter001.tablecyc2.text69" />2 </td> <td> @@ -2019,7 +2019,7 @@ @change="changecyc2($event, 'text70')" type="checkbox" value="3" :checked="chapter002.tablecyc2.text70" :checked="chapter001.tablecyc2.text70" />3 </td> <td> @@ -2027,7 +2027,7 @@ @change="changecyc2($event, 'text71')" type="checkbox" value="4" :checked="chapter002.tablecyc2.text71" :checked="chapter001.tablecyc2.text71" />4 </td> <td> @@ -2035,7 +2035,7 @@ @change="changecyc2($event, 'text72')" type="checkbox" value="5" :checked="chapter002.tablecyc2.text72" :checked="chapter001.tablecyc2.text72" />5 </td> </tr> @@ -2046,7 +2046,7 @@ @change="changecyc2($event, 'text71')" type="checkbox" value="0" :checked="chapter002.tablecyc2.text71" :checked="chapter001.tablecyc2.text71" />0 </td> <td> @@ -2054,7 +2054,7 @@ @change="changecyc2($event, 'text72')" type="checkbox" value="1" :checked="chapter002.tablecyc2.text72" :checked="chapter001.tablecyc2.text72" />1 </td> <td> @@ -2062,7 +2062,7 @@ @change="changecyc2($event, 'text73')" type="checkbox" value="2" :checked="chapter002.tablecyc2.text73" :checked="chapter001.tablecyc2.text73" />2 </td> <td> @@ -2070,7 +2070,7 @@ @change="changecyc2($event, 'text74')" type="checkbox" value="3" :checked="chapter002.tablecyc2.text74" :checked="chapter001.tablecyc2.text74" />3 </td> <td> @@ -2078,7 +2078,7 @@ @change="changecyc2($event, 'text75')" type="checkbox" value="4" :checked="chapter002.tablecyc2.text75" :checked="chapter001.tablecyc2.text75" />4 </td> <td> @@ -2086,7 +2086,7 @@ @change="changecyc2($event, 'text76')" type="checkbox" value="5" :checked="chapter002.tablecyc2.text76" :checked="chapter001.tablecyc2.text76" />5 </td> </tr> @@ -2097,7 +2097,7 @@ @change="changecyc2($event, 'text77')" type="checkbox" value="0" :checked="chapter002.tablecyc2.text77" :checked="chapter001.tablecyc2.text77" />0 </td> <td> @@ -2105,7 +2105,7 @@ @change="changecyc2($event, 'text78')" type="checkbox" value="1" :checked="chapter002.tablecyc2.text78" :checked="chapter001.tablecyc2.text78" />1 </td> <td> @@ -2113,7 +2113,7 @@ @change="changecyc2($event, 'text79')" type="checkbox" value="2" :checked="chapter002.tablecyc2.text79" :checked="chapter001.tablecyc2.text79" />2 </td> <td> @@ -2121,7 +2121,7 @@ @change="changecyc2($event, 'text80')" type="checkbox" value="3" :checked="chapter002.tablecyc2.text80" :checked="chapter001.tablecyc2.text80" />3 </td> <td> @@ -2129,7 +2129,7 @@ @change="changecyc2($event, 'text81')" type="checkbox" value="4" :checked="chapter002.tablecyc2.text81" :checked="chapter001.tablecyc2.text81" />4 </td> <td> @@ -2137,7 +2137,7 @@ @change="changecyc2($event, 'text82')" type="checkbox" value="5" :checked="chapter002.tablecyc2.text82" :checked="chapter001.tablecyc2.text82" />5 </td> </tr> @@ -2148,7 +2148,7 @@ @change="changecyc2($event, 'text221')" type="checkbox" value="0" :checked="chapter002.tablecyc2.text221" :checked="chapter001.tablecyc2.text221" />0 </td> <td> @@ -2156,7 +2156,7 @@ @change="changecyc2($event, 'text222')" type="checkbox" value="1" :checked="chapter002.tablecyc2.text222" :checked="chapter001.tablecyc2.text222" />1 </td> <td> @@ -2164,7 +2164,7 @@ @change="changecyc2($event, 'text223')" type="checkbox" value="2" :checked="chapter002.tablecyc2.text223" :checked="chapter001.tablecyc2.text223" />2 </td> <td> @@ -2172,7 +2172,7 @@ @change="changecyc2($event, 'text224')" type="checkbox" value="3" :checked="chapter002.tablecyc2.text224" :checked="chapter001.tablecyc2.text224" />3 </td> <td> @@ -2180,7 +2180,7 @@ @change="changecyc2($event, 'text225')" type="checkbox" value="4" :checked="chapter002.tablecyc2.text225" :checked="chapter001.tablecyc2.text225" />4 </td> <td> @@ -2188,7 +2188,7 @@ @change="changecyc2($event, 'text226')" type="checkbox" value="5" :checked="chapter002.tablecyc2.text226" :checked="chapter001.tablecyc2.text226" />5 </td> </tr> @@ -2199,7 +2199,7 @@ @change="changecyc2($event, 'text77')" type="checkbox" value="0" :checked="chapter002.tablecyc2.text227" :checked="chapter001.tablecyc2.text227" />0 </td> <td> @@ -2207,7 +2207,7 @@ @change="changecyc2($event, 'text78')" type="checkbox" value="1" :checked="chapter002.tablecyc2.text228" :checked="chapter001.tablecyc2.text228" />1 </td> <td> @@ -2215,7 +2215,7 @@ @change="changecyc2($event, 'text79')" type="checkbox" value="2" :checked="chapter002.tablecyc2.text229" :checked="chapter001.tablecyc2.text229" />2 </td> <td> @@ -2223,7 +2223,7 @@ @change="changecyc2($event, 'text80')" type="checkbox" value="3" :checked="chapter002.tablecyc2.text230" :checked="chapter001.tablecyc2.text230" />3 </td> <td> @@ -2231,7 +2231,7 @@ @change="changecyc2($event, 'text81')" type="checkbox" value="4" :checked="chapter002.tablecyc2.text231" :checked="chapter001.tablecyc2.text231" />4 </td> <td> @@ -2239,7 +2239,7 @@ @change="changecyc2($event, 'text82')" type="checkbox" value="5" :checked="chapter002.tablecyc2.text232" :checked="chapter001.tablecyc2.text232" />5 </td> </tr> @@ -2251,7 +2251,7 @@ </div> <div class="score" v-if="isShowScore2"> 您的得分: <span style="color: red">{{ chapter002.score2 }}</span> <span style="color: red">{{ chapter001.score2 }}</span> </div> <div class="btn"> <span @click="submit(2)">提交</span> @@ -2272,7 +2272,7 @@ 人民教育家陶行知先生曾指出:“人生第一要事是康健,第二要事是康健,第三要事是康健。”<a id="w2" ></a ><a href="chapter002.html#m2"><sup>[2]</sup></a ><a href="chapter001.html#m2"><sup>[2]</sup></a >从生命的角度来看,每个人的生命都只有一次。相对于功名利禄而言,健康才是第一位的。如果没有健康,其他任何事情的意义就会大打折扣或失去意义。当下全球发生的新型冠状病毒肺炎疫情更加凸显出健康的重要。抗击病毒需要有较强的免疫力,健康的身体、健康的生活方式、科学的防控措施是战胜病毒的重要法宝。 </p> <p> @@ -2290,7 +2290,7 @@ 1.多维健康包括<input @change="changeAssess($event, 'text1')" maxlength="20" :value="chapter002.tkItem01.text1" :value="chapter001.tkItem01.text1" class="assess" type="text" /> @@ -2299,7 +2299,7 @@ 2.我打算按如下做法提升自己的健康水平<input @change="changeAssess($event, 'text2')" maxlength="20" :value="chapter002.tkItem01.text1" :value="chapter001.tkItem01.text1" class="assess" type="text" /> @@ -2308,11 +2308,11 @@ 3.依据世界卫生组织的十大健康标准,我做得好的方面有<input @change="changeAssess($event, 'text3')" maxlength="20" :value="chapter002.tkItem01.text1" :value="chapter001.tkItem01.text1" class="assess" type="text" />,有待改善的地方有<input :value="chapter002.tkItem01.text1" :value="chapter001.tkItem01.text1" @change="changeAssess($event, 'text4')" maxlength="20" class="assess" @@ -2462,8 +2462,8 @@ <p class="public-tips"> 请依据平衡膳食宝塔,为自己设计一周的营养膳食并实践。与同学互评,看看谁的更健康。 </p> <div v-if="chapter002.isShowXyx05"> <textarea rows="8" v-model="chapter002.textBybItem1"></textarea> <div v-if="chapter001.isShowXyx05"> <textarea rows="8" v-model="chapter001.textBybItem1"></textarea> </div> </div> <h5 id="e008">(四)坚持科学锻炼</h5> @@ -2503,7 +2503,7 @@ 请同学们查阅“适宜运动环境的选择”,并与同学讨论校园内哪些地方适宜锻炼 。 </div> <div class="xyx-text" v-if="chapter002.isShowXyx06"> <div class="xyx-text" v-if="chapter001.isShowXyx06"> <div class="xyx-title">适宜运动环境的选择</div> <p> 第一,最好选择户外地域空旷、空气新鲜且又安全的地方进行锻炼,但雾霾或空气污染 @@ -2529,7 +2529,7 @@ </div> <!-- <p> 请同学们<a id="w1"></a ><a href="chapter002.html#m1"><sup>[1]</sup></a ><a href="chapter001.html#m1"><sup>[1]</sup></a >查阅“健康概念的演变”。 </p> --> <!-- <p> @@ -2558,7 +2558,7 @@ <div class="public-tips"> 请同学们学习“个人运动处方制定”相关内容,根据自身情况设计专属运动处方,并向老师汇报。 </div> <div class="xyx-text" v-if="chapter002.isShowXyx07"> <div class="xyx-text" v-if="chapter001.isShowXyx07"> <div class="xyx-title">个人运动处方的制定</div> <p> @@ -2708,7 +2708,7 @@ <div class="public-tips"> 请同学们学习“一评二控三减四健——全民健康生活方式行动”。 </div> <div class="xyx-text" v-if="chapter002.isShowXyx08"> <div class="xyx-text" v-if="chapter001.isShowXyx08"> <div class="xyx-title"> 一评二控三减四健——全民健康生活方式行动 </div> @@ -2754,7 +2754,7 @@ <br /> <div class="public-tips">请同学们学习“健康素养66条”。</div> <!-- <p></p> --> <div class="xyx-text" v-if="chapter002.isShowXyx09"> <div class="xyx-text" v-if="chapter001.isShowXyx09"> <div class="xyx-title">健康素养66条</div> <p class="xyx-tips">一、基本知识和理念(25 条)</p> <p> @@ -2950,7 +2950,7 @@ <div class="public-tips"> 请同学们学习“健康行动计划的制订与实施”。 </div> <div class="xyx-text" v-if="chapter002.isShowXyx10"> <div class="xyx-text" v-if="chapter001.isShowXyx10"> <div class="xyx-title">健康行动计划的制订与实施</div> <p class="xyx-fu-ss">1. 明确现状</p> <p> @@ -3009,14 +3009,14 @@ class="finishiText" maxlength="1" type="text" :value="chapter002.tablexyx02.text1" :value="chapter001.tablexyx02.text1" @change="changeFinish($event, 'text1')" /> </td> <td> <textarea class="textInputarea" :value="chapter002.tablexyx02.text2" :value="chapter001.tablexyx02.text2" @input="changeFinish($event, 'text2')" /> </td> @@ -3028,7 +3028,7 @@ class="finishiText" maxlength="1" type="text" :value="chapter002.tablexyx02.text3" :value="chapter001.tablexyx02.text3" @change="changeFinish($event, 'text3')" /> </td> @@ -3036,7 +3036,7 @@ <textarea class="textInputarea" rows="2" v-model="chapter002.tablexyx02.text4" v-model="chapter001.tablexyx02.text4" @input="changeFinish($event, 'text4')" /> </td> @@ -3048,7 +3048,7 @@ class="finishiText" maxlength="1" type="text" :value="chapter002.tablexyx02.text5" :value="chapter001.tablexyx02.text5" @change="changeFinish($event, 'text5')" /> </td> @@ -3056,7 +3056,7 @@ <textarea class="textInputarea" rows="2" v-model="chapter002.tablexyx02.text6" v-model="chapter001.tablexyx02.text6" @input="changeFinish($event, 'text6')" /> </td> @@ -3068,7 +3068,7 @@ class="finishiText" maxlength="1" type="text" :value="chapter002.tablexyx02.text7" :value="chapter001.tablexyx02.text7" @change="changeFinish($event, 'text7')" /> </td> @@ -3076,7 +3076,7 @@ <textarea class="textInputarea" rows="2" v-model="chapter002.tablexyx02.text8" v-model="chapter001.tablexyx02.text8" @input="changeFinish($event, 'text8')" /> </td> @@ -3088,7 +3088,7 @@ class="finishiText" maxlength="1" type="text" :value="chapter002.tablexyx02.text9" :value="chapter001.tablexyx02.text9" @change="changeFinish($event, 'text9')" /> </td> @@ -3096,7 +3096,7 @@ <textarea class="textInputarea" rows="2" v-model="chapter002.tablexyx02.text10" v-model="chapter001.tablexyx02.text10" @input="changeFinish($event, 'text10')" /> </td> @@ -3118,19 +3118,19 @@ 1.结合情境导入中的案例,谈一谈我们应该吸取哪些教训。 </p> <div class="xspj-text"> <textarea rows="6" v-model="chapter002.textXxpj01"></textarea> <textarea rows="6" v-model="chapter001.textXxpj01"></textarea> </div> <p class="block"> 2.结合自己的实际情况和前面的运动处方,制订一份运动计划,进行为期1个月、每天至少40分钟的运动打卡活动,并根据实施情况进行自我评价。 </p> <div class="xspj-text"> <textarea rows="6" v-model="chapter002.textXxpj02"></textarea> <textarea rows="6" v-model="chapter001.textXxpj02"></textarea> </div> <p class="block"> 3.对照中职学生健康生活方式中的具体内容与要求,评价一下自己还有哪些做得不够好,运用在课程平台中学习到的健康行动计划的制订与实施方法,制订自己的健康行动计划并实施,尽快养成自己的健康生活方式。 </p> <div class="xspj-text"> <textarea rows="6" v-model="chapter002.textXxpj03"></textarea> <textarea rows="6" v-model="chapter001.textXxpj03"></textarea> </div> </div> <h3 id="c003">专题三 提高心理健康的水平</h3> @@ -3204,7 +3204,7 @@ isShowScore2: false, isShowScore3: false, isShowScore4: false, chapter002: { chapter001: { isShowXyx01: true, isShowXyx02: true, isShowXyx03: true, @@ -3237,9 +3237,9 @@ }; }, created() { const localData = JSON.parse(localStorage.getItem("chapter002")); const localData = JSON.parse(localStorage.getItem("chapter001")); if (localData) { this.chapter002 = { ...Object.assign(this.chapter002, localData) }; this.chapter001 = { ...Object.assign(this.chapter001, localData) }; } }, methods: { @@ -3255,47 +3255,47 @@ this.$emit("eventPublic", data); }, activityXyx1() { this.chapter002.isShowXyx01 = !this.chapter002.isShowXyx01; this.chapter001.isShowXyx01 = !this.chapter001.isShowXyx01; }, activityXyx2() { this.chapter002.isShowXyx02 = !this.chapter002.isShowXyx02; this.chapter001.isShowXyx02 = !this.chapter001.isShowXyx02; }, activityXyx3() { this.chapter002.isShowXyx03 = !this.chapter002.isShowXyx03; this.chapter001.isShowXyx03 = !this.chapter001.isShowXyx03; }, activityXyx4() { this.chapter002.isShowXyx04 = !this.chapter002.isShowXyx04; this.chapter001.isShowXyx04 = !this.chapter001.isShowXyx04; }, activityXyx5() { this.chapter002.isShowXyx05 = !this.chapter002.isShowXyx05; this.chapter001.isShowXyx05 = !this.chapter001.isShowXyx05; }, activityXyx6() { this.chapter002.isShowXyx06 = !this.chapter002.isShowXyx06; this.chapter001.isShowXyx06 = !this.chapter001.isShowXyx06; }, activityXyx7() { this.chapter002.isShowXyx07 = !this.chapter002.isShowXyx07; this.chapter001.isShowXyx07 = !this.chapter001.isShowXyx07; }, activityXyx8() { this.chapter002.isShowXyx08 = !this.chapter002.isShowXyx08; this.chapter001.isShowXyx08 = !this.chapter001.isShowXyx08; }, activityXyx9() { this.chapter002.isShowXyx09 = !this.chapter002.isShowXyx09; this.chapter001.isShowXyx09 = !this.chapter001.isShowXyx09; }, activityXyx10() { this.chapter002.isShowXyx10 = !this.chapter002.isShowXyx10; this.chapter001.isShowXyx10 = !this.chapter001.isShowXyx10; }, activityXyx11() { this.chapter002.isShowXyx11 = !this.chapter002.isShowXyx11; this.chapter001.isShowXyx11 = !this.chapter001.isShowXyx11; }, submit(val) { if (val == 1) this.isShowScore1 = true; if (val == 2) this.isShowScore2 = true; if (val == 3) this.isShowScore3 = true; if (val == 4) this.isShowScore4 = true; localStorage.setItem("chapter002", JSON.stringify(this.chapter002)); localStorage.setItem("chapter001", JSON.stringify(this.chapter001)); }, resetData(val) { const localData = JSON.parse(localStorage.getItem("chapter002")); const localData = JSON.parse(localStorage.getItem("chapter001")); if (localData) { if (val == 1) localData.tablexyx1 = {}; this.isShowScore1 = false; @@ -3309,92 +3309,92 @@ if (val == 4) localData.tablecyc4 = {}; this.isShowScore4 = false; localData.score4 = 0; this.chapter002 = { ...Object.assign(this.chapter002, localData) }; this.chapter001 = { ...Object.assign(this.chapter001, localData) }; } localStorage.setItem("chapter002", JSON.stringify(this.chapter002)); localStorage.setItem("chapter001", JSON.stringify(this.chapter001)); }, changeBox(e, val) { this.isShowScore1 = false; this.chapter002.tablexyx1[val] = e.target.checked; this.chapter001.tablexyx1[val] = e.target.checked; if (e.target.checked) { this.chapter002.score1 += Number(e.target.value); this.chapter001.score1 += Number(e.target.value); } else { if (this.chapter002.score1 == 0) { if (this.chapter001.score1 == 0) { return false; } if (!e.target.checked) { this.chapter002.score1 -= Number(e.target.value); this.chapter001.score1 -= Number(e.target.value); } } localStorage.setItem("chapter002", JSON.stringify(this.chapter002)); localStorage.setItem("chapter001", JSON.stringify(this.chapter001)); }, changeByb(e, val) { this.chapter002.tablebyb1[val] = e.target.checked; localStorage.setItem("chapter002", JSON.stringify(this.chapter002)); this.chapter001.tablebyb1[val] = e.target.checked; localStorage.setItem("chapter001", JSON.stringify(this.chapter001)); }, changecyc2(e, val) { this.isShowScore2 = false; this.chapter002.tablecyc2[val] = e.target.checked; this.chapter001.tablecyc2[val] = e.target.checked; if (e.target.checked) { this.chapter002.score2 += Number(e.target.value); this.chapter001.score2 += Number(e.target.value); } else { if (this.chapter002.score2 == 0) { if (this.chapter001.score2 == 0) { return false; } if (!e.target.checked) { this.chapter002.score2 -= Number(e.target.value); this.chapter001.score2 -= Number(e.target.value); } } localStorage.setItem("chapter002", JSON.stringify(this.chapter002)); localStorage.setItem("chapter001", JSON.stringify(this.chapter001)); }, changecyc3(e, val) { this.isShowScore3 = false; this.chapter002.tablecyc3[val] = e.target.checked; this.chapter001.tablecyc3[val] = e.target.checked; if (e.target.checked) { this.chapter002.score3 += Number(e.target.value); this.chapter001.score3 += Number(e.target.value); } else { if (this.chapter002.score3 == 0) { if (this.chapter001.score3 == 0) { return false; } if (!e.target.checked) { this.chapter002.score3 -= Number(e.target.value); this.chapter001.score3 -= Number(e.target.value); } } localStorage.setItem("chapter002", JSON.stringify(this.chapter002)); localStorage.setItem("chapter001", JSON.stringify(this.chapter001)); }, changecyc4(e, val, type) { this.isShowScore4 = false; this.chapter002.tablecyc4[val] = e.target.checked; this.chapter001.tablecyc4[val] = e.target.checked; if (e.target.checked && type != "isReverse") { this.chapter002.score4 += Number(e.target.value); this.chapter001.score4 += Number(e.target.value); } else if (e.target.checked && type == "isReverse") { let s = 5 - Number(e.target.value); this.chapter002.score4 += s; this.chapter001.score4 += s; } else { if (this.chapter002.score4 == 0) { if (this.chapter001.score4 == 0) { return false; } if (!e.target.checked) { this.chapter002.score4 -= Number(e.target.value); this.chapter001.score4 -= Number(e.target.value); } } localStorage.setItem("chapter002", JSON.stringify(this.chapter002)); localStorage.setItem("chapter001", JSON.stringify(this.chapter001)); }, changecyc5(e, val) { this.chapter002.tablecyc5[val] = e.target.checked; localStorage.setItem("chapter002", JSON.stringify(this.chapter002)); this.chapter001.tablecyc5[val] = e.target.checked; localStorage.setItem("chapter001", JSON.stringify(this.chapter001)); }, changeAssess(e, val) { this.chapter002.tkItem01[val] = e.target.value; localStorage.setItem("chapter002", JSON.stringify(this.chapter002)); this.chapter001.tkItem01[val] = e.target.value; localStorage.setItem("chapter001", JSON.stringify(this.chapter001)); }, changeAssess02(e, val) { this.chapter002.tkItem02[val] = e.target.value; localStorage.setItem("chapter002", JSON.stringify(this.chapter002)); this.chapter001.tkItem02[val] = e.target.value; localStorage.setItem("chapter001", JSON.stringify(this.chapter001)); }, changeFinish(e, val) { this.chapter002.tablexyx02[val] = e.target.value; localStorage.setItem("chapter002", JSON.stringify(this.chapter002)); this.chapter001.tablexyx02[val] = e.target.value; localStorage.setItem("chapter001", JSON.stringify(this.chapter001)); }, }, }; src/books/sportsAndHealth/view/components/index.vue
@@ -101,6 +101,7 @@ </template> <script> import Vue from "vue"; import front001 from "./front001"; import ChapterOne from "./chapter001"; import ChapterTwo from "./testDynaicTable"; @@ -153,11 +154,6 @@ return this.$store.state.qiankun.scale / 100; }, }, provide() { return { changeQuestionData: this.changeQuestionData, }; }, watch: { showCatalogList: { handler(newVal, oldVal) { @@ -178,11 +174,19 @@ }, }, loadPageList: { handler() { handler(newVal, oldVal) { setTimeout(() => { this.initSwiper(); this.initViewer(); }, 200); }, }, pageZoom: { handler(newVal, oldVal) { const scrollBox = ( this.container ? this.container : document ).querySelector(".page-main"); scrollBox.scrollTop = (scrollBox.scrollTop / oldVal) * newVal; }, }, }, @@ -245,12 +249,12 @@ // 测试页面跳转 // setTimeout(() => { // this.gotoPage(1, 15); // this.gotoPage(1,10); // setTimeout(() => { // this.renderSign("Note", { // this.renderSign("Highlight", { // id: "2ACA9359", // txt: "营养素和热量,才能", // page: "100", // txt: "题一学习主题一 运动", // page: "10", // type: "Highlight", // color: "#F5E12A" // }); @@ -259,13 +263,48 @@ // ids: ["2ACA9359"] // }); // }, 2000); // }, 1000); // }, 1000); // }, 5000); // const pageDom = (this.container ? this.container : document) // .querySelector("#app") // .querySelectorAll(".page-box"); // 检索 // console.log(this.searchTextByPage("保护内脏器官"), "searchTextByPage"); // 检索跳转 // this.searchItemLocation({ // catalog: 2, // page: 10, // txt: " 运动系统是由骨、骨连结和骨骼肌三部分组成的。全身的骨通过骨连结组成人体骨骼(见图1-1)。骨骼是人体的支架,具有保护内脏器官、供肌肉附着和作为肌肉运动的杠杆等作用。在神经系统的支配下,肌肉收缩牵动所附着的骨绕着关节转动,使身体产生各种动作。所以,运动系统具有运动、支持和保护等功能,幼年时期的骨骼还具有造血功能。 ", // txtIndex: 57 // }); // }, 500); }, methods: { swdtChange(data) { if (this.$store.state.qiankun && this.$store.state.qiankun.chooseWords) { this.$store.state.qiankun.chooseWords({ type: data.type, data: data.data, }); } }, changeDomViewer() { this.initViewer(); }, // setZoom1() { // let scale = this.$store.state.qiankun.scale + 10; // const scrollBox = ( // this.container ? this.container : document // ).querySelector(".page-main"); // this.$store.commit("setZoom", scale); // }, // setZoom2() { // let scale = this.$store.state.qiankun.scale - 10; // const scrollBox = ( // this.container ? this.container : document // ).querySelector(".page-main"); // this.$store.commit("setZoom", scale); // }, // 滚动监听 scrollFun(event) { // 判断向上滚动还是向下滚动 @@ -415,7 +454,6 @@ } } }, // 删除标记渲染 delSign({ ids, type }) { if (ids && ids.length) { @@ -443,7 +481,6 @@ } } }, initObservation() { const sections = ( this.container ? this.container : document @@ -472,7 +509,6 @@ } }); }, initThemeColor() { // 获取各种需要主题色的节点 const colorDom = ( @@ -552,7 +588,15 @@ } }); }, getParentWithClass(element, className) { console.log(element, className, "element, className"); while (element.parentElement) { element = element.parentElement; if (element.classList.contains(className)) { return element; } } }, pageChangeCallback(entries, observer) { //entries:代表观察到的目标元素的集合。 observer:代表观察者对象。 entries.forEach((entry) => { @@ -584,7 +628,6 @@ } }); }, loadPageCallback(entries, observer) { entries.forEach(async (entry) => { if (entry.isIntersecting) { @@ -621,7 +664,6 @@ } } } // 渲染这一页的标记 for (const key in this.renderSignMap) { if (this.renderSignMap[key][page]) { @@ -671,7 +713,6 @@ } }); }, initSwiper() { const doms = ( this.container ? this.container : document @@ -751,7 +792,6 @@ }); } }, initViewer() { const doms = ( this.container ? this.container : document @@ -768,16 +808,6 @@ }); } }, swdtChange(data) { if (this.$store.state.qiankun && this.$store.state.qiankun.chooseWords) { this.$store.state.qiankun.chooseWords({ type: data.type, data: data.data, }); } }, // 根据关键字全文检索 searchTextByPage(keyword) { const searchResult = []; @@ -788,21 +818,6 @@ ChapterOne, ChapterTwo, ChapterThree, // ChapterFour, // ChapterFive, // chapterSix, // chapterSeven, // chapterEight, // chapterNine, // chapter010, // chapter011, // chapter012, // chapter013, // chapter014, // chapter015, // chapter016, // chapter017, // chapter018, }; // 遍历所有章节文件 for (const key in pageData) { @@ -894,10 +909,9 @@ } } // 输出搜索结果 // console.log(searchResult); console.log(searchResult); return searchResult; }, // 根据检索结果跳转对应位置并高亮 searchItemLocation(data) { // 记录高亮信息 src/books/sportsAndHealth/view/components/testPp.vue
@@ -1458,14 +1458,16 @@ </div> <div> <el-dialog size="small" :title="pdfTitle" :visible.sync="dialogVisible" width="60vw" :before-close="handleClose" append-to-body :show-close="false" class="custom-dialog" > <div slot="title" class="header_title"> <span>{{ pdfTitle }}</span> <span @click="closeDialog"> x </span> </div> <div class="pdfModal" v-if="dialogVisible"> <preView :isClear="dialogVisible" :md5="p_md5"></preView> </div> @@ -1517,7 +1519,7 @@ name: "3 模块一(一)单项技术学练 平击发球", }, 4: { md5: "515f3dd2554dbdea779c59800a8da6b2", md5: "515f3dd2554dbdea779c59800a8da6b3", name: "4 模块一(二)基本战术学练 接平击球抢攻", }, 5: { @@ -1684,8 +1686,8 @@ } }, methods: { handleClose(done) { done(); closeDialog() { this.dialogVisible = false; }, toUrl(val) { if (val) { src/books/sportsAndHealth/view/components/text.html
@@ -1,4 +1,5 @@ <div class="bodystyle"> <!-- 以上为样章部分 --> <div class="page-box" page="22"> <div v-if="showPageList.indexOf(22) > -1"> <div class="bodystyle"> @@ -33,7 +34,7 @@ </div> <br /> <div class="public-tips">请同学们参阅“马斯洛的心理健康标准”。</div> <div v-if="chapter002.isShowXyx01"> <div v-if="chapter001.isShowXyx01"> <div class="xyx-title">马斯洛的心理健康标准</div> <ul class="xyx-ul"> <li> @@ -85,7 +86,7 @@ </div> <!-- <p> 请同学们<a id="w1"></a ><a href="chapter002.html#m1"><sup>[1]</sup></a ><a href="chapter001.html#m1"><sup>[1]</sup></a >查阅“健康概念的演变”。 </p> --> </div> @@ -134,7 +135,7 @@ </div> <br /> <div class="public-tips">请同学们进行“社会支持量表”的测试。</div> <div v-if="chapter002.isShowXyx02"> <div v-if="chapter001.isShowXyx02"> <div class="xyx-title">社会支持量表</div> <div class="xyx-text"> 以下是一份社会支持量表,可以试着测一测、分析分析。 @@ -159,7 +160,7 @@ @change="changecyc3($event, 'text2')" type="checkbox" value="1" :checked="chapter002.tablecyc3.text2" :checked="chapter001.tablecyc3.text2" />1 </td> <td> @@ -167,7 +168,7 @@ @change="changecyc3($event, 'text3')" type="checkbox" value="2" :checked="chapter002.tablecyc3.text3" :checked="chapter001.tablecyc3.text3" />2 </td> <td> @@ -175,7 +176,7 @@ @change="changecyc3($event, 'text4')" type="checkbox" value="3" :checked="chapter002.tablecyc3.text4" :checked="chapter001.tablecyc3.text4" />3 </td> <td> @@ -183,7 +184,7 @@ @change="changecyc3($event, 'text5')" type="checkbox" value="4" :checked="chapter002.tablecyc3.text5" :checked="chapter001.tablecyc3.text5" />4 </td> <td> @@ -191,7 +192,7 @@ @change="changecyc3($event, 'text6')" type="checkbox" value="5" :checked="chapter002.tablecyc3.text6" :checked="chapter001.tablecyc3.text6" />5 </td> </tr> @@ -204,7 +205,7 @@ @change="changecyc3($event, 'text83')" type="checkbox" value="1" :checked="chapter002.tablecyc3.text83" :checked="chapter001.tablecyc3.text83" />1 </td> <td> @@ -212,7 +213,7 @@ @change="changecyc3($event, 'text84')" type="checkbox" value="2" :checked="chapter002.tablecyc3.text84" :checked="chapter001.tablecyc3.text84" />2 </td> <td> @@ -220,7 +221,7 @@ @change="changecyc3($event, 'text85')" type="checkbox" value="3" :checked="chapter002.tablecyc3.text85" :checked="chapter001.tablecyc3.text85" />3 </td> <td> @@ -228,7 +229,7 @@ @change="changecyc3($event, 'text86')" type="checkbox" value="4" :checked="chapter002.tablecyc3.text86" :checked="chapter001.tablecyc3.text86" />4 </td> <td> @@ -236,7 +237,7 @@ @change="changecyc3($event, 'text87')" type="checkbox" value="5" :checked="chapter002.tablecyc3.text87" :checked="chapter001.tablecyc3.text87" />5 </td> </tr> @@ -249,7 +250,7 @@ @change="changecyc3($event, 'text89')" type="checkbox" value="1" :checked="chapter002.tablecyc3.text89" :checked="chapter001.tablecyc3.text89" />1 </td> <td> @@ -257,7 +258,7 @@ @change="changecyc3($event, 'text90')" type="checkbox" value="2" :checked="chapter002.tablecyc3.text90" :checked="chapter001.tablecyc3.text90" />2 </td> <td> @@ -265,7 +266,7 @@ @change="changecyc3($event, 'text92')" type="checkbox" value="3" :checked="chapter002.tablecyc3.text92" :checked="chapter001.tablecyc3.text92" />3 </td> <td> @@ -273,7 +274,7 @@ @change="changecyc3($event, 'text93')" type="checkbox" value="4" :checked="chapter002.tablecyc3.text93" :checked="chapter001.tablecyc3.text93" />4 </td> <td> @@ -281,7 +282,7 @@ @change="changecyc3($event, 'text94')" type="checkbox" value="5" :checked="chapter002.tablecyc3.text94" :checked="chapter001.tablecyc3.text94" />5 </td> </tr> @@ -294,7 +295,7 @@ @change="changecyc3($event, 'text96')" type="checkbox" value="1" :checked="chapter002.tablecyc3.text96" :checked="chapter001.tablecyc3.text96" />1 </td> <td> @@ -302,7 +303,7 @@ @change="changecyc3($event, 'text97')" type="checkbox" value="2" :checked="chapter002.tablecyc3.text97" :checked="chapter001.tablecyc3.text97" />2 </td> <td> @@ -310,7 +311,7 @@ @change="changecyc3($event, 'text98')" type="checkbox" value="3" :checked="chapter002.tablecyc3.text98" :checked="chapter001.tablecyc3.text98" />3 </td> <td> @@ -318,7 +319,7 @@ @change="changecyc3($event, 'text99')" type="checkbox" value="4" :checked="chapter002.tablecyc3.text99" :checked="chapter001.tablecyc3.text99" />4 </td> <td> @@ -326,7 +327,7 @@ @change="changecyc3($event, 'text100')" type="checkbox" value="5" :checked="chapter002.tablecyc3.text100" :checked="chapter001.tablecyc3.text100" />5 </td> </tr> @@ -339,7 +340,7 @@ @change="changecyc3($event, 'text102')" type="checkbox" value="1" :checked="chapter002.tablecyc3.text102" :checked="chapter001.tablecyc3.text102" />1 </td> <td> @@ -347,7 +348,7 @@ @change="changecyc3($event, 'text103')" type="checkbox" value="2" :checked="chapter002.tablecyc3.text103" :checked="chapter001.tablecyc3.text103" />2 </td> <td> @@ -355,7 +356,7 @@ @change="changecyc3($event, 'text104')" type="checkbox" value="3" :checked="chapter002.tablecyc3.text104" :checked="chapter001.tablecyc3.text104" />3 </td> <td> @@ -363,7 +364,7 @@ @change="changecyc3($event, 'text105')" type="checkbox" value="4" :checked="chapter002.tablecyc3.text105" :checked="chapter001.tablecyc3.text105" />4 </td> <td> @@ -371,7 +372,7 @@ @change="changecyc3($event, 'text106')" type="checkbox" value="5" :checked="chapter002.tablecyc3.text106" :checked="chapter001.tablecyc3.text106" />5 </td> </tr> @@ -384,7 +385,7 @@ @change="changecyc3($event, 'text108')" type="checkbox" value="1" :checked="chapter002.tablecyc3.text108" :checked="chapter001.tablecyc3.text108" />1 </td> <td> @@ -392,7 +393,7 @@ @change="changecyc3($event, 'text109')" type="checkbox" value="2" :checked="chapter002.tablecyc3.text109" :checked="chapter001.tablecyc3.text109" />2 </td> <td> @@ -400,7 +401,7 @@ @change="changecyc3($event, 'text110')" type="checkbox" value="3" :checked="chapter002.tablecyc3.text110" :checked="chapter001.tablecyc3.text110" />3 </td> <td> @@ -408,7 +409,7 @@ @change="changecyc3($event, 'text111')" type="checkbox" value="4" :checked="chapter002.tablecyc3.text111" :checked="chapter001.tablecyc3.text111" />4 </td> <td> @@ -416,7 +417,7 @@ @change="changecyc3($event, 'text112')" type="checkbox" value="5" :checked="chapter002.tablecyc3.text112" :checked="chapter001.tablecyc3.text112" />5 </td> </tr> @@ -429,7 +430,7 @@ @change="changecyc3($event, 'text114')" type="checkbox" value="1" :checked="chapter002.tablecyc3.text114" :checked="chapter001.tablecyc3.text114" />1 </td> <td> @@ -437,7 +438,7 @@ @change="changecyc3($event, 'text115')" type="checkbox" value="2" :checked="chapter002.tablecyc3.text115" :checked="chapter001.tablecyc3.text115" />2 </td> <td> @@ -445,7 +446,7 @@ @change="changecyc3($event, 'text116')" type="checkbox" value="3" :checked="chapter002.tablecyc3.text116" :checked="chapter001.tablecyc3.text116" />3 </td> <td> @@ -453,7 +454,7 @@ @change="changecyc3($event, 'text117')" type="checkbox" value="4" :checked="chapter002.tablecyc3.text117" :checked="chapter001.tablecyc3.text117" />4 </td> <td> @@ -461,7 +462,7 @@ @change="changecyc3($event, 'text118')" type="checkbox" value="5" :checked="chapter002.tablecyc3.text118" :checked="chapter001.tablecyc3.text118" />5 </td> </tr> @@ -474,7 +475,7 @@ @change="changecyc3($event, 'text120')" type="checkbox" value="1" :checked="chapter002.tablecyc3.text120" :checked="chapter001.tablecyc3.text120" />1 </td> <td> @@ -482,7 +483,7 @@ @change="changecyc3($event, 'text122')" type="checkbox" value="2" :checked="chapter002.tablecyc3.text122" :checked="chapter001.tablecyc3.text122" />2 </td> <td> @@ -490,7 +491,7 @@ @change="changecyc3($event, 'text123')" type="checkbox" value="3" :checked="chapter002.tablecyc3.text123" :checked="chapter001.tablecyc3.text123" />3 </td> <td> @@ -498,7 +499,7 @@ @change="changecyc3($event, 'text121')" type="checkbox" value="4" :checked="chapter002.tablecyc3.text121" :checked="chapter001.tablecyc3.text121" />4 </td> <td> @@ -506,7 +507,7 @@ @change="changecyc3($event, 'text124')" type="checkbox" value="5" :checked="chapter002.tablecyc3.text124" :checked="chapter001.tablecyc3.text124" />5 </td> </tr> @@ -519,7 +520,7 @@ @change="changecyc3($event, 'text126')" type="checkbox" value="1" :checked="chapter002.tablecyc3.text126" :checked="chapter001.tablecyc3.text126" />1 </td> <td> @@ -527,7 +528,7 @@ @change="changecyc3($event, 'text127')" type="checkbox" value="2" :checked="chapter002.tablecyc3.text127" :checked="chapter001.tablecyc3.text127" />2 </td> <td> @@ -535,7 +536,7 @@ @change="changecyc3($event, 'text128')" type="checkbox" value="3" :checked="chapter002.tablecyc3.text128" :checked="chapter001.tablecyc3.text128" />3 </td> <td> @@ -543,7 +544,7 @@ @change="changecyc3($event, 'text129')" type="checkbox" value="4" :checked="chapter002.tablecyc3.text129" :checked="chapter001.tablecyc3.text129" />4 </td> <td> @@ -551,7 +552,7 @@ @change="changecyc3($event, 'text130')" type="checkbox" value="5" :checked="chapter002.tablecyc3.text130" :checked="chapter001.tablecyc3.text130" />5 </td> </tr> @@ -564,7 +565,7 @@ @change="changecyc3($event, 'text132')" type="checkbox" value="1" :checked="chapter002.tablecyc3.text132" :checked="chapter001.tablecyc3.text132" />1 </td> <td> @@ -572,7 +573,7 @@ @change="changecyc3($event, 'text133')" type="checkbox" value="2" :checked="chapter002.tablecyc3.text133" :checked="chapter001.tablecyc3.text133" />2 </td> <td> @@ -580,7 +581,7 @@ @change="changecyc3($event, 'text134')" type="checkbox" value="3" :checked="chapter002.tablecyc3.text134" :checked="chapter001.tablecyc3.text134" />3 </td> <td> @@ -588,7 +589,7 @@ @change="changecyc3($event, 'text135')" type="checkbox" value="4" :checked="chapter002.tablecyc3.text135" :checked="chapter001.tablecyc3.text135" />4 </td> <td> @@ -596,7 +597,7 @@ @change="changecyc3($event, 'text136')" type="checkbox" value="5" :checked="chapter002.tablecyc3.text136" :checked="chapter001.tablecyc3.text136" />5 </td> </tr> @@ -609,7 +610,7 @@ @change="changecyc3($event, 'text138')" type="checkbox" value="1" :checked="chapter002.tablecyc3.text138" :checked="chapter001.tablecyc3.text138" />1 </td> <td> @@ -617,7 +618,7 @@ @change="changecyc3($event, 'text139')" type="checkbox" value="2" :checked="chapter002.tablecyc3.text139" :checked="chapter001.tablecyc3.text139" />2 </td> <td> @@ -625,7 +626,7 @@ @change="changecyc3($event, 'text140')" type="checkbox" value="3" :checked="chapter002.tablecyc3.text140" :checked="chapter001.tablecyc3.text140" />3 </td> <td> @@ -633,7 +634,7 @@ @change="changecyc3($event, 'text141')" type="checkbox" value="4" :checked="chapter002.tablecyc3.text141" :checked="chapter001.tablecyc3.text141" />4 </td> <td> @@ -641,7 +642,7 @@ @change="changecyc3($event, 'text142')" type="checkbox" value="5" :checked="chapter002.tablecyc3.text142" :checked="chapter001.tablecyc3.text142" />5 </td> </tr> @@ -654,7 +655,7 @@ @change="changecyc3($event, 'text8')" type="checkbox" value="1" :checked="chapter002.tablecyc3.text8" :checked="chapter001.tablecyc3.text8" />1 </td> <td> @@ -662,7 +663,7 @@ @change="changecyc3($event, 'text9')" type="checkbox" value="2" :checked="chapter002.tablecyc3.text9" :checked="chapter001.tablecyc3.text9" />2 </td> <td> @@ -670,7 +671,7 @@ @change="changecyc3($event, 'text10')" type="checkbox" value="3" :checked="chapter002.tablecyc3.text10" :checked="chapter001.tablecyc3.text10" />3 </td> <td> @@ -678,7 +679,7 @@ @change="changecyc3($event, 'text11')" type="checkbox" value="4" :checked="chapter002.tablecyc3.text11" :checked="chapter001.tablecyc3.text11" />4 </td> <td> @@ -686,7 +687,7 @@ @change="changecyc3($event, 'text12')" type="checkbox" value="5" :checked="chapter002.tablecyc3.text12" :checked="chapter001.tablecyc3.text12" />5 </td> </tr> @@ -699,7 +700,7 @@ @change="changecyc3($event, 'text14')" type="checkbox" value="1" :checked="chapter002.tablecyc3.text14" :checked="chapter001.tablecyc3.text14" />1 </td> <td> @@ -707,7 +708,7 @@ @change="changecyc3($event, 'text15')" type="checkbox" value="2" :checked="chapter002.tablecyc3.text15" :checked="chapter001.tablecyc3.text15" />2 </td> <td> @@ -715,7 +716,7 @@ @change="changecyc3($event, 'text16')" type="checkbox" value="3" :checked="chapter002.tablecyc3.text16" :checked="chapter001.tablecyc3.text16" />3 </td> <td> @@ -723,7 +724,7 @@ @change="changecyc3($event, 'text17')" type="checkbox" value="4" :checked="chapter002.tablecyc3.text17" :checked="chapter001.tablecyc3.text17" />4 </td> <td> @@ -731,7 +732,7 @@ @change="changecyc3($event, 'text18')" type="checkbox" value="5" :checked="chapter002.tablecyc3.text18" :checked="chapter001.tablecyc3.text18" />5 </td> </tr> @@ -744,7 +745,7 @@ @change="changecyc3($event, 'text20')" type="checkbox" value="1" :checked="chapter002.tablecyc3.text20" :checked="chapter001.tablecyc3.text20" />1 </td> <td> @@ -752,7 +753,7 @@ @change="changecyc3($event, 'text21')" type="checkbox" value="2" :checked="chapter002.tablecyc3.text21" :checked="chapter001.tablecyc3.text21" />2 </td> <td> @@ -760,7 +761,7 @@ @change="changecyc3($event, 'text22')" type="checkbox" value="3" :checked="chapter002.tablecyc3.text22" :checked="chapter001.tablecyc3.text22" />3 </td> <td> @@ -768,7 +769,7 @@ @change="changecyc3($event, 'text23')" type="checkbox" value="4" :checked="chapter002.tablecyc3.text23" :checked="chapter001.tablecyc3.text23" />4 </td> <td> @@ -776,7 +777,7 @@ @change="changecyc3($event, 'text24')" type="checkbox" value="5" :checked="chapter002.tablecyc3.text24" :checked="chapter001.tablecyc3.text24" />5 </td> </tr> @@ -789,7 +790,7 @@ @change="changecyc3($event, 'text26')" type="checkbox" value="1" :checked="chapter002.tablecyc3.text26" :checked="chapter001.tablecyc3.text26" />1 </td> <td> @@ -797,7 +798,7 @@ @change="changecyc3($event, 'text27')" type="checkbox" value="2" :checked="chapter002.tablecyc3.text27" :checked="chapter001.tablecyc3.text27" />2 </td> <td> @@ -805,7 +806,7 @@ @change="changecyc3($event, 'text28')" type="checkbox" value="3" :checked="chapter002.tablecyc3.text28" :checked="chapter001.tablecyc3.text28" />3 </td> <td> @@ -813,7 +814,7 @@ @change="changecyc3($event, 'text29')" type="checkbox" value="4" :checked="chapter002.tablecyc3.text29" :checked="chapter001.tablecyc3.text29" />4 </td> <td> @@ -821,7 +822,7 @@ @change="changecyc3($event, 'text30')" type="checkbox" value="5" :checked="chapter002.tablecyc3.text30" :checked="chapter001.tablecyc3.text30" />5 </td> </tr> @@ -834,7 +835,7 @@ @change="changecyc3($event, 'text32')" type="checkbox" value="1" :checked="chapter002.tablecyc3.text32" :checked="chapter001.tablecyc3.text32" />1 </td> <td> @@ -842,7 +843,7 @@ @change="changecyc3($event, 'text33')" type="checkbox" value="2" :checked="chapter002.tablecyc3.text33" :checked="chapter001.tablecyc3.text33" />2 </td> <td> @@ -850,7 +851,7 @@ @change="changecyc3($event, 'text34')" type="checkbox" value="3" :checked="chapter002.tablecyc3.text34" :checked="chapter001.tablecyc3.text34" />3 </td> <td> @@ -858,7 +859,7 @@ @change="changecyc3($event, 'text35')" type="checkbox" value="4" :checked="chapter002.tablecyc3.text35" :checked="chapter001.tablecyc3.text35" />4 </td> <td> @@ -866,7 +867,7 @@ @change="changecyc3($event, 'text36')" type="checkbox" value="5" :checked="chapter002.tablecyc3.text36" :checked="chapter001.tablecyc3.text36" />5 </td> </tr> @@ -879,7 +880,7 @@ @change="changecyc3($event, 'text38')" type="checkbox" value="1" :checked="chapter002.tablecyc3.text38" :checked="chapter001.tablecyc3.text38" />1 </td> <td> @@ -887,7 +888,7 @@ @change="changecyc3($event, 'text39')" type="checkbox" value="2" :checked="chapter002.tablecyc3.text39" :checked="chapter001.tablecyc3.text39" />2 </td> <td> @@ -895,7 +896,7 @@ @change="changecyc3($event, 'text40')" type="checkbox" value="3" :checked="chapter002.tablecyc3.text40" :checked="chapter001.tablecyc3.text40" />3 </td> <td> @@ -903,7 +904,7 @@ @change="changecyc3($event, 'text41')" type="checkbox" value="4" :checked="chapter002.tablecyc3.text41" :checked="chapter001.tablecyc3.text41" />4 </td> <td> @@ -911,7 +912,7 @@ @change="changecyc3($event, 'text42')" type="checkbox" value="5" :checked="chapter002.tablecyc3.text42" :checked="chapter001.tablecyc3.text42" />5 </td> </tr> @@ -923,7 +924,7 @@ </div> <div class="score" v-if="isShowScore3"> 您的得分: <span style="color: red">{{ chapter002.score3 }}</span> <span style="color: red">{{ chapter001.score3 }}</span> </div> <div class="btn"> <span @click="submit(3)">提交</span> @@ -964,7 +965,7 @@ </div> <br /> <div class="public-tips">请同学们进行“整体自尊量表”的测试。</div> <div v-if="chapter002.isShowXyx02"> <div v-if="chapter001.isShowXyx02"> <div class="xyx-title">整体自尊量表</div> <div class="xyx-text">请按下表对自己的自尊情况进行测评。</div> <div class="tablePublic"> @@ -988,7 +989,7 @@ @change="changecyc4($event, 'text2')" type="checkbox" value="1" :checked="chapter002.tablecyc4.text2" :checked="chapter001.tablecyc4.text2" />1 </td> <td> @@ -996,7 +997,7 @@ @change="changecyc4($event, 'text3')" type="checkbox" value="2" :checked="chapter002.tablecyc4.text3" :checked="chapter001.tablecyc4.text3" />2 </td> <td> @@ -1004,7 +1005,7 @@ @change="changecyc4($event, 'text4')" type="checkbox" value="3" :checked="chapter002.tablecyc4.text4" :checked="chapter001.tablecyc4.text4" />3 </td> <td> @@ -1012,7 +1013,7 @@ @change="changecyc4($event, 'text5')" type="checkbox" value="4" :checked="chapter002.tablecyc4.text5" :checked="chapter001.tablecyc4.text5" />4 </td> </tr> @@ -1025,7 +1026,7 @@ @change="changecyc4($event, 'text83')" type="checkbox" value="1" :checked="chapter002.tablecyc4.text83" :checked="chapter001.tablecyc4.text83" />1 </td> <td> @@ -1033,7 +1034,7 @@ @change="changecyc4($event, 'text84')" type="checkbox" value="2" :checked="chapter002.tablecyc4.text84" :checked="chapter001.tablecyc4.text84" />2 </td> <td> @@ -1041,7 +1042,7 @@ @change="changecyc4($event, 'text85')" type="checkbox" value="3" :checked="chapter002.tablecyc4.text85" :checked="chapter001.tablecyc4.text85" />3 </td> <td> @@ -1049,7 +1050,7 @@ @change="changecyc4($event, 'text86')" type="checkbox" value="4" :checked="chapter002.tablecyc4.text86" :checked="chapter001.tablecyc4.text86" />4 </td> </tr> @@ -1062,7 +1063,7 @@ @change="changecyc4($event, 'text89', 'isReverse')" type="checkbox" value="1" :checked="chapter002.tablecyc4.text89" :checked="chapter001.tablecyc4.text89" />1 </td> <td> @@ -1070,7 +1071,7 @@ @change="changecyc4($event, 'text90', 'isReverse')" type="checkbox" value="2" :checked="chapter002.tablecyc4.text90" :checked="chapter001.tablecyc4.text90" />2 </td> <td> @@ -1078,7 +1079,7 @@ @change="changecyc4($event, 'text92', 'isReverse')" type="checkbox" value="3" :checked="chapter002.tablecyc4.text92" :checked="chapter001.tablecyc4.text92" />3 </td> <td> @@ -1086,7 +1087,7 @@ @change="changecyc4($event, 'text93', 'isReverse')" type="checkbox" value="4" :checked="chapter002.tablecyc4.text93" :checked="chapter001.tablecyc4.text93" />4 </td> </tr> @@ -1099,7 +1100,7 @@ @change="changecyc4($event, 'text96')" type="checkbox" value="1" :checked="chapter002.tablecyc4.text96" :checked="chapter001.tablecyc4.text96" />1 </td> <td> @@ -1107,7 +1108,7 @@ @change="changecyc4($event, 'text97')" type="checkbox" value="2" :checked="chapter002.tablecyc4.text97" :checked="chapter001.tablecyc4.text97" />2 </td> <td> @@ -1115,7 +1116,7 @@ @change="changecyc4($event, 'text98')" type="checkbox" value="3" :checked="chapter002.tablecyc4.text98" :checked="chapter001.tablecyc4.text98" />3 </td> <td> @@ -1123,7 +1124,7 @@ @change="changecyc4($event, 'text99')" type="checkbox" value="4" :checked="chapter002.tablecyc4.text99" :checked="chapter001.tablecyc4.text99" />4 </td> </tr> @@ -1136,7 +1137,7 @@ @change="changecyc4($event, 'text102', 'isReverse')" type="checkbox" value="1" :checked="chapter002.tablecyc4.text102" :checked="chapter001.tablecyc4.text102" />1 </td> <td> @@ -1144,7 +1145,7 @@ @change="changecyc4($event, 'text103', 'isReverse')" type="checkbox" value="2" :checked="chapter002.tablecyc4.text103" :checked="chapter001.tablecyc4.text103" />2 </td> <td> @@ -1152,7 +1153,7 @@ @change="changecyc4($event, 'text104', 'isReverse')" type="checkbox" value="3" :checked="chapter002.tablecyc4.text104" :checked="chapter001.tablecyc4.text104" />3 </td> <td> @@ -1160,7 +1161,7 @@ @change="changecyc4($event, 'text105', 'isReverse')" type="checkbox" value="4" :checked="chapter002.tablecyc4.text105" :checked="chapter001.tablecyc4.text105" />4 </td> </tr> @@ -1171,7 +1172,7 @@ @change="changecyc4($event, 'text108')" type="checkbox" value="1" :checked="chapter002.tablecyc4.text108" :checked="chapter001.tablecyc4.text108" />1 </td> <td> @@ -1179,7 +1180,7 @@ @change="changecyc4($event, 'text109')" type="checkbox" value="2" :checked="chapter002.tablecyc4.text109" :checked="chapter001.tablecyc4.text109" />2 </td> <td> @@ -1187,7 +1188,7 @@ @change="changecyc4($event, 'text110')" type="checkbox" value="3" :checked="chapter002.tablecyc4.text110" :checked="chapter001.tablecyc4.text110" />3 </td> <td> @@ -1195,7 +1196,7 @@ @change="changecyc4($event, 'text111')" type="checkbox" value="4" :checked="chapter002.tablecyc4.text111" :checked="chapter001.tablecyc4.text111" />4 </td> </tr> @@ -1208,7 +1209,7 @@ @change="changecyc4($event, 'text114')" type="checkbox" value="1" :checked="chapter002.tablecyc4.text114" :checked="chapter001.tablecyc4.text114" />1 </td> <td> @@ -1216,7 +1217,7 @@ @change="changecyc4($event, 'text115')" type="checkbox" value="2" :checked="chapter002.tablecyc4.text115" :checked="chapter001.tablecyc4.text115" />2 </td> <td> @@ -1224,7 +1225,7 @@ @change="changecyc4($event, 'text116')" type="checkbox" value="3" :checked="chapter002.tablecyc4.text116" :checked="chapter001.tablecyc4.text116" />3 </td> <td> @@ -1232,7 +1233,7 @@ @change="changecyc4($event, 'text117')" type="checkbox" value="4" :checked="chapter002.tablecyc4.text117" :checked="chapter001.tablecyc4.text117" />4 </td> </tr> @@ -1245,7 +1246,7 @@ @change="changecyc4($event, 'text120', 'isReverse')" type="checkbox" value="1" :checked="chapter002.tablecyc4.text120" :checked="chapter001.tablecyc4.text120" />1 </td> <td> @@ -1253,7 +1254,7 @@ @change="changecyc4($event, 'text122', 'isReverse')" type="checkbox" value="2" :checked="chapter002.tablecyc4.text122" :checked="chapter001.tablecyc4.text122" />2 </td> <td> @@ -1261,7 +1262,7 @@ @change="changecyc4($event, 'text123', 'isReverse')" type="checkbox" value="3" :checked="chapter002.tablecyc4.text123" :checked="chapter001.tablecyc4.text123" />3 </td> <td> @@ -1269,7 +1270,7 @@ @change="changecyc4($event, 'text121', 'isReverse')" type="checkbox" value="4" :checked="chapter002.tablecyc4.text121" :checked="chapter001.tablecyc4.text121" />4 </td> </tr> @@ -1282,7 +1283,7 @@ @change="changecyc4($event, 'text126', 'isReverse')" type="checkbox" value="1" :checked="chapter002.tablecyc4.text126" :checked="chapter001.tablecyc4.text126" />1 </td> <td> @@ -1290,7 +1291,7 @@ @change="changecyc4($event, 'text127', 'isReverse')" type="checkbox" value="2" :checked="chapter002.tablecyc4.text127" :checked="chapter001.tablecyc4.text127" />2 </td> <td> @@ -1298,7 +1299,7 @@ @change="changecyc4($event, 'text128', 'isReverse')" type="checkbox" value="3" :checked="chapter002.tablecyc4.text128" :checked="chapter001.tablecyc4.text128" />3 </td> <td> @@ -1306,7 +1307,7 @@ @change="changecyc4($event, 'text129', 'isReverse')" type="checkbox" value="4" :checked="chapter002.tablecyc4.text129" :checked="chapter001.tablecyc4.text129" />4 </td> </tr> @@ -1319,7 +1320,7 @@ @change="changecyc4($event, 'text132', 'isReverse')" type="checkbox" value="1" :checked="chapter002.tablecyc4.text132" :checked="chapter001.tablecyc4.text132" />1 </td> <td> @@ -1327,7 +1328,7 @@ @change="changecyc4($event, 'text133', 'isReverse')" type="checkbox" value="2" :checked="chapter002.tablecyc4.text133" :checked="chapter001.tablecyc4.text133" />2 </td> <td> @@ -1335,7 +1336,7 @@ @change="changecyc4($event, 'text134', 'isReverse')" type="checkbox" value="3" :checked="chapter002.tablecyc4.text134" :checked="chapter001.tablecyc4.text134" />3 </td> <td> @@ -1343,7 +1344,7 @@ @change="changecyc4($event, 'text135', 'isReverse')" type="checkbox" value="4" :checked="chapter002.tablecyc4.text135" :checked="chapter001.tablecyc4.text135" />4 </td> </tr> @@ -1355,7 +1356,7 @@ </div> <div class="score" v-if="isShowScore4"> 您的得分: <span style="color: red">{{ chapter002.score4 }}</span> <span style="color: red">{{ chapter001.score4 }}</span> </div> <div class="btn"> <span @click="submit(4)">提交</span> @@ -1406,7 +1407,7 @@ </div> <br /> <div class="public-tips">请同学们进行“我的个性成熟度”的测试</div> <div v-if="chapter002.isShowXyx01"> <div v-if="chapter001.isShowXyx01"> <div class="xyx-title">我的个性成熟度</div> <p> 个性成熟度与年龄发展有时不太一致。请对照下列 12 @@ -1510,8 +1511,8 @@ <p class="public-tips"> 小黄和小李是某中职学校的一对好伙伴。她俩品学兼优,又都爱好羽毛球运动,平时形影不离,无话不说。两人同为班干部,但在最近一次班干部竞选中,小黄以一票之差意外落选,因此怀疑小李在竞选中没有投自己的票,俩人的关系逐渐冷淡……面对此情况,小李该如何去做呢? </p> <div v-if="chapter002.isShowXyx05"> <textarea rows="8" v-model="chapter002.textBybItem1"></textarea> <div v-if="chapter001.isShowXyx05"> <textarea rows="8" v-model="chapter001.textBybItem1"></textarea> </div> </div> <p><b>2.与同龄人交往</b></p> @@ -1579,7 +1580,7 @@ 1.我与同龄人交往时应该<input @change="changeAssess02($event, 'text1')" maxlength="30" :value="chapter002.tkItem02.text1" :value="chapter001.tkItem02.text1" class="assess" type="text" />。 @@ -1588,7 +1589,7 @@ 2.我与父母交往时应该<input @change="changeAssess02($event, 'text2')" maxlength="30" :value="chapter002.tkItem02.text1" :value="chapter001.tkItem02.text1" class="assess" type="text" />。 @@ -1597,7 +1598,7 @@ 3.为了维护自己的心理健康,我会<input @change="changeAssess02($event, 'text3')" maxlength="30" :value="chapter002.tkItem02.text1" :value="chapter001.tkItem02.text1" class="assess" type="text" />。 @@ -1695,12 +1696,12 @@ <div class="public-tips"> 请同学们学习“青春期常见生理问题”,看看自己处于哪一阶段。 </div> <div class="xyx-text" v-if="chapter002.isShowXyx07"> <div class="xyx-text" v-if="chapter001.isShowXyx07"> <div class="xyx-title">青春期常见生理问题</div> <p class="xyx-fu-yy">1. 性发育迟缓与性发育抑制</p> <p> 到了发育年龄,第二性征和生殖器官仍停留在青春期前的状态,即女孩 14 岁未见乳房 发育、16 岁未见月经,男孩 14 岁未见睾丸变大、16 到了发育年龄,第二性征和生殖器官仍停留在青春期前的状态,即女孩 14 岁未见乳房 发育、16 岁未见月经,男孩 14 岁未见睾丸变大、16 岁未见身高迅速增长,这样的情况称为 性发育迟缓与抑制。性发育迟缓仅仅是发育过程推迟数年,但仍会出现;性发育抑制则是正 常的发育被阻止,通过适当的治疗才会出现性发育,但有些患者即使经治疗后,仍会出现某 @@ -1760,7 +1761,9 @@ <p>应对方法如下:</p> <p>第一,保持心情舒畅,不要紧张,紧张会加重痛经症状。</p> <p>第二,平时不要着凉,月经前一周避免吃生冷的食物。</p> <p>第三,月经期间用红糖和姜煮水喝,或用暖贴贴在肚脐下方以保暖。</p> <p> 第三,月经期间用红糖和姜煮水喝,或用暖贴贴在肚脐下方以保暖。 </p> <p>第四,如果痛经严重,应及时就医。</p> <p class="xyx-fu-yy">5. 痤疮</p> <p> @@ -1860,7 +1863,7 @@ <div class="public-tips"> 请同学们进行异性交往情况自评,并与同学们交流。 </div> <div v-if="chapter002.isShowXyx04"> <div v-if="chapter001.isShowXyx04"> <div class="xyx-title">异性交往情况自评</div> <div class="xyx-text"> 请对照下表,在符合自己情况的空格内画“√”,看看你与异性交往的现状如何。 @@ -1877,11 +1880,13 @@ <tbody> <tr> <td>1</td> <td>除了在同一教室上课时,我几乎没主动与异性同学说过话</td> <td> 除了在同一教室上课时,我几乎没主动与异性同学说过话 </td> <td> <input type="checkbox" :checked="chapter002.tablecyc5.text1" :checked="chapter001.tablecyc5.text1" @change="changecyc5($event, 'text1')" /> </td> @@ -1892,7 +1897,7 @@ <td> <input type="checkbox" :checked="chapter002.tablecyc5.text2" :checked="chapter001.tablecyc5.text2" @change="changecyc5($event, 'text2')" /> </td> @@ -1903,7 +1908,7 @@ <td> <input type="checkbox" :checked="chapter002.tablecyc5.text3" :checked="chapter001.tablecyc5.text3" @change="changecyc5($event, 'text3')" /> </td> @@ -1916,7 +1921,7 @@ <td> <input type="checkbox" :checked="chapter002.tablecyc5.text4" :checked="chapter001.tablecyc5.text4" @change="changecyc5($event, 'text4')" /> </td> @@ -1929,7 +1934,7 @@ <td> <input type="checkbox" :checked="chapter002.tablecyc5.text5" :checked="chapter001.tablecyc5.text5" @change="changecyc5($event, 'text5')" /> </td> @@ -1940,7 +1945,7 @@ <td> <input type="checkbox" :checked="chapter002.tablecyc5.text6" :checked="chapter001.tablecyc5.text6" @change="changecyc5($event, 'text6')" /> </td> @@ -1951,7 +1956,7 @@ <td> <input type="checkbox" :checked="chapter002.tablecyc5.text7" :checked="chapter001.tablecyc5.text7" @change="changecyc5($event, 'text7')" /> </td> @@ -1962,7 +1967,7 @@ <td> <input type="checkbox" :checked="chapter002.tablecyc5.text8" :checked="chapter001.tablecyc5.text8" @change="changecyc5($event, 'text8')" /> </td> @@ -1975,7 +1980,7 @@ <td> <input type="checkbox" :checked="chapter002.tablecyc5.text9" :checked="chapter001.tablecyc5.text9" @change="changecyc5($event, 'text9')" /> </td> @@ -1986,7 +1991,7 @@ <td> <input type="checkbox" :checked="chapter002.tablecyc5.text10" :checked="chapter001.tablecyc5.text10" @change="changecyc5($event, 'text10')" /> </td> @@ -1999,7 +2004,7 @@ <td> <input type="checkbox" :checked="chapter002.tablecyc5.text11" :checked="chapter001.tablecyc5.text11" @change="changecyc5($event, 'text11')" /> </td> @@ -2010,7 +2015,7 @@ <td> <input type="checkbox" :checked="chapter002.tablecyc5.text12" :checked="chapter001.tablecyc5.text12" @change="changecyc5($event, 'text12')" /> </td> @@ -2023,7 +2028,7 @@ <td> <input type="checkbox" :checked="chapter002.tablecyc5.text13" :checked="chapter001.tablecyc5.text13" @change="changecyc5($event, 'text13')" /> </td> @@ -2034,7 +2039,7 @@ <td> <input type="checkbox" :checked="chapter002.tablecyc5.text14" :checked="chapter001.tablecyc5.text14" @change="changecyc5($event, 'text14')" /> </td> @@ -2045,7 +2050,7 @@ <td> <input type="checkbox" :checked="chapter002.tablecyc5.text15" :checked="chapter001.tablecyc5.text15" @change="changecyc5($event, 'text15')" /> </td> @@ -2110,7 +2115,7 @@ <div class="public-tips"> 请同学们学习“避孕方法及避孕失败后的紧急补救措施”。 </div> <div class="xyx-text" v-if="chapter002.isShowXyx07"> <div class="xyx-text" v-if="chapter001.isShowXyx07"> <div class="xyx-title">避孕方法及避孕失败后的紧急补救措施</div> <div class="xyx-fu">一、避孕方法</div> <p class="xyx-fu-ss">1. 避孕药</p> @@ -2139,7 +2144,7 @@ @change="changeAssess($event, 'text22')" maxlength="5" style="width: 50px" :value="chapter002.tkItem01.text22" :value="chapter001.tkItem01.text22" class="assess" type="text" />千克/米<sup>2</sup> 低体重 正常 超重 肥胖 @@ -2149,7 +2154,7 @@ @change="changeAssess($event, 'text33')" maxlength="5" style="width: 50px" :value="chapter002.tkItem01.text33" :value="chapter001.tkItem01.text33" class="assess" type="text" />毫升 偏低 正常 良好 优秀 @@ -2161,7 +2166,7 @@ 我为未来生活和职业应加强的方面有<input @change="changeAssess($event, 'text44')" maxlength="20" :value="chapter002.tkItem01.text44" :value="chapter001.tkItem01.text44" class="assess" type="text" />。 @@ -2170,20 +2175,20 @@ 2.我处于青春期的<input @change="changeAssess($event, 'text55')" maxlength="6" :value="chapter002.tkItem01.text55" :value="chapter001.tkItem01.text55" class="assess" type="text" style="width: 30px" />期,现在的心理状态是<input @change="changeAssess($event, 'text66')" maxlength="20" :value="chapter002.tkItem01.text66" :value="chapter001.tkItem01.text66" class="assess" type="text" />。我打算这样度过这一特殊时期<input @change="changeAssess($event, 'text77')" maxlength="20" :value="chapter002.tkItem01.text77" :value="chapter001.tkItem01.text77" class="assess" type="text" />。 @@ -2195,7 +2200,7 @@ 中职学校三年级女生小C和男生小D是同班同学,两人经常一起交流学习和生活中遇到的问题。不知不觉中两人产生了好感,陷入了恋爱中。一个周末,小D趁家里没人,便主动邀请小C到家里玩。相处间小D突然心生杂念,提出要与小C发生性行为。小C一时手足无措,不知如何是好。 </p> <div class="xspj-text"> <textarea rows="6" v-model="chapter002.textXxpj04"></textarea> <textarea rows="6" v-model="chapter001.textXxpj04"></textarea> </div> </div> </div> @@ -2207,8 +2212,12 @@ <h3 id="c005">专题五 增强疾病预防意识与能力</h3> <div class="bk-ztgs"> <p class="bj1-ztgs">学习目标</p> <p class="block">1.养成良好的卫生习惯,提高预防疾病的意识和能力。</p> <p class="block">2.掌握艾滋病、生活方式病等疾病的起因与预防措施。</p> <p class="block"> 1.养成良好的卫生习惯,提高预防疾病的意识和能力。 </p> <p class="block"> 2.掌握艾滋病、生活方式病等疾病的起因与预防措施。 </p> <p class="block"> 3.养成每天保证充足睡眠和合理膳食的习惯,提高机体免疫力。 </p> @@ -2271,8 +2280,10 @@ </div> </div> <br /> <div class="public-tips">请同学们学习“科学防护,远离结核危害”。</div> <div class="xyx-text" v-if="chapter002.isShowXyx07"> <div class="public-tips"> 请同学们学习“科学防护,远离结核危害”。 </div> <div class="xyx-text" v-if="chapter001.isShowXyx07"> <div class="xyx-title">科学防护,远离结核危害</div> <p> 肺结核,是由结核分枝杆菌入侵人体肺部引起的一种严重危害人体健康的慢性呼吸道传染病。肺结核属于我国乙类法定传染病,是我国初中、高中和中职学校重点防控的传染病之一。 @@ -2499,7 +2510,7 @@ <p class="public-tips"> 请同学们学习“缓解心理压力的方法”,并与同学交流自己的心得体会。 </p> <div class="xyx-text" v-if="chapter002.isShowXyx05"> <div class="xyx-text" v-if="chapter001.isShowXyx05"> <div class="xyx-title">缓解心理压力的方法</div> <p>第一,避免负性情绪。</p> <p>第二,正视现实生活,正确对待自己和他人。</p> @@ -2523,11 +2534,11 @@ 1.对照自身实际,你处在生活方式疾病链中的什么位置?应该怎样应对? </p> <div class="xspj-text"> <textarea rows="6" v-model="chapter002.textXxpj05"></textarea> <textarea rows="6" v-model="chapter001.textXxpj05"></textarea> </div> <p class="block">2.你认为有效缓解心理压力的方法主要有哪些?</p> <div class="xspj-text"> <textarea rows="6" v-model="chapter002.textXxpj06"></textarea> <textarea rows="6" v-model="chapter001.textXxpj06"></textarea> </div> </div> </div> @@ -2621,8 +2632,10 @@ </div> </div> <br /> <div class="public-tips">请同学们参照“运动前的热身方法”试一试。</div> <div class="xyx-text" v-if="chapter002.isShowXyx07"> <div class="public-tips"> 请同学们参照“运动前的热身方法”试一试。 </div> <div class="xyx-text" v-if="chapter001.isShowXyx07"> <div class="xyx-title">运动前的热身方法</div> <p class="xyx-fu-ss">1. 小跑</p> <p>放慢节奏,轻松跑 10~20 米即可,让身体慢慢适应动起来的节奏。</p> @@ -2705,7 +2718,7 @@ <div class="public-tips"> 请同学们参照“身体各部位放松的方法”试一试。 </div> <div class="xyx-text" v-if="chapter002.isShowXyx07"> <div class="xyx-text" v-if="chapter001.isShowXyx07"> <div class="xyx-title">身体各部位放松的方法</div> <p> 腹肌:趴在垫子上,用手将上身撑起来,身体尽量向上仰,体会拉伸腹肌的感觉。 @@ -2719,8 +2732,8 @@ 体会胸部被拉伸的感觉,保持 30 秒,并换方向重复。 </p> <p> 二头肌:侧平举,手抓住墙角或者任何够高的支撑物,转动上身,坚持 30 秒,换边重复。 二头肌:侧平举,手抓住墙角或者任何够高的支撑物,转动上身,坚持 30 秒,换边重复。 </p> <p> 三头肌:一手举过头,将前臂尽可能与上臂靠近,用另一手抓住肘部,向头部拉,保持 @@ -2819,7 +2832,7 @@ <p> 不佳的场地和器械会使损伤概率增加。运动场和地面过硬或不平,容易使关节出现较多震荡;器械安置不当或不牢固,容易造成急性突发损伤、摔倒或坠落等。 </p> <p> <p style="margin-bottom: 30px"> 不良的外界环境也是增加损伤发生概率的原因之一。污浊的空气会使我们在运动过程中呼吸加深、加快,增加呼吸道感染的风险,加重鼻炎或咽炎的病情;在下雪天或下雨天,路面湿滑,器械湿滑,会增加跌倒损伤的风险;光线不好,无法判断环境与自身的安全性,不易于及时躲避致伤因素,如前方的石子、台阶或飞来的足球、网球等打击物。气温也会影响人体的运动性能,从而增加损伤的风险,如在气温过高、湿度过大的环境下,身体散热能力大打折扣,容易产生疲劳和中暑;而气温过低,人体肌肉较为僵硬,容易出现拉伤及冻伤等情况。 </p> <!-- <div class="bk-xyx"> @@ -2850,7 +2863,7 @@ <div class="public-tips"> 请同学们学习“运动性晕厥、腹痛、骨膜炎的应对与预防”。 </div> <div class="xyx-text" v-if="chapter002.isShowXyx05"> <div class="xyx-text" v-if="chapter001.isShowXyx05"> <div class="xyx-title">运动性晕厥、腹痛、骨膜炎的应对与预防</div> <p class="xyx-fu-ss">运动性晕厥的应对与预防</p> <p> @@ -2943,11 +2956,23 @@ <p class="block"> 1.有一群学生在操场中间草坪上踢足球,而你正准备在操场跑道上跑步,应该怎么办? </p> <div class="xspj-text"> <textarea rows="6" v-model="chapter001.textXxpj07"></textarea> </div> <p class="block">2.模拟一次冰敷的流程。</p> <div class="xspj-text"> <textarea rows="6" v-model="chapter001.textXxpj08"></textarea> </div> <p class="block">3.模拟一次运动损伤后保护受伤部位的流程。</p> <div class="xspj-text"> <textarea rows="6" v-model="chapter001.textXxpj09"></textarea> </div> <p class="block"> 4.如果不可控制地要摔倒,要怎么做才能让自己受到的伤害最小? </p> <div class="xspj-text"> <textarea rows="6" v-model="chapter001.textXxpj010"></textarea> </div> </div> </div> </div> @@ -3003,10 +3028,77 @@ 本专题将带领同学们走进应急救护“现场”,学习应急救护知识与技能,提升应急救护能力,培养志愿服务的奉献精神和救死扶伤的人道主义精神,懂得敬畏生命,保护生命健康。 </p> <div class="bk-xyx"> <p class="bj1-xyx">试一试</p> <p class="block"> 请同学们登录课程平台进行“烧烫伤的现场应急处理”的学练。 <div class="bj1-xyx publicxbc"> · 试一试 · 烧烫伤的现场应急处理 <div class="icon" @click="activityXyx5"> <svg xmlns="http://www.w3.org/2000/svg" width="14.243" height="15.417" viewBox="0 0 20.243 18.417" > <path class="a" d="M3631.27-14315.585c-.382,0-1.27-.161-1.27-1.655v-15.072a1.7,1.7,0,0,1,1.741-1.681h6.151a.667.667,0,0,1,.12-.009,1.514,1.514,0,0,1,1.248.818c.6.937.934,1.52.935,1.522a.976.976,0,0,0,.712.248h7.925c.014,0,.05,0,.1,0a1.244,1.244,0,0,1,1.3,1.4v12.867a1.655,1.655,0,0,1-.3,1.175,1.227,1.227,0,0,1-.974.38H3631.4A1.177,1.177,0,0,1,3631.27-14315.585Zm2.026-12.5a.693.693,0,0,0-.716.684v.062a.7.7,0,0,0,.716.716h13.674a.693.693,0,0,0,.683-.716v-.062a.684.684,0,0,0-.683-.684Z" transform="translate(-3630 14334.002)" /> </svg> </div> </div> <br /> <div class="public-tips"> 请同学们进行“烧烫伤的现场应急处理”的学练。 </div> <div class="xyx-text" v-if="chapter001.isShowXyx05"> <div class="xyx-title">烧烫伤的现场应急处理</div> <p> 烧烫伤是由火、水和电等外界因素所致的一种常见的意外伤害。烧烫伤不仅会伤害身体, 而且处理不得当,还会加重伤情,留下疤痕,严重者可能危及生命。 </p> <p class="xyx-fu-yy"> (一) 烧烫伤现场处理五步骤:冲、脱、泡、盖、送 </p> <p> 冲。将烧烫伤的部位用清洁的流动冷水轻轻冲,冷水可将热度散去,以减少对深部组织 的损伤。 </p> <p> 脱。在充分的冲洗和浸泡后,在冷水中小心除去衣物。可以用剪刀剪开衣服,千万不要 强行剥去衣物,以免弄破水疱。 </p> <p> 泡。对于疼痛明显者可持续浸泡在冷水中 10~30 分钟,除了缓解疼痛外,烧伤早期的冲、 泡对降低烧伤程度具有十分明显的效果。 </p> <p> 盖。使用干净或无菌的纱布或保鲜膜覆于伤口,并加以固定,以减少外界的污染和刺激。 </p> <p> 送。转送到专门治疗烧伤的医院进行治疗。严重电烧伤应检查伤员的呼吸和心跳,如有 呼吸心跳暂停现象,应施行心肺复苏术。 </p> <p class="xyx-fu-yy">(二)处理误区</p> <p> 误区 1:创面涂抹酱油、牙膏、大酱等物质,不但会增加创面的感染机会,而且会影响 医生对创面的观察和判断。 </p> <p> 误区 2:如果创面有水疱,把水疱弄破等于把封闭的创面变成了开放的创口,会增加细 菌感染的机会 。 </p> <p class="xyx-fu-yy">(三)烧伤分度</p> <p> 按烧伤深度划分,一般分为Ⅰ度烧伤、Ⅱ度烧伤和Ⅲ度烧伤,其中Ⅱ度烧伤又可分为浅 Ⅱ度和深Ⅱ度烧伤,其严重程度逐渐加深。 </p> <p>Ⅰ度烧伤:疼痛感明显,无水肿,皮肤发红。</p> <p>Ⅱ度烧伤:水疱形成,局部湿润,疼痛。</p> <p>Ⅲ度烧伤:局部干燥,皮肤褪色,无疼痛。</p> <p></p> </div> </div> <h4 id="d026">一、热射病的现场急救与预防</h4> <h5 id="e048">(一)热射病的现场急救</h5> @@ -3051,10 +3143,50 @@ <p>⑦若高温下出现早期症状,应及时撤离高温现场。</p> <p>⑧必须在高温下作业时,需要加强个人防护。</p> <div class="bk-xyx"> <p class="bj1-xyx">试一试</p> <div class="bj1-xyx publicxbc"> · 试一试 · 一般中暑的现场急救 <div class="icon" @click="activityXyx4"> <svg xmlns="http://www.w3.org/2000/svg" width="14.243" height="15.417" viewBox="0 0 20.243 18.417" > <path class="a" d="M3631.27-14315.585c-.382,0-1.27-.161-1.27-1.655v-15.072a1.7,1.7,0,0,1,1.741-1.681h6.151a.667.667,0,0,1,.12-.009,1.514,1.514,0,0,1,1.248.818c.6.937.934,1.52.935,1.522a.976.976,0,0,0,.712.248h7.925c.014,0,.05,0,.1,0a1.244,1.244,0,0,1,1.3,1.4v12.867a1.655,1.655,0,0,1-.3,1.175,1.227,1.227,0,0,1-.974.38H3631.4A1.177,1.177,0,0,1,3631.27-14315.585Zm2.026-12.5a.693.693,0,0,0-.716.684v.062a.7.7,0,0,0,.716.716h13.674a.693.693,0,0,0,.683-.716v-.062a.684.684,0,0,0-.683-.684Z" transform="translate(-3630 14334.002)" /> </svg> </div> </div> <br /> <div class="public-tips"> 请同学们登录课程平台进行“一般中暑的现场急救”的学练。 </div> <div class="xyx-text" v-if="chapter001.isShowXyx04"> <div class="xyx-title">一般中暑的现场急救</div> <p> 在炎热的夏季,如果长时间在烈日下或湿热环境里活动,体内产生的热量不能及时散发, 或大量出汗使体内水分丢失过多,就会引起中暑。如果不及时处理,还会出现高烧、抽搐、 昏迷等严重情况。 </p> <p>中暑现场急救五步骤如下。</p> <p>第一步,转移。迅速将病人转移至阴凉通风处。</p> <p> 第二步,降温。松开或脱下衣服以利于散热,可用冷水擦拭身体,在头部、腋窝、腹股 沟等大血管分布区放置凉湿毛巾、冰袋,也可扇风,帮助降低体温。 </p> <p> 第三步,促醒。将风油精涂于太阳穴,仍不苏醒可按压人中、合谷穴促醒。 </p> <p>第四步,补水。喝一些淡盐水,少量多次。</p> <p>第五步,转送。症状若不缓解则要及时送医救治。</p> </div> <!-- <p class="bj1-xyx">试一试</p> <p class="block"> 请同学们登录课程平台进行“一般中暑的现场急救”的学练。 </p> </p> --> </div> <h4 id="d027">二、心肺复苏术(CPR)</h4> <p> @@ -3122,23 +3254,10 @@ </div> <div class="page-box" page="41"> <div v-if="showPageList.indexOf(41) > -1"> <div class="bodystyle"></div> </div> </div> <div class="page-box" page="42"> <div v-if="showPageList.indexOf(42) > -1"> <div class="bodystyle"></div> </div> </div> <div class="page-box" page="43"> <div v-if="showPageList.indexOf(43) > -1"> <div class="bodystyle"></div> </div> </div> <div class="bodystyle"> <p>第四步,人工呼吸。</p> <p class="center"> <img class="img-b" alt="" src="../image/0043-1.jpg" /> <img class="img-b" alt="" src="../../image/0043-1.jpg" /> </p> <p class="img">图1-8-4 人工呼吸</p> <p> @@ -3155,7 +3274,9 @@ </div> <div class="bk-xyx"> <p class="bj1-xyx">试一试</p> <p>请同学们登录课程平台学习“自动体外除颤器(AED)的使用及注意事项”。</p> <p> 请同学们登录课程平台学习“自动体外除颤器(AED)的使用及注意事项”。 </p> </div> <div class="bk-xspj"> <p class="bj-sbx">学习评价</p> @@ -3176,9 +3297,37 @@ 2.掌握拥挤踩踏事故的应对与预防方法,防范性侵害的方法,食品选购与辨识食物中毒的方法。 </p> </div> </div> </div> </div> <div class="page-box" page="42"> <div v-if="showPageList.indexOf(42) > -1"> <div class="bodystyle"> <div class="bk-ztgs"> <p class="bj1-ztgs">情境导入</p> <p class="block"> <p class="bj1-ztgs qjdrIocn"> 情境导入 <svg @click="readText('qjdr08')" xmlns="http://www.w3.org/2000/svg" width="14.24" height="19.987" viewBox="0 0 14.24 19.987" > <g transform="translate(-227.018 -96)"> <path class="a" d="M356,108.792h0a4.009,4.009,0,0,0,4-4V100a4.009,4.009,0,0,0-4-4h0a4.009,4.009,0,0,0-4,4v4.8A4.009,4.009,0,0,0,356,108.792Z" transform="translate(-121.859)" /> <path class="a" d="M241.249,456.342a.8.8,0,1,0-1.579-.245,5.6,5.6,0,0,1-11.063,0,.8.8,0,1,0-1.579.245,7.145,7.145,0,0,0,6.311,6.041v2.446h-2.4a.8.8,0,0,0,0,1.6h6.4a.8.8,0,0,0,0-1.6h-2.4v-2.446A7.145,7.145,0,0,0,241.249,456.342Z" transform="translate(0 -350.438)" /> </g> </svg> </p> <p class="block" id="qjdr08"> 某单位集体食堂午餐时,有十余人出现腹泻、头晕等不适症状,该单位及时将这些人送往医院治疗。卫生部门经检查,认为是青条鱼未充分煮熟导致的食物中毒。 </p> </div> @@ -3215,6 +3364,12 @@ <p> 第七,如果有人发生了挤压性窒息,要尽早、尽快做人工呼吸,并拨打120急救电话。 </p> </div> </div> </div> <div class="page-box" page="43"> <div v-if="showPageList.indexOf(43) > -1"> <div class="bodystyle"> <h5 id="e051">(二)拥挤踩踏事故的预防</h5> <p> 大型活动结束,进行疏散时,一定要提高防范意识,格外注意秩序。一般大型集会都会有专人统一指挥、疏导和保护,一定要听从工作人员的统一指挥,有序撤离。 @@ -3253,12 +3408,22 @@ <p> ①树立预防性侵犯的意识,牢记陌生人或熟人都可能是性侵害的加害人,要断然拒绝一切让我们感到不舒服的触碰、抚摸、亲吻、拥抱等亲密行为,勇敢说“不”。 </p> </div> </div> </div> <div class="page-box" page="44"> <div v-if="showPageList.indexOf(44) > -1"> <div class="bodystyle"> <p>②路上要结伴而行,避免在夜晚、僻静场所单独行动。</p> <p> ③不去歌厅、酒吧等场所,不轻易与不熟悉的人(包括网友)单独见面,不轻易接受陌生人或者可疑人的饮料和食品,与人交往时要保持适当的人际距离。 </p> <p>④避免单独和可疑人在家里或宁静、封闭的环境中会面,尤其是到可疑人家中。</p> <p>⑤出去游玩等,一定要告诉父母返回时间、和谁在一起以及同伴的联系方式等。</p> <p> ④避免单独和可疑人在家里或宁静、封闭的环境中会面,尤其是到可疑人家中。 </p> <p> ⑤出去游玩等,一定要告诉父母返回时间、和谁在一起以及同伴的联系方式等。 </p> <p> ⑥学习一些简单且实用的防护招式,遭遇危险的时候,能够利用肘、膝盖等部位,趁坏人不备,用力攻击其薄弱部位,如裆部、面部等。 </p> @@ -3294,8 +3459,14 @@ <p> 食品标志能帮助我们快速了解食品的质量、成分、区域、生产方式等信息,为食品选购提供依据。常见的食品标志包括有机产品标志、保健食品标志、无公害农产品标志、绿色食品标志等(见图1-9-1)。 </p> </div> </div> </div> <div class="page-box" page="45"> <div v-if="showPageList.indexOf(45) > -1"> <div class="bodystyle"> <p class="center"> <img class="img-c" alt="" src="../image/0047-1.jpg" /> <img class="img-c" alt="" src="../../image/0047-1.jpg" /> </p> <p class="img">图1-9-1 常见的食品标志</p> <p><b>2.购买包装食品要“五查看”</b></p> @@ -3326,6 +3497,12 @@ <p> 食物中毒的原因不同,患者的表现会有所区别。但其共同特点是潜伏期短,食物中毒后几分钟到数小时起病;多人发病,食用过同一食物的人集体发病;第一反应往往是腹部不适,腹痛或腹泻,与腹部不适伴发的还有恶心、呕吐、头晕、发烧等症状;吐泻严重的还会发生脱水、酸中毒,甚至休克、昏迷等。一些特殊的化学性毒素还可能出现相应的特殊症状。 </p> </div> </div> </div> <div class="page-box" page="46"> <div v-if="showPageList.indexOf(46) > -1"> <div class="bodystyle"> <p><b>3.食物中毒的预防</b></p> <p>(1)食物选择</p> <p> @@ -3333,7 +3510,9 @@ </p> <p>不吃已确认变质或怀疑可能变质的食品,不食用超过保质期的食品。</p> <p>不购买无卫生许可证和营业执照的小店里或路边摊点上的食品。</p> <p>做好自备水的防护,保证水质卫生、安全,不饮用未经煮沸的生活饮用水。</p> <p> 做好自备水的防护,保证水质卫生、安全,不饮用未经煮沸的生活饮用水。 </p> <p>不生吃海鲜、河鲜、肉类等。</p> <p>(2)食物加工</p> <p> @@ -3348,8 +3527,12 @@ </p> <p>接触食品的器具和双手必须清洗干净并保洁。</p> <p>直接入口的器具要消毒,以防食品受到污染。</p> <p>冰箱等冷藏设备要定期清洁,冷冻的食品如果超过 3 个月最好不要食用。</p> <p>桶装水最好一周内喝完。瓶装水要看是否过保质期,开盖时要看是否封严。</p> <p> 冰箱等冷藏设备要定期清洁,冷冻的食品如果超过 3 个月最好不要食用。 </p> <p> 桶装水最好一周内喝完。瓶装水要看是否过保质期,开盖时要看是否封严。 </p> <p> 妥善保管有毒有害物品,农药、杀虫剂和消毒剂等不要存放在食品加工经营场所,避免被误食、误用或意外污染食品。 </p> @@ -3365,6 +3548,12 @@ <p class="block">2.遭遇性侵害时的应对策略有哪些?</p> <p class="block">3.购买包装食品时要注意查看哪些信息?</p> </div> </div> </div> </div> <div class="page-box" page="47"> <div v-if="showPageList.indexOf(47) > -1"> <div class="bodystyle"> <h3 id="c009">专题九 注重体育精神的塑造</h3> <div class="bk-ztgs"> <p class="bj1-ztgs">学习目标</p> @@ -3375,11 +3564,35 @@ <p class="block"> 3.通过学习党和国家领导人的体育思想,领会“女排精神”与“乒乓精神”,树立积极健康的人生观和价值观。 </p> <p class="block">4.培养良好的体育品德,自觉运用体育精神磨炼个人意志。</p> <p class="block"> 4.培养良好的体育品德,自觉运用体育精神磨炼个人意志。 </p> </div> <div class="bk-ztgs"> <p class="bj1-ztgs">情境导入</p> <p class="block"> <p class="bj1-ztgs qjdrIocn"> 情境导入 <svg @click="readText('qjdr09')" xmlns="http://www.w3.org/2000/svg" width="14.24" height="19.987" viewBox="0 0 14.24 19.987" > <g transform="translate(-227.018 -96)"> <path class="a" d="M356,108.792h0a4.009,4.009,0,0,0,4-4V100a4.009,4.009,0,0,0-4-4h0a4.009,4.009,0,0,0-4,4v4.8A4.009,4.009,0,0,0,356,108.792Z" transform="translate(-121.859)" /> <path class="a" d="M241.249,456.342a.8.8,0,1,0-1.579-.245,5.6,5.6,0,0,1-11.063,0,.8.8,0,1,0-1.579.245,7.145,7.145,0,0,0,6.311,6.041v2.446h-2.4a.8.8,0,0,0,0,1.6h6.4a.8.8,0,0,0,0-1.6h-2.4v-2.446A7.145,7.145,0,0,0,241.249,456.342Z" transform="translate(0 -350.438)" /> </g> </svg> </p> <p class="block" id="qjdr09"> 小婷是一名中职学生,身高183厘米,中国女排前主教练郎平是她的榜样。她从小最大的愿望是进入理想的大学当一名排球运动员,甚至梦想穿上国家队的球衣为国争光。可伤病让她一次次与梦想失之交臂,所以她常常感到失落与迷茫。中国女排顽强拼搏、永不言败的精神让她重新振作起来。她相信阳光总在风雨后……后来她收到了她梦想中的大学的录取通知书。 </p> </div> @@ -3395,6 +3608,12 @@ 是公平、公正、公开及凝聚力、感染力和号召力的反映,是体育的理想信念及体育知识、体育道德、体育审美水平的标志, 是体育的支柱和灵魂。体育精神反映了人类在体育运动中追求的真、善、美与自由的价值理想,传递了人类突破自我、追求成功、超越有限、追求无限的价值追求。 </p> </div> </div> </div> <div class="page-box" page="48"> <div v-if="showPageList.indexOf(48) > -1"> <div class="bodystyle"> <h4 id="d032">二、奥林匹克精神</h4> <p> 奥林匹克精神基于追求团结、友谊、和平、进步的奥林匹克运动,蕴含丰富的人文内涵。1991年,《奥林匹克宪章》首次将奥林匹克精神正式表述为“互相理解、友谊、团结和公平竞争的精神”。 @@ -3415,11 +3634,11 @@ 2001年7月13日,北京以票数过半的优势赢得了2008年第29届夏季奥林匹克运动会的主办权,这是我国奥运史上的重要里程碑事件。图1-10-1为2008年北京奥运会会徽。北京奥运会提出了“同一个世界,同一个梦想”的口号,倡导团结、友谊、进步、和谐、参与和梦想,以“绿色奥运、科技奥运、人文奥运”三大核心理念诠释了人文奥运所蕴含的和谐价值观,为世界人民留下了宝贵的体育文化遗产和重要的精神财富。2008年8月8日,第29届北京奥运会盛大开幕。本届奥运会上共创造43项新世界纪录及132项新奥运纪录。另外,共有87个国家或地区在赛事中取得奖牌。我国以51枚金牌雄居金牌榜首,成为奥运历史上首个登上金牌榜首的亚洲国家。 </p> <p class="center"> <img class="img-f" alt="" src="../image/0050-2.jpg" /> <img class="img-f" alt="" src="../../image/0050-2.jpg" /> </p> <p class="img">图1-10-1 2008年北京奥运会会徽</p> <p class="center"> <img class="img-f" alt="" src="../image/0050-1.jpg" /> <img class="img-f" alt="" src="../../image/0050-1.jpg" /> </p> <p class="img">图1-10-2 2022年北京冬奥会会徽</p> <div class="bk-xyx"> @@ -3431,6 +3650,12 @@ <p> 2015年7月31日,北京赢得了2022年第24届冬季奥林匹克运动会的主办权,这是我国奥运史上的又一里程碑事件。图1-10-2为2022年北京冬奥会会徽。本届冬奥会提出了“一起向未来”的口号,倡导追求团结、和平、进步、包容的共同目标,表达了世界需要携手走向美好未来的共同愿望,是“更快、更高、更强、更团结”奥林匹克精神的中国化宣言,以习近平总书记“绿色、共享、开放、廉洁”的办奥理念,让奥林匹克再次助力中国梦想,使冬季运动融入我国亿万民众,让世界更加相知、相融,为世界贡献了一场“精彩、非凡、卓越”的北京冬奥会。北京冬奥会、冬残奥会的成功举办,青年一代更加积极向上,全党全国各族人民文化自信明显增强、精神面貌更加奋发昂扬。 </p> </div> </div> </div> <div class="page-box" page="49"> <div v-if="showPageList.indexOf(49) > -1"> <div class="bodystyle"> <h4 id="d034">四、中华体育精神</h4> <div class="bk-xyx"> <p class="bj1-xyx">议一议</p> @@ -3465,6 +3690,12 @@ <p> 从“体育救国”到“健康中国”,从体育的层面体现出我国在党的几代领导集体的带领下,在几代中国人民的勤劳奋斗下,步入社会主义新时代,开启中华民族伟大复兴的新篇章。 </p> </div> </div> </div> <div class="page-box" page="50"> <div v-if="showPageList.indexOf(50) > -1"> <div class="bodystyle"> <h4 id="d035">五、注重体育精神的塑造,树立积极的人生观和价值观</h4> <h5 id="e056">(一)主动参与、自我超越,担当青年使命</h5> <p> @@ -3488,6 +3719,12 @@ <p> 同学们可以试试:在比赛前和队友一起握手喊加油;和队友一起商量比赛战术;抱抱因失误而内疚的队友。团结就是力量,团结才能胜利。团结一致是一支优秀团队的目标、理想、作风、纪律、凝聚力和战斗力处于最佳状态的体现,是团队良性发展并取得优异成绩的可靠保证。赢了一起“狂”,输了一起“扛”,团队的荣辱兴衰关乎每一分子。当所有人都为这个集体默默地付出、贡献自己的力量时,这个团队才会凝心聚力,披荆斩棘,所向披靡。 </p> </div> </div> </div> <div class="page-box" page="51"> <div v-if="showPageList.indexOf(51) > -1"> <div class="bodystyle"> <h5 id="e060">(五)求真学问、求实创新,树立远大理想</h5> <p> 同学们可以试试:成为一个小团体中某项技术领先的人;成为团队中最了解某个体育项目起源的人;创新一个简易的体育游戏。在知识更新日趋加速、技术迭代日新月异的今天,要成为挺立在时代潮头、中流击水的佼佼者,就必须坚持解放思想、实事求是、与时俱进、求真务实,一切从实际出发,把“求真学问,练真本领”作为首要任务。同学们要树立远大理想,奉行“事业靠本领、幸福靠成就”的理念,让体育精神成为青春远航的动力,让增长本领成为青春搏击的能量。 @@ -3502,10 +3739,16 @@ 3.遵守运动礼仪,运动中不歧视、不藐视、不故意伤害任何运动伙伴和对手。 </p> <p class="block">4.团结协作,拼搏进取,互帮互助,共同进步。</p> <p class="block">5.自强、自立、自尊、自信、自重,勇于挑战自我、超越自我。</p> <p class="block"> 5.自强、自立、自尊、自信、自重,勇于挑战自我、超越自我。 </p> <p class="block">6.在规则下,能够体面地赢,也能够体面地输。</p> <p class="block">7.“学—练—赛—评”要积极主动、认真踏实、持之以恒、保质保量。</p> <p class="block">8.运动中要文明礼貌,着整洁的运动装,言行举止得体。</p> <p class="block"> 7.“学—练—赛—评”要积极主动、认真踏实、持之以恒、保质保量。 </p> <p class="block"> 8.运动中要文明礼貌,着整洁的运动装,言行举止得体。 </p> <p class="block"> 9.爱护校园一切体育设施,保护校园人文景观和自然环境,损坏公物要赔偿。 </p> @@ -3513,7 +3756,9 @@ <div class="bk-xspj"> <p class="bj-sbx">学习评价</p> <p class="block">1.我认为体育精神是____________。</p> <p class="block">2.我会通过以下途径塑造自己的体育精神____________。</p> <p class="block"> 2.我会通过以下途径塑造自己的体育精神____________。 </p> <p class="block"> 3.通过学习“奥运中国”、党和国家领导人的体育思想,我打算从__________________方面做起,为自己的健康负责,为我国体育事业贡献自己应有的一分力量。 </p> @@ -3523,23 +3768,41 @@ </div> <hr /> <p class="note"> <a id="m1"></a><a href="chapter002.html#w1">[1]</a> <a id="m1"></a><a href="chapter001.html#w1">[1]</a> 本教材课程平台为www.bnuic.com,进入该网址后,依次选择“京师职教→中职→文化基础课→体育与健康(第3版)→教与学资源”,即可查阅教材全部资源。全书同,后不赘述。 </p> <p class="note"> <a id="m2"></a><a href="chapter002.html#w2">[2]</a> <a id="m2"></a><a href="chapter001.html#w2">[2]</a> 陶行知:《陶行知全集》第8卷,66页,成都,四川教育出版社,2009。 </p> <p class="note"> <a id="m3"></a><a href="chapter002.html#w3">[3]</a> <a id="m3"></a><a href="chapter001.html#w3">[3]</a> 体重指数(详见②)、肺活量可根据《国家学生体质健康标准(2014年修订)》高一阶段数据计算或测试得出。其中,男生体重指数正常值区间为16.5~23.2,≤16.4为低体重,23.3~26.3为超重,≥26.4为肥胖;女生体重指数正常值区间为16.5~22.7,≤16.4为低体重,22.8~25.2为超重,≥25.3为肥胖。男生肺活量≤2599毫升为不及格,2600~3799毫升为及格,3800~4299毫升为良好,≥4300毫升为优秀;女生肺活量≤1749毫升为不及格,1750~2749毫升为及格,2750~3049毫升为良好,≥3050毫升为优秀。脊柱、性发育指标可根据相关健康体检报告填写。 </p> <p class="note"> <a id="m4"></a><a href="chapter002.html#w4">[4]</a> <a id="m4"></a><a href="chapter001.html#w4">[4]</a> 体重指数是目前常用的衡量人体胖瘦及健康程度的一项标准,具体计算方法为体重指数=体重÷身高<sup>2</sup>(体重单位:千克;身高单位:米)。 </p> <p class="note"> <a id="m5"></a><a href="chapter002.html#w5">[5]</a> <a id="m5"></a><a href="chapter001.html#w5">[5]</a> 针对如溺水等气道堵塞类的心肺复苏,实施步骤有所区别,应先开放气道、清除气道中的积水及异物,再依次进行人工呼吸和胸外按压。 </p> </div> </div> </div> <div class="page-box" page="52"> <div v-if="showPageList.indexOf(52) > -1"> <div class="bodystyle"></div> </div> </div>