app.json 1.2 KB

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