1
0

pages.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. "navigationBarTitleText": "登录",
  10. "enablePullDownRefresh": false
  11. }
  12. },
  13. {
  14. "path": "pages/index/index",
  15. "style": {
  16. "navigationBarTitleText": "首页"
  17. }
  18. },
  19. {
  20. "path": "pages/my/my",
  21. "style": {
  22. "navigationBarTitleText": "我的",
  23. "enablePullDownRefresh": false
  24. }
  25. }
  26. ],
  27. "tabBar": {
  28. "color": "#999999",
  29. "selectedColor": "#333333",
  30. "borderStyle": "white",
  31. "backgroundColor": "#ffffff",
  32. "list": [{
  33. "pagePath": "pages/index/index",
  34. "iconPath": "static/tabBarImg/index.png",
  35. "selectedIconPath": "static/tabBarImg/index_cur.png",
  36. "text": "首页"
  37. }, {
  38. "pagePath": "pages/my/my",
  39. "iconPath": "static/tabBarImg/me.png",
  40. "selectedIconPath": "static/tabBarImg/me_cur.png",
  41. "text": "我的"
  42. }]
  43. },
  44. "globalStyle": {
  45. "navigationBarTextStyle": "black",
  46. "navigationBarTitleText": "加载中",
  47. "navigationBarBackgroundColor": "#FFE05C",
  48. "backgroundColor": "#FFE05C"
  49. },
  50. "uniIdRouter": {}
  51. }