pages.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. {
  2. "pages": [{
  3. "path": "pages/public/login",
  4. "style": {
  5. "navigationBarTitleText": "登录",
  6. "app-plus": {
  7. "titleNView": {
  8. "type": "transparent"
  9. }
  10. }
  11. }
  12. },
  13. {
  14. "path": "pages/index/index",
  15. "style": {
  16. "navigationBarTitleText": "评分选择",
  17. "navigationBarBackgroundColor": "#2a9cec",
  18. "navigationBarTextStyle": "white"
  19. }
  20. },
  21. {
  22. "path": "pages/index/main",
  23. "style": {
  24. "navigationBarTitleText": "",
  25. "app-plus": {
  26. "titleNView": {
  27. "type": "transparent"
  28. }
  29. }
  30. }
  31. },
  32. {
  33. "path": "pages/user/user",
  34. "style": {
  35. "navigationBarTitleText": "个人中心",
  36. "app-plus": {
  37. "titleNView": false
  38. }
  39. }
  40. },
  41. {
  42. "path": "pages/user/userInfo",
  43. "style": {
  44. "navigationBarTitleText": "设置"
  45. }
  46. },
  47. {
  48. "path": "pages/user/grade",
  49. "style": {
  50. "navigationBarTitleText": "我的得分",
  51. "navigationBarBackgroundColor": "#2a9cec",
  52. "navigationBarTextStyle": "white"
  53. }
  54. }
  55. ],
  56. "globalStyle": {
  57. "navigationBarTextStyle": "black",
  58. "navigationBarTitleText": "评分",
  59. "navigationBarBackgroundColor": "#FFFFFF",
  60. "backgroundColor": "#f8f8f8"
  61. },
  62. "tabBar": {
  63. "color": "#C0C4CC",
  64. "selectedColor": "#323C5B",
  65. "borderStyle": "black",
  66. "backgroundColor": "#ffffff",
  67. "list": [{
  68. "pagePath": "pages/index/index",
  69. "iconPath": "static/tabbar/tab-home.png",
  70. "selectedIconPath": "static/tabbar/tab-home-current.png",
  71. "text": "首页"
  72. },
  73. {
  74. "pagePath": "pages/user/grade",
  75. "iconPath": "static/tabbar/tab-grade.png",
  76. "selectedIconPath": "static/tabbar/tab-my-current.png",
  77. "text": "我的成绩",
  78. "visible": false
  79. },
  80. {
  81. "pagePath": "pages/user/user",
  82. "iconPath": "static/tabbar/tab-my.png",
  83. "selectedIconPath": "static/tabbar/tab-my-current.png",
  84. "text": "我的"
  85. }
  86. ]
  87. }
  88. }