pages.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/login/index",
  5. "style": {
  6. "navigationBarTitleText": "地块管护",
  7. "navigationStyle": "custom"
  8. }
  9. },
  10. {
  11. "path": "pages/main/index",
  12. "style": {
  13. "navigationBarTitleText": "地块管护",
  14. "navigationStyle": "custom"
  15. }
  16. },
  17. {
  18. "path": "pages/receivedDetail/index",
  19. "style": {
  20. "navigationBarTitleText": "地块管护",
  21. "navigationStyle": "custom"
  22. }
  23. },
  24. {
  25. "path": "pages/receivedDetail2/index",
  26. "style": {
  27. "navigationBarTitleText": "要素一本账",
  28. "navigationStyle": "custom"
  29. }
  30. },
  31. {
  32. "path": "pages/nocheckDetail/index",
  33. "style": {
  34. "navigationBarTitleText": "地块管护",
  35. "navigationStyle": "custom"
  36. }
  37. }
  38. ],
  39. "globalStyle": {
  40. "navigationBarTextStyle": "black",
  41. "navigationBarTitleText": "uni-app",
  42. "navigationBarBackgroundColor": "#F8F8F8",
  43. "backgroundColor": "#F8F8F8"
  44. },
  45. "uniIdRouter": {},
  46. "condition": { //模式配置,仅开发期间生效
  47. "current": 0, //当前激活的模式(list 的索引项)
  48. "list": [{
  49. "name": "", //模式名称
  50. "path": "", //启动页面,必选
  51. "query": "" //启动参数,在页面的onLoad函数里面得到
  52. }]
  53. }
  54. }