-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
1204 lines (1192 loc) · 40.5 KB
/
app.js
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
// app.ts
// #8a8a8a 底部tobBar 默认
// #2693ff 系统蓝色
// 淡蓝色 #97bdde 在 用背景
// #f9f9f9 tobBar 背景色
App({
onLaunch: function () {
if (!wx.cloud) {
console.error('请使用。。。。。。')
} else {
wx.cloud.init({
traceUser: true,
})
}
// 展示本地存储能力
const logs = wx.getStorageSync('logs') || []
logs.unshift(Date.now())
wx.setStorageSync('logs', logs)
// 获取系统信息
const systemInfo = wx.getSystemInfoSync();
// 胶囊按钮位置信息
const menuButtonInfo = wx.getMenuButtonBoundingClientRect();
// 导航栏高度 = 状态栏高度 + 44
this.globalData.navBarHeight = systemInfo.statusBarHeight + 44;
this.globalData.menuRight = systemInfo.screenWidth - menuButtonInfo.right;
this.globalData.menuTop = menuButtonInfo.top;
this.globalData.menuHeight = menuButtonInfo.height;
},
globalData: {
daySentence1: "",
daySentence2: "",
daySentence3: "",
navBarHeight: 0, // 导航栏高度
menuRight: 0, // 胶囊距右方间距(方保持左、右间距一致)
menuTop: 0, // 胶囊距底部间距(保持底部间距一致)
menuHeight: 0, // 胶囊高度(自定义内容可与胶囊高度保证一致)
books: [{
"_id": "CET4",
"title": "四级核心词 『CET4』",
"desc": "CET4",
"name": "四级核心词",
"wordsNumber": 1162,
"peopleNumber": 200.0,
"image": "../../images/books/book-CET4.png"
},
{
"_id": "CET6",
"title": "六级核心词 『CET6』",
"desc": "CET6",
"name": "六级核心词",
"wordsNumber": 1228,
"peopleNumber": 140.0,
"image": "../../images/books/book-CET6.png"
},
{
"_id": "kaoYan",
"title": "考研必考词 『考研』",
"desc": "考研",
"name": "考研必考词",
"wordsNumber": 1341,
"peopleNumber": 165.0,
"image": "../../images/books/book-kaoYan.png"
},
{
"_id": "CET4Full",
"title": "四级大纲词 『CET4+』",
"desc": "CET4+",
"name": "四级大纲词",
"wordsNumber": 3739,
"peopleNumber": 0.0,
"image": "../../images/books/book-CET4Full.png"
},
{
"_id": "CET6Full",
"title": "六级大纲词 『CET6+』",
"desc": "CET6+",
"name": "六级大纲词",
"wordsNumber": 2078,
"peopleNumber": 0.0,
"image": "../../images/books/book-CET6Full.png"
},
{
"_id": "kaoYanFull",
"title": "考研大纲词汇 『考研+』",
"desc": "考研+",
"name": "考研大纲词汇",
"wordsNumber": 4533,
"peopleNumber": 0.0,
"image": "../../images/books/book-kaoYanFull.png"
},
{
"_id": "middle",
"title": "中考大纲词 『中考』",
"desc": "中考",
"name": "中考大纲词",
"wordsNumber": 1420,
"peopleNumber": 203.0,
"image": "../../images/books/book-middle.png"
},
{
"_id": "primary",
"title": "小学词汇 『小学』",
"desc": "小学",
"name": "小学词汇",
"wordsNumber": 611,
"peopleNumber": 125.0,
"image": "../../images/books/book-primary.png"
},
{
"_id": "high",
"title": "高考大纲词汇 『高考』",
"desc": "高考",
"name": "高考大纲词汇",
"wordsNumber": 3668,
"peopleNumber": 135.0,
"image": "../../images/books/book-high.png"
},
{
"_id": "IELTS",
"title": "雅思大纲词 『雅思』",
"desc": "雅思",
"name": "雅思大纲词",
"wordsNumber": 3427,
"peopleNumber": 0.0,
"image": "../../images/books/book-IELTS.png"
},
{
"_id": "BEC",
"title": "商务英语词汇 『商务』",
"desc": "商务",
"name": "商务英语",
"wordsNumber": 2753,
"peopleNumber": 0.0,
"image": "../../images/books/book-BEC.png"
},
{
"_id": "random",
"title": "随机所有词汇 『随机』",
"desc": "随机",
"name": "随机所有词汇",
"wordsNumber": 25960,
"peopleNumber": "2万+",
"image": "../../images/books/book-random.png"
},
],
value:0,
mybook: 0,
everydayWord: 100,
learnedWord: 0,
remWord: [{
"wordRank": 1,
"headWord": "revolt",
"content": {
"word": {
"wordHead": "revolt",
"wordId": "KaoYanluan_1_1",
"content": {
"sentence": {
"sentences": [{
"sContent": "The prime minister is now facing a revolt by members of his own party.",
"sCn": "首相现在面临着党内倒戈。"
}, {
"sContent": "the Polish revolt of 1863",
"sCn": "1863年的波兰起义"
}, {
"sContent": "It was feared that the army would revolt against the government.",
"sCn": "有人担心军队会挥戈反对政府。"
}, {
"sContent": "Some members of the government may revolt against this proposed legislation.",
"sCn": "一些政府成员可能会反对这项拟议中的法规。"
}],
"desc": "例句"
},
"usphone": "rɪ'volt",
"ukspeech": "revolt&type=1",
"star": 0,
"usspeech": "revolt&type=2",
"syno": {
"synos": [{
"pos": "vi",
"tran": "反抗;反叛;反感,厌恶",
"hwds": [{
"w": "strive against"
}, {
"w": "come out against"
}]
}, {
"pos": "vt",
"tran": "使反感;使恶心",
"hwds": [{
"w": "sicken"
}]
}, {
"pos": "n",
"tran": "反抗;叛乱;反感",
"hwds": [{
"w": "resistance"
}, {
"w": "hate"
}, {
"w": "rebellion"
}]
}],
"desc": "同近"
},
"ukphone": "rɪ'vəʊlt",
"phrase": {
"phrases": [{
"pContent": "in revolt",
"pCn": "反抗;造反"
}, {
"pContent": "revolt against",
"pCn": "反感;厌恶"
}, {
"pContent": "revolt at",
"pCn": "厌恶;憎恶"
}],
"desc": "短语"
},
"phone": "ri'vəult, -'vɔ:lt",
"speech": "revolt",
"remMethod": {
"val": "re(背)+volt(转)→把背转过来对着人→反抗",
"desc": "记忆"
},
"relWord": {
"desc": "同根",
"rels": [{
"pos": "adj",
"words": [{
"hwd": "revolting",
"tran": "叛乱的;背叛的;讨厌的"
}]
}, {
"pos": "adv",
"words": [{
"hwd": "revoltingly",
"tran": "背叛地;讨厌地;令人恶心地"
}]
}, {
"pos": "v",
"words": [{
"hwd": "revolting",
"tran": "反叛,造反;起反感(revolt的现在分词形式)"
}]
}]
},
"trans": [{
"tranCn": "反抗;造反,起义",
"descOther": "英释",
"pos": "n",
"descCn": "中释",
"tranOther": "a refusal to accept someone’s authority or obey rules or laws"
}, {
"tranCn": "起义;反抗",
"descOther": "英释",
"pos": "v",
"descCn": "中释",
"tranOther": "if people revolt, they take strong and often violent action against the government, usually with the aim of taking power away from them"
}]
}
}
},
"bookId": "KaoYanluan_1"
},
{
"wordRank": 2,
"headWord": "specialist",
"content": {
"word": {
"wordHead": "specialist",
"wordId": "KaoYanluan_1_2",
"content": {
"sentence": {
"sentences": [{
"sContent": "an attorney who is a specialist in banking law",
"sCn": "一名专攻银行法的律师"
}],
"desc": "例句"
},
"usphone": "'spɛʃəlɪst",
"syno": {
"synos": [{
"pos": "n",
"tran": "专家;专门医师",
"hwds": [{
"w": "expert"
}, {
"w": "mavin"
}]
}, {
"pos": "adj",
"tran": "专家的;专业的",
"hwds": [{
"w": "professional"
}]
}],
"desc": "同近"
},
"ukphone": "'speʃ(ə)lɪst",
"ukspeech": "specialist&type=1",
"star": 0,
"phrase": {
"phrases": [{
"pContent": "specialist system",
"pCn": "专家系统;专家制度"
}, {
"pContent": "heart specialist",
"pCn": "心脏病专家"
}],
"desc": "短语"
},
"phone": "'speʃəlist",
"speech": "specialist",
"relWord": {
"desc": "同根",
"rels": [{
"pos": "adj",
"words": [{
"hwd": "special",
"tran": "特别的;专门的,专用的"
}, {
"hwd": "specialty",
"tran": "特色的;专门的;独立的"
}, {
"hwd": "specialized",
"tran": "专业的;专门的"
}, {
"hwd": "specialised",
"tran": "专门的;特别的(等于specialized)"
}, {
"hwd": "specialistic",
"tran": "专家的;专攻的;专门学科的"
}]
}, {
"pos": "adv",
"words": [{
"hwd": "specially",
"tran": "特别地;专门地"
}]
}, {
"pos": "n",
"words": [{
"hwd": "special",
"tran": "特使,特派人员;特刊;特色菜;专车;特价商品"
}, {
"hwd": "specialty",
"tran": "专业,专长;特产;特性;招牌菜"
}, {
"hwd": "speciality",
"tran": "专业,专长;特性"
}, {
"hwd": "specialization",
"tran": "专门化;特殊化;特化作用"
}, {
"hwd": "specialisation",
"tran": "专业化(等于specialization);特化,适应化"
}, {
"hwd": "specialness",
"tran": "专门,特殊"
}, {
"hwd": "specialism",
"tran": "专长;专攻;专门研究"
}, {
"hwd": "specializer",
"tran": "专家"
}]
}, {
"pos": "v",
"words": [{
"hwd": "specialized",
"tran": "专攻(specialize的过去分词);使…专门化;详细说明"
}, {
"hwd": "specialised",
"tran": "使专门化;专攻;详细说明(specialise的过去分词)"
}]
}, {
"pos": "vi",
"words": [{
"hwd": "specialize",
"tran": "专门从事;详细说明;特化"
}, {
"hwd": "specialise",
"tran": "专门研究(等于specialize)"
}]
}, {
"pos": "vt",
"words": [{
"hwd": "specialize",
"tran": "使专门化;使适应特殊情况;详细说明"
}, {
"hwd": "specialise",
"tran": "使专门化;限定…的范围;深入(等于specialize)"
}]
}]
},
"usspeech": "specialist&type=2",
"trans": [{
"tranCn": "专家",
"descOther": "英释",
"pos": "n",
"descCn": "中释",
"tranOther": "someone who knows a lot about a particular subject, or is very skilled at it"
}]
}
}
},
"bookId": "KaoYanluan_1"
},
{
"wordRank": 3,
"headWord": "carpet",
"content": {
"word": {
"wordHead": "carpet",
"wordId": "KaoYanluan_1_3",
"content": {
"sentence": {
"sentences": [{
"sContent": "My bedroom carpet is green.",
"sCn": "我卧室里的地毯是绿色的。"
}, {
"sContent": "All the rooms had fitted carpets (= carpets cut to fit the shape of the rooms ) .",
"sCn": "所有的房间都铺了全室地毯。"
}],
"desc": "例句"
},
"usphone": "'kɑrpɪt",
"syno": {
"synos": [{
"pos": "vt",
"tran": "在…上铺地毯,把地毯铺在…上;斥责",
"hwds": [{
"w": "tongue"
}, {
"w": "be down on"
}]
}, {
"pos": "n",
"tran": "[纺]地毯;地毯状覆盖物",
"hwds": [{
"w": "footcloth"
}]
}],
"desc": "同近"
},
"ukphone": "'kɑːpɪt",
"ukspeech": "carpet&type=1",
"star": 0,
"phrase": {
"phrases": [{
"pContent": "on the carpet",
"pCn": "在考虑中;在审议中"
}, {
"pContent": "red carpet",
"pCn": "(迎接贵宾用的)红地毯;隆重的接待"
}, {
"pContent": "magic carpet",
"pCn": "n. (《一千零一夜》中载人飞行的)魔毯;幻想中的神奇无比的交通工具"
}, {
"pContent": "wool carpet",
"pCn": "羊毛地毯"
}, {
"pContent": "persian carpet",
"pCn": "波斯地毯"
}, {
"pContent": "carpet backing",
"pCn": "地毯底布"
}],
"desc": "短语"
},
"phone": "'kɑ:pit",
"speech": "carpet",
"usspeech": "carpet&type=2",
"trans": [{
"tranCn": "地毯",
"descOther": "英释",
"pos": "n",
"descCn": "中释",
"tranOther": "heavy woven material for covering floors or stairs, or a piece of this material"
}]
}
}
},
"bookId": "KaoYanluan_1"
},
{
"wordRank": 4,
"headWord": "meditation",
"content": {
"word": {
"wordHead": "meditation",
"wordId": "KaoYanluan_1_4",
"content": {
"sentence": {
"sentences": [{
"sContent": "Yoga involves breathing exercises, stretching, and meditation.",
"sCn": "瑜伽包括呼吸训练、伸展和冥想。"
}, {
"sContent": "She found him sitting alone, deep in meditation.",
"sCn": "她发现他独自坐着,陷入沉思。"
}],
"desc": "例句"
},
"usphone": ",mɛdɪ'teʃən",
"syno": {
"synos": [{
"pos": "n",
"tran": "冥想;沉思,深思",
"hwds": [{
"w": "reflection"
}, {
"w": "contemplation"
}]
}],
"desc": "同近"
},
"ukphone": "medɪ'teɪʃ(ə)n",
"ukspeech": "meditation&type=1",
"star": 0,
"phone": ",medi'teiʃən",
"speech": "meditation",
"remMethod": {
"val": "来自meditate(v. 沉思)",
"desc": "记忆"
},
"relWord": {
"desc": "同根",
"rels": [{
"pos": "adj",
"words": [{
"hwd": "meditative",
"tran": "冥想的,沉思的;耽于默想的"
}]
}, {
"pos": "adv",
"words": [{
"hwd": "meditatively",
"tran": "沉思地,冥想地"
}]
}, {
"pos": "vi",
"words": [{
"hwd": "meditate",
"tran": "冥想;沉思"
}]
}, {
"pos": "vt",
"words": [{
"hwd": "meditate",
"tran": "考虑;计划;企图"
}]
}]
},
"usspeech": "meditation&type=2",
"trans": [{
"tranCn": "默想,冥想;沉思,深思,思考",
"descOther": "英释",
"pos": "n",
"descCn": "中释",
"tranOther": "the practice of emptying your mind of thoughts and feelings, in order to relax completely or for religious reasons"
}]
}
}
},
"bookId": "KaoYanluan_1"
},
{
"wordRank": 5,
"headWord": "persist",
"content": {
"word": {
"wordHead": "persist",
"wordId": "KaoYanluan_1_5",
"content": {
"sentence": {
"sentences": [{
"sContent": "‘I don’t think it’s right,’ John persisted.",
"sCn": "“我认为那不对。”约翰坚持说道。"
}, {
"sContent": "If the pain persists, you must see a doctor.",
"sCn": "如果一直痛,你就必须去看医生了。"
}],
"desc": "例句"
},
"usphone": "pɚ'sɪst",
"ukspeech": "persist&type=1",
"star": 0,
"usspeech": "persist&type=2",
"syno": {
"synos": [{
"pos": "vi",
"tran": "存留,坚持;持续,固执",
"hwds": [{
"w": "stay"
}, {
"w": "abide"
}]
}, {
"pos": "vt",
"tran": "坚持说,反复说",
"hwds": [{
"w": "iterate"
}]
}],
"desc": "同近"
},
"ukphone": "pə'sɪst",
"phrase": {
"phrases": [{
"pContent": "persist in",
"pCn": "坚持;固执于"
}],
"desc": "短语"
},
"phone": "pə'sist, -'zist",
"speech": "persist",
"remMethod": {
"val": "per(始终)+sist(站立)→始终站立着→坚持, 持续",
"desc": "记忆"
},
"relWord": {
"desc": "同根",
"rels": [{
"pos": "adj",
"words": [{
"hwd": "persistent",
"tran": "固执的,坚持的;持久稳固的"
}]
}, {
"pos": "adv",
"words": [{
"hwd": "persistently",
"tran": "坚持地;固执地"
}]
}, {
"pos": "n",
"words": [{
"hwd": "perseverance",
"tran": "坚持不懈;不屈不挠"
}, {
"hwd": "persistence",
"tran": "持续;固执;存留"
}, {
"hwd": "perseveration",
"tran": "持续言语(指言语反复不止的病态);持续重复的行为;执拗"
}]
}, {
"pos": "vi",
"words": [{
"hwd": "perseverate",
"tran": "患持续言语症;表现固执"
}]
}]
},
"trans": [{
"tranCn": "坚持;执意;继续存在[发生];持续",
"descOther": "英释",
"pos": "v",
"descCn": "中释",
"tranOther": "to continue to do something, although this is difficult, or other people oppose it"
}]
}
}
},
"bookId": "KaoYanluan_1"
},
{
"wordRank": 6,
"headWord": "avoid",
"content": {
"word": {
"wordHead": "avoid",
"wordId": "KaoYanluan_1_6",
"content": {
"sentence": {
"sentences": [{
"sContent": "Road safety is taught to young children to avoid road accidents.",
"sCn": "小孩子受到道路安全知识的教育,以避免交通事故。"
}, {
"sContent": "It is important to take measures to avoid the risk of fire.",
"sCn": "采取措施避免火灾风险很重要。"
}, {
"sContent": "Alan narrowly avoided an accident.",
"sCn": "艾伦险出事故。"
}, {
"sContent": "Everyone seemed to be avoiding Nick.",
"sCn": "似乎所有人都在躲着尼克。"
}],
"desc": "例句"
},
"usphone": "ə'vɔɪd",
"ukspeech": "avoid&type=1",
"star": 0,
"usspeech": "avoid&type=2",
"syno": {
"synos": [{
"pos": "vt",
"tran": "避免;避开,躲避;消除",
"hwds": [{
"w": "eliminate"
}, {
"w": "escape"
}, {
"w": "shun"
}]
}],
"desc": "同近"
},
"ukphone": "ə'vɒɪd",
"phrase": {
"phrases": [{
"pContent": "avoid doing",
"pCn": "避免做某事;逃避…"
}],
"desc": "短语"
},
"phone": "ə'vɔid",
"speech": "avoid",
"remMethod": {
"val": "a+void(空旷, 空虚)→逃避空虚→逃避",
"desc": "记忆"
},
"relWord": {
"desc": "同根",
"rels": [{
"pos": "adj",
"words": [{
"hwd": "avoidable",
"tran": "可避免的;可作为无效的;可回避的"
}]
}, {
"pos": "n",
"words": [{
"hwd": "avoidance",
"tran": "逃避;废止;职位空缺"
}]
}]
},
"trans": [{
"tranCn": "防止,避免;逃避,避开",
"descOther": "英释",
"pos": "v",
"descCn": "中释",
"tranOther": "to prevent something bad from happening"
}]
}
}
},
"bookId": "KaoYanluan_1"
},
{
"wordRank": 7,
"headWord": "yellow",
"content": {
"word": {
"wordHead": "yellow",
"wordId": "KaoYanluan_1_7",
"content": {
"sentence": {
"sentences": [{
"sContent": "yellow flowers",
"sCn": "黄花"
}, {
"sContent": "Yellow doesn’t suit me at all.",
"sCn": "黄色一点都不适合我。"
}],
"desc": "例句"
},
"usphone": "'jeloʊ",
"syno": {
"synos": [{
"pos": "adj",
"tran": "[光]黄色的;黄皮肤的",
"hwds": [{
"w": "maize"
}, {
"w": "xanthic"
}]
}, {
"pos": "n",
"tran": "[光]黄色;黄种人;[染料]黄色颜料",
"hwds": [{
"w": "sunking"
}, {
"w": "giallo"
}]
}],
"desc": "同近"
},
"ukphone": "'jeləʊ",
"ukspeech": "yellow&type=1",
"star": 0,
"phrase": {
"phrases": [{
"pContent": "yellow river",
"pCn": "黄河"
}, {
"pContent": "yellow sea",
"pCn": "黄海"
}, {
"pContent": "turn yellow",
"pCn": "变黄;胆怯起来"
}, {
"pContent": "pale yellow",
"pCn": "adj. 淡黄色,浅黄色"
}, {
"pContent": "bright yellow",
"pCn": "嫩黄"
}, {
"pContent": "light yellow",
"pCn": "n. 淡黄色;鹅黄"
}, {
"pContent": "golden yellow",
"pCn": "金黄;金黄色"
}, {
"pContent": "yellow phosphorus",
"pCn": "黄磷"
}, {
"pContent": "yellow light",
"pCn": "黄色灯"
}, {
"pContent": "yellow card",
"pCn": "(足球)黄牌"
}, {
"pContent": "yellow fever",
"pCn": "[医]黄热病"
}, {
"pContent": "straw yellow",
"pCn": "n. 淡黄色"
}, {
"pContent": "dark yellow",
"pCn": "深黄色"
}, {
"pContent": "yellow wine",
"pCn": "n. 黄酒"
}, {
"pContent": "yellow green",
"pCn": "黄绿色"
}, {
"pContent": "yellow gold",
"pCn": "黄银铜合金"
}, {
"pContent": "yellow page",
"pCn": "黄页(国际上对商业电话号码薄的固定称谓)"
}, {
"pContent": "yellow line",
"pCn": "黄色标线"
}, {
"pContent": "yellow crane tower",
"pCn": "黄鹤楼"
}, {
"pContent": "orange yellow",
"pCn": "橙黄;桔黄"
}],
"desc": "短语"
},
"speech": "yellow",
"relWord": {
"desc": "同根",
"rels": [{
"pos": "adj",
"words": [{
"hwd": "yellowish",
"tran": "微黄色的,淡黄色的"
}]
}, {
"pos": "n",
"words": [{
"hwd": "yellowness",
"tran": "黄色;发黄;猜忌;胆怯"
}]
}]
},
"usspeech": "yellow&type=2",
"trans": [{
"tranCn": "黄的,黄色的",
"descOther": "英释",
"pos": "adj",
"descCn": "中释",
"tranOther": "having the colour of butter or the middle part of an egg"
}, {
"tranCn": "黄色",
"descOther": "英释",
"pos": "n",
"descCn": "中释",
"tranOther": "the colour of butter or the middle part of an egg"
}]
}
}
},
"bookId": "KaoYanluan_1"
},
{
"wordRank": 8,
"headWord": "consult",
"content": {
"word": {
"wordHead": "consult",
"wordId": "KaoYanluan_1_8",
"content": {
"sentence": {
"sentences": [{
"sContent": "If symptoms persist, consult a doctor without delay.",
"sCn": "如果症状持续的话,马上咨询医生。"
}, {
"sContent": "I can’t believe you sold the car without consulting me!",
"sCn": "我真不敢相信你不和我商量一下就把车给卖了!"
}, {
"sContent": "Have you consulted a dictionary?",
"sCn": "你查过词典了吗?"
}],
"desc": "例句"
},
"usphone": "kən'sʌlt",
"syno": {
"synos": [{
"pos": "vt",
"tran": "查阅;商量;向…请教",
"hwds": [{
"w": "look up"
}, {
"w": "speak together"
}]
}, {
"pos": "vi",
"tran": "请教;商议;当顾问",
"hwds": [{
"w": "take advice"
}, {
"w": "seek advice"
}]
}],
"desc": "同近"
},
"ukphone": "kən'sʌlt",
"ukspeech": "consult&type=1",
"star": 0,
"phrase": {
"phrases": [{
"pContent": "consult with",
"pCn": "商量,协商"
}],
"desc": "短语"
},
"phone": "kɔn'sʌlt, 'kɔnsʌlt",
"speech": "consult",
"relWord": {
"desc": "同根",
"rels": [{
"pos": "adj",
"words": [{
"hwd": "consultive",
"tran": "咨询的"
}]
}, {
"pos": "n",
"words": [{
"hwd": "consultant",
"tran": "顾问;咨询者;会诊医生"
}, {
"hwd": "consultation",
"tran": "咨询;磋商;[临床] 会诊;讨论会"
}, {
"hwd": "consultancy",
"tran": "咨询公司;顾问工作"
}]
}]
},
"usspeech": "consult&type=2",
"trans": [{
"tranCn": "请教,向...咨询;找...商量;查阅,查看",
"descOther": "英释",
"pos": "v",
"descCn": "中释",
"tranOther": "to ask for information or advice from someone because it is their job to know something"
}]
}
}
},
"bookId": "KaoYanluan_1"
},
{
"wordRank": 9,
"headWord": "assume",
"content": {
"word": {
"wordHead": "assume",
"wordId": "KaoYanluan_1_9",
"content": {
"sentence": {