pages.json 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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",
  8. "style": {
  9. "navigationBarTitleText": "登录",
  10. "navigationStyle": "custom"
  11. }
  12. },
  13. {
  14. "path": "pages/redirect",
  15. "style": {
  16. "navigationBarTitleText": "登录",
  17. "navigationStyle": "custom"
  18. }
  19. },
  20. {
  21. "path": "pages/tabbar/resultSquare",
  22. "style": {
  23. "navigationBarTitleText": "成果广场",
  24. "enablePullDownRefresh": true
  25. }
  26. },
  27. {
  28. "path": "pages/tabbar/caseMarket",
  29. "style": {
  30. "navigationBarTitleText": "案例集市",
  31. "enablePullDownRefresh": true
  32. }
  33. },
  34. {
  35. "path": "pages/tabbar/personalCenter",
  36. "style": {
  37. "navigationBarTitleText": "个人中心",
  38. "navigationStyle": "custom"
  39. }
  40. },
  41. {
  42. "path": "pages/back",
  43. "style": {
  44. "navigationBarTitleText": "返回",
  45. "navigationStyle": "custom"
  46. }
  47. }
  48. ],
  49. "globalStyle": {
  50. "navigationBarTextStyle": "black",
  51. "navigationBarTitleText": "demo",
  52. "navigationBarBackgroundColor": "#ffffff",
  53. "backgroundColor": "#F8F8F8"
  54. },
  55. "tabBar": {
  56. "color": "#4D4D4D",
  57. "selectedColor": "#E83A27",
  58. "borderStyle": "black",
  59. "backgroundColor": "#ffffff",
  60. "list": [{
  61. "pagePath": "pages/tabbar/resultSquare",
  62. "iconPath": "static/tabbar/resultSquare.png",
  63. "selectedIconPath": "static/tabbar/resultSquare_a.png",
  64. "text": "成果广场"
  65. },
  66. {
  67. "pagePath": "pages/tabbar/caseMarket",
  68. "iconPath": "static/tabbar/caseMarket.png",
  69. "selectedIconPath": "static/tabbar/caseMarket_a.png",
  70. "text": "案例集市"
  71. },
  72. {
  73. "pagePath": "pages/tabbar/personalCenter",
  74. "iconPath": "static/tabbar/personalCenter.png",
  75. "selectedIconPath": "static/tabbar/personalCenter_a.png",
  76. "text": "个人中心"
  77. }
  78. ]
  79. },
  80. "uniIdRouter": {}
  81. }