| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "人脸采集",
- "enablePullDownRefresh": true
- }
- }
- ,{
- "path" : "pages/show/show",
- "style" :
- {
- "navigationBarTitleText": "迎新首页",
- "enablePullDownRefresh": false
- }
-
- },{
- "path" : "pages/confirm/confirm",
- "style" :
- {
- "navigationBarTitleText": "确认信息",
- "enablePullDownRefresh": false
- }
-
- },{
- "path" : "pages/test/test",
- "style" :
- {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false
- }
-
- }
-
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8",
- "usingComponents": {
- "login": "plugin://myPlugin/login"
- }
- }
- }
|