pages.json 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. {
  2. "easycom": {
  3. "^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue"
  4. },
  5. "pages": [{
  6. "path": "pages/login/login",
  7. "style": {
  8. "navigationBarTitleText": ""
  9. //登录
  10. //"navigationStyle":"custom"
  11. }
  12. }, {
  13. "path": "pages/login/chooseRole",
  14. "style": {
  15. "navigationBarTitleText": "选择角色",
  16. "enablePullDownRefresh": false
  17. }
  18. }, {
  19. "path": "pages/login/register",
  20. "style": {
  21. "navigationBarTitleText": "",
  22. "enablePullDownRefresh": false
  23. }
  24. }, {
  25. "path": "pages/index/index",
  26. "style": {
  27. "navigationBarTitleText": "首页",
  28. "app-plus": {
  29. "titleNView": {
  30. "backgroundColor": "#ff4200",
  31. "titleColor": "#fff"
  32. }
  33. }
  34. }
  35. },
  36. {
  37. "path": "pages/order/OrderIndex",
  38. "style": {
  39. "navigationBarTitleText": "订单中心",
  40. "app-plus": {
  41. "titleNView": {
  42. "backgroundColor": "#ff4200",
  43. "titleColor": "#fff"
  44. }
  45. }
  46. }
  47. },
  48. {
  49. "path": "pages/message/MessageIndex",
  50. "style": {
  51. "navigationBarTitleText": "消息中心",
  52. "app-plus": {
  53. "titleNView": {
  54. "backgroundColor": "#ff4200",
  55. "titleColor": "#fff"
  56. }
  57. }
  58. }
  59. }
  60. , {
  61. "path": "pages/personal/personal",
  62. "style": {
  63. "navigationBarTitleText": "个人中心",
  64. "app-plus": {
  65. "titleNView": {
  66. "backgroundColor": "#ff4200",
  67. "titleColor": "#fff"
  68. }
  69. }
  70. }
  71. }
  72. ],
  73. "globalStyle": {
  74. "navigationBarTextStyle": "white",
  75. "navigationBarTitleText": "uni-app",
  76. "navigationBarBackgroundColor": "#fff",
  77. "backgroundColor": "#F8F8F8"
  78. },
  79. "tabBar": {
  80. "color": "#7A7E83",
  81. "selectedColor": "#3cc51f",
  82. "borderStyle": "black",
  83. "backgroundColor": "#ffffff",
  84. "list": [{
  85. "pagePath": "pages/index/index",
  86. "iconPath": "static/icon/home-icon.png",
  87. "selectedIconPath": "static/icon/home-icon-select.png",
  88. "text": "首页"
  89. },
  90. {
  91. "pagePath": "pages/order/OrderIndex",
  92. "iconPath": "static/icon/order-icon.png",
  93. "selectedIconPath": "static/icon/order-icon-select.png",
  94. "text": "订单"
  95. },
  96. {
  97. "pagePath": "pages/message/MessageIndex",
  98. "iconPath": "static/icon/message-icon.png",
  99. "selectedIconPath": "static/icon/message-icon-select.png",
  100. "text": "消息"
  101. },
  102. {
  103. "pagePath": "pages/personal/personal",
  104. "iconPath": "static/icon/person-icon.png",
  105. "selectedIconPath": "static/icon/person-icon-select.png",
  106. "text": "个人中心"
  107. }
  108. ]
  109. }
  110. }