pages.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path" : "pages/login/login",
  5. "style" :
  6. {
  7. "navigationBarTitleText" : "登录",
  8. "enablePullDownRefresh" : false
  9. }
  10. },
  11. {
  12. "path": "pages/index/index",
  13. "style": {
  14. "navigationBarTitleText": "首页"
  15. }
  16. },
  17. {
  18. "path" : "pages/my/my",
  19. "style" :
  20. {
  21. "navigationBarTitleText" : "我的",
  22. "enablePullDownRefresh" : false
  23. }
  24. }
  25. ],
  26. "tabBar": {
  27. "color": "#999999",
  28. "selectedColor": "#333333",
  29. "borderStyle": "white",
  30. "backgroundColor": "#ffffff",
  31. "list": [{
  32. "pagePath": "pages/index/index",
  33. "iconPath": "static/tabBarImg/index.png",
  34. "selectedIconPath": "static/tabBarImg/index_cur.png",
  35. "text": "首页"
  36. }, {
  37. "pagePath": "pages/my/my",
  38. "iconPath": "static/tabBarImg/me.png",
  39. "selectedIconPath": "static/tabBarImg/me_cur.png",
  40. "text": "我的"
  41. }]
  42. },
  43. "globalStyle": {
  44. "navigationBarTextStyle": "black",
  45. "navigationBarTitleText": "加载中",
  46. "navigationBarBackgroundColor": "#FFE05C",
  47. "backgroundColor": "#FFE05C"
  48. },
  49. "uniIdRouter": {}
  50. }