| 123456789101112131415161718192021222324252627282930313233343536373839 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": " "
- }
- }
- ,{
- "path" : "pages/Home/Home",
- "style" :
- {
- "navigationBarTitleText": "首页",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/BBeng/BBeng",
- "style" :
- {
- "navigationBarTitleText": "体感游戏",
- "enablePullDownRefresh": false
- }
-
- }
- ],
- "globalStyle": {
- "navigationStyle":"custom", //可以去掉小程序端的顶部导航
- "app-plus":{
- "titleNView":false // 去掉APP、H5的顶部导航
- },
- // "navigationBarTextStyle": "black",
- // "navigationBarTitleText": "uni-app",
- // "navigationBarBackgroundColor": "#F8F8F8",
- // "backgroundColor": "#F8F8F8",
- "bounce":"none"
- }
- }
|