pages.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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. {
  30. "path" : "pages/admin/Kaoshi/list",
  31. "style" :
  32. {
  33. "navigationBarTitleText" : "考试列表"
  34. }
  35. },
  36. {
  37. "path" : "pages/admin/Kaoshi/exam",
  38. "style" :
  39. {
  40. "navigationBarTitleText" : "考试",
  41. "navigationStyle": "custom"
  42. }
  43. },
  44. {
  45. "path" : "pages/admin/Kecheng/list",
  46. "style" :
  47. {
  48. "navigationBarTitleText" : ""
  49. }
  50. }
  51. ],
  52. "tabBar": {
  53. "custom": true,
  54. "list": []
  55. },
  56. "globalStyle": {
  57. "navigationBarTextStyle": "black",
  58. "navigationBarTitleText": "麦塔软件",
  59. "navigationBarBackgroundColor": "#F8F8F8",
  60. "backgroundColor": "#F8F8F8",
  61. //禁止滑动返回
  62. "app-plus": {
  63. "popGesture": "none"
  64. }
  65. },
  66. "uniIdRouter": {},
  67. "condition" : { //模式配置,仅开发期间生效
  68. "current": 0, //当前激活的模式(list 的索引项)
  69. "list": [
  70. {
  71. "name": "login", //模式名称
  72. "path": "pages/Login/index", //启动页面,必选
  73. "query": "" //启动参数,在页面的onLoad函数里面得到
  74. }
  75. ]
  76. }
  77. }