-
Notifications
You must be signed in to change notification settings - Fork 0
/
pages.json
189 lines (188 loc) · 4.35 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
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
{
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
{
"path": "pages/index/index"
}, {
"path": "pages/login/login",
"style": {
"topWindow": false,
"leftWindow": false,
"navigationBarTitleText": "登录"
}
}, {
"path": "pages/error/404",
"style": {
"navigationBarTitleText": "Not Found"
}
}, {
"path": "pages/changepwd/changepwd",
"style": {
"navigationBarTitleText": "修改密码"
}
}, {
"path": "uni_modules/uni-upgrade-center/pages/version/list",
"style": {
"navigationBarTitleText": "版本列表"
}
}, {
"path": "uni_modules/uni-upgrade-center/pages/version/add",
"style": {
"navigationBarTitleText": "新版发布"
}
}, {
"path": "uni_modules/uni-upgrade-center/pages/version/detail",
"style": {
"navigationBarTitleText": "版本信息查看"
}
}, {
"path": "uni_modules/uni-upgrade-center/pages/app/list",
"style": {
"navigationBarTitleText": "应用列表"
}
}, {
"path": "uni_modules/uni-upgrade-center/pages/app/detail",
"style": {
"navigationBarTitleText": "应用信息查看"
}
}, {
"path": "uni_modules/uni-upgrade-center/pages/app/add",
"style": {
"navigationBarTitleText": "新增应用"
}
}
],
"subPackages": [{
"root": "pages/system",
"pages": [{
"path": "menu/list",
"style": {
"navigationBarTitleText": "菜单管理"
}
}, {
"path": "menu/add",
"style": {
"navigationBarTitleText": "新增菜单",
"navigationStyle": "default"
}
}, {
"path": "menu/edit",
"style": {
"navigationBarTitleText": "修改菜单",
"navigationStyle": "default"
}
}, {
"path": "permission/list",
"style": {
"navigationBarTitleText": "权限管理"
}
}, {
"path": "permission/add",
"style": {
"navigationBarTitleText": "新增权限",
"navigationStyle": "default"
}
}, {
"path": "permission/edit",
"style": {
"navigationBarTitleText": "修改权限",
"navigationStyle": "default"
}
}, {
"path": "role/add",
"style": {
"navigationBarTitleText": "新增角色",
"navigationStyle": "default"
}
}, {
"path": "role/edit",
"style": {
"navigationBarTitleText": "修改角色",
"navigationStyle": "default"
}
}, {
"path": "role/list",
"style": {
"navigationBarTitleText": "角色管理"
}
}, {
"path": "user/add",
"style": {
"navigationBarTitleText": "新增用户",
"navigationStyle": "default"
}
}, {
"path": "user/edit",
"style": {
"navigationBarTitleText": "修改用户",
"navigationStyle": "default"
}
}, {
"path": "user/list",
"style": {
"navigationBarTitleText": "用户管理"
}
}]
}, {
"root": "pages/business",
"pages": [{
"path": "project/add",
"style": {
"navigationBarTitleText": "新增项目",
"navigationStyle": "default"
}
}, {
"path": "project/edit",
"style": {
"navigationBarTitleText": "修改项目",
"navigationStyle": "default"
}
}, {
"path": "project/list",
"style": {
"navigationBarTitleText": "用户管理"
}
}]
}, {
"root": "pages/demo",
"pages": [{
"path": "init/init",
"style": {
"topWindow": false,
"leftWindow": false,
"navigationBarTitleText": "创建超级管理员"
}
}, {
"path": "icons/icons",
"style": {
"navigationBarTitleText": "图标"
}
}, {
"path": "table/table",
"style": {
"navigationBarTitleText": "表格"
}
}]
}],
"globalStyle": {
"navigationStyle": "custom",
"navigationBarTextStyle": "black",
"navigationBarTitleText": "管理系统",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8"
},
"topWindow": {
"path": "windows/topWindow",
"style": {
"height": "60px"
},
"matchMedia": {
"minWidth": 0
}
},
"leftWindow": {
"path": "windows/leftWindow",
"style": {
"width": "240px"
}
}
}