pages.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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. "navigationBarTitleText": "幸运大抽奖",
  10. "enablePullDownRefresh": true
  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. }