1
0

pages.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. "tabBar": {
  53. "color": "#999999",
  54. "selectedColor": "#333333",
  55. "borderStyle": "white",
  56. "backgroundColor": "#ffffff",
  57. "list": [{
  58. "pagePath": "pages/index/index",
  59. "iconPath": "static/tabBarImg/dianzan.png",
  60. "selectedIconPath": "static/tabBarImg/dianzan_cur.png",
  61. "text": "服务"
  62. }, {
  63. "pagePath": "pages/my/my",
  64. "iconPath": "static/tabBarImg/me.png",
  65. "selectedIconPath": "static/tabBarImg/me_cur.png",
  66. "text": "我的"
  67. }]
  68. },
  69. "globalStyle": {
  70. "navigationBarTextStyle": "black",
  71. // "navigationBarTitleText": "加载中",
  72. "navigationBarBackgroundColor": "#FFE05C",
  73. "backgroundColor": "#FFE05C"
  74. },
  75. "uniIdRouter": {}
  76. }