pages.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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/login",
  8. "style" :
  9. {
  10. "navigationBarTitleText": "",
  11. "enablePullDownRefresh": false
  12. }
  13. }
  14. ,{
  15. "path": "pages/index/index",
  16. "style": {
  17. "navigationBarTitleText": "物业"
  18. }
  19. }
  20. ,{
  21. "path" : "pages/main/main",
  22. "style" :
  23. {
  24. "navigationBarTitleText": "",
  25. "enablePullDownRefresh": false
  26. }
  27. }
  28. ],
  29. "globalStyle": {
  30. "navigationBarTextStyle": "black",
  31. "navigationBarTitleText": "共享车位",
  32. "navigationBarBackgroundColor": "#F8F8F8",
  33. "backgroundColor": "#F8F8F8",
  34. "navigationStyle":"custom"
  35. },
  36. "tabBar": {
  37. "color": "#333333",
  38. "selectedColor": "#fc6035",
  39. "borderStyle": "black",
  40. "fontSize": "11",
  41. "backgroundColor": "#ffffff",
  42. "list": [
  43. {
  44. "pagePath": "pages/index/index",
  45. "iconPath": "static/tab/index.png",
  46. "selectedIconPath": "static/tab/index-H.png",
  47. "text": "首页"
  48. },
  49. {
  50. "pagePath": "pages/main/main",
  51. "iconPath": "static/tab/mine.png",
  52. "selectedIconPath": "static/tab/mine-H.png",
  53. "text": "我的"
  54. }
  55. ]
  56. }
  57. }