app.config.js 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. export default {
  2. pages: [
  3. 'pages/punchClock/index', // 打卡
  4. 'pages/project/index', // 研发项目
  5. 'pages/login/index', // 登录
  6. 'pages/mybusiness/index', // 我的
  7. 'pages/detail/index', //项目详情
  8. 'pages/reclockin/index', // 重新打卡
  9. // 'pages/projectAdd/index',// 新增项目
  10. ],
  11. tabBar: {
  12. list: [
  13. {
  14. iconPath: './image/punchClockUnSelect.png',
  15. selectedIconPath: './image/punchClockSelect.png',
  16. pagePath: 'pages/punchClock/index',
  17. text: '研发打卡'
  18. },
  19. {
  20. iconPath: './image/examineUnSelect.png',
  21. selectedIconPath: './image/examineSelect.png',
  22. pagePath: 'pages/project/index',
  23. text: '研发项目'
  24. },
  25. {
  26. iconPath: './image/my.png',
  27. selectedIconPath: './image/myselect.png',
  28. pagePath: 'pages/mybusiness/index',
  29. text: '我的'
  30. }],
  31. 'color': '#515151',
  32. 'selectedColor': '#56abe4',
  33. 'backgroundColor': '#fff',
  34. 'borderStyle': 'white'
  35. },
  36. window: {
  37. backgroundTextStyle: 'light',
  38. navigationBarBackgroundColor: '#fff',
  39. navigationBarTitleText: 'WeChat',
  40. navigationBarTextStyle: 'black',
  41. },
  42. requiredBackgroundModes: ['location'],
  43. requiredPrivateInfos: [
  44. "getLocation",
  45. "onLocationChange",
  46. "startLocationUpdate",
  47. ],
  48. // plugins: {
  49. // chooseLocation: {
  50. // version: "1.0.10",
  51. // provider: "wx76a9a06e5b4e693e"
  52. // },
  53. // },
  54. // permission: {
  55. // "scope.userLocation": {
  56. // desc: "你的位置信息将用于小程序定位"
  57. // }
  58. // },
  59. "lazyCodeLoading": "requiredComponents",
  60. // "__usePrivacyCheck__": true,
  61. }