user1
2024-06-25 b85d3d0d9e957e9f01952292f55870f1cb19baaa
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
<template>
    <div class="chapter" num="4"> <!-- 下一个单元 -->
        <!-- 38 -->
        <div class="page-box" page="44">
            <div class="bodystyle" v-if="showPageList.indexOf(44) > -1">
                <h1 id="a005">
                    <img class="img-0" alt="" src="../../assets/images/dy3.jpg" />
                </h1>
                <p class="img"></p>
                <p><b>This unit will help you to:</b></p>
                <p>➢ Learn words and expressions about volunteering</p>
                <p>➢ Review the structure of the present continuous tense and the simple future tense</p>
                <p>➢ Ask for clarification politely</p>
                <p>➢ Be able to fill in the profile properly</p>
                <p>➢ Get ready to volunteer</p>
                <p class="center">
                    <img class="img-0" alt="" src="../../assets/images/0048-1.jpg" />
                </p>
                <p class="img"></p>
            </div>
        </div>
        <!-- 39 -->
        <div class="page-box" page="45">
            <div v-if="showPageList.indexOf(45) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit3">MODULE 3</span>
                        <span class="chapter-right-bc-unit3 fw-bl chapter-right-cl-unit3">A BETTER WORLD WITH
                            VOLUNTEERS</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <h2 id="b009"><img class="img-0" alt="" src="../../assets/images/dy3-le1.jpg" /></h2>
                        <h3 id="c019"><span class="bjh3">Warm-up</span></h3>
                        <p><b>Ⅰ.Put the expressions in the box below on the corresponding answer line under each
                                picture.</b></p>
                        <div class="bk-wh">
                            <p>animal rescue and care blood donation community clean-ups language service</p>
                        </div>
                        <div class="openImgBox">
                            <div class="fl ju-bt">
                                <div class="left" style="width: 48%">
                                    <div>
                                        <p class="center">
                                            <img src="../../assets/images/0049-2.jpg" alt="" class="w100" />
                                        </p>
                                        <p class="center">
                                            1.
                                            <select v-model="dropdownData.one.value">
                                                <option v-for="(item, index) in dropDownList" :key="index"
                                                    :value="item">
                                                    {{ item }}
                                                </option>
                                            </select>
                                            <span class="icon-box">
                                                <svg v-if="dropdownData.one.isRight" t="1716986419862" class="icon"
                                                    viewBox="0 0 1820 1024" version="1.1"
                                                    xmlns="http://www.w3.org/2000/svg" p-id="18767"
                                                    xmlns:xlink="http://www.w3.org/1999/xlink" width="40" height="20">
                                                    <path
                                                        d="M1439.374222 216.007111s-169.472 56.490667-367.179852 282.443852C888.604444 703.222519 846.241185 787.949037 775.632593 900.93037 768.568889 893.866667 662.651259 689.095111 380.207407 540.814222l148.290371-141.226666s134.162963 91.790222 225.953185 261.262222c0 0 233.016889-360.116148 684.923259-536.642371v91.799704z m0 0"
                                                        fill="#1AFA29" p-id="18768"></path>
                                                </svg>
                                                <svg v-if="dropdownData.one.isRight == false" t="1716987085767"
                                                    class="icon" viewBox="0 0 1024 1024" version="1.1"
                                                    xmlns="http://www.w3.org/2000/svg" p-id="25745"
                                                    xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20">
                                                    <path
                                                        d="M116.579135 38.64349531L38.703935 103.74399781c138.82075969 102.96027281 268.24660875 221.31426938 381.68489719 339.96758156C246.29374906 618.40145938 109.95003031 790.19602344 38.10817906 859.25288281l148.35573469 123.62658094c52.61360812-108.17625656 167.23381594-272.86683656 320.56281844-445.01635875 153.50744156 173.21056312 268.36844625 338.43166313 321.38977781 447.49243969 0 0 144.5682225-152.96636906 157.47435281-129.29729625-55.80632344-62.49011156-191.37776625-244.16501625-374.17990593-430.27403438 104.68422375-107.1132975 222.15274031-213.10127719 347.60304468-306.24740437L925.17746562 56.03842156C782.85412063 126.51895625 647.69328031 231.09093594 526.07845437 342.39755 403.34886594 226.82662719 264.46095125 116.16373719 116.579135 38.64349531L116.579135 38.64349531zM116.579135 38.64349531"
                                                        fill="#d81e06" p-id="25746"></path>
                                                </svg>
                                            </span>
                                        </p>
                                    </div>
                                    <p class="event-header-text-bc pd-5" style="width: 90%" v-if="showAnswerFive">
                                        答案:blood donation
                                    </p>
                                </div>
                                <div class="right" style="width: 48%">
                                    <div>
                                        <p class="center">
                                            <img src="../../assets/images/0049-3.jpg" alt="" style="width: 98%" />
                                        </p>
                                        <p class="center">
                                            2.
                                            <select v-model="dropdownData.two.value">
                                                <option v-for="(item, index) in dropDownList" :key="index"
                                                    :value="item">
                                                    {{ item }}
                                                </option>
                                            </select>
                                            <span class="icon-box">
                                                <svg v-if="dropdownData.two.isRight" t="1716986419862" class="icon"
                                                    viewBox="0 0 1820 1024" version="1.1"
                                                    xmlns="http://www.w3.org/2000/svg" p-id="18767"
                                                    xmlns:xlink="http://www.w3.org/1999/xlink" width="40" height="20">
                                                    <path
                                                        d="M1439.374222 216.007111s-169.472 56.490667-367.179852 282.443852C888.604444 703.222519 846.241185 787.949037 775.632593 900.93037 768.568889 893.866667 662.651259 689.095111 380.207407 540.814222l148.290371-141.226666s134.162963 91.790222 225.953185 261.262222c0 0 233.016889-360.116148 684.923259-536.642371v91.799704z m0 0"
                                                        fill="#1AFA29" p-id="18768"></path>
                                                </svg>
                                                <svg v-if="dropdownData.two.isRight == false" t="1716987085767"
                                                    class="icon" viewBox="0 0 1024 1024" version="1.1"
                                                    xmlns="http://www.w3.org/2000/svg" p-id="25745"
                                                    xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20">
                                                    <path
                                                        d="M116.579135 38.64349531L38.703935 103.74399781c138.82075969 102.96027281 268.24660875 221.31426938 381.68489719 339.96758156C246.29374906 618.40145938 109.95003031 790.19602344 38.10817906 859.25288281l148.35573469 123.62658094c52.61360812-108.17625656 167.23381594-272.86683656 320.56281844-445.01635875 153.50744156 173.21056312 268.36844625 338.43166313 321.38977781 447.49243969 0 0 144.5682225-152.96636906 157.47435281-129.29729625-55.80632344-62.49011156-191.37776625-244.16501625-374.17990593-430.27403438 104.68422375-107.1132975 222.15274031-213.10127719 347.60304468-306.24740437L925.17746562 56.03842156C782.85412063 126.51895625 647.69328031 231.09093594 526.07845437 342.39755 403.34886594 226.82662719 264.46095125 116.16373719 116.579135 38.64349531L116.579135 38.64349531zM116.579135 38.64349531"
                                                        fill="#d81e06" p-id="25746"></path>
                                                </svg>
                                            </span>
                                        </p>
                                    </div>
                                    <p class="event-header-text-bc pd-5" style="width: 90%" v-if="showAnswerFive">
                                        答案:language service
                                    </p>
                                </div>
                            </div>
 
                            <div class="fl ju-bt">
                                <div class="left" style="width: 48%">
                                    <div>
                                        <p class="center">
                                            <img src="../../assets/images/0049-4.jpg" alt="" style="width: 98%" />
                                        </p>
                                        <p class="center">
                                            3.
                                            <select v-model="dropdownData.three.value">
                                                <option v-for="(item, index) in dropDownList" :key="index"
                                                    :value="item">
                                                    {{ item }}
                                                </option>
                                            </select>
                                            <span class="icon-box">
                                                <svg v-if="dropdownData.three.isRight" t="1716986419862" class="icon"
                                                    viewBox="0 0 1820 1024" version="1.1"
                                                    xmlns="http://www.w3.org/2000/svg" p-id="18767"
                                                    xmlns:xlink="http://www.w3.org/1999/xlink" width="40" height="20">
                                                    <path
                                                        d="M1439.374222 216.007111s-169.472 56.490667-367.179852 282.443852C888.604444 703.222519 846.241185 787.949037 775.632593 900.93037 768.568889 893.866667 662.651259 689.095111 380.207407 540.814222l148.290371-141.226666s134.162963 91.790222 225.953185 261.262222c0 0 233.016889-360.116148 684.923259-536.642371v91.799704z m0 0"
                                                        fill="#1AFA29" p-id="18768"></path>
                                                </svg>
                                                <svg v-if="dropdownData.three.isRight == false" t="1716987085767"
                                                    class="icon" viewBox="0 0 1024 1024" version="1.1"
                                                    xmlns="http://www.w3.org/2000/svg" p-id="25745"
                                                    xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20">
                                                    <path
                                                        d="M116.579135 38.64349531L38.703935 103.74399781c138.82075969 102.96027281 268.24660875 221.31426938 381.68489719 339.96758156C246.29374906 618.40145938 109.95003031 790.19602344 38.10817906 859.25288281l148.35573469 123.62658094c52.61360812-108.17625656 167.23381594-272.86683656 320.56281844-445.01635875 153.50744156 173.21056312 268.36844625 338.43166313 321.38977781 447.49243969 0 0 144.5682225-152.96636906 157.47435281-129.29729625-55.80632344-62.49011156-191.37776625-244.16501625-374.17990593-430.27403438 104.68422375-107.1132975 222.15274031-213.10127719 347.60304468-306.24740437L925.17746562 56.03842156C782.85412063 126.51895625 647.69328031 231.09093594 526.07845437 342.39755 403.34886594 226.82662719 264.46095125 116.16373719 116.579135 38.64349531L116.579135 38.64349531zM116.579135 38.64349531"
                                                        fill="#d81e06" p-id="25746"></path>
                                                </svg>
                                            </span>
                                        </p>
                                    </div>
                                    <p class="event-header-text-bc pd-5" style="width: 90%" v-if="showAnswerFive">
                                        答案:community clean-ups
                                    </p>
                                </div>
                                <div class="right" style="width: 48%">
                                    <div>
                                        <p class="center">
                                            <img src="../../assets/images/0049-5.jpg" alt="" style="width: 94%" />
                                        </p>
                                        <p class="center">
                                            4.
                                            <select v-model="dropdownData.four.value">
                                                <option v-for="(item, index) in dropDownList" :key="index"
                                                    :value="item">
                                                    {{ item }}
                                                </option>
                                            </select>
                                            <span class="icon-box">
                                                <svg v-if="dropdownData.four.isRight" t="1716986419862" class="icon"
                                                    viewBox="0 0 1820 1024" version="1.1"
                                                    xmlns="http://www.w3.org/2000/svg" p-id="18767"
                                                    xmlns:xlink="http://www.w3.org/1999/xlink" width="40" height="20">
                                                    <path
                                                        d="M1439.374222 216.007111s-169.472 56.490667-367.179852 282.443852C888.604444 703.222519 846.241185 787.949037 775.632593 900.93037 768.568889 893.866667 662.651259 689.095111 380.207407 540.814222l148.290371-141.226666s134.162963 91.790222 225.953185 261.262222c0 0 233.016889-360.116148 684.923259-536.642371v91.799704z m0 0"
                                                        fill="#1AFA29" p-id="18768"></path>
                                                </svg>
                                                <svg v-if="dropdownData.four.isRight == false" t="1716987085767"
                                                    class="icon" viewBox="0 0 1024 1024" version="1.1"
                                                    xmlns="http://www.w3.org/2000/svg" p-id="25745"
                                                    xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20">
                                                    <path
                                                        d="M116.579135 38.64349531L38.703935 103.74399781c138.82075969 102.96027281 268.24660875 221.31426938 381.68489719 339.96758156C246.29374906 618.40145938 109.95003031 790.19602344 38.10817906 859.25288281l148.35573469 123.62658094c52.61360812-108.17625656 167.23381594-272.86683656 320.56281844-445.01635875 153.50744156 173.21056312 268.36844625 338.43166313 321.38977781 447.49243969 0 0 144.5682225-152.96636906 157.47435281-129.29729625-55.80632344-62.49011156-191.37776625-244.16501625-374.17990593-430.27403438 104.68422375-107.1132975 222.15274031-213.10127719 347.60304468-306.24740437L925.17746562 56.03842156C782.85412063 126.51895625 647.69328031 231.09093594 526.07845437 342.39755 403.34886594 226.82662719 264.46095125 116.16373719 116.579135 38.64349531L116.579135 38.64349531zM116.579135 38.64349531"
                                                        fill="#d81e06" p-id="25746"></path>
                                                </svg>
                                            </span>
                                        </p>
                                    </div>
                                    <p class="event-header-text-bc pd-5" style="width: 90%" v-if="showAnswerFive">
                                        答案:animal rescue and care
                                    </p>
                                </div>
                            </div>
                        </div>
                        <div class="w100 fl ju-cn">
                            <div class="fl ju-ev mt-40" style="width: 80%">
                                <button class="btn-border btn-w" @click="handleDropdown('judge')">
                                    提交
                                </button>
                                <button @click="setDropdownData" class="btn-border btn-w">
                                    保存
                                </button>
                                <button class="btn-border btn-w" @click="changeDropdown">
                                    重做
                                </button>
                                <button @click="showAnswerFive = !showAnswerFive" class="parimary-btn">
                                    查看答案
                                </button>
                            </div>
                        </div>
                        <p><b>Ⅱ.Talk to your partner about the types of volunteer work you know.</b></p>
                        <h3 id="c020"><span class="bjh3">Listening</span></h3>
                        <audio :src="resource.listenOne" controls class="audio" @play="audioPlay"></audio>
                        <p><b>Watch the video and mark the best answer to each question.</b></p>
                        <div style="display: flex;">
                            <div class="left" style="width: 55%; margin-top: 11%;">
                                <p>1.Why do you want to be a volunteer?</p>
                            </div>
                            <div class="right" style="widtinputh: 45%;">
                                <p> <input type="checkbox" name="ball" value="Language" id="1"
                                        v-model="testData.check" /> You can change lives.</p>
                                <p> <input type="checkbox" name="ball" value="Language" id="1"
                                        v-model="testData.check" /> You can stay with friends.</p>
                                <p> <input type="checkbox" name="ball" value="Language" id="1"
                                        v-model="testData.check" /> You can teach new skills.</p>
                                <p> <input type="checkbox" name="ball" value="Language" id="1"
                                        v-model="testData.check" /> You can make more money.</p>
                            </div>
                        </div>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">39</span>
                </div>
            </div>
        </div>
        <!-- 40 -->
        <div class="page-box" page="46">
            <div v-if="showPageList.indexOf(46) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit3 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit3">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit3">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <div style="display: flex">
                            <div class="left" style="width: 55%; margin-top: 11%;">
                                <p>2.Who are more likely to be volunteers?</p>
                            </div>
                            <div class="right" style="width: 45%;">
                                <p> <input type="checkbox" name="ball" value="Language" id="1"
                                        v-model="testData.check" /> College students.</p>
                                <p> <input type="checkbox" name="ball" value="Language" id="1"
                                        v-model="testData.check" /> Nonprofessionals.</p>
                                <p> <input type="checkbox" name="ball" value="Language" id="1"
                                        v-model="testData.check" /> People without jobs.</p>
                                <p> <input type="checkbox" name="ball" value="Language" id="1"
                                        v-model="testData.check" /> Children.</p>
                            </div>
                        </div>
                        <div style="display: flex">
                            <div class="left" style="width: 50%; margin-top: 11%;">
                                <p>3.Which activity is NOT mentioned in the video?</p>
                            </div>
                            <div class="right" style="width: 50%;">
                                <p> <input type="checkbox" name="ball" value="Language" id="1"
                                        v-model="testData.check" />Volunteering in sport.</p>
                                <p> <input type="checkbox" name="ball" value="Language" id="1"
                                        v-model="testData.check" />Emergency services.</p>
                                <p> <input type="checkbox" name="ball" value="Language" id="1"
                                        v-model="testData.check" />Helping people with disabilities.</p>
                                <p> <input type="checkbox" name="ball" value="Language" id="1"
                                        v-model="testData.check" />Teaching.</p>
                            </div>
                        </div>
                        <h3 id="c021"><span class="bjh3">Reading</span></h3>
                        <p>1.As the saying goes,“The rose is in her hand,the flavor in mine.” What’s your understanding
                            of this saying?</p>
                        <p>2.In what way do you help others in daily life?</p>
                        <audio :src="resource.listenOne" controls class="audio" @play="audioPlay"></audio>
                        <p class="center"><b>Volunteering and Its Surprising Benefits</b></p>
                        <p>With busy life,it can be hard to find time to volunteer.However,the benefits of volunteering
                            can be enormous.</p>
                        <p>One of the most well-known benefits of volunteering is the impact on the
                            community.Volunteering allows you to connect to your community and make it a better
                            place.Even helping out with the smallest tasks can make a real difference to the life of
                            people in need.Volunteering can benefit you and your family as well as the people you choose
                            to help.Doing volunteer work helps you make new friends,expand your network,and boost your
                            social skills.</p>
                        <p>Volunteering helps reduce the effects of stress,anger,and anxiety.The social contact aspect
                            of helping and working with others can have a great effect on your overall mental
                            health.Nothing reduces stress better than a meaningful connection to another person.Studies
                            have found that those who volunteer have a lower mortality rate than those who do not.</p>
                        <p>If you’re considering a new career,volunteering can help you get experience in your area of
                            interest and meet people in the field.Even if you’re not planning to change
                            careers,volunteering can give you the opportunity to practice important qualities and skills
                            used in work,such as teamwork,communication skills and problem-solving skills.You might feel
                            more comfortable stretching your wings at work once you’ve developed these qualities and
                            skills in a volunteer position first.</p>
                    </div>
                    <div>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">40</span>
                </div>
            </div>
        </div>
        <!-- 41 -->
        <div class="page-box" page="47">
            <div v-if="showPageList.indexOf(47) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit3">MODULE 3</span>
                        <span class="chapter-right-bc-unit3 fw-bl chapter-right-cl-unit3">A BETTER WORLD WITH
                            VOLUNTEERS</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p>What’s more,volunteering is a fun and easy way to explore your interests and passions.Doing
                            volunteer work can be a relaxing,energizing escape from your day-to-day routine of
                            work,school,or family commitments.Volunteering also provides you with
                            creativity,motivation,and vision that can carry over into your personal life and your
                            career.</p>
                        <p>In a word,volunteering has a great influence on your body and mental health.Remember when you
                            help people,you help yourself as well.When you make plans for yourself,it is always a good
                            idea to spare some time for volunteering service.Not only can volunteering improve your
                            résumé,but it can also help connect you to more people and bring fulfillment to your life.
                        </p>
                        <p class="fl al-cn mt-40">
                            <span class="zt-cs" style="font-size: 20px">Words &amp; Expressions</span>
                            <span class="line-border-box"></span>
                        </p>
                        <audio :src="resource.readingTwo" controls style="margin-left: 10px" class="audio"
                            @play="audioPlay"></audio>
                        <p>enormous /ɪˈnɔːməs/ <i>adj.</i> 巨大的;庞大的</p>
                        <div class="bkbj">
                            <p><i>extremely large</i></p>
                        </div>
                        <p>expand /ɪkˈspænd/ <i>v.</i> 扩大,增加(尺码、数量或重要性)</p>
                        <div class="bkbj">
                            <p><i>to become greater in size,number or importance; to make sth.greater in size,number or
                                    importance</i></p>
                        </div>
                        <p>boost /buːst/ <i>v.</i> 使增长;使兴旺</p>
                        <div class="bkbj">
                            <p><i>to make sth.increase,or become better or more successful</i></p>
                        </div>
                        <p>anxiety /æŋˈzaɪəti/ <i>n.</i> 焦虑;忧虑</p>
                        <div class="bkbj">
                            <p><i>the state of feeling nervous or worried that sth.bad is going to happen</i></p>
                        </div>
                        <p>meaningful /ˈmiːnɪŋfl/ <i>adj.</i> 重要的;严肃的</p>
                        <div class="bkbj">
                            <p><i>serious and important</i></p>
                        </div>
                        <p>mortality /mɔːˈtæləti/ <i>n.</i> 死亡率;死亡数量</p>
                        <div class="bkbj">
                            <p><i>the number of deaths in a particular situation or period of time</i></p>
                        </div>
                        <p>communication /kəˌmjuːnɪˈkeɪʃn/ <i>n.</i> 表达;交流</p>
                        <div class="bkbj">
                            <p><i>the activity or process of expressing ideas and feelings or of giving people
                                    information</i></p>
                        </div>
                        <p>passion /ˈpæʃn/ <i>n.</i> 激情; 强烈情感</p>
                        <div class="bkbj">
                            <p><i>a very strong feeling of love,hatred,anger,enthusiasm,etc.</i></p>
                        </div>
                        <p>energize /ˈenədʒaɪz/ <i>v.</i> 给(某人) 增添能量(或精力、活力、干劲)</p>
                        <div class="bkbj">
                            <p><i>to give sb.more energy,strength,etc.</i></p>
                        </div>
                        <p>commitment /kəˈmɪtmənt/ <i>n.</i> 承诺;许诺</p>
                        <div class="bkbj">
                            <p><i>a promise to do sth.or to behave in a particular way</i></p>
                        </div>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">41</span>
                </div>
            </div>
        </div>
        <!-- 42 -->
        <div class="page-box" page="48">
            <div v-if="showPageList.indexOf(48) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit3 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit3">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit3">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        p>creativity /ˌkriːeɪˈtɪvəti/ <i>n.</i> 创造力;创造性</p>
                        <div class="bkbj">
                            <p><i>the use of skill and imagination to produce sth.new or to produce art</i></p>
                        </div>
                        <p>vision /ˈvɪʒn/ <i>n.</i> 视野</p>
                        <div class="bkbj">
                            <p><i>the area that you can see from a particular position</i></p>
                        </div>
                        <p>fulfillment /fʊlˈfɪlmənt/ <i>n.</i> 实现</p>
                        <div class="bkbj">
                            <p><i>the act of doing or achieving what was hoped for or expected</i></p>
                        </div>
                        <div style="display: flex;">
                            <div class="left" style="width: 45%;">
                                <p>help out 帮助解决难题;救出</p>
                                <p>stretch one’s wings 大展拳脚</p>
                            </div>
                            <div class="right" style="width: 55%;">
                                <p>make a difference 有影响;有关系</p>
                                <p>what’s more 而且;此外</p>
                            </div>
                        </div>
                        <p>carry over (在不同情况下) 继续存在,保持下去</p>
                        <p></p>
                        <p><b>Ⅰ.Reading comprehension.</b></p>
                        <p>A.Read through the passage and choose the main idea for Paragraph 2 to 5.</p>
                        <p>1.Paragraph 2  a.Volunteering can advance your career.</p>
                        <p>2.Paragraph 3  b.Volunteering brings fun and fulfillment to your life.</p>
                        <p>3.Paragraph 4  c.Volunteering is good for your mind.</p>
                        <p>4.Paragraph 5  d.Volunteering connects you to your community.</p>
                        <p>B.Choose the best answer to each question according to the information from the passage.</p>
                        <p>1.What might be the reason that people don’t volunteer?</p>
                        <p>a.People are too busy to volunteer.</p>
                        <p>b.People can’t find ways to volunteer.</p>
                        <p>c.There is no benefit in volunteering.</p>
                        <p>d.The volunteer work is too hard to do.</p>
                        <p>2.Which of the following is NOT true?</p>
                        <p>a.Volunteering is a win-win behavior for both parties.</p>
                        <p>b.Small acts of helping others also matter.</p>
                        <p>c.Those who volunteer enjoy a lower mortality rate.</p>
                        <p>d.Volunteering has nothing to do with one’s mental health.</p>
                        <p>3.In what way can volunteering help with one’s career development?</p>
                        <p>a.Providing one with a new career.</p>
                        <p>b.Helping to arouse one’s interests.</p>
                        <p>c.Offering an opportunity to practice working skills.</p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">42</span>
                </div>
            </div>
        </div>
        <!-- 43 -->
        <div class="page-box" page="49">
            <div v-if="showPageList.indexOf(49) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit3">MODULE 3</span>
                        <span class="chapter-right-bc-unit3 fw-bl chapter-right-cl-unit3">A BETTER WORLD WITH
                            VOLUNTEERS</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p>d.Bringing more comfort to those who are at work.</p>
                        <p>4.What suggestion does the writer offer in the last paragraph?</p>
                        <p>a.Making a plan before volunteering.</p>
                        <p>b.Preparing a résumé in advance.</p>
                        <p>c.Taking a physical and mental health check.</p>
                        <p>d.Spending some time volunteering.</p>
                        <p>5.What is the author’s attitude towards volunteering?</p>
                        <p>a.Indifferent. b.Supportive. c.Opposed.d.Unknown.</p>
                        <p><b>Ⅱ.Language focus.</b></p>
                        <p>A.Fill in the blanks with the proper words in the passage.The initial letters of the words
                            have been given.</p>
                        <p>There are e______benefits when it comes to volunteering.First,it helps to make the community
                            a better place,and it also helps you to connect to people and b______your social
                            skills.Second,volunteering helps to deal with stress,anger and a______.Studies show that
                            people who volunteer have a lower m______rate.Third,volunteering helps with one’s
                            career.When you get the chance to practice working skills,you will feel more comfortable at
                            work.Fourth,when you are tied up with the daily routine,volunteering can be an
                            e______escape,where you can find your interests and p______.All in all,with all the
                            benefits,it is always a good idea to spend some time volunteering.</p>
                        <p>B.Underline the following expressions in the passage and make sentences with them.</p>
                        <p>1.help out_________________________________________</p>
                        <p>2.make a difference_________________________________</p>
                        <p>3.stretch one’s wings________________________________</p>
                        <p>4.what’s more_____________________________________</p>
                        <p>5.carry over_______________________________________</p>
                        <p>C.Translate the following sentences into Chinese.</p>
                        <p>1.Joining the Youth Volunteer Association in college expands her friendship circle.</p>
                        <p>_______________________________________________________</p>
                        <p>2.Serving in the Beijing 2022 Winter Olympics was a meaningful and unforgettable experience.
                        </p>
                        <p>_______________________________________________________</p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">43</span>
                </div>
            </div>
        </div>
        <!-- 44 -->
        <div class="page-box" page="50">
            <div v-if="showPageList.indexOf(50) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit3 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit3">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit3">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p>3.It is the commitment to children that keeps her a teacher in the village school for a life
                            time.</p>
                        <p>_______________________________________________________</p>
                        <p>4.Volunteering in different programs helps him grow up to be a man of vision.</p>
                        <p>_______________________________________________________</p>
                        <p><b>Ⅲ.Grammar focus:The present continuous tense.</b></p>
                        <p>A.Complete the sentences with the present continuous form of the verbs given in the brackets.
                        </p>
                        <p>1.Encouraged by other volunteers,he_________(consider) becoming a regular helper in community
                            service.</p>
                        <p>2.At the moment,I_________(plan) to work as a volunteer teacher after graduation.</p>
                        <p>3.What you_________(do) at present will make a difference to people around you.</p>
                        <p>4.Currently,they_________(put) a lot of efforts into volunteer work.</p>
                        <p>5.The smile on her face says that she_________(have) a great time with the old in the nursing
                            home.</p>
                        <p>B.Describe each picture below in English using the present continuous tense according to the
                            Chinese hints.</p>
                        <div class="fieldset-2">
                            <p class="center"><img class="img-e" alt="" src="../../assets/images/0054-1.jpg" /></p>
                            <p>志愿者正在辅导孩子们做功课。</p>
                            <p>_______________________________________________</p>
                            <p>_______________________________________________</p>
                            <p>_______________________________________________</p>
                        </div>
                        <div class="fieldset-2">
                            <p class="center"><img class="img-e" alt="" src="../../assets/images/0054-2.jpg" /></p>
                            <p>学生们正在帮忙做农活。</p>
                            <p>_______________________________________________</p>
                            <p>_______________________________________________</p>
                            <p>_______________________________________________</p>
                        </div>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">44</span>
                </div>
            </div>
        </div>
        <!-- 45 -->
        <div class="page-box" page="51">
            <div v-if="showPageList.indexOf(51) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit3">MODULE 3</span>
                        <span class="chapter-right-bc-unit3 fw-bl chapter-right-cl-unit3">A BETTER WORLD WITH
                            VOLUNTEERS</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <div class="fieldset-2">
                            <p class="center"><img class="img-e" alt="" src="../../assets/images/0055-1.jpg" /></p>
                            <p>志愿者正在沙滩上清理垃圾。</p>
                            <p>_______________________________________________</p>
                            <p>_______________________________________________</p>
                            <p>_______________________________________________</p>
                        </div>
                        <div class="fieldset-2">
                            <p class="center"><img class="img-e" alt="" src="../../assets/images/0055-2.jpg" /></p>
                            <p>志愿者正在进行衣物捐赠活动。</p>
                            <p>_______________________________________________</p>
                            <p>_______________________________________________</p>
                            <p>_______________________________________________</p>
                        </div>
                        <h3 id="c022"><span class="bjh3">Mini-project</span></h3>
                        <p>We all have done some volunteer work in one way or another before.Take some time to recall
                            that experience,and then:</p>
                        <p>1.Interview your partner about his/her volunteering experiences by asking the following
                            questions;</p>
                        <p>2.Finish the worksheet and report to the class.</p>
                        <div class="fieldset">
                            <p>Questions:1.What volunteer work have you done?</p>
                            <p>    2.How did you feel when you were volunteering?</p>
                            <p>    3.What are the benefits that experience has brought you?</p>
                        </div>
                        <p class="left"><img class="img-gn" alt="" src="../../assets/images/dy1-worksheet.jpg" /></p>
                        <table border="1" cellpadding="4" cellspacing="0" style="border-color: #fff" class="fz-14">
                            <tr class="table-th-bc">
                                <td class="tl-cn">The Volunteer Work</td>
                                <td class="tl-cn">The Feelings</td>
                                <td class="tl-cn">The Benefits</td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td style="word-break: break-all;">Taking care of left-behind children during summer
                                    vacation.</td>
                                <td style="word-break: break-all;">I feel very proud of myself.The work is very
                                    meaningful.</td>
                                <td style="word-break: break-all;">It has taught me to be more patient. I have learned
                                    to take care of others, and to be more considerate.</td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td>
                                    <textarea v-model="questionData.table.two"
                                        class="w100 table-tr-bc b0 table-textarea textarea-box"
                                        @change="setBookQuestion"></textarea>
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.three"
                                        class="w100 table-tr-bc b0 table-textarea" @change="setBookQuestion"></textarea>
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.four"
                                        class="w100 table-tr-bc b0 table-textarea textarea-box"
                                        @change="setBookQuestion"></textarea>
                                </td>
                            </tr>
                        </table>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">45</span>
                </div>
            </div>
        </div>
        <!-- 46 -->
        <div class="page-box" page="52">
            <div v-if="showPageList.indexOf(52) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit3 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit3">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit3">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <table border="1" cellpadding="4" cellspacing="0" style="border-color: #fff" class="fz-14">
                            <tr class="table-th-bc">
                                <td class="tl-cn">The Volunteer Work</td>
                                <td class="tl-cn">The Feelings</td>
                                <td class="tl-cn">The Benefits</td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td>
                                    <textarea v-model="questionData.table.two"
                                        class="w100 table-tr-bc b0 table-textarea textarea-box"
                                        @change="setBookQuestion"></textarea>
                                </td>
                                <td style="width: 40%;">
                                    <textarea v-model="questionData.table.three"
                                        class="w100 table-tr-bc b0 table-textarea" @change="setBookQuestion"></textarea>
                                </td>
                                <td style="width: 40%;">
                                    <textarea v-model="questionData.table.four"
                                        class="w100 table-tr-bc b0 table-textarea textarea-box"
                                        @change="setBookQuestion"></textarea>
                                </td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td>
                                    <textarea v-model="questionData.table.six"
                                        class="w100 table-tr-bc b0 table-textarea" @change="setBookQuestion"></textarea>
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.seven"
                                        class="w100 table-tr-bc b0 table-textarea textarea-box"
                                        @change="setBookQuestion"></textarea>
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.enight"
                                        class="w100 table-tr-bc b0 table-textarea textarea-box"
                                        @change="setBookQuestion"></textarea>
                                </td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td>
                                    <textarea v-model="questionData.table.two"
                                        class="w100 table-tr-bc b0 table-textarea textarea-box"
                                        @change="setBookQuestion"></textarea>
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.three"
                                        class="w100 table-tr-bc b0 table-textarea" @change="setBookQuestion"></textarea>
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.four"
                                        class="w100 table-tr-bc b0 table-textarea textarea-box"
                                        @change="setBookQuestion"></textarea>
                                </td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td>
                                    <textarea v-model="questionData.table.six"
                                        class="w100 table-tr-bc b0 table-textarea" @change="setBookQuestion"></textarea>
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.seven"
                                        class="w100 table-tr-bc b0 table-textarea textarea-box"
                                        @change="setBookQuestion"></textarea>
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.enight"
                                        class="w100 table-tr-bc b0 table-textarea textarea-box"
                                        @change="setBookQuestion"></textarea>
                                </td>
                            </tr>
                        </table>
                        <p class="left"><img class="img-gn" alt="" src="../../assets/images/dy1-wordbank.jpg" /></p>
                        <div class="bk-wh">
                            <p>blood donation volunteer teacher community service nursing
                                home rewarding challenging demanding interesting overwhelming moving merciful kind-hearted appreciate cherish respect
                            </p>
                        </div>
                        <h2 id="b010"><img class="img-0" alt="" src="../../assets/images/dy3-le2.jpg" /></h2>
                        <h3 id="c023"><span class="bjh3">Warm-up</span></h3>
                        <p><b>There are some organizations committed to making the world a better place and making a
                                difference in people's lives.Work with your partner to do research online and match the
                                following organizations with their missions.</b></p>
                        <p class="center"><img class="img-a" alt="" src="../../assets/images/0056-1.jpg" /></p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">46</span>
                </div>
            </div>
        </div>
        <!-- 47 -->
        <div class="page-box" page="53">
            <div v-if="showPageList.indexOf(53) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit3">MODULE 3</span>
                        <span class="chapter-right-bc-unit3 fw-bl chapter-right-cl-unit3">A BETTER WORLD WITH
                            VOLUNTEERS</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p class="center"><img class="img-a" alt="" src="../../assets/images/0056-1.jpg" /></p>
                        <h3 id="c024"><span class="bjh3">Reading</span></h3>
                        <audio :src="resource.listenOne" controls class="audio" @play="audioPlay"></audio>
                        <p>1.More and more organizations and individuals in China are working in public service.Can you
                            name a few?</p>
                        <p>2.What changes do they bring to China?</p>
                        <p class="center"><b>How to Light Up the World</b></p>
                        <p>(Excerpted from the speech “Learning from a Barefoot Movement”)</p>
                        <p>If you go all over the world to very remote villages,you will often find only very old people
                            and very young people.The men have already left.So,we came up with the simple solution of
                            training grandmothers.Grandmothers are compassionate,tolerant,willing to learn,and
                            patient.All the qualities that you need are there.</p>
                        <p>Barefoot College follows the lifestyle of Gandhi:Students eat,sleep,and work on the
                            floor.They can stay for 20 years,or they can go home tomorrow.As of today,we’ve trained 604
                            women solar engineers from 1,083 villages in 63 countries.</p>
                        <p>The engineers have solar-electrified 45,000 houses.Please remember that our students are
                            primarily women who have never left their villages before.They hate the idea of leaving
                            their families and getting on a plane.When they reach India,sometimes after 19 hours of
                            travel,they </p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">47</span>
                </div>
            </div>
        </div>
        <!-- 48 -->
        <div class="page-box" page="54">
            <div v-if="showPageList.indexOf(54) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit3 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit3">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit3">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p>are faced with strange food,strange people,and strange language.We do all the training in
                            sign
                            language.Yet in six months,they will know more about solar engineering than most university
                            graduates.Some women face problems at home for attending Barefoot College.In most of these
                            traditional societies,the husband says,“If you go for training,don’t come back to me.I will
                            take
                            another wife.” Then the wife goes,and when she returns,she helps provide her village with
                            solar
                            electricity.And her husband says,“Please come back to me.” But she says,“No,I’m fine.”
                            Because
                            the respect she now has is enormous.</p>
                        <p>We taught a woman from Afghanistan.It was the first time a grandmother had left her
                            village.Afterwards,at a community gathering,she went to sit with the men,who said,“What do
                            you think you’re doing? You should be sitting with the women.” And she said quietly,“Today I
                            am not a woman; I am an engineer.I have every right to sit with you.”</p>
                        <p>I have a dream.I would like to provide the world’s 47 least developed countries with Barefoot
                            College–trained grandmothers,and together they could solar-electrify more than 100,000
                            homes.I would like to reach a million people,and I hope you will be a part of this dream.
                        </p>
                        <p>I’ll end the passage with a quotation from Gandhi:“First they ignore you,then they laugh at
                            you,then they fight you,and then you win.”</p>
                        <p class="fl al-cn mt-40">
                            <span class="zt-cs" style="font-size: 20px">Words &amp; Expressions</span>
                            <span class="line-border-box"></span>
                        </p>
                        <audio :src="resource.listenOne" controls class="audio" @play="audioPlay"></audio>
                        <p>remote /rɪˈməʊt/ <i>adj.</i> 偏远的</p>
                        <div class="bkbj">
                            <p><i>far away from places where other people live</i></p>
                        </div>
                        <p>solution /səˈluːʃn/ <i>n.</i> 解决办法</p>
                        <div class="bkbj">
                            <p><i>a way of solving a problem or dealing with a difficult situation</i></p>
                        </div>
                        <p>compassionate /kəmˈpæʃənət/ <i>adj.</i> 有同情心的;怜悯的</p>
                        <div class="bkbj">
                            <p><i>feeling or showing sympathy for people or animals who are suffering</i></p>
                        </div>
                        <p>tolerant /ˈtɒlərənt/ <i>adj.</i> 宽容的;容忍的</p>
                        <div class="bkbj">
                            <p><i>able to accept what other people say or do even if you do not agree with it</i></p>
                        </div>
                        <p>solar /ˈsəʊlə(r)/ <i>adj.</i> 太阳能的</p>
                        <div class="bkbj">
                            <p><i>using the sun’s energy</i></p>
                        </div>
                        <p>electrify /ɪˈlektrɪfaɪ/ <i>v.</i> 使电气化;给(某物)充电</p>
                        <div class="bkbj">
                            <p><i>to convert to the use of electric power; to charge (sth.) with electricity</i></p>
                        </div>
                        <p>primarily /praɪˈmerəli/ <i>adv.</i> 主要地</p>
                        <div class="bkbj">
                            <p><i>mainly</i></p>
                        </div>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">48</span>
                </div>
            </div>
        </div>
        <!-- 49 -->
        <div class="page-box" page="55">
            <div v-if="showPageList.indexOf(55) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit3">MODULE 3</span>
                        <span class="chapter-right-bc-unit3 fw-bl chapter-right-cl-unit3">A BETTER WORLD WITH
                            VOLUNTEERS</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p>attend /əˈtend/ <i>v.</i> 参加</p>
                        <div class="bkbj">
                            <p><i>to be present at an event</i></p>
                        </div>
                        <p>traditional /trəˈdɪʃənl/ <i>adj.</i> 传统的</p>
                        <div class="bkbj">
                            <p><i>being part of the beliefs,customs or way of life of a particular group of people,which
                                    have not changed for a long time</i></p>
                        </div>
                        <p>afterwards /ˈɑːftəwədz/ <i>adv.</i> 后来;以后</p>
                        <div class="bkbj">
                            <p><i>at a later time; after an event that has already been mentioned</i></p>
                        </div>
                        <p>quotation /kwəʊˈteɪʃn/ <i>n.</i> 引语;引文;语录</p>
                        <div class="bkbj">
                            <p><i>a group of words or a short piece of writing taken from a book,play,speech,etc.and
                                    repeated because it is interesting or useful</i></p>
                        </div>
                        <p>ignore /ɪɡˈnɔː(r)/ <i>v</i>.佯装未见;不予理睬</p>
                        <div class="bkbj">
                            <p><i>to pretend that you have not seen sb.or that sb.is not there</i></p>
                        </div>
                        <div style="display: flex;">
                            <div class="left" style="width:40%;">
                                <p>light up 点亮</p>
                                <p>come up with 提出;想出</p>
                                <p>end ...with ...以……结束……</p>
                            </div>
                            <div class="right" style="width:60%;">
                                <p>go over (to ...) 从一处到(另一处)</p>
                                <p>be faced with sth.面临,必须对付(某情况)</p>
                            </div>
                        </div>
                        <div class="bj-note">
                            <p><b>Notes:</b></p>
                            <p>Barefoot
                                College:赤脚大学。这个公益项目主要针对来自世界各地农村的文盲或半文盲,大部分都是中年母亲或祖母,为她们提供免费的教育,让她们成为水务工程师、太阳能工程师、设计师、助产士、建筑师或农村社会企业家。
                            </p>
                        </div>
                        <p><b>Ⅰ.Reading comprehension.</b></p>
                        <p>A.Fill in the blanks with the numbers in the passage.</p>
                        <p class="center"><img class="img-a" alt="" src="../../assets/images/0059-1.jpg" /></p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">49</span>
                </div>
            </div>
        </div>
        <!-- 50 -->
        <div class="page-box" page="56">
            <div v-if="showPageList.indexOf(56) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit3 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit3">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit3">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p>B.Decide whether the following statements are true (T) or false (F).</p>
                        <p>( ) 1.Showing compassion and being patient are qualities needed for training.</p>
                        <p>( ) 2.Women have to overcome a lot of difficulties to attend Barefoot College.</p>
                        <p>( ) 3.Half of the courses in the training are done in sign language.</p>
                        <p>( ) 4.Husbands are always supportive for wives to go for training.</p>
                        <p>( ) 5.The training helps women gain respect for the changes they brought in.</p>
                        <p><b>Ⅱ.Language focus.</b></p>
                        <p>A.Replace the words in italics with the exact words in the passage and change the form if
                            necessary.</p>
                        <p>1.In <i>far-away </i>areas,only the old and the kids are left._____</p>
                        <p>2.The government works on <i>ways</i> to fight against poverty._____</p>
                        <p>3.People having no access to electricity <i>mainly</i> live in Africa._____</p>
                        <p>4.Some college students choose to <i>join</i> volunteering programs after graduation._____
                        </p>
                        <p>5.Family reunion is a <i>usual </i>way to celebrate the Spring Festival._____</p>
                        <p>B.Fill in the blanks with the proper form of the expressions given below._____</p>
                        <div class="fieldset">
                            <p>end ...with ... come up with light up be faced with go over to</p>
                        </div>
                        <p>1.After watching the news,he ________ the idea to support the little girl’s education.</p>
                        <p>2.Many Irish people ________ America during the famine (饥荒时期).</p>
                        <p>3.They ________ the play ________ a song.</p>
                        <p>4.The teacher’s smiles ________ the boy’s life.</p>
                        <p>5.Girls in some parts of the world ________ gender discrimination.</p>
                        <p><b>Ⅲ.Grammar focus:The simple future tense.</b></p>
                        <p>Underline the parts indicating the future tense.</p>
                        <p>1.I am about to send you an email with all of our prices.</p>
                        <p>2.She is to marry John next month.</p>
                        <p>3.I will call you as soon as I arrive there.</p>
                        <p>4.We are going to volunteer in the nursing home this weekend.</p>
                        <p>5.My plane is taking off at 8:20,so I must be at the airport by 7:20.</p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">50</span>
                </div>
            </div>
        </div>
        <!-- 51 -->
        <div class="page-box" page="57">
            <div v-if="showPageList.indexOf(57) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit3">MODULE 3</span>
                        <span class="chapter-right-bc-unit3 fw-bl chapter-right-cl-unit3">A BETTER WORLD WITH
                            VOLUNTEERS</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <h3 id="c025"><span class="bjh3">Mini-project</span></h3>
                        <audio :src="resource.listenOne" controls class="audio" @play="audioPlay"></audio>
                        <p>Watch the video and mark what the man has done.Then discuss with your partner about what we
                            can do in reality to make a change in people’s lives.</p>
                        <p>Things the man has done:</p>
                        <p><input type="checkbox" name="ball" value="Language" id="1" v-model="testData.check" /> Hold
                            the elevator for the lady</p>
                        <p><input type="checkbox" name="ball" value="Language" id="1" v-model="testData.check" /> Catch
                            the balloon for the kid</p>
                        <p><input type="checkbox" name="ball" value="Language" id="1" v-model="testData.check" /> Stop
                            the shopping cart</p>
                        <p><input type="checkbox" name="ball" value="Language" id="1" v-model="testData.check" /> Teach
                            kids to swim</p>
                        <p><input type="checkbox" name="ball" value="Language" id="1" v-model="testData.check" /> Help
                            the old cross the street</p>
                        <p><input type="checkbox" name="ball" value="Language" id="1" v-model="testData.check" /> Plant
                            trees in the park</p>
                        <p class="left"><img class="img-gn" alt="" src="../../assets/images/dy1-worksheet.jpg" /></p>
                        <table border="1" cellpadding="4" cellspacing="0" style="border-color: #fff" class="fz-14">
                            <tr class="table-th-bc">
                                <td class="tl-cn">Things We Can Do</td>
                                <td class="tl-cn">Changes We Can Make</td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td style="word-break: break-all;">Hold the door for the personbehind me.</td>
                                <td style="word-break: break-all;">It can be very embarrassing if one gets bumped by a
                                    door, Holding the door for the person behind me shows that I care for other people.
                                </td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td>
                                    <textarea v-model="questionData.table.two"
                                        class="w100 table-tr-bc b0 table-textarea textarea-box"
                                        @change="setBookQuestion"></textarea>
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.three"
                                        class="w100 table-tr-bc b0 table-textarea" @change="setBookQuestion"></textarea>
                                </td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td>
                                    <textarea v-model="questionData.table.two"
                                        class="w100 table-tr-bc b0 table-textarea textarea-box"
                                        @change="setBookQuestion"></textarea>
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.three"
                                        class="w100 table-tr-bc b0 table-textarea" @change="setBookQuestion"></textarea>
                                </td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td>
                                    <textarea v-model="questionData.table.two"
                                        class="w100 table-tr-bc b0 table-textarea textarea-box"
                                        @change="setBookQuestion"></textarea>
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.three"
                                        class="w100 table-tr-bc b0 table-textarea" @change="setBookQuestion"></textarea>
                                </td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td>
                                    <textarea v-model="questionData.table.two"
                                        class="w100 table-tr-bc b0 table-textarea textarea-box"
                                        @change="setBookQuestion"></textarea>
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.three"
                                        class="w100 table-tr-bc b0 table-textarea" @change="setBookQuestion"></textarea>
                                </td>
                            </tr>
                        </table>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">51</span>
                </div>
            </div>
        </div>
        <!-- 52 -->
        <div class="page-box" page="58">
            <div v-if="showPageList.indexOf(58) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit3 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit3">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit3">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <h2 id="b011"><img class="img-0" alt="" src="../../assets/images/dy3-le3.jpg" /></h2>
                        <h3 id="c026"><span class="bjh3">Listening</span></h3>
                        <audio :src="resource.listenOne" controls class="audio" @play="audioPlay"></audio>
                        <p><b>Ⅰ.Listen to the recording and fill in the blanks with what you hear.</b></p>
                        <p>Just now,I was giving people_________in Chinese.I am a_________here in Lotus Lane in
                            Houhai.I’ve lived in Beijing for 24 years and I’m_________from the United States.My name is
                            Terry.I’m 64 years old and I’m_________.And I_________some of my time
                            volunteering,helping_________find their way around this beautiful area of Xicheng District
                            in Beijing.I love volunteering because I love doing things for people.I like to make people
                            happy.I think by making people happy they make other people happy.It’s like_________a stone
                            into the river.It makes little waves and your_________can be given to other people.</p>
                        <p><b>Ⅱ.Listen to the interview and answer the following questions.</b></p>
                        <p>1.When did Mr.Crossman start volunteering?</p>
                        <p>_________________________________________________________</p>
                        <p>2.Why was volunteering not easy in the beginning?</p>
                        <p>_________________________________________________________</p>
                        <p>3.What makes him popular?</p>
                        <p>_________________________________________________________</p>
                        <p>4.What’s his understanding of the volunteering spirit?</p>
                        <p>_________________________________________________________</p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">52</span>
                </div>
            </div>
        </div>
        <!-- 53 -->
        <div class="page-box" page="59">
            <div v-if="showPageList.indexOf(59) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit3">MODULE 3</span>
                        <span class="chapter-right-bc-unit3 fw-bl chapter-right-cl-unit3">A BETTER WORLD WITH
                            VOLUNTEERS</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">53</span>
                </div>
            </div>
        </div>
        <!-- 54 -->
        <div class="page-box" page="60">
            <div v-if="showPageList.indexOf(60) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit3 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit3">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit3">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle"></div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">12</span>
                </div>
            </div>
        </div>
        <!-- 55 -->
        <div class="page-box" page="61">
            <div v-if="showPageList.indexOf(61) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit3">MODULE 3</span>
                        <span class="chapter-right-bc-unit3 fw-bl chapter-right-cl-unit3">A BETTER WORLD WITH
                            VOLUNTEERS</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle"></div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">39</span>
                </div>
            </div>
        </div>
        <!-- 56 -->
        <div class="page-box" page="62">
            <div v-if="showPageList.indexOf(62) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit3 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit3">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit3">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle"></div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">12</span>
                </div>
            </div>
        </div>
        <!-- 57 -->
        <div class="page-box" page="63">
            <div v-if="showPageList.indexOf(63) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit3">MODULE 3</span>
                        <span class="chapter-right-bc-unit3 fw-bl chapter-right-cl-unit3">A BETTER WORLD WITH
                            VOLUNTEERS</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle"></div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">39</span>
                </div>
            </div>
        </div>
        <!-- 58 -->
        <div class="page-box" page="64">
            <div v-if="showPageList.indexOf(64) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit3 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit3">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit3">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle"></div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">12</span>
                </div>
            </div>
        </div>
        <!-- 第四单元 -->
        <!-- 59 -->
        <div class="page-box" page="65">
            <div v-if="showPageList.indexOf(65) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit3">MODULE 3</span>
                        <span class="chapter-right-bc-unit3 fw-bl chapter-right-cl-unit3">A BETTER WORLD WITH
                            VOLUNTEERS</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle"></div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">39</span>
                </div>
            </div>
        </div>
        <!-- 60 -->
        <div class="page-box" page="66">
            <div v-if="showPageList.indexOf(66) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit3 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit3">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit3">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle"></div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">12</span>
                </div>
            </div>
        </div>
    </div>
</template>
 
<script>
import matching from "@/components/matching/matching.vue";
import { getResourcePath } from "@/assets/methods/resources";
export default {
    name: "chapter-three",
    components: { matching },
    props: {
        showPageList: {
            type: Array,
        },
    },
    data() {
        return {
            imgThirteen: require("../../assets/images/grammar.jpg"),
            showAnswerOne: false,
            showAnswerTwo: false,
            showAnswerThree: false,
            showAnswerFour: false,
            showAnswerFive: false,
            showImg: false,
            showQuestionAnswer: false,
            rawData: {
                left: [
                    {
                        oldId: "FB34",
                        txt: "Martin    Silk",
                    },
                    {
                        oldId: "64D6",
                        txt: "Jessica  The Great Wall",
                    },
                    {
                        oldId: "2ED4",
                        txt: "Soren  Chinese Food",
                    },
                    {
                        oldId: "44DE",
                        txt: "Chinese    Tea",
                    },
                ],
                right: [
                    {
                        oldId: "64D6",
                        txt: "It is one of China's must-see sights for visitors, which shows thewisdom of Chinese people.",
                    },
                    {
                        oldId: "FB34",
                        txt: "It was first discovered and drank in China and my favorileLongjing tca is praduced near the West Lake in Hangzhou.",
                    },
                    {
                        oldId: "2ED4",
                        txt: "The clothing material is quite popular among Roman women inancient times.",
                    },
                    {
                        oldId: "44DE",
                        txt: "It is very delicious and I like the hot and spicy Sichuan lavor hest.",
                    },
                ],
            },
            value: [],
            question: {
                KnowledgePoint: "123",
                analysis: "123",
                answer: [
                    {
                        id: "FB34",
                        linkValue:
                            "The clothing material is quite popular among Roman women inancient times.",
                        value: "Silk",
                    },
                    {
                        id: "64D6",
                        linkValue:
                            "It is one of China's must-see sights for visitors, which shows thewisdom of Chinese people.",
                        value: "The Great Wall",
                    },
                    {
                        id: "2ED4",
                        linkValue:
                            "It is very delicious and I like the hot and spicy Sichuan lavor hest.",
                        value: "Chinese Food",
                    },
                    {
                        id: "44DE",
                        linkValue:
                            "It was first discovered and drank in China and my favorileLongjing tca is praduced near the West Lake in Hangzhou.",
                        value: "Chinese Tea",
                    },
                ],
                optionStyle: undefined,
                id: 489306,
                options: {
                    linkValues: [
                        {
                            oldId: "64D6",
                            txt: "It is one of China's must-see sights for visitors, which shows thewisdom of Chinese people.",
                        },
                        {
                            oldId: "44DE",
                            txt: "It was first discovered and drank in China and my favoriteLongjing tea is produced near the West Lake in Hangzhou.",
                        },
                        {
                            oldId: "FB34",
                            txt: "The clothing material is quite popular among Roman women inancient times.",
                        },
                        {
                            oldId: "2ED4",
                            txt: "It is very delicious and I like the hot and spicy Sichuan lavor hest.",
                        },
                    ],
                    values: [
                        {
                            oldId: "FB34",
                            txt: "Martin  Silk",
                        },
                        {
                            oldId: "64D6",
                            txt: "The Great Wall",
                        },
                        {
                            oldId: "2ED4",
                            txt: "Chinese Food",
                        },
                        {
                            oldId: "44DE",
                            txt: "Chinese Tea",
                        },
                    ],
                },
                questionType: "matching",
                stem: {
                    stemTxt: "按顺序连线",
                },
                stemStyle: undefined,
                titleDescription: "1",
                userChoise: [],
                value: [],
                answerImg: require("../../assets/images/matching-one.png"),
            },
            questionData: {
                warnUp: {
                    one: {
                        value: "",
                        isRight: null,
                        answer: "Chinese knot",
                    },
                    two: {
                        value: "",
                        isRight: null,
                        answer: "Chinese medicine",
                    },
                    three: {
                        value: "",
                        isRight: null,
                        answer: "Chinese calligraphy",
                    },
                    four: {
                        value: "",
                        isRight: null,
                        answer: "Taichi",
                    },
                    five: {
                        value: "",
                        isRight: null,
                        answer: "sweet dumpling",
                    },
                    six: {
                        value: "",
                        isRight: null,
                        answer: "Chinese chess",
                    },
                    seven: "",
                },
                reading: {
                    one: "",
                    two: "",
                },
                table: {
                    one: "",
                    two: "",
                    three: "",
                    four: "",
                    five: "",
                    six: "",
                    seven: "",
                    enight: "",
                    nine: "",
                },
            },
            testData: {
                check: [],
                tx: {
                    one: "",
                    two: "",
                    three: "",
                    four: "",
                    five: "",
                },
                in: {
                    one: "",
                    two: "",
                    three: "",
                    four: "",
                    five: "",
                },
                line: {
                    one: "",
                    two: "",
                    three: "",
                    four: "",
                    five: "",
                },
                ts: {
                    one: "",
                    two: "",
                    three: "",
                    four: "",
                },
                gr: {
                    one: "",
                    two: "",
                    three: "",
                    four: "",
                    five: "",
                },
                cm: {
                    one: "",
                    two: "",
                    three: "",
                    four: "",
                    five: "",
                },
            },
            resource: {
                listenOne: "",
                readingOne: "",
                readingTwo: "",
            },
            dropDownList: [
                "animal rescue and care",
                "blood donation",
                "community clean-ups",
                "language service",
            ],
            dropdownData: {
                one: {
                    value: "",
                    isRight: null,
                    answer: "blood donation",
                },
                two: {
                    value: "",
                    isRight: null,
                    answer: "language service",
                },
                three: {
                    value: "",
                    isRight: null,
                    answer: "community clean-ups",
                },
                four: {
                    value: "",
                    isRight: null,
                    answer: "animal rescue and care",
                },
            },
        };
    },
    mounted() {
        const testData = localStorage.getItem("english-testOne");
        if (testData) {
            this.testData = JSON.parse(testData);
        }
        const bookQuestion = localStorage.getItem("english-book-question-one");
        if (bookQuestion) {
            this.questionData = JSON.parse(bookQuestion);
        }
        const dropdownData = localStorage.getItem("english-dropdown-one");
        if (dropdownData) {
            this.dropdownData = JSON.parse(dropdownData);
        }
        this.getPath();
    },
    methods: {
        saveWord(event, word) {
            this.$emit("saveCharacters", event, word);
        },
        setTestData() {
            localStorage.setItem("english-testOne", JSON.stringify(this.testData));
        },
        changeTestData() {
            localStorage.removeItem("english-testOne");
            this.testData = {
                check: [],
                tx: {
                    one: "",
                    two: "",
                    three: "",
                    four: "",
                    five: "",
                },
                in: {
                    one: "",
                    two: "",
                    three: "",
                    four: "",
                    five: "",
                },
                line: {
                    one: "",
                    two: "",
                    three: "",
                    four: "",
                    five: "",
                },
                ts: {
                    one: "",
                    two: "",
                    three: "",
                    four: "",
                },
                gr: {
                    one: "",
                    two: "",
                    three: "",
                    four: "",
                    five: "",
                },
                cm: {
                    one: "",
                    two: "",
                    three: "",
                    four: "",
                    five: "",
                },
            };
        },
        setBookQuestion() {
            console.log("保存");
            localStorage.setItem(
                "english-book-question-one",
                JSON.stringify(this.questionData)
            );
        },
        async getPath() {
            this.resource.listenOne = await getResourcePath(
                "422139A2EF66EA888C5ED1D550AE23E0"
            );
            this.resource.readingOne = await getResourcePath(
                "3F442B682D84C8AB06C800B29D734920"
            );
            this.resource.readingTwo = await getResourcePath(
                "E8719EC88026BCFB11D292AA999F6D3D"
            );
        },
        showAnswer(type) {
            if (type == "showImg") {
                this.showImg = !this.showImg;
            }
        },
        handleQuestion(type) {
            if (type == "one") {
                this.questionData.warnUp.one.value
                    ? (this.questionData.warnUp.one.isRight =
                        this.questionData.warnUp.one.value == "Chinese knot")
                    : (this.questionData.warnUp.one.isRight = null);
            } else if (type == "two") {
                this.questionData.warnUp.two.value
                    ? (this.questionData.warnUp.two.isRight =
                        this.questionData.warnUp.two.value == "Chinese medicine")
                    : (this.questionData.warnUp.two.isRight = null);
            } else if (type == "three") {
                this.questionData.warnUp.three.value
                    ? (this.questionData.warnUp.three.isRight =
                        this.questionData.warnUp.three.value == "Chinese calligraphy")
                    : (this.questionData.warnUp.three.isRight = null);
            } else if (type == "four") {
                this.questionData.warnUp.four.value
                    ? (this.questionData.warnUp.four.isRight =
                        this.questionData.warnUp.four.value == "Taichi")
                    : (this.questionData.warnUp.four.isRight = null);
            } else if (type == "five") {
                this.questionData.warnUp.five.value
                    ? (this.questionData.warnUp.five.isRight =
                        this.questionData.warnUp.five.value == "sweet dumpling")
                    : (this.questionData.warnUp.five.isRight = null);
            } else if (type == "six") {
                this.questionData.warnUp.six.value
                    ? (this.questionData.warnUp.six.isRight =
                        this.questionData.warnUp.six.value == "Chinese chess")
                    : (this.questionData.warnUp.six.isRight = null);
            }
        },
        handleDropdown(type) {
            const dropdownDatas = this.dropdownData;
            for (let key in dropdownDatas) {
                const item = dropdownDatas[key];
                if (type == "judge") {
                    item.value == item.answer
                        ? (item.isRight = true)
                        : (item.isRight = false);
                    console.log(item.value, item.answer);
                }
            }
            this.dropdownData = dropdownDatas;
        },
        changeDropdown() {
            localStorage.removeItem("english-dropdown-one");
            for (let key in this.dropdownData) {
                const item = this.dropdownData[key];
                item.value = "";
                item.isRight = null;
            }
        },
        setDropdownData() {
            localStorage.setItem(
                "english-dropdown-one",
                JSON.stringify(this.dropdownData)
            );
        },
        saveData() {
            console.log(this.testData);
        },
        audioPlay() {
            this.$emit("closeMiniAudio");
        },
    },
};
</script>
 
<style lang="less" scoped>
p {
    font-size: 16px !important;
}
 
.bodystyle {
    margin: 0 !important;
}
 
.line-border-box {
    margin-left: 10px;
    display: inline-block;
    width: 50%;
    height: 3px;
    background-color: #f9a71b;
}
 
.mr-20 {
    margin-right: 20px;
}
 
.dl-box {
    display: flex;
    flex-wrap: wrap;
 
    .dl-span {
        display: inline-block;
        text-indent: 0;
        margin-bottom: 15px;
        height: 20px;
        line-height: 20px;
    }
}
 
.btn-w {
    font-size: 14px;
    border-width: 1px;
    min-width: 80px;
    height: 30px;
    background-color: #fff;
 
    &:hover {
        background-color: #0bab87;
        color: #fff;
    }
}
 
.banshi {
    position: relative;
    margin-top: 40px;
    width: 100%;
    height: 350px;
    margin: 0 auto;
}
 
.pageBox {
    z-index: 9999999999;
    color: #999;
    position: absolute;
    left: 48%;
    bottom: 0px;
}
 
select {
    height: 24px;
}
 
.mini-audio {
    width: 200px;
    height: 200px;
    position: fixed;
    right: 0;
    background-color: red;
}
</style>