闫增涛
2024-05-29 e691ab391a995f6cfad681dc1fe1d008e8fb6ed9
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
<template>
  <div class="chapter" num="2">
    <div class="page-box" page="7">
      <div v-if="showPageList.indexOf(7) > -1">
        <div class="bodystyle topImg">
          <h2 id="b001">
            <img class="img-0" alt="" src="../image/dy1.jpg" />
          </h2>
          <div class="bk">
            <div class="bj1">
              <p class="left">
                <img class="img-gn" alt="" src="../image/dy-xxmb.jpg" />
              </p>
            </div>
            <p class="block">通过本单元的学习,同学们应当实现如下学习目标。</p>
            <p class="block">1.解释婴幼儿生活保育的概念。</p>
            <p class="block">2.说出我国婴幼儿保育工作的发展历程和特点。</p>
            <p class="block">
              3.结合自己的理解,解释婴幼儿保育的目标及工作的意义。
            </p>
            <p class="block">
              4.小组合作设计托育园走访方案,开展对托育园的调研。
            </p>
            <p class="block">
              5.通过记录、拍照、摄像等方式,记录托育园的一日生活,说出一日生活的各环节的名称。
            </p>
            <p class="block">
              6.通过整理托育园一日生活中保育的要求及具体内容,归纳托育园一日生活保育的主要内容。
            </p>
            <p class="block">7.初步了解《托育机构保育指导大纲(试行)》。</p>
            <p class="block">
              8.通过走访托育园,建立热爱婴幼儿、尊重生命的职业情感。
            </p>
          </div>
          <div class="bk">
            <div class="bj1">
              <p class="left">
                <img class="img-gn" alt="" src="../image/dy-xxjy.jpg" />
              </p>
            </div>
            <p class="block">
              为了获得更好的学习效果,建议同学们在学习这部分内容时做到以下几点。
            </p>
            <p class="block">
              1.与0~3岁婴幼儿的家长或托育园工作人员交流、了解婴幼儿生活保育的主要内容。
            </p>
            <p class="block">
              2.登录国家卫生健康委员会或地方政府的卫生健康委员会网站,收集并阅读有关0~3岁婴幼儿照护的文件。
            </p>
            <p class="block">
              3.利用周末或假期,到托育机构进行社会实践,加深自己对婴幼儿生活保育的理解。
            </p>
            <p class="block">建议学时:1学时。</p>
          </div>
        </div>
      </div>
    </div>
    <div class="page-box" page="8">
      <div v-if="showPageList.indexOf(8) > -1">
        <div class="header">
          <div class="pageHeader-first">
            <div class="header-bj"></div>
            <div class="content">
              <div class="pageStr">1-2</div>
              <div class="title">
                <img src="../image/chapter.png" alt="" />
                <span class="cahpter">婴幼儿生活照护·行动手册</span>
              </div>
            </div>
          </div>
        </div>
        <div class="bodystyle">
          <div class="bk">
            <div class="bj1">
              <p class="left">
                <img class="img-gn" alt="" src="../image/dy-xxdh.jpg" />
              </p>
            </div>
            <p class="center">
              <el-image
                class="chapter001-img-0018"
                :src="picOneUrl"
                :preview-src-list="picArr"
              />
            </p>
            <!-- <p class="center">
            <img
              class="img-a"
              alt=""
              @click="previewOne()"
              src="../image/0018-1.jpg"
            />
          </p> -->
          </div>
          <div class="bk">
            <div class="bj1">
              <p class="left">
                <img class="img-gn" alt="" src="../image/dy-xgzl.jpg" />
              </p>
            </div>
            <p class="center"><b>托育园的一天</b></p>
            <p class="block">
              7:30—9:30 家长送小朋友入园。在进入教室之前,家长可以把小朋友的外套挂在指定的衣架上。此时,保健医生进行每日晨检(测量体温、与家长沟通孩子的基本身体情况等)。
            </p>
            <p class="block">
              9:30—11:30 小朋友集体排队,戴好统一的帽子,两两拉手,小朋友靠右走,老师靠左走,一起到户外活动场地玩耍。老师和小朋友一起跳绳、做游戏、放风筝、玩游乐设施等。户外活动结束后,老师会引导小朋友做相应的卫生清洁工作(如厕、洗手),接着让小朋友喝水或吃点心。提倡自己的事情自己做,培养小朋友的动手和自理能力。
            </p>
            <p class="block">
              11:30—12:00 回到园区后有半小时的活动时间,老师会让年龄稍大的小朋友自己看绘本,并照看其他小朋友玩耍。
            </p>
            <p class="block">
              12:00—13:00 到了午餐时间,老师会让小朋友自己选择吃多少食物,所有小朋友都拿到食物后才开餐。因为小朋友的自理能力都比较强,吃饭、整理餐具、清洁卫生等事情都做得非常好。
            </p>
            <p class="block">
              13:00—14:30 到了午睡时间,老师会安静地守在一旁,照护小朋友午睡。
            </p>
            <p class="block">
              14:30—16:30 到了下午,小朋友在老师的带领下来到操场尽情地玩耍。
            </p>
            <p class="block">
              16:30—17:30 到了家长接孩子的时间,家长与老师交流后,便带领小朋友回家了。
            </p>
          </div>
          <h3 id="c001">
            <span class="bk-h3"
              ><span class="bj1-h3">一</span>  走近婴幼儿生活保育 </span
            >
          </h3>
          <p>
            3岁前的婴幼儿正处于生命的起步阶段,生长发育十分迅速,由于身心发育不完善,所以对自然环境和社会环境的适应能力弱,对疾病的抵抗力差。同时,婴幼儿自我照料及自我保护的能力、知识、经验等都比较缺乏,他们无法离开成人而独自在社会中生存。成人需要为他们提供必需的生活环境与条件,并精心地照护和养育,这是婴幼儿得以生存和健康成长的重要保证。有关这方面的工作,在托育机构中通常被称为保育工作。
          </p>
          <p>
            在倡导现代教育理念、重视早期教育的今天,更应注重对婴幼儿的科学保育。那么,科学的婴幼儿生活保育是什么样的呢?
          </p>
          <div class="tips-bk">
            <div class="bj-tip">
              视频:托育工作人员说婴幼儿生活保障
              <div @click="activityOne">
                <svg
                  xmlns="http://www.w3.org/2000/svg"
                  xmlns:xlink="http://www.w3.org/1999/xlink"
                  width="20.863"
                  height="20.817"
                  viewBox="0 0 19.863 13.817"
                >
                  <g transform="translate(-40.961 -184.321)">
                    <path
                      class="a"
                      d="M4.647,1.4a1,1,0,0,1,1.707,0L10.07,7.479A1,1,0,0,1,9.217,9H1.783A1,1,0,0,1,.93,7.479Z"
                      transform="translate(51.824 196.82) rotate(-90)"
                    />
                    <path
                      class="b"
                      d="M3322.914-15094.863h-10.363a2.593,2.593,0,0,1-2.59-2.59v-8.638a2.593,2.593,0,0,1,2.59-2.59h10.363a2.6,2.6,0,0,1,2.594,2.59v1.729c.013.027,0,3.6,0,5.141v1.769A2.6,2.6,0,0,1,3322.914-15094.863Zm-6.9-9.933a.862.862,0,0,0-.755.468.947.947,0,0,0-.114.455v4.2a.9.9,0,0,0,.868.922.848.848,0,0,0,.432-.121l3.45-2.12a.956.956,0,0,0,.315-1.259.874.874,0,0,0-.322-.341l-3.451-2.086A.813.813,0,0,0,3316.01-15104.8Z"
                      transform="translate(-3269 15293.001)"
                    />
                  </g>
                </svg>
              </div>
            </div>
            <div
              class="tips-file"
              v-if="chapter001.isOpenOne && chapter001.videOneUrl"
            >
              <video
                webkit-playsinline="true"
                x-webkit-airplay="true"
                playsinline="true"
                x5-video-orientation="h5"
                x5-video-player-fullscreen="true"
                x5-playsinline=""
                controls
                class="video-border w100"
                :src="chapter001.videOneUrl"
              ></video>
            </div>
          </div>
        </div>
      </div>
    </div>
    <div class="page-box" page="9">
      <div v-if="showPageList.indexOf(9) > -1">
        <div class="header">
          <div class="pageHeader-second">
            <div class="second-con">
              <div class="second-left"></div>
              <div class="second-right">
                <img src="../image/pageImg.png" alt="" />
                <span class="pageStr">单元一·初始婴幼儿生活保育</span>
                <span class="pageNum">1-3</span>
              </div>
            </div>
            <div class="borderLine"></div>
          </div>
        </div>
        <div class="bodystyle">
          <h4 id="d001">
            ▶▶ 活动1:解释婴幼儿生活保育的概念<span class="fontsz1"
              >>>>>>>>></span
            >
          </h4>
          <p>
            保育员小王认为,婴幼儿生活保育就是管好婴幼儿的吃、喝、拉、撒、睡。你认为小王的说法对吗?为什么?
          </p>
          <div class="bk-tx">
            <textarea
              v-model="chapter001.textAreaItem.text1"
              style="border: 0"
              placeholder="请输入内容"
              rows="5"
              @blur="onBlurChange('text1')"
            ></textarea>
          </div>
          <h4 id="d002">
            ▶▶ 活动2:归纳我国保育工作的发展历程和特点<span class="fontsz1"
              >>>>>>>>></span
            >
          </h4>
          <p>学习阅读手册的专题一的内容,填写表1-1-1。</p>
          <p class="img">表1-1-1 我国保育工作的发展历程和特点</p>
          <!-- <el-table/> -->
          <div style="margin-bottom: 40px">
            <table class="table111">
              <thead>
                <tr>
                  <th>时间</th>
                  <th>保育机构的名称</th>
                  <th>特点</th>
                </tr>
              </thead>
              <tbody>
                <tr>
                  <td>1949年</td>
                  <td>
                    <input
                      v-model="chapter001.table111.tbText1"
                      @blur="onBlurChangeTable('tbText1')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table111.tbText2"
                      @blur="onBlurChangeTable('tbText2')"
                    />
                  </td>
                </tr>
                <tr>
                  <td>1949-1980年</td>
                  <td>
                    <input
                      v-model="chapter001.table111.tbText3"
                      @blur="onBlurChangeTable('tbText3')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table111.tbText4"
                      @blur="onBlurChangeTable('tbText4')"
                    />
                  </td>
                </tr>
                <tr>
                  <td>1980-1990年</td>
                  <td>
                    <input
                      v-model="chapter001.table111.tbText5"
                      @blur="onBlurChangeTable('tbText5')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table111.tbText6"
                      @blur="onBlurChangeTable('tbText6')"
                    />
                  </td>
                </tr>
                <tr>
                  <td>1990-2000年</td>
                  <td>
                    <input
                      v-model="chapter001.table111.tbText7"
                      @blur="onBlurChangeTable('tbText7')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table111.tbText8"
                      @blur="onBlurChangeTable('tbText8')"
                    />
                  </td>
                </tr>
                <tr>
                  <td>2000年至今</td>
                  <td>
                    <input
                      v-model="chapter001.table111.tbText9"
                      @blur="onBlurChangeTable('tbText9')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table111.tbText10"
                      @blur="onBlurChangeTable('tbText10')"
                    />
                  </td>
                </tr>
              </tbody>
            </table>
            <!-- <p class="center"><img class="img-a" alt="" src="../image/0019-2.jpg"></p> -->
          </div>
          <h4 id="d003">
            ▶▶ 活动3:说明婴幼儿生活保育工作的目标及意义<span class="fontsz1"
              >>>>>>>>></span
            >
          </h4>
          <div class="bk-qjms">
            <p class="bj1-qjms">⊙ 情境描述1 ⊙</p>
            <p class="block">
              3岁的童童上了托育园,一次,童童在班级组织的户外活动中没有玩尽兴,活动结束回到班级后还想出去继续玩,保育员没有答应童童的要求。过了一会儿,童童举手说要去厕所,保育员当时正忙着给其他小朋友接水就答应了。没想到童童出去后直奔滑梯区尽兴地玩了起来,结果因为滑下去的时候没有人在旁监护,他的衣领被滑梯上的一个螺丝挂住了,造成窒息性死亡。
            </p>
          </div>
          <div class="bk-qjms">
            <p class="bj1-qjms">⊙ 情境描述2 ⊙</p>
            <p class="block">
              托育园的孩子正在午睡,值班的保育员感觉很疲惫,就在寝室的一张空床上睡着了。小江海想起床上厕所,但因看不到保育员,一直憋着不敢起来,后来实在憋不住了,只好自己急急忙忙地从床上下来准备去厕所,结果他一下子从床上掉了下去,被床边的椅子碰破了头,又由于憋尿太久,摔倒后造成膀胱受损。
            </p>
          </div>
        </div>
      </div>
    </div>
    <div class="page-box" page="10">
      <div v-if="showPageList.indexOf(10) > -1">
        <div class="header">
          <div class="pageHeader-first">
            <div class="header-bj"></div>
            <div class="content">
              <div class="pageStr">1-4</div>
              <div class="title">
                <img src="../image/chapter.png" alt="" />
                <span class="cahpter">婴幼儿生活照护·行动手册</span>
              </div>
            </div>
          </div>
        </div>
        <div class="bodystyle">
          <p>1.如果你是以上情境中的保育员,该如何避免意外的发生?</p>
          <div class="bk-tx">
            <textarea
              v-model="chapter001.textAreaItem.text2"
              style="border: 0"
              placeholder="请输入内容"
              rows="5"
              @blur="onBlurChange('text2')"
            ></textarea>
          </div>
          <p>
            2.结合阅读手册的专题一的内容,小组讨论婴幼儿生活保育工作的目标及意义。
          </p>
          <div class="bk-tx">
            <textarea
              v-model="chapter001.textAreaItem.text3"
              style="border: 0"
              placeholder="请输入内容"
              rows="5"
              @blur="onBlurChange('text3')"
            ></textarea>
          </div>
          <h3 id="c002">
            <span class="bk-h3"
              ><span class="bj1-h3">二</span>  走访托育园 </span
            >
          </h3>
          <p>
            托育园是为0~3岁婴幼儿提供照护的场所。托育园保育是婴幼儿照护服务的重要组成部分,是生命全周期服务管理的重要内容。托育园应创设适宜的环境,合理安排婴幼儿的一日生活和活动,从生活照料、安全看护、平衡膳食和早期学习等方面促进婴幼儿身体和心理的全面发展。婴幼儿生活保育主要包括给婴幼儿提供安全可探索的环境、营养的食物,保证婴幼儿充足的睡眠,指导婴幼儿学习盥洗、如厕、穿脱衣服等生活技能,逐步养成良好的饮食卫生习惯,以及独自入睡和作息规律的良好睡眠习惯。
          </p>
          <p>
            托育园的一日生活流程是怎样的?托育园的保育要求及具体内容又是什么?古人说:“耳闻之不如目见之,目见之不如足践之,足践之不如手辨之。”要想真正了解托育园,还需要实地走访才行。
          </p>
          <h4 id="d004">
            ▶▶ 活动1:制订调研计划<span class="fontsz1">>>>>>>>></span>
          </h4>
          <p><b>①活动准备</b></p>
          <p>
            1.阅读:阅读手册的专题一,以及《托育机构保育指导大纲(试行)》《上海市托幼机构保育工作手册》(上海教育出版社,2010年版)。
          </p>
        </div>
      </div>
    </div>
    <div class="page-box" page="11">
      <div v-if="showPageList.indexOf(11) > -1">
        <div class="header">
          <div class="pageHeader-second">
            <div class="second-con">
              <div class="second-left"></div>
              <div class="second-right">
                <img src="../image/pageImg.png" alt="" />
                <span class="pageStr">单元一·初始婴幼儿生活保育</span>
                <span class="pageNum">1-5</span>
              </div>
            </div>
            <div class="borderLine"></div>
          </div>
        </div>
        <div class="bodystyle">
          <p>2.准备资料:互联网上的相关资料。</p>
          <p>
            3.操作材料和设备:彩色纸若干、彩笔若干、签字笔、磁铁若干、电脑、流畅的网络。
          </p>
          <p><b>②活动过程</b></p>
          <p>
            1.成立调研小组。依据自由组合兼顾个人特长的原则确定小组人选,设立组长1名。根据成员的特长分配具体任务,如陈述、记录、拍照等。写明小组成员及分工。
          </p>
          <div class="bk-tx">
            <textarea
              v-model="chapter001.textAreaItem.text4"
              style="border: 0"
              placeholder="请输入内容"
              rows="5"
              @blur="onBlurChange('text4')"
            ></textarea>
          </div>
          <p>2.制订调研计划。</p>
          <p>(1)走访托育园需掌握的信息是什么?</p>
          <div class="bk-tx">
            <textarea
              v-model="chapter001.textAreaItem.text5"
              style="border: 0"
              placeholder="请输入内容"
              rows="5"
              @blur="onBlurChange('text5')"
            ></textarea>
          </div>
          <p>(2)拟解决的问题有哪些?</p>
          <div class="bk-tx">
            <textarea
              v-model="chapter001.textAreaItem.text6"
              style="border: 0"
              placeholder="请输入内容"
              rows="5"
              @blur="onBlurChange('text6')"
            ></textarea>
          </div>
          <p>(3)走访的主要任务及内容是什么?</p>
          <div class="bk-tx">
            <textarea
              v-model="chapter001.textAreaItem.text7"
              style="border: 0"
              placeholder="请输入内容"
              rows="5"
              @blur="onBlurChange('text7')"
            ></textarea>
          </div>
        </div>
      </div>
    </div>
    <div class="page-box" page="12">
      <div v-if="showPageList.indexOf(12) > -1">
        <div class="header">
          <div class="pageHeader-first">
            <div class="header-bj"></div>
            <div class="content">
              <div class="pageStr">1-6</div>
              <div class="title">
                <img src="../image/chapter.png" alt="" />
                <span class="cahpter">婴幼儿生活照护·行动手册</span>
              </div>
            </div>
          </div>
        </div>
        <div class="bodystyle">
          <p>(4)走访的主要流程有哪些?</p>
          <div class="bk-tx">
            <textarea
              v-model="chapter001.textAreaItem.text8"
              style="border: 0"
              placeholder="请输入内容"
              rows="5"
              @blur="onBlurChange('text8')"
            ></textarea>
          </div>
          <p>(5)走访的时间、方式、主要联系人及联系方式是什么?</p>
          <div class="bk-tx">
            <textarea
              v-model="chapter001.textAreaItem.text9"
              style="border: 0"
              placeholder="请输入内容"
              rows="5"
              @blur="onBlurChange('text9')"
            ></textarea>
          </div>
          <p>
            3.查找所需信息。重点收集周边托育园的名称、规模、距离、地址、联系人等调研对象的信息,并确定要走访的托育园。
          </p>
          <p>(1)收集的主要信息是什么?</p>
          <div class="bk-tx">
            <textarea
              v-model="chapter001.textAreaItem.text10"
              style="border: 0"
              placeholder="请输入内容"
              rows="5"
              @blur="onBlurChange('text10')"
            ></textarea>
          </div>
          <p>(2)要走访的托育园的名称是什么?</p>
          <div class="bk-tx">
            <textarea
              v-model="chapter001.textAreaItem.text11"
              style="border: 0"
              placeholder="请输入内容"
              rows="5"
              @blur="onBlurChange('text11')"
            ></textarea>
          </div>
          <p>(3)选择走访该园的原因是什么?</p>
          <div class="bk-tx">
            <textarea
              v-model="chapter001.textAreaItem.text12"
              style="border: 0"
              placeholder="请输入内容"
              rows="5"
              @blur="onBlurChange('text12')"
            ></textarea>
          </div>
        </div>
      </div>
    </div>
    <div class="page-box" page="13">
      <div v-if="showPageList.indexOf(13) > -1">
        <div class="header">
          <div class="pageHeader-second">
            <div class="second-con">
              <div class="second-left"></div>
              <div class="second-right">
                <img src="../image/pageImg.png" alt="" />
                <span class="pageStr">单元一·初始婴幼儿生活保育</span>
                <span class="pageNum">1-7</span>
              </div>
            </div>
            <div class="borderLine"></div>
          </div>
        </div>
        <div class="bodystyle">
          <p>
            4.做好出行规划。查找路线信息,确定出行方式、大致费用,并确定好对方的联系人。
          </p>
          <p>你们组的出行规划是什么?</p>
          <div class="bk-tx">
            <textarea
              v-model="chapter001.textAreaItem.text13"
              style="border: 0"
              placeholder="请输入内容"
              rows="5"
              @blur="onBlurChange('text13')"
            ></textarea>
          </div>
          <h4 id="d005">
            ▶▶ 活动2:调查托育园一日生活保育<span class="fontsz1"
              >>>>>>>>></span
            >
          </h4>
          <p><b>①活动准备</b></p>
          <p>1.阅读:阅读手册的专题一、《托育机构保育指导大纲(试行)》。</p>
          <p>2.预约:与托育园的联系人提前预约走访时间。</p>
          <p>3.出行:确认出行路线、交通方式,根据预约好的时间出行。</p>
          <p>
            4.操作材料和设备:签字笔、记录本、照相机与录音笔(或可以拍照、录像的智能手机)。
          </p>
          <p><b>②活动过程</b></p>
          <p>
            1.取得调研对象的配合。找到提前预约的联系人,介绍自己并说明来意,委托联系人提供满足调研需要的对象,并取得调研对象的配合。
          </p>
          <p>2.开展问题调研。重点调研托育园的一日生活、保育要求及具体内容。</p>
          <p>3.收集调研资料。收集与调研内容相关的文本、照片、视频、音频等。</p>
          <p>4.汇总调研信息。</p>
          <p>(1)走访的托育园的名称是什么?</p>
          <div class="bk-tx">
            <textarea
              v-model="chapter001.textAreaItem.text14"
              style="border: 0"
              placeholder="请输入内容"
              rows="5"
              @blur="onBlurChange('text14')"
            ></textarea>
          </div>
          <p>(2)走访的托育园一日生活的主要环节有哪些?</p>
          <div class="bk-tx">
            <textarea
              v-model="chapter001.textAreaItem.text15"
              style="border: 0"
              placeholder="请输入内容"
              rows="5"
              @blur="onBlurChange('text15')"
            ></textarea>
          </div>
        </div>
      </div>
    </div>
    <div class="page-box" page="14">
      <div v-if="showPageList.indexOf(14) > -1">
        <div class="header">
          <div class="pageHeader-first">
            <div class="header-bj"></div>
            <div class="content">
              <div class="pageStr">1-8</div>
              <div class="title">
                <img src="../image/chapter.png" alt="" />
                <span class="cahpter">婴幼儿生活照护·行动手册</span>
              </div>
            </div>
          </div>
        </div>
        <div class="bodystyle">
          <p>(3)了解走访的托育园制订一日生活日程的依据并填表。</p>
          <div class="bk-tx">
            <textarea
              v-model="chapter001.textAreaItem.text16"
              style="border: 0"
              placeholder="请输入内容"
              rows="5"
              @blur="onBlurChange('text16')"
            ></textarea>
          </div>
          <p>走访的托育园一日生活日程见表1-1-2。</p>
          <p class="img">表1-1-2 ______托育园一日生活日程</p>
          <div class="chapter01Table">
            <table class="table112">
              <thead>
                <tr>
                  <th colspan="2">0-1岁日托班</th>
                  <th colspan="2">1-2岁日托班</th>
                  <th colspan="2">2-3岁日托班</th>
                </tr>
                <tr>
                  <th>时间</th>
                  <th>内容</th>
                  <th>时间</th>
                  <th>内容</th>
                  <th>时间</th>
                  <th>内容</th>
                </tr>
              </thead>
              <tbody>
                <tr>
                  <td>
                    <input
                      v-model="chapter001.table112.cell1"
                      @blur="onBlurChangeTable112('cell1')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell2"
                      @blur="onBlurChangeTable112('cell2')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell3"
                      @blur="onBlurChangeTable112('cell3')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell4"
                      @blur="onBlurChangeTable112('cell4')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell5"
                      @blur="onBlurChangeTable112('cell5')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell6"
                      @blur="onBlurChangeTable112('cell6')"
                    />
                  </td>
                </tr>
                <tr>
                  <td>
                    <input
                      v-model="chapter001.table112.cell7"
                      @blur="onBlurChangeTable112('cell7')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell8"
                      @blur="onBlurChangeTable112('cell8')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell9"
                      @blur="onBlurChangeTable112('cell9')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell10"
                      @blur="onBlurChangeTable112('cell10')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell11"
                      @blur="onBlurChangeTable112('cell11')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell12"
                      @blur="onBlurChangeTable112('cell12')"
                    />
                  </td>
                </tr>
                <tr>
                  <td>
                    <input
                      v-model="chapter001.table112.cell13"
                      @blur="onBlurChangeTable112('cell13')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell14"
                      @blur="onBlurChangeTable112('cell14')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell15"
                      @blur="onBlurChangeTable112('cell15')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell16"
                      @blur="onBlurChangeTable112('cell16')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell17"
                      @blur="onBlurChangeTable112('cell17')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell18"
                      @blur="onBlurChangeTable112('cell18')"
                    />
                  </td>
                </tr>
                <tr>
                  <td>
                    <input
                      v-model="chapter001.table112.cell19"
                      @blur="onBlurChangeTable112('cell19')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell20"
                      @blur="onBlurChangeTable112('cell20')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell21"
                      @blur="onBlurChangeTable112('cell21')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell22"
                      @blur="onBlurChangeTable112('cell22')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell23"
                      @blur="onBlurChangeTable112('cell23')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell24"
                      @blur="onBlurChangeTable112('cell24')"
                    />
                  </td>
                </tr>
                <tr>
                  <td>
                    <input
                      v-model="chapter001.table112.cell25"
                      @blur="onBlurChangeTable112('cell25')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell26"
                      @blur="onBlurChangeTable112('cell26')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell27"
                      @blur="onBlurChangeTable112('cell27')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell28"
                      @blur="onBlurChangeTable112('cell28')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell29"
                      @blur="onBlurChangeTable112('cell29')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell30"
                      @blur="onBlurChangeTable112('cell30')"
                    />
                  </td>
                </tr>
                <tr>
                  <td>
                    <input
                      v-model="chapter001.table112.cell31"
                      @blur="onBlurChangeTable112('cell31')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell32"
                      @blur="onBlurChangeTable112('cell32')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell33"
                      @blur="onBlurChangeTable112('cell33')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell34"
                      @blur="onBlurChangeTable112('cell34')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell35"
                      @blur="onBlurChangeTable112('cell35')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell36"
                      @blur="onBlurChangeTable112('cell36')"
                    />
                  </td>
                </tr>
                <tr>
                  <td>
                    <input
                      v-model="chapter001.table112.cell37"
                      @blur="onBlurChangeTable112('cell37')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell38"
                      @blur="onBlurChangeTable112('cell38')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell39"
                      @blur="onBlurChangeTable112('cell39')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell40"
                      @blur="onBlurChangeTable112('cell40')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell41"
                      @blur="onBlurChangeTable112('cell41')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell42"
                      @blur="onBlurChangeTable112('cell42')"
                    />
                  </td>
                </tr>
                <tr>
                  <td>
                    <input
                      v-model="chapter001.table112.cell43"
                      @blur="onBlurChangeTable112('cell43')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell44"
                      @blur="onBlurChangeTable112('cell44')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell45"
                      @blur="onBlurChangeTable112('cell45')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell46"
                      @blur="onBlurChangeTable112('cell46')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell47"
                      @blur="onBlurChangeTable112('cell47')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell48"
                      @blur="onBlurChangeTable112('cell48')"
                    />
                  </td>
                </tr>
                <tr>
                  <td>
                    <input
                      v-model="chapter001.table112.cell49"
                      @blur="onBlurChangeTable112('cell49')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell50"
                      @blur="onBlurChangeTable112('cell50')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell51"
                      @blur="onBlurChangeTable112('cell51')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell52"
                      @blur="onBlurChangeTable112('cell52')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell53"
                      @blur="onBlurChangeTable112('cell53')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell54"
                      @blur="onBlurChangeTable112('cell54')"
                    />
                  </td>
                </tr>
                <tr>
                  <td>
                    <input
                      v-model="chapter001.table112.cell55"
                      @blur="onBlurChangeTable112('cell55')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell56"
                      @blur="onBlurChangeTable112('cell56')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell57"
                      @blur="onBlurChangeTable112('cell57')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell58"
                      @blur="onBlurChangeTable112('cell58')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell58"
                      @blur="onBlurChangeTable112('cell58')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell60"
                      @blur="onBlurChangeTable112('cell60')"
                    />
                  </td>
                </tr>
                <tr>
                  <td>
                    <input
                      v-model="chapter001.table112.cell61"
                      @blur="onBlurChangeTable112('cell61')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell62"
                      @blur="onBlurChangeTable112('cell62')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell63"
                      @blur="onBlurChangeTable112('cell63')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell64"
                      @blur="onBlurChangeTable112('cell64')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell65"
                      @blur="onBlurChangeTable112('cell65')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell66"
                      @blur="onBlurChangeTable112('cell66')"
                    />
                  </td>
                </tr>
                <tr>
                  <td>
                    <input
                      v-model="chapter001.table112.cell67"
                      @blur="onBlurChangeTable112('cell67')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell68"
                      @blur="onBlurChangeTable112('cell68')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell69"
                      @blur="onBlurChangeTable112('cell69')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell70"
                      @blur="onBlurChangeTable112('cell70')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell72"
                      @blur="onBlurChangeTable112('cell72')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell73"
                      @blur="onBlurChangeTable112('cell73')"
                    />
                  </td>
                </tr>
                <tr>
                  <td>
                    <input
                      v-model="chapter001.table112.cell74"
                      @blur="onBlurChangeTable112('cell74')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell75"
                      @blur="onBlurChangeTable112('cell75')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell76"
                      @blur="onBlurChangeTable112('cell76')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell77"
                      @blur="onBlurChangeTable112('cell77')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell78"
                      @blur="onBlurChangeTable112('cell78')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell79"
                      @blur="onBlurChangeTable112('cell79')"
                    />
                  </td>
                </tr>
                <tr>
                  <td>
                    <input
                      v-model="chapter001.table112.cell80"
                      @blur="onBlurChangeTable112('cell80')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell81"
                      @blur="onBlurChangeTable112('cell81')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell82"
                      @blur="onBlurChangeTable112('cell82')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell83"
                      @blur="onBlurChangeTable112('cell83')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell84"
                      @blur="onBlurChangeTable112('cell84')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table112.cell85"
                      @blur="onBlurChangeTable112('cell85')"
                    />
                  </td>
                </tr>
              </tbody>
            </table>
            <textarea
              class="textareaInput"
              placeholder="您的评价:"
              :rows="8"
              v-model="chapter001.textareaVal"
              :maxlength="300"
              @blur="onBlurChangeText112"
            ></textarea>
          </div>
        </div>
      </div>
    </div>
    <div class="page-box" page="15">
      <div v-if="showPageList.indexOf(15) > -1">
        <div class="header">
          <div class="pageHeader-second">
            <div class="second-con">
              <div class="second-left"></div>
              <div class="second-right">
                <img src="../image/pageImg.png" alt="" />
                <span class="pageStr">单元一·初始婴幼儿生活保育</span>
                <span class="pageNum">1-9</span>
              </div>
            </div>
            <div class="borderLine"></div>
          </div>
        </div>
        <div class="bodystyle">
          <p>走访的托育园一日生活保育要求及具体内容见表1-1-3。</p>
          <p class="img">表1-1-3 ______托育园一日生活保育要求及具体内容</p>
          <div style="margin-bottom: 40px">
            <table class="table112 table113">
              <thead>
                <tr>
                  <th>环节名称</th>
                  <th>保育要求</th>
                  <th>具体内容</th>
                </tr>
              </thead>
              <tbody>
                <tr>
                  <td>
                    <input
                      v-model="chapter001.table113.name1"
                      @blur="onBlurChangeTable113('name1')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table113.demand1"
                      @blur="onBlurChangeTable113('demand1')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table113.content1"
                      @blur="onBlurChangeTable113('content1')"
                    />
                  </td>
                </tr>
                <tr>
                  <td>
                    <input
                      v-model="chapter001.table113.name2"
                      @blur="onBlurChangeTable113('name2')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table113.demand2"
                      @blur="onBlurChangeTable113('demand2')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table113.content2"
                      @blur="onBlurChangeTable113('content2')"
                    />
                  </td>
                </tr>
                <tr>
                  <td>
                    <input
                      v-model="chapter001.table113.name3"
                      @blur="onBlurChangeTable113('name3')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table113.demand3"
                      @blur="onBlurChangeTable113('demand3')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table113.content3"
                      @blur="onBlurChangeTable113('content3')"
                    />
                  </td>
                </tr>
                <tr>
                  <td>
                    <input
                      v-model="chapter001.table113.name4"
                      @blur="onBlurChangeTable113('name4')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table113.demand4"
                      @blur="onBlurChangeTable113('demand4')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table113.content4"
                      @blur="onBlurChangeTable113('content4')"
                    />
                  </td>
                </tr>
                <tr>
                  <td>
                    <input
                      v-model="chapter001.table113.name5"
                      @blur="onBlurChangeTable113('name5')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table113.demand5"
                      @blur="onBlurChangeTable113('demand5')"
                    />
                  </td>
                  <td>
                    <input
                      v-model="chapter001.table113.content5"
                      @blur="onBlurChangeTable113('content5')"
                    />
                  </td>
                </tr>
              </tbody>
            </table>
          </div>
          <p>
            (4)通过与托育园老师的交流,你认为开展婴幼儿生活保育需要具备的知识和技能有哪些?
          </p>
          <div class="bk-tx">
            <textarea
              v-model="chapter001.textAreaItem.text17"
              style="border: 0"
              placeholder="请输入内容"
              rows="5"
              @blur="onBlurChange('text17')"
            ></textarea>
          </div>
          <p>
            (5)收集回访信息。调研执行完毕后,留下调研对象的联系方式,结束后如发现尚未解决的问题,可通过网络、电话等形式回访。
          </p>
          <h4 id="d006">
            ▶▶ 应用与实践<span class="fontsz1">>>>>>>>></span>
          </h4>
          <p><b>论述题</b></p>
          <p>
            1.根据走访托育园所获得的信息,找出并概括托育园一日生活保育与《托育机构保育指导大纲(试行)》相对应的内容。
          </p>
          <div class="bk-tx">
            <textarea
              v-model="chapter001.radio.desc1"
              style="border: 0"
              placeholder="请输入内容"
              rows="5"
              @blur="onBlurChange('desc1')"
            ></textarea>
          </div>
          <p>
            2.走访托育园,谈谈你对《托育机构保育指导大纲(试行)》中的托育机构保育应遵循的尊重儿童、安全健康、积极回应、科学规范四个基本原则的理解。
          </p>
          <div class="bk-tx">
            <textarea
              v-model="chapter001.radio.desc2"
              style="border: 0"
              placeholder="请输入内容"
              rows="5"
              @blur="onBlurChange('desc2')"
            ></textarea>
          </div>
          <p>
            3.我们常说0~3岁的婴幼儿是最“柔软”的群体,我们该如何呵护这个群体?
          </p>
          <div class="bk-tx">
            <textarea
              v-model="chapter001.radio.desc3"
              style="border: 0"
              placeholder="请输入内容"
              rows="5"
              @blur="onBlurChange('desc3')"
            ></textarea>
          </div>
          <div class="tips-bk">
            <div class="bj-tip">
              云测试:单元一应用与实践
              <div @click="activityThree">
                <svg
                  xmlns="http://www.w3.org/2000/svg"
                  xmlns:xlink="http://www.w3.org/1999/xlink"
                  width="20.115"
                  height="19.988"
                  viewBox="0 0 20.115 19.988"
                >
                  <path
                    class="a"
                    d="M3356.437-15192.012a.568.568,0,0,1-.236-.052.566.566,0,0,1-.271-.744l1.134-2.429h-5.505a.558.558,0,0,1-.557-.558.559.559,0,0,1,.557-.561h19a.559.559,0,0,1,.557.561.558.558,0,0,1-.557.558h-5.505l1.13,2.429a.552.552,0,0,1,.019.427.55.55,0,0,1-.29.313.547.547,0,0,1-.238.055.557.557,0,0,1-.5-.322l-1.355-2.9h-5.52l-1.352,2.9A.563.563,0,0,1,3356.437-15192.012Zm12.442-5.462h-15.645a2.236,2.236,0,0,1-2.233-2.233v-10.06a2.236,2.236,0,0,1,2.233-2.233h15.645a2.238,2.238,0,0,1,2.237,2.233v10.06A2.238,2.238,0,0,1,3368.88-15197.474Zm-4.842-11.732a1.112,1.112,0,0,0-.748.287l-4.986,4.486a1.143,1.143,0,0,0-.309.473l-1.577,2.727a.57.57,0,0,0,.034.61.552.552,0,0,0,.447.229.448.448,0,0,0,.126-.016.55.55,0,0,0,.13-.03l2.871-1.233a1.153,1.153,0,0,0,.523-.268l4.982-4.485a1.121,1.121,0,0,0,.084-1.581l-.748-.828A1.113,1.113,0,0,0,3364.038-15209.206Z"
                    transform="translate(-3351.001 15212)"
                  />
                </svg>
              </div>
            </div>
            <div
              v-if="chapter001.idOpenThree && questionData"
              class="tips-file"
            >
              <examinations
                :primaryColor="'#f49a4c'"
                :cardList="questionData[15]"
              />
            </div>
          </div>
        </div>
      </div>
    </div>
  </div>
</template>
 
<script>
import getResourcePath from "@/assets/methods/resources.js";
import examinations from "@/components/examinations/index.vue";
 
export default {
  // eslint-disable-next-line vue/multi-word-component-names
  name: "chapter001",
  props: {
    showPageList: {
      type: Array,
    },
    questionData: {
      type: Object,
    },
  },
  data() {
    return {
      picOneUrl: require("../image/0018-1.jpg"),
      picArr: [require("../image/0018-1.jpg")],
      chapter001: {
        videOneUrl:
          "https://jsek.bnuic.com/file/api/ApiDownload?md5=68ebd5c05bcb742999a9ebdce4b4bd53",
        isOpenOne: true,
        idOpenThree: true,
        qustionData: {},
        textAreaItem: {},
        radio: {},
        table111: {},
        table112: {},
        table113: {},
        textareaVal: "",
      },
    };
  },
  components: {
    examinations,
  },
  async created() {
    const localData = JSON.parse(localStorage.getItem("chapter001"));
    if (localData) {
      this.chapter001 = { ...Object.assign(this.chapter001, localData) };
    }
    this.chapter001.videOneUrl = getResourcePath(
      "68ebd5c05bcb742999a9ebdce4b4bd53"
    );
  },
  methods: {
    activityOne() {
      this.chapter001.isOpenOne = !this.chapter001.isOpenOne;
    },
    activityThree() {
      this.chapter001.idOpenThree = !this.chapter001.idOpenThree;
    },
    onBlurChange() {
      console.log(this.chapter001, "local");
      localStorage.setItem("chapter001", JSON.stringify(this.chapter001));
    },
    onBlurChangeTable() {
      localStorage.setItem("chapter001", JSON.stringify(this.chapter001));
    },
    onBlurChangeTable112() {
      localStorage.setItem("chapter001", JSON.stringify(this.chapter001));
    },
    onBlurChangeText112() {
      localStorage.setItem("chapter001", JSON.stringify(this.chapter001));
    },
    onBlurChangeTable113() {
      localStorage.setItem("chapter001", JSON.stringify(this.chapter001));
    },
  },
};
</script>