pages.json 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "项目管理系统",
  7. "enablePullDownRefresh": true
  8. }
  9. },{
  10. "path": "pages/404/404",
  11. "style": {
  12. "navigationBarTitleText": "404"
  13. }
  14. },{
  15. "path": "pages/404/quesheng",
  16. "style": {
  17. "navigationBarTitleText": "暂无内容"
  18. }
  19. },{
  20. "path": "pages/project/index",
  21. "style": {
  22. "navigationBarTitleText": "项目管理",
  23. "enablePullDownRefresh": true
  24. }
  25. },{
  26. "path": "pages/project/projectChange",
  27. "style": {
  28. "navigationBarTitleText": "编辑项目"
  29. }
  30. },{
  31. "path": "pages/project/projectX",
  32. "style": {
  33. "navigationBarTitleText": "项目详情"
  34. }
  35. },{
  36. "path": "pages/project/sorce",
  37. "style": {
  38. "navigationBarTitleText": "评分"
  39. }
  40. },{
  41. "path": "pages/project/addProject",
  42. "style": {
  43. "navigationBarTitleText": "新建项目"
  44. }
  45. },{
  46. "path": "pages/project/addRenwu",
  47. "style": {
  48. "navigationBarTitleText": "新建任务"
  49. }
  50. },{
  51. "path": "pages/project/changeRenwu",
  52. "style": {
  53. "navigationBarTitleText": "编辑任务"
  54. }
  55. },{
  56. "path": "pages/project/renwuX",
  57. "style": {
  58. "navigationBarTitleText": "任务详情"
  59. }
  60. },{
  61. "path": "pages/project/renwuUpdateJin",
  62. "style": {
  63. "navigationBarTitleText": "更新进度"
  64. }
  65. }
  66. ],
  67. "globalStyle": {
  68. "navigationBarTextStyle": "white",
  69. "navigationBarTitleText": "项目过程管理系统",
  70. "navigationBarBackgroundColor": "#054DF3",
  71. "backgroundColor": "#54A4FF"
  72. },
  73. "uniIdRouter": {},
  74. "tabBar": {//底部导航
  75. "color": "#A6A6A6",
  76. "selectedColor": "#0061FF",
  77. "borderStyle": "black",
  78. "backgroundColor": "#ffffff",
  79. "list": [{
  80. "pagePath": "pages/index/index",
  81. "iconPath": "static/img/shouye.png",
  82. "selectedIconPath": "static/img/shouye_select.png",//选中时的图片路径
  83. "text": "首页"
  84. }, {
  85. "pagePath": "pages/project/index",
  86. "iconPath": "static/project/project.png",
  87. "selectedIconPath": "static/project/project_select.png",
  88. "text": "项目管理"
  89. }]
  90. }
  91. }