pages.json 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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/comdetail/index",
  61. "style": {
  62. "navigationBarTitleText": "详情",
  63. "enablePullDownRefresh": false
  64. }
  65. },
  66. {
  67. "path": "pages/cashout/index",
  68. "style": {
  69. "navigationBarTitleText": "申请提现",
  70. "enablePullDownRefresh": false
  71. }
  72. },
  73. {
  74. "path": "pages/cashout/record",
  75. "style": {
  76. "navigationBarTitleText": "提现记录",
  77. "enablePullDownRefresh": false
  78. }
  79. },
  80. {
  81. "path": "pages/actdetail/index",
  82. "style": {
  83. "navigationBarTitleText": "详情",
  84. "navigationBarTextStyle": "white",
  85. "navigationBarBackgroundColor": "#3F8DFD"
  86. }
  87. },
  88. {
  89. "path": "pages/bill/index",
  90. "style": {
  91. "navigationBarTitleText": "海报",
  92. "navigationStyle": "custom"
  93. }
  94. }
  95. ],
  96. "globalStyle": {
  97. "navigationBarTextStyle": "black",
  98. "navigationBarTitleText": "uni-app",
  99. "navigationBarBackgroundColor": "#FFFFFF",
  100. "backgroundColor": "#FFFFFF"
  101. },
  102. "uniIdRouter": {},
  103. "easycom": {
  104. "^u-(.*)": "@/uni_modules/uview-ui/components/u-$1/u-$1.vue"
  105. }
  106. }