unknown
2024-05-30 29fad2bfd2db3103d8eb12ccae110585829eacad
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
<template>
  <div class="chapter" num="2">
    <div class="page-box" page="13">
      <div v-if="showPageList.indexOf(13) > -1">
        <div class="bodystyle">
          <div class="bj-img">
            <div class="bj-empyt-chapter01"></div>
            <div class="bj-text01">
              <p>
                健康与诸多因素有关,不仅涉及身体,还涉及心理、社会适应等方面。健康是人们所追求的目标,高质量的生命离不开健康,幸福的人生也离不开健康。增进民生福祉、提高人民生活品质的重要举措在于推进健康中国建设。生命、健康和幸福三者的核心是健康。如何拥有健康,保持健康的状态?为此,同学们需要树立“健康第一”的理念;需要结合现阶段生理、心理等发展特点,以及运动的“双刃剑”特点,把握促进健康的规律;需要结合未来所从事职业的特点,形成预防各种职业病的能力;需要掌握紧急救护和安全避险的知识与技能,保护自身的生命安全;更要塑造体育精神,助力成就人生的梦想,力求为祖国健康工作五十年,幸福生活一辈子。
              </p>
              <p>
                完整而系统地学习“健康教育”各专题内容,不仅要认识健康的重要性,而且要懂得健康的相关知识,掌握促进健康的各项技能,养成良好的健康习惯,远离各种危害健康的因素,从而真正成为健康的拥有者。
              </p>
            </div>
          </div>
        </div>
      </div>
    </div>
    <div class="page-box" page="14">
      <div v-if="showPageList.indexOf(14) > -1">
        <div class="bodystyle">
          <h3 id="c001">专题一 树立“健康第一”的理念</h3>
          <div class="bk-ztgs">
            <p class="bj1-ztgs">学习目标</p>
            <p class="block">1.树立“健康第一”的理念。</p>
            <p class="block">2.了解健康的标准和影响因素。</p>
            <p class="block">3.践行健康的生活方式。</p>
          </div>
          <div class="bk-ztgs">
            <p class="bj1-ztgs">情境导入</p>
            <p class="block">
              小李同学是今年入校的中职学校新生,从小跟随父亲踢足球。小李开朗乐观,积极组建班级足球队。受他的影响,班级中很多同学开始进行体育锻炼。在小李的带领下,班级在校足球比赛中获得了较好的名次。
            </p>
          </div>
          <p>
            同学们正处于身心发展的转折时期,同学们的身心健康会直接影响我国新一代青年的整体健康与综合素质。因此,无论是继续升学还是未来就业,同学们都要增强健康意识并努力践行。即使对专业运动员而言,健康的重要性也要排在运动天赋之前,因为无法兑现的运动天赋等于零。同理,没有健康体魄的支撑,同学们也难以实现自己的人生理想。
          </p>
          <p>
            本专题旨在通过介绍健康的内涵演变、衡量健康的标准、影响健康的因素及评价健康的方法,引导同学们认识健康、关注健康,学会识别健康信息,进而树立“健康第一”的理念,促进同学们全面、健康地成长。
          </p>
          <h4 id="d001">一、认识健康</h4>
          <p>
            自远古时代到现代社会,健康一直是人类不变的追求,也是社会文明进步的基础。习近平总书记就曾在不同场合多次强调要坚持“健康第一”的理念。
          </p>
          <p>
            什么是真正的健康呢?在不同时代,人们的回答各不相同。随着经济、社会的发展,健康的内涵已从生存意义上的身体健康,发展到身心健康,再发展到多维健康。其本质是我们全面、完整及和谐地发展。其中,全面发展指德智体美劳全面且均衡发展;完整发展指躯体、心理、社会适应能力及道德随着年龄的增长有秩序地、完整地发展;和谐发展指注重各基本素质适当、协调、平衡发展。健康是全面、完整、和谐发展的统一,是学校体育的目标,更是学校教育的最终目标之一。
          </p>
          <div class="bk-xyx">
            <div class="bj1-xyx publicxbc">
              学一学
              <div class="icon" @click="activityXyx1">
                <svg
                  xmlns="http://www.w3.org/2000/svg"
                  width="20.243"
                  height="18.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>
            <div v-if="chapter002.isShowXyx01">
              <div class="xyx-title">健康概念的演变</div>
              <p class="xyx-con">
                在人类发展历程中,先后形成了不同的健康观。早期朴素的健康观认为“健康就是没
                病”,强调健康是拥有强健的体魄。当人类从医学角度认识生命现象与生长过程时,认为“生
                命活动正常是健康”,关注的仅是人的生物学本质。1948
                年,世界卫生组织(WHO)提出:“健
                康不仅是免于疾病和虚弱,而且是保持身体上、精神上和社会适应方面的完美状态。”此后,
                人们对健康的内涵产生了认识上的飞跃。1989
                年,世界卫生组织将道德健康纳入健康的范畴,
                指出只有躯体、心理、社会适应力和道德同时健康才算是完全的健康。
              </p>
              <ul class="xyx-ul">
                <li>躯体健康:身体结构和功能正常,具有生活自理能力。</li>
                <li>
                  心理健康:个体能够正确认识自己,及时调整自己的心态,使心理处于良好状态,以
                  适应外界的变化。
                </li>
                <li></li>
                <li>
                  道德健康:既为自己的健康也为他人的健康负责,把个人行为置于社会规范之内。
                </li>
              </ul>
            </div>
            <!-- <p>
              请同学们登录课程平台<a id="w1"></a
              ><a href="chapter002.html#m1"><sup>[1]</sup></a
              >查阅“健康概念的演变”。
            </p> -->
          </div>
          <div class="bk-xyx">
            <div class="bj1-xyx publicxbc">
              测一测
              <div class="icon" @click="activityXyx2">
                <svg
                  xmlns="http://www.w3.org/2000/svg"
                  width="20.243"
                  height="18.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>
            <div v-if="chapter002.isShowXyx02">
              <!-- <p>请同学们进行“小测试:世界卫生组织五项身心健康指标评价”。</p> -->
              <div class="xyx-title">世界卫生组织五项身心健康指标评价</div>
              <div class="xyx-text">
                以下是世界卫生组织五项身心健康指标(WHO-5)的具体内容及评分,请同学们根据自
                己过去 2
                周内的实际情况,在下表中相应的数字上画“√”,最后相加得出总分,总分越高
                表明身心越健康。
              </div>
              <div class="tablePublic">
                <table>
                  <thead>
                    <tr>
                      <th>在过去 2 周内</th>
                      <th>一直</th>
                      <th>大部分时间</th>
                      <th>超过一半以上时间</th>
                      <th>少于一半以上时间</th>
                      <th>小部分时间</th>
                      <th>没有</th>
                    </tr>
                  </thead>
                  <tbody>
                    <tr>
                      <td style="text-align: left">1. 我感觉快乐,心情舒畅</td>
                      <td>
                        <input
                          @change="changeBox($event, 'text1')"
                          :checked="chapter002.tablexyx1.text1"
                          type="checkbox"
                          value="5"
                        />
                        5
                      </td>
                      <td>
                        <input
                          @change="changeBox($event, 'text2')"
                          :checked="chapter002.tablexyx1.text2"
                          type="checkbox"
                          value="4"
                        />4
                      </td>
                      <td>
                        <input
                          @change="changeBox($event, 'text3')"
                          :checked="chapter002.tablexyx1.text3"
                          type="checkbox"
                          value="3"
                        />3
                      </td>
                      <td>
                        <input
                          @change="changeBox($event, 'text4')"
                          :checked="chapter002.tablexyx1.text4"
                          type="checkbox"
                          value="2"
                        />2
                      </td>
                      <td>
                        <input
                          @change="changeBox($event, 'text5')"
                          :checked="chapter002.tablexyx1.text5"
                          type="checkbox"
                          value="1"
                        />1
                      </td>
                      <td>
                        <input
                          @change="changeBox($event, 'text6')"
                          :checked="chapter002.tablexyx1.text6"
                          type="checkbox"
                          value="0"
                        />0
                      </td>
                    </tr>
                    <tr>
                      <td style="text-align: left">2. 我感觉宁静和放松</td>
                      <td>
                        <input
                          @change="changeBox($event, 'text7')"
                          :checked="chapter002.tablexyx1.text7"
                          type="checkbox"
                          value="5"
                        />5
                      </td>
                      <td>
                        <input
                          @change="changeBox($event, 'text8')"
                          :checked="chapter002.tablexyx1.text8"
                          type="checkbox"
                          value="4"
                        />4
                      </td>
                      <td>
                        <input
                          @change="changeBox($event, 'text9')"
                          :checked="chapter002.tablexyx1.text9"
                          type="checkbox"
                          value="3"
                        />3
                      </td>
                      <td>
                        <input
                          @change="changeBox($event, 'text10')"
                          :checked="chapter002.tablexyx1.text10"
                          type="checkbox"
                          value="2"
                        />2
                      </td>
                      <td>
                        <input
                          @change="changeBox($event, 'text11')"
                          :checked="chapter002.tablexyx1.text11"
                          type="checkbox"
                          value="1"
                        />1
                      </td>
                      <td>
                        <input
                          @change="changeBox($event, 'text12')"
                          :checked="chapter002.tablexyx1.text12"
                          type="checkbox"
                          value="0"
                        />0
                      </td>
                    </tr>
                    <tr>
                      <td style="text-align: left">
                        3. 我感觉充满活力,精力充沛
                      </td>
                      <td>
                        <input
                          @change="changeBox($event, 'text13')"
                          :checked="chapter002.tablexyx1.text13"
                          type="checkbox"
                          value="5"
                        />5
                      </td>
                      <td>
                        <input
                          @change="changeBox($event, 'text14')"
                          :checked="chapter002.tablexyx1.text14"
                          type="checkbox"
                          value="4"
                        />4
                      </td>
                      <td>
                        <input
                          @change="changeBox($event, 'text15')"
                          :checked="chapter002.tablexyx1.text15"
                          type="checkbox"
                          value="3"
                        />3
                      </td>
                      <td>
                        <input
                          @change="changeBox($event, 'text16')"
                          :checked="chapter002.tablexyx1.text16"
                          type="checkbox"
                          value="2"
                        />2
                      </td>
                      <td>
                        <input
                          @change="changeBox($event, 'text17')"
                          :checked="chapter002.tablexyx1.text17"
                          type="checkbox"
                          value="1"
                        />1
                      </td>
                      <td>
                        <input
                          @change="changeBox($event, 'text18')"
                          :checked="chapter002.tablexyx1.text18"
                          type="checkbox"
                          value="0"
                        />0
                      </td>
                    </tr>
                    <tr>
                      <td style="text-align: left">
                        4. 我睡醒时感到清醒,得到了足够休息
                      </td>
                      <td>
                        <input
                          @change="changeBox($event, 'text19')"
                          :checked="chapter002.tablexyx1.text19"
                          type="checkbox"
                          value="5"
                        />5
                      </td>
                      <td>
                        <input
                          @change="changeBox($event, 'text20')"
                          :checked="chapter002.tablexyx1.text20"
                          type="checkbox"
                          value="4"
                        />4
                      </td>
                      <td>
                        <input
                          @change="changeBox($event, 'text21')"
                          :checked="chapter002.tablexyx1.text21"
                          type="checkbox"
                          value="3"
                        />3
                      </td>
                      <td>
                        <input
                          @change="changeBox($event, 'text22')"
                          :checked="chapter002.tablexyx1.text22"
                          type="checkbox"
                          value="2"
                        />2
                      </td>
                      <td>
                        <input
                          @change="changeBox($event, 'text23')"
                          :checked="chapter002.tablexyx1.text23"
                          type="checkbox"
                          value="1"
                        />1
                      </td>
                      <td>
                        <input
                          @change="changeBox($event, 'text24')"
                          :checked="chapter002.tablexyx1.text24"
                          type="checkbox"
                          value="0"
                        />0
                      </td>
                    </tr>
                    <tr>
                      <td style="text-align: left">
                        5. 我每天的生活充满了有趣的事情
                      </td>
                      <td>
                        <input
                          @change="changeBox($event, 'text25')"
                          :checked="chapter002.tablexyx1.text25"
                          type="checkbox"
                          value="5"
                        />5
                      </td>
                      <td>
                        <input
                          @change="changeBox($event, 'text26')"
                          :checked="chapter002.tablexyx1.text26"
                          type="checkbox"
                          value="4"
                        />4
                      </td>
                      <td>
                        <input
                          @change="changeBox($event, 'text27')"
                          :checked="chapter002.tablexyx1.text27"
                          type="checkbox"
                          value="3"
                        />3
                      </td>
                      <td>
                        <input
                          @change="changeBox($event, 'text28')"
                          :checked="chapter002.tablexyx1.text28"
                          type="checkbox"
                          value="2"
                        />2
                      </td>
                      <td>
                        <input
                          @change="changeBox($event, 'text29')"
                          :checked="chapter002.tablexyx1.text29"
                          type="checkbox"
                          value="1"
                        />1
                      </td>
                      <td>
                        <input
                          @change="changeBox($event, 'text30')"
                          :checked="chapter002.tablexyx1.text30"
                          type="checkbox"
                          value="0"
                        />0
                      </td>
                    </tr>
                  </tbody>
                </table>
                <div class="table-bottom">
                  <div class="score" v-if="!isShowScore1">
                    您的得分:<span style="color: red">请提交后查看!</span>
                  </div>
                  <div class="score" v-if="isShowScore1">
                    您的得分:
                    <span style="color: red">{{ chapter002.score1 }}</span>
                  </div>
                  <div class="btn">
                    <span @click="submit01()">提交</span>
                    <span @click="resetData01()">重做</span>
                  </div>
                </div>
              </div>
            </div>
          </div>
        </div>
      </div>
    </div>
    <div class="page-box" page="15">
      <div v-if="showPageList.indexOf(15) > -1">
        <div class="bodystyle">
          <p class="center">
            <el-image
              class="chapter001-img-0018 img-c"
              :src="picOneUrl"
              :preview-src-list="picArr"
            />
            <!-- <img class="img-c" alt="" src="../image/0017-1.jpg" /> -->
          </p>
          <p class="img">图1-1-1 人们对健康的认识</p>
          <p>
            目前,人们对健康的认识已经丰富到 7
            个维度(见图1-1-1)。其中,躯体维度指身体健康;情绪、社会和职业维度指心理、社会和道德的健康;理智维度指对各种信息的处理能力;心灵维度包括信心、信任、信仰和信念;环境维度包括个体与社会、自然界的和谐关系。
          </p>
          <h4 id="d002">二、健康的标准</h4>
          <p>
            世界卫生组织提出了十大健康标准,同学们可以根据实际情况进行自我健康评价。
          </p>
          <p class="block-hs">
            1.精力充沛,能从容不迫地进行日常生活和工作而不感到过分紧张。
          </p>
          <p class="block-hs">2.处事乐观,积极参与,乐于承担责任。</p>
          <p class="block-hs">3.善于休息,睡眠良好。</p>
          <p class="block-hs">4.应变能力强,能适应外界环境的各种变化。</p>
          <p class="block-hs">5.能够抵抗一般性感冒和传染病。</p>
          <p class="block-hs">
            6.体重适中,身材匀称。站立时,头、肩、臂的位置协调。
          </p>
          <p class="block-hs">7.眼睛明亮,眼睑不发炎,反应敏捷。</p>
          <p class="block-hs">
            8.牙齿清洁,无缺损、无龋齿、无出血现象,齿龈颜色正常。
          </p>
          <p class="block-hs">9.头发有光泽,无头屑。</p>
          <p class="block-hs">10.肌肤丰泽,皮肤有弹性,走路轻松有力。</p>
          <p><br /></p>
          <div class="bk-xyx">
            <div class="bj1-xyx publicxbc">
              比一比
              <div class="icon" @click="activityXyx3">
                <svg
                  xmlns="http://www.w3.org/2000/svg"
                  width="20.243"
                  height="18.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>
            <!-- <p>请同学们登录课程平台进行“8种健康状况测评”。</p> -->
            <div class="bj-byb" v-if="chapter002.isShowXyx03">
              <div class="byb-title">8 种健康状况测评</div>
              <p>
                美国学者沃林斯基借鉴医学、社会学、心理学的相关理论,提出了 8
                种健康状况,请同 学们对照下表,分析自己的健康状况。
              </p>
              <div class="tablePublic">
                <table>
                  <thead>
                    <tr>
                      <th>健康状况</th>
                      <th>标志</th>
                      <th>心理方面</th>
                      <th>肉体方面</th>
                      <th>社会方面</th>
                    </tr>
                  </thead>
                  <tbody>
                    <tr>
                      <td>1</td>
                      <td>
                        <input
                          @change="changeByb($event, 'text1')"
                          type="checkbox"
                          value=""
                          :checked="chapter002.tablebyb1.text1"
                        />正常健康
                      </td>
                      <td>
                        <input
                          @change="changeByb($event, 'text2')"
                          type="checkbox"
                          value=""
                          :checked="chapter002.tablebyb1.text2"
                        />健康
                      </td>
                      <td>
                        <input
                          @change="changeByb($event, 'text2')"
                          type="checkbox"
                          value=""
                          :checked="chapter002.tablebyb1.text2"
                        />健康
                      </td>
                      <td>
                        <input
                          @change="changeByb($event, 'text4')"
                          type="checkbox"
                          value=""
                          :checked="chapter002.tablebyb1.text4"
                        />健康
                      </td>
                    </tr>
                    <tr>
                      <td>2</td>
                      <td>
                        <input
                          @change="changeByb($event, 'text5')"
                          type="checkbox"
                          value=""
                          :checked="chapter002.tablebyb1.text5"
                        />悲观
                      </td>
                      <td>
                        <input
                          @change="changeByb($event, 'text6')"
                          type="checkbox"
                          value=""
                          :checked="chapter002.tablebyb1.text6"
                        />不健康
                      </td>
                      <td>
                        <input
                          @change="changeByb($event, 'text7')"
                          type="checkbox"
                          value=""
                          :checked="chapter002.tablebyb1.text7"
                        />健康
                      </td>
                      <td>
                        <input
                          @change="changeByb($event, 'text8')"
                          type="checkbox"
                          value=""
                          :checked="chapter002.tablebyb1.text8"
                        />健康
                      </td>
                    </tr>
                    <tr>
                      <td>3</td>
                      <td>
                        <input
                          @change="changeByb($event, 'text9')"
                          type="checkbox"
                          value=""
                          :checked="chapter002.tablebyb1.text9"
                        />社会方面不健康
                      </td>
                      <td>
                        <input
                          @change="changeByb($event, 'text10')"
                          type="checkbox"
                          value=""
                          :checked="chapter002.tablebyb1.text10"
                        />健康
                      </td>
                      <td>
                        <input
                          @change="changeByb($event, 'text11')"
                          type="checkbox"
                          value=""
                          :checked="chapter002.tablebyb1.text11"
                        />健康
                      </td>
                      <td>
                        <input
                          @change="changeByb($event, 'text12')"
                          type="checkbox"
                          value=""
                          :checked="chapter002.tablebyb1.text12"
                        />不健康
                      </td>
                    </tr>
                    <tr>
                      <td>4</td>
                      <td>
                        <input
                          @change="changeByb($event, 'text13')"
                          type="checkbox"
                          value=""
                          :checked="chapter002.tablebyb1.text13"
                        />患疑病症
                      </td>
                      <td>
                        <input
                          @change="changeByb($event, 'text14')"
                          type="checkbox"
                          value=""
                          :checked="chapter002.tablebyb1.text14"
                        />不健康
                      </td>
                      <td>
                        <input
                          @change="changeByb($event, 'text15')"
                          type="checkbox"
                          value=""
                          :checked="chapter002.tablebyb1.text15"
                        />健康
                      </td>
                      <td>
                        <input
                          @change="changeByb($event, 'text16')"
                          type="checkbox"
                          value=""
                          :checked="chapter002.tablebyb1.text16"
                        />健康
                      </td>
                    </tr>
                    <tr>
                      <td>5</td>
                      <td>
                        <input
                          @change="changeByb($event, 'text17')"
                          type="checkbox"
                          value=""
                          :checked="chapter002.tablebyb1.text17"
                        />身体不健康
                      </td>
                      <td>
                        <input
                          @change="changeByb($event, 'text18')"
                          type="checkbox"
                          value=""
                          :checked="chapter002.tablebyb1.text18"
                        />健康
                      </td>
                      <td>
                        <input
                          @change="changeByb($event, 'text19')"
                          type="checkbox"
                          value=""
                          :checked="chapter002.tablebyb1.text19"
                        />不健康
                      </td>
                      <td>
                        <input
                          @change="changeByb($event, 'text20')"
                          type="checkbox"
                          value=""
                          :checked="chapter002.tablebyb1.text20"
                        />健康
                      </td>
                    </tr>
                    <tr>
                      <td>6</td>
                      <td>
                        <input
                          @change="changeByb($event, 'text21')"
                          type="checkbox"
                          value=""
                          :checked="chapter002.tablebyb1.text21"
                        />长期受病折磨
                      </td>
                      <td>
                        <input
                          @change="changeByb($event, 'text22')"
                          type="checkbox"
                          value=""
                          :checked="chapter002.tablebyb1.text22"
                        />不健康
                      </td>
                      <td>
                        <input
                          @change="changeByb($event, 'text23')"
                          type="checkbox"
                          value=""
                          :checked="chapter002.tablebyb1.text23"
                        />不健康
                      </td>
                      <td>
                        <input
                          @change="changeByb($event, 'text24')"
                          type="checkbox"
                          value=""
                          :checked="chapter002.tablebyb1.text24"
                        />健康
                      </td>
                    </tr>
                    <tr>
                      <td>7</td>
                      <td>
                        <input
                          @change="changeByb($event, 'text25')"
                          type="checkbox"
                          value=""
                          :checked="chapter002.tablebyb1.text25"
                        />乐观
                      </td>
                      <td>
                        <input
                          @change="changeByb($event, 'text26')"
                          type="checkbox"
                          value=""
                          :checked="chapter002.tablebyb1.text26"
                        />健康
                      </td>
                      <td>
                        <input
                          @change="changeByb($event, 'text27')"
                          type="checkbox"
                          value=""
                          :checked="chapter002.tablebyb1.text27"
                        />不健康
                      </td>
                      <td>
                        <input
                          @change="changeByb($event, 'text28')"
                          type="checkbox"
                          value=""
                          :checked="chapter002.tablebyb1.text28"
                        />健康
                      </td>
                    </tr>
                    <tr>
                      <td>8</td>
                      <td>
                        <input
                          @change="changeByb($event, 'text29')"
                          type="checkbox"
                          value=""
                          :checked="chapter002.tablebyb1.text29"
                        />患病严重
                      </td>
                      <td>
                        <input
                          @change="changeByb($event, 'text30')"
                          type="checkbox"
                          value=""
                          :checked="chapter002.tablebyb1.text30"
                        />不健康
                      </td>
                      <td>
                        <input
                          @change="changeByb($event, 'text31')"
                          type="checkbox"
                          value=""
                          :checked="chapter002.tablebyb1.text31"
                        />不健康
                      </td>
                      <td>
                        <input
                          @change="changeByb($event, 'text32')"
                          type="checkbox"
                          value=""
                          :checked="chapter002.tablebyb1.text32"
                        />不健康
                      </td>
                    </tr>
                  </tbody>
                </table>
              </div>
            </div>
          </div>
          <h4 id="d003">三、影响健康的因素</h4>
          <p>
            世界卫生组织指出:人的健康和寿命 60% 取决于行为和生活方式,15%
            取决于生物遗传,10% 取决于社会因素,8% 取决于医疗条件,7%
            取决于生活环境。
          </p>
          <h5 id="e001">(一)行为和生活方式</h5>
          <p>
            当今社会,发达国家人口死亡的主要原因是心脑血管疾病、恶性肿瘤和意外死亡,大都与滥用酒精和药物、饮食不科学、缺乏锻炼、吸烟等不良行为和生活方式有关。在中职阶段,不良行为和生活方式一般包括非故意伤害行为(如骑车违规、步行违规、到无安全措施场所运动等),故意伤害行为(如校园欺凌、自伤行为等),物质滥用行为(如吸烟、饮酒行为),网络成瘾行为,过早性行为,不健康饮食行为和缺乏体力活动行为等。这些对同学们的健康有着长期的消极影响,应该杜绝。
          </p>
          <h5 id="e002">(二)生物遗传</h5>
          <p>
            生物遗传因素包括人类在长期生物进化过程中所形成的遗传、成熟、老化及机体内部状态
          </p>
        </div>
      </div>
    </div>
    <div class="page-box" page="16">
      <div v-if="showPageList.indexOf(16) > -1">
        <div class="bodystyle">
          <p>
            (如各器官的功能状态、机体的免疫能力)等。生物遗传因素直接关系着我们的健康,对诸多疾病的发生、发展及分布具有重要影响。虽然遗传因素无法改变,但是心理因素具有可塑性。保持积极的心理状态是维持和增进健康的必要条件。
          </p>
          <h5 id="e003">(三)社会因素与医疗条件</h5>
          <p>
            相关研究显示,不良生活事件会使机体机能偏离平衡状态,对身心健康有着不利影响。中职学生的不良生活事件主要集中在人际关系、学习压力和校园适应等方面,发生率较高的前5位分别为“考试失败或成绩不理想”“与同学或好友发生纠纷”“生活(饮食、作息等)规律等明显变化”“被人误会或错怪”和“学习负担重”。如果出现上述情况,同学们可以求助于老师、家长或同学等,也可以通过体育锻炼、心理咨询等方式缓解压力,进而有效降低由生活事件所引发的负面情绪对健康的影响。
          </p>
          <p>
            此外,健全的社会保健制度,尤其是初级卫生保健制度,能针对本地区存在的主要卫生问题提供相应的卫生服务,是维护和促进健康的重要保障。
          </p>
          <h5 id="e004">(四)生活环境</h5>
          <p>
            正常的大气、水、土壤、微小气候等是我们赖以生存、不可或缺的原生环境。目前,工农业生产和人类活动等产生的次生环境问题(如森林覆盖面积减少、水土流失、空气污染等)日益危害着我们的健康。此外,自然环境中的物理因素(如气温、气压、噪声、辐射等)
            与化学因素(如天然或人工合成的某些化学物质及动物和微生物体内的某些化学元素),与人体接触超过一定限度,也会对我们的健康产生危害。
          </p>
          <div class="bk-xyx">
            <div class="bj1-xyx publicxbc">
              测一测
              <div class="icon" @click="activityXyx4">
                <svg
                  xmlns="http://www.w3.org/2000/svg"
                  width="20.243"
                  height="18.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>
            <!-- <p>请同学们登录课程平台进行“生活事件评价”。</p> -->
            <div class="xyx-title">生活事件评价</div>
            <div v-if="chapter002.isShowXyx04">
              <div class="xyx-text">
                请同学们根据下表分析在过去 3
                个月内,以下生活事件对你造成的影响,得分越高反映
                负性生活事件对你的影响程度越高。
              </div>
              <div class="tablePublic">
                <table>
                  <thead>
                    <tr>
                      <th>在过去 3 个月内</th>
                      <th>未发生</th>
                      <th>无影响</th>
                      <th>轻度</th>
                      <th>中度</th>
                      <th>重度</th>
                      <th>极重度</th>
                    </tr>
                  </thead>
                  <tbody>
                    <tr>
                      <td style="text-align: left">1. 被人误会</td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text1')"
                          type="checkbox"
                          value="0"
                          :checked="chapter002.tablecyc2.text1"
                        />0
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text2')"
                          type="checkbox"
                          value="1"
                          :checked="chapter002.tablecyc2.text2"
                        />1
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text3')"
                          type="checkbox"
                          value="2"
                          :checked="chapter002.tablecyc2.text3"
                        />2
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text4')"
                          type="checkbox"
                          value="3"
                          :checked="chapter002.tablecyc2.text4"
                        />3
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text5')"
                          type="checkbox"
                          value="4"
                          :checked="chapter002.tablecyc2.text5"
                        />4
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text6')"
                          type="checkbox"
                          value="5"
                          :checked="chapter002.tablecyc2.text6"
                        />5
                      </td>
                    </tr>
                    <tr>
                      <td style="text-align: left">2. 受人歧视</td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text82')"
                          type="checkbox"
                          value="0"
                          :checked="chapter002.tablecyc2.text82"
                        />0
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text83')"
                          type="checkbox"
                          value="1"
                          :checked="chapter002.tablecyc2.text83"
                        />1
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text84')"
                          type="checkbox"
                          value="2"
                          :checked="chapter002.tablecyc2.text84"
                        />2
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text85')"
                          type="checkbox"
                          value="3"
                          :checked="chapter002.tablecyc2.text85"
                        />3
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text86')"
                          type="checkbox"
                          value="4"
                          :checked="chapter002.tablecyc2.text86"
                        />4
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text87')"
                          type="checkbox"
                          value="5"
                          :checked="chapter002.tablecyc2.text87"
                        />5
                      </td>
                    </tr>
                    <tr>
                      <td style="text-align: left">3. 考试失败</td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text88')"
                          type="checkbox"
                          value="0"
                          :checked="chapter002.tablecyc2.text88"
                        />0
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text89')"
                          type="checkbox"
                          value="1"
                          :checked="chapter002.tablecyc2.text89"
                        />1
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text90')"
                          type="checkbox"
                          value="2"
                          :checked="chapter002.tablecyc2.text90"
                        />2
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text92')"
                          type="checkbox"
                          value="3"
                          :checked="chapter002.tablecyc2.text92"
                        />3
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text93')"
                          type="checkbox"
                          value="4"
                          :checked="chapter002.tablecyc2.text93"
                        />4
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text94')"
                          type="checkbox"
                          value="5"
                          :checked="chapter002.tablecyc2.text94"
                        />5
                      </td>
                    </tr>
                    <tr>
                      <td style="text-align: left">4. 好友纠纷</td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text95')"
                          type="checkbox"
                          value="0"
                          :checked="chapter002.tablecyc2.text95"
                        />0
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text96')"
                          type="checkbox"
                          value="1"
                          :checked="chapter002.tablecyc2.text96"
                        />1
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text97')"
                          type="checkbox"
                          value="2"
                          :checked="chapter002.tablecyc2.text97"
                        />2
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text98')"
                          type="checkbox"
                          value="3"
                          :checked="chapter002.tablecyc2.text98"
                        />3
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text99')"
                          type="checkbox"
                          value="4"
                          :checked="chapter002.tablecyc2.text99"
                        />4
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text100')"
                          type="checkbox"
                          value="5"
                          :checked="chapter002.tablecyc2.text100"
                        />5
                      </td>
                    </tr>
                    <tr>
                      <td style="text-align: left">5. 生活习惯变化</td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text101')"
                          type="checkbox"
                          value="0"
                          :checked="chapter002.tablecyc2.text101"
                        />0
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text102')"
                          type="checkbox"
                          value="1"
                          :checked="chapter002.tablecyc2.text102"
                        />1
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text103')"
                          type="checkbox"
                          value="2"
                          :checked="chapter002.tablecyc2.text103"
                        />2
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text104')"
                          type="checkbox"
                          value="3"
                          :checked="chapter002.tablecyc2.text104"
                        />3
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text105')"
                          type="checkbox"
                          value="4"
                          :checked="chapter002.tablecyc2.text105"
                        />4
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text106')"
                          type="checkbox"
                          value="5"
                          :checked="chapter002.tablecyc2.text106"
                        />5
                      </td>
                    </tr>
                    <tr>
                      <td style="text-align: left">6. 讨厌上学</td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text107')"
                          type="checkbox"
                          value="0"
                          :checked="chapter002.tablecyc2.text107"
                        />0
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text108')"
                          type="checkbox"
                          value="1"
                          :checked="chapter002.tablecyc2.text108"
                        />1
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text109')"
                          type="checkbox"
                          value="2"
                          :checked="chapter002.tablecyc2.text109"
                        />2
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text110')"
                          type="checkbox"
                          value="3"
                          :checked="chapter002.tablecyc2.text110"
                        />3
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text111')"
                          type="checkbox"
                          value="4"
                          :checked="chapter002.tablecyc2.text111"
                        />4
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text112')"
                          type="checkbox"
                          value="5"
                          :checked="chapter002.tablecyc2.text112"
                        />5
                      </td>
                    </tr>
                    <tr>
                      <td style="text-align: left">7. 有恋爱问题</td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text113')"
                          type="checkbox"
                          value="0"
                          :checked="chapter002.tablecyc2.text113"
                        />0
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text114')"
                          type="checkbox"
                          value="1"
                          :checked="chapter002.tablecyc2.text114"
                        />1
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text115')"
                          type="checkbox"
                          value="2"
                          :checked="chapter002.tablecyc2.text115"
                        />2
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text116')"
                          type="checkbox"
                          value="3"
                          :checked="chapter002.tablecyc2.text116"
                        />3
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text117')"
                          type="checkbox"
                          value="4"
                          :checked="chapter002.tablecyc2.text117"
                        />4
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text118')"
                          type="checkbox"
                          value="5"
                          :checked="chapter002.tablecyc2.text118"
                        />5
                      </td>
                    </tr>
                    <tr>
                      <td style="text-align: left">8. 远离家人</td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text119')"
                          type="checkbox"
                          value="0"
                          :checked="chapter002.tablecyc2.text119"
                        />0
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text120')"
                          type="checkbox"
                          value="1"
                          :checked="chapter002.tablecyc2.text120"
                        />1
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text122')"
                          type="checkbox"
                          value="2"
                          :checked="chapter002.tablecyc2.text122"
                        />2
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text123')"
                          type="checkbox"
                          value="3"
                          :checked="chapter002.tablecyc2.text123"
                        />3
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text121')"
                          type="checkbox"
                          value="4"
                          :checked="chapter002.tablecyc2.text121"
                        />4
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text124')"
                          type="checkbox"
                          value="5"
                          :checked="chapter002.tablecyc2.text124"
                        />5
                      </td>
                    </tr>
                    <tr>
                      <td style="text-align: left">9. 学习负担重</td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text125')"
                          type="checkbox"
                          value="0"
                          :checked="chapter002.tablecyc2.text125"
                        />0
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text126')"
                          type="checkbox"
                          value="1"
                          :checked="chapter002.tablecyc2.text126"
                        />1
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text127')"
                          type="checkbox"
                          value="2"
                          :checked="chapter002.tablecyc2.text127"
                        />2
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text128')"
                          type="checkbox"
                          value="3"
                          :checked="chapter002.tablecyc2.text128"
                        />3
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text129')"
                          type="checkbox"
                          value="4"
                          :checked="chapter002.tablecyc2.text129"
                        />4
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text130')"
                          type="checkbox"
                          value="5"
                          :checked="chapter002.tablecyc2.text130"
                        />5
                      </td>
                    </tr>
                    <tr>
                      <td style="text-align: left">10. 与老师有矛盾</td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text131')"
                          type="checkbox"
                          value="0"
                          :checked="chapter002.tablecyc2.text131"
                        />0
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text132')"
                          type="checkbox"
                          value="1"
                          :checked="chapter002.tablecyc2.text132"
                        />1
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text133')"
                          type="checkbox"
                          value="2"
                          :checked="chapter002.tablecyc2.text133"
                        />2
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text134')"
                          type="checkbox"
                          value="3"
                          :checked="chapter002.tablecyc2.text134"
                        />3
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text135')"
                          type="checkbox"
                          value="4"
                          :checked="chapter002.tablecyc2.text135"
                        />4
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text136')"
                          type="checkbox"
                          value="5"
                          :checked="chapter002.tablecyc2.text136"
                        />5
                      </td>
                    </tr>
                    <tr>
                      <td style="text-align: left">11. 本人患急重病</td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text137')"
                          type="checkbox"
                          value="0"
                          :checked="chapter002.tablecyc2.text137"
                        />0
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text138')"
                          type="checkbox"
                          value="1"
                          :checked="chapter002.tablecyc2.text138"
                        />1
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text139')"
                          type="checkbox"
                          value="2"
                          :checked="chapter002.tablecyc2.text139"
                        />2
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text140')"
                          type="checkbox"
                          value="3"
                          :checked="chapter002.tablecyc2.text140"
                        />3
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text141')"
                          type="checkbox"
                          value="4"
                          :checked="chapter002.tablecyc2.text141"
                        />4
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text142')"
                          type="checkbox"
                          value="5"
                          :checked="chapter002.tablecyc2.text142"
                        />5
                      </td>
                    </tr>
                    <tr>
                      <td style="text-align: left">12. 亲友急重病</td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text7')"
                          type="checkbox"
                          value="0"
                          :checked="chapter002.tablecyc2.text7"
                        />0
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text8')"
                          type="checkbox"
                          value="1"
                          :checked="chapter002.tablecyc2.text8"
                        />1
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text9')"
                          type="checkbox"
                          value="2"
                          :checked="chapter002.tablecyc2.text9"
                        />2
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text10')"
                          type="checkbox"
                          value="3"
                          :checked="chapter002.tablecyc2.text10"
                        />3
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text11')"
                          type="checkbox"
                          value="4"
                          :checked="chapter002.tablecyc2.text11"
                        />4
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text12')"
                          type="checkbox"
                          value="5"
                          :checked="chapter002.tablecyc2.text12"
                        />5
                      </td>
                    </tr>
                    <tr>
                      <td style="text-align: left">13. 亲友死亡</td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text13')"
                          type="checkbox"
                          value="0"
                          :checked="chapter002.tablecyc2.text13"
                        />0
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text14')"
                          type="checkbox"
                          value="1"
                          :checked="chapter002.tablecyc2.text14"
                        />1
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text15')"
                          type="checkbox"
                          value="2"
                          :checked="chapter002.tablecyc2.text15"
                        />2
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text16')"
                          type="checkbox"
                          value="3"
                          :checked="chapter002.tablecyc2.text16"
                        />3
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text17')"
                          type="checkbox"
                          value="4"
                          :checked="chapter002.tablecyc2.text17"
                        />4
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text18')"
                          type="checkbox"
                          value="5"
                          :checked="chapter002.tablecyc2.text18"
                        />5
                      </td>
                    </tr>
                    <tr>
                      <td style="text-align: left">14. 失窃</td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text19')"
                          type="checkbox"
                          value="0"
                          :checked="chapter002.tablecyc2.text19"
                        />0
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text20')"
                          type="checkbox"
                          value="1"
                          :checked="chapter002.tablecyc2.text20"
                        />1
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text21')"
                          type="checkbox"
                          value="2"
                          :checked="chapter002.tablecyc2.text21"
                        />2
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text22')"
                          type="checkbox"
                          value="3"
                          :checked="chapter002.tablecyc2.text22"
                        />3
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text23')"
                          type="checkbox"
                          value="4"
                          :checked="chapter002.tablecyc2.text23"
                        />4
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text24')"
                          type="checkbox"
                          value="5"
                          :checked="chapter002.tablecyc2.text24"
                        />5
                      </td>
                    </tr>
                    <tr>
                      <td style="text-align: left">15. 当众丢面子</td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text25')"
                          type="checkbox"
                          value="0"
                          :checked="chapter002.tablecyc2.text25"
                        />0
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text26')"
                          type="checkbox"
                          value="1"
                          :checked="chapter002.tablecyc2.text26"
                        />1
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text27')"
                          type="checkbox"
                          value="2"
                          :checked="chapter002.tablecyc2.text27"
                        />2
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text28')"
                          type="checkbox"
                          value="3"
                          :checked="chapter002.tablecyc2.text28"
                        />3
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text29')"
                          type="checkbox"
                          value="4"
                          :checked="chapter002.tablecyc2.text29"
                        />4
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text30')"
                          type="checkbox"
                          value="5"
                          :checked="chapter002.tablecyc2.text30"
                        />5
                      </td>
                    </tr>
                    <tr>
                      <td style="text-align: left">16. 家庭经济困难</td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text31')"
                          type="checkbox"
                          value="0"
                          :checked="chapter002.tablecyc2.text31"
                        />0
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text32')"
                          type="checkbox"
                          value="1"
                          :checked="chapter002.tablecyc2.text32"
                        />1
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text33')"
                          type="checkbox"
                          value="2"
                          :checked="chapter002.tablecyc2.text33"
                        />2
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text34')"
                          type="checkbox"
                          value="3"
                          :checked="chapter002.tablecyc2.text34"
                        />3
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text35')"
                          type="checkbox"
                          value="4"
                          :checked="chapter002.tablecyc2.text35"
                        />4
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text36')"
                          type="checkbox"
                          value="5"
                          :checked="chapter002.tablecyc2.text36"
                        />5
                      </td>
                    </tr>
                    <tr>
                      <td style="text-align: left">17. 家庭矛盾</td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text37')"
                          type="checkbox"
                          value="0"
                          :checked="chapter002.tablecyc2.text37"
                        />0
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text38')"
                          type="checkbox"
                          value="1"
                          :checked="chapter002.tablecyc2.text38"
                        />1
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text39')"
                          type="checkbox"
                          value="2"
                          :checked="chapter002.tablecyc2.text39"
                        />2
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text40')"
                          type="checkbox"
                          value="3"
                          :checked="chapter002.tablecyc2.text40"
                        />3
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text41')"
                          type="checkbox"
                          value="4"
                          :checked="chapter002.tablecyc2.text41"
                        />4
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text42')"
                          type="checkbox"
                          value="5"
                          :checked="chapter002.tablecyc2.text42"
                        />5
                      </td>
                    </tr>
                    <tr>
                      <td style="text-align: left">18. 评选落空</td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text43')"
                          type="checkbox"
                          value="0"
                          :checked="chapter002.tablecyc2.text43"
                        />0
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text44')"
                          type="checkbox"
                          value="1"
                          :checked="chapter002.tablecyc2.text44"
                        />1
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text45')"
                          type="checkbox"
                          value="2"
                          :checked="chapter002.tablecyc2.text45"
                        />2
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text46')"
                          type="checkbox"
                          value="3"
                          :checked="chapter002.tablecyc2.text46"
                        />3
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text47')"
                          type="checkbox"
                          value="4"
                          :checked="chapter002.tablecyc2.text47"
                        />4
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text48')"
                          type="checkbox"
                          value="5"
                          :checked="chapter002.tablecyc2.text48"
                        />5
                      </td>
                    </tr>
                    <tr>
                      <td style="text-align: left">19. 受批评、处分</td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text6')"
                          type="checkbox"
                          value="0"
                          :checked="chapter002.tablecyc2.text49"
                        />0
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text6')"
                          type="checkbox"
                          value="1"
                          :checked="chapter002.tablecyc2.text50"
                        />1
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text6')"
                          type="checkbox"
                          value="2"
                          :checked="chapter002.tablecyc2.text51"
                        />2
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text6')"
                          type="checkbox"
                          value="3"
                          :checked="chapter002.tablecyc2.text52"
                        />3
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text6')"
                          type="checkbox"
                          value="4"
                          :checked="chapter002.tablecyc2.text53"
                        />4
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text6')"
                          type="checkbox"
                          value="5"
                          :checked="chapter002.tablecyc2.text54"
                        />5
                      </td>
                    </tr>
                    <tr>
                      <td style="text-align: left">20. 转学 / 休学</td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text55')"
                          type="checkbox"
                          value="0"
                          :checked="chapter002.tablecyc2.text55"
                        />0
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text56')"
                          type="checkbox"
                          value="1"
                          :checked="chapter002.tablecyc2.text56"
                        />1
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text57')"
                          type="checkbox"
                          value="2"
                          :checked="chapter002.tablecyc2.text57"
                        />2
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text58')"
                          type="checkbox"
                          value="3"
                          :checked="chapter002.tablecyc2.text58"
                        />3
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text59')"
                          type="checkbox"
                          value="4"
                          :checked="chapter002.tablecyc2.text59"
                        />4
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text60')"
                          type="checkbox"
                          value="5"
                          :checked="chapter002.tablecyc2.text60"
                        />5
                      </td>
                    </tr>
                    <tr>
                      <td style="text-align: left">21. 违纪 / 违法</td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text61')"
                          type="checkbox"
                          value="0"
                          :checked="chapter002.tablecyc2.text61"
                        />0
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text62')"
                          type="checkbox"
                          value="1"
                          :checked="chapter002.tablecyc2.text62"
                        />1
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text63')"
                          type="checkbox"
                          value="2"
                          :checked="chapter002.tablecyc2.text63"
                        />2
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text64')"
                          type="checkbox"
                          value="3"
                          :checked="chapter002.tablecyc2.text64"
                        />3
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text65')"
                          type="checkbox"
                          value="4"
                          :checked="chapter002.tablecyc2.text65"
                        />4
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text66')"
                          type="checkbox"
                          value="5"
                          :checked="chapter002.tablecyc2.text66"
                        />5
                      </td>
                    </tr>
                    <tr>
                      <td style="text-align: left">22. 有升学压力</td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text67')"
                          type="checkbox"
                          value="0"
                          :checked="chapter002.tablecyc2.text67"
                        />0
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text68')"
                          type="checkbox"
                          value="1"
                          :checked="chapter002.tablecyc2.text68"
                        />1
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text69')"
                          type="checkbox"
                          value="2"
                          :checked="chapter002.tablecyc2.text69"
                        />2
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text70')"
                          type="checkbox"
                          value="3"
                          :checked="chapter002.tablecyc2.text70"
                        />3
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text71')"
                          type="checkbox"
                          value="4"
                          :checked="chapter002.tablecyc2.text71"
                        />4
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text72')"
                          type="checkbox"
                          value="5"
                          :checked="chapter002.tablecyc2.text72"
                        />5
                      </td>
                    </tr>
                    <tr>
                      <td style="text-align: left">23. 打架斗殴</td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text71')"
                          type="checkbox"
                          value="0"
                          :checked="chapter002.tablecyc2.text71"
                        />0
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text72')"
                          type="checkbox"
                          value="1"
                          :checked="chapter002.tablecyc2.text72"
                        />1
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text73')"
                          type="checkbox"
                          value="2"
                          :checked="chapter002.tablecyc2.text73"
                        />2
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text74')"
                          type="checkbox"
                          value="3"
                          :checked="chapter002.tablecyc2.text74"
                        />3
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text75')"
                          type="checkbox"
                          value="4"
                          :checked="chapter002.tablecyc2.text75"
                        />4
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text76')"
                          type="checkbox"
                          value="5"
                          :checked="chapter002.tablecyc2.text76"
                        />5
                      </td>
                    </tr>
                    <tr>
                      <td style="text-align: left">24. 遭父母打骂</td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text77')"
                          type="checkbox"
                          value="0"
                          :checked="chapter002.tablecyc2.text77"
                        />0
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text78')"
                          type="checkbox"
                          value="1"
                          :checked="chapter002.tablecyc2.text78"
                        />1
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text79')"
                          type="checkbox"
                          value="2"
                          :checked="chapter002.tablecyc2.text79"
                        />2
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text80')"
                          type="checkbox"
                          value="3"
                          :checked="chapter002.tablecyc2.text80"
                        />3
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text81')"
                          type="checkbox"
                          value="4"
                          :checked="chapter002.tablecyc2.text81"
                        />4
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text82')"
                          type="checkbox"
                          value="5"
                          :checked="chapter002.tablecyc2.text82"
                        />5
                      </td>
                    </tr>
                    <tr>
                      <td style="text-align: left">25. 学业上有家庭压力</td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text221')"
                          type="checkbox"
                          value="0"
                          :checked="chapter002.tablecyc2.text221"
                        />0
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text222')"
                          type="checkbox"
                          value="1"
                          :checked="chapter002.tablecyc2.text222"
                        />1
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text223')"
                          type="checkbox"
                          value="2"
                          :checked="chapter002.tablecyc2.text223"
                        />2
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text224')"
                          type="checkbox"
                          value="3"
                          :checked="chapter002.tablecyc2.text224"
                        />3
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text225')"
                          type="checkbox"
                          value="4"
                          :checked="chapter002.tablecyc2.text225"
                        />4
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text226')"
                          type="checkbox"
                          value="5"
                          :checked="chapter002.tablecyc2.text226"
                        />5
                      </td>
                    </tr>
                    <tr>
                      <td style="text-align: left">26. 遭意外事故</td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text77')"
                          type="checkbox"
                          value="0"
                          :checked="chapter002.tablecyc2.text227"
                        />0
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text78')"
                          type="checkbox"
                          value="1"
                          :checked="chapter002.tablecyc2.text228"
                        />1
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text79')"
                          type="checkbox"
                          value="2"
                          :checked="chapter002.tablecyc2.text229"
                        />2
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text80')"
                          type="checkbox"
                          value="3"
                          :checked="chapter002.tablecyc2.text230"
                        />3
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text81')"
                          type="checkbox"
                          value="4"
                          :checked="chapter002.tablecyc2.text231"
                        />4
                      </td>
                      <td>
                        <input
                          @change="changecyc2($event, 'text82')"
                          type="checkbox"
                          value="5"
                          :checked="chapter002.tablecyc2.text232"
                        />5
                      </td>
                    </tr>
                  </tbody>
                </table>
              </div>
              <p style="font-size: 14px">
                注:人际压力 ( 1、2、4、15)、学习压力 (
                3、9、22、25)、受惩罚
                (18、19、20、21、23、24、26)、丧失(11、12、13、14、16、17)、适应(
                5、6、7、8、10)
              </p>
            </div>
          </div>
          <h4 id="d004">四、健康是每个人的生命之基</h4>
          <p>
            人民教育家陶行知先生曾指出:“人生第一要事是康健,第二要事是康健,第三要事是康健。”<a
              id="w2"
            ></a
            ><a href="chapter002.html#m2"><sup>[2]</sup></a
            >从生命的角度来看,每个人的生命都只有一次。相对于功名利禄而言,健康才是第一位的。如果没有健康,其他任何事情的意义就会大打折扣或失去意义。当下全球发生的新型冠状病毒肺炎疫情更加凸显出健康的重要。抗击病毒需要有较强的免疫力,健康的身体、健康的生活方式、科学的防控措施是战胜病毒的重要法宝。
          </p>
          <p>
            健康不仅对自己有益,而且对他人、对社会、对国家都有益。拥有健康的体魄既是为祖国和人民服务的基本前提,也是家庭拥有幸福生活和个体彰显生命活力的基本前提。为了筑牢我们的生命之基,每个人都应树立“做自己健康的第一责任人”的意识,对自己的健康负责。健康呈现的是生命的正能量状态。健康的生命聚在一起,必然会形成一个生命的正能量场,为彼此输送生命所需的正能量。
          </p>
        </div>
      </div>
    </div>
 
    <div class="page-box" page="21">
      <div v-if="showPageList.indexOf(21) > -1">
        <div class="bodystyle">
          <h3 class="lefth3" id="c016">
            <img class="img-gh1" alt="" src="../image/dy3-xm5.jpg" />
          </h3>
          <div class="bk-tyzg">
            <p class="bj1-tyzg">体育中国</p>
            <p class="block">
              自从乒乓球被列为奥运会比赛项目以来,我国获得了全部37枚金牌中的32枚。在2020年东京奥运会中,我国共获得男单、女单、男团、女团4枚金牌。截至2023年5月底,我国乒乓球队有117人获得世界冠军,获得259枚金牌(奥运会金牌32枚、世乒赛金牌156枚、世界杯金牌71枚)。
            </p>
            <p class="block">
              我国乒乓球名将众多,如邓亚萍等已退役的世界乒坛代表人物,又如拿到“大满贯”的现役乒乓球国手马龙、许昕等,均为推动我国乃至世界乒乓球的发展起到重要作用。
            </p>
          </div>
          <div class="bk-xyx">
            <p class="bj1-xyx">议一议</p>
            <p>1.请同学们搜索“乒乓外交”,并讨论其对我国外交方面的促进作用。</p>
            <p>
              2.请同学们搜索2020年东京奥运会乒乓球女团项目完赛后,我国国家乒乓球队与香港地区乒乓球队颁奖合影的照片,并讨论其积极意义。
            </p>
            <textarea rows="6" v-model="chapter002.textBybItem1"></textarea>
          </div>
          <div class="bk-dy3xxmb">
            <p class="bj1-dy3xxmb">学习目标</p>
            <p class="block">
              1.了解乒乓球运动的特点、价值、技术动作及基础战术配合的相关基础知识。
            </p>
            <p class="block">
              2.掌握乒乓球的正反手攻球、搓球和弧圈球技术,左推右攻、推挡侧身攻的组合技能,以及发球抢攻、接发球抢攻、对攻、搓攻等战术。
            </p>
            <p class="block">
              3.培养良好的体育锻炼习惯、遵守体育道德,积极参加班级和学校组织的乒乓球活动、比赛,在学练和比赛中培养遵纪守法、团结互助、积极乐观、勇于拼搏的品格。
            </p>
          </div>
          <h4 class="h4-dy3" id="d066">
            <span class="h4-dy3s">一</span> 了解乒乓球运动
          </h4>
          <p>
            乒乓球运动是一项由两名或四名运动员在乒乓球桌上进行隔网攻守的运动,在世界上许多地方流行。乒乓球运动1900年起源于英国,20世纪初在欧洲和亚洲蓬勃开展起来。乒乓球运动易于开展,打法多样,球路变化丰富,技术动作要求协调、灵敏、精确,观赏性强。乒乓球运动能有效发展力量、速度、耐力、灵敏性等身体素质,同时也能锻炼和培养勇敢、顽强、机智、果断等心理品质。乒乓球运动对今后从事需久坐、久站的职业,尤其是需要进行精细化操作的职业人群身体状况的改善有积极的作用。“乒乓精神”所蕴含的技术创新和精益求精也是同学们应该学习和践行的职业精神。乒乓球运动在国内外广泛开展,乒乓球世界杯、世锦赛与奥运会并称世界乒乓球三大赛事。
          </p>
          <div class="pdf-con">
            <div class="pdf-view"><img :src="pingpang" alt=""><span @click="toUrl(1)">乒乓球的常用术语(一)</span></div>
            <div class="pdf-view"><img :src="pingpang" alt=""><span @click="toUrl(2)">乒乓球的常用术语(二)</span></div>
          </div>
        </div>
      </div>
    </div>
  </div>
</template>
<script>
import getResourcePath from "@/assets/methods/resources.js";
export default {
  name: "chapter-2",
  props: {
    showPageList: {
      type: Array,
    },
    questionData: {
      type: Object,
    },
  },
  data() {
    return {
      isShowScore1: false,
      picArr: [require("../image/0017-1.jpg")],
      picOneUrl: require("../image/0017-1.jpg"),
      picArr2: [require("../image/0021-1.jpg")],
      picOneUrl2: require("../image/0021-1.jpg"),
      pingpang:require('../image/pdf.png'),
      chapter002: {
        isShowXyx01: true,
        isShowXyx02: true,
        isShowXyx03: true,
        isShowXyx04: true,
        isShowXyx05: true,
        isShowXyx06: true,
        score1: 0,
        tablexyx1: {},
        tablexyx02: {
          text2: "第一次跑,感觉有点儿累,很枯燥",
          text6: "和同学一起跑,很开心,感觉没那么累了",
          text10: "下雨,明天补上",
        },
        tablebyb1: {},
        tablecyc2: {},
        tkItem01: {},
      },
    };
  },
  created() {
    const localData = JSON.parse(localStorage.getItem("chapter002"));
    if (localData) {
      this.chapter002 = { ...Object.assign(this.chapter002, localData) };
      console.log(this.chapter002);
    }
  },
  methods: {
    activityXyx1() {
      this.chapter002.isShowXyx01 = !this.chapter002.isShowXyx01;
      console.log(this.chapter002.isShowXyx01);
    },
    activityXyx2() {
      this.chapter002.isShowXyx02 = !this.chapter002.isShowXyx02;
    },
    activityXyx3() {
      this.chapter002.isShowXyx03 = !this.chapter002.isShowXyx03;
    },
    activityXyx4() {
      this.chapter002.isShowXyx04 = !this.chapter002.isShowXyx04;
    },
    activityXyx5() {
      this.chapter002.isShowXyx05 = !this.chapter002.isShowXyx05;
    },
    toUrl(val){
      if(val ==1){
        window.open(getResourcePath('54741d14a21eb47b2ed06a2231271cd5'))
      }else {
        window.open(getResourcePath('1b7ecc924bfab900ec10f0ed4bb2466b'))
      }
    },
    submit01() {
      this.isShowScore1 = true;
    },
    resetData01() {
      this.chapter002.tablexyx1 = {};
    },
    changeBox(e, val) {
      this.isShowScore1 = false;
      this.chapter002.tablexyx1[val] = e.target.checked;
      if (e.target.checked) {
        this.chapter002.score1 += Number(e.target.value);
      } else {
        if (this.chapter002.score1 == 0) {
          return false;
        }
        if (!e.target.checked) {
          this.chapter002.score1 -= Number(e.target.value);
        }
      }
      localStorage.setItem("chapter002", JSON.stringify(this.chapter002));
    },
    changeByb(e, val) {
      this.chapter002.tablebyb1[val] = e.target.checked;
      localStorage.setItem("chapter002", JSON.stringify(this.chapter002));
    },
    changecyc2(e, val) {
      this.chapter002.tablecyc2[val] = e.target.checked;
      localStorage.setItem("chapter002", JSON.stringify(this.chapter002));
    },
    changeAssess(e, val) {
      this.chapter002.tkItem01[val] = e.target.checked;
      localStorage.setItem("chapter002", JSON.stringify(this.chapter002));
    },
    changeFinish(e, val) {
      this.chapter002.tablexyx02[val] = e.target.value;
      localStorage.setItem("chapter002", JSON.stringify(this.chapter002));
    },
  },
};
</script>