pages.json 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. {
  2. "easycom": {
  3. "^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue"
  4. },
  5. "pages": [
  6. {
  7. "path": "pages/login2/index",
  8. "style": {
  9. "navigationBarTitleText": "首页",
  10. "navigationStyle": "custom"
  11. },
  12. "meta": {
  13. "auth": false
  14. }
  15. },
  16. {
  17. "path": "pages/index/index",
  18. "style": {
  19. "navigationBarTitleText": "首页",
  20. "navigationStyle": "custom"
  21. },
  22. "meta": {
  23. "auth": false
  24. }
  25. },
  26. {
  27. "path": "pages/login/login",
  28. "style": {
  29. "navigationBarTitleText": "未登录",
  30. "enablePullDownRefresh": false,
  31. "navigationBarBackgroundColor": "#000000",
  32. "navigationBarTextStyle":"white"
  33. },
  34. "meta": {
  35. "auth": false
  36. }
  37. },
  38. {
  39. "path": "pages/user/user",
  40. "style": {
  41. "navigationBarTitleText": "我的",
  42. "enablePullDownRefresh": false
  43. },
  44. "meta": {
  45. "auth": false
  46. }
  47. },
  48. {
  49. "path": "pages/order/order",
  50. "style": {
  51. "navigationBarTitleText": "订单",
  52. "enablePullDownRefresh": false
  53. },
  54. "meta": {
  55. "auth": true
  56. }
  57. }
  58. ],
  59. "globalStyle": {
  60. "navigationBarTextStyle": "black",
  61. "navigationBarTitleText": "uni-app",
  62. "navigationStyle": "custom",//设置横屏
  63. "navigationBarBackgroundColor": "#F8F8F8",
  64. "backgroundColor": "#F8F8F8"
  65. },
  66. "tabBar": {
  67. "color": "#C0C4CC",
  68. "selectedColor": "#FFC107",
  69. "borderStyle": "black",
  70. "backgroundColor": "#ffffff",
  71. "height": "55px",
  72. "fontSize": "12px",
  73. "iconWidth": "28px",
  74. "list": [
  75. {
  76. "pagePath": "pages/index/index",
  77. "iconPath": "static/tabbar/tab-index.png",
  78. "selectedIconPath": "static/tabbar/tab-index-current.png",
  79. "text": "首页"
  80. },
  81. {
  82. "pagePath": "pages/user/user",
  83. "iconPath": "static/tabbar/tab-user.png",
  84. "selectedIconPath": "static/tabbar/tab-user-current.png",
  85. "text": "我的"
  86. }
  87. ]
  88. }
  89. }