pages.json 816 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "打卡结算",
  7. "enablePullDownRefresh": true
  8. }
  9. },
  10. {
  11. "path" : "pages/login/login",
  12. "style" :
  13. {
  14. "navigationBarTitleText" : "登录"
  15. }
  16. },
  17. {
  18. "path" : "pages/userInfo/userInfo",
  19. "style" :
  20. {
  21. "navigationBarTitleText" : "用户中心"
  22. }
  23. },
  24. {
  25. "path" : "pages/detail/detail",
  26. "style" :
  27. {
  28. "navigationBarTitleText" : "编辑"
  29. }
  30. }
  31. ],
  32. "globalStyle": {
  33. "navigationBarTextStyle": "black",
  34. "navigationBarTitleText": "uni-app",
  35. "navigationBarBackgroundColor": "#F8F8F8",
  36. "backgroundColor": "#F8F8F8",
  37. "navigationStyle": "custom"
  38. },
  39. "uniIdRouter": {}
  40. }