app.config.ts 959 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. export default defineAppConfig({
  2. pages: [
  3. 'pages/login/index',
  4. 'pages/index/index',
  5. 'pages/attendance/index',
  6. 'pages/personal-info/index',
  7. 'pages/employment/index',
  8. 'pages/settings/index',
  9. 'pages/account-security/index',
  10. ],
  11. window: {
  12. backgroundTextStyle: 'light',
  13. navigationBarBackgroundColor: '#3b82f6',
  14. navigationBarTitleText: '人才小程序',
  15. navigationBarTextStyle: 'white',
  16. navigationStyle: 'custom'
  17. },
  18. tabBar: {
  19. custom: true,
  20. color: "#6b7280",
  21. selectedColor: "#3b82f6",
  22. backgroundColor: "#ffffff",
  23. list: [
  24. {
  25. pagePath: 'pages/index/index',
  26. text: '首页'
  27. },
  28. {
  29. pagePath: 'pages/attendance/index',
  30. text: '考勤'
  31. },
  32. {
  33. pagePath: 'pages/personal-info/index',
  34. text: '我的'
  35. },
  36. {
  37. pagePath: 'pages/settings/index',
  38. text: '更多'
  39. }
  40. ]
  41. },
  42. usingComponents: {}
  43. })