pages.json 989 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. "navigationStyle": "custom"
  11. }
  12. },
  13. {
  14. "path": "pages/complaints/index",
  15. "style": {
  16. "navigationBarTitleText": "质量安全投诉"
  17. }
  18. },
  19. {
  20. "path": "pages/results/index",
  21. "style": {
  22. "navigationBarTitleText": "结果页面"
  23. }
  24. },
  25. {
  26. "path": "pages/complaints/details/index",
  27. "style": {
  28. "navigationBarTitleText": "质量安全投诉详情"
  29. }
  30. }
  31. ],
  32. "globalStyle": {
  33. "navigationBarTextStyle": "black",
  34. "navigationBarTitleText": "修文农业云公共服务系统",
  35. "navigationBarBackgroundColor": "#FFFFFF",
  36. "backgroundColor": "#F7F8F9"
  37. }
  38. }