pages.json 2.5 KB

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