pages.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationStyle": "default",
  7. "navigationBarTitleText": "签到有礼"
  8. }
  9. }
  10. ,{
  11. "path" : "pages/checkInRecord/checkInRecord",
  12. "style" :
  13. {
  14. "navigationBarTitleText": "签到记录",
  15. "enablePullDownRefresh": false
  16. }
  17. }
  18. ,{
  19. "path" : "pages/officialAccount/officialAccount",
  20. "style" :
  21. {
  22. "navigationBarTitleText": "关注公众号",
  23. "enablePullDownRefresh": false
  24. }
  25. }
  26. ],
  27. "globalStyle": {
  28. "navigationBarTextStyle": "black",
  29. "navigationBarTitleText": "签到有礼",
  30. "navigationBarBackgroundColor": "#F8F8F8",
  31. "backgroundColor": "#F8F8F8"
  32. }
  33. }