pages.json 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/Login/index",
  5. "style": {
  6. "navigationStyle": "custom"
  7. }
  8. },
  9. {
  10. "path" : "pages/admin/ShouYe/shouye",
  11. "style" :
  12. {
  13. "navigationBarTitleText" : "总部管理员/跑单员首页"
  14. }
  15. },
  16. {
  17. "path" : "pages/client/ShouYe/shouye",
  18. "style" :
  19. {
  20. "navigationBarTitleText" : "家政/考试人员首页"
  21. }
  22. },{
  23. "path" : "pages/admin/Jiazheng/index",
  24. "style" :
  25. {
  26. "navigationBarTitleText" : "家政"
  27. }
  28. },{
  29. "path" : "pages/admin/Jiazheng/jiazhengUserInfo",
  30. "style" :
  31. {
  32. "navigationBarTitleText" : "个人信息"
  33. }
  34. },{
  35. "path" : "pages/admin/Jiazheng/jiazhengUserManager",
  36. "style" :
  37. {
  38. "navigationBarTitleText" : "家政人员管理"
  39. }
  40. },
  41. {
  42. "path" : "pages/admin/Kaoshi/list",
  43. "style": {
  44. "navigationStyle": "custom"
  45. }
  46. },
  47. {
  48. "path" : "pages/admin/Kaoshi/exam",
  49. "style" :
  50. {
  51. "navigationBarTitleText" : "考试",
  52. "navigationStyle": "custom"
  53. }
  54. },
  55. {
  56. "path" : "pages/admin/Kecheng/list",
  57. "style" :
  58. {
  59. "navigationStyle": "custom"
  60. }
  61. },
  62. {
  63. "path" : "pages/demo/demo1",
  64. "style" :
  65. {
  66. "navigationBarTitleText" : "demo1",
  67. "navigationStyle": "custom"
  68. }
  69. },
  70. {
  71. "path" : "pages/admin/Kecheng/study",
  72. "style" :
  73. {
  74. "navigationStyle": "custom"
  75. }
  76. },
  77. {
  78. "path" : "pages/admin/Lianxi/list",
  79. "style" :
  80. {
  81. "navigationStyle": "custom"
  82. }
  83. },
  84. {
  85. "path" : "pages/admin/Lianxi/lianxi",
  86. "style" :
  87. {
  88. "navigationStyle": "custom"
  89. }
  90. }
  91. ],
  92. "tabBar": {
  93. "custom": true,
  94. "list": []
  95. },
  96. "globalStyle": {
  97. "navigationBarTextStyle": "black",
  98. "navigationBarTitleText": "麦塔软件",
  99. "navigationBarBackgroundColor": "#F8F8F8",
  100. "backgroundColor": "#F8F8F8",
  101. //禁止滑动返回
  102. "app-plus": {
  103. "popGesture": "none"
  104. }
  105. },
  106. "uniIdRouter": {},
  107. "condition" : { //模式配置,仅开发期间生效
  108. "current": 0, //当前激活的模式(list 的索引项)
  109. "list": [
  110. {
  111. "name": "login", //模式名称
  112. "path": "pages/Login/index", //启动页面,必选
  113. "query": "" //启动参数,在页面的onLoad函数里面得到
  114. }
  115. ]
  116. }
  117. }