pages.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. // pages数组中第一项表示应用启动页,设置页面路径及窗口表现
  3. "pages": [
  4. {
  5. "path": "pages/index/index",
  6. "style": {
  7. "navigationStyle":"custom", //导航栏样式,仅支持 default/custom。custom即取消默认的原生导航栏 微信小程序7.0+、百度小程序、H5。
  8. "backgroundColor":"#eeeeee", //窗口的背景色 微信小程序、百度小程序、头条小程序
  9. "backgroundTextStyle":"dark", //下拉 loading 的样式,仅支持 dark/light
  10. "enablePullDownRefresh":true //是否开启下拉刷新,详见页面生命周期。
  11. }
  12. },
  13. {
  14. "path":"pages/mypersonal/personal",
  15. "style":{
  16. "navigationStyle":"default"
  17. }
  18. }
  19. ,{
  20. "path" : "pages/list/list",
  21. "style" : {
  22. "navigationBarTitleText":"城市列表"
  23. }
  24. }
  25. ,{
  26. "path" : "pages/setting/setting",
  27. "style" : {}
  28. }
  29. ],
  30. "tabBar": {
  31. "color":"#C0C4C6", //tab 上的文字默认颜色
  32. "selectedColor":"#2386EE", //tab 上的文字选中时的颜色
  33. "backgroundColor":"#FFFFFF", //tab 的背景色
  34. "borderStyle":"black", //tabbar 上边框的颜色,仅支持 black/white
  35. "list":[
  36. {
  37. "iconPath":"static/home.png",
  38. "selectedIconPath":"static/home_light.png",
  39. "pagePath":"pages/index/index", //页面路径,必须在 pages 中先定义
  40. "text":"首頁" //tab 上按钮文字,在 5+APP 和 H5 平台为非必填。例如中间可放一个没有文字的+号图标
  41. },
  42. {
  43. "iconPath":"static/people.png",
  44. "selectedIconPath":"static/people_light.png",
  45. "pagePath":"pages/mypersonal/personal",
  46. "text":"我的"
  47. }
  48. ],
  49. "position":"bottom"
  50. },
  51. "globalStyle": {
  52. "navigationBarTextStyle": "black",
  53. "navigationBarTitleText": "",
  54. "navigationBarBackgroundColor": "#FFFFFF",
  55. "backgroundColor": "#FFFFFF"
  56. }
  57. }