pages.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "easycom": {
  3. "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
  4. },
  5. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  6. {
  7. "path": "pages/home/home",
  8. "style": {
  9. "navigationBarTitleText": "个人任务管理",
  10. "navigationStyle": "custom"
  11. }
  12. }, {
  13. "path": "pages/login/login",
  14. "style": {
  15. "navigationBarTitleText": "",
  16. "enablePullDownRefresh": false
  17. }
  18. }, {
  19. "path": "pages/user/user",
  20. "style": {
  21. "navigationBarTitleText": "个人中心",
  22. "enablePullDownRefresh": false
  23. }
  24. }, {
  25. "path": "pages/task/task",
  26. "style": {
  27. "navigationBarTitleText": "任务列表",
  28. "enablePullDownRefresh": false
  29. }
  30. }
  31. ,{
  32. "path" : "pages/dayreport/dayreport",
  33. "style" :
  34. {
  35. "navigationBarTitleText": "个人汇报",
  36. "enablePullDownRefresh": false
  37. }
  38. }
  39. ,{
  40. "path" : "pages/monthreport/monthreport",
  41. "style" :
  42. {
  43. "navigationBarTitleText": "个人月报",
  44. "enablePullDownRefresh": false
  45. }
  46. }
  47. ,{
  48. "path" : "pages/dayreportform/dayreportform",
  49. "style" :
  50. {
  51. "navigationBarTitleText": "日汇报报表",
  52. "enablePullDownRefresh": false
  53. }
  54. }
  55. ],
  56. "globalStyle": {
  57. "navigationBarTextStyle": "black",
  58. "navigationBarTitleText": "uni-app",
  59. "navigationBarBackgroundColor": "#007AFF",
  60. "backgroundColor": "#007AFF",
  61. "navigationBarTextStyle": "white"
  62. }
  63. }