user1
2024-06-28 c7b33fe92cf6d4449ca5919353c15611ae9ad410
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
<template>
    <div class="chapter" num="8">
        <!-- 第七单元 -->
        <!-- 118 -->
        <div class="page-box" page="124">
            <div v-if="showPageList.indexOf(124) > -1">
                <h1 id="a011"><img class="img-0" alt="" src="../../assets/images/dy7.jpg" /></h1>
                <p><b>This unit will help you to:</b></p>
                <p>➢ Learn words and expressions about work ethic</p>
                <p>➢ Review the difference between the simple past tense and the past perfect tense as well as the usage
                    of conjunctions (and,or,but)</p>
                <p>➢ Give suggestions on how to develop a strong work ethic</p>
                <p>➢ Be able to write a warning notice</p>
                <p>➢ Understand some work ethic and behave well in the workplace</p>
                <p class="center"><img class="img-0" alt="" src="../../assets/images/0128-2.jpg" /></p>
            </div>
        </div>
        <!-- 119 -->
        <div class="page-box" page="125">
            <div v-if="showPageList.indexOf(125) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit7">MODULE 7</span>
                        <span class="chapter-right-bc-unit7 fw-bl chapter-right-cl-unit7">WORK ETHIC AND SUCCESS IN THE
                            WORKPLACE</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <h2 id="b025"><img class="img-0" alt="" src="../../assets/images/dy7-le1.jpg" /></h2>
                        <h3 id="c055"><span class="bjh3">Warm-up</span></h3>
                        <p><b>Ⅰ.Suppose it is your first day at work,how can you favorably impress your workmates?</b>
                        </p>
                        <p>______________________________________________</p>
                        <p><b>Ⅱ.Put the following names of the departments in the proper blanks according to their
                                functions.</b></p>
                        <p class="center"><img class="img-a" alt="" src="../../assets/images/0129-2.jpg" /></p>
                        <p class="center"><img class="img-a" alt="" src="../../assets/images/0129-1.jpg" /></p>
                        <h3 id="c056"><span class="bjh3">Listening</span></h3>
                        <p class="center"><audio :src="resource.readingTwo" controls
                                controlslist="noplaybackrate nodownload" style="margin-left: 10px" class="audio"
                                @play="audioPlay"></audio></p>
                        <p><b>Listen to the monologue about workplace success and fill in the blanks with what you
                                hear.</b></p>
                        <p>Do you want to succeed in the workplace? Try your best for_____in everything you
                            do.Excellence means to be the best in_____you do.Giving your 100% every time will help you
                            achieve that excellence in no time at all.Put all your_____in whatever you do and achieve
                            the best results.Care about the_____of your work and be willing to put in extra effort when
                            necessary.You will get more_____to grow as an individual and make great progress within
                            yourcareer.People with strong work ethic always a_______lot in return.</p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">119</span>
                </div>
            </div>
        </div>
        <!-- 120 -->
        <div class="page-box" page="126">
            <div v-if="showPageList.indexOf(126) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit7 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit7">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit7">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <h3 id="c057"><span class="bjh3">Reading</span></h3>
                        <p>1.If a man is called to be a street sweeper,he should sweep streets even as Michelangelo
                            painted,or Beethoven composed music or Shakespeare wrote poetry.What does this saying try to
                            tell us?</p>
                        <p>2.How can other people’s jobs influence our life?</p>
                        <p class="center"><b>Lineman Wang Jin</b></p>
                        <p class="center"><audio :src="resource.readingTwo" controls
                                controlslist="noplaybackrate nodownload" style="margin-left: 10px" class="audio"
                                @play="audioPlay"></audio></p>
                        <p>Working on high-voltage power lines is considered by many as a high-risk job.But for some
                            people it’s a daily routine.</p>
                        <p>Standing on towers over 100 meters high and working on ultra-high-voltage (UHV) lines,Wang
                            Jin has been in this job for more than 20 years.He is a team leader at an electric power
                            company.</p>
                        <p>Wang still clearly remembered the first time he touched the power line.“I was really scared
                            because at the moment of contact ...500 000 volts of electricity hit the gloves,” recalled
                            Wang.</p>
                        <p>The work is even harder for Wang and his co-workers because UHV lines are often set up in
                            remote areas.</p>
                        <p>Summer in east China’s Shandong Province can be hot and dry.The steel tower is also
                            hot.Wearing protective clothes in such weather,Wang felt dizzy even before he started the
                            shift.</p>
                        <p>In 2011,Wang finished the world’s first repair work on a 660-kilovolt live-transmission
                            line.The power transmitted by this line was almost one-tenth of the total power in the
                            entire province at that time.Wang won the National Science and Technology Progress Award—one
                            of China’s highest national honors—for his excellent performance.</p>
                        <p>China’s UHV power network continues to expand,so Wang and his colleagues have set up an
                            innovation center to address new challenges.</p>
                        <p>They have introduced more technologies including the use of drones for line inspection and
                            maintenance.They have 240 drones and 80 operators,and they want to create an
                            unmanned,digital and intelligent line inspection system.</p>
                        <p>Wang is now a father of two.His family gave him the biggest support.His dedication has made
                            him a role model for young people.Wang Innovation Studio now has nearly 100 members,who have
                            achieved more than 30 technological innovations.</p>
                        <p>By the end of 2020,a total of 35 UHV projects had been completed or were under construction
                            in China.Their total length is 48 000 kilometers.China’s electricity network has the highest
                            voltage and the biggest transmission capacity in the world.Thanks to technicians like Wang
                            and his colleagues,China hasn’t experienced a large-scale power outage in the past 10 years.
                        </p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">120</span>
                </div>
            </div>
        </div>
        <!-- 121 -->
        <div class="page-box" page="127">
            <div v-if="showPageList.indexOf(127) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit7">MODULE 7</span>
                        <span class="chapter-right-bc-unit7 fw-bl chapter-right-cl-unit7">WORK ETHIC AND SUCCESS IN THE
                            WORKPLACE</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <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>
                        <p class="center"> <audio :src="resource.readingTwo" controls
                                controlslist="noplaybackrate nodownload" style="margin-left: 10px" class="audio"
                                @play="audioPlay"></audio></p>
                        <p>voltage /ˈvəʊltɪdʒ/ <i>n.</i> 电压</p>
                        <div class="bkbj">
                            <p><i>electrical force measured in volts</i></p>
                        </div>
                        <p>routine /ruːˈtiːn/ <i>n.</i> 常规</p>
                        <div class="bkbj">
                            <p><i>fixed and regular way of doing things</i></p>
                        </div>
                        <p>scared /skeəd/ <i>adj.</i> 惊恐的;恐惧的</p>
                        <div class="bkbj">
                            <p><i>frightened</i></p>
                        </div>
                        <p>contact /ˈkɒntækt/ <i>n.</i> 接触</p>
                        <div class="bkbj">
                            <p><i>the state of touching sth.</i></p>
                        </div>
                        <p>electricity /ɪˌlekˈtrɪsəti/ <i>n.</i> 电</p>
                        <div class="bkbj">
                            <p><i>a form of energy from charged elementary particles,usually supplied as electric
                                    current</i></p>
                        </div>
                        <div class="bkbj">
                            <p><i>through cables,wires,etc.for lighting,heating,driving machines,etc.</i></p>
                        </div>
                        <p>protective /prəˈtektɪv/ <i>adj.</i> 受保护的</p>
                        <div class="bkbj">
                            <p><i>providing or intended to provide protection</i></p>
                        </div>
                        <p>dizzy /ˈdɪzi/<i> adj.</i> 头晕的;眩晕的</p>
                        <div class="bkbj">
                            <p><i>feeling as if everything is turning around you and that you are not able to
                                    balance</i></p>
                        </div>
                        <p>transmission /trænzˈmɪʃn/ <i>n.</i> 传送</p>
                        <div class="bkbj">
                            <p><i>the act or process of sending out an electronic signal or message</i></p>
                        </div>
                        <p>inspection /ɪnˈspekʃn/ <i>n.</i> 检查</p>
                        <div class="bkbj">
                            <p><i>the act of looking closely at sth./sb.,esp.to check if everything is as it should
                                    be</i></p>
                        </div>
                        <p>maintenance /ˈmeɪntənəns/ <i>n.</i> 维护</p>
                        <div class="bkbj">
                            <p><i>the act of keeping sth.in good condition by checking or repairing it regularly</i></p>
                        </div>
                        <p>digital /ˈdɪdʒɪtl/ <i>adj.</i> 数字的</p>
                        <div class="bkbj">
                            <p><i>connected with the use of computer technology,esp.the Internet</i></p>
                        </div>
                        <p>intelligent /ɪnˈtelɪdʒənt/ <i>adj.</i> 智能的</p>
                        <div class="bkbj">
                            <p><i>good at learning,understanding and thinking in a logical way about things; showing
                                    this ability</i></p>
                        </div>
                        <p>dedication /ˌdedɪˈkeɪʃn/ <i>n.</i> 献身;奉献</p>
                        <div class="bkbj">
                            <p><i>the hard work and effort that sb.puts into an activity or a purpose because they think
                                    it is important</i></p>
                        </div>
                        <p>achieve /əˈtʃiːv/ <i>v.</i> 获得;达到</p>
                        <div class="bkbj">
                            <p><i>to succeed in reaching a particular goal,status or standard,esp.by making an effort
                                    for a long time</i></p>
                        </div>
                        <p>construction /kənˈstrʌkʃn/ <i>n.</i> 建设</p>
                        <div class="bkbj">
                            <p><i>the process or method of building or making sth.,esp.roads,buildings,bridges,etc.</i>
                            </p>
                        </div>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">121</span>
                </div>
            </div>
        </div>
        <!-- 122 -->
        <div class="page-box" page="128">
            <div v-if="showPageList.indexOf(128) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit7 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit7">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit7">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p>capacity /kəˈpæsəti/ <i>n.</i> 容纳某事物的能力;做某事的能力</p>
                        <div class="bkbj">
                            <p><i>the ability to hold or contain sth.; the ability to do sth.</i></p>
                        </div>
                        <p>live-transmission line直流输电线路</p>
                        <p>under construction 修建中</p>
                        <p>set up 建立;设立</p>
                        <p>power outage停电</p>
                        <p><b>Ⅰ.Reading comprehension.</b></p>
                        <p>A.Fill in the blanks with the exact words in the passage.</p>
                        <p>1.Wang takes a high-risk job on high-voltage power lines as_______________.</p>
                        <p>2.Wang Jin felt_______________when he first touched the power line.</p>
                        <p>3.Wang finished the world’s first repair work on a 660-kilovolt_______________.</p>
                        <p>4.The innovation center uses_______________for line inspection and maintenance.</p>
                        <p>5.By 2020,a total of 35 UHV projects had been completed or_______________.</p>
                        <p>B.Put the following statements in right order according to the course of Wang’s career
                            development in the passage.</p>
                        <p>( ) Wang got one of the highest national awards for his superior performance.</p>
                        <p>( ) Wang and his colleagues set up an innovation center to meet new work demand.</p>
                        <p>( ) Wang was really afraid when he first touched the ultra-high-voltage line.</p>
                        <p>( ) Wang and his colleagues want to create an digital and intelligent line inspection system.
                        </p>
                        <p>( ) Wang and his colleagues use drones for checking and repairing the lines.</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>One of my first c________in my job experience was the cultural difference.Different cultures
                            make people think and behave differently.“Do in Rome as the Romans do.” In the first year I
                            usually communicated with my c________.I spent a lot of time keeping in c________with my
                            customers and developed my cross-cultural c________.In this way,I adapted to my new working
                            environment very fast,p________well and finally I a________my goals.</p>
                        <p>B.Underline the following expressions in the passage and make sentences with them.</p>
                        <p>1.set up_________________________________________</p>
                        <p>2.give support_________________________________________</p>
                        <p>3.under construction_________________________________________</p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">122</span>
                </div>
            </div>
        </div>
        <!-- 123 -->
        <div class="page-box" page="129">
            <div v-if="showPageList.indexOf(129) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit7">MODULE 7</span>
                        <span class="chapter-right-bc-unit7 fw-bl chapter-right-cl-unit7">WORK ETHIC AND SUCCESS IN THE
                            WORKPLACE</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p>4.thanks to_________________________________________</p>
                        <p>5.power outage_________________________________________</p>
                        <p>C.Translate the following sentences into Chinese.</p>
                        <p>1.If you want to achieve a higher working goal,you need to consider it carefully right now.
                        </p>
                        <p>_________________________________________________________________</p>
                        <p>2.To go for technical innovation,one must have the fearless spirit of a pathbreaker.</p>
                        <p>_________________________________________________________________</p>
                        <p>3.You need keep in contact with your customers when some problems arise.</p>
                        <p>_________________________________________________________________</p>
                        <p>4.Those employees believe that challenges offer opportunities to learn.</p>
                        <p>_________________________________________________________________</p>
                        <p><b>Ⅲ.Grammar focus:The simple past &amp; past perfect tense.</b></p>
                        <p>A.Pick out two sentences of the simple past tense and the past perfect tense respectively
                            from the passage,and then write them down.</p>
                        <p><b>The simple past tense:</b></p>
                        <p>1._________________________________________</p>
                        <p>2._________________________________________</p>
                        <p><b>The past perfect tense:</b></p>
                        <p>3._________________________________________</p>
                        <p>4._________________________________________</p>
                        <p>B.Fill in the blanks with the proper form of the given words.</p>
                        <p>1.He_____more than 20 technological innovations before he turned 35.(achieve)</p>
                        <p>2.She_____(give) a lot of financial support to animal protection organizations in 2022.</p>
                        <p>3.She didn’t go to bed until she_____her work.(finish)</p>
                        <p>4.He_____many awards because of his hard work last year.(win)</p>
                        <p>5.They_____more technologies for line repairing by 2021.(introduce)</p>
                        <h3 id="c058"><span class="bjh3">Mini-project</span></h3>
                        <p>List some people who are dedicated to their work,and analyze the reasons for their
                            success.Jot down some notes,and then make a report to the class.</p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">123</span>
                </div>
            </div>
        </div>
        <!-- 124 -->
        <div class="page-box" page="130">
            <div v-if="showPageList.indexOf(130) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit7 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit7">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit7">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p class="left"><img class="img-gn" alt="" src="../../assets/images/dy1-worksheet.jpg" /></p>
                        <p class="center"><img class="img-a" alt="" src="../../assets/images/0134-1.jpg" /></p>
                        <p class="left"><img class="img-gn" alt="" src="../../assets/images/dy1-wordbank.jpg" /></p>
                        <div class="bk-wh">
                            <p>strong-willed motivated active cooperative stressful disciplined risky helpful dutiful enthusiastic
                            </p>
                        </div>
                        <h2 id="b026"><img class="img-0" alt="" src="../../assets/images/dy7-le2.jpg" /></h2>
                        <h3 id="c059"><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>no bribery punctual attentive gossiping</p>
                        </div>
                        <p class="center"><img class="img-e" alt="" src="../../assets/images/0134-2.jpg" /></p>
                        <p class="center">1._____________________</p>
                        <p class="center"><img class="img-e" alt="" src="../../assets/images/0134-3.jpg" /></p>
                        <p class="center">2._____________________</p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">124</span>
                </div>
            </div>
        </div>
        <!-- 125 -->
        <div class="page-box" page="131">
            <div v-if="showPageList.indexOf(131) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit7">MODULE 7</span>
                        <span class="chapter-right-bc-unit7 fw-bl chapter-right-cl-unit7">WORK ETHIC AND SUCCESS IN THE
                            WORKPLACE</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p class="center"><img class="img-e" alt="" src="../../assets/images/0135-1.jpg" /></p>
                        <p class="center">3._____________________</p>
                        <p class="center"><img class="img-e" alt="" src="../../assets/images/0135-2.jpg" /></p>
                        <p class="center">4._____________________</p>
                        <h3 id="c060"><span class="bjh3">Reading</span></h3>
                        <p>1.What examples come first to mind when referring to positive or poor work ethic?</p>
                        <p>2.What kind of colleagues do you want to work with?</p>
                        <p class="center"><b>Work Ethic in the Workplace</b></p>
                        <p class="center"> <audio :src="resource.readingTwo" controls
                                controlslist="noplaybackrate nodownload" style="margin-left: 10px" class="audio"
                                @play="audioPlay"></audio></p>
                        <p>Work ethic is a set of standards of behavior and beliefs regarding what is and isn’t
                            acceptable to do at work,which can be strong (good) or poor (bad).It depends on personal
                            views of employees,their motivation,and overall company culture.</p>
                        <p>Next,we’ll review some common examples of both strong and poor work ethic.</p>
                        <p><b>Example</b> 1</p>
                        <p>Angela’s director asked her to sort out data about the patients and
                            insurance.Unfortunately,Angela isn’t very familiar with processing certain insurance claims.
                        </p>
                        <p>Rather than giving up,Angela decides to expand her skills.She networks with her coworkers in
                            the insurance department and consults her director.</p>
                        <p>In the process,she expands her skills to make sure she meets her goals.</p>
                        <p><b>Example</b> 2</p>
                        <p>Jim’s director asked him to review the financial reports from last quarter to look for
                            purchases from one guest.The director gave him this task about a month ago and asked him to
                            complete it within a few weeks.</p>
                        <p>Now,a month has passed,but Jim still hasn’t reviewed any of the reports.Rather than starting
                            early,he leaves it to the last minute and turns in an incomplete report.</p>
                        <p><b>Example</b> 3</p>
                        <p>Sheila is sometimes bothered by the tasks assigned by her director.However,she never
                            addresses her complaints to the director.Instead,she complains to her coworkers,friends,and
                        </p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">125</span>
                </div>
            </div>
        </div>
        <!-- 126 -->
        <div class="page-box" page="132">
            <div v-if="showPageList.indexOf(132) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit7 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit7">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit7">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p>anyone that will listen to her about her job.</p>
                        <p>Finally,the image of the company was badly affected and a bad working environment was
                            created.</p>
                        <p><b>Example</b> 4</p>
                        <p>Jeff is often late to work.When he arrives at the company,his coworkers have already worked
                            for half an hour or even longer.</p>
                        <p>Instead of trying hard to change the current situation,he makes various excuses for being
                            late.</p>
                        <p>His constant delay shows a lack of respect for his job and coworkers.His coworkers think of
                            him as being unreliable and irresponsible as a result.</p>
                        <p>The above examples represent a set of working attitudes that regulate employees’ behavior at
                            work.And what can you do to develop strong work ethic?</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>
                        <p class="center"> <audio :src="resource.readingTwo" controls
                                controlslist="noplaybackrate nodownload" style="margin-left: 10px" class="audio"
                                @play="audioPlay"></audio></p>
                        <p>regarding /rɪˈɡɑːdɪŋ/ <i>prep.</i> 关于;至于</p>
                        <div class="bkbj">
                            <p><i>concerning sb./sth.; about sb./sth.</i></p>
                        </div>
                        <p>insurance /ɪnˈʃʊərəns/<i> n.</i>保险</p>
                        <div class="bkbj">
                            <p><i>an arrangement with a company in which you pay them regular amounts of</i></p>
                        </div>
                        <div class="bkbj">
                            <p><i>money and they agree to pay the costs</i></p>
                        </div>
                        <p>claim /kleɪm/<i> n.</i> 保险金索款</p>
                        <div class="bkbj">
                            <p><i>demand for a sum of money as insurance</i></p>
                        </div>
                        <p>purchase /ˈpɜːtʃəs/ <i>n.</i> 购买之物</p>
                        <div class="bkbj">
                            <p><i>sth.that you have bought</i></p>
                        </div>
                        <p>bother /ˈbɒðə(r)/ <i>v.</i> 打扰或烦扰某人</p>
                        <div class="bkbj">
                            <p><i>to</i> <i>cause trouble or annoyance to sb.</i></p>
                        </div>
                        <p>address /əˈdres/ <i>v.</i> 向……说话</p>
                        <div class="bkbj">
                            <p><i>to say sth.directly to sb.</i></p>
                        </div>
                        <p>complain /kəmˈpleɪn/ <i>v.</i> 抱怨;诉苦</p>
                        <div class="bkbj">
                            <p><i>to say that you are annoyed,unhappy or not satisfied about sb./sth.</i></p>
                        </div>
                        <p>constant /ˈkɒnstənt/ <i>adj.</i> 连续发生的;不断的;重复的</p>
                        <div class="bkbj">
                            <p><i>happening all the time or repeatedly</i></p>
                        </div>
                        <p>depend on 依靠;依赖</p>
                        <p>sort out 理顺;整理</p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">126</span>
                </div>
            </div>
        </div>
        <!-- 127 -->
        <div class="page-box" page="133">
            <div v-if="showPageList.indexOf(133) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit7">MODULE 7</span>
                        <span class="chapter-right-bc-unit7 fw-bl chapter-right-cl-unit7">WORK ETHIC AND SUCCESS IN THE
                            WORKPLACE</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p>give up 放弃</p>
                        <p>address sth.to sb. 向某人说某事</p>
                        <p>turn in 上交</p>
                        <p><b>Ⅰ.Reading comprehension.</b></p>
                        <p>A.Match the names in the left column with their behavior in the right column.</p>
                        <p class="center"><img class="img-a" alt="" src="../../assets/images/0137-1.jpg" /></p>
                        <p>B.Write down the work ethic mentioned in each of the four examples,and decide whether they
                            are strong or poor.</p>
                        <p class="center"><img class="img-a" alt="" src="../../assets/images/0137-2.jpg" /></p>
                        <p><b>Ⅱ.Language focus.</b></p>
                        <p>A.Fill in the blanks with the proper form of the words given below.</p>
                        <div class="bk-wh">
                            <p>bother complain constant address regarding</p>
                        </div>
                        <p>1.Call me if you have any problems_____your work.</p>
                        <p>2.Two questions often_____first-time corporate investors.</p>
                        <p>3.Babies need_____attention.</p>
                        <p>4.She_____to me about his rudeness.</p>
                        <p>5.Please_____all complaints to the manager.</p>
                        <p>B.Underline the following expressions in the passage and make sentences with them.</p>
                        <p>1.depend on_________________________________________</p>
                        <p>2.sort out_________________________________________</p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">127</span>
                </div>
            </div>
        </div>
        <!-- 128 -->
        <div class="page-box" page="134">
            <div v-if="showPageList.indexOf(134) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit7 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit7">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit7">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p>3.give up_________________________________________</p>
                        <p>4.turn in_________________________________________</p>
                        <p>5.address ...to ..._____________________________</p>
                        <p><b>Ⅲ.Grammar focus:Conjunctions (and,or,but).</b></p>
                        <p>Read the examples and complete the sentences with <i>and</i>,<i>or</i>,or <i>but</i>.</p>
                        <p><b>Examples:</b></p>
                        <div class="fieldset-8">
                            <p>1.We must double our efforts,or we will never be able to catch up with the others.</p>
                            <p>2.The camerawork is perfect,and the cast is good.</p>
                        </div>
                        <p>1.I’d like to go to the theatre tonight,_____I’m too busy.</p>
                        <p>2.Your delay shows a lack of respect for the job_____fellow coworkers.</p>
                        <p>3.Work ethic can be strong_____poor.</p>
                        <p>4.She is bothered by the tasks,_____she never complains.</p>
                        <p>5.All the employees should show up on time_____even earlier.</p>
                        <h3 id="c061"><span class="bjh3">Mini-project</span></h3>
                        <p>Work in groups.Choose two of the work ethic from the box below,and discuss the way to develop
                            them,and then prepare a report to the class.</p>
                        <div class="bk-wh">
                            <p>faithfulness initiative innovation selflessness bravery rigor teamwork fortitude</p>
                        </div>
                        <p class="left"><img class="img-gn" alt="" src="../../assets/images/dy1-worksheet.jpg" /></p>
                        <p class="center"><img class="img-a" alt="" src="../../assets/images/0138-1.jpg" /></p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">128</span>
                </div>
            </div>
        </div>
        <!-- 129 -->
        <div class="page-box" page="135">
            <div v-if="showPageList.indexOf(135) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit7">MODULE 7</span>
                        <span class="chapter-right-bc-unit7 fw-bl chapter-right-cl-unit7">WORK ETHIC AND SUCCESS IN THE
                            WORKPLACE</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p class="center"><img class="img-a" alt="" src="../../assets/images/0138-1.jpg" /></p>
                        <h2 id="b027"><img class="img-0" alt="" src="../../assets/images/dy7-le3.jpg" /></h2>
                        <h3 id="c062"><span class="bjh3">Listening</span></h3>
                        <p class="center"><audio :src="resource.readingTwo" controls
                                controlslist="noplaybackrate nodownload" style="margin-left: 10px" class="audio"
                                @play="audioPlay"></audio></p>
                        <p><b>Ⅰ.Jeff rarely showed up at the office on time.Listen to the recording and mark his excuses
                                for being late.</b></p>
                        <p>□ His car broke down.</p>
                        <p>□ His car was borrowed.</p>
                        <p>□ His clock was broken.</p>
                        <p>□ His phone was out of service.</p>
                        <p>□ His phone was out of battery.</p>
                        <p>□ He didn’t get on the subway.</p>
                        <p>□ He was ill.</p>
                        <p>□ He was squeezed out of the bus.</p>
                        <p><b>Ⅱ.Susan,HR director,is now talking with Jenny about Jeff’s problems.Listen to the
                                conversation and fill in the blanks with what you hear.</b></p>
                        <p>Susan:Have you noticed Jeff has been late many times?</p>
                        <p>Jenny:Yes,I want to have a talk with you about this.</p>
                        <p>Susan: From our punch records,I find that Jeff was late 7 times.Does his director Jim know
                            about this?</p>
                        <p>Jenny:I think Jim must have already talked with Jeff.But maybe Jeff doesn’t pay attention.
                        </p>
                        <p>Susan:So,1._____?</p>
                        <p>Jenny:I suppose we should give a warning notice to Jeff about his tardiness.</p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">129</span>
                </div>
            </div>
        </div>
        <!-- 130 -->
        <div class="page-box" page="136">
            <div v-if="showPageList.indexOf(136) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit7 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit7">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit7">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p>Susan:2._____if I talked with his director first to get to know things better.</p>
                        <p>Jenny:And perhaps we should have a talk with Jeff.</p>
                        <p>Susan: I think so.3._____.It is very important to let him know how serious the problem is.
                        </p>
                        <p>Jenny:4._____.</p>
                        <p>Susan:Then after the talk,we 5._____to Jeff.</p>
                        <p>Jenny: OK.I will talk with Jeff this afternoon.I hope he won’t make the same mistake again in
                            the future.</p>
                        <h3 id="c063"><span class="bjh3">Practical Writing</span></h3>
                        <p>Work with your partner to discuss the following questions.</p>
                        <p>1.What kind of notices have you ever read?</p>
                        <p>2.Can you give some tips for writing a notice well?</p>
                        <p><b>Ⅰ.Read the following tips,and summarize how to write a notice well.</b></p>
                        <p>A notice intends to publicize social events,inform staff of instructions,give
                            information,change plans,etc.Most notices have the following features.</p>
                        <div class="fieldset">
                            <p>◆ Very short and attractive</p>
                            <p>◆ Simple and easy-to-read</p>
                            <p>◆ Clear and specific</p>
                            <p>◆ Boldfaced words</p>
                            <p class="center"><img class="img-g" alt="" src="../../assets/images/0140-1.jpg" /></p>
                        </div>
                        <p><b>Ⅱ.Susan is going to issue a personnel warning notice to Jeff.Choose the items from the box
                                below and fill in the blanks to make a proper notice.</b></p>
                        <div class="bk-12">
                            <p>in order of escalation</p>
                            <p>your following actions</p>
                            <p>you received a verbal warning</p>
                            <p>help you improve your performance to meet our quality standards</p>
                            <p>job suspension without pay for one workweek</p>
                        </div>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">130</span>
                </div>
            </div>
        </div>
        <!-- 131 -->
        <div class="page-box" page="137">
            <div v-if="showPageList.indexOf(137) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit7">MODULE 7</span>
                        <span class="chapter-right-bc-unit7 fw-bl chapter-right-cl-unit7">WORK ETHIC AND SUCCESS IN THE
                            WORKPLACE</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <div class="bk-13">
                            <p>Tech Market Technology Co.</p>
                            <p>Warning 1</p>
                            <p>Employee’s Name:Jeff Bell</p>
                            <p>Supervisor’s Name:Jim Marche</p>
                            <p>HR Representative’s Name:Susan Landen</p>
                            <p>Date:1/31/23</p>
                        </div>
                        <div class="bk-13">
                            <p>Dear Jeff Bell,</p>
                            <p>Your HR department has been informed by your director that_____do not comply with Tech
                                Market Technology Company’s policies:</p>
                            <p>· Infraction 1:Being late for January 4th,13th,16th,17th,24th and 25th.</p>
                            <p>_____on January 17th,2023.</p>
                            <p>The following consequences,_____,will be applied,should you not demonstrate improvement
                                or cease violation of company policies:</p>
                            <p>1.Second warning notice issued</p>
                            <p>2._____</p>
                            <p>3.Third and final warning notice followed by an in-person meeting</p>
                            <p>4.Termination of employment</p>
                            <p>We will do whatever to_____.</p>
                            <p>Supervisor’s signature:Jim Marche</p>
                            <p>Date:1/31/23</p>
                        </div>
                        <p><b>Ⅲ.Put the following words in right order to make sentences.</b></p>
                        <p>1.used who everyone should coffee it the clean machine</p>
                        <p>_________________________________________________</p>
                        <p>2.to the this are welcome lecture attend all staff</p>
                        <p>_________________________________________________</p>
                        <p>3.due weather the badminton the to competition canceled be will</p>
                        <p>_________________________________________________</p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">131</span>
                </div>
            </div>
        </div>
        <!-- 132 -->
        <div class="page-box" page="138">
            <div v-if="showPageList.indexOf(138) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit7 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit7">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit7">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p>4.gate school gather for the 8 at o’clock examination at will the we</p>
                        <p>_________________________________________________</p>
                        <p>5.held will meeting contest in at be room tomorrow 9 p.m.the</p>
                        <p>_________________________________________________</p>
                        <p><b>Ⅳ.Susan,HR director,is responsible for writing a warning notice to Jason who delayed
                                handling in a very important report.</b></p>
                        <div class="fieldset-4">
                            <p class="left">Tech Market Technology Co.</p>
                            <p class="left">Warning 1</p>
                            <p class="left">Employee’s Name:</p>
                            <p class="left">Supervisor’s Name: Jim Marche</p>
                            <p class="left">HR Representative’s Name: Susan Landen</p>
                            <p class="left">Date:</p>
                            <p><br /></p>
                            <p class="left">Dear Jason,</p>
                            <p class="left">____________________________________________</p>
                            <p class="left">____________________________________________</p>
                            <p class="left">____________________________________________</p>
                            <p class="left">____________________________________________</p>
                            <p class="left">____________________________________________</p>
                            <p class="left">____________________________________________</p>
                            <p class="left">____________________________________________</p>
                            <p class="left">Supervisor’s signature: Jim Marche</p>
                            <p class="left">Date:1/31/23</p>
                        </div>
                        <div class="un-h2">
                            <h2 id="b028">Unit Project</h2>
                        </div>
                        <p>Work with your partner to complete the following tasks,and then share your ideas with others.
                        </p>
                        <p><b>Task 1:</b> Read each of the following examples and decide whether they are strong or bad
                            work ethic,and then find out what kind of work ethic they are.</p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">132</span>
                </div>
            </div>
        </div>
        <!-- 133 -->
        <div class="page-box" page="139">
            <div v-if="showPageList.indexOf(139) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit7">MODULE 7</span>
                        <span class="chapter-right-bc-unit7 fw-bl chapter-right-cl-unit7">WORK ETHIC AND SUCCESS IN THE
                            WORKPLACE</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p class="left"><img class="img-gn" alt="" src="../../assets/images/dy1-worksheet.jpg" /></p>
                        <p class="center"><img class="img-a" alt="" src="../../assets/images/0143-1.jpg" /></p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">133</span>
                </div>
            </div>
        </div>
        <!-- 134 -->
        <div class="page-box" page="140">
            <div v-if="showPageList.indexOf(140) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit7 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit7">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit7">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p><b>Task 2:</b>List the possible impact the above behavior will have on a company.</p>
                        <p>1.____________________________________________</p>
                        <p>2.____________________________________________</p>
                        <p>3.____________________________________________</p>
                        <p><b>Task 3:</b>List at least three strong work ethic you should develop and the tips for
                            developing them.</p>
                        <p>1.____________________________________________</p>
                        <p>2.____________________________________________</p>
                        <p>3.____________________________________________</p>
                        <div class="fieldset-9">
                            <p class="center"><b>Useful Expressions</b></p>
                            <p><b>Strong work ethic you should develop:</b></p>
                            <p>Hard work</p>
                            <p>Dedication</p>
                            <p>Discipline</p>
                            <p>Productivity</p>
                            <p>Teamwork</p>
                            <p>Responsibility</p>
                            <p>Determination</p>
                            <p>Professionalism</p>
                            <p><b>Bad work ethic you should avoid:</b></p>
                            <p>Procrastination</p>
                            <p>Inefficiency</p>
                            <p>Irresponsibility</p>
                            <p>Passiveness</p>
                            <p>Tardiness</p>
                            <p>Unprofessional behavior</p>
                        </div>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">134</span>
                </div>
            </div>
        </div>
    </div>
</template>
<script>
import matching from "@/components/matching/matching.vue";
import { getResourcePath } from "@/assets/methods/resources";
export default {
    name: "chapterSeven",
    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: {
                    isRight: null,
                    answer: ["Culture", "Cuisine", "Landscapes"],
                    value: []
                },
                tx: {
                    one: "",
                    two: "",
                    three: "",
                    four: "",
                    five: "",
                },
                in: {
                    one: "",
                    two: "",
                    three: "",
                    four: "",
                    five: "",
                    isRight: null,
                    answer: 'cuisine,landscapes,civilization,explore,unique'
                },
                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: [
                "online shopping",
                "facial recognition",
                "electronic payment",
                "intercity train",
                "shared bike",
                "take-away service",
            ],
            dropdownData: {
                one: {
                    value: "",
                    isRight: null,
                    answer: "intercity train",
                },
                two: {
                    value: "",
                    isRight: null,
                    answer: "online shopping",
                },
                three: {
                    value: "",
                    isRight: null,
                    answer: "electronic payment",
                },
                four: {
                    value: "",
                    isRight: null,
                    answer: "shared bike",
                },
                five: {
                    value: "",
                    isRight: null,
                    answer: "take-away service",
                },
                six: {
                    value: "",
                    isRight: null,
                    answer: "facial recognition",
                },
            },
        };
    },
    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: {
                    isRight: null,
                    answer: ["Culture", "Cuisine", "Landscapes"],
                    value: []
                },
                tx: {
                    one: "",
                    two: "",
                    three: "",
                    four: "",
                    five: "",
                },
                in: {
                    one: "",
                    two: "",
                    three: "",
                    four: "",
                    five: "",
                    isRight: null,
                    answer: ['uisine', 'andscapes', 'ivilization', 'xplore', 'nique']
                },
                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() {
            const item = this.testData['check']
            const sortedArr1 = item.answer.slice().sort();
            const sortedArr2 = item.value.slice().sort();
            const isRight = sortedArr1.every(
                (value, index) => value === sortedArr2[index]
            );
            const inData = this.testData['in']
            let inString = []
            for (let key in inData) {
                const citem = inData[key];
                if (key != 'answer' && key !== 'isRight') {
                    console.log(key);
                    inString.push(citem)
                }
 
 
            }
            const inRight = inData.answer == inString
            console.log('in', inData.answer, inString);
            this.$set(this.testData['in'], 'isRight', inRight)
            this.$set(this.testData['check'], 'isRight', isRight)
            this.setTestData()
            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;
}
 
.select-border {
    border: 0;
    border-bottom: 1px solid #767676;
 
    &:focus {
        outline: none;
    }
}
</style>