app.json 1.1 KB

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