dropDownData.js 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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: jobUrl+'/?from=top_nav'
  12. }, {
  13. icon: require('../../assets/img/header/new/cloud@2x.png'),
  14. title: "云端工作",
  15. desc: "按月雇佣程序员",
  16. href: siteUrl+'/cloud?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. icon: require('../../assets/img/header/new/jinzhi@2x.png'),
  39. title: "进制数据",
  40. desc: "数据API交易平台",
  41. href: "http://www.binstd.com/?from=proginn"
  42. }, {
  43. icon: require('../../assets/img/header/new/jishuin@2x.png'),
  44. title: "技术圈",
  45. desc: "最新行业动态",
  46. href: jishuinUrl
  47. } ],
  48. },
  49. ]
  50. }
  51. // jishuin@2x.png
  52. // job@2x.png
  53. // cloud@2x.png
  54. // project@2x.png
  55. // kaifain@2x.png
  56. // jinzhi@2x.png
  57. export default DropDownData;