pages.json 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. {
  2. "easycom": {
  3. "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue",
  4. "ujp-(.*)": "components/u-$1/u-$1.vue"
  5. },
  6. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  7. {
  8. "name": "充电中",
  9. "path": "pages/index/index",
  10. "style": {
  11. //"navigationStyle": "custom" // 隐藏系统导航栏
  12. }
  13. },
  14. {
  15. "name": "充电",
  16. "path": "pages/charge/index",
  17. "style": {
  18. //"navigationStyle": "custom" // 隐藏系统导航栏
  19. }
  20. },
  21. {
  22. "name": "切换充电桩",
  23. "path": "pages/charge/switchCharge",
  24. "style": {
  25. //"navigationStyle": "custom" // 隐藏系统导航栏
  26. }
  27. },
  28. {
  29. "name": "充电记录",
  30. "path": "pages/charge/chargeList",
  31. "style": {
  32. //"navigationStyle": "custom" // 隐藏系统导航栏
  33. }
  34. },
  35. {
  36. "name": "充电详情",
  37. "path": "pages/charge/chargeDetails",
  38. "style": {
  39. //"navigationStyle": "custom" // 隐藏系统导航栏
  40. }
  41. },
  42. {
  43. "name": "我的",
  44. "path": "pages/user/index",
  45. "style": {
  46. //"navigationStyle": "custom" // 隐藏系统导航栏
  47. }
  48. },
  49. {
  50. "name": "余额充值",
  51. "path": "pages/user/recharge",
  52. "style": {
  53. //"navigationStyle": "custom" // 隐藏系统导航栏
  54. }
  55. },
  56. {
  57. "name": "余额充值",
  58. "path": "pages/user/refundList",
  59. "style": {
  60. //"navigationStyle": "custom" // 隐藏系统导航栏
  61. }
  62. },
  63. {
  64. "name": "充值记录",
  65. "path": "pages/user/rechargeList",
  66. "style": {
  67. //"navigationStyle": "custom" // 隐藏系统导航栏
  68. }
  69. }, {
  70. "name": "充值详情",
  71. "path": "pages/user/rechargeDeatils",
  72. "style": {
  73. //"navigationStyle": "custom" // 隐藏系统导航栏
  74. }
  75. },
  76. {
  77. "name": "登录",
  78. "path": "pages/index/none",
  79. "style": {
  80. //"navigationStyle": "custom" // 隐藏系统导航栏
  81. }
  82. },
  83. {
  84. "name": "登录",
  85. "path": "pages/login/index",
  86. "style": {
  87. //"navigationStyle": "custom" // 隐藏系统导航栏
  88. }
  89. }
  90. ],
  91. "globalStyle": {
  92. "navigationStyle": "custom", // 隐藏系统导航栏
  93. "navigationBarTitleText": "智能充电系统",
  94. "enablePullDownRefresh": false
  95. }
  96. }