dropDownData.js 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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/cloud@2x.png'),
  14. title: "飞码招聘",
  15. desc: "专注程序员技术招聘",
  16. href: jobUrl+'/?from=top_nav'
  17. }],
  18. },
  19. {
  20. title: "开发",
  21. titleEn: "Industry Solutions",
  22. list: [{
  23. icon: require('../../assets/img/header/new/project@2x.png'),
  24. title: "项目开发",
  25. desc: "一站式软件开发",
  26. href: siteUrl+'/type/service?from=index'
  27. }, {
  28. icon: require('../../assets/img/header/new/kaifain@2x.png'),
  29. title: "开发屋",
  30. desc: "全行业立体化解决方案平台",
  31. href: kaifainUrl
  32. } ],
  33. },
  34. {
  35. title: "更多",
  36. titleEn: "More",
  37. list: [
  38. // {
  39. // icon: require('../../assets/img/header/new/jinzhi@2x.png'),
  40. // title: "进制数据",
  41. // desc: "数据API交易平台",
  42. // href: "http://www.binstd.com/?from=proginn"
  43. // },
  44. {
  45. icon: require('../../assets/img/header/new/jishuin@2x.png'),
  46. title: "技术圈",
  47. desc: "最新行业动态",
  48. href: jishuinUrl
  49. } ],
  50. },
  51. ]
  52. }
  53. // jishuin@2x.png
  54. // job@2x.png
  55. // cloud@2x.png
  56. // project@2x.png
  57. // kaifain@2x.png
  58. // jinzhi@2x.png
  59. export default DropDownData;