pages.json 2.3 KB

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