pages.json 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. {
  2. "pages": [{
  3. "path": "pages/index/index",
  4. "style": {
  5. "enablePullDownRefresh": true
  6. }
  7. },
  8. // 退出系统提示页
  9. {
  10. "path": "pages/loginOutTip/loginOutTip",
  11. "style": {
  12. "navigationStyle": "custom"
  13. }
  14. },
  15. {
  16. "path": "pages/boundPhone/boundPhone",
  17. "style": {
  18. "navigationBarTitleText": "登录",
  19. "navigationBarBackgroundColor": "#FFFFFF",
  20. "navigationStyle": "default"
  21. }
  22. },
  23. // 课程
  24. {
  25. "path": "pages/course/list",
  26. "style": {
  27. "navigationStyle": "custom"
  28. }
  29. },
  30. // 录取通知书
  31. {
  32. "path": "pages/certificate/notice",
  33. "style": {}
  34. },
  35. // 争霸赛报名
  36. {
  37. "path": "pages/signup/signup",
  38. "style": {}
  39. },
  40. {
  41. "path": "pages/boundPhone/agreement",
  42. "style": {
  43. "navigationBarTitleText": "服务协议",
  44. "navigationBarBackgroundColor": "#FFFFFF",
  45. "navigationStyle": "default"
  46. }
  47. },
  48. {
  49. "path": "pages/index/upgrade",
  50. "style": {
  51. "navigationBarTitleText": "系统升级",
  52. "enablePullDownRefresh": false
  53. }
  54. },
  55. // 没有权限进入系统
  56. {
  57. "path": "pages/index/jurisdiction",
  58. "style": {
  59. "navigationBarTitleText": "",
  60. "enablePullDownRefresh": false
  61. }
  62. },
  63. // 授权头像昵称
  64. {
  65. "path" : "pages/information/information",
  66. "style" :
  67. {
  68. "navigationBarTitleText": "",
  69. "enablePullDownRefresh": false
  70. }
  71. }
  72. ],
  73. "globalStyle": {
  74. "navigationStyle": "custom",
  75. "navigationBarTextStyle": "black"
  76. },
  77. "condition": { //模式配置,仅开发期间生效
  78. "current": 0, //当前激活的模式(list 的索引项)
  79. "list": [
  80. // {
  81. // "name": "", //模式名称
  82. // "path": "pages/boundPhone/boundPhone", //启动页面,必选
  83. // "query": "" //启动参数,在页面的onLoad函数里面得到
  84. // }
  85. {
  86. "name": "", //模式名称
  87. "path": "pages/index/index", //启动页面,必选
  88. "query": "" //启动参数,在页面的onLoad函数里面得到
  89. }
  90. ]
  91. }
  92. }