pages.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "uni-app"
  7. }
  8. },
  9. {
  10. "path": "pages/login",
  11. "style": {
  12. "navigationBarTitleText": "uni-app"
  13. }
  14. },
  15. {
  16. "path" : "pages/exam/index",
  17. "style" :
  18. {
  19. "navigationBarTitleText" : ""
  20. }
  21. },
  22. {
  23. "path" : "pages/my/index",
  24. "style" :
  25. {
  26. "navigationBarTitleText" : ""
  27. }
  28. }
  29. ],
  30. "tabBar": {
  31. "color": "#565656",
  32. "selectedColor": "#0856E6",
  33. "borderStyle": "black",
  34. "backgroundColor": "#ffffff",
  35. "fontSize": "13px",
  36. "iconWidth": "28px",
  37. "spacing": "0px",
  38. "list": [{
  39. "pagePath": "pages/index/index",
  40. "iconPath": "static/images/tabbar/unselect/index-sj.png",
  41. "selectedIconPath": "static/images/tabbar/select/index-sj.png",
  42. "text": "首页"
  43. }, {
  44. "pagePath": "pages/exam/index",
  45. "iconPath": "static/images/tabbar/unselect/exam-sj.png",
  46. "selectedIconPath": "static/images/tabbar/select/exam-sj.png",
  47. "text": "考试"
  48. }, {
  49. "pagePath": "pages/login",
  50. "iconPath": "static/images/tabbar/unselect/kecheng-sj.png",
  51. "selectedIconPath": "static/images/tabbar/select/kecheng-sj.png",
  52. "text": "课程"
  53. }, {
  54. "pagePath": "pages/exam/index",
  55. "iconPath": "static/images/tabbar/unselect/score-sj.png",
  56. "selectedIconPath": "static/images/tabbar/select/score-sj.png",
  57. "text": "成绩"
  58. }, {
  59. "pagePath": "pages/exam/index",
  60. "iconPath": "static/images/tabbar/unselect/my-sj.png",
  61. "selectedIconPath": "static/images/tabbar/unselect/my-sj.png",
  62. "text": "我的"
  63. }]
  64. },
  65. "globalStyle": {
  66. "navigationBarTextStyle": "black",
  67. "navigationBarTitleText": "麦塔软件",
  68. "navigationBarBackgroundColor": "#F8F8F8"
  69. },
  70. "uniIdRouter": {}
  71. }