app.config.ts 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. export default defineAppConfig({
  2. pages: [
  3. 'pages/yongren/dashboard/index',
  4. 'pages/yongren/talent/list/index',
  5. 'pages/yongren/talent/detail/index',
  6. 'pages/yongren/order/list/index',
  7. 'pages/yongren/order/detail/index',
  8. 'pages/yongren/statistics/index',
  9. 'pages/yongren/settings/index',
  10. // 原有小程序页面(企业用户专用)
  11. 'pages/profile/index',
  12. 'pages/login/index'
  13. ],
  14. window: {
  15. backgroundTextStyle: 'light',
  16. navigationBarBackgroundColor: '#3b82f6',
  17. navigationBarTitleText: '用人方小程序',
  18. navigationBarTextStyle: 'white',
  19. navigationStyle: 'custom'
  20. },
  21. tabBar: {
  22. custom: true,
  23. color: "#6b7280",
  24. selectedColor: "#3b82f6",
  25. backgroundColor: "#ffffff",
  26. list: [
  27. {
  28. pagePath: 'pages/yongren/dashboard/index',
  29. text: '首页'
  30. },
  31. {
  32. pagePath: 'pages/yongren/talent/list/index',
  33. text: '人才'
  34. },
  35. {
  36. pagePath: 'pages/yongren/order/list/index',
  37. text: '订单'
  38. },
  39. {
  40. pagePath: 'pages/yongren/statistics/index',
  41. text: '数据'
  42. },
  43. {
  44. pagePath: 'pages/profile/index',
  45. text: '设置'
  46. }
  47. ]
  48. },
  49. usingComponents: {}
  50. })