pages.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. {
  2. "easycom": {
  3. "autoscan": true // 自动扫描组件
  4. },
  5. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  6. {
  7. "path": "pages/main/index",
  8. "style": {
  9. "navigationBarTitleText": "首页",
  10. "navigationStyle": "custom"
  11. }
  12. },
  13. {
  14. "path": "pages/cash/index",
  15. "style": {
  16. "navigationBarTitleText": "提现",
  17. "navigationStyle": "custom"
  18. }
  19. },
  20. {
  21. "path": "pages/balance/index",
  22. "style": {
  23. "navigationBarTitleText": "余额提现",
  24. "navigationStyle": "custom"
  25. }
  26. },
  27. {
  28. "path": "pages/consume/index",
  29. "style": {
  30. "navigationBarTitleText": "收支明细",
  31. "navigationStyle": "custom"
  32. }
  33. },
  34. {
  35. "path": "pages/invitationStatistics/index",
  36. "style": {
  37. "navigationBarTitleText": "邀请统计",
  38. "navigationStyle": "custom"
  39. }
  40. },
  41. {
  42. "path": "pages/publicSharing/index",
  43. "style": {
  44. "navigationBarTitleText": "全名分享",
  45. "navigationStyle": "custom"
  46. }
  47. },
  48. {
  49. "path": "pages/publicSharingDetails/index",
  50. "style": {
  51. "navigationBarTitleText": "全名分享详情",
  52. "navigationStyle": "custom"
  53. }
  54. },
  55. {
  56. "path": "pages/withdrawal/index",
  57. "style": {
  58. "navigationBarTitleText": "提现",
  59. "navigationStyle": "custom"
  60. }
  61. },
  62. {
  63. "path": "pages/login/index",
  64. "style": {
  65. "navigationBarTitleText": "登录",
  66. "navigationStyle": "custom"
  67. }
  68. }
  69. ],
  70. "globalStyle": {
  71. "navigationBarTextStyle": "black",
  72. "navigationBarTitleText": "uni-app",
  73. "navigationBarBackgroundColor": "#F8F8F8",
  74. "backgroundColor": "#F8F8F8"
  75. },
  76. "uniIdRouter": {}
  77. }