pages.json 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/login/index",
  5. "style": {
  6. "navigationStyle": "custom"
  7. }
  8. },
  9. {
  10. "path": "pages/login/login",
  11. "style": {
  12. "navigationStyle": "custom"
  13. }
  14. },
  15. {
  16. "path": "pages/selectGradesTerms/index",
  17. "style": {
  18. "navigationBarTitleText": "选择年级和学期",
  19. "navigationStyle": "custom"
  20. }
  21. },
  22. {
  23. "path": "pages/study/index",
  24. "style": {
  25. "navigationBarTitleText": "学习",
  26. "navigationStyle": "custom"
  27. }
  28. },
  29. {
  30. "path": "pages/study/lookShipin",
  31. "style": {
  32. "navigationBarTitleText": "视频",
  33. "navigationStyle": "custom"
  34. }
  35. },
  36. {
  37. "path": "pages/my/index",
  38. "style": {
  39. "navigationStyle": "custom"
  40. }
  41. },
  42. {
  43. "path" : "pages/unitTest/index",
  44. "style" :
  45. {
  46. "navigationBarTitleText" : "单元测试",
  47. "navigationStyle": "custom"
  48. }
  49. }
  50. ],
  51. "tabBar": {
  52. "height": "90rpx",
  53. "iconWidth": "134rpx",
  54. "spacing": "0px",
  55. "backgroundColor": "transparent",
  56. "list": [{
  57. "pagePath": "pages/study/index",
  58. "iconPath": "static/images/tabbar/unselect/plan-sj.png",
  59. "selectedIconPath": "static/images/tabbar/select/plan-sj.png"
  60. }, {
  61. "pagePath": "pages/study/index",
  62. "iconPath": "static/images/tabbar/unselect/develop-sj.png",
  63. "selectedIconPath": "static/images/tabbar/select/develop-sj.png"
  64. }, {
  65. "pagePath": "pages/study/index",
  66. "iconPath": "static/images/tabbar/unselect/partner-sj.png",
  67. "selectedIconPath": "static/images/tabbar/select/partner-sj.png"
  68. }, {
  69. "pagePath": "pages/my/index",
  70. "iconPath": "static/images/tabbar/unselect/my-sj.png",
  71. "selectedIconPath": "static/images/tabbar/select/my-sj.png"
  72. }]
  73. },
  74. "globalStyle": {
  75. "navigationBarTextStyle": "black",
  76. "navigationBarTitleText": "麦塔软件",
  77. "navigationBarBackgroundColor": "#F8F8F8",
  78. "backgroundColor": "#F8F8F8"
  79. /* "app-plus": {
  80. "background": "#efeff4"
  81. } */
  82. },
  83. "uniIdRouter": {},
  84. "condition" : { //模式配置,仅开发期间生效
  85. "current": 0, //当前激活的模式(list 的索引项)
  86. "list": [
  87. {
  88. "name": "login", //模式名称
  89. "path": "pages/login", //启动页面,必选
  90. "query": "" //启动参数,在页面的onLoad函数里面得到
  91. }
  92. ]
  93. }
  94. }