pages.json 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/signIn/signIn",
  5. "style": {
  6. "navigationBarTitleText": "巡更签到打卡",
  7. "enablePullDownRefresh": false,
  8. "navigationBarBackgroundColor": "#D9EAFB",
  9. "onReachBottomDistance": 150
  10. }
  11. },
  12. {
  13. "path": "pages/home/home",
  14. "style": {
  15. "navigationBarTitleText": "签到",
  16. "enablePullDownRefresh": false,
  17. "navigationBarBackgroundColor": "#3D8EFE",
  18. "navigationBarTextStyle": "white"
  19. }
  20. },
  21. {
  22. "path": "pages/my/my",
  23. "style": {
  24. "navigationBarTitleText": "巡逻签到打卡",
  25. "enablePullDownRefresh": false,
  26. "navigationBarBackgroundColor": "#3D8EFE",
  27. "navigationBarTextStyle": "white"
  28. }
  29. },
  30. {
  31. "path": "pages/login/index",
  32. "style": {
  33. "navigationBarTitleText": "登录",
  34. "navigationStyle": "custom",
  35. "enablePullDownRefresh": false
  36. }
  37. },
  38. {
  39. "path": "pages/login/login",
  40. "style": {
  41. "navigationBarTitleText": "登录",
  42. "navigationStyle": "custom",
  43. "enablePullDownRefresh": false
  44. }
  45. },
  46. {
  47. "path": "pages/recordList/recordList",
  48. "style": {
  49. "navigationBarTitleText": "巡逻记录",
  50. "navigationBarBackgroundColor": "#3D8EFE",
  51. "navigationBarTextStyle": "white",
  52. "enablePullDownRefresh": false,
  53. "onReachBottomDistance": 150
  54. }
  55. }, {
  56. "path": "pages/my/myRenew/myRenew",
  57. "style": {
  58. "navigationBarTitleText": "更新巡更点信息",
  59. "enablePullDownRefresh": false,
  60. "navigationBarBackgroundColor": "#3D8EFE",
  61. "navigationBarTextStyle": "white",
  62. "onReachBottomDistance": 150
  63. }
  64. }, {
  65. "path": "pages/my/myRenewOk/myRenewOk",
  66. "style": {
  67. "navigationBarTitleText": "更新巡更点信息",
  68. "enablePullDownRefresh": false,
  69. "navigationBarBackgroundColor": "#3D8EFE",
  70. "navigationBarTextStyle": "white"
  71. }
  72. }, {
  73. "path": "pages/signIn/new_file",
  74. "style": {
  75. "navigationBarTitleText": "更新巡更点信息",
  76. "enablePullDownRefresh": false,
  77. "navigationBarBackgroundColor": "#3D8EFE",
  78. "navigationBarTextStyle": "white"
  79. }
  80. }
  81. ],
  82. "tabBar": {
  83. "selectedColor": "#3074FF",
  84. "color": "#B2BCCB",
  85. "list": [{
  86. "pagePath": "pages/signIn/signIn",
  87. "text": "首页",
  88. "iconPath": "./static/home.png",
  89. "selectedIconPath": "./static/home_cur.png"
  90. },
  91. {
  92. "pagePath": "pages/recordList/recordList",
  93. "text": "巡逻记录",
  94. "iconPath": "./static/list.png",
  95. "selectedIconPath": "./static/list_cur.png"
  96. },
  97. {
  98. "pagePath": "pages/my/my",
  99. "text": "我的",
  100. "iconPath": "./static/my.png",
  101. "selectedIconPath": "./static/my_cur.png"
  102. }
  103. ]
  104. },
  105. "globalStyle": {
  106. "navigationBarTextStyle": "black",
  107. "navigationBarTitleText": "uni-app",
  108. "navigationBarBackgroundColor": "#fff",
  109. "backgroundColor": "#F8F8F8"
  110. },
  111. "uniIdRouter": {}
  112. }