| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/launch/index",
- "style": {
- "navigationStyle":"custom"
- }
- },
- {
- "path": "pages/login/index",
- "style": {
- "navigationStyle":"custom"
- }
- },
- {
- "path": "pages/index/index",
- "style": {
- "navigationStyle":"custom"
- }
- },
- {
- "path": "pages/login/env_page",
- "style": {
- "navigationBarTitleText": "开发者工具"
- }
- },
- {
- "path": "pages/mine/setting",
- "style": {
- "navigationBarTitleText": "设置"
- }
- },
- {
- "path": "pages/test/upload",
- "style": {
- "navigationBarTitleText": "上传"
- }
- },
- {
- "path" : "pages/test/livetest",
- "style" :
- {
- "navigationBarTitleText": "直播测试",
- "enablePullDownRefresh": false
- }
- },
- {
- "path" : "pages/lesson/lesson_detail",
- "style" :
- {
- "navigationBarTitleText": "课堂详情"
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8",
- "enablePullDownRefresh": false,
- "app-plus": {
- "bounce": "none",
- "safearea": {
- "background": "#CCCCCC",
- "bottom": {
- "offset": "auto"
- }
- }
- }
- }
- }
|