pages.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. "path" : "pages/extractBookCurr/extractBookCurr",
  31. "style" :
  32. {
  33. "navigationStyle": "custom" ,
  34. "navigationBarTitleText": "提取书币",
  35. "enablePullDownRefresh": false
  36. }
  37. }
  38. ,{
  39. "path" : "pages/extractRecord/extractRecord",
  40. "style" :
  41. {
  42. "navigationBarTitleText": "提取记录",
  43. "enablePullDownRefresh": false
  44. }
  45. }
  46. ],
  47. "globalStyle": {
  48. "navigationBarTextStyle": "black",
  49. "navigationBarTitleText": "签到有礼",
  50. "navigationBarBackgroundColor": "#F8F8F8",
  51. "backgroundColor": "#F8F8F8"
  52. }
  53. }