pages.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. }
  37. },
  38. {
  39. "path": "pages/user/grade",
  40. "style": {
  41. "navigationBarTitleText": "我的成绩"
  42. }
  43. }
  44. ],
  45. "globalStyle": {
  46. "navigationBarTextStyle": "black",
  47. "navigationBarTitleText": "评分",
  48. "navigationBarBackgroundColor": "#FFFFFF",
  49. "backgroundColor": "#f8f8f8"
  50. },
  51. "tabBar": {
  52. "color": "#C0C4CC",
  53. "selectedColor": "#5DBC7C",
  54. "borderStyle": "black",
  55. "backgroundColor": "#ffffff",
  56. "list": [{
  57. "pagePath": "pages/index/index",
  58. "iconPath": "static/tabBar/tab-home.png",
  59. "selectedIconPath": "static/tabBar/tab-home-current.png",
  60. "text": "首页"
  61. },
  62. {
  63. "pagePath": "pages/user/grade",
  64. "iconPath": "static/tabBar/tab-my.png",
  65. "selectedIconPath": "static/tabBar/tab-my-current.png",
  66. "text": "我的成绩"
  67. },
  68. {
  69. "pagePath": "pages/user/user",
  70. "iconPath": "static/tabBar/tab-my.png",
  71. "selectedIconPath": "static/tabBar/tab-my-current.png",
  72. "text": "我的"
  73. }
  74. ]
  75. }
  76. }