pages.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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/punchin-detail/punchin-detail",
  33. "style" :
  34. {
  35. "navigationBarTitleText" : "",
  36. "enablePullDownRefresh": true
  37. }
  38. },
  39. {
  40. "path" : "pages/settle-list/settle-list",
  41. "style" :
  42. {
  43. "navigationBarTitleText" : "奖励结算记录",
  44. "enablePullDownRefresh": true
  45. }
  46. },
  47. {
  48. "path" : "pages/scratch-record-list/scratch-record-list",
  49. "style" :
  50. {
  51. "navigationBarTitleText" : "刮刮乐投入与中奖记录",
  52. "enablePullDownRefresh": true
  53. }
  54. },
  55. {
  56. "path" : "pages/reward-record-list/reward-record-list",
  57. "style" :
  58. {
  59. "navigationBarTitleText" : "奖励领取记录",
  60. "enablePullDownRefresh": true
  61. }
  62. }
  63. ],
  64. "globalStyle": {
  65. "navigationBarTextStyle": "black",
  66. "navigationBarTitleText": "uni-app",
  67. "navigationBarBackgroundColor": "#F8F8F8",
  68. "backgroundColor": "#F8F8F8",
  69. "navigationStyle": "custom"
  70. },
  71. "uniIdRouter": {}
  72. }