-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpages.json
125 lines (125 loc) · 3.4 KB
/
pages.json
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
{
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
{
"path": "pages/stafftabbar/view/view",
"style": {
"navigationStyle": "custom",
"navigationBarTextStyle": "white"
}
}, {
"path": "pages/stafftabbar/notification/notification",
"style": {
"navigationStyle": "custom",
"navigationBarTextStyle": "white"
}
}, {
"path": "pages/send/send"
}, {
"path": "pages/stafftabbar/my/my"
}, {
"path": "pages/login-form/LoginForm"
}, {
"path": "pages/login-form/ModifyForm"
}, {
"path": "pages/search/search",
"style": {
"navigationStyle": "custom",
"navigationBarTextStyle": "white"
}
}, {
"path": "pages/staff/dispatch-detail/dispatch-detail",
"style": {}
}, {
"path": "pages/staff/execute-detail/execute-detail",
"style": {}
}, {
"path": "pages/staff/check-detail/check-detail",
"style": {}
}, {
"path": "pages/staff/finish-detail/finish-detail",
"style": {}
}, {
"path": "pages/staff/deadline-detail/deadline-detail",
"style": {}
}, {
"path": "pages/stafftabbar/notification/test",
"style": {
"navigationStyle": "custom",
"navigationBarTextStyle": "white"
}
}, {
"path": "pages/employee/receive-detail/receive-detail",
"style": {}
}, {
"path": "pages/employee/execute-detail/execute-detail",
"style": {
"enablePullDownRefresh": true
}
}, {
"path": "pages/employee/submit-detail/submit-detail",
"style": {}
}, {
"path": "pages/employee/finish-detail/finish-detail",
"style": {}
}, {
"path": "pages/employee/deadline-detail/deadline-detail",
"style": {}
}
,{
"path" : "pages/owner/dispatch-detail/dispatch-detail",
"style" : {}
}
,{
"path" : "pages/owner/execute-detail/execute-detail",
"style" : {}
}
,{
"path" : "pages/owner/check-detail/check-detail",
"style" : {}
}
,{
"path" : "pages/owner/finish-detail/finish-detail",
"style" : {}
}
,{
"path" : "pages/owner/deadline-detail/deadline-detail",
"style" : {}
}
],
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "uni-app",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#dfe3ef",
"navigationStyle": "custom"
},
"tabBar": {
"color": "#666",
"selectedColor": "#065394",
"backgroundColor": "#fff",
"list": [{
"pagePath": "pages/stafftabbar/view/view",
"iconPath": "static/tab/view.png",
"selectedIconPath": "static/tab/view-active.png",
"text": "查看"
}, {
"pagePath": "pages/stafftabbar/notification/notification",
"iconPath": "static/tab/notification.png",
"selectedIconPath": "static/tab/notification-active.png",
"text": "消息"
}, {
"pagePath": "pages/stafftabbar/my/my",
"iconPath": "static/tab/my.png",
"selectedIconPath": "static/tab/my-active.png",
"text": "我的"
}]
},
"condition": { //模式配置,仅开发期间生效
"current": 0, //当前激活的模式(list 的索引项)
"list": [{
"name": "", //模式名称
"path": "", //启动页面,必选
"query": "" //启动参数,在页面的onLoad函数里面得到
}]
}
}