pages.json 900 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "uni-app"
  7. }
  8. },
  9. {
  10. "path": "pages/my/index",
  11. "style": {
  12. "navigationBarTitleText": "我的",
  13. "enablePullDownRefresh": false
  14. }
  15. }
  16. ],
  17. "globalStyle": {
  18. "navigationBarTextStyle": "black",
  19. "navigationBarTitleText": "uni-app",
  20. "navigationBarBackgroundColor": "#F8F8F8",
  21. "backgroundColor": "#F8F8F8"
  22. },
  23. "tabBar":{
  24. "color": "#7A7E83",
  25. "selectedColor": "#3cc51f",
  26. "borderStyle": "black",
  27. "backgroundColor": "#ffffff",
  28. "list": [{
  29. "pagePath": "pages/index/index",
  30. "iconPath": "",
  31. "selectedIconPath": "",
  32. "text": "工作台"
  33. }, {
  34. "pagePath": "pages/my/index",
  35. "iconPath": "",
  36. "selectedIconPath": "",
  37. "text": "我的"
  38. }]
  39. },
  40. "uniIdRouter": {}
  41. }