-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdata.json
More file actions
1599 lines (1597 loc) · 79.7 KB
/
data.json
File metadata and controls
1599 lines (1597 loc) · 79.7 KB
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
{
"userList": [
{
"username": "admin",
"password": "123456",
"src": "http://img1.imgtn.bdimg.com/it/u=3198762613,766144830&fm=27&gp=0.jpg",
"name": "dmy123456789",
"ways": "通过qq登录",
"target": "2018好好奋斗,加油",
"setting": {
"badge": 3
},
"nowLearnClass": [
{
"id": 10002,
"progress": 5
},
{
"id": 11003,
"progress": 0
},
{
"id": 11202,
"progress": 34
},
{
"id": 11201,
"progress": 100
}
]
},
{
"username": "dmy",
"password": "123456",
"src": "http://img1.imgtn.bdimg.com/it/u=3198762613,766144830&fm=27&gp=0.jpg",
"name": "daimuyang123",
"ways": "通过weixin登录",
"target": "2017好好奋斗,加油",
"setting": {
"badge": 5
},
"nowLearnClass": [
{
"id": 10004,
"progress": 5
},
{
"id": 11203,
"progress": 0
},
{
"id": 11202,
"progress": 34
},
{
"id": 11001,
"progress": 100
}
]
}
],
"home": [
{
"swiperCourse": [
{
"id": 10001,
"title": "假期攻略:放假提升能力8堂必修课",
"imgSrc": "http://edu-image.nosdn.127.net/1c6b772a-9d4a-4356-90d0-66f6e364d852.jpg?imageView&thumbnail=960y440&quality=100",
"starLevel": 4.6,
"learnNumber": 238,
"newPrice": "15.10",
"oldPrice": "33.00",
"mp4Src": "http://pic.ibaotu.com/00/56/32/78G888piCyDu.mp4",
"introduce": {
"courseIntroduce": "这是一堂厉害的课",
"fitPeople": "摄影爱好者",
"provider": {
"imgSrc": "https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=2135429910,2001866011&fm=27&gp=0.jpg",
"name": "视觉摄影FUN及后期课堂",
"introduce": "是一个工作室"
},
"teacher": {
"imgSrc": "https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=3028269206,4116848032&fm=27&gp=0.jpg",
"name": "雷波",
"introduce": "是一个老师"
}
}
},
{
"id": 10002,
"title": "大学生必备的5项互联网技能",
"imgSrc": "http://img-ph-mirror.nosdn.127.net/mNq2thUy0fBOT33rwGkaLQ==/6631805538002932737.jpg?imageView&thumbnail=450y250&quality=100",
"starLevel": 4.0,
"learnNumber": 923,
"newPrice": "13.90",
"oldPrice": "61.40",
"mp4Src": "http://pic.ibaotu.com/00/56/32/78G888piCyDu.mp4",
"introduce": {
"courseIntroduce": "这是一堂厉害的课",
"fitPeople": "想轻松提高思考力的学员",
"provider": {
"imgSrc": "https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=2135429910,2001866011&fm=27&gp=0.jpg",
"name": "视觉摄影FUN及后期课堂",
"introduce": "是一个工作室"
},
"teacher": {
"imgSrc": "https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=3028269206,4116848032&fm=27&gp=0.jpg",
"name": "雷波",
"introduce": "是一个老师"
}
}
},
{
"id": 10003,
"title": "premiere教程-oeasy教你玩转pr教程",
"imgSrc": "http://img-ph-mirror.nosdn.127.net/gY8J9c49Sn2C_bM_fZp9Iw==/6608465105166480988.png?imageView&thumbnail=450y250&quality=100",
"starLevel": 4.2,
"learnNumber": 2143,
"newPrice": "6.90",
"oldPrice": "9.50",
"mp4Src": "http://pic.ibaotu.com/00/56/32/78G888piCyDu.mp4",
"introduce": {
"courseIntroduce": "这是一堂厉害的课",
"fitPeople": "摄影爱好者",
"provider": {
"imgSrc": "https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=2135429910,2001866011&fm=27&gp=0.jpg",
"name": "视觉摄影FUN及后期课堂",
"introduce": "是一个工作室"
},
"teacher": {
"imgSrc": "https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=3028269206,4116848032&fm=27&gp=0.jpg",
"name": "雷波",
"introduce": "是一个老师"
}
}
},
{
"id": 10004,
"title": "电影自习室",
"imgSrc": "http://img-ph-mirror.nosdn.127.net/67BVx_GseMEnxhqqAjiYCQ==/6599324865006354349.jpg?imageView&thumbnail=450y250&quality=100",
"starLevel": 4.6,
"learnNumber": 468,
"newPrice": "35.90",
"oldPrice": "40.00",
"mp4Src": "http://pic.ibaotu.com/00/56/32/78G888piCyDu.mp4",
"introduce": {
"courseIntroduce": "这是一堂厉害的课",
"fitPeople": "摄影爱好者",
"provider": {
"imgSrc": "https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=2135429910,2001866011&fm=27&gp=0.jpg",
"name": "视觉摄影FUN及后期课堂",
"introduce": "是一个工作室"
},
"teacher": {
"imgSrc": "https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=3028269206,4116848032&fm=27&gp=0.jpg",
"name": "雷波",
"introduce": "是一个老师"
}
}
}
],
"popular": {
"title": "热门新知",
"feed": [
""
]
},
"types": [
{
"title": "编辑精选",
"head": "探索人工智能奥秘",
"courses": [
{
"id": 10101,
"title": "10小时从0到1学习人工智能",
"imgSrc": "http://edu-image.nosdn.127.net/E5CAB39B274D3861AD662FDE77D785F2.jpg?imageView&thumbnail=450y250&quality=100",
"starLevel": 3.7,
"learnNumber": 312,
"newPrice": "15.30",
"oldPrice": "49.00",
"mp4Src": "http://pic.ibaotu.com/00/56/32/78G888piCyDu.mp4",
"mainMessage": "由浅入深的讲解Excel Power Pivot的基础知识,以及从数据获取、分析到展现的全过程,通过学习本课程,可以快速的通过Excel Power Pivot进行数据建模分析,作出让老板眼前一亮的企业级分析报告。",
"introduce": {
"courseIntroduce": "这是一堂厉害的课",
"fitPeople": "摄影爱好者",
"provider": {
"imgSrc": "https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=2135429910,2001866011&fm=27&gp=0.jpg",
"name": "视觉摄影FUN及后期课堂",
"introduce": "是一个工作室"
},
"teacher": {
"imgSrc": "https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=3028269206,4116848032&fm=27&gp=0.jpg",
"name": "雷波",
"introduce": "是一个老师"
}
}
},
{
"id": 10102,
"title": "人工智能时代的C++学习",
"imgSrc": "http://edu-image.nosdn.127.net/37AED3C5541A122EEF0B9B6C62F0D3C7.png?imageView&thumbnail=450y250&quality=100",
"starLevel": 4.7,
"learnNumber": 1660,
"newPrice": "14.90",
"mp4Src": "http://pic.ibaotu.com/00/56/32/78G888piCyDu.mp4",
"mainMessage": "C++ 一直都是最为主流的编程语言之一。其强大的性能及其较高的使用门槛让使用者对它又爱又恨。有人甚至开玩笑说:C++之父Bjarne Stroustrup 是为了提高程序员工资才创造了如此艰深又强大的语言。",
"introduce": {
"courseIntroduce": "这是一堂厉害的课",
"fitPeople": "摄影爱好者",
"provider": {
"imgSrc": "https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=2135429910,2001866011&fm=27&gp=0.jpg",
"name": "视觉摄影FUN及后期课堂",
"introduce": "是一个工作室"
},
"teacher": {
"imgSrc": "https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=3028269206,4116848032&fm=27&gp=0.jpg",
"name": "雷波",
"introduce": "是一个老师"
}
}
},
{
"id": 10103,
"title": "从零玩转Python大数据+人工智能-1",
"imgSrc": "http://edu-image.nosdn.127.net/21FDC91762B503378784D59C8D8E1309.jpg?imageView&thumbnail=450y250&quality=100",
"starLevel": 4.1,
"learnNumber": 223,
"newPrice": "11.40",
"oldPrice": "65.30",
"mp4Src": "http://pic.ibaotu.com/00/56/32/78G888piCyDu.mp4",
"mainMessage": "讲解了一些, 计算机编程相关的常识; 包括计算机的组成, 编程语言概念以及作用等等;适合完全对编程不了解, 跨行来学习的学员; 扩展入门",
"introduce": {
"courseIntroduce": "这是一堂厉害的课",
"fitPeople": "摄影爱好者",
"provider": {
"imgSrc": "https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=2135429910,2001866011&fm=27&gp=0.jpg",
"name": "视觉摄影FUN及后期课堂",
"introduce": "是一个工作室"
},
"teacher": {
"imgSrc": "https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=3028269206,4116848032&fm=27&gp=0.jpg",
"name": "雷波",
"introduce": "是一个老师"
}
}
},
{
"id": 10104,
"title": "人工智能系列直播课",
"imgSrc": "http://edu-image.nosdn.127.net/814D0B386AAB446FF42163B4DE6A330C.png?imageView&thumbnail=450y250&quality=100",
"starLevel": 4.3,
"learnNumber": 24244,
"newPrice": "13.40",
"oldPrice": "69.00",
"mp4Src": "http://pic.ibaotu.com/00/56/32/78G888piCyDu.mp4",
"mainMessage": "你想知道如何入门?想知道如何转行?想知道数学可以怎样学?想知道机器学习如何可视化?想知道网易的AI大佬对人工智能的热潮有什么看法",
"introduce": {
"courseIntroduce": "这是一堂厉害的课",
"fitPeople": "摄影爱好者",
"provider": {
"imgSrc": "https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=2135429910,2001866011&fm=27&gp=0.jpg",
"name": "视觉摄影FUN及后期课堂",
"introduce": "是一个工作室"
},
"teacher": {
"imgSrc": "https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=3028269206,4116848032&fm=27&gp=0.jpg",
"name": "雷波",
"introduce": "是一个老师"
}
}
}
]
},
{
"title": "时间管理",
"head": "探索时间的奥秘",
"courses": [
{
"id": 10201,
"title": "时间管理集训营",
"imgSrc": "http://edu-image.nosdn.127.net/0E151877C7466EC239A2536F1F5EE4FB.png?imageView&thumbnail=450y250&quality=100",
"starLevel": 4.3,
"learnNumber": 0,
"newPrice": "16.90",
"oldPrice": "69.00",
"mp4Src": "http://pic.ibaotu.com/00/56/32/78G888piCyDu.mp4",
"mainMessage": "时间管理集训营/14天效率提升计划 /9种高效管理工作方法 /12中效能工具 /90天跟踪辅导",
"introduce": {
"courseIntroduce": "这是一堂厉害的课",
"fitPeople": "摄影爱好者",
"provider": {
"imgSrc": "https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=2135429910,2001866011&fm=27&gp=0.jpg",
"name": "视觉摄影FUN及后期课堂",
"introduce": "是一个工作室"
},
"teacher": {
"imgSrc": "https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=3028269206,4116848032&fm=27&gp=0.jpg",
"name": "雷波",
"introduce": "是一个老师"
}
}
},
{
"id": 10202,
"title": "人人必修的时间管理课",
"imgSrc": "http://img-ph-mirror.nosdn.127.net/c_DxhM3gAjPYLozeonkV1Q==/6631596630792298816.png?imageView&thumbnail=450y250&quality=100",
"starLevel": 4.6,
"learnNumber": 468,
"newPrice": "16.90",
"mp4Src": "http://pic.ibaotu.com/00/56/32/78G888piCyDu.mp4",
"mainMessage": "这门课程只提供简单实用的时间管理工具,通过工具来帮助你审视自己的时间、规划自己的时间、管理自己的时间,最终让你拥有自己渴望的高效、惬意的生活方式。",
"introduce": {
"courseIntroduce": "这是一堂厉害的课",
"fitPeople": "摄影爱好者",
"provider": {
"imgSrc": "https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=2135429910,2001866011&fm=27&gp=0.jpg",
"name": "视觉摄影FUN及后期课堂",
"introduce": "是一个工作室"
},
"teacher": {
"imgSrc": "https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=3028269206,4116848032&fm=27&gp=0.jpg",
"name": "雷波",
"introduce": "是一个老师"
}
}
},
{
"id": 10203,
"title": "上班族的时间管理课",
"imgSrc": "http://edu-image.nosdn.127.net/5541238DF062908D4C9E25EC8C4608E5.png?imageView&thumbnail=450y250&quality=100",
"starLevel": 4.3,
"learnNumber": 5,
"newPrice": "13.40",
"oldPrice": "69.50",
"mp4Src": "http://pic.ibaotu.com/00/56/32/78G888piCyDu.mp4",
"mainMessage": "PPT在线课程三冠王,王牌首选爆款课程,畅销四年遥遥领先,超6万人学习好评如潮!、课程不限时间和次数~",
"introduce": {
"courseIntroduce": "这是一堂厉害的课",
"fitPeople": "摄影爱好者",
"provider": {
"imgSrc": "https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=2135429910,2001866011&fm=27&gp=0.jpg",
"name": "视觉摄影FUN及后期课堂",
"introduce": "是一个工作室"
},
"teacher": {
"imgSrc": "https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=3028269206,4116848032&fm=27&gp=0.jpg",
"name": "雷波",
"introduce": "是一个老师"
}
}
}
]
}
]
},
{
"swiperCourse": [
{
"id": 11001,
"title": "PPT菜鸟的逆袭秘籍(视频+辅导)",
"imgSrc": "http://edu-image.nosdn.127.net/a0346c5b-238a-436f-a92b-63df1612e7f5.png?imageView&thumbnail=225y142&quality=100",
"starLevel": 4.2,
"learnNumber": 214,
"newPrice": "14.50",
"oldPrice": "63.60",
"mp4Src": "http://pic.ibaotu.com/00/56/32/78G888piCyDu.mp4",
"introduce": {
"courseIntroduce": "这是一堂厉害的课",
"fitPeople": "摄影爱好者",
"provider": {
"imgSrc": "https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=2135429910,2001866011&fm=27&gp=0.jpg",
"name": "视觉摄影FUN及后期课堂",
"introduce": "是一个工作室"
},
"teacher": {
"imgSrc": "https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=3028269206,4116848032&fm=27&gp=0.jpg",
"name": "雷波",
"introduce": "是一个老师"
}
}
},
{
"id": 11002,
"title": "帮你省时90%的Excel图表模板大法",
"imgSrc": "http://edu-image.nosdn.127.net/5530ED6AC8ADAF9A75C5CE091874D6FD.jpg?imageView&thumbnail=450y250&quality=100",
"starLevel": 4.9,
"learnNumber": 1245,
"newPrice": "13.90",
"oldPrice": "64.00",
"mp4Src": "http://pic.ibaotu.com/00/56/32/78G888piCyDu.mp4",
"introduce": {
"courseIntroduce": "这是一堂厉害的课",
"fitPeople": "摄影爱好者",
"provider": {
"imgSrc": "https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=2135429910,2001866011&fm=27&gp=0.jpg",
"name": "视觉摄影FUN及后期课堂",
"introduce": "是一个工作室"
},
"teacher": {
"imgSrc": "https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=3028269206,4116848032&fm=27&gp=0.jpg",
"name": "雷波",
"introduce": "是一个老师"
}
}
},
{
"id": 11003,
"title": "Python框架Flask系列",
"imgSrc": "http://edu-image.nosdn.127.net/5FC79E1638AA6A1882628024D8017027.jpg?imageView&thumbnail=450y250&quality=100",
"starLevel": 4.3,
"learnNumber": 23,
"newPrice": "212.90",
"oldPrice": "600.00",
"mp4Src": "http://pic.ibaotu.com/00/56/32/78G888piCyDu.mp4",
"introduce": {
"courseIntroduce": "这是一堂厉害的课",
"fitPeople": "摄影爱好者",
"provider": {
"imgSrc": "https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=2135429910,2001866011&fm=27&gp=0.jpg",
"name": "视觉摄影FUN及后期课堂",
"introduce": "是一个工作室"
},
"teacher": {
"imgSrc": "https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=3028269206,4116848032&fm=27&gp=0.jpg",
"name": "雷波",
"introduce": "是一个老师"
}
}
},
{
"id": 11004,
"title": "24课快速成为培训师",
"imgSrc": "http://edu-image.nosdn.127.net/0C3E0E2936720687FED7CFA93897A9B2.jpg?imageView&thumbnail=450y250&quality=100",
"starLevel": 4.0,
"learnNumber": 24,
"newPrice": "17.30",
"oldPrice": "690.00",
"mp4Src": "http://pic.ibaotu.com/00/56/32/78G888piCyDu.mp4",
"introduce": {
"courseIntroduce": "这是一堂厉害的课",
"fitPeople": "摄影爱好者",
"provider": {
"imgSrc": "https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=2135429910,2001866011&fm=27&gp=0.jpg",
"name": "视觉摄影FUN及后期课堂",
"introduce": "是一个工作室"
},
"teacher": {
"imgSrc": "https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=3028269206,4116848032&fm=27&gp=0.jpg",
"name": "雷波",
"introduce": "是一个老师"
}
}
}
],
"series": [],
"courses": [
{
"head": "精选好课",
"data": [
{
"id": 11101,
"title": "PS 教程超级合辑-Photoshop教程",
"imgSrc": "http://edu-image.nosdn.127.net/7F8EF4152ECB4A8C4F0CBD01C5CF9B3B.jpg?imageView&thumbnail=450y250&quality=100",
"starLevel": 4.4,
"learnNumber": 214,
"newPrice": "16.30",
"oldPrice": "69.00",
"mp4Src": "http://pic.ibaotu.com/00/56/32/78G888piCyDu.mp4",
"introduce": {
"courseIntroduce": "这是一堂厉害的课",
"fitPeople": "摄影爱好者",
"provider": {
"imgSrc": "https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=2135429910,2001866011&fm=27&gp=0.jpg",
"name": "视觉摄影FUN及后期课堂",
"introduce": "是一个工作室"
},
"teacher": {
"imgSrc": "https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=3028269206,4116848032&fm=27&gp=0.jpg",
"name": "雷波",
"introduce": "是一个老师"
}
}
},
{
"id": 11102,
"title": "手机拍视频,玩今日头条赚第一桶金",
"imgSrc": "http://edu-image.nosdn.127.net/76EB4E5BD2CEF054E64C43EAD54FB9C2.png?imageView&thumbnail=450y250&quality=100",
"starLevel": 2.3,
"learnNumber": 1234,
"newPrice": "11.90",
"mp4Src": "http://pic.ibaotu.com/00/56/32/78G888piCyDu.mp4",
"introduce": {
"courseIntroduce": "这是一堂厉害的课",
"fitPeople": "摄影爱好者",
"provider": {
"imgSrc": "https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=2135429910,2001866011&fm=27&gp=0.jpg",
"name": "视觉摄影FUN及后期课堂",
"introduce": "是一个工作室"
},
"teacher": {
"imgSrc": "https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=3028269206,4116848032&fm=27&gp=0.jpg",
"name": "雷波",
"introduce": "是一个老师"
}
}
},
{
"id": 11103,
"title": "咖啡制作实用训练课程",
"imgSrc": "http://edu-image.nosdn.127.net/CAADCD58931A47C3A06241B241D80E80.jpg?imageView&thumbnail=450y250&quality=100",
"starLevel": 3.6,
"learnNumber": 123,
"newPrice": "14.50",
"oldPrice": "659.00",
"mp4Src": "http://pic.ibaotu.com/00/56/32/78G888piCyDu.mp4",
"introduce": {
"courseIntroduce": "这是一堂厉害的课",
"fitPeople": "摄影爱好者",
"provider": {
"imgSrc": "https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=2135429910,2001866011&fm=27&gp=0.jpg",
"name": "视觉摄影FUN及后期课堂",
"introduce": "是一个工作室"
},
"teacher": {
"imgSrc": "https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=3028269206,4116848032&fm=27&gp=0.jpg",
"name": "雷波",
"introduce": "是一个老师"
}
}
},
{
"id": 11104,
"title": "活动策划与执行攻略",
"imgSrc": "http://img-ph-mirror.nosdn.127.net/3ZadSpncKbN7aQH67m_CHQ==/6631481182074443259.jpg?imageView&thumbnail=450y250&quality=100",
"starLevel": 1.6,
"learnNumber": 123,
"newPrice": "124.90",
"oldPrice": "692.00",
"mp4Src": "http://pic.ibaotu.com/00/56/32/78G888piCyDu.mp4",
"introduce": {
"courseIntroduce": "这是一堂厉害的课",
"fitPeople": "摄影爱好者",
"provider": {
"imgSrc": "https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=2135429910,2001866011&fm=27&gp=0.jpg",
"name": "视觉摄影FUN及后期课堂",
"introduce": "是一个工作室"
},
"teacher": {
"imgSrc": "https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=3028269206,4116848032&fm=27&gp=0.jpg",
"name": "雷波",
"introduce": "是一个老师"
}
}
}
]
},
{
"head": "亲子教育",
"data": [
{
"id": 11201,
"title": "放下焦虑,20个经典育儿难题解惑",
"imgSrc": "http://edu-image.nosdn.127.net/3FE93C7723462136AED9E7E44C0606CE.jpg?imageView&thumbnail=448x248&quality=100",
"starLevel": 3.6,
"learnNumber": 4245,
"newPrice": "160.90",
"oldPrice": "690.00",
"mp4Src": "http://pic.ibaotu.com/00/56/32/78G888piCyDu.mp4",
"introduce": {
"courseIntroduce": "这是一堂厉害的课",
"fitPeople": "摄影爱好者",
"provider": {
"imgSrc": "https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=2135429910,2001866011&fm=27&gp=0.jpg",
"name": "视觉摄影FUN及后期课堂",
"introduce": "是一个工作室"
},
"teacher": {
"imgSrc": "https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=3028269206,4116848032&fm=27&gp=0.jpg",
"name": "雷波",
"introduce": "是一个老师"
}
}
},
{
"id": 11202,
"title": "快乐玩绘本",
"imgSrc": "http://edu-image.nosdn.127.net/DFBFD9DD0A6140E2709941F390CB9C15.jpg?imageView&thumbnail=450y250&quality=100",
"starLevel": 4.1,
"learnNumber": 253,
"newPrice": "15.30",
"mp4Src": "http://pic.ibaotu.com/00/56/32/78G888piCyDu.mp4",
"introduce": {
"courseIntroduce": "这是一堂厉害的课",
"fitPeople": "摄影爱好者",
"provider": {
"imgSrc": "https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=2135429910,2001866011&fm=27&gp=0.jpg",
"name": "视觉摄影FUN及后期课堂",
"introduce": "是一个工作室"
},
"teacher": {
"imgSrc": "https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=3028269206,4116848032&fm=27&gp=0.jpg",
"name": "雷波",
"introduce": "是一个老师"
}
}
},
{
"id": 11203,
"title": "宝宝看到会亲你的超萌儿童餐",
"imgSrc": "http://edu-image.nosdn.127.net/54AFE0E6AB9E96165789667351BEA543.jpg?imageView&thumbnail=450y250&quality=100",
"starLevel": 2.6,
"learnNumber": 214,
"newPrice": "15.90",
"oldPrice": "66.00",
"mp4Src": "http://pic.ibaotu.com/00/56/32/78G888piCyDu.mp4",
"introduce": {
"courseIntroduce": "这是一堂厉害的课",
"fitPeople": "摄影爱好者",
"provider": {
"imgSrc": "https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=2135429910,2001866011&fm=27&gp=0.jpg",
"name": "视觉摄影FUN及后期课堂",
"introduce": "是一个工作室"
},
"teacher": {
"imgSrc": "https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=3028269206,4116848032&fm=27&gp=0.jpg",
"name": "雷波",
"introduce": "是一个老师"
}
}
},
{
"id": 11204,
"title": "6小时解决家长最头痛的孩子问题",
"imgSrc": "http://edu-image.nosdn.127.net/00EC171C13BC9FFE42567A7FEFECFA4A.jpg?imageView&thumbnail=450y250&quality=100",
"starLevel": 3.6,
"learnNumber": 214,
"newPrice": "13.50",
"oldPrice": "50.00",
"mp4Src": "http://pic.ibaotu.com/00/56/32/78G888piCyDu.mp4",
"introduce": {
"courseIntroduce": "这是一堂厉害的课",
"fitPeople": "摄影爱好者",
"provider": {
"imgSrc": "https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=2135429910,2001866011&fm=27&gp=0.jpg",
"name": "视觉摄影FUN及后期课堂",
"introduce": "是一个工作室"
},
"teacher": {
"imgSrc": "https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=3028269206,4116848032&fm=27&gp=0.jpg",
"name": "雷波",
"introduce": "是一个老师"
}
}
}
]
}
]
},
{
"majors": [
{
"title": "互联网项目管理",
"imgSrc": "http://edu-image.nosdn.127.net/51CA69A972018C5E58C43B4168024BB5.jpg",
"message": "三节课联合网易共同打造,带你系统掌握 网易 & BAT 内部产品经理在设计产品过程中的工作技能、方法、流程!通过高强度训练,帮你掌握产品经理必备核心技能!"
},
{
"title": "初级UI设计师",
"imgSrc": "http://edu-image.nosdn.127.net/8D7A4CD2B783EBC244D9F6FDE6543BFB.png?imageView&thumbnail=470y184&quality=100",
"message": "三节课联合网易共同打造,带你系统掌握 网易 & BAT 内部产品经理在设计产品过程中的工作技能、方法、流程!通过高强度训练,帮你掌握产品经理必备核心技能!"
},
{
"title": "高级UI设计师",
"imgSrc": "http://edu-image.nosdn.127.net/FC783BBB34B5B7CD0AAF2160CB05EC35.jpg?imageView&thumbnail=470y184&quality=100",
"message": "三节课联合网易共同打造,带你系统掌握 网易 & BAT 内部产品经理在设计产品过程中的工作技能、方法、流程!通过高强度训练,帮你掌握产品经理必备核心技能!"
},
{
"title": "产品经理",
"imgSrc": "http://edu-image.nosdn.127.net/94821B045079F13CFE22BC4E9699E88B.jpg?imageView&thumbnail=470y184&quality=100",
"message": "三节课联合网易共同打造,带你系统掌握 网易 & BAT 内部产品经理在设计产品过程中的工作技能、方法、流程!通过高强度训练,帮你掌握产品经理必备核心技能!"
},
{
"title": "产品运营",
"imgSrc": "http://nos.netease.com/edu-image/1F301F2A80E190306025D2F8CA7C4FF6.jpg?imageView&thumbnail=470y184&quality=100",
"message": "三节课联合网易共同打造,带你系统掌握 网易 & BAT 内部产品经理在设计产品过程中的工作技能、方法、流程!通过高强度训练,帮你掌握产品经理必备核心技能!"
},
{
"title": "全栈新媒体运营",
"imgSrc": "http://edu-image.nosdn.127.net/9AEAE3BF26DEE81105B54354B385B0D9.jpg",
"message": "三节课联合网易共同打造,带你系统掌握 网易 & BAT 内部产品经理在设计产品过程中的工作技能、方法、流程!通过高强度训练,帮你掌握产品经理必备核心技能!"
}
]
},
{
"experts": [
{
"name": "expert1",
"describe": "something that he have done",
"imgSrc": "https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=1903935979,3194866924&fm=27&gp=0.jpg",
"courseNumber": 19,
"studentNumber": 189720,
"recommendCourse": "序列模型"
},
{
"name": "expert2",
"describe": "something that he have done",
"imgSrc": "https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=1903935979,3194866924&fm=27&gp=0.jpg",
"courseNumber": 19,
"studentNumber": 189720,
"recommendCourse": "序列模型"
},
{
"name": "expert3",
"describe": "something that he have done",
"imgSrc": "https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=2416317344,3243643264&fm=27&gp=0.jpg",
"courseNumber": 19,
"studentNumber": 189720,
"recommendCourse": "序列模型"
},
{
"name": "expert4",
"describe": "something that he have done",
"imgSrc": "https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=2416317344,3243643264&fm=27&gp=0.jpg",
"courseNumber": 19,
"studentNumber": 189720,
"recommendCourse": "序列模型"
},
{
"name": "expert5",
"describe": "something that he have done",
"imgSrc": "https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=2416317344,3243643264&fm=27&gp=0.jpg",
"courseNumber": 19,
"studentNumber": 189720,
"recommendCourse": "序列模型"
},
{
"name": "expert6",
"describe": "something that he have done",
"imgSrc": "https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=2416317344,3243643264&fm=27&gp=0.jpg",
"courseNumber": 19,
"studentNumber": 189720,
"recommendCourse": "序列模型"
},
{
"name": "expert7",
"describe": "something that he have done",
"imgSrc": "https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=2416317344,3243643264&fm=27&gp=0.jpg",
"courseNumber": 19,
"studentNumber": 189720,
"recommendCourse": "序列模型"
},
{
"name": "expert8",
"describe": "something that he have done",
"imgSrc": "https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=2416317344,3243643264&fm=27&gp=0.jpg",
"courseNumber": 19,
"studentNumber": 189720,
"recommendCourse": "序列模型"
},
{
"name": "expert9",
"describe": "something that he have done",
"imgSrc": "https://ss2.bdstatic.com/70cFvnSh_Q1YnxGkpoWK1HF6hhy/it/u=2416317344,3243643264&fm=27&gp=0.jpg",
"courseNumber": 19,
"studentNumber": 189720,
"recommendCourse": "序列模型"
},
{
"name": "expert10",
"describe": "something that he have done",
"imgSrc": "https://ss1.bdstatic.com/70cFvXSh_Q1YnxGkpoWK1HF6hhy/it/u=1903935979,3194866924&fm=27&gp=0.jpg",
"courseNumber": 19,
"studentNumber": 189720,
"recommendCourse": "序列模型"
}
]
}
],
"classes": [
{
"isClick": true,
"img": [
"http://img-ph-mirror.nosdn.127.net/089dQcALWeMNrzSEH-UY3g==/6631435002588315656.jpg?imageView&thumbnail=223y124&quality=100"
],
"title": "特别推荐",
"class": [
{
"head": "学习兴趣",
"detail": [
"人工智能",
"前端开发",
"信息安全",
"Python",
"求职应聘",
"习惯养成",
"时间管理",
"摄影基础",
"音乐乐器"
]
}
]
},
{
"title": "办公效率",
"img": [
"http://edu-image.nosdn.127.net/71a2a731-18af-4436-af50-78efed74a123.jpg?imageView&quality=100",
"http://edu-image.nosdn.127.net/7b80411c-136c-4aad-8c98-caa2d6ae73ff.jpg?imageView&quality=100"
],
"class": [
{
"head": "办公软件",
"detail": [
"PPT",
"Excel",
"Word",
"Project",
"Keynote",
"Outlook",
"更多软件"
]
},
{
"head": "工作效率",
"detail": [
"时间管理",
"思维导图"
]
},
{
"head": "电脑基础",
"detail": [
"基础操作",
"常用工具"
]
}
]
},
{
"img": [
"http://img-ph-mirror.nosdn.127.net/089dQcALWeMNrzSEH-UY3g==/6631435002588315656.jpg?imageView&thumbnail=223y124&quality=100"
],
"title": "职业发展",
"class": [
{
"head": "求职应聘",
"detail": [
"职业规划",
"求职简历",
"面试技巧"
]
},
{
"head": "个人提升",
"detail": [
"知识管理",
"习惯养成",
"演讲与口才",
"个人品牌",
"思维方式"
]
},
{
"head": "职场能力",
"detail": [
"人脉管理",
"礼仪形象",
"人际沟通",
"团队协作"
]
},
{
"head": "专业岗位",
"detail": [
"医学科研",
"文献协作",
"商务谈判",
"教学培训",
"特色职业"
]
},
{
"head": "管理能力",
"detail": [
"领导力",
"人力资源",
"财务管理",
"项目管理",
"特色职业"
]
}
]
},
{
"img": [
"http://edu-image.nosdn.127.net/71a2a731-18af-4436-af50-78efed74a123.jpg?imageView&quality=100",
"http://edu-image.nosdn.127.net/7b80411c-136c-4aad-8c98-caa2d6ae73ff.jpg?imageView&quality=100"
],
"title": "编程开发",
"class": [
{
"head": "编程语言",
"detail": [
"Python",
"PHP",
"C",
"Java",
"C++",
"C#",
"Swift",
"R",
"Git"
]
},
{
"head": "人工智能与数据",
"detail": [
"人工智能",
"数据分析",
"大数据",
"云计算",
"数据库",
"区块链"
]
}
]
},
{
"title": "产品和设计",
"class": [
{
"head": "产品策划",
"detail": [
"产品管理",
"产品设计",
"需求分析"
]
},
{
"head": "产品运营",
"detail": [
"内容运营",
"新媒体运营",
"用户运营",
"活动运营"
]
}
]
},
{
"img": [
"http://img-ph-mirror.nosdn.127.net/DhgYJ2W2eWabKMh35XcofA==/6632560902489910575.jpeg?imageView&thumbnail=223y124&quality=100",
"http://img-ph-mirror.nosdn.127.net/0ldDLXM1qDh_Ay1NrW3WjA==/2791668819034265531.jpg?imageView&thumbnail=223y124&quality=100"
],
"title": "生活方式",
"class": [
{
"head": "摄影影视",
"detail": [
"摄影基础",
"摄影后期",
"影视基础",
"影视后期",
"手机摄影",
"PR剪辑",
"AE特效"
]
},
{
"head": "音乐乐器",
"detail": [
"乐理基础",
"声乐唱歌",
"编曲创作",
"吉他",
"更多乐器"
]
}
]
},
{
"title": "亲子教育",
"class": [
{
"head": "科学孕产",
"detail": [
"准备怀孕",
"孕期保健",
"分娩准备",
"产后恢复"
]
},
{
"head": "科学育儿",
"detail": [
"宝宝喂养",
"生长发育",
"护理保健",
"急病重症"
]
}
]