-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkeep.js
5647 lines (5638 loc) · 202 KB
/
keep.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
/*
作者:photonmang
脚本更新:
2021/4/18 修复因Keep课程调整导致的一直加载问题
注意:此解锁仅针对Keep版本号6.24-6.27的版本。其他版本的未做适配,后续看心情适配。
智能计划使用说明:请根据自己的训练时间计划,自行安排时间和结束时间。时间设置请自行在startDate和endDate修改开始结束时间。
其他计划说明:后续其他部位的智能计划也会逐步适配,敬请关注。
# Keep 解锁私人课程,动作库,解锁运动课程页面会员精讲,解锁会员专属页面会员课程,解锁智能训练(胸背部无跑步无器材84天锻炼)
https://api.gotokeep.com/(.+/subject|.+/dynamic|.+/coursePlus/.+|.+/status|.+/tab|.+/my|.+/start|.+/join|.+/complete|.+/detail/.+|.+/preview|.+/auth|.+/tab|.+/days) url script-response-body https://raw.githubusercontent.com/photonmang/quantumultX/master/keep.js
MITM = api.gotokeep.com,59.110.149.231,129.211.156.213
*/
let url = $request.url;
let body = $response.body;
let obj = JSON.parse(body);
const startDate="20220302"; // 训练开始时间
const endDate="20220602" //训练结束时间
const path1 = 'dynamic';
const path2 = 'subject';
const path3 = 'coursePlus'
const path4 = '/suit/v1/home/tab'
const path5 = '/kprime/v1/suit/tab/status'
const path6 = '/athena/v4/people/my'
const path7 = 'start|join';
const path8 = '/kprime/v2/home/complete';
const path9 = 'detail';
//const path10 = 'preview'
const path11 = '/kprime/v1/auth'
const path13 = '/training/v3/suits/days'
if (url.indexOf(path1) != -1) {
obj.data.permission.isMembership = true;
obj.data.permission.inSuit = true;
obj.data.permission.membership = true;
}
if (url.indexOf(path2) != -1) {
for (var i = 0; i < obj.data.subjectInfos.length; i++) {
obj.data.subjectInfos[i].needPay = false;
}
}
if (url.indexOf(path3) != -1) {
for (var i = 0; i <
obj.data.courseDetail.videoInfos.length; i++) {
obj.data.courseDetail.videoInfos[i].preview = true;
}
}
if (url.indexOf(path5) != -1) {
obj.data.status = 50;
}
if (url.indexOf(path6) != -1) {
obj.data.user.memberInfo.memberStatus = 1;
}
if (url.match(path7)) {
obj.data.status = true;
}
if (url.indexOf(path8) != -1) {
obj.data.memberInfo.status = 1;
obj.data.memberInfo.gmtExpire = 9999999999000;
}
if (url.indexOf(path9) != -1) {
obj.data.memberEntrance.prime = true;
obj.data.memberEntrance.memberStatus = 1;
obj.data.memberInfo.memberStatus = 1;
}
// if (url.indexOf(path10) != -1) {
// obj.data.extendInfo.sectionStyle = "after";
// }
if (url.indexOf(path11) != -1) {
obj.data = {
"id": 3685024,
"userId": "5d8cbc3db52fab2f5c3b9e73",
"membershipType": "FREE_CARD",
"orderNo": "1585069663090718744",
"memberNo": "718769573118",
"autoRenew": true,
"status": 1,
"gmtEffective": 1585069663000,
"gmtPaidTypeEffective": 1569573119000,
"gmtCurrentTypeEffective": 1585069663000,
"gmtCurrentTypeExpire": 9999999999000,
"gmtPaidTypeExpire": 9999999999000,
"gmtExpire": 9999999999000,
"totalEffectiveDays": 34,
"currentEffectiveDays": 1
}
}
if (url.indexOf(path4) != -1 ) {
obj = {
"ok": true,
"data": {
"userInfo": {
"name": "photonmang",
"userId": "5d8cbc3db52fab2f5c3b9e73",
"memberInfo": {
"member": true,
"renewSchema": null,
"memberOffDays": 4,
"memberStatus": 1
},
"bindKitbit": false,
"lockFollowTraining": true,
"surveyGroups": []
},
"sections": [
{
"type": "suitInprogress",
"index": 0,
"sectionName": "智能训练计划",
"more": null,
"moreText": null,
"data": null,
"picture": null,
"needCache": false,
"fallback": false,
"suit": {
"coachTalks": "本周是计划第 1 周,你的训练任务已完成 0 / 84 天。",
"meta": {
"id": "5e7de69eb1136f5caf326441",
"startDate": startDate,
"endDate": endDate,
"suitType": "member",
"version": "3.1",
"totalDaysCount": 84,
"trainingDaysCount": 84,
"goals": "F",
"stageGoals": [
{
"current": {
"content": "松弛赘肉",
"pic": "https://static1.keepcdn.com/2019/04/28/11/1556422491937_246x246.png"
},
"goal": {
"content": "线条紧致",
"pic": "https://static1.keepcdn.com/2019/04/28/11/1556422594010_246x246.png"
},
"goals": "F",
"startTime": 1585584000772
},
{
"current": {
"content": "松弛赘肉",
"pic": "https://static1.keepcdn.com/2019/04/28/11/1556422491937_246x246.png"
},
"goal": {
"content": "线条紧致",
"pic": "https://static1.keepcdn.com/2019/04/28/11/1556422594010_246x246.png"
},
"goals": "F",
"startTime": 1585584000772
},
{
"current": {
"content": "松弛赘肉",
"pic": "https://static1.keepcdn.com/2019/04/28/11/1556422491937_246x246.png"
},
"goal": {
"content": "线条紧致",
"pic": "https://static1.keepcdn.com/2019/04/28/11/1556422594010_246x246.png"
},
"goals": "F",
"startTime": 1585584000772
},
{
"current": {
"content": "松弛赘肉",
"pic": "https://static1.keepcdn.com/2019/04/28/11/1556422491937_246x246.png"
},
"goal": {
"content": "线条紧致",
"pic": "https://static1.keepcdn.com/2019/04/28/11/1556422594010_246x246.png"
},
"goals": "F",
"startTime": 1585584000772
},
{
"current": {
"content": "松弛赘肉",
"pic": "https://static1.keepcdn.com/2019/04/28/11/1556422491937_246x246.png"
},
"goal": {
"content": "线条紧致",
"pic": "https://static1.keepcdn.com/2019/04/28/11/1556422594010_246x246.png"
},
"goals": "F",
"startTime": 1585584000772
},
{
"current": {
"content": "松弛赘肉",
"pic": "https://static1.keepcdn.com/2019/04/28/11/1556422491937_246x246.png"
},
"goal": {
"content": "线条紧致",
"pic": "https://static1.keepcdn.com/2019/04/28/11/1556422594010_246x246.png"
},
"goals": "F",
"startTime": 1585584000772
}
],
"suitGenerateType": "smartResistance",
"suitTemplateId": null,
"suitTemplateName": null,
"paidType": 0
},
"offDays": {
"available": 24,
"leave": false,
"endTime": null,
"adjustText": "从今天开始请假\n保存后从今天开始休息,训练安排延后"
},
"summary": {
"suitStatsText": {
"totalDuration": 0,
"completedDays": 0,
"totalDays": 84,
"totalCalorie": 0
},
"athleticAbilityInfo": {
"picture": "https://static1.keepcdn.com/2018/11/13/14/1542090464507_957x375.png",
"modified": "1",
"modifiedText": "上次评估结果(1天前)",
"status": null,
"grade": "F3",
"gradeType": "塑形",
"athleticAbilityText": "评估详情",
"athleticAbilitySchema": "keep://training/suits/result?kbizPos=suit_home&kbizType=suit",
"buttonTitle": "立即进入计划",
"buttonSchema": "https://show.gotokeep.com/training/suits/generating?kbizType=suit&kbizPos=suit_home&background=584F60"
}
},
"days": [
{
"leave": false,
"leaveEndDayIndex": null,
"dayIndex": 0,
"tasks": [
{
"title": "完成 2 个训练",
"coachGuide": null,
"todoList": [
{
"picture": "https://static1.keepcdn.com/2018/11/07/15/1541576230425_750x700.jpg",
"id": "5b88bc3ba29e3409b394eb89",
"type": "workout",
"name": "整体热身",
"completed": false,
"schema": "keep://plans/5be2962aa29e347112ee4440?selectWorkout=5b88bc3ba29e3409b394eb89&source=suit&suitDayIndex=0&suitId=5e7de69eb1136f5caf326441",
"previewSchema": "keep://training/step/list?planId=5be2962aa29e347112ee4440&selectWorkout=5b88bc3ba29e3409b394eb89",
"hasPlus": true,
"duration": 2,
"equipments": [],
"canBeReplaced": false,
"category": null
},
{
"picture": "https://static1.keepcdn.com/2018/12/18/11/1545103658684_750x700.jpg",
"id": "5db11796e381087e597320dd",
"type": "workout",
"name": "核心力量强化 5级",
"completed": false,
"schema": "keep://plans/5db11796e381087e597320dd?selectWorkout=5db11796e381087e597320dd&source=suit&suitDayIndex=0&suitId=5e7de69eb1136f5caf326441",
"previewSchema": "keep://training/step/list?planId=5db11796e381087e597320dd&selectWorkout=5db11796e381087e597320dd",
"hasPlus": true,
"duration": 18,
"equipments": [],
"canBeReplaced": false,
"category": null
}
]
}
],
"addition": null,
"suitTip": {
"subTitle": "每日训练课堂",
"title": "跳跃动作这么多,会不会伤膝盖?",
"videoUrl": "https://static1.keepcdn.com/cms_static/video/2019/3/4/1551670112325_MiUyMCUyMCVFOCVC.mp4",
"duration": 75,
"playMode": "across",
"cover": "https://static1.keepcdn.com/cms_static/picture/跳跃动作这么多,会伤膝盖吗?_1545364063726.png"
},
"dbDayIndex": 80,
"adjustEntrance": null,
"coachGuideInfo": null,
"dietInfo": null
},
{
"leave": false,
"leaveEndDayIndex": null,
"dayIndex": 1,
"tasks": [
{
"title": "完成 2 个训练",
"coachGuide": null,
"todoList": [
{
"picture": "https://static1.keepcdn.com/2018/11/07/15/1541576128927_750x700.jpg",
"id": "5b88baf8d734a219f8de0bda",
"type": "workout",
"name": "下肢关节热身",
"completed": false,
"schema": "keep://plans/5be295cdd734a26a885ac68a?selectWorkout=5b88baf8d734a219f8de0bda&source=suit&suitDayIndex=1&suitId=5e7de69eb1136f5caf326441",
"previewSchema": "keep://training/step/list?planId=5be295cdd734a26a885ac68a&selectWorkout=5b88baf8d734a219f8de0bda",
"hasPlus": false,
"duration": 2,
"equipments": [],
"canBeReplaced": false,
"category": null
},
{
"picture": "https://static1.keepcdn.com/2018/12/18/11/1545103775217_750x700.png",
"id": "5db116dee381087e5972e7d1",
"type": "workout",
"name": "下肢综合塑形训练 5级",
"completed": false,
"schema": "keep://plans/5db116dee381087e5972e7d1?selectWorkout=5db116dee381087e5972e7d1&source=suit&suitDayIndex=1&suitId=5e7de69eb1136f5caf326441",
"previewSchema": "keep://training/step/list?planId=5db116dee381087e5972e7d1&selectWorkout=5db116dee381087e5972e7d1",
"hasPlus": true,
"duration": 19,
"equipments": [],
"canBeReplaced": false,
"category": null
}
]
}
],
"addition": null,
"suitTip": {
"subTitle": "每日训练课堂",
"title": "做动作时,做得快好还是做得慢好?",
"videoUrl": "https://static1.keepcdn.com/cms_static/video/2019/3/4/1551670352459_MyUyMCUyMCVFNSU4.mp4",
"duration": 77,
"playMode": "across",
"cover": "https://static1.keepcdn.com/cms_static/picture/做动作时,做得快好还是做得慢好?-2_1545364158629.png"
},
"dbDayIndex": 80,
"adjustEntrance": null,
"coachGuideInfo": null,
"dietInfo": null
},
{
"leave": false,
"leaveEndDayIndex": null,
"dayIndex": 2,
"tasks": [
{
"title": "完成 2 个训练",
"coachGuide": null,
"todoList": [
{
"picture": "https://static1.keepcdn.com/2018/11/07/15/1541576034304_750x700.jpg",
"id": "5b86005ad734a2093f9043b4",
"type": "workout",
"name": "上肢关节热身",
"completed": false,
"schema": "keep://plans/5be29589d734a26a885ac67c?selectWorkout=5b86005ad734a2093f9043b4&source=suit&suitDayIndex=2&suitId=5e7de69eb1136f5caf326441",
"previewSchema": "keep://training/step/list?planId=5be29589d734a26a885ac67c&selectWorkout=5b86005ad734a2093f9043b4",
"hasPlus": false,
"duration": 2,
"equipments": [],
"canBeReplaced": false,
"category": null
},
{
"picture": "https://static1.keepcdn.com/2018/12/18/11/1545103705715_750x700.png",
"id": "5db11a4ce381087e597352f7",
"type": "workout",
"name": "肩部塑形训练 5级",
"completed": false,
"schema": "keep://plans/5db11a4ce381087e597352f7?selectWorkout=5db11a4ce381087e597352f7&source=suit&suitDayIndex=2&suitId=5e7de69eb1136f5caf326441",
"previewSchema": "keep://training/step/list?planId=5db11a4ce381087e597352f7&selectWorkout=5db11a4ce381087e597352f7",
"hasPlus": true,
"duration": 18,
"equipments": [],
"canBeReplaced": false,
"category": null
}
]
}
],
"addition": null,
"suitTip": {
"subTitle": "每日训练课堂",
"title": "收紧腹部应该怎么做?",
"videoUrl": "https://static1.keepcdn.com/cms_static/video/2019/3/4/1551670438553_NCUyMCUyMCVFNiU5.mp4",
"duration": 57,
"playMode": "across",
"cover": "https://static1.keepcdn.com/cms_static/picture/收紧腹部_1545364736584.png"
},
"dbDayIndex": 80,
"adjustEntrance": null,
"coachGuideInfo": null,
"dietInfo": null
},
{
"leave": false,
"leaveEndDayIndex": null,
"dayIndex": 3,
"tasks": [
{
"title": "完成 2 个训练",
"coachGuide": null,
"todoList": [
{
"picture": "https://static1.keepcdn.com/2018/11/07/15/1541576128927_750x700.jpg",
"id": "5b88baf8d734a219f8de0bda",
"type": "workout",
"name": "下肢关节热身",
"completed": false,
"schema": "keep://plans/5be295cdd734a26a885ac68a?selectWorkout=5b88baf8d734a219f8de0bda&source=suit&suitDayIndex=3&suitId=5e7de69eb1136f5caf326441",
"previewSchema": "keep://training/step/list?planId=5be295cdd734a26a885ac68a&selectWorkout=5b88baf8d734a219f8de0bda",
"hasPlus": false,
"duration": 2,
"equipments": [],
"canBeReplaced": false,
"category": null
},
{
"picture": "https://static1.keepcdn.com/2018/12/18/11/1545103775217_750x700.png",
"id": "5db116dee381087e5972e7d1",
"type": "workout",
"name": "下肢综合塑形训练 5级",
"completed": false,
"schema": "keep://plans/5db116dee381087e5972e7d1?selectWorkout=5db116dee381087e5972e7d1&source=suit&suitDayIndex=3&suitId=5e7de69eb1136f5caf326441",
"previewSchema": "keep://training/step/list?planId=5db116dee381087e5972e7d1&selectWorkout=5db116dee381087e5972e7d1",
"hasPlus": true,
"duration": 19,
"equipments": [],
"canBeReplaced": false,
"category": null
}
]
}
],
"addition": null,
"suitTip": {
"subTitle": "每日训练课堂",
"title": "没有食物秤,怎么确定每顿吃多少",
"videoUrl": "https://static1.keepcdn.com/cms_static/video/2019/3/4/1551671055666_NSUyMCUyMCVFNiVC.mp4",
"duration": 69,
"playMode": "across",
"cover": "https://static1.keepcdn.com/cms_static/picture/没有食物秤,怎么确定每顿吃多少?2_1545364817795.png"
},
"dbDayIndex": 80,
"adjustEntrance": null,
"coachGuideInfo": null,
"dietInfo": null
},
{
"leave": false,
"leaveEndDayIndex": null,
"dayIndex": 4,
"tasks": [
{
"title": "完成 2 个训练",
"coachGuide": null,
"todoList": [
{
"picture": "https://static1.keepcdn.com/2018/11/07/15/1541576034304_750x700.jpg",
"id": "5b86005ad734a2093f9043b4",
"type": "workout",
"name": "上肢关节热身",
"completed": false,
"schema": "keep://plans/5be29589d734a26a885ac67c?selectWorkout=5b86005ad734a2093f9043b4&source=suit&suitDayIndex=4&suitId=5e7de69eb1136f5caf326441",
"previewSchema": "keep://training/step/list?planId=5be29589d734a26a885ac67c&selectWorkout=5b86005ad734a2093f9043b4",
"hasPlus": false,
"duration": 2,
"equipments": [],
"canBeReplaced": false,
"category": null
},
{
"picture": "https://static1.keepcdn.com/2018/12/18/11/1545103705715_750x700.png",
"id": "5db11402e381087e5972a38c",
"type": "workout",
"name": "上肢胸背塑形 5级",
"completed": false,
"schema": "keep://plans/5db11402e381087e5972a38c?selectWorkout=5db11402e381087e5972a38c&source=suit&suitDayIndex=4&suitId=5e7de69eb1136f5caf326441",
"previewSchema": "keep://training/step/list?planId=5db11402e381087e5972a38c&selectWorkout=5db11402e381087e5972a38c",
"hasPlus": true,
"duration": 19,
"equipments": [],
"canBeReplaced": false,
"category": null
}
]
}
],
"addition": null,
"suitTip": {
"subTitle": "每日训练课堂",
"title": "除了米饭,健身还能吃哪些主食?",
"videoUrl": "https://static1.keepcdn.com/cms_static/video/2019/3/4/1551671223552_NyUyMCUyMCVFOSU5.mp4",
"duration": 81,
"playMode": "across",
"cover": "https://static1.keepcdn.com/cms_static/picture/除了米饭,健身还能吃哪些主食?1_1545365288811.png"
},
"dbDayIndex": 80,
"adjustEntrance": null,
"coachGuideInfo": null,
"dietInfo": null
},
{
"leave": false,
"leaveEndDayIndex": null,
"dayIndex": 5,
"tasks": [
{
"title": "完成 2 个训练",
"coachGuide": null,
"todoList": [
{
"picture": "https://static1.keepcdn.com/2018/11/07/15/1541576230425_750x700.jpg",
"id": "5b88bc3ba29e3409b394eb89",
"type": "workout",
"name": "整体热身",
"completed": false,
"schema": "keep://plans/5be2962aa29e347112ee4440?selectWorkout=5b88bc3ba29e3409b394eb89&source=suit&suitDayIndex=5&suitId=5e7de69eb1136f5caf326441",
"previewSchema": "keep://training/step/list?planId=5be2962aa29e347112ee4440&selectWorkout=5b88bc3ba29e3409b394eb89",
"hasPlus": true,
"duration": 2,
"equipments": [],
"canBeReplaced": false,
"category": null
},
{
"picture": "https://static1.keepcdn.com/2018/12/18/11/1545103658684_750x700.jpg",
"id": "5db11cd2e381087e5973885e",
"type": "workout",
"name": "核心力量强化 5级",
"completed": false,
"schema": "keep://plans/5db11cd2e381087e5973885e?selectWorkout=5db11cd2e381087e5973885e&source=suit&suitDayIndex=5&suitId=5e7de69eb1136f5caf326441",
"previewSchema": "keep://training/step/list?planId=5db11cd2e381087e5973885e&selectWorkout=5db11cd2e381087e5973885e",
"hasPlus": true,
"duration": 28,
"equipments": [],
"canBeReplaced": false,
"category": null
}
]
}
],
"addition": null,
"suitTip": {
"subTitle": "每日训练课堂",
"title": "豆浆和牛奶,到底选哪个?",
"videoUrl": "https://v1.keepcdn.com/cms_static/video/10 豆浆和牛奶,到底选哪个?_1545722348512.mp4",
"duration": 67,
"playMode": "across",
"cover": "https://static1.keepcdn.com/cms_static/picture/豆浆和牛奶,到底选哪个?3_1545722367622.png"
},
"dbDayIndex": 80,
"adjustEntrance": null,
"coachGuideInfo": null,
"dietInfo": null
},
{
"leave": false,
"leaveEndDayIndex": null,
"dayIndex": 6,
"tasks": [
{
"title": "完成 2 个训练",
"coachGuide": null,
"todoList": [
{
"picture": "https://static1.keepcdn.com/2018/11/07/15/1541576034304_750x700.jpg",
"id": "5b86005ad734a2093f9043b4",
"type": "workout",
"name": "上肢关节热身",
"completed": false,
"schema": "keep://plans/5be29589d734a26a885ac67c?selectWorkout=5b86005ad734a2093f9043b4&source=suit&suitDayIndex=6&suitId=5e7de69eb1136f5caf326441",
"previewSchema": "keep://training/step/list?planId=5be29589d734a26a885ac67c&selectWorkout=5b86005ad734a2093f9043b4",
"hasPlus": false,
"duration": 2,
"equipments": [],
"canBeReplaced": false,
"category": null
},
{
"picture": "https://static1.keepcdn.com/2018/12/18/11/1545103705715_750x700.png",
"id": "5db113fae381087e59729bbc",
"type": "workout",
"name": "上肢力量综合提升 5级",
"completed": false,
"schema": "keep://plans/5db113fae381087e59729bbc?selectWorkout=5db113fae381087e59729bbc&source=suit&suitDayIndex=6&suitId=5e7de69eb1136f5caf326441",
"previewSchema": "keep://training/step/list?planId=5db113fae381087e59729bbc&selectWorkout=5db113fae381087e59729bbc",
"hasPlus": true,
"duration": 20,
"equipments": [],
"canBeReplaced": false,
"category": null
}
]
}
],
"addition": null,
"suitTip": {
"subTitle": "每日训练课堂",
"title": "为什么健身人士都爱鸡胸肉?",
"videoUrl": "https://static1.keepcdn.com/cms_static/video/2019/3/4/1551671271540_OCUyMCUyMCVFNCVC.mp4",
"duration": 72,
"playMode": "across",
"cover": "https://static1.keepcdn.com/cms_static/picture/为什么健身人士都爱鸡胸肉?1_1545722277940.png"
},
"dbDayIndex": 80,
"adjustEntrance": null,
"coachGuideInfo": null,
"dietInfo": null
}
],
"introduction": null,
"suitCalendar": [
{
"dayIndex": 0,
"completed": false
},
{
"dayIndex": 1,
"completed": false
},
{
"dayIndex": 2,
"completed": false
},
{
"dayIndex": 3,
"completed": false
},
{
"dayIndex": 4,
"completed": false
},
{
"dayIndex": 5,
"completed": false
},
{
"dayIndex": 6,
"completed": false
},
{
"dayIndex": 7,
"completed": false
},
{
"dayIndex": 8,
"completed": false
},
{
"dayIndex": 9,
"completed": false
},
{
"dayIndex": 10,
"completed": false
},
{
"dayIndex": 11,
"completed": false
},
{
"dayIndex": 12,
"completed": false
},
{
"dayIndex": 13,
"completed": false
},
{
"dayIndex": 14,
"completed": false
},
{
"dayIndex": 15,
"completed": false
},
{
"dayIndex": 16,
"completed": false
},
{
"dayIndex": 17,
"completed": false
},
{
"dayIndex": 18,
"completed": false
},
{
"dayIndex": 19,
"completed": false
},
{
"dayIndex": 20,
"completed": false
},
{
"dayIndex": 21,
"completed": false
},
{
"dayIndex": 22,
"completed": false
},
{
"dayIndex": 23,
"completed": false
},
{
"dayIndex": 24,
"completed": false
},
{
"dayIndex": 25,
"completed": false
},
{
"dayIndex": 26,
"completed": false
},
{
"dayIndex": 27,
"completed": false
},
{
"dayIndex": 28,
"completed": false
},
{
"dayIndex": 29,
"completed": false
},
{
"dayIndex": 30,
"completed": false
},
{
"dayIndex": 31,
"completed": false
},
{
"dayIndex": 32,
"completed": false
},
{
"dayIndex": 33,
"completed": false
},
{
"dayIndex": 34,
"completed": false
},
{
"dayIndex": 35,
"completed": false
},
{
"dayIndex": 36,
"completed": false
},
{
"dayIndex": 37,
"completed": false
},
{
"dayIndex": 38,
"completed": false
},
{
"dayIndex": 39,
"completed": false
},
{
"dayIndex": 40,
"completed": false
},
{
"dayIndex": 41,
"completed": false
},
{
"dayIndex": 42,
"completed": false
},
{
"dayIndex": 43,
"completed": false
},
{
"dayIndex": 44,
"completed": false
},
{
"dayIndex": 45,
"completed": false
},
{
"dayIndex": 46,
"completed": false
},
{
"dayIndex": 47,
"completed": false
},
{
"dayIndex": 48,
"completed": false
},
{
"dayIndex": 49,
"completed": false
},
{
"dayIndex": 50,
"completed": false
},
{
"dayIndex": 51,
"completed": false
},
{
"dayIndex": 52,
"completed": false
},
{
"dayIndex": 53,
"completed": false
},
{
"dayIndex": 54,
"completed": false
},
{
"dayIndex": 55,
"completed": false
},
{
"dayIndex": 56,
"completed": false
},
{
"dayIndex": 57,
"completed": false
},
{
"dayIndex": 58,
"completed": false
},
{
"dayIndex": 59,
"completed": false
},
{
"dayIndex": 60,
"completed": false
},
{
"dayIndex": 61,
"completed": false
},
{
"dayIndex": 62,
"completed": false
},
{
"dayIndex": 63,
"completed": false
},
{
"dayIndex": 64,
"completed": false
},
{
"dayIndex": 65,
"completed": false
},
{
"dayIndex": 66,
"completed": false
},
{
"dayIndex": 67,
"completed": false
},
{
"dayIndex": 68,
"completed": false
},
{
"dayIndex": 69,
"completed": false
},
{
"dayIndex": 70,
"completed": false
},
{
"dayIndex": 71,
"completed": false
},
{
"dayIndex": 72,
"completed": false
},
{
"dayIndex": 73,
"completed": false
},
{
"dayIndex": 74,
"completed": false
},
{
"dayIndex": 75,
"completed": false
},
{
"dayIndex": 76,
"completed": false
},
{
"dayIndex": 77,
"completed": false
},
{
"dayIndex": 78,
"completed": false
},
{
"dayIndex": 79,
"completed": false
},
{
"dayIndex": 80,
"completed": false
},
{
"dayIndex": 81,
"completed": false
},
{
"dayIndex": 82,
"completed": false
},
{
"dayIndex": 83,
"completed": false
}
],
"nextSuit": null,
"enableAdjust": true
},
"userSuitGoals": null,
"equipmentRecommend": null,
"suitTeamInfo": null,
"modifiedCard": null,
"memberSalesGuideCard": null,
"recommendTemplateSuits": {
"suits": [
{
"suitTemplateId": "5e0d5d3542e9b12e59d73963",
"name": "告别肚腩计划",
"picture": "https://static1.keepcdn.com/ark_prime-cms/2020/03/19/10/03/1584583424353_750x562.png",
"hasPlus": true,
"suitGenerateType": "specialTemplate",
"desc": "4 周 · 零基础 · 减脂",
"schema": "https://m.gotokeep.com/krime-fe/suit/template/detail/5e0d5d3542e9b12e59d73963?fullscreen=true",
"trainingDaysPerWeek": 5,
"workoutMinutes": 20,
"workoutMinutesMin": 0,
"workoutMinutesMax": 0,
"weekPeriod": 4,
"paidType": 0,
"suitTags": [
{
"type": "prime",
"content": "会员"
}
],
"newSuit": false
},
{
"suitTemplateId": "5e0aeb8fa2dea40d52f47d3f",
"name": "腹肌撕裂计划",
"picture": "https://static1.keepcdn.com/ark_prime-cms/2020/03/19/10/38/1584585481536_750x562.png",
"hasPlus": true,
"suitGenerateType": "specialTemplate",
"desc": "4 周 · 初级 · 增肌",
"schema": "https://m.gotokeep.com/krime-fe/suit/template/detail/5e0aeb8fa2dea40d52f47d3f?fullscreen=true",
"trainingDaysPerWeek": 5,
"workoutMinutes": 20,
"workoutMinutesMin": 0,
"workoutMinutesMax": 0,