闫增涛
2024-10-22 8113647226209422d377515271cc239e49c614cf
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
<template>
    <div class="chapter" num="8">
        <!-- 第七单元 -->
        <!-- 118 -->
        <div class="page-box" page="124">
            <div v-if="showPageList.indexOf(124) > -1">
                <h1 id="a011"><img class="img-0" alt="" src="../../assets/images/dy7.jpg" /></h1>
                <p><b>This unit will help you to:</b></p>
                <p>➢ Learn words and expressions about work ethic</p>
                <p>➢ Review the difference between the simple past tense and the past perfect tense as well as the usage
                    of conjunctions (and,or,but)</p>
                <p>➢ Give suggestions on how to develop a strong work ethic</p>
                <p>➢ Be able to write a warning notice</p>
                <p>➢ Understand some work ethic and behave well in the workplace</p>
                <p class="center"><img class="img-0" alt="" src="../../assets/images/0128-2.jpg" /></p>
            </div>
        </div>
        <!-- 119 -->
        <div class="page-box" page="125">
            <div v-if="showPageList.indexOf(125) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit7">MODULE 7</span>
                        <span class="chapter-right-bc-unit7 fw-bl chapter-right-cl-unit7">WORK ETHIC AND SUCCESS IN THE
                            WORKPLACE</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <h2 id="b025"><img class="img-0" alt="" src="../../assets/images/dy7-le1.jpg" /></h2>
                        <h3 id="c055"><span class="bjh3">Warm-up</span></h3>
                        <p><b>Ⅰ.Suppose it is your first day at work,how can you favorably impress your workmates?</b>
                            <span class="btn-box" @click="showAnswerOne = !showAnswerOne">
                                <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>
                        <p> <textarea v-model="questionData.tx.one" placeholder="请输入内容" rows="6" style=" width: 92%"
                                class="fz-16 fm-son" @change="setBookQuestion"></textarea>
                        </p>
                        <p class="event-header-text-bc pd-5" style="margin-left: 40px; width: 91%" v-if="showAnswerOne">
                            答案:(1).Don’t be late &nbsp; (2).wear clean clothes &nbsp; (3).show respect to your coworkers
                            (4).be polite &nbsp; (5).be confident &nbsp; (6).polish your shoes &nbsp;
                            (7).brush your hair
                        </p>
                        <p><b>Ⅱ.Put the following names of the departments in the proper blanks according to their
                                functions.</b></p>
                        <p class="center"><img class="img-a" alt="" src="../../assets/images/0129-2.jpg" /></p>
                        <table border="1" cellpadding="4" cellspacing="0" style="border-color: #fff" class="fz-14">
                            <tr class="table-th-bc">
                                <td class="tl-cn">Departments</td>
                                <td class="tl-cn">Functions</td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td class="tl-lf w35">
                                    <select class="select-border select-bc-t w80" v-model="dropdownData.dp.one.value"
                                        @change="handleDropdownData">
                                        <option v-for="(item, index) in dropdownData.dp.dropDownList" :key="index"
                                            :value="item">
                                            {{ item }}
                                        </option>
                                    </select>
                                    <span class="icon-box-big">
                                        <svg v-if="dropdownData.dp.one.isRight" t="1716986419862" class="icon"
                                            viewBox="0 0 1820 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"
                                            p-id="18767" xmlns:xlink="http://www.w3.org/1999/xlink" width="40"
                                            height="20">
                                            <path
                                                d="M1439.374222 216.007111s-169.472 56.490667-367.179852 282.443852C888.604444 703.222519 846.241185 787.949037 775.632593 900.93037 768.568889 893.866667 662.651259 689.095111 380.207407 540.814222l148.290371-141.226666s134.162963 91.790222 225.953185 261.262222c0 0 233.016889-360.116148 684.923259-536.642371v91.799704z m0 0"
                                                fill="#1AFA29" p-id="18768"></path>
                                        </svg>
                                        <svg v-if="dropdownData.dp.one.isRight == false" t="1716987085767" class="icon"
                                            viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"
                                            p-id="25745" xmlns:xlink="http://www.w3.org/1999/xlink" width="20"
                                            height="20">
                                            <path
                                                d="M116.579135 38.64349531L38.703935 103.74399781c138.82075969 102.96027281 268.24660875 221.31426938 381.68489719 339.96758156C246.29374906 618.40145938 109.95003031 790.19602344 38.10817906 859.25288281l148.35573469 123.62658094c52.61360812-108.17625656 167.23381594-272.86683656 320.56281844-445.01635875 153.50744156 173.21056312 268.36844625 338.43166313 321.38977781 447.49243969 0 0 144.5682225-152.96636906 157.47435281-129.29729625-55.80632344-62.49011156-191.37776625-244.16501625-374.17990593-430.27403438 104.68422375-107.1132975 222.15274031-213.10127719 347.60304468-306.24740437L925.17746562 56.03842156C782.85412063 126.51895625 647.69328031 231.09093594 526.07845437 342.39755 403.34886594 226.82662719 264.46095125 116.16373719 116.579135 38.64349531L116.579135 38.64349531zM116.579135 38.64349531"
                                                fill="#d81e06" p-id="25746"></path>
                                        </svg>
                                    </span>
                                </td>
                                <td>
                                    It has overall responsibilities for creating, planning, implementing, and
                                    integratingthe strategie direction of an organization.
                                </td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td class="tl-lf w35">
                                    <select class="select-border select-bc-t w80" v-model="dropdownData.dp.two.value"
                                        @change="handleDropdownData">
                                        <option v-for="(item, index) in dropdownData.dp.dropDownList" :key="index"
                                            :value="item">
                                            {{ item }}
                                        </option>
                                    </select>
                                    <span class="icon-box-big">
                                        <svg v-if="dropdownData.dp.two.isRight" t="1716986419862" class="icon"
                                            viewBox="0 0 1820 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"
                                            p-id="18767" xmlns:xlink="http://www.w3.org/1999/xlink" width="40"
                                            height="20">
                                            <path
                                                d="M1439.374222 216.007111s-169.472 56.490667-367.179852 282.443852C888.604444 703.222519 846.241185 787.949037 775.632593 900.93037 768.568889 893.866667 662.651259 689.095111 380.207407 540.814222l148.290371-141.226666s134.162963 91.790222 225.953185 261.262222c0 0 233.016889-360.116148 684.923259-536.642371v91.799704z m0 0"
                                                fill="#1AFA29" p-id="18768"></path>
                                        </svg>
                                        <svg v-if="dropdownData.dp.two.isRight == false" t="1716987085767" class="icon"
                                            viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"
                                            p-id="25745" xmlns:xlink="http://www.w3.org/1999/xlink" width="20"
                                            height="20">
                                            <path
                                                d="M116.579135 38.64349531L38.703935 103.74399781c138.82075969 102.96027281 268.24660875 221.31426938 381.68489719 339.96758156C246.29374906 618.40145938 109.95003031 790.19602344 38.10817906 859.25288281l148.35573469 123.62658094c52.61360812-108.17625656 167.23381594-272.86683656 320.56281844-445.01635875 153.50744156 173.21056312 268.36844625 338.43166313 321.38977781 447.49243969 0 0 144.5682225-152.96636906 157.47435281-129.29729625-55.80632344-62.49011156-191.37776625-244.16501625-374.17990593-430.27403438 104.68422375-107.1132975 222.15274031-213.10127719 347.60304468-306.24740437L925.17746562 56.03842156C782.85412063 126.51895625 647.69328031 231.09093594 526.07845437 342.39755 403.34886594 226.82662719 264.46095125 116.16373719 116.579135 38.64349531L116.579135 38.64349531zM116.579135 38.64349531"
                                                fill="#d81e06" p-id="25746"></path>
                                        </svg>
                                    </span>
                                </td>
                                <td>
                                    It deals with such matters as involving employees, hiring, training, labor
                                    relations,and benefits.
                                </td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td class="tl-lf w35">
                                    <select class="select-border select-bc-t w80" v-model="dropdownData.dp.three.value"
                                        @change="handleDropdownData">
                                        <option v-for="(item, index) in dropdownData.dp.dropDownList" :key="index"
                                            :value="item">
                                            {{ item }}
                                        </option>
                                    </select>
                                    <span class="icon-box-big">
                                        <svg v-if="dropdownData.dp.three.isRight" t="1716986419862" class="icon"
                                            viewBox="0 0 1820 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"
                                            p-id="18767" xmlns:xlink="http://www.w3.org/1999/xlink" width="40"
                                            height="20">
                                            <path
                                                d="M1439.374222 216.007111s-169.472 56.490667-367.179852 282.443852C888.604444 703.222519 846.241185 787.949037 775.632593 900.93037 768.568889 893.866667 662.651259 689.095111 380.207407 540.814222l148.290371-141.226666s134.162963 91.790222 225.953185 261.262222c0 0 233.016889-360.116148 684.923259-536.642371v91.799704z m0 0"
                                                fill="#1AFA29" p-id="18768"></path>
                                        </svg>
                                        <svg v-if="dropdownData.dp.three.isRight == false" t="1716987085767"
                                            class="icon" viewBox="0 0 1024 1024" version="1.1"
                                            xmlns="http://www.w3.org/2000/svg" p-id="25745"
                                            xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20">
                                            <path
                                                d="M116.579135 38.64349531L38.703935 103.74399781c138.82075969 102.96027281 268.24660875 221.31426938 381.68489719 339.96758156C246.29374906 618.40145938 109.95003031 790.19602344 38.10817906 859.25288281l148.35573469 123.62658094c52.61360812-108.17625656 167.23381594-272.86683656 320.56281844-445.01635875 153.50744156 173.21056312 268.36844625 338.43166313 321.38977781 447.49243969 0 0 144.5682225-152.96636906 157.47435281-129.29729625-55.80632344-62.49011156-191.37776625-244.16501625-374.17990593-430.27403438 104.68422375-107.1132975 222.15274031-213.10127719 347.60304468-306.24740437L925.17746562 56.03842156C782.85412063 126.51895625 647.69328031 231.09093594 526.07845437 342.39755 403.34886594 226.82662719 264.46095125 116.16373719 116.579135 38.64349531L116.579135 38.64349531zM116.579135 38.64349531"
                                                fill="#d81e06" p-id="25746"></path>
                                        </svg>
                                    </span>
                                </td>
                                <td>
                                    It is responsible for presenting, advertising and selling a company's products
                                    orservices.
                                </td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td class="tl-lf w35">
                                    <select class="select-border select-bc-t w80" v-model="dropdownData.dp.four.value"
                                        @change="handleDropdownData">
                                        <option v-for="(item, index) in dropdownData.dp.dropDownList" :key="index"
                                            :value="item">
                                            {{ item }}
                                        </option>
                                    </select>
                                    <span class="icon-box-big">
                                        <svg v-if="dropdownData.dp.four.isRight" t="1716986419862" class="icon"
                                            viewBox="0 0 1820 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"
                                            p-id="18767" xmlns:xlink="http://www.w3.org/1999/xlink" width="40"
                                            height="20">
                                            <path
                                                d="M1439.374222 216.007111s-169.472 56.490667-367.179852 282.443852C888.604444 703.222519 846.241185 787.949037 775.632593 900.93037 768.568889 893.866667 662.651259 689.095111 380.207407 540.814222l148.290371-141.226666s134.162963 91.790222 225.953185 261.262222c0 0 233.016889-360.116148 684.923259-536.642371v91.799704z m0 0"
                                                fill="#1AFA29" p-id="18768"></path>
                                        </svg>
                                        <svg v-if="dropdownData.dp.four.isRight == false" t="1716987085767" class="icon"
                                            viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"
                                            p-id="25745" xmlns:xlink="http://www.w3.org/1999/xlink" width="20"
                                            height="20">
                                            <path
                                                d="M116.579135 38.64349531L38.703935 103.74399781c138.82075969 102.96027281 268.24660875 221.31426938 381.68489719 339.96758156C246.29374906 618.40145938 109.95003031 790.19602344 38.10817906 859.25288281l148.35573469 123.62658094c52.61360812-108.17625656 167.23381594-272.86683656 320.56281844-445.01635875 153.50744156 173.21056312 268.36844625 338.43166313 321.38977781 447.49243969 0 0 144.5682225-152.96636906 157.47435281-129.29729625-55.80632344-62.49011156-191.37776625-244.16501625-374.17990593-430.27403438 104.68422375-107.1132975 222.15274031-213.10127719 347.60304468-306.24740437L925.17746562 56.03842156C782.85412063 126.51895625 647.69328031 231.09093594 526.07845437 342.39755 403.34886594 226.82662719 264.46095125 116.16373719 116.579135 38.64349531L116.579135 38.64349531zM116.579135 38.64349531"
                                                fill="#d81e06" p-id="25746"></path>
                                        </svg>
                                    </span>
                                </td>
                                <td>
                                    It is responsible for finding new products and processes or improving existing ones.
                                </td>
 
                            </tr>
                            <tr class="table-tr-bc">
                                <td class="tl-lf w35">
                                    <select class="select-border select-bc-t w80" v-model="dropdownData.dp.five.value"
                                        @change="handleDropdownData">
                                        <option v-for="(item, index) in dropdownData.dp.dropDownList" :key="index"
                                            :value="item">
                                            {{ item }}
                                        </option>
                                    </select>
                                    <span class="icon-box-big">
                                        <svg v-if="dropdownData.dp.five.isRight" t="1716986419862" class="icon"
                                            viewBox="0 0 1820 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"
                                            p-id="18767" xmlns:xlink="http://www.w3.org/1999/xlink" width="40"
                                            height="20">
                                            <path
                                                d="M1439.374222 216.007111s-169.472 56.490667-367.179852 282.443852C888.604444 703.222519 846.241185 787.949037 775.632593 900.93037 768.568889 893.866667 662.651259 689.095111 380.207407 540.814222l148.290371-141.226666s134.162963 91.790222 225.953185 261.262222c0 0 233.016889-360.116148 684.923259-536.642371v91.799704z m0 0"
                                                fill="#1AFA29" p-id="18768"></path>
                                        </svg>
                                        <svg v-if="dropdownData.dp.five.isRight == false" t="1716987085767" class="icon"
                                            viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"
                                            p-id="25745" xmlns:xlink="http://www.w3.org/1999/xlink" width="20"
                                            height="20">
                                            <path
                                                d="M116.579135 38.64349531L38.703935 103.74399781c138.82075969 102.96027281 268.24660875 221.31426938 381.68489719 339.96758156C246.29374906 618.40145938 109.95003031 790.19602344 38.10817906 859.25288281l148.35573469 123.62658094c52.61360812-108.17625656 167.23381594-272.86683656 320.56281844-445.01635875 153.50744156 173.21056312 268.36844625 338.43166313 321.38977781 447.49243969 0 0 144.5682225-152.96636906 157.47435281-129.29729625-55.80632344-62.49011156-191.37776625-244.16501625-374.17990593-430.27403438 104.68422375-107.1132975 222.15274031-213.10127719 347.60304468-306.24740437L925.17746562 56.03842156C782.85412063 126.51895625 647.69328031 231.09093594 526.07845437 342.39755 403.34886594 226.82662719 264.46095125 116.16373719 116.579135 38.64349531L116.579135 38.64349531zM116.579135 38.64349531"
                                                fill="#d81e06" p-id="25746"></path>
                                        </svg>
                                    </span>
                                </td>
                                <td>
                                    It manages money in running a business, an activity or a project.
                                </td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td class="tl-lf w35">
                                    <select class="select-border select-bc-t w80" v-model="dropdownData.dp.six.value"
                                        @change="handleDropdownData">
                                        <option v-for="(item, index) in dropdownData.dp.dropDownList" :key="index"
                                            :value="item">
                                            {{ item }}
                                        </option>
                                    </select>
                                    <span class="icon-box-big">
                                        <svg v-if="dropdownData.dp.six.isRight" t="1716986419862" class="icon"
                                            viewBox="0 0 1820 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"
                                            p-id="18767" xmlns:xlink="http://www.w3.org/1999/xlink" width="40"
                                            height="20">
                                            <path
                                                d="M1439.374222 216.007111s-169.472 56.490667-367.179852 282.443852C888.604444 703.222519 846.241185 787.949037 775.632593 900.93037 768.568889 893.866667 662.651259 689.095111 380.207407 540.814222l148.290371-141.226666s134.162963 91.790222 225.953185 261.262222c0 0 233.016889-360.116148 684.923259-536.642371v91.799704z m0 0"
                                                fill="#1AFA29" p-id="18768"></path>
                                        </svg>
                                        <svg v-if="dropdownData.dp.six.isRight == false" t="1716987085767" class="icon"
                                            viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"
                                            p-id="25745" xmlns:xlink="http://www.w3.org/1999/xlink" width="20"
                                            height="20">
                                            <path
                                                d="M116.579135 38.64349531L38.703935 103.74399781c138.82075969 102.96027281 268.24660875 221.31426938 381.68489719 339.96758156C246.29374906 618.40145938 109.95003031 790.19602344 38.10817906 859.25288281l148.35573469 123.62658094c52.61360812-108.17625656 167.23381594-272.86683656 320.56281844-445.01635875 153.50744156 173.21056312 268.36844625 338.43166313 321.38977781 447.49243969 0 0 144.5682225-152.96636906 157.47435281-129.29729625-55.80632344-62.49011156-191.37776625-244.16501625-374.17990593-430.27403438 104.68422375-107.1132975 222.15274031-213.10127719 347.60304468-306.24740437L925.17746562 56.03842156C782.85412063 126.51895625 647.69328031 231.09093594 526.07845437 342.39755 403.34886594 226.82662719 264.46095125 116.16373719 116.579135 38.64349531L116.579135 38.64349531zM116.579135 38.64349531"
                                                fill="#d81e06" p-id="25746"></path>
                                        </svg>
                                    </span>
                                </td>
                                <td>
                                    It's a department where people assist the CEO to plan, organize and run a business.
                                </td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td class="tl-lf w35">
                                    <select class="select-border select-bc-t w80" v-model="dropdownData.dp.seven.value"
                                        @change="handleDropdownData">
                                        <option v-for="(item, index) in dropdownData.dp.dropDownList" :key="index"
                                            :value="item">
                                            {{ item }}
                                        </option>
                                    </select>
                                    <span class="icon-box-big">
                                        <svg v-if="dropdownData.dp.seven.isRight" t="1716986419862" class="icon"
                                            viewBox="0 0 1820 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"
                                            p-id="18767" xmlns:xlink="http://www.w3.org/1999/xlink" width="40"
                                            height="20">
                                            <path
                                                d="M1439.374222 216.007111s-169.472 56.490667-367.179852 282.443852C888.604444 703.222519 846.241185 787.949037 775.632593 900.93037 768.568889 893.866667 662.651259 689.095111 380.207407 540.814222l148.290371-141.226666s134.162963 91.790222 225.953185 261.262222c0 0 233.016889-360.116148 684.923259-536.642371v91.799704z m0 0"
                                                fill="#1AFA29" p-id="18768"></path>
                                        </svg>
                                        <svg v-if="dropdownData.dp.seven.isRight == false" t="1716987085767"
                                            class="icon" viewBox="0 0 1024 1024" version="1.1"
                                            xmlns="http://www.w3.org/2000/svg" p-id="25745"
                                            xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20">
                                            <path
                                                d="M116.579135 38.64349531L38.703935 103.74399781c138.82075969 102.96027281 268.24660875 221.31426938 381.68489719 339.96758156C246.29374906 618.40145938 109.95003031 790.19602344 38.10817906 859.25288281l148.35573469 123.62658094c52.61360812-108.17625656 167.23381594-272.86683656 320.56281844-445.01635875 153.50744156 173.21056312 268.36844625 338.43166313 321.38977781 447.49243969 0 0 144.5682225-152.96636906 157.47435281-129.29729625-55.80632344-62.49011156-191.37776625-244.16501625-374.17990593-430.27403438 104.68422375-107.1132975 222.15274031-213.10127719 347.60304468-306.24740437L925.17746562 56.03842156C782.85412063 126.51895625 647.69328031 231.09093594 526.07845437 342.39755 403.34886594 226.82662719 264.46095125 116.16373719 116.579135 38.64349531L116.579135 38.64349531zM116.579135 38.64349531"
                                                fill="#d81e06" p-id="25746"></path>
                                        </svg>
                                    </span>
                                </td>
                                <td>
                                    It makes food, goods or materials, especially in large quantities.
                                </td>
                            </tr>
                        </table>
 
                        <h3 id="c056" 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>Listen to the monologue about workplace success and fill in the blanks with what you
                                hear.</b>
                                <span class="btn-box" @click="viewReadingOne">
                                <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>
                        <p>Do you want to succeed in the workplace? Try your best for
                            <input  type="text"
                                class="input-bottom-border" style="width: 100px"
                                v-model="readingOne[0].value[0].userAnswer" @blur="handleReadingOne" />
                                <img :src="readingOne[0].value[0].isRight ? correctIcon : errorIcon"
                                v-if="readingOne[0].value[0].isRight == false || readingOne[0].value[0].isRight == true">
                            in everything you
                            do.Excellence means to be the best in<input  type="text"
                                class="input-bottom-border" style="width: 100px"
                                v-model="readingOne[0].value[1].userAnswer" @blur="handleReadingOne" />
                                <img :src="readingOne[0].value[1].isRight ? correctIcon : errorIcon"
                                v-if="readingOne[0].value[1].isRight == false || readingOne[0].value[1].isRight == true">
                                you do.Giving your 100% every time will help you
                            achieve that excellence in no time at all.Put all your<input  type="text"
                                class="input-bottom-border" style="width: 100px"
                                v-model="readingOne[0].value[2].userAnswer" @blur="handleReadingOne" />
                                <img :src="readingOne[0].value[2].isRight ? correctIcon : errorIcon"
                                v-if="readingOne[0].value[2].isRight == false || readingOne[0].value[2].isRight == true">in whatever you do and achieve
                            the best results.Care about the<input  type="text"
                                class="input-bottom-border" style="width: 100px"
                                v-model="readingOne[0].value[3].userAnswer" @blur="handleReadingOne" />
                                <img :src="readingOne[0].value[3].isRight ? correctIcon : errorIcon"
                                v-if="readingOne[0].value[3].isRight == false || readingOne[0].value[3].isRight == true">of your work and be willing to put in extra effort when
                            necessary.You will get more<input  type="text"
                                class="input-bottom-border" style="width: 100px"
                                v-model="readingOne[0].value[4].userAnswer" @blur="handleReadingOne" />
                                <img :src="readingOne[0].value[4].isRight ? correctIcon : errorIcon"
                                v-if="readingOne[0].value[4].isRight == false || readingOne[0].value[4].isRight == true">to grow as an individual and make great progress within
                            yourcareer.People with strong work ethic always a<input  type="text"
                                class="input-bottom-border" style="width: 100px"
                                v-model="readingOne[0].value[5].userAnswer" @blur="handleReadingOne" />
                                <img :src="readingOne[0].value[5].isRight ? correctIcon : errorIcon"
                                v-if="readingOne[0].value[5].isRight == false || readingOne[0].value[5].isRight == true">lot in return.</p>
                            <div class="event-header-text-bc pd-5 w100 mt-20" v-if="readingOne[0].isShowAnswer">
                            <span>答案:</span>
                            <p v-for="(item, index) in readingOne[0].value" :key="index">
                                {{ index + 1 }}.{{ item.answer }}
                            </p>
                        </div>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">119</span>
                </div>
            </div>
        </div>
        <!-- 120 -->
        <div class="page-box" page="126">
            <div v-if="showPageList.indexOf(126) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit7 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit7">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit7">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <h3 id="c057"><span class="bjh3">Reading</span></h3>
                        <p>1.If a man is called to be a street sweeper,he should sweep streets even as Michelangelo
                            painted,or Beethoven composed music or Shakespeare wrote poetry.What does this saying try to
                            tell us?
                            <span class="btn-box" @click="showAnswerTwo = !showAnswerTwo">
                                <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>
                        <p> <textarea v-model="questionData.tx.two" placeholder="请输入内容" rows="6" style=" width: 92%"
                                class="fz-16 fm-son" @change="setBookQuestion"></textarea>
                        </p>
                        <p class="event-header-text-bc pd-5" style="margin-left: 40px; width: 91%" v-if="showAnswerTwo">
                            答案:(1).Love whatever job one takes up &nbsp; (2).Work hard &nbsp; (3). To be creative &nbsp;
                            (4).Practice as much as you can &nbsp; (5). Insist on doing something
                        </p>
                        <p>2.How can other people’s jobs influence our life?
                            <span class="btn-box" @click="showAnswerThree = !showAnswerThree">
                                <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>
                        <p> <textarea v-model="questionData.tx.three" placeholder="请输入内容" rows="6" style=" width: 92%"
                                class="fz-16 fm-son" @change="setBookQuestion"></textarea>
                        </p>
                        <p class="event-header-text-bc pd-5" style="margin-left: 40px; width: 91%"
                            v-if="showAnswerThree">
                            答案:(1). Engineers make it easier for us to go somewhere by high-speed train. &nbsp;
                            (2).Gardeners make our city more beautiful. &nbsp;
                            (3).Deliverymen help to get our goods to us.&nbsp;
                            (4).Farmers plant so many fruits and vegetables to satisfy our appetite.
                        </p>
                        <p class="center"><b>Lineman Wang Jin</b></p>
                        <p class="center"><audio :src="resource.readingOne" controls
                                controlslist="noplaybackrate nodownload" style="margin-left: 10px"
                                class="audio"></audio></p>
                        <p>Working on high-
                            <span class="word-bc">voltage</span>
                            power lines is considered by many as a high-risk job.But for some
                            people it’s a daily
                            <span class="word-bc">routine</span>
                            .
                        </p>
                        <p>Standing on towers over 100 meters high and working on ultra-high-voltage (UHV) lines,Wang
                            Jin has been in this job for more than 20 years.He is a team leader at an electric power
                            company.</p>
                        <p>Wang still clearly remembered the first time he touched the power line.“I was really scared
                            because at the moment of
                            <span class="word-bc">contact</span>
                            ...500 000 volts of
                            <span class="word-bc">electricity</span>
                            hit the gloves,” recalled
                            Wang.
                        </p>
                        <p>The work is even harder for Wang and his co-workers because UHV lines are often set up in
                            remote areas.</p>
                        <p>Summer in east China’s Shandong Province can be hot and dry.The steel tower is also
                            hot.Wearing
                            <span class="word-bc">protective</span>
                            clothes in such weather,Wang felt
                            <span class="word-bc">dizzy</span>
                            even before he started the
                            shift.
                        </p>
                        <p>In 2011,Wang finished the world’s first repair work on a 660-kilovolt live-
                            <span class="word-bc">transmission</span>
                            line.The power transmitted by this line was almost one-tenth of the total power in the
                            entire province at that time.Wang won the National Science and Technology Progress Award—one
                            of China’s highest national honors—for his excellent performance.
                        </p>
                        <p>China’s UHV power network continues to expand,so Wang and his colleagues have set up an
                            innovation center to address new challenges.</p>
                        <p>They have introduced more technologies including the use of drones for line
                            <span class="word-bc">inspection</span>
                            and
                            <span class="word-bc">maintenance</span>
                            .They have 240 drones and 80 operators,and they want to create an
                            unmanned,\
                            <span class="word-bc">digital</span>
                            and
                            <span class="word-bc">intelligent</span>
                            line inspection system.
                        </p>
                        <p>Wang is now a father of two.His family gave him the biggest support.His
                            <span class="word-bc">dedication</span>
                            has made
                            him a role model for young people.Wang Innovation Studio now has nearly 100 members,who have
                            <span class="word-bc" word="achieve">achieved</span>
                            achieved more than 30 technological innovations.
                        </p>
                        <p>By the end of 2020,a total of 35 UHV projects had been completed or were under
                            <span class="word-bc">construction</span>
                            in China.Their total length is 48 000 kilometers.China’s electricity network has the highest
                            voltage and the biggest transmission
                            <span class="word-bc">capacity</span>
                            in the world.Thanks to technicians like Wang
                            and his colleagues,China hasn’t experienced a large-scale power outage in the past 10 years.
                        </p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">120</span>
                </div>
            </div>
        </div>
        <!-- 121 -->
        <div class="page-box" page="127">
            <div v-if="showPageList.indexOf(127) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit7">MODULE 7</span>
                        <span class="chapter-right-bc-unit7 fw-bl chapter-right-cl-unit7">WORK ETHIC AND SUCCESS IN THE
                            WORKPLACE</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p class="fl al-cn mt-40">
                            <span class="zt-cs" style="font-size: 20px">Words &amp; Expressions</span>
                            <span class="line-border-box"></span>
                        </p>
                        <audio :src="resource.readingTwo" controls controlslist="noplaybackrate nodownload"
                            style="margin-left: 10px" class="audio"></audio>
                        <p>voltage /ˈvəʊltɪdʒ/ <i>n.</i> 电压</p>
                        <div class="bkbj">
                            <p><i>electrical force measured in volts</i></p>
                        </div>
                        <p>routine /ruːˈtiːn/ <i>n.</i> 常规</p>
                        <div class="bkbj">
                            <p><i>fixed and regular way of doing things</i></p>
                        </div>
                        <p>scared /skeəd/ <i>adj.</i> 惊恐的;恐惧的</p>
                        <div class="bkbj">
                            <p><i>frightened</i></p>
                        </div>
                        <p>contact /ˈkɒntækt/ <i>n.</i> 接触</p>
                        <div class="bkbj">
                            <p><i>the state of touching sth.</i></p>
                        </div>
                        <p>electricity /ɪˌlekˈtrɪsəti/ <i>n.</i> 电</p>
                        <div class="bkbj">
                            <p><i>a form of energy from charged elementary particles,usually supplied as electric
                                    current</i></p>
                        </div>
                        <div class="bkbj">
                            <p><i>through cables,wires,etc.for lighting,heating,driving machines,etc.</i></p>
                        </div>
                        <p>protective /prəˈtektɪv/ <i>adj.</i> 受保护的</p>
                        <div class="bkbj">
                            <p><i>providing or intended to provide protection</i></p>
                        </div>
                        <p>dizzy /ˈdɪzi/<i> adj.</i> 头晕的;眩晕的</p>
                        <div class="bkbj">
                            <p><i>feeling as if everything is turning around you and that you are not able to
                                    balance</i></p>
                        </div>
                        <p>transmission /trænzˈmɪʃn/ <i>n.</i> 传送</p>
                        <div class="bkbj">
                            <p><i>the act or process of sending out an electronic signal or message</i></p>
                        </div>
                        <p>inspection /ɪnˈspekʃn/ <i>n.</i> 检查</p>
                        <div class="bkbj">
                            <p><i>the act of looking closely at sth./sb.,esp.to check if everything is as it should
                                    be</i></p>
                        </div>
                        <p>maintenance /ˈmeɪntənəns/ <i>n.</i> 维护</p>
                        <div class="bkbj">
                            <p><i>the act of keeping sth.in good condition by checking or repairing it regularly</i></p>
                        </div>
                        <p>digital /ˈdɪdʒɪtl/ <i>adj.</i> 数字的</p>
                        <div class="bkbj">
                            <p><i>connected with the use of computer technology,esp.the Internet</i></p>
                        </div>
                        <p>intelligent /ɪnˈtelɪdʒənt/ <i>adj.</i> 智能的</p>
                        <div class="bkbj">
                            <p><i>good at learning,understanding and thinking in a logical way about things; showing
                                    this ability</i></p>
                        </div>
                        <p>dedication /ˌdedɪˈkeɪʃn/ <i>n.</i> 献身;奉献</p>
                        <div class="bkbj">
                            <p><i>the hard work and effort that sb.puts into an activity or a purpose because they think
                                    it is important</i></p>
                        </div>
                        <p>achieve /əˈtʃiːv/ <i>v.</i> 获得;达到</p>
                        <div class="bkbj">
                            <p><i>to succeed in reaching a particular goal,status or standard,esp.by making an effort
                                    for a long time</i></p>
                        </div>
                        <p>construction /kənˈstrʌkʃn/ <i>n.</i> 建设</p>
                        <div class="bkbj">
                            <p><i>the process or method of building or making sth.,esp.roads,buildings,bridges,etc.</i>
                            </p>
                        </div>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">121</span>
                </div>
            </div>
        </div>
        <!-- 122 -->
        <div class="page-box" page="128">
            <div v-if="showPageList.indexOf(128) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit7 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit7">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit7">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p>capacity /kəˈpæsəti/ <i>n.</i> 容纳某事物的能力;做某事的能力</p>
                        <div class="bkbj">
                            <p><i>the ability to hold or contain sth.; the ability to do sth.</i></p>
                        </div>
                        <div class="fl">
                            <div class="left" style="width: 48%">
                                <p>live-transmission line直流输电线路</p>
                                <p>under construction 修建中</p>
                            </div>
                            <div class="right" style="width: 48%">
                                <p>set up 建立;设立</p>
                                <p>power outage停电</p>
                            </div>
                        </div>
                        <p><b>Ⅰ.Reading comprehension.</b></p>
                        <p>A.Fill in the blanks with the exact words in the passage.</p>
                        <p v-for="(item, index) in questionDataOne[0].value" :key="index">
                            {{ index + 1 }}.{{ item.stemOne }}
                            <input :disabled="questionDataOne[0].isComplete" type="text" class="input-bottom-border"
                                style="width: 140px" v-model="item.userAnswer" @input="setQuestionDataOne" />
                            {{ item.stemTwo }}
                            <img :src="item.isRight ? correctIcon : errorIcon" v-if="questionDataOne[0].isComplete">
                        </p>
                        <div class="event-header-text-bc pd-5 w100 mt-20" v-if="questionDataOne[0].isShowAnswer">
                            <p>
                                答案:
                            </p>
                            <div v-for="(item, index) in questionDataOne[0].value" :key="'answerOne' + index">
                                <p class="" style="margin-left: 40px">{{ index + 1 }}.{{ item.answer }}</p>
                            </div>
                        </div>
                        <p>B.Put the following statements in right order according to the course of Wang’s career
                            development in the passage.</p>
                        <p v-for="(item, index) in questionDataOne[1].value" :key="'select' + index">
                            ( <select class="select-border w10" v-model="item.userAnswer" @change="setQuestionDataOne"
                                :disabled="questionDataOne[1].isComplete">
                                <option v-for="(citem, cindex) in questionDataOne[1].option" :key="'option' + cindex"
                                    :value="citem">
                                    {{ citem }}
                                </option>
                            </select>)
                            {{ item.stem }}
                            <img :src="item.isRight ? correctIcon : errorIcon" v-if="questionDataOne[1].isComplete">
                        </p>
                        <div class="event-header-text-bc pd-5 w100 mt-20" v-if="questionDataOne[1].isShowAnswer">
                            <p>
                                答案:
                                <span v-for="(item, index) in questionDataOne[1].value" :key="'answerTwo' + index">
                                    {{ item.answer }} &nbsp;
                                </span>
                            </p>
                        </div>
                        <p><b>Ⅱ.Language focus.</b></p>
                        <p>A.Fill in the blanks with the proper words in the passage.The initial letters of the words
                            have been given.</p>
                        <p>One of my first c<input :disabled="questionDataOne[2].isComplete" type="text"
                                class="input-bottom-border" style="width: 60px" @input="setQuestionDataOne"
                                v-model="questionDataOne[2].value[0].userAnswer" />
                            <img :src="questionDataOne[2].isRight ? correctIcon : errorIcon"
                                v-if="questionDataOne[2].isComplete">
                            in my job experience was the cultural difference.Different cultures
                            make people think and behave differently.“Do in Rome as the Romans do.” In the first year I
                            usually communicated with my c<input :disabled="questionDataOne[2].isComplete" type="text"
                                class="input-bottom-border" style="width: 60px" @input="setQuestionDataOne"
                                v-model="questionDataOne[2].value[1].userAnswer" />
                            <img :src="questionDataOne[2].isRight ? correctIcon : errorIcon"
                                v-if="questionDataOne[2].isComplete">.I spent a
                            lot of time keeping in c <input :disabled="questionDataOne[2].isComplete" type="text"
                                class="input-bottom-border" style="width: 60px" @input="setQuestionDataOne"
                                v-model="questionDataOne[2].value[2].userAnswer" />
                            <img :src="questionDataOne[2].isRight ? correctIcon : errorIcon"
                                v-if="questionDataOne[2].isComplete">with my
                            customers and developed my cross-cultural c<input :disabled="questionDataOne[2].isComplete"
                                type="text" class="input-bottom-border" style="width: 60px" @input="setQuestionDataOne"
                                v-model="questionDataOne[2].value[3].userAnswer" />
                            <img :src="questionDataOne[2].isRight ? correctIcon : errorIcon"
                                v-if="questionDataOne[2].isComplete">.In this
                            way,I adapted to my new working
                            environment very fast,p<input :disabled="questionDataOne[2].isComplete" type="text"
                                class="input-bottom-border" style="width: 60px" @input="setQuestionDataOne"
                                v-model="questionDataOne[2].value[4].userAnswer" />
                            <img :src="questionDataOne[2].isRight ? correctIcon : errorIcon"
                                v-if="questionDataOne[2].isComplete">well and
                            finally I a<input :disabled="questionDataOne[2].isComplete" type="text"
                                class="input-bottom-border" style="width: 60px" @input="setQuestionDataOne"
                                v-model="questionDataOne[2].value[5].userAnswer" />
                            <img :src="questionDataOne[2].isRight ? correctIcon : errorIcon"
                                v-if="questionDataOne[2].isComplete">my goals.
                        </p>
                        <div class="event-header-text-bc pd-5 w100 mt-20" v-if="questionDataOne[2].isShowAnswer">
                            <p>
                                答案:
                            </p>
                            <p>
                                <span v-for="(item, index) in questionDataOne[2].value" :key="'answerThree' + index">
                                    {{ index + 1 }}.&nbsp; {{ item.answer }} &nbsp;
                                </span>
                            </p>
                        </div>
                        <p>B.Underline the following expressions in the passage and make sentences with them.</p>
                        <p>1.set up</p>
                        <textarea v-model="questionDataOne[3].value[0].userAnswer" placeholder="请输入内容" rows="6"
                            style=" margin-left: 40px; width: 92%" class="fz-16 fm-son"
                            @change="setQuestionDataOne"></textarea>
                        <p>2.give support</p>
                        <textarea v-model="questionDataOne[3].value[1].userAnswer" placeholder="请输入内容" rows="6"
                            style=" margin-left: 40px; width: 92%" class="fz-16 fm-son"
                            @change="setQuestionDataOne"></textarea>
                        <p>3.under construction</p>
                        <textarea v-model="questionDataOne[3].value[2].userAnswer" placeholder="请输入内容" rows="6"
                            style="  margin-left: 40px; width: 92%" class="fz-16 fm-son"
                            @change="setQuestionDataOne"></textarea>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">122</span>
                </div>
            </div>
        </div>
        <!-- 123 -->
        <div class="page-box" page="129">
            <div v-if="showPageList.indexOf(129) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit7">MODULE 7</span>
                        <span class="chapter-right-bc-unit7 fw-bl chapter-right-cl-unit7">WORK ETHIC AND SUCCESS IN THE
                            WORKPLACE</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p>4.thanks to</p>
                        <textarea v-model="questionDataOne[3].value[3].userAnswer" placeholder="请输入内容" rows="6"
                            style="  margin-left: 40px; width: 92%" class="fz-16 fm-son"
                            @change="setQuestionDataOne"></textarea>
                        <p>5.power outage</p>
                        <textarea v-model="questionDataOne[3].value[4].userAnswer" placeholder="请输入内容" rows="6"
                            style="  margin-left: 40px; width: 92%" class="fz-16 fm-son"
                            @change="setQuestionDataOne"></textarea>
                        <div class="event-header-text-bc pd-5 w100 mt-20" v-if="questionDataOne[3].isShowAnswer">
                            <p>
                                答案:
                            </p>
                            <p v-for="(item, index) in questionDataOne[3].value" :key="'answerFour' + index">
                                {{ index + 1 }}.&nbsp; {{ item.answer }} &nbsp;
                            </p>
                        </div>
                        <p>C.Translate the following sentences into Chinese.</p>
                        <div v-for="(item, index) in questionDataOne[4].value" :key="'Translate' + index">
                            <p>{{ index + 1 }}.{{ item.stem }}</p>
                            <p> <input :disabled="questionDataOne[4].isComplete" type="text" @input="setQuestionDataOne"
                                    class="input-bottom-border w95" v-model="item.userAnswer" /></p>
                        </div>
                        <div class="event-header-text-bc pd-5 w100 mt-20" v-if="questionDataOne[4].isShowAnswer">
                            <p>
                                例句:
                            </p>
                            <p v-for="(item, index) in questionDataOne[4].value" :key="'answerFour' + index">
                                {{ index + 1 }}.&nbsp; {{ item.answer }} &nbsp;
                            </p>
                        </div>
                        <p><b>Ⅲ.Grammar focus:The simple past &amp; past perfect tense.</b>
                            <span class="btn-box" @click="showAnswer('showImg')">
                                <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.Pick out two sentences of the simple past tense and the past perfect tense respectively
                            from the passage,and then write them down.</p>
                        <div v-for="(item, index) in questionDataOne[5].value" :key="'pt' + index">
                            <p><b>{{ item.stem }}:</b></p>
                            <p> {{ item.num + 1 }}.<input :disabled="questionDataOne[5].isComplete" type="text"
                                    @input="setQuestionDataOne" class="input-bottom-border w90"
                                    v-model="item.userAnswerOne" /></p>
                            <p> {{ item.num + 2 }}. <input :disabled="questionDataOne[5].isComplete" type="text"
                                    @input="setQuestionDataOne" class="input-bottom-border w90"
                                    v-model="item.userAnswerTwo" /></p>
                        </div>
                        <div class="event-header-text-bc pd-5 w100 mt-20" v-if="questionDataOne[5].isShowAnswer">
                            <p>
                                答案:
                            </p>
                            <div v-for="(item, index) in questionDataOne[5].value" :key="'answerFive' + index">
                                <p>
                                    {{ item.num + 1 }}.&nbsp; {{ item.answerOne }} &nbsp;
                                </p>
                                <p>
                                    {{ item.num + 2 }}.&nbsp; {{ item.answerTwo }} &nbsp;
                                </p>
                            </div>
                        </div>
                        <p>B.Fill in the blanks with the proper form of the given words.</p>
                        <p v-for="(item, index) in questionDataOne[6].value" :key="'ft' + index">
                            {{ index + 1 }}.{{ item.stemOne }}
                            <input :disabled="questionDataOne[6].isComplete" type="text" class="input-bottom-border w10"
                                @input="setQuestionDataOne" v-model="item.userAnswer" />
                            {{ item.stemTwo }}
                        </p>
                        <div class="event-header-text-bc pd-5 w100 mt-20" v-if="questionDataOne[6].isShowAnswer">
                            <p>
                                答案:
                            </p>
                            <p>
                                <span v-for="(item, index) in questionDataOne[6].value" :key="'answerFive' + index">
                                    {{ index + 1 }}.&nbsp;{{ item.answer }}&nbsp;
                                </span>
                            </p>
                        </div>
                        <div class="w100 fl ju-cn">
                            <ul class="fl ju-ar w80">
                                <li>
                                    <button class="btn-border btn-w" @click="handleQuestionDataOne">
                                        提交
                                    </button>
                                </li>
                                <li>
                                    <button @click="recastQuestionDataOne" class="btn-border btn-w">
                                        重做
                                    </button>
                                </li>
                                <li>
                                    <button @click="viewQuestionDataOne" class="parimary-btn">
                                        查看答案
                                    </button>
                                </li>
                            </ul>
                        </div>
                        <h3 id="c058"><span class="bjh3">Mini-project</span></h3>
                        <p>List some people who are dedicated to their work,and analyze the reasons for their
                            success.Jot down some notes,and then make a report to the class.</p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">123</span>
                </div>
            </div>
        </div>
        <!-- 124 -->
        <div class="page-box" page="130">
            <div v-if="showPageList.indexOf(130) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit7 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit7">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit7">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p class="left"><img class="img-gn" alt="" src="../../assets/images/dy1-worksheet.jpg" /></p>
                        <table border="1" cellpadding="4" cellspacing="0" style="border-color: #fff" class="fz-14">
                            <tr class="table-th-bc">
                                <td class="tl-cn">Names</td>
                                <td class="tl-cn">Reasons</td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td class="tl-cn">Yuan Longping</td>
                                <td>
                                    He was creative and started his research of hybrid rice technology,by which farmers
                                    can produce harvests twice as large as before.
                                </td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td>
                                    <textarea v-model="questionData.table.one"
                                        class="w100 table-tr-bc b0 table-textarea textarea-box"
                                        @change="setBookQuestion"></textarea>
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.two"
                                        class="w100 table-tr-bc b0 table-textarea "
                                        @change="setBookQuestion"></textarea>
                                </td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td>
                                    <textarea v-model="questionData.table.three"
                                        class="w100 table-tr-bc b0 table-textarea textarea-box"
                                        @change="setBookQuestion"></textarea>
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.four"
                                        class="w100 table-tr-bc b0 table-textarea "
                                        @change="setBookQuestion"></textarea>
                                </td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td>
                                    <textarea v-model="questionData.table.five"
                                        class="w100 table-tr-bc b0 table-textarea textarea-box"
                                        @change="setBookQuestion"></textarea>
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.six"
                                        class="w100 table-tr-bc b0 table-textarea "
                                        @change="setBookQuestion"></textarea>
                                </td>
                            </tr>
                        </table>
                        <p class="left"><img class="img-gn" alt="" src="../../assets/images/dy1-wordbank.jpg" /></p>
                        <div class="bk-wh">
                            <p class="dl-box">
                                <span class="word-bc mr-20 dl-span">strong-willed</span>
                                <span class="word-bc mr-20 dl-span" word="motivate">motivated</span>
                                <span class="word-bc mr-20 dl-span">active</span>
                                <span class="word-bc mr-20 dl-span">cooperative</span>
                                <span class="word-bc mr-20 dl-span">stressful</span>
                                <span class="word-bc mr-20 dl-span" word="discipline">disciplined</span>
                                <span class="word-bc mr-20 dl-span">risky</span>
                                <span class="word-bc mr-20 dl-span">helpful</span>
                                <span class="word-bc mr-20 dl-span">dutiful</span>
                                <span class="word-bc mr-20 dl-span">enthusiastic</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/7-1、MODULE 7(lesson one)_01.jpg" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/7-1、MODULE 7(lesson one)_02.jpg" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/7-1、MODULE 7(lesson one)_03.jpg" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/7-1、MODULE 7(lesson one)_04.jpg" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/7-1、MODULE 7(lesson one)_05.jpg" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/7-1、MODULE 7(lesson one)_06.jpg" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/7-1、MODULE 7(lesson one)_07.jpg" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/7-1、MODULE 7(lesson one)_08.jpg" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/7-1、MODULE 7(lesson one)_09.jpg" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/7-1、MODULE 7(lesson one)_10.jpg" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/7-1、MODULE 7(lesson one)_11.jpg" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/7-1、MODULE 7(lesson one)_12.jpg" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/7-1、MODULE 7(lesson one)_13.jpg" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/7-1、MODULE 7(lesson one)_14.jpg" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/7-1、MODULE 7(lesson one)_15.jpg" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/7-1、MODULE 7(lesson one)_16.jpg" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/7-1、MODULE 7(lesson one)_17.jpg" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/7-1、MODULE 7(lesson one)_18.jpg" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/7-1、MODULE 7(lesson one)_19.jpg" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/7-1、MODULE 7(lesson one)_20.jpg" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/7-1、MODULE 7(lesson one)_21.jpg" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/7-1、MODULE 7(lesson one)_22.jpg" />
                                            </div>
                                        </div>
                                    </div>
                                    <div class="swiper-button-next"></div>
                                    <div class="swiper-button-prev"></div>
                                    <div class="pageBox"></div>
                                </div>
                                <!-- 显示当前页和总页数的元素 -->
                            </div>
                        </div>
                        <h2 id="b026"><img class="img-0" alt="" src="../../assets/images/dy7-le2.jpg" /></h2>
                        <h3 id="c059"><span class="bjh3">Warm-up</span></h3>
                        <p><b>Put the expressions in the box below on the corresponding answer line under each
                                picture.</b></p>
 
 
                        <div class="bk-wh">
                            <p>no bribery punctual attentive gossiping</p>
                        </div>
                        <div class="openImgBox">
                            <div class="fl ju-bt">
                                <div class="left" style="width: 48%">
                                    <div>
                                        <p class="center">
                                            <img class="img-a" alt="" src="../../assets/images/0134-2.jpg" />
                                        </p>
                                        <p class="center">
                                            1.<select class="select-border w45" v-model="warmUp[0].value[0].userAnswer"
                                                @change="setWarmUp" :disabled="warmUp[0].isComplete">
                                                <option v-for="( item, index) in warmUp[0].option"
                                                    :key="'warmUp' + index" :value="item">
                                                    {{ item }}
                                                </option>
                                            </select>
                                            <img :src="warmUp[0].value[0].isRight ? correctIcon : errorIcon"
                                                v-if="warmUp[0].isComplete">
                                        </p>
                                    </div>
                                    <p class="event-header-text-bc pd-5" style="width: 90%"
                                        v-if="warmUp[0].isShowAnswer">
                                        答案:{{ this.warmUp[0].value[0].answer }}
                                    </p>
                                </div>
                                <div class="right" style="width: 48%">
                                    <div>
                                        <p class="center">
                                            <img class="img-a" alt="" src="../../assets/images/0134-3.jpg" />
                                        </p>
                                        <p class="center">
                                            2.<select class="select-border w45" v-model="warmUp[0].value[1].userAnswer"
                                                @change="setWarmUp" :disabled="warmUp[0].isComplete">
                                                <option v-for="( item, index) in warmUp[0].option"
                                                    :key="'warmUp' + index" :value="item">
                                                    {{ item }}
                                                </option>
                                            </select>
                                            <img :src="warmUp[0].value[1].isRight ? correctIcon : errorIcon"
                                                v-if="warmUp[0].isComplete">
                                        </p>
                                    </div>
                                    <p class="event-header-text-bc pd-5" style="width: 90%"
                                        v-if="warmUp[0].isShowAnswer">
                                        答案:{{ this.warmUp[0].value[1].answer }}
                                    </p>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">124</span>
                </div>
            </div>
        </div>
        <!-- 125 -->
        <div class="page-box" page="131">
            <div v-if="showPageList.indexOf(131) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit7">MODULE 7</span>
                        <span class="chapter-right-bc-unit7 fw-bl chapter-right-cl-unit7">WORK ETHIC AND SUCCESS IN THE
                            WORKPLACE</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <div class="openImgBox">
                            <div class="fl ju-bt">
                                <div class="left" style="width: 48%">
                                    <div>
                                        <p class="center">
                                            <img class="img-a" alt="" src="../../assets/images/0135-1.jpg" />
                                        </p>
                                        <p class="center">
                                            3.<select class="select-border w45" v-model="warmUp[0].value[2].userAnswer"
                                                @change="setWarmUp" :disabled="warmUp[0].isComplete">
                                                <option v-for="( item, index) in warmUp[0].option"
                                                    :key="'warmUp' + index" :value="item">
                                                    {{ item }}
                                                </option>
                                            </select>
                                            <img :src="warmUp[0].value[2].isRight ? correctIcon : errorIcon"
                                                v-if="warmUp[0].isComplete">
                                        </p>
                                    </div>
                                    <p class="event-header-text-bc pd-5" style="width: 90%"
                                        v-if="warmUp[0].isShowAnswer">
                                        答案:{{ this.warmUp[0].value[2].answer }}
                                    </p>
                                </div>
                                <div class="right" style="width: 48%">
                                    <div>
                                        <p class="center">
                                            <img class="img-a" alt="" src="../../assets/images/0135-2.jpg" />
                                        </p>
                                        <p class="center">
                                            4.<select class="select-border w45" v-model="warmUp[0].value[3].userAnswer"
                                                @change="setWarmUp" :disabled="warmUp[0].isComplete">
                                                <option v-for="( item, index) in warmUp[0].option"
                                                    :key="'warmUp' + index" :value="item">
                                                    {{ item }}
                                                </option>
                                            </select>
                                            <img :src="warmUp[0].value[3].isRight ? correctIcon : errorIcon"
                                                v-if="warmUp[0].isComplete">
                                        </p>
                                    </div>
                                    <p class="event-header-text-bc pd-5" style="width: 90%"
                                        v-if="warmUp[0].isShowAnswer">
                                        答案:{{ this.warmUp[0].value[3].answer }}
                                    </p>
                                </div>
                            </div>
                        </div>
                        <div class="w100 fl ju-cn">
                            <ul class="fl ju-ar w80">
                                <li>
                                    <button class="btn-border btn-w" @click="handleWarmUp">
                                        提交
                                    </button>
                                </li>
                                <li>
                                    <button @click="recastWarmUp" class="btn-border btn-w">
                                        重做
                                    </button>
                                </li>
                                <li>
                                    <button @click="viewWarmUp" class="parimary-btn">
                                        查看答案
                                    </button>
                                </li>
                            </ul>
                        </div>
                        <h3 id="c060"><span class="bjh3">Reading</span></h3>
                        <p>1.What examples come first to mind when referring to positive or poor work ethic?
                            <span class="btn-box" @click="showAnswerFour = !showAnswerFour">
                                <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>
                        <p> <textarea v-model="questionData.tx.four" placeholder="请输入内容" rows="6" style=" width: 92%"
                                class="fz-16 fm-son" @change="setBookQuestion"></textarea>
                        </p>
                        <p class="event-header-text-bc pd-5" style="margin-left: 40px; width: 91%"
                            v-if="showAnswerFour">
                            答案:(1).Strong work ethics: hard working, pioneering, innovation, selflessness, bravery,
                            strictness, solidarity &nbsp;
                            (2).Poor work ethics: corruption, concealing the truth, playing tricks, dishonesty,
                        </p>
                        <p>2.What kind of colleagues do you want to work with?
                            <span class="btn-box" @click="showAnswerFive = !showAnswerFive">
                                <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>
                        <p> <textarea v-model="questionData.tx.five" placeholder="请输入内容" rows="6" style=" width: 92%"
                                class="fz-16 fm-son" @change="setBookQuestion"></textarea>
                        </p>
                        <p class="event-header-text-bc pd-5" style="margin-left: 40px; width: 91%"
                            v-if="showAnswerFive">
                            答案:(1).Someone who is responsible, active, flexible, hard working. &nbsp;
                            (2).Someone who can give me useful suggestion and advice. &nbsp;
                            (3).Someone who can treat me equal and fair. &nbsp;
                            (4).Someone can communicate with me openly and effectively.
                        </p>
                        <p class="center"><b>Work Ethic 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>Work ethic is a set of standards of behavior and beliefs
                            <span class="word-bc" word="regard">regarding</span>
                            what is and isn’t
                            acceptable to do at work,which can be strong (good) or poor (bad).It depends on personal
                            views of employees,their motivation,and overall company culture.
                        </p>
                        <p>Next,we’ll review some common examples of both strong and poor work ethic.</p>
                        <p><b>Example</b> 1</p>
                        <p>Angela’s director asked her to sort out data about the patients and
                            <span class="word-bc">insurance</span>
                            .Unfortunately,Angela isn’t very familiar with processing certain insurance
                            <span class="word-bc" word="claim">claims</span>
                            .
                        </p>
                        <p>Rather than giving up,Angela decides to expand her skills.She networks with her coworkers in
                            the insurance department and consults her director.</p>
                        <p>In the process,she expands her skills to make sure she meets her goals.</p>
                        <p><b>Example</b> 2</p>
                        <p>Jim’s director asked him to review the financial reports from last quarter to look for
                            <span class="word-bc" word="purchas">purchases</span>
                            from one guest.The director gave him this task about a month ago and asked him to
                            complete it within a few weeks.
                        </p>
                        <p>Now,a month has passed,but Jim still hasn’t reviewed any of the reports.Rather than starting
                            early,he leaves it to the last minute and turns in an incomplete report.</p>
                        <p><b>Example</b> 3</p>
                        <p>Sheila is sometimes
                            <span class="word-bc" word="bother">bothered</span>
                            by the tasks assigned by her director.However,she never
                            <span class="word-bc" word="address">addresses</span>
                            her
                            <span class="word-bc" word="complaint">complaints</span>
                            to the director.Instead,she complains to her coworkers,friends,and
                        </p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">125</span>
                </div>
            </div>
        </div>
        <!-- 126 -->
        <div class="page-box" page="132">
            <div v-if="showPageList.indexOf(132) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit7 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit7">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit7">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p>anyone that will listen to her about her job.</p>
                        <p>Finally,the image of the company was badly affected and a bad working environment was
                            created.</p>
                        <p><b>Example</b> 4</p>
                        <p>Jeff is often late to work.When he arrives at the company,his coworkers have already worked
                            for half an hour or even longer.</p>
                        <p>Instead of trying hard to change the current situation,he makes various excuses for being
                            late.</p>
                        <p>His
                            <span class="word-bc">constant</span>
                            delay shows a lack of respect for his job and coworkers.His coworkers think of
                            him as being unreliable and irresponsible as a result.
                        </p>
                        <p>The above examples represent a set of working attitudes that regulate employees’ behavior at
                            work.And what can you do to develop strong work ethic?</p>
                        <p class="fl al-cn mt-40">
                            <span class="zt-cs" style="font-size: 20px">Words &amp; Expressions</span>
                            <span class="line-border-box"></span>
                        </p>
                        <p>
                            <audio :src="resource.readingFour" controls controlslist="noplaybackrate nodownload"
                                style="margin-left: 10px" class="audio"></audio>
                        </p>
                        <p>regarding /rɪˈɡɑːdɪŋ/ <i>prep.</i> 关于;至于</p>
                        <div class="bkbj">
                            <p><i>concerning sb./sth.; about sb./sth.</i></p>
                        </div>
                        <p>insurance /ɪnˈʃʊərəns/<i> n.</i>保险</p>
                        <div class="bkbj">
                            <p><i>an arrangement with a company in which you pay them regular amounts of</i></p>
                        </div>
                        <div class="bkbj">
                            <p><i>money and they agree to pay the costs</i></p>
                        </div>
                        <p>claim /kleɪm/<i> n.</i> 保险金索款</p>
                        <div class="bkbj">
                            <p><i>demand for a sum of money as insurance</i></p>
                        </div>
                        <p>purchase /ˈpɜːtʃəs/ <i>n.</i> 购买之物</p>
                        <div class="bkbj">
                            <p><i>sth.that you have bought</i></p>
                        </div>
                        <p>bother /ˈbɒðə(r)/ <i>v.</i> 打扰或烦扰某人</p>
                        <div class="bkbj">
                            <p><i>to</i> <i>cause trouble or annoyance to sb.</i></p>
                        </div>
                        <p>address /əˈdres/ <i>v.</i> 向……说话</p>
                        <div class="bkbj">
                            <p><i>to say sth.directly to sb.</i></p>
                        </div>
                        <p>complain /kəmˈpleɪn/ <i>v.</i> 抱怨;诉苦</p>
                        <div class="bkbj">
                            <p><i>to say that you are annoyed,unhappy or not satisfied about sb./sth.</i></p>
                        </div>
                        <p>constant /ˈkɒnstənt/ <i>adj.</i> 连续发生的;不断的;重复的</p>
                        <div class="bkbj">
                            <p><i>happening all the time or repeatedly</i></p>
                        </div>
                        <div class="fl">
                            <div class="left" style="width: 48%;">
                                <p>depend on 依靠;依赖</p>
                            </div>
                            <div class="right" style="width: 48%;">
                                <p>sort out 理顺;整理</p>
                            </div>
                        </div>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">126</span>
                </div>
            </div>
        </div>
        <!-- 127 -->
        <div class="page-box" page="133">
            <div v-if="showPageList.indexOf(133) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit7">MODULE 7</span>
                        <span class="chapter-right-bc-unit7 fw-bl chapter-right-cl-unit7">WORK ETHIC AND SUCCESS IN THE
                            WORKPLACE</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <div class="fl">
                            <div class="left" style="width: 48%;">
                                <p>give up 放弃</p>
                                <p>address sth.to sb. 向某人说某事</p>
                            </div>
                            <div class="right" style="width: 48%;">
                                <p>turn in 上交</p>
                            </div>
                        </div>
                        <p><b>Ⅰ.Reading comprehension.</b></p>
                        <p>A.Match the names in the left column with their behavior in the right column.</p>
                        <div>
                            <ul class="fl ju-bt matching-title-text">
                                <li style="width: 40%; text-align: center">Name</li>
                                <li style="width: 40%; text-align: center">Behavior</li>
                            </ul>
                            <matching :rawData="rawData" :question="question"></matching>
                        </div>
                        <p>B.Write down the work ethic mentioned in each of the four examples,and decide whether they
                            are strong or poor.</p>
                        <table border="1" cellpadding="4" cellspacing="0" style="border-color: #fff" class="fz-14">
                            <tr class="table-th-bc">
                                <td class="tl-cn">Examples</td>
                                <td class="tl-cn" style="width: 70%;">Work Ethic Mentioned</td>
                                <td class="tl-cn">
                                    Strong or Poor
                                </td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td class="tl-cn wh-no">Example 1</td>
                                <td>
                                    <textarea v-model="questionData.table.seven"
                                        class="w100 table-tr-bc b0 table-textarea "
                                        @change="setBookQuestion"></textarea>
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.eight"
                                        class="w100 table-tr-bc b0 table-textarea "
                                        @change="setBookQuestion"></textarea>
                                </td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td class="tl-cn wh-no">
                                    Example 2
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.nine"
                                        class="w100 table-tr-bc b0 table-textarea "
                                        @change="setBookQuestion"></textarea>
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.ten"
                                        class="w100 table-tr-bc b0 table-textarea "
                                        @change="setBookQuestion"></textarea>
                                </td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td class="tl-cn wh-no">
                                    Example 3
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.eleven"
                                        class="w100 table-tr-bc b0 table-textarea "
                                        @change="setBookQuestion"></textarea>
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.twelve"
                                        class="w100 table-tr-bc b0 table-textarea "
                                        @change="setBookQuestion"></textarea>
                                </td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td class="tl-cn wh-no">
                                    Example 4
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.thirteen"
                                        class="w100 table-tr-bc b0 table-textarea "
                                        @change="setBookQuestion"></textarea>
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.fourteen"
                                        class="w100 table-tr-bc b0 table-textarea "
                                        @change="setBookQuestion"></textarea>
                                </td>
                            </tr>
                        </table>
                        <p><b>Ⅱ.Language focus.</b></p>
                        <p>A.Fill in the blanks with the proper form of the words given below.</p>
                        <div class="bk-wh">
                            <p>bother complain constant address regarding</p>
                        </div>
                        <p v-for="(item, index) in questionDataTwo[0].value" :key="'fbOne' + index">
                            {{ index + 1 }}.{{ item.stemOne }}
                            <input :disabled="questionDataTwo[0].isComplete" type="text" class="input-bottom-border w10"
                                @input="setQuestionDataTwo" v-model="item.userAnswer" />
                            {{ item.stemTwo }}
                            <img :src="item.isRight ? correctIcon : errorIcon" v-if="questionDataTwo[0].isComplete">
                        </p>
                        <div class="event-header-text-bc pd-5 w100 mt-20" v-if="questionDataTwo[0].isShowAnswer">
                            <p>
                                答案:
                            </p>
                            <p>
                                <span v-for="(item, index) in questionDataTwo[0].value" :key="'fbThree' + index">
                                    {{ index + 1 }}.&nbsp;{{ item.answer }}&nbsp;
                                </span>
                            </p>
                        </div>
                        <p>B.Underline the following expressions in the passage and make sentences with them.</p>
                        <p>1.depend on</p>
                        <textarea v-model="questionDataTwo[1].value[0].userAnswer" placeholder="请输入内容" rows="6"
                            style=" margin-left: 40px; width: 92%" class="fz-16 fm-son"
                            @change="setQuestionDataTwo"></textarea>
                        <p>2.sort out</p>
                        <textarea v-model="questionDataTwo[1].value[1].userAnswer" placeholder="请输入内容" rows="6"
                            style=" margin-left: 40px; width: 92%" class="fz-16 fm-son"
                            @change="setQuestionDataTwo"></textarea>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">127</span>
                </div>
            </div>
        </div>
        <!-- 128 -->
        <div class="page-box" page="134">
            <div v-if="showPageList.indexOf(134) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit7 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit7">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit7">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p>3.give up</p>
                        <textarea v-model="questionDataTwo[1].value[2].userAnswer" placeholder="请输入内容" rows="6"
                            style=" margin-left: 40px; width: 92%" class="fz-16 fm-son"
                            @change="setQuestionDataTwo"></textarea>
                        <p>4.turn in</p>
                        <textarea v-model="questionDataTwo[1].value[3].userAnswer" placeholder="请输入内容" rows="6"
                            style=" margin-left: 40px; width: 92%" class="fz-16 fm-son"
                            @change="setQuestionDataTwo"></textarea>
                        <p>5.address ...to ...</p>
                        <textarea v-model="questionDataTwo[1].value[4].userAnswer" placeholder="请输入内容" rows="6"
                            style=" margin-left: 40px; width: 92%" class="fz-16 fm-son"
                            @change="setQuestionDataTwo"></textarea>
                        <div class="event-header-text-bc pd-5 w100 mt-20" v-if="questionDataTwo[1].isShowAnswer">
                            <p>
                                例句:
                            </p>
                            <p v-for="(item, index) in questionDataTwo[1].value" :key="'answerFour' + index">
                                {{ index + 1 }}.&nbsp; {{ item.answer }} &nbsp;
                            </p>
                        </div>
                        <p><b>Ⅲ.Grammar focus:Conjunctions (and,or,but).</b>
                            <span class="btn-box" @click="showAnswer('showImgOne')">
                                <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>Read the examples and complete the sentences with <i>and</i>,<i>or</i>,or <i>but</i>.</p>
                        <p><b>Examples:</b></p>
                        <div class="fieldset-8">
                            <p>1.We must double our efforts,or we will never be able to catch up with the others.</p>
                            <p>2.The camerawork is perfect,and the cast is good.</p>
                        </div>
                        <p v-for="(item, index) in questionDataTwo[2].value" :key="'fbTwo' + index">
                            {{ index + 1 }}.{{ item.stemOne }}
                            <input :disabled="questionDataTwo[2].isComplete" type="text" class="input-bottom-border w10"
                                @input="setQuestionDataTwo" v-model="item.userAnswer" />
                            {{ item.stemTwo }}
                            <img :src="item.isRight ? correctIcon : errorIcon" v-if="questionDataTwo[2].isComplete">
                        </p>
                        <div class="event-header-text-bc pd-5 w100 mt-20" v-if="questionDataTwo[2].isShowAnswer">
                            <p>
                                答案:
                            </p>
                            <p>
                                <span v-for="(item, index) in questionDataTwo[2].value" :key="'fbFour' + index">
                                    {{ index + 1 }}.&nbsp;{{ item.answer }}&nbsp;
                                </span>
                            </p>
                        </div>
                        <div class="w100 fl ju-cn">
                            <ul class="fl ju-ar w80">
                                <li>
                                    <button class="btn-border btn-w" @click="handleQuestionDataTwo">
                                        提交
                                    </button>
                                </li>
                                <li>
                                    <button @click="recastQuestionDataTwo" class="btn-border btn-w">
                                        重做
                                    </button>
                                </li>
                                <li>
                                    <button @click="viewQuestionDataTwo" class="parimary-btn">
                                        查看答案
                                    </button>
                                </li>
                            </ul>
                        </div>
                        <h3 id="c061"><span class="bjh3">Mini-project</span></h3>
                        <p>Work in groups.Choose two of the work ethic from the box below,and discuss the way to develop
                            them,and then prepare a report to the class.</p>
                        <div class="bk-wh">
                            <p>faithfulness initiative innovation selflessness bravery rigor teamwork fortitude</p>
                        </div>
                        <p class="left"><img class="img-gn" alt="" src="../../assets/images/dy1-worksheet.jpg" /></p>
                        <table border="1" cellpadding="4" cellspacing="0" style="border-color: #fff" class="fz-14">
                            <tr class="table-th-bc">
                                <td class="tl-cn">Work Ethic</td>
                                <td class="tl-cn" style="width:90%;">The Way to Develop lt</td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td class="tl-cn">Honesty</td>
                                <td>
                                    Don't tell/ies. IfI make a mistake, I will admit it and correet it.
                                </td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td>
                                    <textarea v-model="questionData.table.fifteen"
                                        class="w100 table-tr-bc b0 table-textarea textarea-box"
                                        @change="setBookQuestion"></textarea>
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.sixteen"
                                        class="w100 table-tr-bc b0 table-textarea "
                                        @change="setBookQuestion"></textarea>
                                </td>
                            </tr>
 
                        </table>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">128</span>
                </div>
            </div>
        </div>
        <!-- 129 -->
        <div class="page-box" page="135">
            <div v-if="showPageList.indexOf(135) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit7">MODULE 7</span>
                        <span class="chapter-right-bc-unit7 fw-bl chapter-right-cl-unit7">WORK ETHIC AND SUCCESS IN THE
                            WORKPLACE</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p class="continued">continued</p>
                        <table border="1" cellpadding="4" cellspacing="0" style="border-color: #fff" class="fz-14">
                            <tr class="table-th-bc">
                                <td class="tl-cn">Work Ethic</td>
                                <td class="tl-cn">The Way to Develop lt</td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td class="tl-cn">
                                    <textarea v-model="questionData.table.seventeen"
                                        class="w100 table-tr-bc b0 table-textarea textarea-box"
                                        @change="setBookQuestion"></textarea>
                                </td>
                                <td style="width: 90%;">
                                    <textarea v-model="questionData.table.eighteen"
                                        class="w100 table-tr-bc b0 table-textarea textarea-box"
                                        @change="setBookQuestion"></textarea>
                                </td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td>
                                    <textarea v-model="questionData.table.nineteen"
                                        class="w100 table-tr-bc b0 table-textarea textarea-box"
                                        @change="setBookQuestion"></textarea>
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.twenty"
                                        class="w100 table-tr-bc b0 table-textarea "
                                        @change="setBookQuestion"></textarea>
                                </td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td>
                                    <textarea v-model="questionData.table.twentyOne"
                                        class="w100 table-tr-bc b0 table-textarea textarea-box"
                                        @change="setBookQuestion"></textarea>
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.twentyTwo"
                                        class="w100 table-tr-bc b0 table-textarea "
                                        @change="setBookQuestion"></textarea>
                                </td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td>
                                    <textarea v-model="questionData.table.twentyThree"
                                        class="w100 table-tr-bc b0 table-textarea textarea-box"
                                        @change="setBookQuestion"></textarea>
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.twentyFour"
                                        class="w100 table-tr-bc b0 table-textarea "
                                        @change="setBookQuestion"></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/7-2、MODULE 7(lesson two)_01.jpg" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/7-2、MODULE 7(lesson two)_02.jpg" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/7-2、MODULE 7(lesson two)_03.jpg" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/7-2、MODULE 7(lesson two)_04.jpg" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/7-2、MODULE 7(lesson two)_05.jpg" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/7-2、MODULE 7(lesson two)_06.jpg" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/7-2、MODULE 7(lesson two)_07.jpg" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/7-2、MODULE 7(lesson two)_08.jpg" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/7-2、MODULE 7(lesson two)_09.jpg" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/7-2、MODULE 7(lesson two)_10.jpg" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/7-2、MODULE 7(lesson two)_11.jpg" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/7-2、MODULE 7(lesson two)_12.jpg" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/7-2、MODULE 7(lesson two)_13.jpg" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/7-2、MODULE 7(lesson two)_14.jpg" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/7-2、MODULE 7(lesson two)_15.jpg" />
                                            </div>
                                        </div>
                                    </div>
                                    <div class="swiper-button-next"></div>
                                    <div class="swiper-button-prev"></div>
                                    <div class="pageBox"></div>
                                </div>
                                <!-- 显示当前页和总页数的元素 -->
                            </div>
                        </div>
                        <h2 id="b027"><img class="img-0" alt="" src="../../assets/images/dy7-le3.jpg" /></h2>
                        <h3 id="c062" class="fl al-cn">
                            <span class="bjh3">Listening</span>
                            <!--controlslist="noplaybackrate nodownload"后面的音频框加入这个-->
                        </h3>
                        <p><b>Ⅰ.Jeff rarely showed up at the office on time.Listen to the recording and mark his excuses
                                for being late.</b></p>
                        <audio :src="resource.listenTwo" controls controlslist="noplaybackrate nodownload"
                            class="audio"></audio>
                        <ul class="fl">
                            <li class="w50">
                                <p v-for="(item, index) in this.questionDataThree[0].option.slice(0, 4)"
                                    :key="'checkBox' + index">
                                    <input type="checkbox" :value="item" name="item"
                                        v-model="questionDataThree[0].userAnswer"
                                        :disabled="questionDataThree[0].isComplete" @change="setQuestionDataThree">
                                    {{ item }}
                                    <img :src="isShowRight(questionDataThree[0].answer, questionDataThree[0].userAnswer, item) ? correctIcon : errorIcon"
                                        v-if="questionDataThree[0].isComplete">
                                </p>
                            </li>
                            <li class="w50">
                                <p v-for="(item, index) in this.questionDataThree[0].option.slice(4, 8)"
                                    :key="'checkBoxOne' + index">
                                    <input type="checkbox" :value="item" name="item"
                                        v-model="questionDataThree[0].userAnswer"
                                        :disabled="questionDataThree[0].isComplete" @change="setQuestionDataThree">
                                    {{ item }}
                                    <img :src="isShowRight(questionDataThree[0].answer, questionDataThree[0].userAnswer, item) ? correctIcon : errorIcon"
                                        v-if="questionDataThree[0].isComplete">
                                </p>
                            </li>
                        </ul>
                        <div class="event-header-text-bc pd-5 w100 mt-20" v-if="questionDataThree[0].isShowAnswer">
                            <span>答案:</span>
                            <span class="mr-20" v-for="(item, index) in questionDataThree[0].answer" :key="index">
                                {{ index + 1 }}.{{ item }}
                            </span>
                        </div>
                        <p><b>Ⅱ.Susan,HR director,is now talking with Jenny about Jeff’s problems.Listen to the
                                conversation and fill in the blanks with what you hear.</b></p>
                        <audio :src="resource.listenThree" controls controlslist="noplaybackrate nodownload"
                            class="audio"></audio>
                        <p>Susan:Have you noticed Jeff has been late many times?</p>
                        <p>Jenny:Yes,I want to have a talk with you about this.</p>
                        <p>Susan: From our punch records,I find that Jeff was late 7 times.Does his director Jim know
                            about this?</p>
                        <p>Jenny:I think Jim must have already talked with Jeff.But maybe Jeff doesn’t pay attention.
                        </p>
                        <p>Susan:So,1. <input :disabled="questionDataThree[1].isComplete" type="text"
                                class="input-bottom-border w40" @input="setQuestionDataThree"
                                v-model="questionDataThree[1].value[0].userAnswer" />?
                            <img :src="questionDataThree[1].value[0].isRight ? correctIcon : errorIcon"
                                v-if="questionDataThree[1].isComplete">
                        </p>
                        <p>Jenny:I suppose we should give a warning notice to Jeff about his tardiness.</p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">129</span>
                </div>
            </div>
        </div>
        <!-- 130 -->
        <div class="page-box" page="136">
            <div v-if="showPageList.indexOf(136) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit7 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit7">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit7">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p>Susan:2.<input :disabled="questionDataThree[1].isComplete" type="text"
                                class="input-bottom-border w40" @input="setQuestionDataThree"
                                v-model="questionDataThree[1].value[1].userAnswer" />if I talked with his director first
                            to get to know things better.
                            <img :src="questionDataThree[1].value[1].isRight ? correctIcon : errorIcon"
                                v-if="questionDataThree[1].isComplete">
                        </p>
                        <p>Jenny:And perhaps we should have a talk with Jeff.</p>
                        <p>Susan: I think so.3.<input :disabled="questionDataThree[1].isComplete" type="text"
                                class="input-bottom-border w40" @input="setQuestionDataThree"
                                v-model="questionDataThree[1].value[2].userAnswer" />.It is very important to let him
                            know how serious the problem is.
                            <img :src="questionDataThree[1].value[2].isRight ? correctIcon : errorIcon"
                                v-if="questionDataThree[1].isComplete">
                        </p>
                        <p>Jenny:4.<input :disabled="questionDataThree[1].isComplete" type="text"
                                class="input-bottom-border w40" @input="setQuestionDataThree"
                                v-model="questionDataThree[1].value[3].userAnswer" />.
                            <img :src="questionDataThree[1].value[3].isRight ? correctIcon : errorIcon"
                                v-if="questionDataThree[1].isComplete">
                        </p>
                        <p>Susan:Then after the talk,we 5.<input :disabled="questionDataThree[1].isComplete" type="text"
                                class="input-bottom-border w40" @input="setQuestionDataThree"
                                v-model="questionDataThree[1].value[4].userAnswer" />to Jeff.
                            <img :src="questionDataThree[1].value[4].isRight ? correctIcon : errorIcon"
                                v-if="questionDataThree[1].isComplete">
                        </p>
                        <p>Jenny: OK.I will talk with Jeff this afternoon.I hope he won’t make the same mistake again in
                            the future.</p>
                        <div class="event-header-text-bc pd-5 w100 mt-20" v-if="questionDataThree[1].isShowAnswer">
                            <span>答案:</span>
                            <span class="mr-20" v-for="(item, index) in questionDataThree[1].value" :key="index">
                                {{ index + 1 }}.{{ item.answer }}
                            </span>
                        </div>
                        <div class="w100 fl ju-cn">
                            <ul class="fl ju-ar w80">
                                <li>
                                    <button class="btn-border btn-w" @click="handleQuestionDataThree">
                                        提交
                                    </button>
                                </li>
                                <li>
                                    <button @click="recastQuestionDataThree" class="btn-border btn-w">
                                        重做
                                    </button>
                                </li>
                                <li>
                                    <button @click="viewQuestionDataThree" class="parimary-btn">
                                        查看答案
                                    </button>
                                </li>
                            </ul>
                        </div>
                        <h3 id="c063"><span class="bjh3">Practical Writing</span></h3>
                        <p>Work with your partner to discuss the following questions.</p>
                        <p>1.What kind of notices have you ever read?
                            <span class="btn-box" @click="showAnswerFive = !showAnswerFive">
                                <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>
                        <p> <textarea v-model="questionData.tx.five" placeholder="请输入内容" rows="6" style=" width: 92%"
                                class="fz-16 fm-son" @change="setBookQuestion"></textarea>
                        </p>
                        <p class="event-header-text-bc pd-5" style="margin-left: 40px; width: 91%"
                            v-if="showAnswerFive">
                            答案:A notice for a meeting/activity/exam/lost and found/important announcement
                        </p>
                        <p>2.Can you give some tips for writing a notice well?
                            <span class="btn-box" @click="showAnswerSix = !showAnswerSix">
                                <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>
                        <p> <textarea v-model="questionData.tx.six" placeholder="请输入内容" rows="6" style=" width: 92%"
                                class="fz-16 fm-son" @change="setBookQuestion"></textarea>
                        </p>
                        <p class="event-header-text-bc pd-5" style="margin-left: 40px; width: 91%" v-if="showAnswerSix">
                            答案:(1) Very short and attractive &nbsp;
                            (2) Simple and easy-to-read &nbsp;
                            (3) Very short and attractive &nbsp;
                            (4) Only key information &nbsp;
                        </p>
                        <p><b>Ⅰ.Read the following tips,and summarize how to write a notice well.</b>
                            <span class="btn-box" @click="showAnswerSeven = !showAnswerSeven">
                                <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>
                        <p>A notice intends to publicize social events,inform staff of instructions,give
                            information,change
                            plans,etc.Most notices have the following features.</p>
                        <div class="fieldset fl">
                            <div class="w45">
                                <p>◆ Very short and attractive</p>
                                <p>◆ Simple and easy-to-read</p>
                                <p>◆ Clear and specific</p>
                                <p>◆ Boldfaced words</p>
                            </div>
                            <div class="fl w45 al-cn">
                                <img class="img-b" alt="" src="../../assets/images/0140-1.jpg" />
                            </div>
                        </div>
                        <p> <textarea v-model="questionData.tx.seven" placeholder="请输入内容" rows="6" style=" width: 92%"
                                class="fz-16 fm-son" @change="setBookQuestion"></textarea>
                        </p>
                        <div class="event-header-text-bc pd-5" style="margin-left: 40px; width: 91%"
                            v-if="showAnswerSeven">
                            <p class="tl-lf">答案:</p>
                            <p>1. A notice should be very short and attractive, capturing attention effectively.
                            </p>
                            <p>2. It should be simple and easy-to-read, ensuring that the message is easily understood.
                            </p>
                            <p>3. A notice should be clear and specific, leaving no room for confusion or
                                misinterpretation.
                            </p>
                            <p>4. Important information or keywords should be emphasized using boldfaced words for
                                better visibility and emphasis.
                            </p>
                        </div>
                        <p><b>Ⅱ.Susan is going to issue a personnel warning notice to Jeff.Choose the items from the box
                                below and fill in the blanks to make a proper notice.</b></p>
                        <div class="bk-12">
                            <p>in order of escalation</p>
                            <p>your following actions</p>
                            <p>you received a verbal warning</p>
                            <p>help you improve your performance to meet our quality standards</p>
                            <p>job suspension without pay for one workweek</p>
                        </div>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">130</span>
                </div>
            </div>
        </div>
        <!-- 131 -->
        <div class="page-box" page="137">
            <div v-if="showPageList.indexOf(137) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit7">MODULE 7</span>
                        <span class="chapter-right-bc-unit7 fw-bl chapter-right-cl-unit7">WORK ETHIC AND SUCCESS IN THE
                            WORKPLACE</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <div class="bk-13">
                            <p>Tech Market Technology Co.</p>
                            <p>Warning 1</p>
                            <p>Employee’s Name:Jeff Bell</p>
                            <p>Supervisor’s Name:Jim Marche</p>
                            <p>HR Representative’s Name:Susan Landen</p>
                            <p>Date:1/31/23</p>
                        </div>
                        <div class="bk-13">
                            <p>Dear Jeff Bell,</p>
                            <p class="tl-lf">Your HR department has been informed by your director that
                                <select class="select-border select-bc-t w80" v-model="warmUpOne[0].value[0].userAnswer"
                                    @change="setWarmUpOne">
                                    <option v-for="(item, index) in warmUpOne[0].option" :key="index" :value="item">
                                        {{ item }}
                                    </option>
                                </select>
                                <img :src="warmUpOne[0].value[0].isRight ? correctIcon : errorIcon"
                                    v-if="warmUpOne[0].isComplete">
                                do not comply with Tech
                                Market Technology Company’s policies:
                            </p>
                            <p>· Infraction 1:Being late for January 4th,13th,16th,17th,24th and 25th.</p>
                            <p> <select class="select-border select-bc-t w80" v-model="warmUpOne[0].value[1].userAnswer"
                                    @change="setWarmUpOne">
                                    <option v-for="(item, index) in warmUpOne[0].option" :key="index" :value="item">
                                        {{ item }}
                                    </option>
                                </select>
                                <img :src="warmUpOne[0].value[1].isRight ? correctIcon : errorIcon"
                                    v-if="warmUpOne[0].isComplete">on January 17th,2023.
                            </p>
                            <p class="tl-lf">The following consequences,
                                <select class="select-border select-bc-t w80" v-model="warmUpOne[0].value[2].userAnswer"
                                    @change="setWarmUpOne">
                                    <option v-for="(item, index) in warmUpOne[0].option" :key="index" :value="item">
                                        {{ item }}
                                    </option>
                                </select>
                                <img :src="warmUpOne[0].value[2].isRight ? correctIcon : errorIcon"
                                    v-if="warmUpOne[0].isComplete">,will be applied,should you not demonstrate
                                improvement
                                or cease violation of company policies:
                            </p>
                            <p>1.Second warning notice issued</p>
                            <p>2. <select class="select-border select-bc-t w80"
                                    v-model="warmUpOne[0].value[3].userAnswer" @change="setWarmUpOne">
                                    <option v-for="(item, index) in warmUpOne[0].option" :key="index" :value="item">
                                        {{ item }}
                                    </option>
                                </select>
                                <img :src="warmUpOne[0].value[3].isRight ? correctIcon : errorIcon"
                                    v-if="warmUpOne[0].isComplete">
                            </p>
                            <p>3.Third and final warning notice followed by an in-person meeting</p>
                            <p>4.Termination of employment</p>
                            <p class="tl-lf">We will do whatever to
                                <select class="select-border select-bc-t w80" v-model="warmUpOne[0].value[4].userAnswer"
                                    @change="setWarmUpOne">
                                    <option v-for="(item, index) in warmUpOne[0].option" :key="index" :value="item">
                                        {{ item }}
                                    </option>
                                </select>
                                <img :src="warmUpOne[0].value[4].isRight ? correctIcon : errorIcon"
                                    v-if="warmUpOne[0].isComplete">.
                            </p>
                            <p>Supervisor’s signature:Jim Marche</p>
                            <p>Date:1/31/23</p>
                        </div>
                        <div class="event-header-text-bc pd-5" style="width: 90%" v-if="warmUpOne[0].isShowAnswer">
                            <div>
                                <p class="event-header-text-bc pd-5" v-for="(item, index) in warmUpOne[0].value"
                                    :key="'warmUpOne' + index">
                                    {{ index + 1 }}.{{ item.answer }}
                                </p>
                            </div>
                        </div>
                        <div class="w100 fl ju-cn">
                            <ul class="fl ju-ar w80">
                                <li>
                                    <button class="btn-border btn-w" @click="handleWarmUpOne">
                                        提交
                                    </button>
                                </li>
                                <li>
                                    <button @click="recastWarmUpOne" class="btn-border btn-w">
                                        重做
                                    </button>
                                </li>
                                <li>
                                    <button @click="viewWarmUpOne" class="parimary-btn">
                                        查看答案
                                    </button>
                                </li>
                            </ul>
                        </div>
                        <p><b>Ⅲ.Put the following words in right order to make sentences.</b>
                            <span class="btn-box" @click="showAnswerEight = !showAnswerEight">
                                <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>
                        <p>1.used who everyone should coffee it the clean machine</p>
                        <p><input type="text" @input="setBookQuestion" class="input-bottom-border w90"
                                v-model="questionData.tx.eight" /></p>
                        <p>2.to the this are welcome lecture attend all staff</p>
                        <p><input type="text" @input="setBookQuestion" class="input-bottom-border w90"
                                v-model="questionData.tx.nine" /></p>
                        <p>3.due weather the badminton the to competition canceled be will</p>
                        <p><input type="text" @input="setBookQuestion" class="input-bottom-border w90"
                                v-model="questionData.tx.ten" /></p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">131</span>
                </div>
            </div>
        </div>
        <!-- 132 -->
        <div class="page-box" page="138">
            <div v-if="showPageList.indexOf(138) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit7 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit7">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit7">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p>4.gate school gather for the 8 at o’clock examination at will the we</p>
                        <p><input type="text" @input="setBookQuestion" class="input-bottom-border w90"
                                v-model="questionData.tx.eleven" /></p>
                        <p>5.held will meeting contest in at be room tomorrow 9 p.m.the</p>
                        <p><input type="text" @input="setBookQuestion" class="input-bottom-border w90"
                                v-model="questionData.tx.twelve" /></p>
                        <div class="event-header-text-bc pd-5" style="margin-left: 40px; width: 91%"
                            v-if="showAnswerEight">
                            <p class="tl-lf table-p">答案:</p>
                            <p>1.Everyone who used the coffee machine should clean it.
                            </p>
                            <p>2.All the staff are welcome to attend the lecture.
                            </p>
                            <p>3.Due to the weather the badminton competition will be canceled.
                            </p>
                            <p>4. We will gather at the gate at 8 o’clock for examination.
                            </p>
                            <p>5. Contest will be held in the meeting room at 9 p.m. tomorrow.
                            </p>
                        </div>
                        <p><b>Ⅳ.Susan,HR director,is responsible for writing a warning notice to Jason who delayed
                                handling in a very important report.</b>
                            <span class="btn-box" @click="showAnswerNine = !showAnswerNine">
                                <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-4">
                            <p class="left">Tech Market Technology Co.</p>
                            <p class="left">Warning 1</p>
                            <p class="left">Employee’s Name:<input type="text" @input="setBookQuestion"
                                    class="input-bottom-border w20" v-model="questionData.tx.thirteen" /></p>
                            <p class="left">Supervisor’s Name: Jim Marche</p>
                            <p class="left">HR Representative’s Name: Susan Landen</p>
                            <p class="left">Date:<input type="text" @input="setBookQuestion"
                                    class="input-bottom-border w20" v-model="questionData.tx.fourteen" /></p>
                            <p><br /></p>
                            <p class="left">Dear Jason,</p>
                            <p class="left"><textarea v-model="questionData.tx.fifteen" placeholder="请输入内容" rows="6"
                                    style=" width: 92%" class="fz-16 fm-son" @change="setBookQuestion"></textarea></p>
                            <p class="left">Supervisor’s signature: Jim Marche</p>
                            <p class="left">Date:1/31/23</p>
                        </div>
                        <div class="show-answer-box" v-if="showAnswerNine">
                            <div>答案:</div>
                            <div>
                                <img src="../../assets/images/M7lessonThreePracticalWriting.png" alt="" class="w100" />
                            </div>
                        </div>
                        <div class="un-h2">
                            <h2 id="b028">Unit Project</h2>
                        </div>
                        <p>Work with your partner to complete the following tasks,and then share your ideas with others.
                        </p>
                        <p><b>Task 1:</b> Read each of the following examples and decide whether they are strong or bad
                            work ethic,and then find out what kind of work ethic they are.</p>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">132</span>
                </div>
            </div>
        </div>
        <!-- 133 -->
        <div class="page-box" page="139">
            <div v-if="showPageList.indexOf(139) > -1">
                <!-- 头部 -->
                <ul class="preface-odd-header w100 fl ju-bt">
                    <li class=""></li>
                    <li class="fz-18">
                        <span class="chapter-left-bc-unit7">MODULE 7</span>
                        <span class="chapter-right-bc-unit7 fw-bl chapter-right-cl-unit7">WORK ETHIC AND SUCCESS IN THE
                            WORKPLACE</span>
                    </li>
                </ul>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p class="left"><img class="img-gn" alt="" src="../../assets/images/dy1-worksheet.jpg" /></p>
                        <table border="1" cellpadding="4" cellspacing="0" style="border-color: #fff" class="fz-14">
                            <tr class="table-th-bc">
                                <td class="tl-cn">Examples</td>
                                <td class="tl-cn">Strong/Bad</td>
                                <td class="tl-cn">
                                    Work Ethic
                                </td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td class="tl-lf">Barney is the employee that always follows through on his commitments.
                                    If he agrees to take over another co-worker's shift.he always shows up. If he
                                    commits to a deadline, you can count on him to meet that deadline.</td>
                                <td class="tl-cn">
                                    Strong
                                </td>
                                <td class="tl-cn">
                                    Dedication
                                </td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td class="tl-lf">
                                    Sarah consistently completes all of her assignments with careful attention. Whether
                                    it’s staying up late to finish a research paper or sacrifcing her weekends to
                                    prepare for projects.
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.twentyFive"
                                        class="w100 table-tr-bc b0 table-textarea "
                                        @change="setBookQuestion"></textarea>
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.twentySix"
                                        class="w100 table-tr-bc b0 table-textarea "
                                        @change="setBookQuestion"></textarea>
                                </td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td class="tl-lf">
                                    Mary is always ready to lend a helping hand and offer help whenever needed, She
                                    willingly shares her knowledge and expertise, contributing to the success of the
                                    entire team.
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.twentySeven"
                                        class="w100 table-tr-bc b0 table-textarea "
                                        @change="setBookQuestion"></textarea>
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.twentyEight"
                                        class="w100 table-tr-bc b0 table-textarea "
                                        @change="setBookQuestion"></textarea>
                                </td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td class="tl-lf">
                                    Amanda is the teacher who always inspires her students. She creates engaging lessons
                                    that ignite their curiosity and encouragesthem to explore and learn. Amanda
                                    motivates them to develop alifelong love for learning. </td>
                                <td>
                                    <textarea v-model="questionData.table.twentyNine"
                                        class="w100 table-tr-bc b0 table-textarea "
                                        @change="setBookQuestion"></textarea>
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.thirty"
                                        class="w100 table-tr-bc b0 table-textarea "
                                        @change="setBookQuestion"></textarea>
                                </td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td class="tl-lf">
                                    Lisa is the customer service representative who consistently delivers outstanding
                                    service. She patiently listens to customers’concerns,empathizes with their
                                    situation, and goes above and beyond to find solutions. </td>
                                <td>
                                    <textarea v-model="questionData.table.thirtyOne"
                                        class="w100 table-tr-bc b0 table-textarea "
                                        @change="setBookQuestion"></textarea>
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.thirtyTwo"
                                        class="w100 table-tr-bc b0 table-textarea "
                                        @change="setBookQuestion"></textarea>
                                </td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td class="tl-lf">
                                    James frequently forgets to submit his weekly report on time.causing delays in the
                                    team's progress. This lack of consistency and attention to details affects the
                                    project timelines and hampers effective communication within the team. </td>
                                <td>
                                    <textarea v-model="questionData.table.thirtyThree"
                                        class="w100 table-tr-bc b0 table-textarea "
                                        @change="setBookQuestion"></textarea>
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.thirtyFour"
                                        class="w100 table-tr-bc b0 table-textarea "
                                        @change="setBookQuestion"></textarea>
                                </td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td class="tl-lf">
                                    Andrew mistakenly sent an email to a client with incorrect information, During the
                                    projeet review, he confessed to his supervisor that he was the one responsible for
                                    the mistake, despite no one else was aware of it.</td>
                                <td>
                                    <textarea v-model="questionData.table.thirtyFive"
                                        class="w100 table-tr-bc b0 table-textarea "
                                        @change="setBookQuestion"></textarea>
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.thirtySix"
                                        class="w100 table-tr-bc b0 table-textarea "
                                        @change="setBookQuestion"></textarea>
                                </td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td class="tl-lf">
                                    John improved work productivity by introducing a new project management tool that
                                    allowed for better task coordination. This led to more efficient project completion
                                    and inereased output. </td>
                                <td>
                                    <textarea v-model="questionData.table.thirtySeven"
                                        class="w100 table-tr-bc b0 table-textarea "
                                        @change="setBookQuestion"></textarea>
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.thirtyEight"
                                        class="w100 table-tr-bc b0 table-textarea "
                                        @change="setBookQuestion"></textarea>
                                </td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td class="tl-lf">
                                    Mike failed to double-check important client documents before submitting them, which
                                    not only caused frustration for the client but also required the team to invest
                                    additional time and resources to rectify the mistake. </td>
                                <td>
                                    <textarea v-model="questionData.table.thirtyNine"
                                        class="w100 table-tr-bc b0 table-textarea "
                                        @change="setBookQuestion"></textarea>
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.forty"
                                        class="w100 table-tr-bc b0 table-textarea "
                                        @change="setBookQuestion"></textarea>
                                </td>
                            </tr>
                            <tr class="table-tr-bc">
                                <td class="tl-lf">
                                    Thomas frequently underestimated the time required for tasks.leading to rushed and
                                    subpar work. His disorganized approach resulted in missed deadlines, delayed
                                    deliverables, and frustrated clients. </td>
                                <td>
                                    <textarea v-model="questionData.table.fortyOne"
                                        class="w100 table-tr-bc b0 table-textarea "
                                        @change="setBookQuestion"></textarea>
                                </td>
                                <td>
                                    <textarea v-model="questionData.table.fortyTwo"
                                        class="w100 table-tr-bc b0 table-textarea "
                                        @change="setBookQuestion"></textarea>
                                </td>
                            </tr>
                        </table>
                    </div>
                </div>
                <div class="preface-bottom">
                    <span class="contet-num-box">133</span>
                </div>
            </div>
        </div>
        <!-- 134 -->
        <div class="page-box" page="140">
            <div v-if="showPageList.indexOf(140) > -1">
                <!-- 头部 -->
                <div class="w100 mb-20" style="padding-right: 20px">
                    <div class="event-header-bc-unit7 fl al-end" style="height: 100px; padding-left: 40px">
                        <div class="preface-header-box event-header-text-bc-unit7">
                            <span class="l-text">新标准通用职场英语</span>
                            <span class="g-text event-text-color-unit7">基础模块一</span>
                        </div>
                    </div>
                </div>
                <!-- 内容 -->
                <div class="padding-93">
                    <div class="bodystyle">
                        <p><b>Task 2:</b>List the possible impact the above behavior will have on a company.</p>
                        <p>1.<input type="text" @input="setBookQuestion" class="input-bottom-border w90"
                                v-model="questionData.tx.sixteen" /></p>
                        <p>2.<input type="text" @input="setBookQuestion" class="input-bottom-border w90"
                                v-model="questionData.tx.seventeen" /></p>
                        <p>3.<input type="text" @input="setBookQuestion" class="input-bottom-border w90"
                                v-model="questionData.tx.eighteen" /></p>
                        <p><b>Task 3:</b>List at least three strong work ethic you should develop and the tips for
                            developing them.</p>
                        <p>1.<input type="text" @input="setBookQuestion" class="input-bottom-border w90"
                                v-model="questionData.tx.nineteen" /></p>
                        <p>2.<input type="text" @input="setBookQuestion" class="input-bottom-border w90"
                                v-model="questionData.tx.twenty" /></p>
                        <p>3.<input type="text" @input="setBookQuestion" class="input-bottom-border w90"
                                v-model="questionData.tx.twentyOne" /></p>
                        <div class="fieldset-9">
                            <p class="center"><b>Useful Expressions</b></p>
                            <p><b>Strong work ethic you should develop:</b></p>
                            <p>Hard work</p>
                            <p>Dedication</p>
                            <p>Discipline</p>
                            <p>Productivity</p>
                            <p>Teamwork</p>
                            <p>Responsibility</p>
                            <p>Determination</p>
                            <p>Professionalism</p>
                            <p><b>Bad work ethic you should avoid:</b></p>
                            <p>Procrastination</p>
                            <p>Inefficiency</p>
                            <p>Irresponsibility</p>
                            <p>Passiveness</p>
                            <p>Tardiness</p>
                            <p>Unprofessional behavior</p>
                        </div>
                        <div 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/7-3、MODULE 7(lesson three)_01.jpg" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/7-3、MODULE 7(lesson three)_02.jpg" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/7-3、MODULE 7(lesson three)_03.jpg" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/7-3、MODULE 7(lesson three)_04.jpg" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/7-3、MODULE 7(lesson three)_05.jpg" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/7-3、MODULE 7(lesson three)_06.jpg" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/7-3、MODULE 7(lesson three)_07.jpg" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/7-3、MODULE 7(lesson three)_08.jpg" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/7-3、MODULE 7(lesson three)_09.jpg" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/7-3、MODULE 7(lesson three)_10.jpg" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/7-3、MODULE 7(lesson three)_11.jpg" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/7-3、MODULE 7(lesson three)_12.jpg" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/7-3、MODULE 7(lesson three)_13.jpg" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/7-3、MODULE 7(lesson three)_14.jpg" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/7-3、MODULE 7(lesson three)_15.jpg" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/7-3、MODULE 7(lesson three)_16.jpg" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/7-3、MODULE 7(lesson three)_17.jpg" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/7-3、MODULE 7(lesson three)_18.jpg" />
                                            </div>
                                        </div>
                                        <div class="swiper-slide">
                                            <div class="imgBox" style="width: 100%; height: 100%">
                                                <img src="../../assets/images/ppt/7-3、MODULE 7(lesson three)_19.jpg" />
                                            </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">134</span>
                </div>
            </div>
        </div>
    </div>
</template>
<script>
import matching from "@/components/matching/matching.vue";
import { getResourcePath } from "@/assets/methods/resources";
export default {
    name: "chapterSeven",
    components: { matching },
    props: {
        showPageList: {
            type: Array,
        },
    },
    data() {
        return {
            correctIcon: require('@/assets/images/correct.svg'),
            errorIcon: require('@/assets/images/error.svg'),
            imgThirteen: require("../../assets/images/grammar7-1.png"),
            imgThirteenOne: require("../../assets/images/grammar7-2.png"),
            showAnswerOne: false,
            showAnswerTwo: false,
            showAnswerThree: false,
            showAnswerFour: false,
            showAnswerFive: false,
            showAnswerSix: false,
            showAnswerSeven: false,
            showAnswerEight: false,
            showAnswerNine: false,
            showImg: false,
            showImgOne: false,
            showQuestionAnswer: false,
            rawData: {
                left: [
                    {
                        oldId: "FB34",
                        txt: "Angela",
                    },
                    {
                        oldId: "64D6",
                        txt: "Jim",
                    },
                    {
                        oldId: "2ED4",
                        txt: "Sheila",
                    },
                    {
                        oldId: "44DE",
                        txt: "Jefff",
                    },
                ],
                right: [
                    {
                        oldId: "64D6",
                        txt: "delaying his financial report for a month",
                    },
                    {
                        oldId: "FB34",
                        txt: "learning some new skills about insurance",
                    },
                    {
                        oldId: "44DE",
                        txt: "almost never showing up at the ofce on time",
                    },
                    {
                        oldId: "2ED4",
                        txt: "always complaining about her tasks to others",
                    },
                ],
            },
            value: [],
            question: {
                KnowledgePoint: "123",
                analysis: "123",
                answer: [
                    {
                        id: "FB34",
                        linkValue:
                            "learning some new skills about insurance",
                        value: "Angela",
                    },
                    {
                        id: "64D6",
                        linkValue:
                            "delaying his financial report for a month",
                        value: "Jim",
                    },
                    {
                        id: "2ED4",
                        linkValue:
                            "always complaining about her tasks to others",
                        value: "Sheila",
                    },
                    {
                        id: "44DE",
                        linkValue:
                            "almost never showing up at the ofce on time",
                        value: "Jeff",
                    },
                ],
                optionStyle: undefined,
                id: 489306,
                options: {
                    linkValues: [
                        {
                            oldId: "64D6",
                            txt: "delaying his financial report for a month",
                        },
                        {
                            oldId: "FB34",
                            txt: "learning some new skills about insurance",
                        },
                        {
                            oldId: "44DE",
                            txt: "almost never showing up at the ofce on time",
                        },
                        {
                            oldId: "2ED4",
                            txt: "always complaining about her tasks to others",
                        },
                    ],
                    values: [
                        {
                            oldId: "FB34",
                            txt: "Angela",
                        },
                        {
                            oldId: "64D6",
                            txt: "Jim",
                        },
                        {
                            oldId: "2ED4",
                            txt: "Sheila",
                        },
                        {
                            oldId: "44DE",
                            txt: "Jefff",
                        },
                    ],
                },
                questionType: "matching",
                stem: {
                    stemTxt: "按顺序连线",
                },
                stemStyle: undefined,
                titleDescription: "1",
                userChoise: [],
                value: [],
                answerImg: require("../../assets/images/M7matching-one.png"),
            },
            questionData: {
                tx: {
                    one: "",
                    two: "",
                    three: "",
                    four: "",
                    five: "",
                    six: "",
                    seven: "",
                    eight: "",
                    nine: "",
                    ten: "",
                    eleven: "",
                    twelve: "",
                    thirteen: "",
                    fourteen: "",
                    fifteen: "",
                    sixteen: "",
                    seventeen: "",
                    eighteen: "",
                    nineteen: "",
                    twenty: "",
                    twentyOne: "",
                },
                ip: {
                    one: "",
                    two: "",
                    three: "",
                    four: "",
                    five: "",
                    six: "",
                    seven: "",
                    eight: "",
                    nine: "",
                    ten: "",
                },
                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: "",
                    fortyTwo: "",
                },
            },
            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: "",
            },
            //new
            dropdownData: {
                isComplete: false,
                dp: {
                    dropDownList: [
                        "HR department",
                        "R & D department",
                        "CEO office",
                        "Finance department",
                        "Production department",
                        "Marketing department",
                        "Administration office",
                    ],
                    one: {
                        value: "",
                        isRight: null,
                        answer: "Administration office",
                    },
                    two: {
                        value: "",
                        isRight: null,
                        answer: "HR department",
                    },
                    three: {
                        value: "",
                        isRight: null,
                        answer: "Marketing department",
                    },
                    four: {
                        value: "",
                        isRight: null,
                        answer: "R & D department",
                    },
                    five: {
                        value: "",
                        isRight: null,
                        answer: "Finance department",
                    },
                    six: {
                        value: "",
                        isRight: null,
                        answer: "CEO office",
                    },
                    seven: {
                        value: "",
                        isRight: null,
                        answer: "Production department",
                    },
                }
 
 
            },
            readingOne:[
                {
                    type: "fill",
                    isShowAnswer: false,
                    value: [
                        {
                            answer: 'excellence',
                            userAnswer: '',
                            isRight: null
                        },
                        {
                            answer: 'whatever',
                            userAnswer: '',
                            isRight: null
                        },
                        {
                            answer: 'focus',
                            userAnswer: '',
                            isRight: null
                        },
                        {
                            answer: 'quality',
                            userAnswer: '',
                            isRight: null
                        },
                        {
                            answer: 'opportunities',
                            userAnswer: '',
                            isRight: null
                        },
                        {
                            answer: 'benefit',
                            userAnswer: '',
                            isRight: null
                        },
                    ]
                },
            ],
            questionDataOne: [
                {
                    type: "fill",
                    isComplete: false,
                    isShowAnswer: false,
                    value: [
                        {
                            stemOne: 'Wang takes a high-risk job on high-voltage power lines as',
                            stemTwo: '.',
                            answer: 'a team leader',
                            userAnswer: '',
                            isRight: null
                        },
                        {
                            stemOne: 'Wang Jin felt',
                            stemTwo: 'when he first touched the power line.',
                            answer: '(really) scared',
                            userAnswer: '',
                            isRight: null
                        },
                        {
                            stemOne: 'Wang finished the world’s first repair work on a 660-kilovolt',
                            stemTwo: '.',
                            answer: 'live-transmission line',
                            userAnswer: '',
                            isRight: null
                        },
                        {
                            stemOne: 'The innovation center uses',
                            stemTwo: 'for line inspection and maintenance.',
                            answer: 'drones and operators',
                            userAnswer: '',
                            isRight: null
                        },
                        {
                            stemOne: 'By 2020,a total of 35 UHV projects had been completed or',
                            stemTwo: '.',
                            answer: 'were under construction',
                            userAnswer: '',
                            isRight: null
                        },
                    ]
                },
                {
                    type: 'select',
                    isShowAnswer: false,
                    isComplete: false,
                    option: ['1', '2', '3', '4', '5'],
                    value: [
                        {
                            stem: 'Wang got one of the highest national awards for his superior performance.',
                            answer: '3',
                            userAnswer: '',
                            isRight: null
 
                        },
                        {
                            stem: 'Wang and his colleagues set up an innovation center to meet new work demand.',
                            answer: '1',
                            userAnswer: '',
                            isRight: null
                        },
                        {
                            stem: 'Wang was really afraid when he first touched the ultra-high-voltage line.',
                            answer: '2',
                            userAnswer: '',
                            isRight: null
                        },
                        {
                            stem: 'Wang and his colleagues want to create an digital and intelligent line inspection system..',
                            answer: '5',
                            userAnswer: '',
                            isRight: null
                        },
                        {
                            stem: 'Wang and his colleagues use drones for checking and repairing the lines.',
                            answer: '4',
                            userAnswer: '',
                            isRight: null
                        },
                    ]
                },
                {
                    type: 'fill',
                    isShowAnswer: false,
                    isComplete: false,
                    value: [
                        {
                            answer: 'challenges',
                            userAnswer: '',
                            isRight: null,
                        },
                        {
                            answer: 'coworkers',
                            userAnswer: '',
                            isRight: null,
                        },
                        {
                            answer: 'contact',
                            userAnswer: '',
                            isRight: null,
                        },
                        {
                            answer: 'capacities',
                            userAnswer: '',
                            isRight: null,
                        },
                        {
                            answer: 'performed',
                            userAnswer: '',
                            isRight: null,
                        },
                        {
                            answer: 'achieved',
                            userAnswer: '',
                            isRight: null,
                        },
                    ]
 
                },
                {
                    type: 'text',
                    isComplete: false,
                    isShowAnswer: false,
                    value: [
                        {
                            userAnswer: "",
                            answer: "The command post was set up in a forward position."
                        },
                        {
                            userAnswer: "",
                            answer: "My family members give me many supports for my study."
                        },
                        {
                            userAnswer: "",
                            answer: "In China, many projects are under construction in rural areas."
                        },
                        {
                            userAnswer: "",
                            answer: "Thanks to my insistence, I finally climbed the mountain."
                        },
                        {
                            userAnswer: "",
                            answer: "We rarely suffer power outage in recent 10 years in big cities. "
                        },
                    ]
                },
                {
                    type: 'text',
                    isComplete: false,
                    isShowAnswer: false,
                    value: [
                        {
                            stem: "If you want to achieve a higher working goal,you need to consider it carefully right now.",
                            userAnswer: "",
                            answer: "如果你想达到更高的工作目标,现在就要仔细思考。"
                        },
                        {
                            stem: "To go for technical innovation,one must have the fearless spirit of a pathbreaker.",
                            userAnswer: "",
                            answer: "搞技术革新就要有一股不怕困难的闯劲。"
                        },
                        {
                            stem: "You need keep in contact with your customers when some problems arise.",
                            userAnswer: "",
                            answer: "当出现一些问题时,你需要与你的客户保持联系。"
                        },
                        {
                            stem: "Those employees believe that challenges offer opportunities to learn.",
                            userAnswer: "",
                            answer: "那些员工相信挑战给他们提供了学习的机会。"
                        },
                    ]
                },
                {
                    type: 'text',
                    isComplete: false,
                    isShowAnswer: false,
                    value: [
                        {
                            num: 0,
                            stem: "The simple past tense:",
                            userAnswerOne: "",
                            userAnswerTwo: "",
                            answerOne: "He touched the power line.",
                            answerTwo: "Wang felt dizzy.",
                        },
                        {
                            num: 2,
                            stem: "The past perfect tense:",
                            userAnswerOne: "",
                            userAnswerTwo: "",
                            answerOne: "Wang Jin had achieved more than 30 technological innovations.",
                            answerTwo: "A total of 35 UHV projects had been completed.",
                        },
 
                    ]
                },
                {
                    type: "fills",
                    isComplete: false,
                    isShowAnswer: false,
                    value: [
                        {
                            stemOne: 'He',
                            stemTwo: 'more than 20 technological innovations before he turned 35.(achieve)',
                            answer: 'had achieved',
                            userAnswer: ''
                        },
                        {
                            stemOne: 'She',
                            stemTwo: '(give) a lot of financial support to animal protection organizations in 2022.',
                            answer: 'gave',
                            userAnswer: ''
                        },
                        {
                            stemOne: 'She didn’t go to bed until she',
                            stemTwo: 'her work.(finish)',
                            answer: 'had finished',
                            userAnswer: ''
                        },
                        {
                            stemOne: 'He',
                            stemTwo: 'many awards because of his hard work last year.(win)',
                            answer: 'won',
                            userAnswer: ''
                        },
                        {
                            stemOne: 'They',
                            stemTwo: 'more technologies for line repairing by 2021.(introduce)',
                            answer: 'had introduced',
                            userAnswer: ''
                        },
                    ]
                },
            ],
            warmUp: [
                {
                    type: "select",
                    isComplete: false,
                    isShowAnswer: false,
                    option: ["no bribery", "punctual", "attentive", "gossiping"],
                    value: [
                        {
                            answer: 'attentive',
                            userAnswer: '',
                            isRight: null,
                        },
                        {
                            answer: 'gossiping',
                            userAnswer: '',
                            isRight: null,
                        },
                        {
                            answer: 'no bribery',
                            userAnswer: '',
                            isRight: null,
                        },
                        {
                            answer: 'punctual',
                            userAnswer: '',
                            isRight: null,
                        },
                    ]
                }
            ],
            questionDataTwo: [
                {
                    type: "fill",
                    isComplete: false,
                    isShowAnswer: false,
                    value: [
                        {
                            stemOne: 'Call me if you have any problems',
                            stemTwo: 'your work.',
                            answer: 'regarding',
                            userAnswer: '',
                            isRight: null
                        },
                        {
                            stemOne: 'Two questions often',
                            stemTwo: 'first-time corporate investors.',
                            answer: 'bother',
                            userAnswer: '',
                            isRight: null
                        },
                        {
                            stemOne: 'Babies need',
                            stemTwo: 'attention.',
                            answer: 'constant',
                            userAnswer: '',
                            isRight: null
                        },
                        {
                            stemOne: 'She',
                            stemTwo: 'to me about his rudeness.',
                            answer: 'addressed',
                            userAnswer: '',
                            isRight: null
                        },
                        {
                            stemOne: 'Please',
                            stemTwo: 'all complaints to the manager.',
                            answer: 'complain',
                            userAnswer: '',
                            isRight: null
                        },
                    ]
                },
                {
                    type: 'text',
                    isComplete: false,
                    isShowAnswer: false,
                    value: [
                        {
                            userAnswer: "",
                            answer: "It depends on personal views of employees, their motivation, and overall company culture."
                        },
                        {
                            userAnswer: "",
                            answer: "Angela’s director asked her to sort out data about the patients and insurance."
                        },
                        {
                            userAnswer: "",
                            answer: "Rather than giving up, Angela decides to expand her skills."
                        },
                        {
                            userAnswer: "",
                            answer: "Rather than starting early, he leaves it to the last minute and turns in an incomplete report. "
                        },
                        {
                            userAnswer: "",
                            answer: "However, she never addresses her complaints to the director."
                        },
                    ]
                },
                {
                    type: "fill",
                    isComplete: false,
                    isShowAnswer: false,
                    value: [
                        {
                            stemOne: 'I’d like to go to the theatre tonight,',
                            stemTwo: 'I’m too busy.',
                            answer: 'but',
                            userAnswer: ''
                        },
                        {
                            stemOne: 'Your delay shows a lack of respect for the job',
                            stemTwo: 'fellow coworkers.',
                            answer: 'and',
                            userAnswer: ''
                        },
                        {
                            stemOne: 'Work ethic can be strong',
                            stemTwo: 'poor.',
                            answer: 'or',
                            userAnswer: ''
                        },
                        {
                            stemOne: 'She is bothered by the tasks,',
                            stemTwo: 'she never complains.',
                            answer: 'but',
                            userAnswer: ''
                        },
                        {
                            stemOne: 'All the employees should show up on time',
                            stemTwo: 'even earlier.',
                            answer: 'or',
                            userAnswer: ''
                        },
                    ]
                },
            ],
            questionDataThree: [
                {
                    type: "checkBox",
                    isComplete: false,
                    isShowAnswer: false,
                    option: [
                        "His car broke down.",
                        "His clock was broken.",
                        "His phone was out of battery.",
                        "He was ill.",
                        "His car was borrowed.",
                        "His phone was out of service.",
                        "He didn’t get on the subway.",
                        "He was squeezed out of the bus.",
                    ],
                    answer: [
                        "His car broke down.",
                        "His clock was broken.",
                        "His phone was out of battery.",
                        "He didn’t get on the subway.",
                        "He was squeezed out of the bus.",
                    ],
                    userAnswer: [
 
                    ]
                },
                {
                    type: "fill",
                    isComplete: false,
                    isShowAnswer: false,
                    value: [
                        {
                            answer: 'what is your suggestion',
                            userAnswer: '',
                            isRight: null
                        },
                        {
                            answer: 'It would be better',
                            userAnswer: '',
                            isRight: null
                        },
                        {
                            answer: 'Your suggestion sounds like a good idea',
                            userAnswer: '',
                            isRight: null
                        },
                        {
                            answer: 'I agree with you',
                            userAnswer: '',
                            isRight: null
                        },
                        {
                            answer: 'will release a warning notice',
                            userAnswer: '',
                            isRight: null
                        },
                    ]
                },
            ],
            warmUpOne: [
                {
                    type: "select",
                    isComplete: false,
                    isShowAnswer: false,
                    option: [
                        "in order of escalation",
                        "you have committed the following actions",
                        "you received a verbal warning",
                        "help you improve your performance to meet our quality standards",
                        "job suspension without pay for one workweek",
                    ],
                    value: [
                        {
                            answer: 'you have committed the following actions ',
                            userAnswer: '',
                            isRight: null,
                        },
                        {
                            answer: 'you received a verbal warning',
                            userAnswer: '',
                            isRight: null,
                        },
                        {
                            answer: 'in order of escalation',
                            userAnswer: '',
                            isRight: null,
                        },
                        {
                            answer: 'job suspension without pay for one workweek',
                            userAnswer: '',
                            isRight: null,
                        },
                        {
                            answer: 'help you improve your performance to meet our quality standards',
                            userAnswer: '',
                            isRight: null,
                        },
                    ]
                }
            ],
 
        };
    },
    mounted() {
        const testData = localStorage.getItem("english-testOne");
        if (testData) {
            this.testData = JSON.parse(testData);
        }
        const bookQuestion = localStorage.getItem("english-book-chapter07-question-one");
        if (bookQuestion) {
            this.questionData = JSON.parse(bookQuestion);
        }
        const dropdownData = localStorage.getItem("english-chapter-7-warmup-dropdown");
        if (dropdownData) {
            this.dropdownData = JSON.parse(dropdownData);
        }
 
        const questionDataOne = localStorage.getItem("english-chapter-7-questionDataOne");
        if (questionDataOne) {
            this.questionDataOne = JSON.parse(questionDataOne);
        }
 
        const warmUp = localStorage.getItem("english-chapter-7-warmUp");
        if (warmUp) {
            this.warmUp = JSON.parse(warmUp);
        }
 
        const warmUpOne = localStorage.getItem("english-chapter-7-warmUpOne");
        if (warmUpOne) {
            this.warmUpOne = JSON.parse(warmUpOne);
        }
 
        const questionDataTwo = localStorage.getItem("english-chapter-7-questionDataTwo");
        if (questionDataTwo) {
            this.questionDataTwo = JSON.parse(questionDataTwo);
        }
 
        const questionDataThree = localStorage.getItem("english-chapter-7-questionDataThree");
        if (questionDataThree) {
            this.questionDataThree = JSON.parse(questionDataThree);
        }
 
        const readingOne = localStorage.getItem("english-chapter07-readingOne");
        if (readingOne) {
            this.readingOne = JSON.parse(readingOne);
        }
 
        this.getPath();
    },
    methods: {
        isTextRight(answer, data, num) {
            let flag = null;
            answer[num] ? flag = answer[num] == data : flag = false;
            return flag;
        },
        isShowRight(answer, userAnswer, data) {
            let flag = null;
            if (userAnswer.indexOf(data) > -1) {
                flag = answer.indexOf(data) > -1 ? true : false;
            }
            return flag;
        },
        setTestData() {
            localStorage.setItem("english-testOne", JSON.stringify(this.testData));
        },
        changeTestData() {
            localStorage.removeItem("english-testOne");
            this.testData = {
                check: {
                    isRight: null,
                    answer: ["Culture", "Cuisine", "Landscapes"],
                    value: []
                },
                tx: {
                    one: "",
                    two: "",
                    three: "",
                    four: "",
                    five: "",
                },
                in: {
                    one: "",
                    two: "",
                    three: "",
                    four: "",
                    five: "",
                    isRight: null,
                    answer: ['uisine', 'andscapes', 'ivilization', 'xplore', 'nique']
                },
                line: {
                    one: "",
                    two: "",
                    three: "",
                    four: "",
                    five: "",
                },
                ts: {
                    one: "",
                    two: "",
                    three: "",
                    four: "",
                },
                gr: {
                    one: "",
                    two: "",
                    three: "",
                    four: "",
                    five: "",
                },
                cm: {
                    one: "",
                    two: "",
                    three: "",
                    four: "",
                    five: "",
                },
            };
        },
        setBookQuestion() {
            console.log("保存");
            localStorage.setItem(
                "english-book-chapter07-question-one",
                JSON.stringify(this.questionData)
            );
        },
        async getPath() {
            this.resource.listenOne = await getResourcePath(
                "20D9B02E3B0C95E7CD524224C57E643A"
            );
            this.resource.readingOne = await getResourcePath(
                "01A4E8C1E8E2801EF48DDBBA3E4A30BD"
            );
            this.resource.readingTwo = await getResourcePath(
                "8D5057637DBB959B365E38360121FB41"
            );
            this.resource.readingThree = await getResourcePath(
                "113D24C2D701120C0F6283A72F9F4366"
            );
            this.resource.readingFour = await getResourcePath(
                "DE0C4081FE1FFE2374EDB989609B25E9"
            );
            this.resource.listenTwo = await getResourcePath(
                "DB59D9F65B437605F766F7975026B61D"
            );
            this.resource.listenThree = await getResourcePath(
                "53543E43DC90215C21CFC432D46CAB18"
            );
        },
        showAnswer(type) {
            if (type == "showImg") {
                this.showImg = !this.showImg;
            } else if (type == "showImgOne") {
                this.showImgOne = !this.showImgOne;
            }
            setTimeout(() => { this.$emit("initViewer", "") }, 500)
        },
        handleQuestion(type) {
            if (type == "one") {
                this.questionData.warnUp.one.value
                    ? (this.questionData.warnUp.one.isRight =
                        this.questionData.warnUp.one.value == "Chinese knot")
                    : (this.questionData.warnUp.one.isRight = null);
            } else if (type == "two") {
                this.questionData.warnUp.two.value
                    ? (this.questionData.warnUp.two.isRight =
                        this.questionData.warnUp.two.value == "Chinese medicine")
                    : (this.questionData.warnUp.two.isRight = null);
            } else if (type == "three") {
                this.questionData.warnUp.three.value
                    ? (this.questionData.warnUp.three.isRight =
                        this.questionData.warnUp.three.value == "Chinese calligraphy")
                    : (this.questionData.warnUp.three.isRight = null);
            } else if (type == "four") {
                this.questionData.warnUp.four.value
                    ? (this.questionData.warnUp.four.isRight =
                        this.questionData.warnUp.four.value == "Taichi")
                    : (this.questionData.warnUp.four.isRight = null);
            } else if (type == "five") {
                this.questionData.warnUp.five.value
                    ? (this.questionData.warnUp.five.isRight =
                        this.questionData.warnUp.five.value == "sweet dumpling")
                    : (this.questionData.warnUp.five.isRight = null);
            } else if (type == "six") {
                this.questionData.warnUp.six.value
                    ? (this.questionData.warnUp.six.isRight =
                        this.questionData.warnUp.six.value == "Chinese chess")
                    : (this.questionData.warnUp.six.isRight = null);
            }
        },
        audioPlay() {
            this.$emit("closeMiniAudio");
        },
        //new
        setDropdownData() {
            localStorage.setItem(
                "english-chapter-7-warmup-dropdown",
                JSON.stringify(this.dropdownData)
            );
        },
        handleDropdownData() {
            const dropdownDatas = this.dropdownData;
            for (let key in dropdownDatas) {
                const item = dropdownDatas[key]
                if (key != "isComplete") {
                    for (let keys in item) {
                        const citem = item[keys]
                        if (keys != "dropDownList") {
                            if (citem.value) {
                                citem.value == citem.answer ? citem.isRight = true : citem.isRight = false;
                            }
                        }
                    }
                }
            }
            this.dropdownData = dropdownDatas;
            this.$set(this.dropdownData, "isComplete", true);
            this.setDropdownData();
        },
        handleQuestionDataOne() {
            for (let index = 0; index < this.questionDataOne.length; index++) {
                const item = this.questionDataOne[index];
                item.isComplete = true;
                item.isShowAnswer = true;
                if (item.type == "fill" || item.type == "select") {
                    for (let cindex = 0; cindex < item.value.length; cindex++) {
                        const citem = item.value[cindex];
                        citem.isRight = citem.answer == citem.userAnswer;
                    }
                }
            }
        },
        setQuestionDataOne() {
            localStorage.setItem(
                "english-chapter-7-questionDataOne",
                JSON.stringify(this.questionDataOne)
            );
        },
        recastQuestionDataOne() {
            localStorage.removeItem("english-chapter-7-questionDataOne");
            for (let index = 0; index < this.questionDataOne.length; index++) {
                const item = this.questionDataOne[index];
                item.isComplete = false;
                item.isShowAnswer = false;
                if (item.type == "fill" || item.type == "select") {
                    for (let cindex = 0; cindex < item.value.length; cindex++) {
                        const citem = item.value[cindex];
                        citem.isRight = null;
                        citem.userAnswer = "";
                    }
                } else {
                    for (let dindex = 0; dindex < item.value.length; dindex++) {
                        const ditem = item.value[dindex];
                        ditem.userAnswer = "";
                        ditem.userAnswerOne = "";
                        ditem.userAnswerTwo = "";
                    }
                }
            }
        },
        viewQuestionDataOne() {
            for (let index = 0; index < this.questionDataOne.length; index++) {
                const item = this.questionDataOne[index];
                item.isShowAnswer = !item.isShowAnswer
            }
        },
        handleWarmUp() {
            for (let index = 0; index < this.warmUp.length; index++) {
                const item = this.warmUp[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;
                }
            }
        },
        setWarmUp() {
            localStorage.setItem(
                "english-chapter-7-warmUp",
                JSON.stringify(this.warmUp)
            );
        },
        recastWarmUp() {
            localStorage.removeItem("english-chapter-7-warmUp");
            for (let index = 0; index < this.warmUp.length; index++) {
                const item = this.warmUp[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 = "";
                }
 
            }
        },
        viewWarmUp() {
            for (let index = 0; index < this.warmUp.length; index++) {
                const item = this.warmUp[index];
                item.isShowAnswer = !item.isShowAnswer
            }
        },
        handleWarmUpOne() {
            for (let index = 0; index < this.warmUpOne.length; index++) {
                const item = this.warmUpOne[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;
                }
            }
        },
        setWarmUpOne() {
            localStorage.setItem(
                "english-chapter-7-warmUpOne",
                JSON.stringify(this.warmUpOne)
            );
        },
        recastWarmUpOne() {
            localStorage.removeItem("english-chapter-7-warmUpOne");
            for (let index = 0; index < this.warmUpOne.length; index++) {
                const item = this.warmUpOne[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 = "";
                }
 
            }
        },
        viewWarmUpOne() {
            for (let index = 0; index < this.warmUpOne.length; index++) {
                const item = this.warmUpOne[index];
                item.isShowAnswer = !item.isShowAnswer
            }
        },
 
        handleQuestionDataTwo() {
            for (let index = 0; index < this.questionDataTwo.length; index++) {
                const item = this.questionDataTwo[index];
                item.isComplete = true;
                item.isShowAnswer = true;
                if (item.type == "fill") {
                    for (let cindex = 0; cindex < item.value.length; cindex++) {
                        const citem = item.value[cindex];
                        citem.isRight = citem.answer == citem.userAnswer;
                    }
                }
            }
        },
        setQuestionDataTwo() {
            localStorage.setItem(
                "english-chapter-7-questionDataTwo",
                JSON.stringify(this.questionDataTwo)
            );
        },
        recastQuestionDataTwo() {
            localStorage.removeItem("english-chapter-7-questionDataTwo");
            for (let index = 0; index < this.questionDataTwo.length; index++) {
                const item = this.questionDataTwo[index];
                item.isComplete = false;
                item.isShowAnswer = false;
                if (item.type == "fill") {
                    for (let cindex = 0; cindex < item.value.length; cindex++) {
                        const citem = item.value[cindex];
                        citem.isRight = null;
                        citem.userAnswer = "";
                    }
                } else {
                    for (let dindex = 0; dindex < item.value.length; dindex++) {
                        const ditem = item.value[dindex];
                        ditem.userAnswer = "";
                    }
                }
            }
        },
        viewQuestionDataTwo() {
            for (let index = 0; index < this.questionDataTwo.length; index++) {
                const item = this.questionDataTwo[index];
                item.isShowAnswer = !item.isShowAnswer
            }
        },
        handleQuestionDataThree() {
            for (let index = 0; index < this.questionDataThree.length; index++) {
                const item = this.questionDataThree[index];
                item.isComplete = true;
                item.isShowAnswer = true;
                if (item.type == "fill") {
                    for (let cindex = 0; cindex < item.value.length; cindex++) {
                        const citem = item.value[cindex];
                        citem.isRight = citem.answer == citem.userAnswer;
                    }
                }
            }
        },
        setQuestionDataThree() {
            localStorage.setItem(
                "english-chapter-7-questionDataThree",
                JSON.stringify(this.questionDataThree)
            );
        },
        recastQuestionDataThree() {
            localStorage.removeItem("english-chapter-7-questionDataThree");
            for (let index = 0; index < this.questionDataThree.length; index++) {
                const item = this.questionDataThree[index];
                item.isComplete = false;
                item.isShowAnswer = false;
                if (item.type == "fill") {
                    for (let cindex = 0; cindex < item.value.length; cindex++) {
                        const citem = item.value[cindex];
                        citem.isRight = null;
                        citem.userAnswer = "";
                    }
                } else {
                    item.userAnswer = [];
                }
            }
        },
        viewQuestionDataThree() {
            for (let index = 0; index < this.questionDataThree.length; index++) {
                const item = this.questionDataThree[index];
                item.isShowAnswer = !item.isShowAnswer
            }
        },
        saveReadingOne() {
            localStorage.setItem('english-chapter07-readingOne', JSON.stringify(this.readingOne))
        },
        handleReadingOne(){
            for (let index = 0; index < this.readingOne.length; index++) {
                const item = this.readingOne[index];
                for (let cindex = 0; cindex < item.value.length; cindex++) {
                    const citem = item.value[cindex];
                    if(citem.userAnswer != ""){
                        citem.isRight = citem.answer == citem.userAnswer
                    }else{
                        citem.isRight=null
                    }
                }   
            }
            this.saveReadingOne()
        },
        viewReadingOne(){
            for (let index = 0; index < this.readingOne.length; index++) {
                const item = this.readingOne[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;
    }
}
</style>