app.config.js 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. export default {
  2. pages: [
  3. 'pages/punchClock/index',//打卡
  4. 'pages/applyDepart/index',//申请公出
  5. 'pages/egressDetails/index',//公出详情
  6. 'pages/login/index',//登录
  7. 'pages/examine/index',//审核
  8. // 'pages/staffDistribution/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/examine/index',
  22. text: '审核'
  23. },
  24. {
  25. iconPath: './image/egressUnSelect.png',
  26. selectedIconPath: './image/egressSelect.png',
  27. pagePath: 'pages/applyDepart/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. plugins: {
  43. chooseLocation: {
  44. version: "1.0.6",
  45. provider: "wx76a9a06e5b4e693e"
  46. }
  47. },
  48. permission: {
  49. "scope.userLocation": {
  50. desc: "你的位置信息将用于小程序定位"
  51. }
  52. }
  53. }