pages.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. "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. }