pages.json 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/login/index",
  5. "style": {
  6. "navigationBarTitleText": "登录",
  7. "navigationStyle": "custom"
  8. }
  9. },
  10. {
  11. "path": "pages/login/verify-code",
  12. "style": {
  13. "navigationBarTitleText": "验证码登录",
  14. "navigationStyle": "custom"
  15. }
  16. },
  17. {
  18. "path": "pages/index/index",
  19. "style": {
  20. "navigationBarTitleText": "首页"
  21. }
  22. },
  23. {
  24. "path": "pages/discover/index",
  25. "style": {
  26. "navigationBarTitleText": "发现",
  27. "navigationStyle": "custom"
  28. }
  29. },
  30. {
  31. "path": "pages/message/index",
  32. "style": {
  33. "navigationBarTitleText": "消息",
  34. "navigationStyle": "custom"
  35. }
  36. },
  37. {
  38. "path": "pages/mine/index",
  39. "style": {
  40. "navigationBarTitleText": "我的",
  41. "navigationStyle": "custom"
  42. }
  43. },
  44. {
  45. "path": "pages/search/index",
  46. "style": {
  47. "navigationBarTitleText": "课程搜索"
  48. }
  49. },
  50. {
  51. "path": "pages/calendar/index",
  52. "style": {
  53. "navigationBarTitleText": "课程日历"
  54. }
  55. },
  56. ],
  57. "globalStyle": {
  58. "navigationBarTextStyle": "black",
  59. "navigationBarTitleText": "小鹅通",
  60. "navigationBarBackgroundColor": "#F8F8F8",
  61. "backgroundColor": "#F8F8F8"
  62. },
  63. "uniIdRouter": {},
  64. "tabBar": {
  65. "color": "#888",
  66. "selectedColor": "#3498db",
  67. "backgroundColor": "#fff",
  68. "borderStyle": "black",
  69. "list": [
  70. {
  71. "pagePath": "pages/index/index",
  72. "iconPath": "static/tabbar/home.png",
  73. "selectedIconPath": "static/tabbar/home_selected.png",
  74. "text": "首页"
  75. },
  76. {
  77. "pagePath": "pages/discover/index",
  78. "iconPath": "static/tabbar/discover.png",
  79. "selectedIconPath": "static/tabbar/discover_selected.png",
  80. "text": "发现"
  81. },
  82. {
  83. "pagePath": "pages/message/index",
  84. "iconPath": "static/tabbar/message.png",
  85. "selectedIconPath": "static/tabbar/message_selected.png",
  86. "text": "消息"
  87. },
  88. {
  89. "pagePath": "pages/mine/index",
  90. "iconPath": "static/tabbar/mine.png",
  91. "selectedIconPath": "static/tabbar/mine_selected.png",
  92. "text": "我的"
  93. }
  94. ]
  95. }
  96. }