pages.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "pages": [
  3. {
  4. "path" : "pages/home/home",
  5. "style" :
  6. {
  7. "navigationBarTitleText": "",
  8. "enablePullDownRefresh": false
  9. }
  10. },
  11. {
  12. "path" : "pages/edit/edit",
  13. "style" :
  14. {
  15. "navigationBarTitleText": "",
  16. "enablePullDownRefresh": false,
  17. "app-plus": {
  18. "titleNView": {
  19. "autoBackButton": false
  20. }
  21. }
  22. }
  23. }
  24. ],
  25. "globalStyle": {
  26. "navigationBarTextStyle": "black",
  27. "navigationBarTitleText": "uni-app",
  28. "navigationBarBackgroundColor": "#F8F8F8",
  29. "backgroundColor": "#F8F8F8",
  30. "app-plus": {
  31. "background": "#efeff4"
  32. },
  33. "pageOrientation": "landscape"
  34. },
  35. "condition" : { //模式配置,仅开发期间生效
  36. "current": 0, //当前激活的模式(list 的索引项)
  37. "list": [
  38. {
  39. "name": "", //模式名称
  40. "path": "", //启动页面,必选
  41. "query": "" //启动参数,在页面的onLoad函数里面得到
  42. }
  43. ]
  44. }
  45. }