pages.json 1.9 KB

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