1
0

pages.json 1.5 KB

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