搜索
您的当前位置:首页正文

uni-app pages.json文件

来源:二三娱乐

{

 "pages": [

// 路由

  {

   "path": "pages/index/index",

   "style": {

    "navigationBarTitleText": "uni-app"

   }

  },

  {

   "path": "pages/index/test",

   "style": {}

  }

 ],

// 底部菜单

 "tabBar": {

  "color": "#9B9B9B",

  "selectedColor": "lightpink",

  "backgroundColor": "#ffffff",

  "list": [{

   "pagePath": "pages/index/index",

   "text": "首页"

  }, {

   "pagePath": "pages/index/test",

   "text": "我的"

  }]

 },

// 页面默认样式

 "globalStyle": {

  "navigationBarTextStyle": "black",

  "navigationBarTitleText": "uni-app",

  "navigationBarBackgroundColor": "#F8F8F8",

  "backgroundColor": "#F8F8F8",

        "navigationStyle": "custom"//取消原生导航

 }

}

Top