user1
2024-06-28 9258654657affed07bbee9f999d1bf31ef9e6e20
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
<template>
    <div class="chapter" num="7">
        <!-- 第六单元 -->
        <!-- 97 -->
        <div class="page-box" page="103">
            <div v-if="showPageList.indexOf(103) > -1">
                <h1 id="a010"><img class="img-0" alt="" src="../../assets/images/dy6.jpg" /></h1>
                <p><b>This unit will help you to:</b></p>
                <p>➢ Learn words and expressions about work environment</p>
                <p>➢ Review the usage of inverted sentences and modal verbs (can,could,may,might)</p>
                <p>➢ Be able to perform properly when chairing a meeting</p>
                <p>➢ Be able to write minutes</p>
                <p>➢ Learn to create a positive work environment</p>
                <p class="center"><img class="img-0" alt="" src="../../assets/images/0107-2.jpg" /></p>
            </div>
        </div>
        <!-- 98 -->
        <div class="page-box" page="104">
            <div v-if="showPageList.indexOf(104) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit6 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit6">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit6">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <h2 id="b021"><img class="img-0" alt="" src="../../assets/images/dy6-le1.jpg" /></h2>
                        <h3 id="c046"><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>open plan office cubicles private office SOHO</p>
                        </div>
                        <p class="center"><img class="img-e" alt="" src="../../assets/images/0108-1.jpg" /></p>
                        <p class="center">1._____________________</p>
                        <p class="center"><img class="img-e" alt="" src="../../assets/images/0108-2.jpg" /></p>
                        <p class="center">2._____________________</p>
                        <p class="center"><img class="img-e" alt="" src="../../assets/images/0108-3.jpg" /></p>
                        <p class="center">3._____________________</p>
                        <p class="center"><img class="img-e" alt="" src="../../assets/images/0108-4.jpg" /></p>
                        <p class="center">4._____________________</p>
                        <p><b>Ⅱ.Pick up the words in the box below to describe the work environment you love and explain
                                your reasons.</b></p>
                        <div class="bk-wh">
                            <p>caring, supportive, privacy, friendly, freedom, flexible</p>
                        </div>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">98</span>
                </div>
            </div>
        </div>
        <!-- 99 -->
        <div class="page-box" page="105">
            <div v-if="showPageList.indexOf(105) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit6">MODULE 6</span>
                        <span class="chapter-right-bc-unit6 fw-bl chapter-right-cl-unit5">A GLIMPSE OF THE WORK ENVIRONMENT</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <h3 id="c047"><span class="bjh3">Listening</span></h3>
                        <audio :src="resource.readingTwo" controls controlslist="noplaybackrate nodownload"
                            style="margin-left: 10px" class="audio" @play="audioPlay"></audio>
                        <p><b>Four interns are talking about the work environment they like.Listen to the recording and
                                fill in the blanks with what you hear.</b></p>
                        <p class="center"><img class="img-a" alt="" src="../../assets/images/0109-2.jpg" /></p>
                        <h3 id="c048"><span class="bjh3">Reading</span></h3>
                        <p>1.What makes a positive work environment?</p>
                        <p>2.Why would people be more productive in such environment?</p>
                        <p class="center"><b>A Positive Work Environment</b></p>
                        <p class="center"> <audio :src="resource.readingTwo" controls
                                controlslist="noplaybackrate nodownload" style="margin-left: 10px" class="audio"
                                @play="audioPlay"></audio></p>
                        <p>How do we exactly define a positive work environment? When asked what makes a great work
                            environment,most people would mention a fancy workplace in a big building with modern
                            design,or a good relationship with coworkers.</p>
                        <p>Gone are those times when candidates only considered the salary at the time of joining a
                            company.Nowadays,apart from the job prospect itself,one factor that is greatly influencing
                            how employees feel about work is the environment being provided by the employer.The work
                            environment here includes everything,such as the relationship with coworkers,company
                            culture,room for personal development,café,furniture,etc.A positive work environment is
                            something that makes employees feel good about coming to work every day,and also motivates
                            them to work and give their best effort.</p>
                        <p>An effective way to ensure a positive work environment is to motivate employees for a correct
                            behavioral approach.Good behavior also determines good and peaceful environment.Another way
                            is to ensure healthy relationships among the staff; that is why communication is quite
                            necessary.Keeping an eye on staff interaction doesn’t cost much time for the management
                            team.They only </p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">99</span>
                </div>
            </div>
        </div>
        <!-- 100 -->
        <div class="page-box" page="106">
            <div v-if="showPageList.indexOf(106) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit6 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit6">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit6">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p> need to observe body language and listen for negative clues and try to fix the problems as
                            soon as possible.The staff often takes the message from the behavior of the management
                            team,so the management team should also be aware of the power of their behavior and always
                            maintain dignity.</p>
                        <p>Another important way to make a great work environment for a company is to show appreciation
                            of outstanding employees.Workers are more likely to stay in the company,work hard and
                            provide years of excellent service when knowing that they have a clear opportunity for
                            advancement.When employees know they are valued,they tend to return the favor by being the
                            best at their job.A positive work environment is a place that promises to advance gifted
                            employees and keep that promise.</p>
                        <p>The work environment can greatly influence how the employees feel about their jobs.Because of
                            this,it’s important to find an employer that fosters a positive atmosphere and encourages
                            employees consistently.A positive work environment can improve employees’ happiness,increase
                            the productivity and motivate those around them.</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>candidate /ˈkændɪdət/ <i>n.</i> 应聘者</p>
                        <div class="bkbj">
                            <p><i>a person who is applying for a job</i></p>
                        </div>
                        <p>prospect /ˈprɒspekt/ <i>n.</i> 前景;展望</p>
                        <div class="bkbj">
                            <p><i>the chances of being successful</i></p>
                        </div>
                        <p>ensure /ɪnˈʃɔː(r)]/ <i>v.</i> 确保;保证</p>
                        <div class="bkbj">
                            <p><i>to make sure that sth.happens or is definite</i></p>
                        </div>
                        <p>behavioral /bɪˈheɪvjərəl/ <i>adj.</i> 行为的</p>
                        <div class="bkbj">
                            <p><i>of or relating to behavior</i></p>
                        </div>
                        <p>approach /əˈprəʊtʃ/ <i>n.</i> 方法;路径</p>
                        <div class="bkbj">
                            <p><i>a way of doing or thinking about sth.such as a problem or a task</i></p>
                        </div>
                        <p>determine /dɪˈtɜːmɪn/ <i>v.</i> 对(某事物) 产生决定性的影响;决定</p>
                        <div class="bkbj">
                            <p><i>to make sth.happen in a particular way or be of a particular type</i></p>
                        </div>
                        <p>interaction /ɪntərˈækʃn/ <i>n.</i> 交流;沟通;合作</p>
                        <div class="bkbj">
                            <p><i>communication; cooperation</i></p>
                        </div>
                        <p>clue /kluː/ <i>n.</i> 线索;端倪</p>
                        <div class="bkbj">
                            <p><i>a fact or a piece of evidence that helps to solve a problem or reveal the truth in an
                                    investigation</i></p>
                        </div>
                        <p>maintain /meɪn’teɪn/ <i>v.</i> 保持;维持</p>
                        <div class="bkbj">
                            <p><i>to keep sth.in existence at the same level,standard,etc.</i></p>
                        </div>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">100</span>
                </div>
            </div>
        </div>
        <!-- 101 -->
        <div class="page-box" page="107">
            <div v-if="showPageList.indexOf(107) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit6">MODULE 6</span>
                        <span class="chapter-right-bc-unit6 fw-bl chapter-right-cl-unit6">A GLIMPSE OF THE WORK ENVIRONMENT</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p>dignity /ˈdɪɡnəti/ <i>n.</i> 尊严;庄重</p>
                        <div class="bkbj">
                            <p><i>a calm and serious manner that deserves respect</i></p>
                        </div>
                        <p>appreciation /əˌpriːʃiˈeɪʃn/ <i>n.</i> 欣赏</p>
                        <div class="bkbj">
                            <p><i>understanding and enjoyment</i></p>
                        </div>
                        <p>outstanding /aʊtˈstændɪŋ/ <i>adj.</i> 杰出的;显著的</p>
                        <div class="bkbj">
                            <p><i>excellent or exceptionally good</i></p>
                        </div>
                        <p>advancement /ədˈvɑːnsmənt/ <i>n.</i> 晋升</p>
                        <div class="bkbj">
                            <p><i>promotion in rank or status</i></p>
                        </div>
                        <p>value /ˈvæljuː/ <i>v.</i> 重视;珍视</p>
                        <div class="bkbj">
                            <p><i>to have a high opinion of sb./sth.</i></p>
                        </div>
                        <p>favor /ˈfeɪvə(r)/ <i>n.</i> 恩惠</p>
                        <div class="bkbj">
                            <p><i>act of kindness beyond what is due or usual</i></p>
                        </div>
                        <p>gifted /ˈɡɪftɪd/ <i>adj</i>.有天赋的</p>
                        <div class="bkbj">
                            <p><i>having a lot of natural ability or intelligence</i></p>
                        </div>
                        <p>foster /ˈfɒstə(r)/ <i>v.</i> 促进;培养</p>
                        <div class="bkbj">
                            <p><i>to encourage sth.to develop</i></p>
                        </div>
                        <p>consistently /kənˈsɪstəntli/ <i>adv.</i> 始终;一贯地</p>
                        <div class="bkbj">
                            <p><i>in a way that does not change and continues for a period of time</i></p>
                        </div>
                        <p>productivity /ˈprɒdʌkˈtɪvəti/ <i>n.</i> 生产率;生产能力</p>
                        <div class="bkbj">
                            <p><i>the rate at which a worker,a company or a country produces goods,and the amount
                                    produced,compared with how much time,work and money is needed to produce them</i>
                            </p>
                        </div>
                        <p>apart from ...除了……外(都)</p>
                        <p>be aware of 意识到;觉察</p>
                        <p>return the favor 回报</p>
                        <p>keep an eye on 留意;密切注视</p>
                        <p>be likely to 很可能</p>
                        <p><b>Ⅰ.Reading comprehension.</b></p>
                        <p>A.Mark the elements of a positive work environment mentioned in the passage.</p>
                        <p>□Company culture</p>
                        <p>□Personal development</p>
                        <p>□Relationship with colleagues</p>
                        <p>□Salary</p>
                        <p>□Café</p>
                        <p>□Leaders</p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">101</span>
                </div>
            </div>
        </div>
        <!-- 102 -->
        <div class="page-box" page="108">
            <div v-if="showPageList.indexOf(108) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit6 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit6">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit6">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p>B.Match the questions below with related paragraphs.Then answer the questions.</p>
                        <div class="fieldset-8">
                            <p>1.Why is it important to ensure a positive work environment?</p>
                            <p>2.What does positive work environment refer to?</p>
                            <p>3.How do employers maintain a positive work environment?</p>
                        </div>
                        <p class="center"><img class="img-a" alt="" src="../../assets/images/0112-1.jpg" /></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>1.Aside from the job p________ itself,one factor that is significantly influencing how
                            employees feel about work is the work environment.</p>
                        <p>2.To f_______ a positive work environment,the employer can motivate employees for a correct
                            behavioral approach.</p>
                        <p>3.Good behavior can not only d_________ a good and peaceful environment,but also promote
                            healthy relationships among the staff.</p>
                        <p>4.Another way to ensure a great work environment in a company is to show a_______ to
                            outstanding employees.</p>
                        <p>5.For employees,a positive work environment can greatly improve their happiness and p______ .
                        </p>
                        <p>B.Replace the underlined part in each of the following sentences with a phrase in the box
                            below.Change the form if necessary.</p>
                        <div class="bk-wh">
                            <p>apart from keep an eye on be likely to return the favor be aware of</p>
                        </div>
                        <p>1.The manager asked me to <span class="u">pay close attention to</span> the monthly sales
                            report of the products._____</p>
                        <p>2.<span class="u">Except for</span> the low salary,it’s not a bad job._____</p>
                        <p>3.The management team <span class="u">noticed</span> some inappropriate behavior in the
                            company._____</p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">102</span>
                </div>
            </div>
        </div>
        <!-- 103 -->
        <div class="page-box" page="109">
            <div v-if="showPageList.indexOf(109) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit6">MODULE 6</span>
                        <span class="chapter-right-bc-unit6 fw-bl chapter-right-cl-unit6">A GLIMPSE OF THE WORK ENVIRONMENT</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p>4.The graduates with a language proficiency certificate <span class="u">are more possible
                                to</span> land a good job._____</p>
                        <p>5.I will <span class="u">help you because you have helped me</span> some time._____</p>
                        <p>C.Translate the following sentences into Chinese.</p>
                        <p>1.Communication is quite necessary to ensure a healthy relationship with coworkers.</p>
                        <p>______________________________________________</p>
                        <p>2.A good work atmosphere can greatly increase the productivity of employees.</p>
                        <p>______________________________________________</p>
                        <p>3.Most of the candidates view company culture as the most important factor when choosing a
                            job.</p>
                        <p>______________________________________________</p>
                        <p>4.At the annual meeting,the manager expressed the appreciation to the outstanding staff of
                            the company.</p>
                        <p>______________________________________________</p>
                        <p><b>Ⅲ.Grammar focus:Inverted sentences.</b></p>
                        <p>A.Choose the correct version of the translation of the inverted sentences.</p>
                        <p>1.公交车来了。</p>
                        <p>a.There comes the bus.</p>
                        <p>b.There the bus comes.</p>
                        <p>2.发达国家制定规则、其他国家服从的时代已经过去了。</p>
                        <p>a.Gone are the days when rich countries make the rules and everyone else follows.</p>
                        <p>b.Gone the days are when rich countries make the rules and everyone else follows.</p>
                        <p>3.我们刚到机场,飞机就起飞了。</p>
                        <p>a.No sooner did we reached the airport than the plane had taken off.</p>
                        <p>b.No sooner had we reached the airport than the plane took off.</p>
                        <p>4.到那时他才意识到他错了。</p>
                        <p>a.Only then he realized that he was wrong.</p>
                        <p>b.Only then did he realize that he was wrong.</p>
                        <p>5.雨停了之后他才离开房间。</p>
                        <p>a.Not until the rain stopped did he leave the room.</p>
                        <p>b.Not until did the rain stop he left the room.</p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">103</span>
                </div>
            </div>
        </div>
        <!-- 104 -->
        <div class="page-box" page="110">
            <div v-if="showPageList.indexOf(110) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit6 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit6">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit6">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p>B.Put the following words in right order to make inverted sentences.</p>
                        <p>1.did he it saw so and I</p>
                        <p>______________________________________________</p>
                        <p>2.he young is he a lot knows as</p>
                        <p>______________________________________________</p>
                        <p>3.no under will lend circumstances I money him to</p>
                        <p>______________________________________________</p>
                        <p>4.she have hardly music listen to does time to</p>
                        <p>______________________________________________</p>
                        <p>5.village in the front of river a was</p>
                        <p>______________________________________________</p>
                        <h3 id="c049"><span class="bjh3">Mini-project</span></h3>
                        <p>A pleasant work environment can make employees love their jobs and do their best.Work in
                            groups to list the elements of a pleasant work environment and explain the reasons for your
                            choice.</p>
                        <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/0114-1.jpg" /></p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">104</span>
                </div>
            </div>
        </div>
        <!-- 105 -->
        <div class="page-box" page="111">
            <div v-if="showPageList.indexOf(111) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit6">MODULE 6</span>
                        <span class="chapter-right-bc-unit6 fw-bl chapter-right-cl-unit6">A GLIMPSE OF THE WORK ENVIRONMENT</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p class="left"><img class="img-gn" alt="" src="../../assets/images/dy1-wordbank.jpg" /></p>
                        <div class="bk-wh">
                            <p>relationship communication productivity respect pleasure professional team spirit job
                                satisfaction personal development job prospect modern decor</p>
                        </div>
                        <h2 id="b022"><img class="img-0" alt="" src="../../assets/images/dy6-le2.jpg" /></h2>
                        <h3 id="c050"><span class="bjh3">Warm-up</span></h3>
                        <p><b>Ⅰ.Put the following statements into the corresponding box to make a code of conduct for a
                                school.</b></p>
                        <div class="fieldset-5">
                            <p>a.Students are supposed to arrive at the classroom on time.</p>
                            <p>b.Students are required to come to school in a neat uniform.</p>
                            <p>c.Students should treat others with respect.</p>
                            <p>d.Keep food and drink outside of the classroom.</p>
                            <p>e.Mobile phones must be on silent mode during the class.</p>
                        </div>
                        <p class="center"><img class="img-a" alt="" src="../../assets/images/0115-1.jpg" /></p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">105</span>
                </div>
            </div>
        </div>
        <!-- 106 -->
        <div class="page-box" page="112">
            <div v-if="showPageList.indexOf(112) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit6 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit6">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit6">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p class="center"><img class="img-a" alt="" src="../../assets/images/0115-1.jpg" /></p>
                        <h3 id="c051"><span class="bjh3">Reading</span></h3>
                        <p>1.How do you understand the Chinese saying “Nothing can be accomplished without norms or
                            standards.”?</p>
                        <p>2.Are rules and regulations important for an organization? Why?</p>
                        <p class="center"><b>Code of Conduct 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>A company code of conduct is a set of rules and standards all employees must follow.By
                            knowing the company code of conduct,employees know how to act at work and can be more
                            successful in their roles.If you just joined a new company,it would be beneficial to start
                            with learning the code of conduct.</p>
                        <p>Often,a company uses its core values,including its mission,to guide the creation of these
                            codes.These guidelines outline how the organization operates,how employees conduct
                            themselves daily,and how they work with others on behalf of the organization.</p>
                        <p>You can usually find a company’s code of conduct in an employee handbook.Each company has
                            different rules in its code of conduct,and each company has its own policies for enforcing
                            this code.</p>
                        <p>The following code of conduct may help you dig into more details.</p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">106</span>
                </div>
            </div>
        </div>
        <!-- 107 -->
        <div class="page-box" page="113">
            <div v-if="showPageList.indexOf(113) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit6">MODULE 6</span>
                        <span class="chapter-right-bc-unit6 fw-bl chapter-right-cl-unit6">A GLIMPSE OF THE WORK ENVIRONMENT</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <div class="fieldset-8">
                            <p class="center"><b>THE COMPANY CODE OF CONDUCT</b></p>
                            <p><b>A._______________________</b></p>
                            <p>1.Honesty and integrity.Above all,treat clients fairly.</p>
                            <p>2.Maintain the good reputation of the company.</p>
                            <p>3.Conflicts and interest.Manage conflicts of interest fairly and do not act in a manner
                                inconsistent with the company mission and values.</p>
                            <p>4.Confidentiality.Always be careful of the information received.</p>
                            <p>5.Advertising.Products should not be advertised in a misleading way.</p>
                            <p><b>B._______________________</b></p>
                            <p>6.Competence.Advise clients only on matters in which they are competent.</p>
                            <p>7.Clients’ interests.Pay due regard to the interests of clients and keep those interests
                                above their own.</p>
                            <p>8.Giving information to clients.Communicate information clearly,fairly and not in a way
                                that is misleading.</p>
                            <p>9.Suitability of advice.Advice should be suitable for the clients’ needs.</p>
                            <p>10.Activities.Do not engage in activities that will bring direct or indirect profit to a
                                competitor.</p>
                            <p><b>C._______________________</b></p>
                            <p>11.Skill and care.Act at all times with reasonable skill and care.</p>
                            <p>12.Professional discipline.Organize business in a responsible and effective way.</p>
                            <p>13.Company guidance.Be familiar and seek to observe the company guidance.</p>
                            <p>14.Complaints.Handle the complaints fairly and quickly.</p>
                            <p>15.Respect.Treat the clients with respect without discrimination.</p>
                        </div>
                        <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>core /kɔː(r)/ <i>adj</i>.核心的</p>
                        <div class="bkbj">
                            <p><i>the most important or central part of sth.</i></p>
                        </div>
                        <p>outline /ˈaʊtlaɪn/ <i>v</i>.概述</p>
                        <div class="bkbj">
                            <p><i>to give a description of the main facts or points involved in sth.</i></p>
                        </div>
                        <p>conduct /kənˈdʌkt/ <i>v</i>.举止;表现</p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">107</span>
                </div>
            </div>
        </div>
        <!-- 108 -->
        <div class="page-box" page="114">
            <div v-if="showPageList.indexOf(114) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit6 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit6">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit6">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <div class="bkbj">
                            <p><i>to behave in a particular way</i></p>
                        </div>
                        <p>enforce /ɪnˈfɔːs/ <i>v</i>.(强制) 实施,执行</p>
                        <div class="bkbj">
                            <p><i>to make sure that people obey a particular law or rule</i></p>
                        </div>
                        <p>integrity /ɪnˈteɡrəti/ <i>n</i>.诚实正直</p>
                        <div class="bkbj">
                            <p><i>the quality of being honest and having strong moral principles</i></p>
                        </div>
                        <p>client /ˈklaɪənt/ <i>n</i>.客户</p>
                        <div class="bkbj">
                            <p><i>a person who uses the services or advice of a professional person or organization</i>
                            </p>
                        </div>
                        <p>reputation /ˌrepjuˈteɪʃn/ <i>n</i>.名誉;名声</p>
                        <div class="bkbj">
                            <p><i>the opinion that people have about what sb./sth.is like</i></p>
                        </div>
                        <p>conflict /ˈkɒnflɪkt/ <i>n</i>.冲突;争论</p>
                        <div class="bkbj">
                            <p><i>a situation in which people,groups or countries are involved in a serious disagreement
                                    or argument</i></p>
                        </div>
                        <p>inconsistent /ˌɪnkənˈsɪstənt/ <i>adj</i>.不符合(某套标准、思想等)</p>
                        <div class="bkbj">
                            <p><i>not matching a set of standards,ideas,etc.</i></p>
                        </div>
                        <p>confidentiality /ˌkɒnfɪˌdenʃiˈæləti/ <i>n</i>.保密;机密</p>
                        <div class="bkbj">
                            <p><i>a situation in which you expect sb.to keep information secret</i></p>
                        </div>
                        <p>advertise /ˈædvətaɪz/ <i>v</i>.做广告;做宣传</p>
                        <div class="bkbj">
                            <p><i>to tell the public about a product or a service in order to encourage people to buy or
                                    to use it</i></p>
                        </div>
                        <p>misleading /ˌmɪsˈliːdɪŋ/ <i>adj</i>.误导的;引入歧途的</p>
                        <div class="bkbj">
                            <p><i>giving the wrong idea or impression and making you believe sth.that is not true</i>
                            </p>
                        </div>
                        <p>competence /ˈkɒmpɪtəns/ <i>n</i>.能力;胜任</p>
                        <div class="bkbj">
                            <p><i>the ability to do sth.well</i></p>
                        </div>
                        <p>competent /ˈkɒmpɪtənt/ <i>adj</i>.足以胜任的;有能力的</p>
                        <div class="bkbj">
                            <p><i>having enough skill or knowledge to do sth.well</i></p>
                        </div>
                        <p>suitability /ˌsuːtəˈbɪləti/ <i>n</i>.适合;适宜性</p>
                        <div class="bkbj">
                            <p><i>the quality of being right or appropriate</i></p>
                        </div>
                        <p>competitor /kəmˈpetɪtə(r)/ <i>n</i>.(尤指商业方面的) 竞争者,对手</p>
                        <div class="bkbj">
                            <p><i>a person or an organization that compete against others,esp.in business</i></p>
                        </div>
                        <p>discipline /ˈdɪsəplɪn/ <i>n</i>.自制力</p>
                        <div class="bkbj">
                            <p><i>the ability to control your behavior or the way you live,work,etc.</i></p>
                        </div>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">108</span>
                </div>
            </div>
        </div>
        <!-- 109 -->
        <div class="page-box" page="115">
            <div v-if="showPageList.indexOf(115) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit6">MODULE 6</span>
                        <span class="chapter-right-bc-unit6 fw-bl chapter-right-cl-unit6">A GLIMPSE OF THE WORK ENVIRONMENT</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p>observe /əbˈzɜːv/ <i>v</i>.遵守(规则、法律等)</p>
                        <div class="bkbj">
                            <p><i>to obey rules,laws,etc.</i></p>
                        </div>
                        <p>guidance /'ɡaɪdns/ <i>n</i>.指导;引导</p>
                        <div class="bkbj">
                            <p><i>help or advice that is given to sb.</i></p>
                        </div>
                        <p>complaint /kəm'pleɪnt/ <i>n</i>.投诉;抱怨</p>
                        <div class="bkbj">
                            <p><i>a reason for not being satisfied</i></p>
                        </div>
                        <p>on behalf of 代表</p>
                        <p>above all 最重要的是;尤其是</p>
                        <p>engage in 从事;参加</p>
                        <p>dig into 钻研;挖掘</p>
                        <p>pay due regard to 给予应有的重视</p>
                        <p><b>Ⅰ.Reading comprehension.</b></p>
                        <p>A.Read the passage quickly and choose appropriate headings for A-C in the passage.</p>
                        <p class="center"><img class="img-b" alt="" src="../../assets/images/0119-1.jpg" /></p>
                        <p>B.Mark the proper ones according to the code of conduct in the passage.</p>
                        <div class="bk-11">
                            <p>( ) 1.Observe the employee handbook strictly.</p>
                            <p>( ) 2.Get involved in activities inconsistent with company values.</p>
                            <p>( ) 3.Never leak personal information of the client.</p>
                            <p>( ) 4.Advertise products and services in a professional way.</p>
                            <p>( ) 5.Judge customers by appearance.</p>
                            <p>( ) 6.Always give priority to clients’ interests.</p>
                        </div>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">109</span>
                </div>
            </div>
        </div>
        <!-- 110 -->
        <div class="page-box" page="116">
            <div v-if="showPageList.indexOf(116) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit6 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit6">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit6">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <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.We may feel cheated when finding the report is actually <i>false</i>._____________</p>
                        <p>2.A true partnership is a two-way street,and our <i>customers</i> embrace this
                            philosophy._____________</p>
                        <p>3.The <i>disagreements</i> at the workplace need to be resolved in a timely and professional
                            manner._____________</p>
                        <p>4.The company’s <i>image</i> is the reflection of its culture._____________</p>
                        <p>5.All the staff are required to <i>follow</i> the company code of conduct._____________</p>
                        <p>B.Fill in the blanks with the proper form of the expressions given below.</p>
                        <div class="bk-wh">
                            <p>on behalf of pay due regard to dig into engage in above all</p>
                        </div>
                        <p>1.The manager asked the intern to_______the data and draft a report.</p>
                        <p>2.A firm must_________the interests of its customers and treat them fairly.</p>
                        <p>3.The newly-recruited staff were asked to________the routine meeting on Monday.</p>
                        <p>4._________,you shouldn’t give up without trying.</p>
                        <p>5.She made a speech,_______the sales department,at the annual meeting of the corporation.</p>
                        <p><b>Ⅲ.Grammar focus:Modal verbs (can,could,may,might).</b></p>
                        <p>A.Choose the correct modal verbs in the brackets.</p>
                        <p>1.It’s 9 o’clock in the evening.He______(can/could) still be at the office.He is a
                            workaholic.</p>
                        <p>2.You should introduce yourself; your client______(can/may) not remember you.</p>
                        <p>3.I thought he_____(can/might) have a meeting with his team.</p>
                        <p>4.The customer____(can/may) be very difficult to deal with when he is in a bad mood.</p>
                        <p>5.There is a slim chance that we______(can/might) take a rest this weekend.</p>
                        <p>B.Correct the misused modal verbs in the following sentences.</p>
                        <p>1.Our boss <span class="u">can</span> be very angry when people don’t listen to him.______
                        </p>
                        <p>2.The new project might work,but it <span class="u">could</span> not.______</p>
                        <p>3.The manager <span class="u">can not</span> have seen the message yet.______</p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">110</span>
                </div>
            </div>
        </div>
        <!-- 111 -->
        <div class="page-box" page="117">
            <div v-if="showPageList.indexOf(117) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit6">MODULE 6</span>
                        <span class="chapter-right-bc-unit6 fw-bl chapter-right-cl-unit6">A GLIMPSE OF THE WORK ENVIRONMENT</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p>4.We <span class="u">may</span> have been colleagues if he hadn’t missed the interview.______
                        </p>
                        <p>5.The meeting might be cancelled for the delay of their plane.______</p>
                        <h3 id="c052"><span class="bjh3">Mini-project</span></h3>
                        <p>Work in groups.Ask your group members about any improper behavior he/she has ever seen in the
                            library and draft a code of conduct.Share your opinions with the class.</p>
                        <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/0121-1.jpg" /></p>
                        <h2 id="b023"><img class="img-0" alt="" src="../../assets/images/dy6-le3.jpg" /></h2>
                        <h3 id="c053"><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 the perfect workplace and decide whether the following
                                statements are true (T) or false (F).</b></p>
                        <p>( ) 1.A positive workplace might have the same details for everybody.</p>
                        <p>( ) 2.It should be a place where the management team enjoys coming to work.</p>
                        <p>( ) 3.The happier people are at work,the better they will perform.</p>
                        <p>( ) 4.The better the company culture is,the greater the reputation it enjoys.</p>
                        <p>( ) 5.Most employees succeed in a positive atmosphere.</p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">111</span>
                </div>
            </div>
        </div>
        <!-- 112 -->
        <div class="page-box" page="118">
            <div v-if="showPageList.indexOf(118) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit6 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit6">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit6">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p><b>Ⅱ.Listen to the conversation about the dress code between Sally and Ross and match the
                                following information with the corresponding speaker.</b></p>
                        <p class="center"><img class="img-0" alt="" src="../../assets/images/0122-1.jpg" /></p>
                        <h3 id="c054"><span class="bjh3">Practical Writing</span></h3>
                        <p>Work with your partner to discuss the following questions.</p>
                        <p>1.Why do we need to take the minutes?</p>
                        <p>2.What should we take down in the minutes?</p>
                        <p><b>Ⅰ.Read the following tips and learn about the minutes.</b></p>
                        <p>Minutes can be defined as the record of what is said and decided at a meeting.It highlights
                            the key issues that are discussed,proposals voted on and resolutions made.Minutes can also
                            be a valuable resource for team members who missed a meeting to catch up on any decisions
                            from the meeting.Minutes usually consist of the following parts.</p>
                        <div class="fieldset-8">
                            <p>◆The time,date and place of the meeting</p>
                            <p>◆Who attended the meeting and who was absent</p>
                            <p>◆What happened at the meeting in detail</p>
                            <p class="center"><img class="img-b" alt="" src="../../assets/images/0122-2.jpg" /></p>
                        </div>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">112</span>
                </div>
            </div>
        </div>
        <!-- 113 -->
        <div class="page-box" page="119">
            <div v-if="showPageList.indexOf(119) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit6">MODULE 6</span>
                        <span class="chapter-right-bc-unit6 fw-bl chapter-right-cl-unit6">A GLIMPSE OF THE WORK ENVIRONMENT</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p><b>Ⅱ.Read the minutes and do the following exercises.</b></p>
                        <p>1. <span class="u">Underline</span> the time,date and place of the meeting.</p>
                        <p>2.<img class="inline1" alt="" src="../../assets/images/0123-1.jpg" /> the attendees.</p>
                        <p>3.Summarize the main points discussed at the meeting.</p>
                        <p class="center"><img class="img-f" alt="" src="../../assets/images/0123-2.jpg" /></p>
                        <p class="center"><img class="img-a" alt="" src="../../assets/images/0123-3.jpg" /></p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">113</span>
                </div>
            </div>
        </div>
        <!-- 114 -->
        <div class="page-box" page="120">
            <div v-if="showPageList.indexOf(120) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit6 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit6">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit6">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p class="center"><img class="img-a" alt="" src="../../assets/images/0123-3.jpg" /></p>
                        <p><b>Ⅲ.Match the following sentences with the correct translation.</b></p>
                        <div class="fieldset-8">
                            <p>1.Mr.Green called the meeting to order at 10:00 a.m.</p>
                            <p>2.A vote was taken to approve the amended</p>
                            <p>Code of Conduct for employees.</p>
                            <p>3.The meeting agenda was unanimously approved by all attendees.</p>
                            <p>4.The meeting adjourned at 5:00 p.m.</p>
                            <p>5.All attendees were given an agenda prior to the meeting via email.</p>
                        </div>
                        <div class="fieldset-8">
                            <p>a.投票同意修订后的《员工行为守则》。</p>
                            <p>b.格林先生于上午10点宣布会议开始。</p>
                            <p>c.下午5点休会。</p>
                            <p>d.全体参会人员一致同意本次会议事项。</p>
                            <p>e.会议前已通过邮件将会议事项发</p>
                            <p>给了全体参会人员。</p>
                        </div>
                        <p>Ⅳ<b>.The HR department has been assigned the task to prepare the in-service training for the
                                newly recruited employees.Complete the following minutes based on the information
                                provided.</b></p>
                        <p class="center"><img class="img-a" alt="" src="../../assets/images/0124-2.jpg" /></p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">114</span>
                </div>
            </div>
        </div>
        <!-- 115 -->
        <div class="page-box" page="121">
            <div v-if="showPageList.indexOf(121) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit6">MODULE 6</span>
                        <span class="chapter-right-bc-unit6 fw-bl chapter-right-cl-unit6">A GLIMPSE OF THE WORK ENVIRONMENT</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p class="center"><img class="img-a" alt="" src="../../assets/images/0125-1.jpg" /></p>
                        <div class="un-h2">
                            <h2 id="b024">Unit Project</h2>
                        </div>
                        <p>When employees work in a positive environment,they are happier and more motivated.Work with
                            your partner and complete the following two tasks.</p>
                        <p><b>Task 1:</b> The following are three pictures of work environment.Find out the problems and
                            put forward some suggestions for improvement so as to create a comfortable and productive
                            workplace,and then finish Worksheet 1.</p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">115</span>
                </div>
            </div>
        </div>
        <!-- 116 -->
        <div class="page-box" page="122">
            <div v-if="showPageList.indexOf(122) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit6 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit6">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit6">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p class="center"><img class="img-e" alt="" src="../../assets/images/0126-1.jpg" /></p>
                        <p class="img">Picture 1</p>
                        <p class="center"><img class="img-e" alt="" src="../../assets/images/0126-2.jpg" /></p>
                        <p class="img">Picture 2</p>
                        <p class="center"><img class="img-e" alt="" src="../../assets/images/0126-3.jpg" /></p>
                        <p class="img">Picture 3</p>
                        <p class="left"><img class="img-gn" alt="" src="../../assets/images/dyworksheet1.jpg" /></p>
                        <p class="center"><img class="img-a" alt="" src="../../assets/images/0126-4.jpg" /></p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">116</span>
                </div>
            </div>
        </div>
        <!-- 117 -->
        <div class="page-box" page="123">
            <div v-if="showPageList.indexOf(123) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit6">MODULE 6</span>
                        <span class="chapter-right-bc-unit6 fw-bl chapter-right-cl-unit6">A GLIMPSE OF THE WORK ENVIRONMENT</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p><b>Task 2:</b> Investigate the work environment of the people you know,and then work with
                            your partner to finish Worksheet 2.</p>
                        <p class="left"><img class="img-gn" alt="" src="../../assets/images/dyworksheet2.jpg" /></p>
                        <p class="center"><img class="img-a" alt="" src="../../assets/images/0127-1.jpg" /></p>
                        <div class="fieldset-8">
                            <p class="center"><b>Useful Expressions</b></p>
                            <p>I don’t think it appropriate to ...</p>
                            <p>There are ...on the desk/in the office.</p>
                            <p>...looks tidy/untidy.</p>
                            <p>The negative/positive work environment usually leads to/brings about ...</p>
                            <p>The measures for ...are as follows.</p>
                            <p>The solutions to the ...are listed below.</p>
                            <p>It has a good/bad effect on ...</p>
                            <p>For me,I prefer team-based work environment which can ...</p>
                            <p>Effective communication is quite important for ...</p>
                        </div>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">117</span>
                </div>
            </div>
        </div>
    </div>
</template>
<script>
import matching from "@/components/matching/matching.vue";
import { getResourcePath } from "@/assets/methods/resources";
export default {
    name: "chapterSex",
    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>