pages.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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/project/index",
  11. "style": {
  12. "navigationBarTitleText": "项目管理",
  13. "enablePullDownRefresh": true
  14. }
  15. },{
  16. "path": "pages/project/projectChange",
  17. "style": {
  18. "navigationBarTitleText": "编辑项目"
  19. }
  20. },{
  21. "path": "pages/project/addProject",
  22. "style": {
  23. "navigationBarTitleText": "新建项目"
  24. }
  25. },{
  26. "path": "pages/project/addRenwu",
  27. "style": {
  28. "navigationBarTitleText": "新建任务"
  29. }
  30. },{
  31. "path": "pages/project/renwuX",
  32. "style": {
  33. "navigationBarTitleText": "任务详情"
  34. }
  35. }
  36. ],
  37. "globalStyle": {
  38. "navigationBarTextStyle": "white",
  39. "navigationBarTitleText": "项目过程管理系统",
  40. "navigationBarBackgroundColor": "#054DF3",
  41. "backgroundColor": "#54A4FF"
  42. },
  43. "uniIdRouter": {},
  44. "tabBar": {//底部导航
  45. "color": "#A6A6A6",
  46. "selectedColor": "#0061FF",
  47. "borderStyle": "black",
  48. "backgroundColor": "#ffffff",
  49. "list": [{
  50. "pagePath": "pages/index/index",
  51. "iconPath": "static/img/shouye.png",
  52. "selectedIconPath": "static/img/shouye_select.png",//选中时的图片路径
  53. "text": "首页"
  54. }, {
  55. "pagePath": "pages/project/index",
  56. "iconPath": "static/project/project.png",
  57. "selectedIconPath": "static/project/project_select.png",
  58. "text": "项目管理"
  59. }]
  60. }
  61. }