app.config.js 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. export default {
  2. pages: [
  3. // 'pages/staffDistribution/index',//员工分布
  4. 'pages/punchClock/index',//打卡
  5. 'pages/examine/index',//审核
  6. 'pages/egressDetails/index',//公出详情
  7. 'pages/login/index',//登录
  8. 'pages/applyDepart/index',//申请公出
  9. 'pages/mybusiness/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/egressUnSelect.png',
  21. selectedIconPath: './image/egressSelect.png',
  22. pagePath: 'pages/applyDepart/index',
  23. text: '申请公出'
  24. },
  25. {
  26. iconPath: './image/examineUnSelect.png',
  27. selectedIconPath: './image/examineSelect.png',
  28. pagePath: 'pages/examine/index',
  29. text: '审核'
  30. },
  31. {
  32. iconPath: './image/my.png',
  33. selectedIconPath: './image/myselect.png',
  34. pagePath: 'pages/mybusiness/index',
  35. text: '我的'
  36. }],
  37. 'color': '#515151',
  38. 'selectedColor': '#56abe4',
  39. 'backgroundColor': '#fff',
  40. 'borderStyle': 'white'
  41. },
  42. window: {
  43. backgroundTextStyle: 'light',
  44. navigationBarBackgroundColor: '#fff',
  45. navigationBarTitleText: 'WeChat',
  46. navigationBarTextStyle: 'black',
  47. },
  48. requiredBackgroundModes: ['location'],
  49. requiredPrivateInfos: [
  50. "getLocation",
  51. "onLocationChange",
  52. "startLocationUpdate",
  53. ],
  54. plugins: {
  55. chooseLocation: {
  56. version: "1.0.8",
  57. provider: "wx76a9a06e5b4e693e"
  58. },
  59. },
  60. permission: {
  61. "scope.userLocation": {
  62. desc: "你的位置信息将用于小程序定位"
  63. }
  64. },
  65. "lazyCodeLoading": "requiredComponents"
  66. }