app.config.js 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. export default {
  2. pages: [
  3. 'pages/mybusiness/index', // 我的公出
  4. 'pages/login/index',// 登录
  5. 'pages/applyReimbursement/index',// 申请报销
  6. 'pages/accountFrom/index', // 添加报销数据
  7. 'pages/drafts/index', // 报销提交
  8. 'pages/dataindex/index', // 数据索引
  9. 'pages/draftsdetail/index', // 报销详情
  10. 'pages/recordlist/index', // 报销记录
  11. 'pages/myinfo/index', // 我的账户
  12. ],
  13. tabBar: {
  14. list: [
  15. {
  16. iconPath: './image/my.png',
  17. selectedIconPath: './image/myselect.png',
  18. pagePath: 'pages/mybusiness/index',
  19. text: '列表'
  20. },
  21. {
  22. iconPath: './image/egressUnSelect.png',
  23. selectedIconPath: './image/egressUnSelect.png',
  24. pagePath: 'pages/applyReimbursement/index',
  25. text: '申请报销'
  26. },
  27. {
  28. iconPath: './image/my.png',
  29. selectedIconPath: './image/myselect.png',
  30. pagePath: 'pages/recordlist/index',
  31. text: '报销记录'
  32. },
  33. {
  34. iconPath: './image/my.png',
  35. selectedIconPath: './image/myselect.png',
  36. pagePath: 'pages/myinfo/index',
  37. text: '我的'
  38. },
  39. ],
  40. 'color': '#515151',
  41. 'selectedColor': '#56abe4',
  42. 'backgroundColor': '#fff',
  43. 'borderStyle': 'white'
  44. },
  45. window: {
  46. backgroundTextStyle: 'light',
  47. navigationBarBackgroundColor: '#fff',
  48. navigationBarTitleText: 'WeChat',
  49. navigationBarTextStyle: 'black',
  50. },
  51. "lazyCodeLoading": "requiredComponents"
  52. }