pages.json 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. {
  2. "pages": [{
  3. "path": "pages/login",
  4. "style": {
  5. "navigationBarTitleText": ""
  6. }
  7. },
  8. {
  9. "path": "pages/index/index",
  10. "style": {
  11. "navigationStyle": "custom"
  12. }
  13. },
  14. {
  15. "path": "pages/exam/index",
  16. "style": {
  17. "navigationStyle": "custom"
  18. }
  19. },
  20. {
  21. "path": "pages/score/index",
  22. "style": {
  23. "navigationStyle": "custom"
  24. }
  25. },
  26. {
  27. "path": "pages/my/index",
  28. "style": {
  29. "navigationBarTitleText": "我的"
  30. }
  31. }
  32. ],
  33. "subPackages": [{
  34. "root": "subpkgExam",
  35. "name": "exam",
  36. "pages": [{
  37. "path": "pages/exam/exam",
  38. "style": {
  39. "navigationStyle": "custom"
  40. }
  41. }]
  42. },
  43. {
  44. "root": "subpkgScore",
  45. "name": "score",
  46. "pages": [{
  47. "path": "pages/score/kaoshiChengjiInfo",
  48. "style": {
  49. "navigationStyle": "custom"
  50. }
  51. }]
  52. }
  53. ],
  54. "tabBar": {
  55. "color": "#565656",
  56. "selectedColor": "#0856E6",
  57. "borderStyle": "black",
  58. "backgroundColor": "#ffffff",
  59. "fontSize": "13px",
  60. "iconWidth": "28px",
  61. "spacing": "0px",
  62. "list": [{
  63. "pagePath": "pages/index/index",
  64. "iconPath": "static/images/tabbar/unselect/index-sj.png",
  65. "selectedIconPath": "static/images/tabbar/select/index-sj.png",
  66. "text": "首页"
  67. },
  68. {
  69. "pagePath": "pages/exam/index",
  70. "iconPath": "static/images/tabbar/unselect/exam-sj.png",
  71. "selectedIconPath": "static/images/tabbar/select/exam-sj.png",
  72. "text": "考试"
  73. },
  74. {
  75. "pagePath": "pages/score/index",
  76. "iconPath": "static/images/tabbar/unselect/score-sj.png",
  77. "selectedIconPath": "static/images/tabbar/select/score-sj.png",
  78. "text": "成绩"
  79. },
  80. {
  81. "pagePath": "pages/my/index",
  82. "iconPath": "static/images/tabbar/unselect/my-sj.png",
  83. "selectedIconPath": "static/images/tabbar/select/my-sj.png",
  84. "text": "我的"
  85. }
  86. ]
  87. },
  88. "globalStyle": {
  89. "navigationBarTextStyle": "black",
  90. "navigationBarTitleText": "麦塔软件",
  91. "navigationBarBackgroundColor": "#fff",
  92. "lazyCodeLoading": "requiredComponents"
  93. },
  94. "easycom": {
  95. "autoscan": true,
  96. "custom": {
  97. "^uni-(.*)": "@dcloudio/uni-ui/lib/uni-$1/uni-$1.vue",
  98. // 只保留确实在主包使用的组件规则
  99. "^common-(.*)": "@/components/common-$1.vue"
  100. }
  101. },
  102. "uniIdRouter": {}
  103. }