jinlin
2024-09-06 3ecb68c427a627ad8e90d8c555655e7724be2d96
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
userhelp_jsondata = [
  {
    "id": 1,
    "system": "djxl",
    "systemName": "等级修理",
    "userManual": [
      {
        "id": 1,
        "name": "T队用户手册",
        "file": "/help/djxl/manual/T队用户手册.docx"
      },
      {
        "id": 2,
        "name": "助理用户手册",
        "file": "/help/djxl/manual/助理用户手册.docx"
      },
      {
        "id": 3,
        "name": "承修厂用户手册",
        "file": "/help/djxl/manual/承修厂用户手册.docx"
      },
      {
        "id": 4,
        "name": "处长用户手册",
        "file": "/help/djxl/manual/处长用户手册.docx"
      },
      {
        "id": 5,
        "name": "代表室用户手册",
        "file": "/help/djxl/manual/代表室用户手册.docx"
      },
    ],
    "data":[
      {
        "id": 1,
        "user": "助理",
        "isCollapsed":false,
        "modules": [
          {
            "id": 1,
            "module": "年度修理计划",
            "isCollapsed":false,
            "functions": [
              {
                "id": 1,
                "function": "年度修理计划编报",
                "docFile": "/help/djxl/doc/助理_年度修理计划编报.pdf",
                "videoFile": "/help/djxl/video/助理_年度修理计划编报.mp4"
              },
            ]
          },
          {
            "id": 2,
            "module": "修理工程单",
            "isCollapsed":false,
            "functions": [
              {
                "id": 1,
                "function": "新建工程单",
                "docFile": "/help/djxl/doc/助理_新建工程单.pdf",
                "videoFile": "/help/djxl/video/助理_新建工程单.mp4"
              },
              {
                "id": 2,
                "function": "修理工程单审核",
                "docFile": "/help/djxl/doc/助理_修理工程单审核.pdf",
                "videoFile": "/help/djxl/video/助理_修理工程单审核.mp4"
              },
              {
                "id": 3,
                "function": "修理工程单任务下发",
                "docFile": "/help/djxl/doc/助理_修理工程单任务下发.pdf",
                "videoFile": "/help/djxl/video/助理_修理工程单任务下发.mp4"
              },
            ]
          },
          {
            "id": 3,
            "module": "外协申报",
            "isCollapsed":false,
            "functions": [
              {
                "id": 1,
                "function": "外协申报组织审核",
                "docFile": "/help/djxl/doc/助理_外协申报组织审核.pdf",
                "videoFile": "/help/djxl/video/助理_外协申报组织审核.mp4"
              },
            ]
          },
          {
            "id": 4,
            "module": "系统技术方案",
            "isCollapsed":false,
            "functions": [
              {
                "id": 1,
                "function": "系统技术方案审核",
                "docFile": "/help/djxl/doc/助理_系统技术方案审核.pdf",
                "videoFile": "/help/djxl/video/助理_系统技术方案审核.mp4"
              },
            ]
          },
          {
            "id": 5,
            "module": "总体技术方案",
            "isCollapsed":false,
            "functions": [
              {
                "id": 1,
                "function": "总体技术方案指定专家",
                "docFile": "/help/djxl/doc/助理_总体技术方案指定专家.pdf",
                "videoFile": "/help/djxl/video/助理_总体技术方案指定专家.mp4"
              },
              {
                "id": 2,
                "function": "总体技术方案专家意见征集",
                "docFile": "/help/djxl/doc/助理_总体技术方案专家意见征集.pdf",
                "videoFile": "/help/djxl/video/助理_总体技术方案专家意见征集.mp4"
              },
              {
                "id": 3,
                "function": "总体技术方案组织评审",
                "docFile": "/help/djxl/doc/助理_总体技术方案组织评审.pdf",
                "videoFile": "/help/djxl/video/助理_总体技术方案组织评审.mp4"
              },
              {
                "id": 4,
                "function": "总体技术方案批复",
                "docFile": "/help/djxl/doc/助理_总体技术方案批复.pdf",
                "videoFile": "/help/djxl/video/助理_总体技术方案批复.mp4"
              },
            ]
          },
          {
            "id": 6,
            "module": "追加工程",
            "isCollapsed":false,
            "functions": [
              {
                "id": 1,
                "function": "追加工程任务发起",
                "docFile": "/help/djxl/doc/助理_追加工程任务发起.pdf",
                "videoFile": "/help/djxl/video/助理_追加工程任务发起.mp4"
              },
              {
                "id": 2,
                "function": "追加工程助理审核",
                "docFile": "/help/djxl/doc/助理_追加工程审核.pdf",
                "videoFile": "/help/djxl/video/助理_追加工程审核.mp4"
              },
            ]
          },
        ]
      },
      {
        "id": 2,
        "user": "处长",
        "isCollapsed":false,
        "modules": [
          {
            "id": 1,
            "module": "年度修理计划",
            "isCollapsed":false,
            "functions": [
              {
                "id": 1,
                "function": "年度修理计划审批",
                "docFile": "/help/djxl/doc/处长_年度修理计划审批.pdf",
                "videoFile": "/help/djxl/video/处长_年度修理计划审批.mp4"
              },
            ]
          },
          {
            "id": 2,
            "module": "修理工程单",
            "isCollapsed":false,
            "functions": [
              {
                "id": 1,
                "function": "修理工程单审批",
                "docFile": "/help/djxl/doc/处长_修理工程单审批.pdf",
                "videoFile": "/help/djxl/video/处长_修理工程单审批.mp4"
              },
            ]
          },
          {
            "id": 3,
            "module": "外协申报",
            "isCollapsed":false,
            "functions": [
              {
                "id": 1,
                "function": "外协申报审批",
                "docFile": "/help/djxl/doc/处长_外协申报审批.pdf",
                "videoFile": "/help/djxl/video/处长_外协申报审批.mp4"
              },
            ]
          },
          {
            "id": 4,
            "module": "追加工程",
            "isCollapsed":false,
            "functions": [
              {
                "id": 1,
                "function": "追加工程审批",
                "docFile": "/help/djxl/doc/处长_追加工程审批.pdf",
                "videoFile": "/help/djxl/video/处长_追加工程审批.mp4"
              },
            ]
          },
        ]
      },
      {
        "id": 3,
        "user": "部长",
        "isCollapsed":false,
        "modules": [
          {
            "id": 4,
            "module": "追加工程",
            "isCollapsed":false,
            "functions": [
              {
                "id": 1,
                "function": "追加工程审批",
                "docFile": "/help/djxl/doc/部长_追加工程审批.pdf",
                "videoFile": "/help/djxl/video/部长_追加工程审批.mp4"
              },
            ]
          },
        ]
      },
      {
        "id": 4,
        "user": "承修厂",
        "isCollapsed":false,
        "modules": [
          {
            "id": 1,
            "module": "工程勘验",
            "isCollapsed":false,
            "functions": [
              {
                "id": 1,
                "function": "总厂勘验计划",
                "docFile": "/help/djxl/doc/承修厂_总厂勘验计划.pdf",
                "videoFile": "/help/djxl/video/承修厂_总厂勘验计划.mp4"
              },
              {
                "id": 2,
                "function": "总厂初步分工方案",
                "docFile": "/help/djxl/doc/承修厂_总厂初步分工方案.pdf",
                "videoFile": "/help/djxl/video/承修厂_总厂初步分工方案.mp4"
              },
              {
                "id": 3,
                "function": "厂家制定勘验大纲",
                "docFile": "/help/djxl/doc/承修厂_厂家制定勘验大纲.pdf",
                "videoFile": "/help/djxl/video/承修厂_厂家制定勘验大纲.mp4"
              },
              {
                "id": 4,
                "function": "总厂勘验大纲汇总",
                "docFile": "/help/djxl/doc/承修厂_总厂汇总勘验大纲.pdf",
                "videoFile": "/help/djxl/video/承修厂_总厂汇总勘验大纲.mp4"
              },
              {
                "id": 5,
                "function": "总厂填写勘验计划",
                "docFile": "/help/djxl/doc/承修厂_总厂填写勘验计划.pdf",
                "videoFile": "/help/djxl/video/承修厂_总厂填写勘验计划.mp4"
              },
              {
                "id": 6,
                "function": "厂家反馈勘验记录",
                "docFile": "/help/djxl/doc/承修厂_厂家反馈勘验记录.pdf",
                "videoFile": "/help/djxl/video/承修厂_厂家反馈勘验记录.mp4"
              },
              {
                "id": 7,
                "function": "总厂工程勘验汇总",
                "docFile": "/help/djxl/doc/承修厂_总厂汇总工程勘验.pdf",
                "videoFile": "/help/djxl/video/承修厂_总厂汇总工程勘验.mp4"
              },
              {
                "id": 8,
                "function": "工程勘验查看",
                "docFile": "/help/djxl/doc/承修厂_工程勘验.pdf",
                "videoFile": "/help/djxl/video/承修厂_工程勘验.mp4"
              },
              {
                "id": 9,
                "function": "总厂补充勘验",
                "docFile": "/help/djxl/doc/承修厂_总厂补充勘验.pdf",
                "videoFile": "/help/djxl/video/承修厂_总厂补充勘验.mp4"
              },
              {
                "id": 10,
                "function": "厂家反馈补充勘验记录",
                "docFile": "/help/djxl/doc/承修厂_厂家反馈补充勘验记录.pdf",
                "videoFile": "/help/djxl/video/承修厂_厂家反馈补充勘验记录.mp4"
              },
            ]
          },
          {
            "id": 2,
            "module": "外协申报",
            "isCollapsed":false,
            "functions": [
              {
                "id": 1,
                "function": "厂家外协申报",
                "docFile": "/help/djxl/doc/承修厂_厂家外协申报.pdf",
                "videoFile": "/help/djxl/video/承修厂_厂家外协申报.mp4"
              },
              {
                "id": 2,
                "function": "总厂外协申报遴选",
                "docFile": "/help/djxl/doc/承修厂_总厂遴选外协申报.pdf",
                "videoFile": "/help/djxl/video/承修厂_总厂遴选外协申报.mp4"
              },
            ]
          },
          {
            "id": 3,
            "module": "系统技术方案",
            "isCollapsed":false,
            "functions": [
              {
                "id": 1,
                "function": "总体所编报系统技术方案",
                "docFile": "/help/djxl/doc/承修厂_总体所编报系统技术方案.pdf",
                "videoFile": "/help/djxl/video/承修厂_总体所编报系统技术方案.mp4"
              },
              {
                "id": 2,
                "function": "总体所上传系统技术方案附件",
                "docFile": "/help/djxl/doc/承修厂_总体所上传系统技术方案附件.pdf",
                "videoFile": "/help/djxl/video/承修厂_总体所上传系统技术方案附件.mp4"
              },
            ]
          },
          {
            "id": 4,
            "module": "总体技术方案",
            "isCollapsed":false,
            "functions": [
              {
                "id": 1,
                "function": "总体所编制总体技术方案",
                "docFile": "/help/djxl/doc/承修厂_总体所编制总体技术方案.pdf",
                "videoFile": "/help/djxl/video/承修厂_总体所编制总体技术方案.mp4"
              },
              {
                "id": 2,
                "function": "总体所上报总体技术方案",
                "docFile": "/help/djxl/doc/承修厂_总体所上报总体技术方案.pdf",
                "videoFile": "/help/djxl/video/承修厂_总体所上报总体技术方案.mp4"
              },
            ]
          },
          {
            "id": 5,
            "module": "施工明细",
            "isCollapsed":false,
            "functions": [
              {
                "id": 1,
                "function": "总厂施工明细下发",
                "docFile": "/help/djxl/doc/承修厂_总厂施工明细下发.pdf",
                "videoFile": "/help/djxl/video/承修厂_总厂施工明细下发.mp4"
              },
              {
                "id": 2,
                "function": "厂家施工明细编报",
                "docFile": "/help/djxl/doc/承修厂_厂家施工明细编报.pdf",
                "videoFile": "/help/djxl/video/承修厂_厂家施工明细编报.mp4"
              },
              {
                "id": 3,
                "function": "总厂施工明细汇总",
                "docFile": "/help/djxl/doc/承修厂_总厂施工明细汇总.pdf",
                "videoFile": "/help/djxl/video/承修厂_总厂施工明细汇总.mp4"
              },{
                "id": 4,
                "function": "总厂施工明细工程议定",
                "docFile": "/help/djxl/doc/承修厂_总厂施工明细工程议定.pdf",
                "videoFile": "/help/djxl/video/承修厂_总厂施工明细工程议定.mp4"
              },{
                "id": 5,
                "function": "总厂施工明细组织会签",
                "docFile": "/help/djxl/doc/承修厂_总厂施工明细组织会签.pdf",
                "videoFile": "/help/djxl/video/承修厂_总厂施工明细组织会签.mp4"
              },
            ]
          },
          {
            "id": 6,
            "module": "质保大纲",
            "isCollapsed":false,
            "functions": [
              {
                "id": 1,
                "function": "总厂质保大纲",
                "docFile": "/help/djxl/doc/承修厂_总厂质保大纲.pdf",
                "videoFile": "/help/djxl/video/承修厂_总厂质保大纲.mp4"
              },
            ]
          },
          {
            "id": 7,
            "module": "合同及监管协议",
            "isCollapsed":false,
            "functions": [
              {
                "id": 1,
                "function": "总厂合同及监管协议",
                "docFile": "/help/djxl/doc/承修厂_总厂合同及监管协议.pdf",
                "videoFile": "/help/djxl/video/承修厂_总厂合同及监管协议.mp4"
              },
            ]
          },
          // {
          //   "id": 8,
          //   "module": "拆检计划",
          //   "functions": [
          //     {
          //       "id": 1,
          //       "function": "总厂拆检计划",
          //       "docFile": "/help/djxl/doc/承修厂_总厂拆检计划.pdf",
          //       "videoFile": "/help/djxl/video/承修厂_总厂拆检计划.mp4"
          //     },
          //   ]
          // },
          // {
          //   "id": 9,
          //   "module": "军专检",
          //   "functions": [
          //     {
          //       "id": 1,
          //       "function": "总厂军专检编报",
          //       "docFile": "/help/djxl/doc/承修厂_总厂军专检编报.pdf",
          //       "videoFile": "/help/djxl/video/承修厂_总厂军专检编报.mp4"
          //     },
          //   ]
          // },
          {
            "id": 10,
            "module": "工艺清单",
            "isCollapsed":false,
            "functions": [
              {
                "id": 1,
                "function": "厂家工艺文件编报",
                "docFile": "/help/djxl/doc/承修厂_厂家工艺文件编报.pdf",
                "videoFile": "/help/djxl/video/承修厂_厂家工艺文件编报.mp4"
              },
              {
                "id": 2,
                "function": "总厂工艺文件汇总",
                "docFile": "/help/djxl/doc/承修厂_总厂工艺文件汇总.pdf",
                "videoFile": "/help/djxl/video/承修厂_总厂工艺文件汇总.mp4"
              },
            ]
          },
          {
            "id": 11,
            "module": "计划管理",
            "isCollapsed":false,
            "functions": [
              {
                "id": 1,
                "function": "厂家月计划编报",
                "docFile": "/help/djxl/doc/承修厂_厂家月计划编报.pdf",
                "videoFile": "/help/djxl/video/承修厂_厂家月计划编报.mp4"
              },
              {
                "id": 2,
                "function": "总厂月计划汇总",
                "docFile": "/help/djxl/doc/承修厂_总厂月计划汇总.pdf",
                "videoFile": "/help/djxl/video/承修厂_总厂月计划汇总.mp4"
              },
              {
                "id": 3,
                "function": "厂家月计划完成情况反馈",
                "docFile": "/help/djxl/doc/承修厂_厂家月计划完成情况反馈.pdf",
                "videoFile": "/help/djxl/video/承修厂_厂家月计划完成情况反馈.mp4"
              },
              {
                "id": 4,
                "function": "厂家周计划编报",
                "docFile": "/help/djxl/doc/承修厂_厂家周计划编报.pdf",
                "videoFile": "/help/djxl/video/承修厂_厂家周计划编报.mp4"
              },
              {
                "id": 5,
                "function": "总厂周计划汇总",
                "docFile": "/help/djxl/doc/承修厂_总厂周计划汇总.pdf",
                "videoFile": "/help/djxl/video/承修厂_总厂周计划汇总.mp4"
              },
              {
                "id": 6,
                "function": "厂家周计划完成情况反馈",
                "docFile": "/help/djxl/doc/承修厂_厂家周计划完成情况反馈.pdf",
                "videoFile": "/help/djxl/video/承修厂_厂家周计划完成情况反馈.mp4"
              },
              {
                "id": 7,
                "function": "厂家日计划编报",
                "docFile": "/help/djxl/doc/承修厂_厂家日计划编报.pdf",
                "videoFile": "/help/djxl/video/承修厂_厂家日计划编报.mp4"
              },
              {
                "id": 8,
                "function": "总厂日计划汇总",
                "docFile": "/help/djxl/doc/承修厂_总厂日计划汇总.pdf",
                "videoFile": "/help/djxl/video/承修厂_总厂日计划汇总.mp4"
              },
              {
                "id": 9,
                "function": "厂家日计划完成情况反馈",
                "docFile": "/help/djxl/doc/承修厂_厂家日计划完成情况反馈.pdf",
                "videoFile": "/help/djxl/video/承修厂_厂家日计划完成情况反馈.mp4"
              },
            ]
          },
          {
            "id": 12,
            "module": "拆检鉴定报验",
            "isCollapsed":false,
            "functions": [
              {
                "id": 1,
                "function": "厂家拆检鉴定报验",
                "docFile": "/help/djxl/doc/承修厂_厂家拆检鉴定报验.pdf",
                "videoFile": "/help/djxl/video/承修厂_厂家拆检鉴定报验.mp4"
              },
              {
                "id": 2,
                "function": "总厂拆检鉴定报验确认",
                "docFile": "/help/djxl/doc/承修厂_总厂拆检鉴定报验确认.pdf",
                "videoFile": "/help/djxl/video/承修厂_总厂拆检鉴定报验确认.mp4"
              },
            ]
          },
          // {
          //   "id": 11,
          //   "module": "军专检检验验收",
          //   "functions": [
          //     {
          //       "id": 1,
          //       "function": "厂家军专检报验",
          //       "docFile": "/help/djxl/doc/承修厂_厂家军专检报验.pdf",
          //       "videoFile": "/help/djxl/video/承修厂_厂家军专检报验.mp4"
          //     },
          //     {
          //       "id": 2,
          //       "function": "总厂军专检检验",
          //       "docFile": "/help/djxl/doc/承修厂_总厂军专检检验.pdf",
          //       "videoFile": "/help/djxl/video/承修厂_总厂军专检检验.mp4"
          //     },
          //   ]
          // },
          {
            "id": 13,
            "module": "专检报验",
            "isCollapsed":false,
            "functions": [
              {
                "id": 1,
                "function": "厂家专检报验",
                "docFile": "/help/djxl/doc/承修厂_厂家专检报验.pdf",
                "videoFile": "/help/djxl/video/承修厂_厂家专检报验.mp4"
              },
              {
                "id": 2,
                "function": "总厂专检审核",
                "docFile": "/help/djxl/doc/承修厂_总厂专检审核.pdf",
                "videoFile": "/help/djxl/video/承修厂_总厂专检审核.mp4"
              },
            ]
          },
          {
            "id": 14,
            "module": "军检报验",
            "isCollapsed":false,
            "functions": [
              {
                "id": 2,
                "function": "厂家军检报验",
                "docFile": "/help/djxl/doc/承修厂_厂家军检报验.pdf",
                "videoFile": "/help/djxl/video/承修厂_厂家军检报验.mp4"
              },
            ]
          },
          {
            "id": 15,
            "module": "专检检验验收",
            "isCollapsed":false,
            "functions": [
              {
                "id": 1,
                "function": "厂家专检验收报验",
                "docFile": "/help/djxl/doc/承修厂_厂家专检验收报验.pdf",
                "videoFile": "/help/djxl/video/承修厂_厂家专检验收报验.mp4"
              },
              {
                "id": 2,
                "function": "总厂专检检验验收",
                "docFile": "/help/djxl/doc/承修厂_总厂专检检验验收.pdf",
                "videoFile": "/help/djxl/video/承修厂_总厂专检检验验收.mp4"
              },
            ]
          },
          {
            "id": 16,
            "module": "军检检验验收",
            "isCollapsed":false,
            "functions": [
              {
                "id": 1,
                "function": "厂家军检验收报验",
                "docFile": "/help/djxl/doc/承修厂_厂家军检验收报验.pdf",
                "videoFile": "/help/djxl/video/承修厂_厂家军检验收报验.mp4"
              },
            ]
          },
          {
            "id": 17,
            "module": "拆检鉴定",
            "isCollapsed":false,
            "functions": [
              {
                "id": 1,
                "function": "厂家拆检鉴定",
                "docFile": "/help/djxl/doc/承修厂_厂家拆检鉴定.pdf",
                "videoFile": "/help/djxl/video/承修厂_厂家拆检鉴定.mp4"
              },
              {
                "id": 2,
                "function": "总厂拆检鉴定检验",
                "docFile": "/help/djxl/doc/承修厂_总厂拆检鉴定检验.pdf",
                "videoFile": "/help/djxl/video/承修厂_总厂拆检鉴定检验.mp4"
              },
              {
                "id": 3,
                "function": "总厂拆检鉴定组织会签",
                "docFile": "/help/djxl/doc/承修厂_总厂拆检鉴定组织会签.pdf",
                "videoFile": "/help/djxl/video/承修厂_总厂拆检鉴定组织会签.mp4"
              },
            ]
          },
          {
            "id": 18,
            "module": "拆检计划",
            "isCollapsed":false,
            "functions": [
              {
                "id": 1,
                "function": "总厂拆检计划",
                "docFile": "/help/djxl/doc/承修厂_总厂拆检计划.pdf",
                "videoFile": "/help/djxl/video/承修厂_总厂拆检计划.mp4"
              },
               ]
          },
        ]
      },
      {
        "id": 5,
        "user": "T员",
        "isCollapsed":false,
        "modules": [
          {
            "id": 1,
            "module": "修理工程单",
            "isCollapsed":false,
            "functions": [
              {
                "id": 1,
                "function": "修理工程单编报",
                "docFile": "/help/djxl/doc/T员_修理工程单编报.pdf",
                "videoFile": "/help/djxl/video/T员_修理工程单编报.mp4"
              },
            ]
          },
          {
            "id": 2,
            "module": "T队自修",
            "isCollapsed":false,
            "functions": [
              {
                "id": 1,
                "function": "T队自修",
                "docFile": "/help/djxl/doc/T员-T队自修.pdf",
                "videoFile": "/help/djxl/video/T员_T队自修.mp4"
              },
            ]
          },
          {
            "id": 3,
            "module": "日计划",
            "isCollapsed":false,
            "functions": [
              {
                "id": 1,
                "function": "日计划助修情况反馈",
                "docFile": "/help/djxl/doc/T员_日计划完成情况反馈.pdf",
                "videoFile": "/help/djxl/video/T员_日计划完成情况反馈.mp4"
              },
            ]
          },
          {
            "id": 4,
            "module": "追加工程",
            "isCollapsed":false,
            "functions": [
              {
                "id": 1,
                "function": "追加工程编报",
                "docFile": "/help/djxl/doc/T员_追加工程编报.pdf",
                "videoFile": "/help/djxl/video/T员_追加工程编报.mp4"
              },
            ]
          },
        ]
      },
      {
        "id": 6,
        "user": "部门长",
        "isCollapsed":false,
        "modules": [
          {
            "id": 1,
            "module": "修理工程单",
            "isCollapsed":false,
            "functions": [
              {
                "id": 1,
                "function": "修理工程单审核",
                "docFile": "/help/djxl/doc/部门长_修理工程单审核.pdf",
                "videoFile": "/help/djxl/video/部门长_修理工程单审核.mp4"
              },
            ]
          },
          {
            "id": 2,
            "module": "日计划",
            "isCollapsed":false,
            "functions": [
              {
                "id": 1,
                "function": "日计划审核",
                "docFile": "/help/djxl/doc/部门长_日计划审核.pdf",
                "videoFile": "/help/djxl/video/部门长_日计划审核.mp4"
              },
            ]
          },
          {
            "id": 3,
            "module": "拆检鉴定",
            "isCollapsed":false,
            "functions": [
              {
                "id": 1,
                "function": "拆检鉴定组织会签",
                "docFile": "/help/djxl/doc/部门长_拆检鉴定组织会签.pdf",
                "videoFile": "/help/djxl/video/部门长_拆检鉴定组织会签.mp4"
              },
            ]
          },
          {
            "id": 4,
            "module": "追加工程",
            "isCollapsed":false,
            "functions": [
              {
                "id": 1,
                "function": "追加工程审核",
                "docFile": "/help/djxl/doc/部门长_追加工程审核.pdf",
                "videoFile": "/help/djxl/video/部门长_追加工程审核.mp4"
              },
            ]
          },
          {
            "id": 5,
            "module": "拆检鉴定报验",
            "isCollapsed":false,
            "functions": [
              {
                "id": 1,
                "function": "拆检鉴定报验审核",
                "docFile": "/help/djxl/doc/部门长_拆检鉴定报验审核.pdf",
                "videoFile": "/help/djxl/video/部门长_拆检鉴定报验审核.mp4"
              },
            ]
          },
        ]
      },
      {
        "id": 7,
        "user": "T长",
        "isCollapsed":false,
        "modules": [
          {
            "id": 1,
            "module": "修理工程单",
            "isCollapsed":false,
            "functions": [
              {
                "id": 1,
                "function": "修理工程单任务下发",
                "docFile": "/help/djxl/doc/T长_修理工程单任务下发.pdf",
                "videoFile": "/help/djxl/video/T长_修理工程单任务下发.mp4"
              },
              {
                "id": 2,
                "function": "修理工程单审批",
                "docFile": "/help/djxl/doc/T长_修理工程单审批.pdf",
                "videoFile": "/help/djxl/video/T长_修理工程单审批.mp4"
              },
            ]
          },
          {
            "id": 2,
            "module": "追加工程",
            "isCollapsed":false,
            "functions": [
              {
                "id": 1,
                "function": "追加工程下发编报任务",
                "docFile": "/help/djxl/doc/T长_追加工程下发编报任务.pdf",
                "videoFile": "/help/djxl/video/T长_追加工程下发编报任务.mp4"
              },
              {
                "id": 2,
                "function": "追加工程审批",
                "docFile": "/help/djxl/doc/T长_追加工程审批.pdf",
                "videoFile": "/help/djxl/video/T长_追加工程审批.mp4"
              },
            ]
          },
        ]
      },
      {
        "id": 8,
        "user": "代表室",
        "isCollapsed":false,
        "modules": [
          {
            "id": 1,
            "module": "拆检计划",
            "isCollapsed":false,
            "functions": [
              {
                "id": 1,
                "function": "拆检计划审核",
                "docFile": "/help/djxl/doc/代表室_拆检计划审核.pdf",
                "videoFile": "/help/djxl/video/代表室_拆检计划审核.mp4"
              },
            ]
          },
          {
            "id": 2,
            "module": "工艺清单",
            "isCollapsed":false,
            "functions": [
              {
                "id": 1,
                "function": "工艺文件审批",
                "docFile": "/help/djxl/doc/代表室_工艺文件审批.pdf",
                "videoFile": "/help/djxl/video/代表室_工艺文件审批.mp4"
              },
            ]
          },
          {
            "id": 3,
            "module": "军检报验审核",
            "isCollapsed":false,
            "functions": [
              {
                "id": 1,
                "function": "军检审批",
                "docFile": "/help/djxl/doc/代表室_军检报验审核.pdf",
                "videoFile": "/help/djxl/video/代表室_军检报验审核.mp4"
              },
            ]
          },
          {
            "id": 4,
            "module": "拆检鉴定",
            "isCollapsed":false,
            "functions": [
              {
                "id": 1,
                "function": "拆检鉴定组织会签",
                "docFile": "/help/djxl/doc/代表室_拆检鉴定组织会签.pdf",
                "videoFile": "/help/djxl/video/代表室_拆检鉴定组织会签.mp4"
              },
            ]
          },
          {
            "id": 5,
            "module": "军检检验验收",
            "isCollapsed":false,
            "functions": [
              {
                "id": 1,
                "function": "军专检检验",
                "docFile": "/help/djxl/doc/代表室_军检检验验收审核.pdf",
                "videoFile": "/help/djxl/video/代表室_军检检验验收审核.mp4"
              },
            ]
          },
          {
            "id": 6,
            "module": "追加工程",
            "isCollapsed":false,
            "functions": [
              {
                "id": 1,
                "function": "追加工程审批",
                "docFile": "/help/djxl/doc/代表室_追加工程审批.pdf",
                "videoFile": "/help/djxl/video/代表室_追加工程审批.mp4"
              },
            ]
          },
          {
            "id": 7,
            "module": "拆检鉴定报验",
            "isCollapsed":false,
            "functions": [
              {
                "id": 1,
                "function": "拆检鉴定报验审核",
                "docFile": "/help/djxl/doc/代表室_拆检鉴定报验审核.pdf",
                "videoFile": "/help/djxl/video/代表室_拆检鉴定报验审核.mp4"
              },
            ]
          },
        ]
      },
      {
        "id": 9,
        "user": "各用户通用",
        "isCollapsed":false,
        "modules": [
          {
            "id": 1,
            "module": "综合管理",
            "isCollapsed":false,
            "functions": [
              {
                "id": 1,
                "function": "节点考核",
                "docFile": "/help/djxl/doc/助理_节点考核.pdf",
                "videoFile": "/help/djxl/video/助理_节点考核.mp4"
              },
              {
                "id": 2,
                "function": "施工联系单",
                "docFile": "/help/djxl/doc/助理_施工联系单.pdf",
                "videoFile": "/help/djxl/video/助理_施工联系单.mp4"
              },
              {
                "id": 3,
                "function": "人员管理",
                "docFile": "/help/djxl/doc/助理_人员管理.pdf",
                "videoFile": "/help/djxl/video/助理_人员管理.mp4"
              },
              {
                "id": 4,
                "function": "承修单位管理",
                "docFile": "/help/djxl/doc/助理_承修单位管理.pdf",
                "videoFile": "/help/djxl/video/助理_承修单位管理.mp4"
              },
              {
                "id": 5,
                "function": "输出管理",
                "docFile": "/help/djxl/doc/助理_输出管理.pdf",
                "videoFile": "/help/djxl/video/助理_输出管理.mp4"
              },
              {
                "id": 6,
                "function": "文件管理",
                "docFile": "/help/djxl/doc/助理_文件管理.pdf",
                "videoFile": "/help/djxl/video/助理_文件管理.mp4"
              },
              {
                "id": 7,
                "function": "会议管理",
                "docFile": "/help/djxl/doc/助理_会议管理.pdf",
                "videoFile": "/help/djxl/video/助理_会议管理.mp4"
              },
              {
                "id": 8,
                "function": "综合搜索",
                "docFile": "/help/djxl/doc/助理_综合搜索.pdf",
                "videoFile": "/help/djxl/video/助理_综合搜索.mp4"
              },
              {
                "id": 9,
                "function": "基准工程单录入",
                "docFile": "/help/djxl/doc/助理_基准工程单录入.pdf",
                "videoFile": "/help/djxl/video/助理_基准工程单录入.mp4"
              },
              {
                "id": 10,
                "function": "修理工程单",
                "docFile": "/help/djxl/doc/助理_修理工程单.pdf",
                "videoFile": "/help/djxl/video/助理_修理工程单.mp4"
              },
              {
                "id": 11,
                "function": "修理工程单版本",
                "docFile": "/help/djxl/doc/助理_修理工程单版本.pdf",
                "videoFile": "/help/djxl/video/助理_修理工程单版本.mp4"
              },
              {
                "id": 12,
                "function": "技术方案文件目录配置",
                "docFile": "/help/djxl/doc/助理_技术方案文件目录配置.pdf",
                "videoFile": "/help/djxl/video/助理_技术方案文件目录配置.mp4"
              },
              {
                "id": 13,
                "function": "系统技术方案配置",
                "docFile": "/help/djxl/doc/助理_系统技术方案配置.pdf",
                "videoFile": "/help/djxl/video/助理_系统技术方案配置.mp4"
              },
              {
                "id": 14,
                "function": "运行记录模板配置",
                "docFile": "/help/djxl/doc/助理_运行记录模板配置.pdf",
                "videoFile": "/help/djxl/video/助理_运行记录模板配置.mp4"
              },
              {
                "id": 15,
                "function": "施工清单目录配置",
                "docFile": "/help/djxl/doc/助理_施工清单目录配置.pdf",
                "videoFile": "/help/djxl/video/助理_施工清单目录配置.mp4"
              },
              {
                "id": 16,
                "function": "过程文件目录",
                "docFile": "/help/djxl/doc/助理_过程文件目录.pdf",
                "videoFile": "/help/djxl/video/助理_过程文件目录.mp4"
              },
              {
                "id": 17,
                "function": "会议类型",
                "docFile": "/help/djxl/doc/助理_会议类型.pdf",
                "videoFile": "/help/djxl/video/助理_会议类型.mp4"
              },
              {
                "id": 18,
                "function": "数据同步-导出数据包",
                "docFile": "/help/djxl/doc/助理_导出数据包.pdf",
                "videoFile": "/help/djxl/video/助理_导出数据包.mp4"
              },
              {
                "id": 19,
                "function": "数据同步-导入数据包",
                "docFile": "/help/djxl/doc/助理_导入数据包.pdf",
                "videoFile": "/help/djxl/video/助理_导入数据包.mp4"
              },
            ]
          },
        ],
      },
    ]
  },
  {
    "id": 2,
    "system":"smj",
    "systemName":"寿命件",
    "userManual": [
      {
        "id": 1,
        "name": "承修厂用户手册",
        "file": "/help/smj/manual/承修厂用户手册.docx"
      },
      {
        "id": 2,
        "name": "助理用户手册",
        "file": "/help/smj/manual/助理用户手册.docx"
      }
    ],
    "data":[
      {
        "id": 1,
        "user": "各用户通用",
        "isCollapsed":false,
        "modules": [
          {
            "id": 1,
            "module": "寿命件",
            "isCollapsed":false,
            "functions": [
              {
                "id": 1,
                "function": "寿命件管理",
                "docFile": "/help/smj/doc/各用户通用_寿命件管理.pdf",
                "videoFile": "/help/smj/video/各用户通用_寿命件管理.mp4"
              },
              {
                "id": 2,
                "function": "日历寿命件",
                "docFile": "/help/smj/doc/各用户通用_日历寿命件.pdf",
                "videoFile": "/help/smj/video/各用户通用_日历寿命件.mp4"
              },
              {
                "id": 3,
                "function": "非日历寿命件",
                "docFile": "/help/smj/doc/各用户通用_非日历寿命件.pdf",
                "videoFile": "/help/smj/video/各用户通用_非日历寿命件.mp4"
              },
              {
                "id": 4,
                "function": "总体状态信息",
                "docFile": "/help/smj/doc/各用户通用_总体状态信息.pdf",
                "videoFile": "/help/smj/video/各用户通用_总体状态信息.mp4"
              },
              {
                "id": 5,
                "function": "下一年度更换清单",
                "docFile": "/help/smj/doc/各用户通用_下一年度更换清单.pdf",
                "videoFile": "/help/smj/video/各用户通用_下一年度更换清单.mp4"
              },
              {
                "id": 6,
                "function": "报警寿命件",
                "docFile": "/help/smj/doc/各用户通用_报警寿命件.pdf",
                "videoFile": "/help/smj/video/各用户通用_报警寿命件.mp4"
              },
              {
                "id": 7,
                "function": "超期寿命件",
                "docFile": "/help/smj/doc/各用户通用_超期寿命件.pdf",
                "videoFile": "/help/smj/video/各用户通用_超期寿命件.mp4"
              },
              {
                "id": 8,
                "function": "临期寿命件",
                "docFile": "/help/smj/doc/各用户通用_临期寿命件.pdf",
                "videoFile": "/help/smj/video/各用户通用_临期寿命件.mp4"
              },
              {
                "id": 9,
                "function": "采购周期提醒",
                "docFile": "/help/smj/doc/各用户通用_采购周期提醒.pdf",
                "videoFile": "/help/smj/video/各用户通用_采购周期提醒.mp4"
              },
              {
                "id": 10,
                "function": "更换清单库查看",
                "docFile": "/help/smj/doc/各用户通用_更换清单库查看.pdf",
                "videoFile": "/help/smj/video/各用户通用_更换清单库查看.mp4"
              },
              {
                "id": 11,
                "function": "更换历史",
                "docFile": "/help/smj/doc/各用户通用_更换历史.pdf",
                "videoFile": "/help/smj/video/各用户通用_更换历史.mp4"
              },
              {
                "id": 12,
                "function": "勘误清单库查看",
                "docFile": "/help/smj/doc/各用户通用_勘误清单库查看.pdf",
                "videoFile": "/help/smj/video/各用户通用_勘误清单库查看.mp4"
              },
            ]
          },
        ]
      },
      {
        "id": 2,
        "user": "承修厂",
        "isCollapsed":false,
        "modules": [
          {
            "id": 1,
            "module": "寿命件",
            "isCollapsed":false,
            "functions": [
              {
                "id": 1,
                "function": "存储至更换清单库",
                "docFile": "/help/smj/doc/承修厂_存储至更换清单库.pdf",
                "videoFile": "/help/smj/video/承修厂_存储至更换清单库.mp4"
              },
              {
                "id": 2,
                "function": "下发更换清单",
                "docFile": "/help/smj/doc/承修厂_下发更换清单.pdf",
                "videoFile": "/help/smj/video/承修厂_下发更换清单.mp4"
              },
              {
                "id": 3,
                "function": "更新档案",
                "docFile": "/help/smj/doc/承修厂_更新档案.pdf",
                "videoFile": "/help/smj/video/承修厂_更新档案.mp4"
              },
              {
                "id": 4,
                "function": "寿命件勘误",
                "docFile": "/help/smj/doc/承修厂_寿命件勘误.pdf",
                "videoFile": "/help/smj/video/承修厂_寿命件勘误.mp4"
              },
              {
                "id": 5,
                "function": "寿命件勘误总体所审核",
                "docFile": "/help/smj/doc/承修厂_寿命件勘误总体所审核.pdf",
                "videoFile": "/help/smj/video/承修厂_寿命件勘误总体所审核.mp4"
              },
              {
                "id": 6,
                "function": "寿命件管理",
                "docFile": "/help/smj/doc/承修厂_寿命件管理.pdf",
                "videoFile": "/help/smj/video/承修厂_寿命件管理.mp4"
              },
              {
                "id": 7,
                "function": "非日历寿命件",
                "docFile": "/help/smj/doc/承修厂_非日历寿命件.pdf",
                "videoFile": "/help/smj/video/承修厂_非日历寿命件.mp4"
              },
              {
                "id": 8,
                "function": "报警寿命件",
                "docFile": "/help/smj/doc/承修厂_报警寿命件.pdf",
                "videoFile": "/help/smj/video/承修厂_报警寿命件.mp4"
              },
              {
                "id": 9,
                "function": "超期寿命件",
                "docFile": "/help/smj/doc/承修厂_超期寿命件.pdf",
                "videoFile": "/help/smj/video/承修厂_超期寿命件.mp4"
              },
              {
                "id": 10,
                "function": "采购周期提醒",
                "docFile": "/help/smj/doc/承修厂_采购周期提醒.pdf",
                "videoFile": "/help/smj/video/承修厂_采购周期提醒.mp4"
              },
            ]
          },
        ]
      },
      {
        "id": 3,
        "user": "助理",
        "isCollapsed":false,
        "modules": [
          {
            "id": 1,
            "module": "寿命件",
            "isCollapsed":false,
            "functions": [
              {
                "id": 1,
                "function": "寿命件更换大队核实",
                "docFile": "/help/smj/doc/助理_寿命件更换大队核实.pdf",
                "videoFile": "/help/smj/video/助理_寿命件更换大队核实.mp4"
              },
              {
                "id": 2,
                "function": "寿命件更换机关验收",
                "docFile": "/help/smj/doc/助理_寿命件更换机关验收.pdf",
                "videoFile": "/help/smj/video/助理_寿命件更换机关验收.mp4"
              },
              {
                "id": 3,
                "function": "寿命件勘误审核",
                "docFile": "/help/smj/doc/助理_寿命件勘误审核.pdf",
                "videoFile": "/help/smj/video/助理_寿命件勘误审核.mp4"
              },
            ]
          },
        ]
      }
    ]
  }
]