pages.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  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/index/index",
  8. "style": {
  9. "navigationStyle": "default",
  10. "navigationBarTitleText": "签到有礼"
  11. }
  12. }
  13. ,{
  14. "path" : "pages/checkInRecord/checkInRecord",
  15. "style" :
  16. {
  17. "navigationBarTitleText": "签到记录",
  18. "enablePullDownRefresh": false
  19. }
  20. }
  21. ,{
  22. "path" : "pages/officialAccount/officialAccount",
  23. "style" :
  24. {
  25. "navigationBarTitleText": "关注公众号",
  26. "enablePullDownRefresh": false
  27. }
  28. }
  29. ],
  30. "globalStyle": {
  31. "navigationBarTextStyle": "black",
  32. "navigationBarTitleText": "签到有礼",
  33. "navigationBarBackgroundColor": "#F8F8F8",
  34. "backgroundColor": "#F8F8F8"
  35. }
  36. }