wzp
2022-11-21 f29dfb68a705ab9f37ed924fc82d6fd414c1c78c
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
{
    "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
    {
        "path" : "pages/login/login",
        "style" :                                                                                    
        {
            "navigationBarTitleText": "",
            "enablePullDownRefresh": false
        }
        
    },
        {
            "path": "pages/index/index",
            "style": {
                "navigationBarTitleText": "首页"
            }
        }, {
            "path": "pages/apply/apply",
            "style": {
                "navigationBarTitleText": "我的申请",
                "enablePullDownRefresh": false
            }
 
        }, {
            "path": "pages/approval/approval",
            "style": {
                "navigationBarTitleText": "审批",
                "enablePullDownRefresh": false
            }
 
        }
        ,{
            "path" : "pages/assets/use",
            "style" :                                                                                    
            {
                "navigationBarTitleText": "资产领用",
                "enablePullDownRefresh": false
            }
            
        }
        ,{
            "path" : "pages/assets/borrow",
            "style" :                                                                                    
            {
                "navigationBarTitleText": "资产借用",
                "enablePullDownRefresh": false
            }
            
        }
        ,{
            "path" : "pages/assets/return",
            "style" :                                                                                    
            {
                "navigationBarTitleText": "资产归还",
                "enablePullDownRefresh": false
            }
            
        }
        ,{
            "path" : "pages/assets/repair",
            "style" :                                                                                    
            {
                "navigationBarTitleText": "资产报修",
                "enablePullDownRefresh": false
            }
            
        }
        ,{
            "path" : "pages/assets/scrapped",
            "style" :                                                                                    
            {
                "navigationBarTitleText": "资产报废",
                "enablePullDownRefresh": false
            }
            
        }
        ,{
            "path" : "pages/assets/list",
            "style" :                                                                                    
            {
                "navigationBarTitleText": "资产清单",
                "enablePullDownRefresh": false
            }
            
        }
        ,{
            "path" : "pages/apply/applyInfo",
            "style" :                                                                                    
            {
                "navigationBarTitleText": "",
                "enablePullDownRefresh": false
            }
            
        }
        ,{
            "path" : "pages/assets/repairInfo",
            "style" :                                                                                    
            {
                "navigationBarTitleText": "",
                "enablePullDownRefresh": false
            }
            
        }
        
        ,{
            "path" : "pages/assets/repairSubmit",
            "style" :                                                                                    
            {
                "navigationBarTitleText": "",
                "enablePullDownRefresh": false
            }
            
        }
    ],
    "globalStyle": {
        // "navigationBarTextStyle": "black",
        // "navigationBarTitleText": "",
        // "navigationBarBackgroundColor": "#F8F8F8",
        // "backgroundColor": "#F8F8F8"
        "navigationStyle":"custom"
    },
    "tabBar": {
        "color": "#7A7E83",
        "selectedColor": "#1296db",
        "borderStyle": "black",
        "backgroundColor": "#F8F8F8",
        "list": [{
                "pagePath": "pages/index/index",
                "iconPath": "static/tabbar/index.png",
                "selectedIconPath": "static/tabbar/index-active.png",
                "text": "首页"
            },
            {
                "pagePath": "pages/apply/apply",
                "iconPath": "static/tabbar/apply.png",
                "selectedIconPath": "static/tabbar/apply-active.png",
                "text": "我的申请"
            }, {
                "pagePath": "pages/approval/approval",
                "iconPath": "static/tabbar/approval.png",
                "selectedIconPath": "static/tabbar/approval-active.png",
                "text": "审批"
            }
        ]
    }
}