pages.json 852 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/login",
  5. "style": {
  6. "navigationBarTitleText": "登录页面"
  7. }
  8. },
  9. {
  10. "path": "pages/index/index",
  11. "style": {
  12. "navigationBarTitleText": "处置情况分析"
  13. }
  14. },
  15. {
  16. "path": "pages/detail/detail",
  17. "style": {
  18. "navigationBarTitleText": "处置人员详情"
  19. }
  20. },
  21. {
  22. "path": "pages/detail/mark",
  23. "style": {
  24. "navigationBarTitleText": "异常人员处置"
  25. }
  26. },
  27. {
  28. "path": "pages/detail/success",
  29. "style": {
  30. "navigationBarTitleText": "处置成功"
  31. }
  32. }
  33. ],
  34. "globalStyle": {
  35. "navigationBarTextStyle": "black",
  36. "navigationBarTitleText": "处置情况分析",
  37. "navigationBarBackgroundColor": "#FFFFFF",
  38. "backgroundColor": "#FFFFFF"
  39. }
  40. }