pages.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. {
  2. "entryPagePath": "pages/daixjgk/daixjgk",
  3. "pages": [
  4. {
  5. "path": "pages/home/home",
  6. "style": {
  7. "navigationBarTitleText": "首页"
  8. }
  9. },
  10. {
  11. "path": "pages/daixjgk/daixjgk",
  12. "style": {
  13. "navigationBarTitleText": "待选交割库"
  14. }
  15. },
  16. {
  17. "path": "pages/warehouse/warehouse",
  18. "style": {
  19. "navigationBarTitleText": "库区基本信息"
  20. }
  21. },
  22. {
  23. "path": "pages/systemSet/systemSet",
  24. "style": {
  25. "navigationBarTitleText": "系统设置"
  26. }
  27. },
  28. {
  29. "path": "pages/clockIn/clockIn",
  30. "style": {
  31. "navigationBarTitleText": "打卡信息"
  32. }
  33. },
  34. {
  35. "path": "pages/popup/popup",
  36. "style": {
  37. "navigationBarTitleText": "Popup 弹出层",
  38. "app-plus": {
  39. "softinputMode": "adjustResize"
  40. }
  41. }
  42. },
  43. {
  44. "path": "pages/index/index",
  45. "style": {
  46. "navigationBarTitleText": "uni-app"
  47. }
  48. }
  49. ],
  50. "tabBar": {
  51. "color": "#7A7E83",
  52. "selectedColor": "#007AFF",
  53. "borderStyle": "black",
  54. "backgroundColor": "#F8F8F8",
  55. "list": [
  56. {
  57. "pagePath": "pages/home/home",
  58. "iconPath": "static/home.png",
  59. "selectedIconPath": "static/homeHL.png",
  60. "text": "首页"
  61. },
  62. {
  63. "pagePath": "pages/systemSet/systemSet",
  64. "iconPath": "static/set.png",
  65. "selectedIconPath": "static/setHL.png",
  66. "text": "系统设置"
  67. }
  68. ]
  69. },
  70. "globalStyle": {
  71. "navigationBarTextStyle": "black",
  72. "navigationBarTitleText": "uni-app",
  73. "navigationBarBackgroundColor": "#cfddfc",
  74. "backgroundColor": "#F8F8F8"
  75. },
  76. "permission": {
  77. "scope.userLocation": {
  78. "desc": "你的位置信息将用于打卡功能"
  79. }
  80. },
  81. "requiredBackgroundModes": [
  82. "location" // 如果需要在后台获取位置信息,则添加此模式
  83. ],
  84. "requiredPrivateInfos": {
  85. "location": true // 声明应用将使用地理位置相关的API
  86. },
  87. "uniIdRouter": {}
  88. }