pages.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. "pages": [{
  4. "path": "pages/index/index" // 首页
  5. }, {
  6. "path": "pages/my/my" // 我的
  7. }, {
  8. "path": "pages/apps/shunt-places/shunt-places" // 分流名额
  9. }, {
  10. "path": "pages/apps/my-grades/my-grades" // 本人成绩
  11. }, {
  12. "path": "pages/apps/special-application/special-application" // 特别申请
  13. }, {
  14. "path": "pages/apps/change-major/change-major" // 专业分流
  15. }, {
  16. "path": "pages/apps/progress-query/progress-query" // 进度查询
  17. }, {
  18. "path": "pages/my/user-info/user-info" // 个人信息
  19. },{
  20. "path": "pages/my/problem-feedback/problem-feedback" // 个人信息
  21. }, {
  22. "path": "pages/common/webview/webview" // 第三方网址页面
  23. }, {
  24. "path": "pages/error/403/403"
  25. } ],
  26. "globalStyle": {
  27. "navigationBarTextStyle": "white",
  28. "navigationStyle": "custom",
  29. "navigationBarTitleText": "",
  30. "navigationBarBackgroundColor": "#fff"
  31. // "backgroundColor": "#fff"
  32. },
  33. "tabBar": {
  34. "color": "#7A7E83",
  35. "selectedColor": "#007AFF",
  36. "borderStyle": "black",
  37. "backgroundColor": "#FFFFFF",
  38. "list": [{
  39. "pagePath": "pages/index/index",
  40. "iconPath": "static/tabbar/list.png",
  41. "selectedIconPath": "static/tabbar/list_active.png",
  42. "text": "首页"
  43. },
  44. {
  45. "pagePath": "pages/my/my",
  46. "iconPath": "static/tabbar/me.png",
  47. "selectedIconPath": "static/tabbar/me_active.png",
  48. "text": "我的"
  49. }
  50. ]
  51. }
  52. }