dropDownData.js 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. const DropDownData = (domainConfig) => {
  2. const { siteUrl, jishuinUrl, kaifainUrl, jobUrl,} = domainConfig
  3. return [
  4. {
  5. title: "服务",
  6. titleEn: "Technical manpower",
  7. list: [{
  8. icon: require('../../assets/img/header/new/job@2x.png'),
  9. title: "自由工作",
  10. desc: "远程工作、驻场工作",
  11. href: siteUrl+'/cloud?from=top_nav'
  12. }, {
  13. icon: require('../../assets/img/header/new/kaifain@2x.png'),
  14. title: "项目开发",
  15. desc: "一站式软件开发",
  16. href: siteUrl+'/type/service?from=index'
  17. }, {
  18. icon: require('../../assets/img/header/new/project@2x.png'),
  19. title: "人力外包",
  20. desc: "高效技术人力灵活用工",
  21. href: siteUrl+'/outsource/sitePublicity?from=top_nav'
  22. }],
  23. },
  24. // {
  25. // title: "招聘",
  26. // titleEn: "Technical recruitment",
  27. // list: [{
  28. // icon: require('../../assets/img/header/new/cloud@2x.png'),
  29. // title: "飞码招聘",
  30. // desc: "专注程序员技术招聘",
  31. // href: jobUrl+'/?from=top_nav'
  32. // }],
  33. // },
  34. ]
  35. }
  36. // jishuin@2x.png
  37. // job@2x.png
  38. // cloud@2x.png
  39. // project@2x.png
  40. // kaifain@2x.png
  41. // jinzhi@2x.png
  42. export default DropDownData;