1
0

pages.json 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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. "navigationStyle": "custom",
  10. "enablePullDownRefresh": false
  11. }
  12. },
  13. {
  14. "path": "pages/index/index",
  15. "style": {
  16. "navigationStyle": "custom",
  17. "enablePullDownRefresh": false
  18. }
  19. },
  20. {
  21. "path": "pages/my/my",
  22. "style": {
  23. "navigationStyle": "custom",
  24. "enablePullDownRefresh": false
  25. }
  26. },
  27. {
  28. "path" : "pages/scanCode/scanCode",
  29. "style" :
  30. {
  31. "navigationStyle": "custom",
  32. "enablePullDownRefresh" : false
  33. }
  34. },
  35. {
  36. "path" : "pages/userInfo/userInfo",
  37. "style" :
  38. {
  39. "navigationStyle": "custom",
  40. "enablePullDownRefresh" : false
  41. }
  42. },
  43. {
  44. "path" : "pages/updatePassword/updatePassword",
  45. "style" :
  46. {
  47. "navigationStyle": "custom",
  48. "enablePullDownRefresh" : false
  49. }
  50. },
  51. {
  52. "path" : "pages/performanceList/performanceList",
  53. "style" :
  54. {
  55. "navigationStyle": "custom",
  56. "enablePullDownRefresh" : false
  57. }
  58. },
  59. {
  60. "path" : "pages/forgetPassword/forgetPassword",
  61. "style" :
  62. {
  63. "navigationStyle": "custom",
  64. "enablePullDownRefresh" : false
  65. }
  66. },
  67. {
  68. "path" : "pages/humanFace/humanFace",
  69. "style" :
  70. {
  71. "navigationBarTitleText" : "人脸管理"
  72. }
  73. },
  74. {
  75. "path" : "pages/ShootFace/ShootFace",
  76. "style" :
  77. {
  78. "navigationBarTitleText" : "拍摄"
  79. }
  80. }
  81. ],
  82. "tabBar": {
  83. "color": "#999999",
  84. "selectedColor": "#333333",
  85. "borderStyle": "white",
  86. "backgroundColor": "#ffffff",
  87. "list": [{
  88. "pagePath": "pages/index/index",
  89. "iconPath": "static/tabBarImg/dianzan.png",
  90. "selectedIconPath": "static/tabBarImg/dianzan_cur.png",
  91. "text": "服务"
  92. }, {
  93. "pagePath": "pages/my/my",
  94. "iconPath": "static/tabBarImg/me.png",
  95. "selectedIconPath": "static/tabBarImg/me_cur.png",
  96. "text": "我的"
  97. }]
  98. },
  99. "globalStyle": {
  100. "navigationBarTextStyle": "black",
  101. // "navigationBarTitleText": "加载中",
  102. "navigationBarBackgroundColor": "#FFE05C",
  103. "backgroundColor": "#FFE05C"
  104. },
  105. "uniIdRouter": {}
  106. }