闫增涛
2024-07-22 3ee26fb583c0c0a0caca79ca3010491a794534cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
<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>
            <ul class="fl fw-wr">
              <li class="w50">
                <p class="center">
                  <img style="width:92%" alt="" src="../../assets/images/0108-1.jpg" />
                </p>
                <p class="center">1.
                  <select class="select-border" v-model="dropDownOne[0].value[0].userAnswer" @change="saveDropdoenOne"
                    :disabled="dropDownOne[0].isComplete">
                    <option v-for="(item, index) in dropDownOne[0].option" :key="'change' + index" :value="item">
                      {{ item}}
                    </option>
                  </select>
                  <img :src="dropDownOne[0].value[0].isRight ? correctIcon : errorIcon"  v-if="dropDownOne[0].isComplete">
                </p>
              </li>
              <li class="w50">
                <p class="center">
                  <img class="w100" alt="" src="../../assets/images/0108-2.jpg" />
                </p>
                <p class="center">2.
                  <select class="select-border" v-model="dropDownOne[0].value[1].userAnswer" @change="saveDropdoenOne"
                    :disabled="dropDownOne[0].isComplete">
                    <option v-for="(item, index) in dropDownOne[0].option" :key=" 'ones' +index" :value="item">
                      {{ item}}
                    </option>
                  </select>
                  <img :src="dropDownOne[0].value[1].isRight ? correctIcon : errorIcon"  v-if="dropDownOne[0].isComplete">
                </p>
              </li>
              <li class="w50">
                <p class="center">
                  <img style="width:92%" alt="" src="../../assets/images/0108-3.jpg" />
                </p>
                <p class="center">3.
                  <select class="select-border" v-model="dropDownOne[0].value[2].userAnswer" @change="saveDropdoenOne"
                    :disabled="dropDownOne[0].isComplete">
                    <option v-for="(item, index) in dropDownOne[0].option" :key="'noce' + index" :value="item">
                      {{ item}}
                    </option>
                  </select>
                  <img :src="dropDownOne[0].value[2].isRight ? correctIcon : errorIcon"  v-if="dropDownOne[0].isComplete">
                </p>
              </li>
              <li class="w50">
                <p class="center">
                  <img class="w100" alt="" src="../../assets/images/0108-4.jpg" />
                </p>
                <p class="center">4.
                  <select class="select-border" v-model="dropDownOne[0].value[3].userAnswer" @change="saveDropdoenOne"
                    :disabled="dropDownOne[0].isComplete">
                    <option v-for="(item, index) in dropDownOne[0].option" :key="'vans' + index" :value="item">
                      {{ item }}
                    </option>
                  </select>
                  <img :src="dropDownOne[0].value[3].isRight ? correctIcon : errorIcon"  v-if="dropDownOne[0].isComplete">
                </p>
              </li>
            </ul>
            <div class="event-header-text-bc pd-5 w100 mt-20"
              v-if="dropDownOne[0].isShowAnswer">
                <span>答案:</span>
                <span v-for="(item,index) in dropDownOne[0].value" :key="index" class="mr-20">
                    {{index + 1}}.{{  item.answer }}
                </span>
            </div>
            <div class="w100 fl ju-cn">
                <ul class="fl ju-ev" style="width:80%">
                    <li>
                    <button class="btn-border btn-w" @click="handledropDownOne">
                        提交
                    </button>
                    </li>
                    <li>
                    <button @click="recastdropDownOne" class="btn-border btn-w">
                        重做
                    </button>
                    </li>
                    <li>
                    <button @click="viewdropDownOne" class="parimary-btn">
                        查看答案
                    </button>
                    </li>
                </ul>
            </div>
            <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>
            <ul>
              <li v-for="(item,index) in noSubmitData[0].value" :key="index" class="fl al-cn" style="margin-bottom:10px">
                <span class="tl-right" style="width:20%">{{item.stem}}</span>
                <textarea name="" id="" cols="30" rows="6" v-model="item.userAnswer" class="w100" @input="savenoSubmitData"></textarea>
              </li>
            </ul>
          </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" class="fl al-cn">
              <span class="bjh3">Listening</span>
              <!--controlslist="noplaybackrate nodownload"后面的音频框加入这个-->
              <audio
                :src="resource.listenOne"
                controls
                controlslist="noplaybackrate nodownload"
                class="audio"
              ></audio>
            </h3>
            <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>
            <table
              border="1"
              cellpadding="4"
              cellspacing="0"
              style="border-color: #fff"
              class="fz-14"
            >
              <tr class="table-tr-bc">
                <td class="tl-lf table-th-bc wh-no">Chen Meiling</td>
                <td>
                  I would prefer working in an interesting and professional
                  environment where everybody works hard and helps each other to
                  succeed as a l.
                  <input
                    :disabled="listenTable[0].isComplete"
                    type="text"
                    class="input-bottom-border input-bc-t"
                    style="width: 70px"
                    v-model="listenTable[0].value[0].userAnswer"
                    @input="savelistenTable"
                  />
                  <img :src="listenTable[0].value[0].isRight ? correctIcon : errorIcon"  v-if="listenTable[0].isComplete">
                </td>
              </tr>
              <tr class="table-tr-bc">
                <td class="tl-cn table-th-bc">Ross</td>
                <td>
                  For me, I prefer the workplace that gives me enough space to
                  grow, There should be good 2.
                  <input
                    :disabled="listenTable[0].isComplete"
                    type="text"
                    class="input-bottom-border input-bc-t"
                    style="width: 70px"
                    v-model="listenTable[0].value[1].userAnswer"
                    @input="savelistenTable"
                  />
                  <img :src="listenTable[0].value[1].isRight ? correctIcon : errorIcon"  v-if="listenTable[0].isComplete">
                  and mutual 3.
                  <input
                    :disabled="listenTable[0].isComplete"
                    type="text"
                    class="input-bottom-border input-bc-t"
                    style="width: 70px"
                    v-model="listenTable[0].value[2].userAnswer"
                    @input="savelistenTable"
                  />
                  <img :src="listenTable[0].value[2].isRight ? correctIcon : errorIcon"  v-if="listenTable[0].isComplete">
                  between each team member.
                </td>
              </tr>
              <tr class="table-tr-bc">
                <td class="tl-cn table-th-bc">Amelia</td>
                <td>
                  I'd like to work in an environment that gives me learning
                  opportunities as well as spacefor personal 4.
                  <input
                    :disabled="listenTable[0].isComplete"
                    type="text"
                    class="input-bottom-border input-bc-t"
                    style="width: 70px"
                    v-model="listenTable[0].value[3].userAnswer"
                    @input="savelistenTable"
                  />
                  <img :src="listenTable[0].value[3].isRight ? correctIcon : errorIcon"  v-if="listenTable[0].isComplete">
                </td>
              </tr>
              <tr class="table-tr-bc">
                <td class="tl-cn table-th-bc">Li Tao</td>
                <td>
                  I hope it's a workplace where there is 5.
                  <input
                    :disabled="listenTable[0].isComplete"
                    type="text"
                    class="input-bottom-border input-bc-t"
                    style="width: 70px"
                    v-model="listenTable[0].value[4].userAnswer"
                    @input="savelistenTable"
                  />
                  <img :src="listenTable[0].value[4].isRight ? correctIcon : errorIcon"  v-if="listenTable[0].isComplete">
                  for people's ideas as well as appreciationfor good work and
                  elfort.
                </td>
              </tr>
            </table>
            <div class="event-header-text-bc pd-5 w100 mt-20"
              v-if="listenTable[0].isShowAnswer">
                <span>答案:</span>
                <span v-for="(item,index) in listenTable[0].value" :key="index" class="mr-20">
                    {{index + 1}}.{{  item.answer }}
                </span>
            </div>
            <div class="w100 fl ju-cn">
                <ul class="fl ju-ev" style="width:80%">
                    <li>
                    <button class="btn-border btn-w" @click="handlelistenTable">
                        提交
                    </button>
                    </li>
                    <li>
                    <button @click="recastlistenTable" class="btn-border btn-w">
                        重做
                    </button>
                    </li>
                    <li>
                    <button @click="viewlistenTable" class="parimary-btn">
                        查看答案
                    </button>
                    </li>
                </ul>
            </div>
            <h3 id="c048"><span class="bjh3">Reading</span></h3>
            <p>
              1.What makes a positive work environment?
              <span class="btn-box" @click="showNoSubmitAnswer(1,0)">
                  <svg xmlns="http://www.w3.org/2000/svg" width="20.501" height="20.501" viewBox="0 0 20.501 20.501">
                  <path class="a"
                      d="M3344.717-15308.5H3337.4a10.186,10.186,0,0,1-7.25-3,10.185,10.185,0,0,1-3-7.25A10.262,10.262,0,0,1,3337.4-15329a10.26,10.26,0,0,1,10.249,10.248,10.129,10.129,0,0,1-2.2,6.341v3.177A.734.734,0,0,1,3344.717-15308.5Zm-9.606-7.29h4.493l.527,1.419c.071.182.156.386.254.608a2.428,2.428,0,0,0,.273.512.986.986,0,0,0,.315.262.971.971,0,0,0,.454.1,1.05,1.05,0,0,0,.773-.327,1.025,1.025,0,0,0,.319-.723,3.3,3.3,0,0,0-.277-1.051l-.062-.161-2.889-7.313c-.119-.321-.228-.607-.335-.873a2.972,2.972,0,0,0-.323-.616,1.56,1.56,0,0,0-.5-.469,1.552,1.552,0,0,0-.781-.181,1.535,1.535,0,0,0-.773.181,1.475,1.475,0,0,0-.5.477,3.674,3.674,0,0,0-.362.739l-.239.627-.054.135-2.824,7.355c-.095.229-.179.46-.25.688a1.529,1.529,0,0,0-.073.477.978.978,0,0,0,.323.72,1.039,1.039,0,0,0,.746.315.838.838,0,0,0,.716-.3,4.676,4.676,0,0,0,.466-.985l.062-.165.527-1.449Zm3.747-1.5h-3.293l1.812-5.124,1.481,5.123Z"
                      transform="translate(-3327.144 15329)" />
                  </svg>
              </span>
            </p>
            <textarea name="" id="" cols="30" rows="10" v-model="noSubmitData[1].value[0].userAnswer" class="w100" @input="savenoSubmitData"></textarea>
            <div class="event-header-text-bc pd-5 w100 mt-20" v-if="noSubmitData[1].value[0].isShowAnswer">
                答案:{{noSubmitData[1].value[0].answer}}
            </div>
            <p>2.Why would people be more productive in such environment?
              <span class="btn-box" @click="showNoSubmitAnswer(1,1)">
                  <svg xmlns="http://www.w3.org/2000/svg" width="20.501" height="20.501" viewBox="0 0 20.501 20.501">
                  <path class="a"
                      d="M3344.717-15308.5H3337.4a10.186,10.186,0,0,1-7.25-3,10.185,10.185,0,0,1-3-7.25A10.262,10.262,0,0,1,3337.4-15329a10.26,10.26,0,0,1,10.249,10.248,10.129,10.129,0,0,1-2.2,6.341v3.177A.734.734,0,0,1,3344.717-15308.5Zm-9.606-7.29h4.493l.527,1.419c.071.182.156.386.254.608a2.428,2.428,0,0,0,.273.512.986.986,0,0,0,.315.262.971.971,0,0,0,.454.1,1.05,1.05,0,0,0,.773-.327,1.025,1.025,0,0,0,.319-.723,3.3,3.3,0,0,0-.277-1.051l-.062-.161-2.889-7.313c-.119-.321-.228-.607-.335-.873a2.972,2.972,0,0,0-.323-.616,1.56,1.56,0,0,0-.5-.469,1.552,1.552,0,0,0-.781-.181,1.535,1.535,0,0,0-.773.181,1.475,1.475,0,0,0-.5.477,3.674,3.674,0,0,0-.362.739l-.239.627-.054.135-2.824,7.355c-.095.229-.179.46-.25.688a1.529,1.529,0,0,0-.073.477.978.978,0,0,0,.323.72,1.039,1.039,0,0,0,.746.315.838.838,0,0,0,.716-.3,4.676,4.676,0,0,0,.466-.985l.062-.165.527-1.449Zm3.747-1.5h-3.293l1.812-5.124,1.481,5.123Z"
                      transform="translate(-3327.144 15329)" />
                  </svg>
              </span>
            </p>
            <textarea name="" id="" cols="30" rows="10" v-model="noSubmitData[1].value[1].userAnswer" class="w100" @input="savenoSubmitData"></textarea>
            <div class="event-header-text-bc pd-5 w100 mt-20" v-if="noSubmitData[1].value[1].isShowAnswer">
                答案:{{noSubmitData[1].value[1].answer}}
            </div>
            <p class="center"><b>A Positive Work Environment</b></p>
            <p class="center">
              <audio
                :src="resource.readingOne"
                controls
                controlslist="noplaybackrate nodownload"
                style="margin-left: 10px"
                class="audio"
                
              ></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
              <span class="word-bc" @click="saveWord($event, 'candidates')"
                >andidates</span
              >
              only considered the salary at the time of joining a
              company.Nowadays,apart from the job
              <span class="word-bc" @click="saveWord($event, 'prospect')"
                >prospect</span
              >
              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
              <span class="word-bc" @click="saveWord($event, 'ensure')"
                >ensure</span
              >
              a positive work environment is to motivate employees for a correct
              <span class="word-bc" @click="saveWord($event, 'behavioral')"
                >behavioral</span
              >&nbsp;
              <span class="word-bc" @click="saveWord($event, 'approach')"
                >approach</span
              >
              .Good behavior also
              <span class="word-bc" @click="saveWord($event, 'determines')"
                >determines</span
              >
              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
              <span class="word-bc" @click="saveWord($event, 'interaction')"
                >interaction</span
              >
              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
              <span class="word-bc" @click="saveWord($event, 'maintain')"
                >maintain</span
              >
              &nbsp;
              <span class="word-bc" @click="saveWord($event, 'dignity')"
                >dignity</span
              >.
            </p>
            <p>
              Another important way to make a great work environment for a
              company is to show
              <span class="word-bc" @click="saveWord($event, 'appreciation')"
                >appreciation</span
              >
              of
              <span class="word-bc" @click="saveWord($event, 'outstanding')"
                >outstanding</span
              >
              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
              <span class="word-bc" @click="saveWord($event, 'advancement')">
                advancement</span
              >
              .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
              <span class="word-bc" @click="saveWord($event, 'gifted')"
                >gifted</span
              >
              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
              <span class="word-bc" @click="saveWord($event, 'fosters')"
                >fosters</span
              >
              a positive atmosphere and encourages employees
              <span class="word-bc" @click="saveWord($event, 'consistently')"
                >consistently</span
              >
              .A positive work environment can improve employees’
              happiness,increase the
              <span class="word-bc" @click="saveWord($event, 'productivity')"
                >productivity</span
              >
              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>
            <audio
              :src="resource.readingTwo"
              controls
              controlslist="noplaybackrate nodownload"
              style="margin-left: 10px"
              class="audio"
              
            ></audio>
            <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>
            <ul class="fl fw-wr">
              <li>
                <p>apart from ...除了……外(都)</p>
                <p>be aware of 意识到;觉察</p>
                <p>return the favor 回报</p>
              </li>
              <li>
                <p>keep an eye on 留意;密切注视</p>
                <p>be likely to 很可能</p>
              </li>
            </ul>
            <p><b>Ⅰ.Reading comprehension.</b></p>
            <p>
              A.Mark the elements of a positive work environment mentioned in
              the passage.
            </p>
            <p v-for="(item,index) in readingOne[0].option" :key="index">
              <input type="checkbox" 
                :value="item" 
                name="change" 
                v-model="readingOne[0].value[0].userAnswer" 
                :disabled="readingOne[0].isComplete"
                @input="saveReadingOne"
              >
              {{item}}
            </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>
            <table
              border="1"
              cellpadding="4"
              cellspacing="0"
              style="border-color: #fff"
              class="fz-14"
            >
              <tr class="table-th-bc">
                <td class="tl-cn">Paragraphs</td>
                <td class="wh-no tl-cn">Related Questions</td>
                <td class="tl-cn">Answers</td>
              </tr>
              <tr class="table-tr-bc">
                <td class="tl-cn">Para. 1-2</td>
                <td class="wh-no tl-cn">
                  <input
                    :disabled="readingOne[1].isComplete"
                    type="text"
                    class="input-bottom-border input-bc-t"
                    style="width: 70px"
                    v-model="readingOne[1].value[0].userAnswerOne"
                    @input="saveReadingOne"
                  />
                </td>
                <td style="width: 80%">
                  <textarea
                    v-model="readingOne[1].value[0].userAnswerTwo"
                    class="w100 table-tr-bc b0 table-textarea"
                    @input="saveReadingOne"
                  ></textarea>
                </td>
              </tr>
              <tr class="table-tr-bc">
                <td class="tl-cn">Para. 3-4</td>
                <td class="tl-cn">
                  <input
                    :disabled="readingOne[1].isComplete"
                    type="text"
                    class="input-bottom-border input-bc-t"
                    style="width: 70px"
                    v-model="readingOne[1].value[1].userAnswerOne"
                    @input="saveReadingOne"
                  />
                </td>
                <td>
                  <textarea
                    v-model="readingOne[1].value[1].userAnswerTwo"
                    class="w100 table-tr-bc b0 table-textarea"
                    @input="saveReadingOne"
                  ></textarea>
                </td>
              </tr>
              <tr class="table-tr-bc">
                <td class="tl-cn">Para. 5</td>
                <td class="tl-cn">
                  <input
                    :disabled="readingOne[1].isComplete"
                    type="text"
                    class="input-bottom-border input-bc-t"
                    style="width: 70px"
                    v-model="readingOne[1].value[2].userAnswerOne"
                    @input="saveReadingOne"
                  />
                </td>
                <td>
                  <textarea
                    v-model="readingOne[1].value[2].userAnswerTwo"
                    class="w100 table-tr-bc b0 table-textarea"
                    @input="saveReadingOne"
                  ></textarea>
                </td>
              </tr>
            </table>
            <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 v-for="(item,index) in readingOne[2].value" :key=" 'passage' + index">
              {{index + 1}}.
              {{item.stemFirst}}
              <input type="text" :disabled="readingOne[2].isComplete" v-model="item.userAnswer" class="input-bottom-border input-bc-t w80x" @input="saveReadingOne" > 
              <img :src="item.isRight ? correctIcon : errorIcon"  v-if="readingOne[2].isComplete">
              {{item.stemLast}}
            </p>
            <div class="event-header-text-bc pd-5 w100 mt-20"
                v-if="readingOne[2].isShowAnswer">
                <span>答案:</span>
                <span v-for="(item,index) in readingOne[2].value" :key="index" class="mr-20">
                    {{index + 1}}.{{  item.answer }}
                </span>
            </div>
            <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 v-for="(item,index) in readingOne[3].value.slice(0,3)" :key="index">
              {{index + 1}}.
              <span v-html="item.stem"></span>
              <input type="text" :disabled="readingOne[3].isComplete" v-model="item.userAnswer" class="input-bottom-border input-bc-t w80x" @input="saveReadingOne"> 
              <img :src="item.isRight ? correctIcon : errorIcon"  v-if="readingOne[3].isComplete">
            </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 v-for="(item,index) in readingOne[3].value.slice(3,5)" :key="index">
              {{index + 3}}.
              <span v-html="item.stem"></span>
              <input type="text" :disabled="readingOne[3].isComplete" v-model="item.userAnswer" class="input-bottom-border input-bc-t w80x" @input="saveReadingOne"> 
              <img :src="item.isRight ? correctIcon : errorIcon"  v-if="readingOne[3].isComplete">
            </p>
            <div class="event-header-text-bc pd-5 w100 mt-20"
                v-if="readingOne[3].isShowAnswer">
                <span>答案:</span>
                <span v-for="(item,index) in readingOne[3].value" :key="index" class="mr-20">
                    {{index + 1}}.{{  item.answer }}
                </span>
            </div>
            <p>C.Translate the following sentences into Chinese.</p>
            <ul>
              <li v-for="(item,index) in readingOne[4].value" :key="index">
                <p>
                  {{index + 1}}. {{item.stem}}
                </p>
                <input type="text" :disabled="readingOne[4].isComplete" v-model="item.userAnswer" class="input-bottom-border input-bc-t" @input="saveReadingOne"> 
              </li>
            </ul>
            <p>
              <b>Ⅲ.Grammar focus:Inverted sentences.</b>
              <span class="btn-box" >
                <svg
                  t="1717037443722"
                  class="icon"
                  viewBox="0 0 1024 1024"
                  version="1.1"
                  xmlns="http://www.w3.org/2000/svg"
                  p-id="30864"
                  xmlns:xlink="http://www.w3.org/1999/xlink"
                  width="20"
                  height="20"
                >
                  <path
                    d="M387.2 471.152l-154.768 258.72v103.488h515.792V626.384l-149.12 103.488z m283.712-51.744a77.632 77.632 0 1 0 77.392 77.616 77.504 77.504 0 0 0-77.472-77.616zM640 0H160.72A96.736 96.736 0 0 0 64 96.72V927.36a96.736 96.736 0 0 0 96.72 96.64h702.56A96.704 96.704 0 0 0 960 927.36V298.016z m7.808 94.736l226.544 211.008h-146.544a80.08 80.08 0 0 1-80-80zM896 927.36a32.688 32.688 0 0 1-32.72 32.64h-702.56A32.704 32.704 0 0 1 128 927.36V96.72A32.752 32.752 0 0 1 160.72 64l423.088 0.384v161.44a144.176 144.176 0 0 0 144 143.92H896z"
                    p-id="30865"
                  ></path>
                </svg>
              </span>
            </p>
            <div class="openImgBox" v-if="showImg">
              <img class="w100" :src="imgThirteen" />
            </div>
            <p>
              A.Choose the correct version of the translation of the inverted
              sentences.
            </p>
            <ul>
              <li v-for="(item,index) in readingOne[5].value" :key="'list' + index">
                <p>
                  {{index + 1}}.{{item.stem}}
                </p>
                <p v-for="(citem,cindex) in item.option" :key="'option' + cindex">
                  <input type="radio" :name="item.stem" :value="citem.value" @change="saveReadingOne">{{citem.value}}.{{citem.label}}
                </p>
              </li>
            </ul>
            <div class="event-header-text-bc pd-5 w100 mt-20"
                v-if="readingOne[5].isShowAnswer">
                <span>答案:</span>
                <span v-for="(item,index) in readingOne[5].value" :key="index" class="mr-20">
                    {{index + 1}}.{{  item.answer }}
                </span>
            </div>
          </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>
            <ul>
              <li v-for="(item,index) in readingOne[6].value" :key="index">
                <p>{{index + 1}}.{{item.stem}}</p>
                <input type="text" :disabled="readingOne[6].isComplete" v-model="item.userAnswer" class="input-bottom-border input-bc-t" @input="saveReadingOne"> 
              </li>
            </ul>
            <div class="w100 fl ju-cn">
              <ul class="fl ju-ev" style="width:80%">
                  <li>
                  <button class="btn-border btn-w" @click="handleReadingOne">
                      提交
                  </button>
                  </li>
                  <li>
                  <button @click="recastReadingOne" class="btn-border btn-w">
                      重做
                  </button>
                  </li>
                  <li>
                  <button @click="viewReadingOne" class="parimary-btn">
                      查看答案
                  </button>
                  </li>
              </ul>
          </div>
            <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>
            <table
              border="1"
              cellpadding="4"
              cellspacing="0"
              style="border-color: #fff"
              class="fz-14"
            >
              <tr class="table-th-bc">
                <td class="tl-cn">Elements</td>
                <td class="tl-cn">Reasons for the Choice</td>
              </tr>
              <tr class="table-tr-bc">
                <td class="tl-cn wh-no">Company Culture</td>
                <td>
                  Company culture is the soul and essence of a company, It helps
                  us define the atti-tude and behavior within a company.
                </td>
              </tr>
              <tr class="table-tr-bc">
                <td>
                  <textarea
                    v-model="noSubmitData[2].value[0].userAnswer"
                    class="w100 table-tr-bc b0 table-textarea textarea-box"
                    @input="savenoSubmitData"
                  ></textarea>
                </td>
                <td>
                  <textarea
                    v-model="noSubmitData[2].value[1].userAnswer"
                    class="w100 table-tr-bc b0 table-textarea"
                    @input="savenoSubmitData"
                  ></textarea>
                </td>
              </tr>
              <tr class="table-tr-bc">
                <td>
                  <textarea
                    v-model="noSubmitData[2].value[2].userAnswer"
                    class="w100 table-tr-bc b0 table-textarea textarea-box"
                    @input="savenoSubmitData"
                  ></textarea>
                </td>
                <td>
                  <textarea
                    v-model="noSubmitData[2].value[3].userAnswer"
                    class="w100 table-tr-bc b0 table-textarea"
                    @input="savenoSubmitData"
                  ></textarea>
                </td>
              </tr>
              <tr class="table-tr-bc">
                <td>
                  <textarea
                    v-model="noSubmitData[2].value[4].userAnswer"
                    class="w100 table-tr-bc b0 table-textarea textarea-box"
                    @input="savenoSubmitData"
                  ></textarea>
                </td>
                <td>
                  <textarea
                    v-model="noSubmitData[2].value[5].userAnswer"
                    class="w100 table-tr-bc b0 table-textarea"
                    @input="savenoSubmitData"
                  ></textarea>
                </td>
              </tr>
              <tr class="table-tr-bc">
                <td>
                  <textarea
                    v-model="noSubmitData[2].value[6].userAnswer"
                    class="w100 table-tr-bc b0 table-textarea textarea-box"
                    @input="savenoSubmitData"
                  ></textarea>
                </td>
                <td>
                  <textarea
                    v-model="noSubmitData[2].value[7].userAnswer"
                    class="w100 table-tr-bc b0 table-textarea"
                    @input="savenoSubmitData"
                  ></textarea>
                </td>
              </tr>
              <tr class="table-tr-bc">
                <td>
                  <textarea
                    v-model="noSubmitData[2].value[8].userAnswer"
                    class="w100 table-tr-bc b0 table-textarea textarea-box"
                    @input="savenoSubmitData"
                  ></textarea>
                </td>
                <td>
                  <textarea
                    v-model="noSubmitData[2].value[9].userAnswer"
                    class="w100 table-tr-bc b0 table-textarea"
                    @input="savenoSubmitData"
                  ></textarea>
                </td>
              </tr>
            </table>
          </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 class="dl-box">
                <span
                  class="word-bc mr-20 dl-span"
                  @click="saveWord($event, 'direct')"
                  >relationship</span
                >
                <span
                  class="word-bc mr-20 dl-span"
                  @click="saveWord($event, 'communication')"
                  >communication</span
                >
                <span
                  class="word-bc mr-20 dl-span"
                  @click="saveWord($event, 'productivity')"
                  >productivity</span
                >
                <span
                  class="word-bc mr-20 dl-span"
                  @click="saveWord($event, 'respect')"
                  >respect</span
                >
                <span
                  class="word-bc mr-20 dl-span"
                  @click="saveWord($event, 'pleasure')"
                  >pleasure</span
                >
                <span
                  class="word-bc mr-20 dl-span"
                  @click="saveWord($event, 'professional')"
                  >professional</span
                >
                <span
                  class="word-bc mr-20 dl-span"
                  @click="saveWord($event, 'team spirit')"
                  >team spirit</span
                >
                <span
                  class="word-bc mr-20 dl-span"
                  @click="saveWord($event, 'job satisfaction')"
                  >job satisfaction</span
                >
                <span
                  class="word-bc mr-20 dl-span"
                  @click="saveWord($event, 'personal development')"
                  >personal development</span
                >
                <span
                  class="word-bc mr-20 dl-span"
                  @click="saveWord($event, 'job prospect')"
                  >job prospect</span
                >
                <span
                  class="word-bc mr-20 dl-span"
                  @click="saveWord($event, 'modern decor')"
                  >modern decor</span
                >
              </p>
            </div>
            <div
              class="resource-primary-border"
              style="padding: 8px; margin: 5% 0%"
            >
              <div class="banshi openImgBox">
                <div class="swiper-container swiper_ppt">
                  <div class="swiper-wrapper">
                    <div class="swiper-slide">
                      <div class="imgBox" style="width: 100%; height: 100%">
                        <img src="../../assets/images/ppt/ppt_01.png" />
                      </div>
                    </div>
                    <div class="swiper-slide">
                      <div class="imgBox" style="width: 100%; height: 100%">
                        <img src="../../assets/images/ppt/ppt_02.png" />
                      </div>
                    </div>
                    <div class="swiper-slide">
                      <div class="imgBox" style="width: 100%; height: 100%">
                        <img src="../../assets/images/ppt/ppt_03.png" />
                      </div>
                    </div>
                    <div class="swiper-slide">
                      <div class="imgBox" style="width: 100%; height: 100%">
                        <img src="../../assets/images/ppt/ppt_04.png" />
                      </div>
                    </div>
                    <div class="swiper-slide">
                      <div class="imgBox" style="width: 100%; height: 100%">
                        <img src="../../assets/images/ppt/ppt_05.png" />
                      </div>
                    </div>
                    <div class="swiper-slide">
                      <div class="imgBox" style="width: 100%; height: 100%">
                        <img src="../../assets/images/ppt/ppt_06.png" />
                      </div>
                    </div>
                    <div class="swiper-slide">
                      <div class="imgBox" style="width: 100%; height: 100%">
                        <img src="../../assets/images/ppt/ppt_07.png" />
                      </div>
                    </div>
                    <div class="swiper-slide">
                      <div class="imgBox" style="width: 100%; height: 100%">
                        <img src="../../assets/images/ppt/ppt_08.png" />
                      </div>
                    </div>
                    <div class="swiper-slide">
                      <div class="imgBox" style="width: 100%; height: 100%">
                        <img src="../../assets/images/ppt/ppt_09.png" />
                      </div>
                    </div>
                    <div class="swiper-slide">
                      <div class="imgBox" style="width: 100%; height: 100%">
                        <img src="../../assets/images/ppt/ppt_10.png" />
                      </div>
                    </div>
                    <div class="swiper-slide">
                      <div class="imgBox" style="width: 100%; height: 100%">
                        <img src="../../assets/images/ppt/ppt_11.png" />
                      </div>
                    </div>
                    <div class="swiper-slide">
                      <div class="imgBox" style="width: 100%; height: 100%">
                        <img src="../../assets/images/ppt/ppt_12.png" />
                      </div>
                    </div>
                    <div class="swiper-slide">
                      <div class="imgBox" style="width: 100%; height: 100%">
                        <img src="../../assets/images/ppt/ppt_13.png" />
                      </div>
                    </div>
                    <div class="swiper-slide">
                      <div class="imgBox" style="width: 100%; height: 100%">
                        <img src="../../assets/images/ppt/ppt_14.png" />
                      </div>
                    </div>
                    <div class="swiper-slide">
                      <div class="imgBox" style="width: 100%; height: 100%">
                        <img src="../../assets/images/ppt/ppt_15.png" />
                      </div>
                    </div>
                    <div class="swiper-slide">
                      <div class="imgBox" style="width: 100%; height: 100%">
                        <img src="../../assets/images/ppt/ppt_16.png" />
                      </div>
                    </div>
                    <div class="swiper-slide">
                      <div class="imgBox" style="width: 100%; height: 100%">
                        <img src="../../assets/images/ppt/ppt_17.png" />
                      </div>
                    </div>
                    <div class="swiper-slide">
                      <div class="imgBox" style="width: 100%; height: 100%">
                        <img src="../../assets/images/ppt/ppt_18.png" />
                      </div>
                    </div>
                    <div class="swiper-slide">
                      <div class="imgBox" style="width: 100%; height: 100%">
                        <img src="../../assets/images/ppt/ppt_19.png" />
                      </div>
                    </div>
                    <div class="swiper-slide">
                      <div class="imgBox" style="width: 100%; height: 100%">
                        <img src="../../assets/images/ppt/ppt_20.png" />
                      </div>
                    </div>
                    <div class="swiper-slide">
                      <div class="imgBox" style="width: 100%; height: 100%">
                        <img src="../../assets/images/ppt/ppt_21.png" />
                      </div>
                    </div>
                    <div class="swiper-slide">
                      <div class="imgBox" style="width: 100%; height: 100%">
                        <img src="../../assets/images/ppt/ppt_22.png" />
                      </div>
                    </div>
                    <div class="swiper-slide">
                      <div class="imgBox" style="width: 100%; height: 100%">
                        <img src="../../assets/images/ppt/ppt_23.png" />
                      </div>
                    </div>
                    <div class="swiper-slide">
                      <div class="imgBox" style="width: 100%; height: 100%">
                        <img src="../../assets/images/ppt/ppt_24.png" />
                      </div>
                    </div>
                    <div class="swiper-slide">
                      <div class="imgBox" style="width: 100%; height: 100%">
                        <img src="../../assets/images/ppt/ppt_25.png" />
                      </div>
                    </div>
                    <div class="swiper-slide">
                      <div class="imgBox" style="width: 100%; height: 100%">
                        <img src="../../assets/images/ppt/ppt_26.png" />
                      </div>
                    </div>
                    <div class="swiper-slide">
                      <div class="imgBox" style="width: 100%; height: 100%">
                        <img src="../../assets/images/ppt/ppt_27.png" />
                      </div>
                    </div>
                  </div>
                  <div class="swiper-button-next"></div>
                  <div class="swiper-button-prev"></div>
                  <div class="pageBox"></div>
                </div>
                <!-- 显示当前页和总页数的元素 -->
              </div>
            </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
              >
              <span class="btn-box" @click="showdropdownTwo">
                  <svg xmlns="http://www.w3.org/2000/svg" width="20.501" height="20.501" viewBox="0 0 20.501 20.501">
                  <path class="a"
                      d="M3344.717-15308.5H3337.4a10.186,10.186,0,0,1-7.25-3,10.185,10.185,0,0,1-3-7.25A10.262,10.262,0,0,1,3337.4-15329a10.26,10.26,0,0,1,10.249,10.248,10.129,10.129,0,0,1-2.2,6.341v3.177A.734.734,0,0,1,3344.717-15308.5Zm-9.606-7.29h4.493l.527,1.419c.071.182.156.386.254.608a2.428,2.428,0,0,0,.273.512.986.986,0,0,0,.315.262.971.971,0,0,0,.454.1,1.05,1.05,0,0,0,.773-.327,1.025,1.025,0,0,0,.319-.723,3.3,3.3,0,0,0-.277-1.051l-.062-.161-2.889-7.313c-.119-.321-.228-.607-.335-.873a2.972,2.972,0,0,0-.323-.616,1.56,1.56,0,0,0-.5-.469,1.552,1.552,0,0,0-.781-.181,1.535,1.535,0,0,0-.773.181,1.475,1.475,0,0,0-.5.477,3.674,3.674,0,0,0-.362.739l-.239.627-.054.135-2.824,7.355c-.095.229-.179.46-.25.688a1.529,1.529,0,0,0-.073.477.978.978,0,0,0,.323.72,1.039,1.039,0,0,0,.746.315.838.838,0,0,0,.716-.3,4.676,4.676,0,0,0,.466-.985l.062-.165.527-1.449Zm3.747-1.5h-3.293l1.812-5.124,1.481,5.123Z"
                      transform="translate(-3327.144 15329)" />
                  </svg>
              </span>
            </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="fl ju-cn">
              <table
                border="1"
                cellpadding="4"
                cellspacing=""
                style="border-color:#eace8d "
                class="fz-14 "
              >
                <tr class="tc">
                  <td class="tl-cn" colspan="2">The School Code of Conduct</td>
                </tr>
                <tr class="tc">
                  <td class="tl-cn">
                    <img src="../../assets/images/table/t1.jpg" alt="">
                  </td>
                  <td>
                    <select class="select-border" v-model="dropDownTwo[0].value[0].userAnswer" @change="handledropDownTwo(0)"
                        :disabled="dropDownTwo[0].isComplete">
                        <option v-for="(item, index) in dropDownTwo[0].option" :key="index" :value="item">
                        {{ item }}
                        </option>
                    </select>
                    <img :src="dropDownTwo[0].value[0].isRight ? correctIcon : errorIcon"  
                      v-if="dropDownTwo[0].value[0].isRight == true || dropDownTwo[0].value[0].isRight == false">
                  </td>
                </tr>
                <tr class="tc">
                  <td class="tl-cn">
                    <img src="../../assets/images/table/t2.jpg" alt="">
                  </td>
                  <td>
                    <select class="select-border" v-model="dropDownTwo[0].value[1].userAnswer"  @change="handledropDownTwo(1)"
                        :disabled="dropDownTwo[0].isComplete">
                        <option v-for="(item, index) in dropDownTwo[0].option" :key="index" :value="item">
                        {{ item }}
                        </option>
                    </select>
                    <img :src="dropDownTwo[0].value[1].isRight ? correctIcon : errorIcon"  
                      v-if="dropDownTwo[0].value[1].isRight == true || dropDownTwo[0].value[1].isRight == false">
                  </td>
                </tr>
                <tr class="tc">
                  <td class="tl-cn">
                    <img src="../../assets/images/table/t3.jpg" alt="">
                  </td>
                  <td>
                    <select class="select-border" v-model="dropDownTwo[0].value[2].userAnswer" @change="handledropDownTwo(2)"
                        :disabled="dropDownTwo[0].isComplete">
                        <option v-for="(item, index) in dropDownTwo[0].option" :key="index" :value="item">
                        {{ item }}
                        </option>
                    </select>
                    <img :src="dropDownTwo[0].value[2].isRight ? correctIcon : errorIcon"  
                      v-if="dropDownTwo[0].value[2].isRight == true || dropDownTwo[0].value[2].isRight == false">
                  </td>
                </tr>
                <tr class="tc">
                  <td class="tl-cn">
                    <img src="../../assets/images/table/t4.jpg" alt="">
                  </td>
                  <td>
                    <select class="select-border" v-model="dropDownTwo[0].value[3].userAnswer" @change="handledropDownTwo(3)"
                        :disabled="dropDownTwo[0].isComplete">
                        <option v-for="(item, index) in dropDownTwo[0].option" :key="index" :value="item">
                        {{ item }}
                        </option>
                    </select>
                    <img :src="dropDownTwo[0].value[3].isRight ? correctIcon : errorIcon"  
                    v-if="dropDownTwo[0].value[3].isRight == true || dropDownTwo[0].value[3].isRight == false">
                  </td>
                </tr>
                <tr class="tc">
                  <td class="tl-cn">
                    <img src="../../assets/images/table/t5.jpg" alt="">
                  </td>
                  <td>
                    <select class="select-border" v-model="dropDownTwo[0].value[4].userAnswer" @change="handledropDownTwo(4)"
                        :disabled="dropDownTwo[0].isComplete">
                        <option v-for="(item, index) in dropDownTwo[0].option" :key="index" :value="item">
                        {{ item }}
                        </option>
                    </select>
                  </td>
                </tr>
            </table>
            </p>
            <div class="event-header-text-bc pd-5 w100 mt-20"
                v-if="dropDownTwo[0].isShowAnswer">
                <span>答案:</span>
                <p v-for="(item,index) in dropDownTwo[0].value" :key="index" class="mr-20">
                    {{index + 1}}.{{  item.answer }}
                </p>
            </div>
          </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">
            <h3 id="c051"><span class="bjh3">Reading</span></h3>
            <ul>
              <li v-for="(item,index) in noSubmitData[3].value" :key="index">
                <p>
                  {{index + 1}}.{{item.stem}}
                  <span class="btn-box" @click="shownoSubmitData(3,index)">
                      <svg xmlns="http://www.w3.org/2000/svg" width="20.501" height="20.501" viewBox="0 0 20.501 20.501">
                      <path class="a"
                          d="M3344.717-15308.5H3337.4a10.186,10.186,0,0,1-7.25-3,10.185,10.185,0,0,1-3-7.25A10.262,10.262,0,0,1,3337.4-15329a10.26,10.26,0,0,1,10.249,10.248,10.129,10.129,0,0,1-2.2,6.341v3.177A.734.734,0,0,1,3344.717-15308.5Zm-9.606-7.29h4.493l.527,1.419c.071.182.156.386.254.608a2.428,2.428,0,0,0,.273.512.986.986,0,0,0,.315.262.971.971,0,0,0,.454.1,1.05,1.05,0,0,0,.773-.327,1.025,1.025,0,0,0,.319-.723,3.3,3.3,0,0,0-.277-1.051l-.062-.161-2.889-7.313c-.119-.321-.228-.607-.335-.873a2.972,2.972,0,0,0-.323-.616,1.56,1.56,0,0,0-.5-.469,1.552,1.552,0,0,0-.781-.181,1.535,1.535,0,0,0-.773.181,1.475,1.475,0,0,0-.5.477,3.674,3.674,0,0,0-.362.739l-.239.627-.054.135-2.824,7.355c-.095.229-.179.46-.25.688a1.529,1.529,0,0,0-.073.477.978.978,0,0,0,.323.72,1.039,1.039,0,0,0,.746.315.838.838,0,0,0,.716-.3,4.676,4.676,0,0,0,.466-.985l.062-.165.527-1.449Zm3.747-1.5h-3.293l1.812-5.124,1.481,5.123Z"
                          transform="translate(-3327.144 15329)" />
                      </svg>
                  </span>
                </p>
                <textarea name="" id="" cols="30" rows="10" class="w100" v-model="item.userAnswer" @change="savenoSubmitData"></textarea>
                <div class="event-header-text-bc pd-5 w100 mt-20"
                  v-if="item.isShowAnswer">
                  答案:{{item.answer}}
                  
              </div>
              </li>
            </ul>
            <p class="center"><b>Code of Conduct in the Workplace</b></p>
            <p class="center">
              <audio
                :src="resource.readingThree"
                controls
                controlslist="noplaybackrate nodownload"
                style="margin-left: 10px"
                class="audio"
                
              ></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
              <span class="word-bc" @click="saveWord($event, 'core')"
                >core</span
              >
              values,including its mission,to guide the creation of these
              codes.These guidelines
              <span class="word-bc" @click="saveWord($event, 'outline')"
                >outline</span
              >
              how the organization operates,how employees
              <span class="word-bc" @click="saveWord($event, 'conduct')"
                >conduct</span
              >
              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
              <span class="word-bc" @click="saveWord($event, 'enforcing')"
                >enforcing</span
              >
              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>
                <select class="select-border" v-model="dropDownThree[0].value[0].userAnswer" @change="handleDropdownThree(0)"
                    :disabled="dropDownThree[0].isComplete">
                    <option v-for="(item, index) in dropDownThree[0].option" :key="'change' + index" :value="item">
                      {{ item}}
                    </option>
                </select>
                <img :src="dropDownThree[0].value[0].isRight ? correctIcon : errorIcon"  
                    v-if="dropDownThree[0].value[0].isRight == true || dropDownThree[0].value[0].isRight == false">
              </p>
              <p>
                1.Honesty and
                <span class="word-bc" @click="saveWord($event, 'integrity')"
                  >integrity</span
                >
                .Above all,treat clients fairly.
              </p>
              <p>
                2.Maintain the good
                <span class="word-bc" @click="saveWord($event, 'reputation')"
                  >reputation</span
                >
                of the company.
              </p>
              <p>
                3.
                <span class="word-bc" @click="saveWord($event, 'Conflicts')"
                  >Conflicts</span
                >
                and interest.Manage conflicts of interest fairly and do not act
                in a manner
                <span class="word-bc" @click="saveWord($event, 'inconsistent')"
                  >inconsistent</span
                >
                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
                <span class="word-bc" @click="saveWord($event, 'advertised')"
                  >advertised</span
                >
                in a
                <span class="word-bc" @click="saveWord($event, 'misleading')"
                  >misleading</span
                >
                way.
              </p>
              <p>
                <b>B.</b>
                <select class="select-border" v-model="dropDownThree[0].value[1].userAnswer" @change="handleDropdownThree(1)"
                    :disabled="dropDownThree[0].isComplete">
                    <option v-for="(item, index) in dropDownThree[0].option" :key="'change' + index" :value="item">
                      {{ item}}
                    </option>
                </select>
                <img :src="dropDownThree[0].value[1].isRight ? correctIcon : errorIcon"  
                    v-if="dropDownThree[0].value[1].isRight == true || dropDownThree[0].value[1].isRight == false">
              </p>
              <p>
                6.
                <span class="word-bc" @click="saveWord($event, 'Competence')"
                  >Competence</span
                >
                .Advise clients only on matters in which they are
                <span class="word-bc" @click="saveWord($event, 'competent')"
                  >competent</span
                >
                .
              </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.
                <span class="word-bc" @click="saveWord($event, 'Suitability')"
                  >Suitability</span
                >
                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
                <span class="word-bc" @click="saveWord($event, 'competitor')"
                  >competitor</span
                >.
              </p>
              <p>
                <b>C.</b>
                <select class="select-border" v-model="dropDownThree[0].value[2].userAnswer" @change="handleDropdownThree(2)"
                    :disabled="dropDownThree[0].isComplete">
                    <option v-for="(item, index) in dropDownThree[0].option" :key="'change' + index" :value="item">
                      {{ item}}
                    </option>
                </select>
                <img :src="dropDownThree[0].value[2].isRight ? correctIcon : errorIcon"  
                    v-if="dropDownThree[0].value[2].isRight == true || dropDownThree[0].value[2].isRight == false">
              </p>
              <p>
                11.Skill and care.Act at all times with reasonable skill and
                care.
              </p>
              <p>
                12.Professional
                <span class="word-bc" @click="saveWord($event, 'discipline')"
                  >discipline</span
                >
                .Organize business in a responsible and effective way.
              </p>
              <p>
                13.Company guidance.Be familiar and seek to
                <span class="word-bc" @click="saveWord($event, 'observe')"
                  >observe</span
                >
                the company
                <span class="word-bc" @click="saveWord($event, 'guidance')"
                  >guidance</span
                >
                .
              </p>
              <p>
                14.
                <span class="word-bc" @click="saveWord($event, 'Complaints')"
                  >Complaints</span
                >
                .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>
            <audio
              :src="resource.readingFour"
              controls
              controlslist="noplaybackrate nodownload"
              style="margin-left: 10px"
              class="audio"
              
            ></audio>
            <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 v-for="(item,index) in readingTwo[0].option" :key="index">
                <input type="checkbox" name="bk-11" id="" :value="item" v-model="readingTwo[0].value[0].userAnswer" @change="saveReadingTwo">
                {{index + 1}}.{{item}}
              </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 v-for="(item,index) in readingTwo[1].value" :key="index">
              {{index + 1}}.{{item.stem}}
              <input type="text" :disabled="readingTwo[1].isComplete" v-model="item.userAnswer" class="input-bottom-border input-bc-t" @input="saveReadingTwo" style="width:80px"> 
              <img :src="item.isRight ? correctIcon : errorIcon"  v-if="readingTwo[1].isComplete">
            </p>
            <div class="event-header-text-bc pd-5 w100 mt-20"
                v-if="readingTwo[1].isShowAnswer">
                <span>答案:</span>
                <span v-for="(item,index) in readingTwo[1].value" :key="index" class="mr-20">
                    {{index + 1}}.{{  item.answer }}
                </span>
            </div>
            <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 v-for="(item,index) in readingTwo[2].value" :key="'engage' + index"> 
              {{index + 1}}.{{item.stemOne}}
              <input type="text" :disabled="readingTwo[2].isComplete" v-model="item.userAnswer" class="input-bottom-border input-bc-t" @input="saveReadingTwo" style="width:80px">
              <img :src="item.isRight ? correctIcon : errorIcon"  v-if="readingTwo[2].isComplete">
              {{item.stemTwo}} 
            </p>
            <div class="event-header-text-bc pd-5 w100 mt-20"
                v-if="readingTwo[2].isShowAnswer">
                <span>答案:</span>
                <span v-for="(item,index) in readingTwo[2].value" :key="index" class="mr-20">
                    {{index + 1}}.{{  item.answer }}
                </span>
            </div>
            <p>
              <b>Ⅲ.Grammar focus:Modal verbs (can,could,may,might).</b>
              <span class="btn-box" >
                <svg
                  t="1717037443722"
                  class="icon"
                  viewBox="0 0 1024 1024"
                  version="1.1"
                  xmlns="http://www.w3.org/2000/svg"
                  p-id="30864"
                  xmlns:xlink="http://www.w3.org/1999/xlink"
                  width="20"
                  height="20"
                >
                  <path
                    d="M387.2 471.152l-154.768 258.72v103.488h515.792V626.384l-149.12 103.488z m283.712-51.744a77.632 77.632 0 1 0 77.392 77.616 77.504 77.504 0 0 0-77.472-77.616zM640 0H160.72A96.736 96.736 0 0 0 64 96.72V927.36a96.736 96.736 0 0 0 96.72 96.64h702.56A96.704 96.704 0 0 0 960 927.36V298.016z m7.808 94.736l226.544 211.008h-146.544a80.08 80.08 0 0 1-80-80zM896 927.36a32.688 32.688 0 0 1-32.72 32.64h-702.56A32.704 32.704 0 0 1 128 927.36V96.72A32.752 32.752 0 0 1 160.72 64l423.088 0.384v161.44a144.176 144.176 0 0 0 144 143.92H896z"
                    p-id="30865"
                  ></path>
                </svg>
              </span>
            </p>
            <div class="openImgBox" v-if="showImgOne">
              <img class="w100" :src="imgThirteenOne" />
            </div>
            <p>A.Choose the correct modal verbs in the brackets.</p>
            <p v-for="(item,index) in readingTwo[3].value" :key="'brackets' + index"> 
              {{index + 1}}.{{item.stemOne}}
              <input type="text" :disabled="readingTwo[3].isComplete" v-model="item.userAnswer" class="input-bottom-border input-bc-t" @input="saveReadingTwo" style="width:80px">
              <img :src="item.isRight ? correctIcon : errorIcon"  v-if="readingTwo[3].isComplete">
              {{item.stemTwo}} 
            </p>
            <div class="event-header-text-bc pd-5 w100 mt-20"
                v-if="readingTwo[3].isShowAnswer">
                <span>答案:</span>
                <span v-for="(item,index) in readingTwo[3].value" :key="index" class="mr-20">
                    {{index + 1}}.{{  item.answer }}
                </span>
            </div>
            <p>B.Correct the misused modal verbs in the following sentences.</p>
            <p v-for="(item,index) in readingTwo[4].value.slice(0,3)" :key="'sentences' + index">
              {{index + 1}}.
              <span v-html="item.stem"></span>
              <input type="text" :disabled="readingTwo[4].isComplete" v-model="item.userAnswer" class="input-bottom-border input-bc-t" @input="saveReadingTwo" style="width:80px">
              <img :src="item.isRight ? correctIcon : errorIcon"  v-if="readingTwo[4].isComplete">
            </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 v-for="(item,index) in readingTwo[4].value.slice(3,5)" :key="'sentences' + index">
              {{index + 4}}.
              <span v-html="item.stem"></span>
              <input type="text" :disabled="readingTwo[4].isComplete" v-model="item.userAnswer" class="input-bottom-border input-bc-t" @input="saveReadingTwo" style="width:80px">
              <img :src="item.isRight ? correctIcon : errorIcon"  v-if="readingTwo[4].isComplete">
            </p>
            <div class="event-header-text-bc pd-5 w100 mt-20"
                v-if="readingTwo[4].isShowAnswer">
                <span>答案:</span>
                <span v-for="(item,index) in readingTwo[4].value" :key="index" class="mr-20">
                    {{index + 1}}.{{  item.answer }}
                </span>
            </div>
            <div class="w100 fl ju-cn">
              <ul class="fl ju-ev" style="width:80%">
                  <li>
                  <button class="btn-border btn-w" @click="handlereadingTwo">
                      提交
                  </button>
                  </li>
                  <li>
                  <button @click="recastreadingTwo" class="btn-border btn-w">
                      重做
                  </button>
                  </li>
                  <li>
                  <button @click="viewreadingTwo" class="parimary-btn">
                      查看答案
                  </button>
                  </li>
              </ul>
          </div>
            <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>
            <table
              border="1"
              cellpadding="4"
              cellspacing="0"
              style="border-color: #fff"
              class="fz-14"
            >
              <tr class="table-th-bc">
                <td class="tl-cn wh-no">Improper Behavior</td>
                <td class="tl-cn">Talking Loudly</td>
              </tr>
              <tr class="table-tr-bc">
                <td class="tl-cn wh-no">Code of Conduct</td>
                <td style="width: 85%">
                  <p class="table-p">
                    Keep quiet and do not make and receive phone calls.
                  </p>
                  <p class="table-p">Diseuss in the seminar room.</p>
                </td>
              </tr>
              <tr class="table-tr-bc">
                <td>
                  <textarea
                    v-model="noSubmitData[4].value[0].userAnswer"
                    class="w100 table-tr-bc b0 table-textarea textarea-box"
                    @input="savenoSubmitData"
                  ></textarea>
                </td>
                <td>
                  <textarea
                    v-model="noSubmitData[4].value[1].userAnswer"
                    class="w100 table-tr-bc b0 table-textarea"
                    @input="savenoSubmitData"
                  ></textarea>
                </td>
              </tr>
              <tr class="table-tr-bc">
                <td>
                  <textarea
                    v-model="noSubmitData[4].value[2].userAnswer"
                    class="w100 table-tr-bc b0 table-textarea textarea-box"
                    @input="savenoSubmitData"
                  ></textarea>
                </td>
                <td>
                  <textarea
                    v-model="noSubmitData[4].value[3].userAnswer"
                    class="w100 table-tr-bc b0 table-textarea"
                    @input="savenoSubmitData"
                  ></textarea>
                </td>
              </tr>
              <tr class="table-tr-bc">
                <td>
                  <textarea
                    v-model="noSubmitData[4].value[4].userAnswer"
                    class="w100 table-tr-bc b0 table-textarea textarea-box"
                    @input="savenoSubmitData"
                  ></textarea>
                </td>
                <td>
                  <textarea
                    v-model="noSubmitData[4].value[5].userAnswer"
                    class="w100 table-tr-bc b0 table-textarea"
                    @input="savenoSubmitData"
                  ></textarea>
                </td>
              </tr>
              <tr class="table-tr-bc">
                <td>
                  <textarea
                    v-model="noSubmitData[4].value[6].userAnswer"
                    class="w100 table-tr-bc b0 table-textarea textarea-box"
                    @input="savenoSubmitData"
                  ></textarea>
                </td>
                <td>
                  <textarea
                    v-model="noSubmitData[4].value[7].userAnswer"
                    class="w100 table-tr-bc b0 table-textarea"
                    @input="savenoSubmitData"
                  ></textarea>
                </td>
              </tr>
              <tr class="table-tr-bc">
                <td>
                  <textarea
                    v-model="noSubmitData[4].value[8].userAnswer"
                    class="w100 table-tr-bc b0 table-textarea textarea-box"
                    @input="savenoSubmitData"
                  ></textarea>
                </td>
                <td>
                  <textarea
                    v-model="noSubmitData[4].value[9].userAnswer"
                    class="w100 table-tr-bc b0 table-textarea"
                    @input="savenoSubmitData"
                  ></textarea>
                </td>
              </tr>
            </table>
            <div class="resource-primary-border" style="padding: 8px; margin: 5% 0%">
              <div class="banshi openImgBox">
                  <div class="swiper-container swiper_ppt">
                      <div class="swiper-wrapper">
                          <div class="swiper-slide">
                              <div class="imgBox" style="width: 100%; height: 100%">
                                  <img src="../../assets/images/ppt/ppt_01.png" />
                              </div>
                          </div>
                          <div class="swiper-slide">
                              <div class="imgBox" style="width: 100%; height: 100%">
                                  <img src="../../assets/images/ppt/ppt_02.png" />
                              </div>
                          </div>
                          <div class="swiper-slide">
                              <div class="imgBox" style="width: 100%; height: 100%">
                                  <img src="../../assets/images/ppt/ppt_03.png" />
                              </div>
                          </div>
                          <div class="swiper-slide">
                              <div class="imgBox" style="width: 100%; height: 100%">
                                  <img src="../../assets/images/ppt/ppt_04.png" />
                              </div>
                          </div>
                          <div class="swiper-slide">
                              <div class="imgBox" style="width: 100%; height: 100%">
                                  <img src="../../assets/images/ppt/ppt_05.png" />
                              </div>
                          </div>
                          <div class="swiper-slide">
                              <div class="imgBox" style="width: 100%; height: 100%">
                                  <img src="../../assets/images/ppt/ppt_06.png" />
                              </div>
                          </div>
                          <div class="swiper-slide">
                              <div class="imgBox" style="width: 100%; height: 100%">
                                  <img src="../../assets/images/ppt/ppt_07.png" />
                              </div>
                          </div>
                          <div class="swiper-slide">
                              <div class="imgBox" style="width: 100%; height: 100%">
                                  <img src="../../assets/images/ppt/ppt_08.png" />
                              </div>
                          </div>
                          <div class="swiper-slide">
                              <div class="imgBox" style="width: 100%; height: 100%">
                                  <img src="../../assets/images/ppt/ppt_09.png" />
                              </div>
                          </div>
                          <div class="swiper-slide">
                              <div class="imgBox" style="width: 100%; height: 100%">
                                  <img src="../../assets/images/ppt/ppt_10.png" />
                              </div>
                          </div>
                          <div class="swiper-slide">
                              <div class="imgBox" style="width: 100%; height: 100%">
                                  <img src="../../assets/images/ppt/ppt_11.png" />
                              </div>
                          </div>
                          <div class="swiper-slide">
                              <div class="imgBox" style="width: 100%; height: 100%">
                                  <img src="../../assets/images/ppt/ppt_12.png" />
                              </div>
                          </div>
                          <div class="swiper-slide">
                              <div class="imgBox" style="width: 100%; height: 100%">
                                  <img src="../../assets/images/ppt/ppt_13.png" />
                              </div>
                          </div>
                          <div class="swiper-slide">
                              <div class="imgBox" style="width: 100%; height: 100%">
                                  <img src="../../assets/images/ppt/ppt_14.png" />
                              </div>
                          </div>
                          <div class="swiper-slide">
                              <div class="imgBox" style="width: 100%; height: 100%">
                                  <img src="../../assets/images/ppt/ppt_15.png" />
                              </div>
                          </div>
                          <div class="swiper-slide">
                              <div class="imgBox" style="width: 100%; height: 100%">
                                  <img src="../../assets/images/ppt/ppt_16.png" />
                              </div>
                          </div>
                          <div class="swiper-slide">
                              <div class="imgBox" style="width: 100%; height: 100%">
                                  <img src="../../assets/images/ppt/ppt_17.png" />
                              </div>
                          </div>
                          <div class="swiper-slide">
                              <div class="imgBox" style="width: 100%; height: 100%">
                                  <img src="../../assets/images/ppt/ppt_18.png" />
                              </div>
                          </div>
                          <div class="swiper-slide">
                              <div class="imgBox" style="width: 100%; height: 100%">
                                  <img src="../../assets/images/ppt/ppt_19.png" />
                              </div>
                          </div>
                          <div class="swiper-slide">
                              <div class="imgBox" style="width: 100%; height: 100%">
                                  <img src="../../assets/images/ppt/ppt_20.png" />
                              </div>
                          </div>
                          <div class="swiper-slide">
                              <div class="imgBox" style="width: 100%; height: 100%">
                                  <img src="../../assets/images/ppt/ppt_21.png" />
                              </div>
                          </div>
                          <div class="swiper-slide">
                              <div class="imgBox" style="width: 100%; height: 100%">
                                  <img src="../../assets/images/ppt/ppt_22.png" />
                              </div>
                          </div>
                          <div class="swiper-slide">
                              <div class="imgBox" style="width: 100%; height: 100%">
                                  <img src="../../assets/images/ppt/ppt_23.png" />
                              </div>
                          </div>
                          <div class="swiper-slide">
                              <div class="imgBox" style="width: 100%; height: 100%">
                                  <img src="../../assets/images/ppt/ppt_24.png" />
                              </div>
                          </div>
                          <div class="swiper-slide">
                              <div class="imgBox" style="width: 100%; height: 100%">
                                  <img src="../../assets/images/ppt/ppt_25.png" />
                              </div>
                          </div>
                          <div class="swiper-slide">
                              <div class="imgBox" style="width: 100%; height: 100%">
                                  <img src="../../assets/images/ppt/ppt_26.png" />
                              </div>
                          </div>
                          <div class="swiper-slide">
                              <div class="imgBox" style="width: 100%; height: 100%">
                                  <img src="../../assets/images/ppt/ppt_27.png" />
                              </div>
                          </div>
                      </div>
                      <div class="swiper-button-next"></div>
                      <div class="swiper-button-prev"></div>
                      <div class="pageBox"></div>
                  </div>
                  <!-- 显示当前页和总页数的元素 -->
              </div>
            </div>
            <h2 id="b023">
              <img class="img-0" alt="" src="../../assets/images/dy6-le3.jpg" />
            </h2>
            <h3 id="c053" class="fl al-cn">
              <span class="bjh3">Listening</span>
              <!--controlslist="noplaybackrate nodownload"后面的音频框加入这个-->
            </h3>
            <p>
              <b
                >Ⅰ.Listen to the monologue about the perfect workplace and
                decide whether the following statements are true (T) or false
                (F).</b
              >
            </p>
            <audio
                :src="resource.listenTwo"
                controls
                controlslist="noplaybackrate nodownload"
                class="audio"
              ></audio>
            <p v-for="(item,index) in listenThree[0].value" :key="index">
              (
                <select class="select-border" v-model="item.userAnswer" @change="saveListenThree"
                    :disabled="listenThree[0].isComplete">
                    <option v-for="(item, index) in listenThree[0].option" :key="'change' + index" :value="item">
                      {{ item}}
                    </option>
                  </select>
              )
              {{index + 1}}.{{item.stem}}
              <img :src="item.isRight ? correctIcon : errorIcon"  v-if="listenThree[0].isComplete">
            </p>
            <div class="event-header-text-bc pd-5 w100 mt-20"
                v-if="listenThree[0].isShowAnswer">
                <span>答案:</span>
                <span v-for="(item,index) in listenThree[0].value" :key="index" class="mr-20">
                    {{index + 1}}.{{  item.answer }}
                </span>
            </div>
          </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>
            <audio
                :src="resource.listenThree"
                controls
                controlslist="noplaybackrate nodownload"
                class="audio"
              ></audio>
            <table
              border="1"
              cellpadding="4"
              cellspacing="0"
              style="border-color: #fff"
              class="fz-14"
            >
              <tr class="table-tr-bc">
                <td class="tl-cn wh-no table-th-bc">Sally</td>
                <td class="fl de-cl al-cn ju-cn">
                  <img src="../../assets/images/table/c2.jpg" alt="">
                  <dropdown :options="listenThree[1].option" @changeDropdownData="changeDropdownDataOne"  ref="choiceDropdownOne" />
                  <img :src="listenThree[1].value[0].isRight ? correctIcon : errorIcon"  v-if="listenThree[1].isComplete">
                </td>
                <td rowspan="2">
                  <p class="table-p">
                    a. I need to follow the dress code and dress properly for
                    work.
                  </p>
                  <p class="table-p">
                    b. I think dress code is quite necessary to maintain a
                    business formal image.
                  </p>
                  <p class="table-p">
                    c. A neat and pressed business suit with a tie is a great
                    choice for me.
                  </p>
                  <p class="table-p">
                    d. Our boss thinks that casual wear brings inspiration for
                    the job.
                  </p>
                  <p class="table-p">
                    e. I don't have to dress formally for work.
                  </p>
                </td>
              </tr>
              <tr class="table-tr-bc">
                <td class="table-th-bc tl-cn">Ross</td>
                <td class="fl de-cl al-cn ju-cn">
                  <img src="../../assets/images/table/c1.jpg" alt="">
                  <dropdown :options="listenThree[1].option" @changeDropdownData="changeDropdownDataTwo" ref="choiceDropdownTwo" />
                  <img :src="listenThree[1].value[1].isRight ? correctIcon : errorIcon"  v-if="listenThree[1].isComplete">
                </td>
              </tr>
            </table>
            <div class="event-header-text-bc pd-5 w100 mt-20"
                v-if="listenThree[1].isShowAnswer">
                <span>答案:</span>
                <span v-for="(item,index) in listenThree[1].value" :key="index" class="mr-20">
                    {{index + 1}}.{{  arrayToString(item.answer)  }}
                </span>
            </div>
            <div class="w100 fl ju-cn">
                <ul class="fl ju-ev" style="width:80%">
                    <li>
                    <button class="btn-border btn-w" @click="handleListenThree">
                        提交
                    </button>
                    </li>
                    <li>
                    <button @click="recastListenThree" class="btn-border btn-w">
                        重做
                    </button>
                    </li>
                    <li>
                    <button @click="viewListenThree" class="parimary-btn">
                        查看答案
                    </button>
                    </li>
                </ul>
            </div>
            <h3 id="c054"><span class="bjh3">Practical Writing</span></h3>
            <p>Work with your partner to discuss the following questions.</p>
            <ul>
              <li v-for="(item,index) in noSubmitData[5].value" :key="index">
                <p>
                  {{index + 1}}.{{item.stem}}
                  <span class="btn-box" @click="showNoSubmitAnswer(5,index)">
                      <svg xmlns="http://www.w3.org/2000/svg" width="20.501" height="20.501" viewBox="0 0 20.501 20.501">
                      <path class="a"
                          d="M3344.717-15308.5H3337.4a10.186,10.186,0,0,1-7.25-3,10.185,10.185,0,0,1-3-7.25A10.262,10.262,0,0,1,3337.4-15329a10.26,10.26,0,0,1,10.249,10.248,10.129,10.129,0,0,1-2.2,6.341v3.177A.734.734,0,0,1,3344.717-15308.5Zm-9.606-7.29h4.493l.527,1.419c.071.182.156.386.254.608a2.428,2.428,0,0,0,.273.512.986.986,0,0,0,.315.262.971.971,0,0,0,.454.1,1.05,1.05,0,0,0,.773-.327,1.025,1.025,0,0,0,.319-.723,3.3,3.3,0,0,0-.277-1.051l-.062-.161-2.889-7.313c-.119-.321-.228-.607-.335-.873a2.972,2.972,0,0,0-.323-.616,1.56,1.56,0,0,0-.5-.469,1.552,1.552,0,0,0-.781-.181,1.535,1.535,0,0,0-.773.181,1.475,1.475,0,0,0-.5.477,3.674,3.674,0,0,0-.362.739l-.239.627-.054.135-2.824,7.355c-.095.229-.179.46-.25.688a1.529,1.529,0,0,0-.073.477.978.978,0,0,0,.323.72,1.039,1.039,0,0,0,.746.315.838.838,0,0,0,.716-.3,4.676,4.676,0,0,0,.466-.985l.062-.165.527-1.449Zm3.747-1.5h-3.293l1.812-5.124,1.481,5.123Z"
                          transform="translate(-3327.144 15329)" />
                      </svg>
                  </span>
                </p>
                <textarea name="" id="" cols="30" rows="10" v-model="item.userAnswer" class="w100" @input="savenoSubmitData" ></textarea>
                <div class="event-header-text-bc pd-5 w100 mt-20"
                    v-if="item.isShowAnswer">
                    <span>答案:</span>
                    <span v-for="(citem,cindex) in item.answer" :key="'list' + cindex" class="mr-20">
                        {{cindex + 1}}.{{  citem }}
                    </span>
                </div>
              </li>
            </ul>
            <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.
              <span class="btn-box" @click="showNoSubmitAnswer(6,0)">
                  <svg xmlns="http://www.w3.org/2000/svg" width="20.501" height="20.501" viewBox="0 0 20.501 20.501">
                  <path class="a"
                      d="M3344.717-15308.5H3337.4a10.186,10.186,0,0,1-7.25-3,10.185,10.185,0,0,1-3-7.25A10.262,10.262,0,0,1,3337.4-15329a10.26,10.26,0,0,1,10.249,10.248,10.129,10.129,0,0,1-2.2,6.341v3.177A.734.734,0,0,1,3344.717-15308.5Zm-9.606-7.29h4.493l.527,1.419c.071.182.156.386.254.608a2.428,2.428,0,0,0,.273.512.986.986,0,0,0,.315.262.971.971,0,0,0,.454.1,1.05,1.05,0,0,0,.773-.327,1.025,1.025,0,0,0,.319-.723,3.3,3.3,0,0,0-.277-1.051l-.062-.161-2.889-7.313c-.119-.321-.228-.607-.335-.873a2.972,2.972,0,0,0-.323-.616,1.56,1.56,0,0,0-.5-.469,1.552,1.552,0,0,0-.781-.181,1.535,1.535,0,0,0-.773.181,1.475,1.475,0,0,0-.5.477,3.674,3.674,0,0,0-.362.739l-.239.627-.054.135-2.824,7.355c-.095.229-.179.46-.25.688a1.529,1.529,0,0,0-.073.477.978.978,0,0,0,.323.72,1.039,1.039,0,0,0,.746.315.838.838,0,0,0,.716-.3,4.676,4.676,0,0,0,.466-.985l.062-.165.527-1.449Zm3.747-1.5h-3.293l1.812-5.124,1.481,5.123Z"
                      transform="translate(-3327.144 15329)" />
                  </svg>
              </span>
            </p>
            
            <textarea name="" id="" cols="30" rows="10" v-model="noSubmitData[6].value[0].userAnswer" class="w100" @input="savenoSubmitData" ></textarea>
            <div class="event-header-text-bc pd-5 w100 mt-20"
                v-if="noSubmitData[6].value[0].isShowAnswer">
                <span>答案:</span>
                <span v-for="(citem,cindex) in noSubmitData[6].value[0].answer" :key="'list' + cindex" class="mr-20">
                    {{cindex + 1}}.{{  citem }}
                </span>
            </div>
            <p>
              2.<img
                class="inline1"
                alt=""
                src="../../assets/images/0123-1.jpg"
              />
              the attendees.
              <span class="btn-box" @click="showNoSubmitAnswer(6,1)">
                  <svg xmlns="http://www.w3.org/2000/svg" width="20.501" height="20.501" viewBox="0 0 20.501 20.501">
                  <path class="a"
                      d="M3344.717-15308.5H3337.4a10.186,10.186,0,0,1-7.25-3,10.185,10.185,0,0,1-3-7.25A10.262,10.262,0,0,1,3337.4-15329a10.26,10.26,0,0,1,10.249,10.248,10.129,10.129,0,0,1-2.2,6.341v3.177A.734.734,0,0,1,3344.717-15308.5Zm-9.606-7.29h4.493l.527,1.419c.071.182.156.386.254.608a2.428,2.428,0,0,0,.273.512.986.986,0,0,0,.315.262.971.971,0,0,0,.454.1,1.05,1.05,0,0,0,.773-.327,1.025,1.025,0,0,0,.319-.723,3.3,3.3,0,0,0-.277-1.051l-.062-.161-2.889-7.313c-.119-.321-.228-.607-.335-.873a2.972,2.972,0,0,0-.323-.616,1.56,1.56,0,0,0-.5-.469,1.552,1.552,0,0,0-.781-.181,1.535,1.535,0,0,0-.773.181,1.475,1.475,0,0,0-.5.477,3.674,3.674,0,0,0-.362.739l-.239.627-.054.135-2.824,7.355c-.095.229-.179.46-.25.688a1.529,1.529,0,0,0-.073.477.978.978,0,0,0,.323.72,1.039,1.039,0,0,0,.746.315.838.838,0,0,0,.716-.3,4.676,4.676,0,0,0,.466-.985l.062-.165.527-1.449Zm3.747-1.5h-3.293l1.812-5.124,1.481,5.123Z"
                      transform="translate(-3327.144 15329)" />
                  </svg>
              </span>
            </p>
            <textarea name="" id="" cols="30" rows="10" v-model="noSubmitData[6].value[1].userAnswer" class="w100" @input="savenoSubmitData" ></textarea>
            <div class="event-header-text-bc pd-5 w100 mt-20"
                v-if="noSubmitData[6].value[1].isShowAnswer">
                <span>答案:</span>
                <span v-for="(citem,cindex) in noSubmitData[6].value[1].answer" :key="'list' + cindex" class="mr-20">
                    {{cindex + 1}}.{{  citem }}
                </span>
            </div>
            <p>3.Summarize the main points discussed at the meeting.
              <span class="btn-box" @click="showNoSubmitAnswer(6,2)">
                  <svg xmlns="http://www.w3.org/2000/svg" width="20.501" height="20.501" viewBox="0 0 20.501 20.501">
                  <path class="a"
                      d="M3344.717-15308.5H3337.4a10.186,10.186,0,0,1-7.25-3,10.185,10.185,0,0,1-3-7.25A10.262,10.262,0,0,1,3337.4-15329a10.26,10.26,0,0,1,10.249,10.248,10.129,10.129,0,0,1-2.2,6.341v3.177A.734.734,0,0,1,3344.717-15308.5Zm-9.606-7.29h4.493l.527,1.419c.071.182.156.386.254.608a2.428,2.428,0,0,0,.273.512.986.986,0,0,0,.315.262.971.971,0,0,0,.454.1,1.05,1.05,0,0,0,.773-.327,1.025,1.025,0,0,0,.319-.723,3.3,3.3,0,0,0-.277-1.051l-.062-.161-2.889-7.313c-.119-.321-.228-.607-.335-.873a2.972,2.972,0,0,0-.323-.616,1.56,1.56,0,0,0-.5-.469,1.552,1.552,0,0,0-.781-.181,1.535,1.535,0,0,0-.773.181,1.475,1.475,0,0,0-.5.477,3.674,3.674,0,0,0-.362.739l-.239.627-.054.135-2.824,7.355c-.095.229-.179.46-.25.688a1.529,1.529,0,0,0-.073.477.978.978,0,0,0,.323.72,1.039,1.039,0,0,0,.746.315.838.838,0,0,0,.716-.3,4.676,4.676,0,0,0,.466-.985l.062-.165.527-1.449Zm3.747-1.5h-3.293l1.812-5.124,1.481,5.123Z"
                      transform="translate(-3327.144 15329)" />
                  </svg>
              </span>
            </p>
            <textarea name="" id="" cols="30" rows="10" v-model="noSubmitData[6].value[2].userAnswer" class="w100" @input="savenoSubmitData" ></textarea>
            <div class="event-header-text-bc pd-5 w100 mt-20"
                v-if="noSubmitData[6].value[2].isShowAnswer">
                <span>答案:</span>
                <span v-for="(citem,cindex) in noSubmitData[6].value[2].answer" :key="'list' + cindex" class="mr-20">
                    {{cindex + 1}}.{{  citem }}
                </span>
            </div>
            <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>
            <matching :rawData="rawData" :question="question" />
            <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>
            <table
              border="1"
              cellpadding="4"
              cellspacing="0"
              style="border-color: #fff"
              class="fz-14"
            >
              <tr class="table-th-bc">
                <td class="tl-cn" style="width: 86%">Interviewees</td>
                <td class="tl-cn">Presented By</td>
              </tr>
              <tr class="table-tr-bc">
                <td class="tl-cn">
                  <p class="table-p">
                    Introduce the briefing of the training program;
                  </p>
                  <p class="table-p">
                    vote to approve the budget plan of the training.
                  </p>
                </td>
                <td>Tim Shaw</td>
              </tr>
              <tr class="table-tr-bc">
                <td>
                  <p class="table-p">
                    Reserve the lecture hall for the training;
                  </p>
                  <p class="table-p">ensure the multimedia equipment works.</p>
                </td>
                <td>James Lee</td>
              </tr>
            </table>
          </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="weekly" style="padding:0 20px">
               <p class="weekly-p">
                I.MEETING DETAILS
               </p>
               <ul class="fl fw-wr ju-bt" >
                <li>
                  <p>Meeting Leader: Samuel Birch</p>
                  <p>Date: September 26,2023</p>
                  <p>Location: Room 202</p>
                </li>
                <li>
                  <p>Note Taker: Rachel Green</p>
                  <p>Time: 3 p. m.</p>
                </li>
               </ul>
               <p class="weekly-p">
                Ⅱ.ATTENDANCE
               </p>
               <p>Present: Samuel Birch, Tim Shaw, James Lee, Rachel Green</p>
               <p>Absent: None</p>
               <p class="weekly-p">
                Ⅲ.CALLTO ORDER
               </p>
               <p>
                Samuel Birch called the meeting to 1.
                <input type="text"  v-model="noSubmitData[7].value[0].userAnswer" class="input-bottom-border input-bc-t" @input="savenoSubmitData" style="width:80px"> 
                at 3 p.m.
               </p>
               <p>
                All attendees were given an agenda 2.
                <input type="text"  v-model="noSubmitData[7].value[1].userAnswer" class="input-bottom-border input-bc-t" @input="savenoSubmitData" style="width:120px"> 
                via email. The agenda was
                unanimously approved by all attendees at 3:20 p.m.
               </p>
               <p class="weekly-p">
                Ⅳ.BUSINESS DISCUSSED
               </p>
               <p>
                Tim Shaw discussed about the 3.
                <input type="text"  v-model="noSubmitData[7].value[2].userAnswer" class="input-bottom-border input-bc-t" @input="savenoSubmitData" style="width:180px"> 
                .A vote was
                taken to approve the budget plan of the training.
               </p>
               <p>
                4.
                <input type="text"  v-model="noSubmitData[7].value[3].userAnswer" class="input-bottom-border input-bc-t" @input="savenoSubmitData" style="width:80px"> 
                discussed about the reservation of the lecture hall and mentioned that the
                projector wasn't 5.
                <input type="text"  v-model="noSubmitData[7].value[4].userAnswer" class="input-bottom-border input-bc-t" @input="savenoSubmitData" style="width:80px"> 
                He suggested renting one
               </p>
               <p class="weekly-p">
                Ⅴ.ADJOURNMENT
               </p>
               <p>
                The meeting 6.
                <input type="text"  v-model="noSubmitData[7].value[5].userAnswer" class="input-bottom-border input-bc-t" @input="savenoSubmitData" style="width:80px"> 
                at 5 p.m..
               </p>
               <p class="fl fw-wr ju-bt" >
                <span>Submitted by: Rachel Green</span>
                <span>Approved by: Samuel Birch</span>
               </p>
            </div>
            <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>
            <table
              border="1"
              cellpadding="4"
              cellspacing="0"
              style="border-color: #fff"
              class="fz-14"
            >
              <tr class="table-th-bc">
                <td class="tl-cn">Pictures</td>
                <td class="tl-cn">Problems</td>
                <td class="tl-cn wh-no">Measures for Improvement</td>
                <td class="tl-cn">Reasons for Improvement</td>
              </tr>
              <tr class="table-tr-bc">
                <td class="tl-cn">1</td>
                <td class="tl-lf">
                  The documents are scattered messily on the desk.
                </td>
                <td class="tl-lf">
                  Organize the documents into different categories.
                </td>
                <td class="tl-lf">
                  It is easier for us to locate specific documents if we sort
                  them into categories.
                </td>
              </tr>
              <tr class="table-tr-bc">
                <td class="tl-cn">2</td>
                <td>
                  <textarea
                    v-model="noSubmitData[8].value[0].userAnswer"
                    class="w100 table-tr-bc b0 table-textarea"
                    @input="savenoSubmitData"
                  ></textarea>
                </td>
                <td>
                  <textarea
                    v-model="noSubmitData[8].value[1].userAnswer"
                    class="w100 table-tr-bc b0 table-textarea"
                    @input="savenoSubmitData"
                  ></textarea>
                </td>
                <td>
                  <textarea
                    v-model="noSubmitData[8].value[2].userAnswer"
                    class="w100 table-tr-bc b0 table-textarea"
                    @input="savenoSubmitData"
                  ></textarea>
                </td>
              </tr>
              <tr class="table-tr-bc">
                <td class="tl-cn">3</td>
                <td>
                  <textarea
                    v-model="noSubmitData[8].value[3].userAnswer"
                    class="w100 table-tr-bc b0 table-textarea"
                    @input="savenoSubmitData"
                  ></textarea>
                </td>
                <td>
                  <textarea
                    v-model="noSubmitData[8].value[4].userAnswer"
                    class="w100 table-tr-bc b0 table-textarea"
                    @input="savenoSubmitData"
                  ></textarea>
                </td>
                <td>
                  <textarea
                    v-model="noSubmitData[8].value[5].userAnswer"
                    class="w100 table-tr-bc b0 table-textarea"
                    @input="savenoSubmitData"
                  ></textarea>
                </td>
              </tr>
            </table>
          </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>
            <table
              border="1"
              cellpadding="4"
              cellspacing="0"
              style="border-color: #fff"
              class="fz-14"
            >
              <tr class="table-th-bc">
                <td class="tl-cn">Respondents</td>
                <td class="tl-cn">Problems</td>
                <td class="tl-cn wh-no">Measures for Improvement</td>
                <td class="tl-cn">Reasons for lmprovement</td>
              </tr>
              <tr class="table-tr-bc">
                <td class="tl-cn">
                  <textarea
                    v-model="noSubmitData[9].value[0].userAnswer"
                    class="w100 table-tr-bc b0 table-textarea"
                    @input="savenoSubmitData"
                  ></textarea>
                </td>
                <td class="tl-lf">
                  <textarea
                    v-model="noSubmitData[9].value[1].userAnswer"
                    class="w100 table-tr-bc b0 table-textarea"
                    @input="savenoSubmitData"
                  ></textarea>
                </td>
                <td class="tl-lf">
                  <textarea
                    v-model="noSubmitData[9].value[2].userAnswer"
                    class="w100 table-tr-bc b0 table-textarea"
                    @input="savenoSubmitData"
                  ></textarea>
                </td>
                <td class="tl-lf">
                  <textarea
                    v-model="noSubmitData[9].value[3].userAnswer"
                    class="w100 table-tr-bc b0 table-textarea"
                    @input="savenoSubmitData"
                  ></textarea>
                </td>
              </tr>
              <tr class="table-tr-bc">
                <td class="tl-cn">
                  <textarea
                    v-model="noSubmitData[9].value[4].userAnswer"
                    class="w100 table-tr-bc b0 table-textarea"
                    @input="savenoSubmitData"
                  ></textarea>
                </td>
                <td>
                  <textarea
                    v-model="noSubmitData[9].value[5].userAnswer"
                    class="w100 table-tr-bc b0 table-textarea"
                    @input="savenoSubmitData"
                  ></textarea>
                </td>
                <td>
                  <textarea
                    v-model="noSubmitData[9].value[6].userAnswer"
                    class="w100 table-tr-bc b0 table-textarea"
                    @input="savenoSubmitData"
                  ></textarea>
                </td>
                <td>
                  <textarea
                    v-model="noSubmitData[9].value[7].userAnswer"
                    class="w100 table-tr-bc b0 table-textarea"
                    @input="savenoSubmitData"
                  ></textarea>
                </td>
              </tr>
              <tr class="table-tr-bc">
                <td class="tl-cn">
                  <textarea
                    v-model="noSubmitData[9].value[8].userAnswer"
                    class="w100 table-tr-bc b0 table-textarea"
                    @input="savenoSubmitData"
                  ></textarea>
                </td>
                <td>
                  <textarea
                    v-model="noSubmitData[9].value[9].userAnswer"
                    class="w100 table-tr-bc b0 table-textarea"
                    @input="savenoSubmitData"
                  ></textarea>
                </td>
                <td>
                  <textarea
                    v-model="noSubmitData[9].value[10].userAnswer"
                    class="w100 table-tr-bc b0 table-textarea"
                    @input="savenoSubmitData"
                  ></textarea>
                </td>
                <td>
                  <textarea
                    v-model="noSubmitData[9].value[11].userAnswer"
                    class="w100 table-tr-bc b0 table-textarea"
                    @input="savenoSubmitData"
                  ></textarea>
                </td>
              </tr>
            </table>
            <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 class="resource-primary-border" style="padding: 8px; margin: 5% 0%">
                            <div class="banshi openImgBox">
                                <div class="swiper-container swiper_ppt">
                                    <div class="swiper-wrapper">
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_01.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_02.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_03.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_04.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_05.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_06.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_07.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_08.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_09.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_10.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_11.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_12.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_13.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_14.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_15.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_16.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_17.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_18.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_19.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_20.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_21.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_22.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_23.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_24.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_25.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_26.png" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/ppt_27.png" />
                                            </div>
                                        </div>
                                    </div>
                                    <div class="swiper-button-next"></div>
                                    <div class="swiper-button-prev"></div>
                                    <div class="pageBox"></div>
                                </div>
                                <!-- 显示当前页和总页数的元素 -->
                            </div>
                        </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 dropdown from '@/components/dropdown/index.vue'
import { getResourcePath } from "@/assets/methods/resources";
export default {
  name: "chapterSix",
  components: { matching,dropdown },
  props: {
    showPageList: {
      type: Array,
    },
  },
  data() {
    return {
      imgThirteen: require("../../assets/images/grammar6-1.png"),
      imgThirteenOne: require("../../assets/images/grammar6-2.png"),
      correctIcon:require('@/assets/images/correct.svg'),
      errorIcon:require('@/assets/images/error.svg'),
      showImg: false,
      showImgOne: false,
      rawData: {
        left: [
          {
            oldId: "FB34",
            txt: "1.Mr.Green called the meeting to order at 10:00 a.m.",
          },
          {
            oldId: "64D6",
            txt: "2.A vote was taken to approve the amended Code of Conduct for employees.",
          },
          {
            oldId: "2ED4",
            txt: "3.The meeting agenda was unanimously approved by all attendees.",
          },
          {
            oldId: "44DE",
            txt: "4.The meeting adjourned at 5:00 p.m.",
          },
          {
            oldId: "88ND",
            txt: "5.All attendees were given an agenda prior to the meeting via email.",
          },
        ],
        right: [
          {
            oldId: "64D6",
            txt: "a.投票同意修订后的《员工行为守则》。",
          },
          {
            oldId: "FB34",
            txt: "b.格林先生于上午10点宣布会议开始。",
          },
          {
            oldId: "44DE",
            txt: "c.下午5点休会。",
          },
          {
            oldId: "2ED4",
            txt: "d.全体参会人员一致同意本次会议事项。",
          },
          {
            oldId: "88ND",
            txt: "e.会议前已通过邮件将会议事项发给了全体参会人员。",
          },
        ],
      },
      value: [],
      question: {
        KnowledgePoint: "123",
        analysis: "123",
        answer: [
          {
            id: "FB34",
            linkValue:
              "b.格林先生于上午10点宣布会议开始。",
            value: "1.Mr.Green called the meeting to order at 10:00 a.m.",
          },
          {
            id: "64D6",
            linkValue:
              "a.投票同意修订后的《员工行为守则》。",
            value: "2.A vote was taken to approve the amended Code of Conduct for employees.",
          },
          {
            id: "2ED4",
            linkValue:
              "d.全体参会人员一致同意本次会议事项。",
            value: "3.The meeting agenda was unanimously approved by all attendees.",
          },
          {
            id: "44DE",
            linkValue:
              "c.下午5点休会。",
            value: "4.The meeting adjourned at 5:00 p.m.",
          },
          {
            id: "88ND",
            linkValue:
              "e.会议前已通过邮件将会议事项发给了全体参会人员。",
            value: "5.All attendees were given an agenda prior to the meeting via email.",
          },
        ],
        optionStyle: undefined,
        id: 489306,
        options: {
          linkValues: [
            {
              oldId: "64D6",
              txt: "a.投票同意修订后的《员工行为守则》。",
            },
            {
              oldId: "FB34",
              txt: "b.格林先生于上午10点宣布会议开始。",
            },
            {
              oldId: "44DE",
              txt: "c.下午5点休会。",
            },
            {
              oldId: "2ED4",
              txt: "d.全体参会人员一致同意本次会议事项。",
            },
            {
              oldId: "88ND",
              txt: "e.会议前已通过邮件将会议事项发给了全体参会人员。",
            },
          ],
          values: [
            {
              oldId: "FB34",
              txt: "1.Mr.Green called the meeting to order at 10:00 a.m.",
            },
            {
              oldId: "64D6",
              txt: "2.A vote was taken to approve the amended Code of Conduct for employees.",
            },
            {
              oldId: "2ED4",
              txt: "3.The meeting agenda was unanimously approved by all attendees.",
            },
            {
              oldId: "44DE",
              txt: "4.The meeting adjourned at 5:00 p.m.",
            },
            {
              oldId: "88ND",
              txt: "5.All attendees were given an agenda prior to the meeting via email.",
            },
          ],
        },
        questionType: "matching",
        stem: {
          stemTxt: "按顺序连线",
        },
        stemStyle: undefined,
        titleDescription: "1",
        userChoise: [],
        value: [],
        answerImg: require("../../assets/images/matching-9.jpg"),
      },
      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: "",
          eight: "",
          nine: "",
          ten: "",
          eleven: "",
          twelve: "",
          thirteen: "",
          fourteen: "",
          fifteen: "",
          sixteen: "",
          seventeen: "",
          eighteen: "",
          nineteen: "",
          twenty: "",
          twentyOne: "",
          twentyTwo: "",
          twentyThree: "",
          twentyFour: "",
          twentyFive: "",
          twentySix: "",
          twentySeven: "",
          twentyEight: "",
          twentyNine: "",
          thirty: "",
          thirtyOne: "",
          thirtyTwo: "",
          thirtyThree: "",
          thirtyFour: "",
          thirtyFive: "",
          thirtySix: "",
          thirtySeven: "",
          thirtyEight: "",
          thirtyNine: "",
          forty: "",
          fortyOne: "",
        },
      },
      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: "",
        readingThree: "",
        readingFour: "",
        listenTwo: "",
        listenThree: "",
      },
      // 新增
      dropDownOne:[
        {
          type:'dropdown',
          isComplete:false,
          isShowAnswer:false,
          option:[
            'open plan office','cubicles','private office','SOHO'
          ],
          value:[
            {
              answer:"cubicles",
              userAnswer:"",
              isRight:"",
            },
            {
              answer:"open plan office",
              userAnswer:"",
              isRight:"",
            },
            {
              answer:"private office",
              userAnswer:"",
              isRight:"",
            },
            {
              answer:"SOHO",
              userAnswer:"",
              isRight:"",
            },
          ]
        }
      ],
      listenTable:[
        {
          type:'fill',
          isComplete:false,
          isShowAnswer:false,
          value:[
            {
              answer:'team',
              userAnswer:'',
              isRight:null
            },
            {
              answer:'communication',
              userAnswer:'',
              isRight:null
            },
            {
              answer:'understanding',
              userAnswer:'',
              isRight:null
            },
            {
              answer:'development',
              userAnswer:'',
              isRight:null
            },
            {
              answer:'respect',
              userAnswer:'',
              isRight:null
            },
          ]
        }
      ],
      noSubmitData:[
        {
          type:'shortAnswer',
          value:[
            {
              stem:'caring',
              userAnswer:''
            },
            {
              stem:'supportive',
              userAnswer:''
            },
            {
              stem:'privacy',
              userAnswer:''
            },
            {
              stem:'friendly',
              userAnswer:''
            },
            {
              stem:'freedom',
              userAnswer:''
            },
            {
              stem:'flexible',
              userAnswer:''
            },
          ]
        },
        {
          type:'shortAnswer',
          value:[
            {
              userAnswer:'',
              answer:'A positive work environment is characterized by factors like supportive colleagues, a respectful atmosphere, open communication, opportunities for growth, and a comfortable physical setting. It promotes collaboration, job satisfaction, and employee well-being.',
              isShowAnswer:false
            },
            {
              userAnswer:'',
              answer:'People tend to be more productive in a positive work environment because they feel motivated, valued, and empowered. When they enjoy their workplace, they are more likely to be engaged, contribute ideas, and work together effectively, leading to increased efficiency and better results.',
              isShowAnswer:false
            },
          ]
        },
        {
          type:'table',
          value:[
            {
              userAnswer:''
            },
            {
              userAnswer:''
            },
            {
              userAnswer:''
            },
            {
              userAnswer:''
            },
            {
              userAnswer:''
            },
            {
              userAnswer:''
            },
            {
              userAnswer:''
            },
            {
              userAnswer:''
            },
            {
              userAnswer:''
            },
            {
              userAnswer:''
            },
          ]
        },
        {
          type:'shortAnswer',
          isComplete:false,
          isShowAnswer:false,
          value:[
            {
              stem:'How do you understand the Chinese saying “Nothing can be accomplished without norms or standards.”?',
              answer:'The saying "Nothing can be accomplished without norms or standards" means that having rules and guidelines is important for getting things done. These norms make things clear, help us work well together, and show us how to do things right.',
              isShowAnswer:false,
              userAnswer:''
            },
            {
              stem:'Are rules and regulations important for an organization? Why?',
              answer:'Rules and regulations are very important for an organization. They play a crucial role in maintaining order, promoting fairness, and ensuring the success of the organization. ',
              isShowAnswer:false,
              userAnswer:''
            }
          ]
        },
        {
          type:'table',
          value:[
            {
              userAnswer:''
            },
            {
              userAnswer:''
            },
            {
              userAnswer:''
            },
            {
              userAnswer:''
            },
            {
              userAnswer:''
            },
            {
              userAnswer:''
            },
            {
              userAnswer:''
            },
            {
              userAnswer:''
            },
            {
              userAnswer:''
            },
            {
              userAnswer:''
            },
          ]
        },
        {
          type:"shortAnswer",
          value:[
            {
              stem:'Why do we need to take the minutes?',
              isShowAnswer:false,
              answer:['It serves as an official record of the discussions, decisions, and actions taken during the meeting.',
                'Minutes help those who were unable to attend the meeting to catch up on any decisions.',
                'Minutes provide a means to verify the accuracy of what was discussed and agreed upon.',
                'Minutes can be used as evidence in case of disputes or legal matters.'
              ],
              userAnswer:''
            },
            {
              stem:'What should we take down in the minutes?',
              isShowAnswer:false,
              answer:['Date and time','Location of the meeting',"Attendees' names, roles, and organizations","The agenda items and topics discussed along with any proposals, suggestions, or decisions made"],
              userAnswer:''
            }
          ]
        },
        {
          type:'shortAnswer',
          value:[
            {
              isShowAnswer:false,
              userAnswer:'',
              answer:['Date: September 19, 2023','Time: 2:00 p.m.','Location: FASTGO Headquarters, Meeting Room 105'],
            },
            {
              isShowAnswer:false,
              userAnswer:'',
              answer:['Present: Jim Baker (CEO), Robert Smith (General Manager), Samuel Birch (HR Manager), Rachel Green (Secretary)',
              ''],
            },
            {
              isShowAnswer:false,
              userAnswer:'',
              answer:['Updates of Code of Conduct ','In-Service Training ']
            }
          ]
        },
        {
          type:'fill',
          value:[
            {
              userAnswer:''
            },
            {
              userAnswer:''
            },
            {
              userAnswer:''
            },
            {
              userAnswer:''
            },
            {
              userAnswer:''
            },
            {
              userAnswer:''
            },
          ]
        },
        {
          type:'table',
          value:[
            {
              userAnswer:''
            },
            {
              userAnswer:''
            },
            {
              userAnswer:''
            },
            {
              userAnswer:''
            },
            {
              userAnswer:''
            },
            {
              userAnswer:''
            },
          ]
        },
        {
          type:'table',
          value:[
            {
              userAnswer:''
            },
            {
              userAnswer:''
            },
            {
              userAnswer:''
            },
            {
              userAnswer:''
            },
            {
              userAnswer:''
            },
            {
              userAnswer:''
            },
            {
              userAnswer:''
            },
            {
              userAnswer:''
            },
            {
              userAnswer:''
            },
            {
              userAnswer:''
            },
            {
              userAnswer:''
            },
            {
              userAnswer:''
            },
          ]
        }
      ],
      readingOne:[
        {
          type:'checkbox',
          isComplete:false,
          isShowAnswer:false,
          option:['Company culture','Personal development','Relationship with colleagues','Salary','Café','Leaders'],
          value:[
            {
              userAnswer:[]
            }
          ]
        },
        {
          type:'table',
          isComplete:false,
          isShowAnswer:false,
          value:[
            {
              userAnswerOne:'',
              userAnswerTwo:'',
            },
            {
              userAnswerOne:'',
              userAnswerTwo:'',
            },
            {
              userAnswerOne:'',
              userAnswerTwo:'',
            },
          ]
        },
        {
          type:'fill',
          isComplete:false,
          isShowAnswer:false,
          value:[
            {
              stemFirst:'Aside from the job p',
              stemLast:'itself,one factor that is significantly influencing how employees feel about work is the work environment.',
              answer:'rospect',
              userAnswer:'',
              isRight:null
            },
            {
              stemFirst:'To f',
              stemLast:'a positive work environment,the employer can motivate employees for a correct behavioral approach.',
              answer:'oster',
              userAnswer:'',
              isRight:null
            },
            {
              stemFirst:'Good behavior can not only d',
              stemLast:'a good and peaceful environment,but also promote healthy relationships among the staff.',
              answer:'etermine',
              userAnswer:'',
              isRight:null
            },
            {
              stemFirst:'Another way to ensure a great work environment in a company is to show a',
              stemLast:'to outstanding employees.',
              answer:'ppreciation',
              userAnswer:'',
              isRight:null
            },
            {
              stemFirst:'For employees,a positive work environment can greatly improve their happiness and p',
              stemLast:'.',
              answer:'roductivity',
              userAnswer:'',
              isRight:null
            },
          ]
        },
        {
          type:'fill',
          isComplete:false,
          isShowAnswer:false,
          value:[
            {
              stem:'The manager asked me to<span class="u">pay close attention to</span> the monthly sales report of the products.',
              userAnswer:'',
              answer:'keep an eye on',
              isRight:null
            },
            {
              stem:'<span class="u">Except for</span> the low salary,it’s not a bad job.',
              userAnswer:'',
              answer:'Apart from',
              isRight:null
            },
            {
              stem:'The management team <span class="u">noticed</span> some inappropriate behavior in the company.',
              userAnswer:'',
              answer:'was aware of',
              isRight:null
            },
            {
              stem:'The graduates with a language proficiency certificate <span class="u">are more possible to</span> land a good job.',
              userAnswer:'',
              answer:'are likely to',
              isRight:null
            },
            {
              stem:'I will <span class="u">help you because you have helped me</span> some time.',
              userAnswer:'',
              answer:'return the favor',
              isRight:null
            },
          ]
        },
        {
          type:'translate',
          isShowAnswer:false,
          isComplete:false,
          value:[
            {
              stem:'Communication is quite necessary to ensure a healthy relationship with coworkers.',
              userAnswer:'',
            },
            {
              stem:'A good work atmosphere can greatly increase the productivity of employees.',
              userAnswer:'',
            },
            {
              stem:'Most of the candidates view company culture as the most important factor when choosing a job.',
              userAnswer:'',
            },
            {
              stem:'At the annual meeting,the manager expressed the appreciation to the outstanding staff of the company.',
              userAnswer:'',
            },
          ]
        },
        {
          type:'radio',
          isComplete:false,
          isShowAnswer:false,
          value:[
            {
              stem:'公交车来了。',
              option:[
                {
                  label:'There comes the bus.',
                  value:'a',
                },
                {
                  label:'There the bus comes.',
                  value:'b'
                }
              ],
              answer:'',
              userAnswer:''
            },
            {
              stem:'发达国家制定规则、其他国家服从的时代已经过去了。',
              option:[
                {
                  label:'Gone are the days when rich countries make the rules and everyone else follows.',
                  value:'a',
                },
                {
                  label:'Gone the days are when rich countries make the rules and everyone else follows.',
                  value:'b'
                }
              ],
              answer:'',
              userAnswer:''
            },
            {
              stem:'我们刚到机场,飞机就起飞了。',
              option:[
                {
                  label:'No sooner did we reached the airport than the plane had taken off.',
                  value:'a',
                },
                {
                  label:'No sooner had we reached the airport than the plane took off.',
                  value:'b'
                }
              ],
              answer:'',
              userAnswer:''
            },
            {
              stem:'到那时他才意识到他错了。',
              option:[
                {
                  label:'Only then he realized that he was wrong.',
                  value:'a',
                },
                {
                  label:'Only then did he realize that he was wrong.',
                  value:'b'
                }
              ],
              answer:'',
              userAnswer:''
            },
            {
              stem:'雨停了之后他才离开房间。',
              option:[
                {
                  label:'Not until the rain stopped did he leave the room.',
                  value:'a',
                },
                {
                  label:'Not until did the rain stop he left the room.',
                  value:'b'
                }
              ],
              answer:'',
              userAnswer:''
            },
          ]
        },
        {
          type:'montage',
          isComplete:false,
          isShowAnswer:false,
          value:[
            {
              stem:'did he it saw so and I',
              userAnswer:''
            },
            {
              stem:'he young is he a lot knows as',
              userAnswer:''
            },
            {
              stem:'no under will lend circumstances I money him to',
              userAnswer:''
            },
            {
              stem:'she have hardly music listen to does time to',
              userAnswer:''
            },
            {
              stem:'village in the front of river a was',
              userAnswer:''
            },
          ]
        }
      ],
      dropDownTwo:[
        {
          type:'dropdown',
          isShowAnswer:false,
          option:[
            'a.Students are supposed to arrive at the classroom on time.',
            'b.Students are required to come to school in a neat uniform.',
            'c.Students should treat others with respect.',
            'd.Keep food and drink outside of the classroom.',
            'e.Mobile phones must be on silent mode during the class.'
          ],
          value:[
            {
              answer:'a.Students are supposed to arrive at the classroom on time.',
              userAnswer:'',
              isRight:null,
            },
            {
              answer:'d.Keep food and drink outside of the classroom.',
              userAnswer:'',
              isRight:null,
            },
            {
              answer:'c.Students should treat others with respect.',
              userAnswer:'',
              isRight:null,
            },
            {
              answer:'b.Students are required to come to school in a neat uniform.',
              userAnswer:'',
              isRight:null,
            },
            {
              answer:'e.Mobile phones must be on silent mode during the class.',
              userAnswer:'',
              isRight:null,
            },
          ]
        }
      ],
      dropDownThree:[
        {
          type:'dropdown',
          isShowAnswer:false,
          option:[
            'a.BEST INTEREST OF CLIENTS',
            'b.INTEGRITY',
            'c.COLLABORATIVE',
            'd.STANDARDS OF SERVICES',
            'e.REWARDING'
          ],
          value:[
            {
              answer:'b.INTEGRITY',
              userAnswer:'',
              isRight:null,
            },
            {
              answer:'a.BEST INTEREST OF CLIENTS',
              userAnswer:'',
              isRight:null,
            },
            {
              answer:'d.STANDARDS OF SERVICES',
              userAnswer:'',
              isRight:null,
            },
          ]
        }
      ],
      readingTwo:[
        {
          type:'checkbox',
          isComplete:false,
          isRight:false,
          option:[
            'Observe the employee handbook strictly.',
            'Get involved in activities inconsistent with company values.',
            'Never leak personal information of the client.',
            'Advertise products and services in a professional way.',
            'Judge customers by appearance.',
            'Always give priority to clients’ interests.'
          ],
          value:[
            {
              userAnswer:[]
            }
          ]
        },
        {
          type:'fill',
          isComplete:false,
          isShowAnswer:false,
          value:[
            {
              stem:'We may feel cheated when finding the report is actually false.',
              answer:'misleading',
              userAnswer:'',
              isRight:null
            },
            {
              stem:'A true partnership is a two-way street,and our customers embrace this philosophy.',
              answer:'clients',
              userAnswer:'',
              isRight:null
            },
            {
              stem:'The disagreements at the workplace need to be resolved in a timely and professional manner.',
              answer:'conflicts',
              userAnswer:'',
              isRight:null
            },
            {
              stem:'The company’s image is the reflection of its culture.',
              answer:'reputation',
              userAnswer:'',
              isRight:null
            },
            {
              stem:'All the staff are required to follow the company code of conduct.',
              answer:'observe',
              userAnswer:'',
              isRight:null
            },
          ]
        },
        {
          type:'fill',
          isComplete:false,
          isShowAnswer:false,
          value:[
            {
              stemOne:'The manager asked the intern to',
              stemTwo:'the data and draft a report.',
              answer:'dig into',
              userAnswer:'',
              isRight:null
            },
            {
              stemOne:'A firm must',
              stemTwo:'the interests of its customers and treat them fairly.',
              answer:'pay due regard to',
              userAnswer:'',
              isRight:null
            },
            {
              stemOne:'The newly-recruited staff were asked to',
              stemTwo:'the routine meeting on Monday.',
              answer:'engage in',
              userAnswer:'',
              isRight:null
            },
            {
              stemOne:'',
              stemTwo:',you shouldn’t give up without trying.',
              answer:'Above all',
              userAnswer:'',
              isRight:null
            },
            {
              stemOne:'She made a speech,',
              stemTwo:'the sales department,at the annual meeting of the corporation.',
              answer:'on behalf of',
              userAnswer:'',
              isRight:null
            },
          ]
        },
        {
          type:'fill',
          isComplete:false,
          isShowAnswer:false,
          value:[
            {
              stemOne:'It’s 9 o’clock in the evening.He',
              stemTwo:'(can/could) still be at the office.He is a workaholic.',
              answer:'could',
              userAnswer:'',
              isRight:null
            },
            {
              stemOne:'You should introduce yourself; your client',
              stemTwo:'(can/may) not remember you.',
              answer:'may',
              userAnswer:'',
              isRight:null
            },
            {
              stemOne:'I thought he',
              stemTwo:'(can/might) have a meeting with his team.',
              answer:'might',
              userAnswer:'',
              isRight:null
            },
            {
              stemOne:'The customer',
              stemTwo:'(can/may) be very difficult to deal with when he is in a bad mood.',
              answer:'can',
              userAnswer:'',
              isRight:null
            },
            {
              stemOne:'There is a slim chance that we',
              stemTwo:'(can/might) take a rest this weekend.',
              answer:'might',
              userAnswer:'',
              isRight:null
            },
          ]
        },
        {
          type:'fill',
          isComplete:false,
          isShowAnswer:false,
          value:[
            {
              stem:'Our boss <span class="u">can</span> be very angry when people don’t listen to him.',
              answer:'T',
              userAnswer:'',
              isRight:null
            },
            {
              stem:'The new project might work,but it <span class="u">could</span> not.',
              answer:'F',
              userAnswer:'',
              isRight:null
            },
            {
              stem:'The manager <span class="u">can not</span> have seen the message yet.',
              answer:'F',
              userAnswer:'',
              isRight:null
            },
            {
              stem:'We <span class="u">may</span> have been colleagues if he hadn’t missed the interview.',
              answer:'F',
              userAnswer:'',
              isRight:null
            },
            {
              stem:'The meeting might be cancelled for the delay of their plane.',
              answer:'T',
              userAnswer:'',
              isRight:null
            },
          ]
        },
      ],
      listenThree:[
        {
          type:'dropdown',
          isComplete:false,
          isShowAnswer:false,
          option:['T','F'],
          value:[
            {
              stem:'A positive workplace might have the same details for everybody.',
              answer:'F',
              userAnswer:''
            },
            {
              stem:'It should be a place where the management team enjoys coming to work.',
              answer:'F',
              userAnswer:''
            },
            {
              stem:'The happier people are at work,the better they will perform.',
              answer:'F',
              userAnswer:''
            },
            {
              stem:'The better the company culture is,the greater the reputation it enjoys.',
              answer:'T',
              userAnswer:''
            },
            {
              stem:'Most employees succeed in a positive atmosphere.',
              answer:'T',
              userAnswer:''
            },
          ]
        },
        {
          type:'select',
          isComplete:false,
          isShowAnswer:false,
          option:['a','b','c','d','e'],
          value:[
            {
              answer:['d','e'],
              userAnswer:[],
              isRight:null
            },
            {
              answer:['a','b','c'],
              userAnswer:[],
              isRight:null
            },
          ]
        },
      ]
    };
  },
  mounted() {
    this.getPath();
    const dropDownOne =  localStorage.getItem('english-chapter04-dropDownOne')
    if(dropDownOne) this.dropDownOne = JSON.parse(dropDownOne)
    const listenTable =  localStorage.getItem('english-chapter06-listenTable')
    if(listenTable) this.listenTable = JSON.parse(listenTable)
    const noSubmitData =  localStorage.getItem('english-chapter06-noSubmitData')
    if(noSubmitData) this.noSubmitData = JSON.parse(noSubmitData)
    const readingOne = localStorage.getItem('english-chapter06-readingOne')
    if(readingOne) this.readingOne = JSON.parse(readingOne)
    const dropdownTwo =  localStorage.getItem('english-chapter06-dropdownTwo')
    if(dropdownTwo) this.dropDownTwo = JSON.parse(dropdownTwo)
    const dropdownThree =  localStorage.getItem('english-chapter06-dropdownThree')
    if(dropdownThree) this.dropdownThree = JSON.parse(dropdownThree)
    const readingTwo = localStorage.getItem('english-chapter06-readingTwo')
    if(readingTwo) this.readingTwo = JSON.parse(readingTwo)
    const listenThree = localStorage.getItem('english-chapter06-listenThree')
    if(listenThree) this.listenThree = JSON.parse(listenThree)
  },
  methods: {
    arrayToString(data) {
        if(Array.isArray(data)) {
        return data.toString()
        } else {
            return data
        }
    },
    saveWord(event, word) {
      this.$emit("saveCharacters", event, word);
    },
    async getPath() {
      this.resource.listenOne = await getResourcePath(
        "AB15FA5A96B3FA325489F2E6620827FD"
      );
      this.resource.readingOne = await getResourcePath(
        "DF353557BE4B2C0E71BB2A50C0CA753C"
      );
      this.resource.readingTwo = await getResourcePath(
        "88F39B788C726DD5DB25F429570FFF7D"
      );
      this.resource.readingThree = await getResourcePath(
        "B32CC91B062501D0D75349EC300C37EA"
      );
      this.resource.readingFour = await getResourcePath(
        "0CFCC206E2DC45FBA070CD9CD7F0428B"
      );
      this.resource.listenTwo = await getResourcePath(
        "B392589318D7CC282BE811EDA2D8E6B0"
      );
      this.resource.listenThree = await getResourcePath(
        "625FDB71EC5BD35CF489AA4DE6730373"
      );
 
    },
    saveDropdoenOne() {
      localStorage.setItem('english-chapter06-dropDownOne',JSON.stringify(this.dropDownOne))
    },
    handledropDownOne() {
      for (let index = 0; index < this.dropDownOne.length; index++) {
        const item = this.dropDownOne[index];
        item.isComplete = true
        item.isShowAnswer = true
        for (let cindex = 0; cindex < item.value.length; cindex++) {
          const citem = item.value[cindex];
          citem.isRight = citem.answer == citem.userAnswer
        }
      }
      this.saveDropdoenOne()
    },
    recastdropDownOne() {
      for (let index = 0; index < this.dropDownOne.length; index++) {
        const item = this.dropDownOne[index];
        item.isComplete = false
        item.isShowAnswer = false
        for (let cindex = 0; cindex < item.value.length; cindex++) {
          const citem = item.value[cindex];
          citem.isRight = null
          citem.userAnswer = ''
        }
      }
      localStorage.removeItem('english-chapter06-dropDownOne')
    },
    viewdropDownOne() {
      for (let index = 0; index < this.dropDownOne.length; index++) {
        const item = this.dropDownOne[index];
        item.isShowAnswer = !item.isShowAnswer
      }
    },
    savelistenTable() {
      localStorage.setItem('english-chapter06-listenTable',JSON.stringify(this.listenTable))
    },
    handlelistenTable() {
      for (let index = 0; index < this.listenTable.length; index++) {
        const item = this.listenTable[index];
        item.isComplete = true
        item.isShowAnswer = true
        for (let cindex = 0; cindex < item.value.length; cindex++) {
          const citem = item.value[cindex];
          citem.isRight = citem.userAnswer == citem.answer
        }
      }
      this.savelistenTable()
    },
    recastlistenTable() {
      for (let index = 0; index < this.listenTable.length; index++) {
        const item = this.listenTable[index];
        item.isComplete = false
        item.isShowAnswer = false
        for (let cindex = 0; cindex < item.value.length; cindex++) {
          const citem = item.value[cindex];
          citem.isRight = null
          citem.userAnswer = ''
        }
      }
      localStorage.removeItem('english-chapter06-listenTable')
    },
    viewlistenTable() {
      for (let index = 0; index < this.listenTable.length; index++) {
        const item = this.listenTable[index];
        item.isShowAnswer = !item.isShowAnswer
      }
    },
    savenoSubmitData() {
      localStorage.setItem('english-chapter06-noSubmitData',JSON.stringify(this.noSubmitData))
    },
    showNoSubmitAnswer(index,num) {
        this.$set(this.noSubmitData[index].value[num],'isShowAnswer',!this.noSubmitData[index].value[num].isShowAnswer)
    },
    saveReadingOne() {
      localStorage.setItem('english-chapter06-readingOne',JSON.stringify(this.readingOne))
    },
    handleReadingOne() {
      for (let index = 0; index < this.readingOne.length; index++) {
        const item = this.readingOne[index];
        item.isShowAnswer = true
        item.isComplete = true
        if(item.type !== 'checkbox' && item.type !== 'table' && item.type !== 'translate' && item.type !== 'montage') {
          for (let cindex = 0; cindex < item.value.length; cindex++) {
            const citem = array[cindex];
            citem.isRight = citem.answer == citem.userAnswer
          }
        }
      }
      this.saveReadingOne()
    },
    recastReadingOne() {
      for (let index = 0; index < this.readingOne.length; index++) {
        const item = this.readingOne[index];
        item.isShowAnswer = false
        item.isComplete = false
          for (let cindex = 0; cindex < item.value.length; cindex++) {
            const citem = array[cindex];
            citem.isRight = null
            if(item.type == 'checkbox') {
              citem.userAnswer = []
            } else if(item.type == 'table') {
              citem.userAnswerOne = '',
              citem.userAnswerTwo = ''
            } else {
              citem.userAnswer = ''
            }
          }
      }
      localStorage.removeItem('english-chapter06-readingOne')
    },
    viewReadingOne() {
      for (let index = 0; index < this.readingOne.length; index++) {
        const item = this.readingOne[index];
        item.isShowAnswer = !item.isShowAnswer
      }
    },
    handledropDownTwo(num) {
      for (let index = 0; index < this.dropDownTwo.length; index++) {
        const item = this.dropDownTwo[index];
        for (let cindex = 0; cindex < item.value.length; cindex++) {
          const citem = item.value[cindex];
          if(cindex == num) {
            citem.isRight = citem.answer == citem.userAnswer
          }
        }
      }
      localStorage.setItem('english-chapter06-dropdownTwo',JSON.stringify(this.dropDownTwo))
    },
    showdropdownTwo() {
      this.$set(this.dropDownTwo[0],'isShowAnswer',!this.dropDownTwo[0].isShowAnswer)
    },
    shownoSubmitData(num,number) {
      this.$set(this.noSubmitData[num].value[number],'isShowAnswer',!this.noSubmitData[num].value[number].isShowAnswer)
    },
    handleDropdownThree(num) {
      for (let index = 0; index < this.dropDownThree.length; index++) {
        const item = this.dropDownThree[index];
        for (let cindex = 0; cindex < item.value.length; cindex++) {
          const citem = item.value[cindex];
          if(cindex == num) {
            citem.isRight = citem.answer == citem.userAnswer
          }
        }
      }
      localStorage.setItem('english-chapter06-dropdownThree',JSON.stringify(this.dropDownThree))
    },
    saveReadingTwo() {
      localStorage.setItem('english-chapter06-readingTwo',JSON.stringify(this.readingTwo))
    },
    handlereadingTwo() {
      for (let index = 0; index < this.readingTwo.length; index++) {
        const item = this.readingTwo[index];
        item.isComplete = true
        item.isShowAnswer = true
        if(item.type !== 'checkbox') {
          for (let cindex = 0; cindex < item.value.length; cindex++) {
            const citem = item.value[cindex];
            citem.isRight = citem.answer == citem.userAnswer
          }
        }
      }
      this.saveReadingTwo()
    },
    recastreadingTwo() {
      for (let index = 0; index < this.readingTwo.length; index++) {
        const item = this.readingTwo[index];
        item.isComplete = false
        item.isShowAnswer = false
        for (let cindex = 0; cindex < item.value.length; cindex++) {
          const citem = item.value[cindex];
          if(item.type !== 'checkbox') {
            citem.userAnswer = ''
            citem.isRight = null
          } else {
            citem.userAnswer = []
          }
          
        }
      }
      localStorage.removeItem('english-chapter06-readingTwo')
    },
    viewreadingTwo() {
      for (let index = 0; index < this.readingTwo.length; index++) {
        const item = this.readingTwo[index];
        item.isShowAnswer = !item.isShowAnswer
      }
    },
    saveListenThree() {
      localStorage.setItem('english-chapter06-listenThree',JSON.stringify(this.listenThree))
    },
    changeDropdownDataOne(data) {
      this.$set(this.listenThree[1].value[0],'userAnswer',data)
      this.saveListenThree()
    },
    changeDropdownDataTwo(data) {
      this.$set(this.listenThree[1].value[1],'userAnswer',data)
      this.saveListenThree()
    },
    handleListenThree() {
      for (let index = 0; index < this.listenThree.length; index++) {
        const item = this.listenThree[index];
        item.isShowAnswer = true
        item.isComplete = true
        for (let cindex = 0; cindex < item.value.length; cindex++) {
          const citem = item.value[cindex];
          if(item.type == 'dropdown') {
            citem.isRight = citem.answer == citem.userAnswer
          } else {
            const sortedArr1 = citem.answer.slice().sort();
            const sortedArr2 = citem.userAnswer.slice().sort();
            citem.isRight = sortedArr1.every(
                (value, index) => value === sortedArr2[index]
            );
          }
        }
      }
    },
    recastListenThree() {
      for (let index = 0; index < this.listenThree.length; index++) {
        const item = this.listenThree[index];
        item.isShowAnswer = false
        item.isComplete = false
        for (let cindex = 0; cindex < item.value.length; cindex++) {
          const citem = item.value[cindex];
          citem.isRight = null
          if(item.type == 'dropdown') {
            citem.userAnswer = ''
          } else {
            citem.userAnswer = []
          }
        }
      }
      localStorage.removeItem('english-chapter06-listenThree')
    },
    viewListenThree() {
      for (let index = 0; index < this.listenThree.length; index++) {
        const item = this.listenThree[index];
        item.isShowAnswer =  !item.isShowAnswer
      }
    }
  },
};
</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;
  }
}
.weekly {
  border: 2px dotted #935987;
  border-radius: 6px;
  width: 100%;
  .weekly-p {
    background-color: #d2d2d2;
  }
}
</style>