app.config.ts 1.2 KB

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