pages.json 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "芝麻高报系统"
  7. }
  8. }, {
  9. "path": "pages/predict/predict",
  10. "style": {
  11. "navigationBarTitleText": "志愿预测"
  12. }
  13. }, {
  14. "path": "pages/myinfo/myinfo",
  15. "style": {
  16. "navigationBarTitleText": "我的"
  17. }
  18. },
  19. {
  20. "path": "pages/schooldetail/schooldetail",
  21. "style": {
  22. "navigationBarTitleText": "school-name"
  23. }
  24. },
  25. {
  26. "path": "pages/majorbox/majorbox",
  27. "style": {
  28. "navigationBarTitleText": "专业库"
  29. }
  30. },
  31. {
  32. "path": "pages/schoolbox/schoolbox",
  33. "style": {
  34. "navigationBarTitleText": "院校库"
  35. }
  36. },
  37. {
  38. "path": "pages/interestbox/interestbox",
  39. "style": {
  40. "navigationBarTitleText": "兴趣测评"
  41. }
  42. }
  43. ,{
  44. "path" : "pages/changeInfo/changeInfo",
  45. "style" : {
  46. "navigationBarTitleText":"个人信息"
  47. }
  48. }
  49. ,{
  50. "path" : "pages/collection/collection",
  51. "style" : {
  52. "navigationBarTitleText":"我的收藏"
  53. }
  54. }
  55. ,{
  56. "path" : "pages/yuan-xiao-ku/yuan-xiao-ku",
  57. "style" : {
  58. "navigationBarTitleText":"院校库",
  59. "app-plus":{
  60. "titleNView":{
  61. "searchInput":{
  62. "align":"left",
  63. "borderRadius":"25px",
  64. "placeholder":"搜索院校",
  65. "disabled":false
  66. }
  67. }
  68. }
  69. }
  70. }
  71. ],
  72. "globalStyle": {
  73. "navigationBarTextStyle": "black",
  74. "navigationBarTitleText": "uni-app",
  75. "navigationBarBackgroundColor": "#ffffff",
  76. "backgroundColor": "#F8F8F8"
  77. },
  78. "tabBar": {
  79. "color": "#7A7E83",
  80. "selectedColor": "#EF3A3A",
  81. "borderStyle": "black",
  82. "backgroundColor": "#ffffff",
  83. "list": [{
  84. "pagePath": "pages/index/index",
  85. "iconPath": "static/home_icon_default_nor.png",
  86. "selectedIconPath": "static/home_icon_default_sel.png",
  87. "text": "首页"
  88. }, {
  89. "pagePath": "pages/predict/predict",
  90. "iconPath": "static/home_icon_volunteer_nor.png",
  91. "selectedIconPath": "static/home_icon_volunteer_sel.png",
  92. "text": "志愿预测"
  93. }, {
  94. "pagePath": "pages/myinfo/myinfo",
  95. "iconPath": "static/home_icon_my_nor.png",
  96. "selectedIconPath": "static/Screenshot_2019-09-24.png",
  97. "text": "我的"
  98. }]
  99. },
  100. "condition" : { //模式配置,仅开发期间生效
  101. "current": 0, //当前激活的模式(list 的索引项)
  102. "list": [{
  103. "name": "", //模式名称
  104. "path": "", //启动页面,必选
  105. "query": "" //启动参数,在页面的onLoad函数里面得到
  106. }]
  107. }
  108. }