pages.json 528 B

12345678910111213141516171819202122
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "异常人员处置"
  7. }
  8. },
  9. {
  10. "path": "pages/index/success",
  11. "style": {
  12. "navigationBarTitleText": "异常人员处置"
  13. }
  14. }
  15. ],
  16. "globalStyle": {
  17. "navigationBarTextStyle": "black",
  18. "navigationBarTitleText": "异常人员处置",
  19. "navigationBarBackgroundColor": "#F8F8F8",
  20. "backgroundColor": "#F8F8F8"
  21. }
  22. }