chenhaozhe
2025-09-01 e7e65571bd75e7f8aa20ee2e151e77af824fabc0
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
{
    "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
        {
            "path": "pages/index/login",
            "style": {
                "navigationBarTitleText": "登录",
                "navigationStyle": "custom"
            }
        },
        {
            "path": "pages/index/index",
            "style": {
                "navigationBarTitleText": "首页",
                "navigationStyle": "custom"
            }
        },
        {
            "path": "pages/index/tab1",
            "style": {
                "navigationBarTitleText": "车间工序"
            }
        },
        {
            "path": "pages/index/tab2",
            "style": {
                "navigationBarTitleText": "单据列表"
            }
        },
        {
            "path": "pages/index/mine",
            "style": {
                "navigationBarTitleText": "个人中心",
                // "navigationStyle": "custom"
                "navigationBarTextStyle": "white",
                "navigationBarBackgroundColor": "#65a2fb"
            }
        },
        {
            "path": "pages/shebeilvli/form",
            "style": {
                "navigationBarTitleText": "设备状态分析"
            }
        },
        {
            "path": "pages/shebeilvli/table",
            "style": {
                "navigationBarTitleText": "设备履历",
                "enablePullDownRefresh": true
            }
        },
        {
            "path": "pages/shebeilvli/table_son",
            "style": {
                "navigationBarTitleText": "设备履历子表"
            }
        },
        {
            "path": "pages/baoyangjihua/form",
            "style": {
                "navigationBarTitleText": "设备保养计划单"
            }
        },
        {
            "path": "pages/baoyangjihua/table",
            "style": {
                "navigationBarTitleText": "设备保养计划单",
                "enablePullDownRefresh": true
            }
        },
        {
            "path": "pages/baoyangjihua/table_son",
            "style": {
                "navigationBarTitleText": "保养计划子表"
            }
        },
        {
            "path": "pages/baoyangjilu/form",
            "style": {
                "navigationBarTitleText": "设备保养记录单"
            }
        },
        {
            "path": "pages/baoyangjilu/table",
            "style": {
                "navigationBarTitleText": "设备保养记录单",
                "enablePullDownRefresh": true
            }
        },
        {
            "path": "pages/baoyangjilu/table_son",
            "style": {
                "navigationBarTitleText": "保养记录子表"
            }
        },
        {
            "path": "pages/guzhangdengji/form",
            "style": {
                "navigationBarTitleText": "设备故障登记表"
            }
        },
        {
            "path": "pages/guzhangdengji/table",
            "style": {
                "navigationBarTitleText": "设备故障登记表",
                "enablePullDownRefresh": true
            }
        },
        {
            "path": "pages/shebeidangan/form",
            "style": {
                "navigationBarTitleText": "设备档案"
            }
        },
        {
            "path": "pages/shebeidangan/table",
            "style": {
                "navigationBarTitleText": "设备档案",
                "enablePullDownRefresh": true
            }
        },
        {
            "path": "pages/shebeiweixiu/form",
            "style": {
                "navigationBarTitleText": "设备维修记录单"
            }
        },
        {
            "path": "pages/shebeiweixiu/table",
            "style": {
                "navigationBarTitleText": "设备维修记录单",
                "enablePullDownRefresh": true
            }
        },
        {
            "path": "pages/weiwaigxIn/form",
            "style": {
                "navigationBarTitleText": "委外工序发出单"
            }
        },
        {
            "path": "pages/weiwaigxIn/table",
            "style": {
                "navigationBarTitleText": "委外工序发出单",
                "enablePullDownRefresh": true
            }
        },
        {
            "path": "pages/weiwaigxOut/form",
            "style": {
                "navigationBarTitleText": "委外工序接收单"
            }
        },
        {
            "path": "pages/weiwaigxOut/table",
            "style": {
                "navigationBarTitleText": "委外工序接收单",
                "enablePullDownRefresh": true
            }
        },
        {
            "path": "pages/weiwaigxOut/firstCheck",
            "style": {
                "navigationBarTitleText": "首件检验单",
                "enablePullDownRefresh": true
            }
        }, {
            "path": "pages/gongxuIn/form",
            "style": {
                "navigationBarTitleText": "工序进站接收单"
            }
        },
        {
            "path": "pages/gongxuIn/table",
            "style": {
                "navigationBarTitleText": "工序进站接收单",
                "enablePullDownRefresh": true
            }
        }, {
            "path": "pages/gongxuOut/form",
            "style": {
                "navigationBarTitleText": "工序出站汇报单"
            }
        },
        {
            "path": "pages/gongxuOut/table",
            "style": {
                "navigationBarTitleText": "工序出站汇报单",
                "enablePullDownRefresh": true
            }
        },
        {
            "path": "pages/shebeiguanli/form",
            "style": {
                "navigationBarTitleText": "设备管理",
                "enablePullDownRefresh": true
            }
        },
        {
            "path": "pages/shebeiguanli/table",
            "style": {
                "navigationBarTitleText": "设备管理",
                "enablePullDownRefresh": true
            }
        },
        {
            "path": "pages/shebeiguanli/list",
            "style": {
                "navigationBarTitleText": "工单列表",
                "enablePullDownRefresh": true
            }
        },
        {
            "path": "pages/baogong/form",
            "style": {
                "navigationBarTitleText": "产量汇报单",
                "enablePullDownRefresh": false
            }
        },
        {
            "path": "pages/baogong/table",
            "style": {
                "navigationBarTitleText": "报工平台",
                "enablePullDownRefresh": true
            }
        },
        {
            "path": "pages/baogong/list",
            "style": {
                "navigationBarTitleText": "工单列表",
                "enablePullDownRefresh": true
            }
        },
        {
            "path": "pages/baogong/abnormal",
            "style": {
                "navigationBarTitleText": "异常反馈单",
                "enablePullDownRefresh": false
            }
        },
        {
            "path": "pages/yichang/table",
            "style": {
                "navigationBarTitleText": "异常反馈单列表",
                "enablePullDownRefresh": true
            }
        },
        {
            "path": "pages/yichang/form",
            "style": {
                "navigationBarTitleText": "异常反馈单",
                "enablePullDownRefresh": true
            }
        },
        {
            "path": "pages/yichang/list",
            "style": {
                "navigationBarTitleText": "异常反馈处理单列表",
                "enablePullDownRefresh": true
            }
        },
        {
            "path": "pages/caigouruku/table",
            "style": {
                "navigationBarTitleText": "采购入库列表",
                "enablePullDownRefresh": true
            }
        },
        {
            "path": "pages/caigouruku/form",
            "style": {
                "navigationBarTitleText": "采购入库单",
                "enablePullDownRefresh": false
            }
        },
        {
            "path": "pages/caigoutuiliao/table",
            "style": {
                "navigationBarTitleText": "采购退料列表",
                "enablePullDownRefresh": true
            }
        },
        {
            "path": "pages/caigoutuiliao/form",
            "style": {
                "navigationBarTitleText": "采购退料单",
                "enablePullDownRefresh": false
            }
        },
        {
            "path": "pages/xiaoshouchuku/table",
            "style": {
                "navigationBarTitleText": "销售出库列表",
                "enablePullDownRefresh": true
            }
        },
        {
            "path": "pages/xiaoshouchuku/form",
            "style": {
                "navigationBarTitleText": "销售出库单",
                "enablePullDownRefresh": false
            }
        },
        {
            "path": "pages/xiaoshoutuihuo/table",
            "style": {
                "navigationBarTitleText": "销售退货列表",
                "enablePullDownRefresh": true
            }
        },
        {
            "path": "pages/xiaoshoutuihuo/form",
            "style": {
                "navigationBarTitleText": "销售退货单",
                "enablePullDownRefresh": false
            }
        },
        {
            "path": "pages/shouliaotongzhi/table",
            "style": {
                "navigationBarTitleText": "收料通知单",
                "enablePullDownRefresh": false
            }
        },
        {
            "path": "pages/shouliaotongzhi/table_son",
            "style": {
                "navigationBarTitleText": "条码生成",
                "enablePullDownRefresh": false
            }
        },
        {
            "path": "pages/shengchanlingliao/table",
            "style": {
                "navigationBarTitleText": "生产领料校验列表",
                "enablePullDownRefresh": true
            }
        },
        {
            "path": "pages/shengchanlingliao/form",
            "style": {
                "navigationBarTitleText": "生产领料单校验",
                "enablePullDownRefresh": false
            }
        },
        {
            "path": "pages/shengchanruku/table",
            "style": {
                "navigationBarTitleText": "生产入库校验列表",
                "enablePullDownRefresh": true
            }
        },
        {
            "path": "pages/shengchanruku/form",
            "style": {
                "navigationBarTitleText": "生产入库单校验",
                "enablePullDownRefresh": false
            }
        },
        {
            "path": "pages/shengchandiaobo/table",
            "style": {
                "navigationBarTitleText": "生产调拨校验列表",
                "enablePullDownRefresh": true
            }
        },
        {
            "path": "pages/shengchandiaobo/form",
            "style": {
                "navigationBarTitleText": "生产调拨单校验",
                "enablePullDownRefresh": false
            }
        },
        {
            "path": "pages/labelPrinter/index",
            "style": {
                "navigationBarTitleText": "标签打印"
            }
        },
        {
            "path": "pages/shebeiyunxingzhuangtai/shebeiyunxingzhuangtai",
            "style": {
                "navigationBarTitleText": "设备运行状态",
                "enablePullDownRefresh": true
            }
        },
        {
            "path": "pages/shebeiyunxingzhuangtai/detail",
            "style": {
                "navigationBarTitleText": "设备运行状态详情"
            }
        },
        {
            "path": "pages/mujvzhuangtai/mujvzhuangtai",
            "style": {
                "navigationBarTitleText": "模具状态分布",
                "enablePullDownRefresh": true
            }
        },
        {
            "path": "pages/mujvzhuangtai/detail",
            "style": {
                "navigationBarTitleText": "模具状态详情"
            }
        },
        {
            "path": "pages/tiaomachaima/tiaomachaima",
            "style": {
                "navigationBarTitleText": "条码拆码"
            }
        },
        {
            "path": "pages/tiaomachaima/tiaomachaima2",
            "style": {
                "navigationBarTitleText": "条码拆码2"
            }
        },
        {
            "path": "pages/wuliaosaoma/wuliaosaoma",
            "style": {
                "navigationBarTitleText": "物料清单"
            }
        },
        {
            "path": "pages/wuliaosaoma/detail",
            "style": {
                "navigationBarTitleText": "条码档案"
            }
        },
        {
            "path": "pages/caigouruku/table",
            "style": {
                "navigationBarTitleText": "采购入库",
                "enablePullDownRefresh": true
            }
        },
        {
            "path": "pages/caigouruku/form",
            "style": {
                "navigationBarTitleText": "采购入库单"
            }
        },
        {
            "path": "pages/caigoutuiliao/table",
            "style": {
                "navigationBarTitleText": "采购退料",
                "enablePullDownRefresh": true
            }
        },
        {
            "path": "pages/caigoutuiliao/form",
            "style": {
                "navigationBarTitleText": "采购退料单"
            }
        },
        {
            "path": "pages/xiaoshouchuku/table",
            "style": {
                "navigationBarTitleText": "销售出库",
                "enablePullDownRefresh": true
            }
        },
        {
            "path": "pages/xiaoshouchuku/form",
            "style": {
                "navigationBarTitleText": "销售出库单"
            }
        },
        {
            "path": "pages/xiaoshoutuihuo/table",
            "style": {
                "navigationBarTitleText": "销售退货",
                "enablePullDownRefresh": true
            }
        },
        {
            "path": "pages/xiaoshoutuihuo/form",
            "style": {
                "navigationBarTitleText": "销售退货单"
            }
        },
        {
            "path": "pages/qitachuku/qitachuku",
            "style": {
                "navigationBarTitleText": "其他出库",
                "enablePullDownRefresh": true
            }
        },
        {
            "path": "pages/qitachuku/form",
            "style": {
                "navigationBarTitleText": "其他出库单"
            }
        },
        {
            "path": "pages/qitaruku/qitaruku",
            "style": {
                "navigationBarTitleText": "其他入库",
                "enablePullDownRefresh": true
            }
        },
        {
            "path": "pages/qitaruku/form",
            "style": {
                "navigationBarTitleText": "其他入库单"
            }
        },
        {
            "path": "pages/tiaomadaying/tiaomadaying",
            "style": {
                "navigationBarTitleText": "采购条码打印"
            }
        },
        {
            "path": "pages/caigoudingdan/generate",
            "style": {
                "navigationBarTitleText": "条码生成"
            }
        },
        {
            "path": "pages/caigoudingdan/caigoudingdan",
            "style": {
                "navigationBarTitleText": "采购订单"
            }
        },
        {
            "path": "pages/MJGL/shangmudan/table",
            "style": {
                "navigationBarTitleText": "上模单"
            }
        },
        {
            "path": "pages/MJGL/shangmudan/form",
            "style": {
                "navigationBarTitleText": "上模单"
            }
        },
        {
            "path": "pages/qitachukujiaoyan/qitachukujiaoyan",
            "style": {
                "navigationBarTitleText": "其他出库校验",
                "enablePullDownRefresh": true
            }
        },
        {
            "path": "pages/qitachukujiaoyan/detail",
            "style": {
                "navigationBarTitleText": "其他出库单校验"
            }
        },
        {
            "path": "pages/shengchanbuliaojiaoyan/CacheList",
            "style": {
                "navigationBarTitleText": "生产补料校验",
                "enablePullDownRefresh": true
            }
        },
        {
            "path": "pages/shengchanbuliaojiaoyan/form",
            "style": {
                "navigationBarTitleText": "生产补料单校验"
            }
        },
        {
            "path": "pages/xiaoshouchukujiaoyan/table",
            "style": {
                "navigationBarTitleText": "销售出库校验",
                "enablePullDownRefresh": true
            }
        },
        {
            "path": "pages/xiaoshouchukujiaoyan/form",
            "style": {
                "navigationBarTitleText": "销售出库单校验"
            }
        },
        {
            "path": "pages/weiwailingliaojiaoyan/table",
            "style": {
                "navigationBarTitleText": "委外领料校验",
                "enablePullDownRefresh": true
            }
        },
        {
            "path": "pages/weiwailingliaojiaoyan/form",
            "style": {
                "navigationBarTitleText": "委外领料单校验"
            }
        },
        {
            "path": "pages/caigourukujiaoyan/table",
            "style": {
                "navigationBarTitleText": "采购入库校验",
                "enablePullDownRefresh": true
            }
        },
        {
            "path": "pages/caigourukujiaoyan/form",
            "style": {
                "navigationBarTitleText": "采购入库单校验",
                "enablePullDownRefresh": true
            }
        },
        {
            "path": "pages/qitarukujiaoyan/table",
            "style": {
                "navigationBarTitleText": "其他入库校验",
                "enablePullDownRefresh": true
            }
        },
        {
            "path": "pages/qitarukujiaoyan/form",
            "style": {
                "navigationBarTitleText": "其他入库单校验"
            }
        },
        {
            "path": "pages/weiwaibuliaojiaoyan/table",
            "style": {
                "navigationBarTitleText": "委外补料校验",
                "enablePullDownRefresh": true
            }
        },
        {
            "path": "pages/weiwaibuliaojiaoyan/form",
            "style": {
                "navigationBarTitleText": "委外补料单校验"
            }
        },
        {
            "path" : "pages/shengchanlingliaoshengdan/table",
            "style" : 
            {
                "navigationBarTitleText" : "生产领料",
                "enablePullDownRefresh": true
            }
        },
        {
            "path" : "pages/shengchanlingliaoshengdan/form",
            "style" : 
            {
                "navigationBarTitleText" : "生产领料单"
            }
        },
        {
            "path" : "pages/weiwailingliao/table",
            "style" : 
            {
                "navigationBarTitleText" : "委外领料",
                "enablePullDownRefresh": true
            }
        },
        {
            "path" : "pages/weiwailingliao/form",
            "style" : 
            {
                "navigationBarTitleText" : "委外领料单"
            }
        },
        {
            "path" : "pages/shengchanrukushengdan/table",
            "style" : 
            {
                "navigationBarTitleText" : "生产入库",
                "enablePullDownRefresh": true
            }
        },
        {
            "path" : "pages/shengchanrukushengdan/form",
            "style" : 
            {
                "navigationBarTitleText" : "生产入库单"
            }
        },
        {
            "path" : "pages/shengchanbuliao/table",
            "style" : 
            {
                "navigationBarTitleText" : "生产补料",
                "enablePullDownRefresh": true
            }
        },
        {
            "path" : "pages/shengchanbuliao/form",
            "style" : 
            {
                "navigationBarTitleText" : "生产补料单"
            }
        },
        {
            "path" : "pages/qitaruku_v2/table",
            "style" : 
            {
                "navigationBarTitleText" : "其他入库",
                "enablePullDownRefresh": true
            }
        },
        {
            "path" : "pages/qitaruku_v2/form",
            "style" : 
            {
                "navigationBarTitleText" : "其他入库单"
            }
        },
        {
            "path" : "pages/qitachuku_v2/table",
            "style" : 
            {
                "navigationBarTitleText" : "其他出库",
                "enablePullDownRefresh": true
            }
        },
        {
            "path" : "pages/qitachuku_v2/form",
            "style" : 
            {
                "navigationBarTitleText" : "其他出库单"
            }
        },
        {
            "path" : "pages/zhijiediaobo/table",
            "style" : 
            {
                "navigationBarTitleText" : "直接调拨",
                "enablePullDownRefresh": true
            }
        },
        {
            "path" : "pages/zhijiediaobo/form",
            "style" : 
            {
                "navigationBarTitleText" : "直接调拨单"
            }
        },
        {
            "path" : "pages/xiugaimima/index",
            "style" : 
            {
                "navigationBarTitleText" : "修改密码"
            }
        },{
            "path": "pages/jishikucunchaxun/table",
            "style": {
                "navigationBarTitleText": "ERP及时库存查询"
                // "enablePullDownRefresh": true
            }
        },
        {
            "path": "pages/weiwairuku/table",
            "style": {
                "navigationBarTitleText": "委外入库"
            }
        },
        {
            "path": "pages/weiwairuku/form",
            "style": {
                "navigationBarTitleText": "委外入库单"
            }
        },
        {
            "path": "pages/tiaomaguanli/table",
            "style": {
                "navigationBarTitleText": "条码管理"
            }
        },
        {
            "path": "pages/tiaomaguanli/table_son",
            "style": {
                "navigationBarTitleText": "条码生成"
            }
        }
    ],
    "tabBar": {
        "color": "#888888", //tab 上的文字默认颜色,仅支持十六进制颜色
        "selectedColor": "#2d7dee", //tab 上的文字选中时的颜色,仅支持十六进制颜色
        "borderStyle": "black", //tabbar上边框的颜色, 仅支持 black / white
        "backgroundColor": "#ffffff", //tab 的背景色,仅支持十六进制颜色
        "list": [{
                "pagePath": "pages/index/index",
                "iconPath": "static/tabBar/home.png",
                "selectedIconPath": "static/tabBar/home-default.png",
                "text": "仓储管理"
            },
            {
                "pagePath": "pages/index/tab1",
                "iconPath": "static/tabBar/icon1.png",
                "selectedIconPath": "static/tabBar/icon1-default.png",
                "text": "车间工序"
            },
            {
                "pagePath": "pages/index/tab2",
                "iconPath": "static/tabBar/icon2.png",
                "selectedIconPath": "static/tabBar/icon2-default.png",
                "text": "单据列表"
            },
            {
                "pagePath": "pages/index/mine",
                "iconPath": "static/tabBar/user.png",
                "selectedIconPath": "static/tabBar/user-default.png",
                "text": "我的"
            }
        ]
    },
    "globalStyle": {
        "navigationBarTextStyle": "white",
        "navigationBarTitleText": "设备管理",
        "navigationBarBackgroundColor": "#3A78FF",
        "backgroundColor": "#F8F8F8",
        "pageOrientation": "default"
    },
    "uniIdRouter": {}
}