pages.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. {
  11. "path" : "pages/login/login",
  12. "style" :
  13. {
  14. "navigationBarTitleText" : "登录"
  15. }
  16. },
  17. {
  18. "path" : "pages/user-info/user-info",
  19. "style" :
  20. {
  21. "navigationBarTitleText" : "用户中心"
  22. }
  23. },
  24. {
  25. "path" : "pages/punchin-edit/punchin-edit",
  26. "style" :
  27. {
  28. "navigationBarTitleText" : "编辑"
  29. }
  30. },
  31. {
  32. "path" : "pages/settle-list/settle-list",
  33. "style" :
  34. {
  35. "navigationBarTitleText" : ""
  36. }
  37. },
  38. {
  39. "path" : "pages/punchin-detail/punchin-detail",
  40. "style" :
  41. {
  42. "navigationBarTitleText" : ""
  43. }
  44. }
  45. ],
  46. "globalStyle": {
  47. "navigationBarTextStyle": "black",
  48. "navigationBarTitleText": "uni-app",
  49. "navigationBarBackgroundColor": "#F8F8F8",
  50. "backgroundColor": "#F8F8F8",
  51. "navigationStyle": "custom"
  52. },
  53. "uniIdRouter": {}
  54. }