pages.json 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. {
  2. "pages": [
  3. //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  4. //"navigationStyle": "custom" 隐藏了才能触发自定义的
  5. {
  6. "path": "pages/index/index",
  7. "style": {
  8. "navigationBarTitleText": "个人中心",
  9. "navigationBarTextStyle": "white",
  10. "navigationBarBackgroundColor": "#3F8DFD"
  11. }
  12. },
  13. {
  14. "path": "pages/login/login",
  15. "style": {
  16. "navigationBarTitleText": "登录"
  17. }
  18. },
  19. {
  20. "path": "pages/login/register",
  21. "style": {
  22. "navigationBarTitleText": "注册"
  23. }
  24. },
  25. {
  26. "path": "pages/login/forget",
  27. "style": {
  28. "navigationBarTitleText": "忘记密码"
  29. }
  30. },
  31. {
  32. "path": "pages/profile/index",
  33. "style": {
  34. "navigationBarTitleText": "修改资料"
  35. }
  36. },
  37. {
  38. "path": "pages/vcard/index",
  39. "style": {
  40. "navigationBarTitleText": "电子名片",
  41. "navigationBarBackgroundColor": "#353F5C",
  42. "navigationBarTextStyle": "white"
  43. }
  44. },
  45. {
  46. "path": "pages/actlist/index",
  47. "style": {
  48. "navigationBarTitleText": "活动列表",
  49. "enablePullDownRefresh": false
  50. }
  51. },
  52. {
  53. "path": "pages/commission/index",
  54. "style": {
  55. "navigationBarTitleText": "佣金列表",
  56. "enablePullDownRefresh": false
  57. }
  58. },
  59. {
  60. "path": "pages/cashout/index",
  61. "style": {
  62. "navigationBarTitleText": "申请提现",
  63. "enablePullDownRefresh": false
  64. }
  65. },
  66. {
  67. "path": "pages/cashout/record",
  68. "style": {
  69. "navigationBarTitleText": "提现记录",
  70. "enablePullDownRefresh": false
  71. }
  72. },
  73. {
  74. "path": "pages/actdetail/index",
  75. "style": {
  76. "navigationBarTitleText": "详情",
  77. "navigationBarTextStyle": "white",
  78. "navigationBarBackgroundColor": "#3F8DFD"
  79. }
  80. },
  81. {
  82. "path": "pages/bill/index",
  83. "style": {
  84. "navigationBarTitleText": "海报"
  85. }
  86. }
  87. ],
  88. "globalStyle": {
  89. "navigationBarTextStyle": "black",
  90. "navigationBarTitleText": "uni-app",
  91. "navigationBarBackgroundColor": "#FFFFFF",
  92. "backgroundColor": "#FFFFFF"
  93. },
  94. "uniIdRouter": {},
  95. "easycom": {
  96. "^u-(.*)": "@/uni_modules/uview-ui/components/u-$1/u-$1.vue"
  97. }
  98. }