pages.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. "tabBar": {
  29. "color": "#999999",
  30. "selectedColor": "#333333",
  31. "borderStyle": "white",
  32. "backgroundColor": "#ffffff",
  33. "list": [{
  34. "pagePath": "pages/index/index",
  35. "iconPath": "static/tabBarImg/dianzan.png",
  36. "selectedIconPath": "static/tabBarImg/dianzan_cur.png",
  37. "text": "服务"
  38. }, {
  39. "pagePath": "pages/my/my",
  40. "iconPath": "static/tabBarImg/me.png",
  41. "selectedIconPath": "static/tabBarImg/me_cur.png",
  42. "text": "我的"
  43. }]
  44. },
  45. "globalStyle": {
  46. "navigationBarTextStyle": "black",
  47. "navigationBarTitleText": "加载中",
  48. "navigationBarBackgroundColor": "#FFE05C",
  49. "backgroundColor": "#FFE05C"
  50. },
  51. "uniIdRouter": {}
  52. }