pages.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. {
  2. "easycom": {
  3. "^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue"
  4. },
  5. "pages": [{
  6. "path": "pages/index/index",
  7. "style": {
  8. "navigationBarTitleText": "首页",
  9. "enablePullDownRefresh": false
  10. }
  11. }, {
  12. "path": "pages/personal/personal",
  13. "style": {
  14. "navigationBarTitleText": "我的",
  15. "enablePullDownRefresh": false
  16. }
  17. }, {
  18. "path": "pages/message/message",
  19. "style": {
  20. "navigationBarTitleText": "消息",
  21. "enablePullDownRefresh": false
  22. }
  23. }, {
  24. "path": "pages/order/order",
  25. "style": {
  26. "navigationBarTitleText": "订单",
  27. "enablePullDownRefresh": false
  28. }
  29. }, {
  30. "path": "pages/login/login",
  31. "style": {
  32. "navigationBarTitleText": ""
  33. //登录
  34. //"navigationStyle":"custom"
  35. }
  36. }, {
  37. "path": "pages/login/chooseRole",
  38. "style": {
  39. "navigationBarTitleText": "选择角色",
  40. "enablePullDownRefresh": false
  41. }
  42. }, {
  43. "path": "pages/login/register",
  44. "style": {
  45. "navigationBarTitleText": "",
  46. "enablePullDownRefresh": false
  47. }
  48. }, {
  49. "path": "pages/login/userAgreement",
  50. "style": {
  51. "navigationBarTitleText": "",
  52. "enablePullDownRefresh": false
  53. }
  54. }],
  55. "globalStyle": {
  56. "navigationBarTextStyle": "white",
  57. // "navigationBarTitleText": "uni-app",
  58. "navigationBarBackgroundColor": "#fff",
  59. "backgroundColor": "#F8F8F8"
  60. },
  61. "tabBar": {
  62. "color": "#7A7E83",
  63. "borderStyle": "black",
  64. "selectedColor": "#00BFFF",
  65. "backgroundColor": "#ffffff",
  66. "list": [{
  67. "pagePath": "pages/index/index",
  68. "iconPath": "static/images/tabbar/home.png",
  69. "selectedIconPath": "static/images/tabbar/home-active.png",
  70. "text": "首页"
  71. }, {
  72. "pagePath": "pages/order/order",
  73. "iconPath": "static/images/tabbar/order.png",
  74. "selectedIconPath": "static/images/tabbar/order-active.png",
  75. "text": "订单"
  76. }, {
  77. "pagePath": "pages/message/message",
  78. "iconPath": "static/images/tabbar/message.png",
  79. "selectedIconPath": "static/images/tabbar/message-active.png",
  80. "text": "消息"
  81. }, {
  82. "pagePath": "pages/personal/personal",
  83. "iconPath": "static/images/tabbar/my.png",
  84. "selectedIconPath": "static/images/tabbar/my-active.png",
  85. "text": "我的"
  86. }]
  87. }
  88. }