pages.json 839 B

12345678910111213141516171819202122232425262728293031
  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/index/index",
  8. "style": {
  9. "navigationBarTitleText": "修文农业云公共服务系统"
  10. }
  11. }
  12. ],
  13. "globalStyle": {
  14. "navigationBarTextStyle": "black",
  15. "navigationBarTitleText": "农业云H5",
  16. "navigationBarBackgroundColor": "#FFFFFF",
  17. "backgroundColor": "#F7F8F9"
  18. },
  19. "tabBar": {
  20. "color": "#909399",
  21. "selectedColor": "#303133",
  22. "borderStyle": "black",
  23. "backgroundColor": "#FFFFF",
  24. "list": [{
  25. "pagePath": "pages/index/index",
  26. "iconPath": "static/index.png",
  27. "selectedIconPath": "static/index-selected.png",
  28. "text": "首页"
  29. }]
  30. }
  31. }