pages.json 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. {
  2. "tabBar": {
  3. "color": "#7A7E83",
  4. "selectedColor": "#ffaa00",
  5. "borderStyle": "black",
  6. "backgroundColor": "#ffffff",
  7. "list": [{
  8. "pagePath": "pages/index/index",
  9. "iconPath": "static/images/index.png",
  10. "selectedIconPath": "static/images/index-s.png",
  11. "text": "首页"
  12. },
  13. {
  14. "pagePath": "pages/my/index",
  15. "iconPath": "static/images/my.png",
  16. "selectedIconPath": "static/images/my-s.png",
  17. "text": "我的"
  18. }
  19. ]
  20. },
  21. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  22. {
  23. "path": "pages/index/index",
  24. "style": {
  25. "navigationBarTitleText": "首页"
  26. }
  27. },
  28. {
  29. "path": "pages/test/index",
  30. "style": {
  31. "navigationBarTitleText": "测试"
  32. // "enablePullDownRefresh": true,
  33. // "onReachBottomDistance": 100 //距离底部100像素时,触发加载更多功能
  34. }
  35. },
  36. {
  37. "path": "pages/login/index",
  38. "style": {
  39. "navigationBarTitleText": "登录"
  40. }
  41. },
  42. {
  43. "path": "pages/info/add",
  44. "style": {
  45. "navigationBarTitleText": "信息维护"
  46. // "enablePullDownRefresh": true,
  47. // "onReachBottomDistance": 100 //距离底部100像素时,触发加载更多功能
  48. }
  49. },
  50. {
  51. "path": "pages/info/add-files",
  52. "style": {
  53. "navigationBarTitleText": "老人信息维护"
  54. // "enablePullDownRefresh": true,
  55. // "onReachBottomDistance": 100 //距离底部100像素时,触发加载更多功能
  56. }
  57. },
  58. {
  59. "path": "pages/info/card",
  60. "style": {
  61. "navigationBarTitleText": "身份证识别"
  62. // "enablePullDownRefresh": true,
  63. // "onReachBottomDistance": 100 //距离底部100像素时,触发加载更多功能
  64. }
  65. },
  66. {
  67. "path": "pages/info/face",
  68. "style": {
  69. "navigationBarTitleText": "人脸识别"
  70. // "enablePullDownRefresh": true,
  71. // "onReachBottomDistance": 100 //距离底部100像素时,触发加载更多功能
  72. }
  73. },
  74. {
  75. "path": "pages/lr/base",
  76. "style": {
  77. "navigationBarTitleText": "基本信息"
  78. }
  79. }, {
  80. "path": "pages/lr/register",
  81. "style": {
  82. "navigationBarTitleText": "注册"
  83. }
  84. },
  85. {
  86. "path": "pages/lr/list",
  87. "style": {
  88. "navigationBarTitleText": "老人列表",
  89. "enablePullDownRefresh": true,
  90. "onReachBottomDistance": 100 //距离底部100像素时,触发加载更多功能
  91. }
  92. },
  93. {
  94. "path": "pages/lr/shxxList",
  95. "style": {
  96. "navigationBarTitleText": "老人信息审核列表",
  97. "enablePullDownRefresh": true,
  98. "onReachBottomDistance": 100 //距离底部100像素时,触发加载更多功能
  99. }
  100. },
  101. {
  102. "path": "pages/lr/eat",
  103. "style": {
  104. "navigationBarTitleText": "食堂点餐"
  105. }
  106. },
  107. {
  108. "path": "pages/my/index",
  109. "style": {
  110. "navigationBarTitleText": "我的"
  111. }
  112. }, {
  113. "path": "pages/my/updatePwd",
  114. "style": {
  115. "navigationBarTitleText": "修改密码"
  116. }
  117. }, {
  118. "path": "pages/protocol/yinsizhengce",
  119. "style": {
  120. "navigationBarTitleText": "隐私协议"
  121. }
  122. }, {
  123. "path": "pages/protocol/yonghuxieyi",
  124. "style": {
  125. "navigationBarTitleText": "用户协议"
  126. }
  127. }
  128. ],
  129. "globalStyle": {
  130. "navigationBarTextStyle": "black",
  131. "navigationBarTitleText": "uni-app",
  132. "navigationBarBackgroundColor": "#F8F8F8",
  133. "backgroundColor": "#F8F8F8",
  134. "rpxCalcMaxDeviceWidth": 960, // rpx 计算所支持的最大设备宽度,单位 px,默认值为 960
  135. "rpxCalcBaseDeviceWidth": 375, // rpx 计算使用的基准设备宽度,设备实际宽度超出 rpx 计算所支持的最大设备宽度时将按基准宽度计算,单位 px,默认值为 375
  136. "rpxCalcIncludeWidth": 750, // rpx 计算特殊处理的值,始终按实际的设备宽度计算,单位 rpx,默认值为 750
  137. "h5": {
  138. "titleNView": false
  139. }
  140. },
  141. "uniIdRouter": {}
  142. }