pages.json 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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/login/account-login",
  8. "style": {
  9. "navigationStyle": "custom",
  10. "enablePullDownRefresh": false
  11. }
  12. },
  13. {
  14. "path": "pages/index/index",
  15. "style": {
  16. "navigationStyle": "custom",
  17. "navigationBarTitleText": "uni-app"
  18. }
  19. }, {
  20. "path": "pages/member-center/member-center",
  21. "style": {
  22. "navigationBarTitleText": "会员中心",
  23. "enablePullDownRefresh": false
  24. }
  25. }, {
  26. "path": "pages/recharge/recharge",
  27. "style": {
  28. "navigationBarTitleText": "充值",
  29. "enablePullDownRefresh": false
  30. }
  31. }, {
  32. "path": "pages/recharge/records",
  33. "style": {
  34. "navigationBarTitleText": "开票记录",
  35. "enablePullDownRefresh": false
  36. }
  37. }, {
  38. "path": "pages/publish/publish",
  39. "style": {
  40. "navigationBarTitleText": "发起活动",
  41. "navigationStyle": "custom",
  42. "enablePullDownRefresh": false
  43. }
  44. }, {
  45. "path": "pages/activity/activity",
  46. "style": {
  47. "navigationBarTitleText": "活动列表",
  48. "enablePullDownRefresh": false
  49. }
  50. }, {
  51. "path": "pages/publish/detail",
  52. "style": {
  53. "navigationStyle": "custom",
  54. "navigationBarTitleText": "活动详情",
  55. "enablePullDownRefresh": false
  56. }
  57. }, {
  58. "path": "pages/stores/stores",
  59. "style": {
  60. "navigationStyle": "custom",
  61. "navigationBarTitleText": "门店",
  62. "enablePullDownRefresh": false
  63. }
  64. }, {
  65. "path": "pages/stores/detail",
  66. "style": {
  67. "navigationBarTitleText": "详情",
  68. "enablePullDownRefresh": false
  69. }
  70. }
  71. ,{
  72. "path" : "pages/login/login",
  73. "style" :
  74. {
  75. "navigationStyle":"custom",
  76. "navigationBarTitleText": "",
  77. "enablePullDownRefresh": false
  78. }
  79. }
  80. ,{
  81. "path" : "pages/login/forget",
  82. "style" :
  83. {
  84. "navigationStyle":"custom",
  85. "navigationBarTitleText": "",
  86. "enablePullDownRefresh": false
  87. }
  88. }
  89. ,{
  90. "path" : "pages/member-center/add",
  91. "style" :
  92. {
  93. "navigationBarTitleText": "创建会员中心",
  94. "enablePullDownRefresh": false
  95. }
  96. }
  97. ],
  98. "globalStyle": {
  99. "navigationBarTextStyle": "black",
  100. "navigationBarTitleText": "uni-app",
  101. "navigationBarBackgroundColor": "#FFFFFF",
  102. "backgroundColor": "#F8F8F8"
  103. }
  104. }