pages.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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. "navigationBarTitleText" : ""
  60. }
  61. },
  62. {
  63. "path" : "pages/demo/demo1",
  64. "style" :
  65. {
  66. "navigationBarTitleText" : "demo1",
  67. "navigationStyle": "custom"
  68. }
  69. }
  70. ],
  71. "tabBar": {
  72. "custom": true,
  73. "list": []
  74. },
  75. "globalStyle": {
  76. "navigationBarTextStyle": "black",
  77. "navigationBarTitleText": "麦塔软件",
  78. "navigationBarBackgroundColor": "#F8F8F8",
  79. "backgroundColor": "#F8F8F8",
  80. //禁止滑动返回
  81. "app-plus": {
  82. "popGesture": "none"
  83. }
  84. },
  85. "uniIdRouter": {},
  86. "condition" : { //模式配置,仅开发期间生效
  87. "current": 0, //当前激活的模式(list 的索引项)
  88. "list": [
  89. {
  90. "name": "login", //模式名称
  91. "path": "pages/Login/index", //启动页面,必选
  92. "query": "" //启动参数,在页面的onLoad函数里面得到
  93. }
  94. ]
  95. }
  96. }