pages.json 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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/myinfo2/myinfo2",
  21. "style": {
  22. "navigationBarTitleText": "我的2"
  23. }
  24. }
  25. ],
  26. "globalStyle": {
  27. "navigationBarTextStyle": "black",
  28. "navigationBarTitleText": "uni-app",
  29. "navigationBarBackgroundColor": "#F8F8F8",
  30. "backgroundColor": "#F8F8F8"
  31. <<<<<<< HEAD
  32. },
  33. "tabBar": {
  34. "color": "#7A7E83",
  35. "selectedColor": "#EF3A3A",
  36. "borderStyle": "black",
  37. "backgroundColor": "#ffffff",
  38. "list": [{
  39. "pagePath": "pages/index/index",
  40. "iconPath": "static/home_icon_default_nor.png",
  41. "selectedIconPath": "static/home_icon_default_sel.png",
  42. "text": "首页"
  43. }, {
  44. "pagePath": "pages/predict/predict",
  45. "iconPath": "static/home_icon_volunteer_nor.png",
  46. "selectedIconPath": "static/home_icon_volunteer_sel.png",
  47. "text": "志愿预测"
  48. }, {
  49. "pagePath": "pages/myinfo/myinfo",
  50. "iconPath": "static/home_icon_my_nor.png",
  51. "selectedIconPath": "static/home_icon_my_nor.png",
  52. "text": "我的"
  53. }]
  54. },
  55. "condition": { //模式配置,仅开发期间生效
  56. =======
  57. },
  58. "tabBar": {
  59. "color": "#7A7E83",
  60. "selectedColor": "#EF3A3A",
  61. "borderStyle": "black",
  62. "backgroundColor": "#ffffff",
  63. "list": [{
  64. "pagePath": "pages/index/index",
  65. "iconPath": "static/home_icon_default_nor.png",
  66. "selectedIconPath": "static/home_icon_default_sel.png",
  67. "text": "首页"
  68. },{
  69. "pagePath": "pages/predict/predict",
  70. "iconPath": "static/home_icon_volunteer_nor.png",
  71. "selectedIconPath": "static/home_icon_volunteer_sel.png",
  72. "text": "志愿预测"
  73. }, {
  74. "pagePath": "pages/myinfo/myinfo",
  75. "iconPath": "static/home_icon_my_nor.png",
  76. "selectedIconPath": "static/home_icon_my_nor.png",
  77. "text": "我的"
  78. }]
  79. },
  80. "condition" : { //模式配置,仅开发期间生效
  81. >>>>>>> 5f9ae1fe15e568b78bb3fe4cf5d1ec508fcaa61e
  82. "current": 0, //当前激活的模式(list 的索引项)
  83. "list": [{
  84. "name": "", //模式名称
  85. "path": "", //启动页面,必选
  86. "query": "" //启动参数,在页面的onLoad函数里面得到
  87. }]
  88. }
  89. }