app.config.js 1.5 KB

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