app.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "pages": [
  3. "pages/home/home",
  4. "pages/daixjgk/daixjgk",
  5. "pages/beixWarehouse/beixWarehouse",
  6. "pages/filter/filter",
  7. "pages/warehouse/warehouse",
  8. "pages/systemSet/systemSet",
  9. "pages/clockIn/clockIn",
  10. "pages/popup/popup",
  11. "pages/index/index"
  12. ],
  13. "window": {
  14. "navigationBarTextStyle": "black",
  15. "navigationBarTitleText": "uni-app",
  16. "navigationBarBackgroundColor": "#cfddfc",
  17. "backgroundColor": "#F8F8F8"
  18. },
  19. "tabBar": {
  20. "color": "#7A7E83",
  21. "selectedColor": "#007AFF",
  22. "borderStyle": "black",
  23. "backgroundColor": "#F8F8F8",
  24. "list": [
  25. {
  26. "pagePath": "pages/home/home",
  27. "iconPath": "static/home.png",
  28. "selectedIconPath": "static/homeHL.png",
  29. "text": "首页"
  30. },
  31. {
  32. "pagePath": "pages/systemSet/systemSet",
  33. "iconPath": "static/set.png",
  34. "selectedIconPath": "static/setHL.png",
  35. "text": "系统设置"
  36. }
  37. ]
  38. },
  39. "entryPagePath": "pages/beixWarehouse/beixWarehouse",
  40. "permission": {
  41. "scope.userLocation": {
  42. "desc": "您的位置信息将用于定位打卡功能"
  43. }
  44. },
  45. "requiredPrivateInfos": [
  46. "getLocation"
  47. ],
  48. "usingComponents": {}
  49. }