dropDownData.js 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. const DropDownData = (domainConfig) => {
  2. const { siteUrl, jishuinUrl, kaifainUrl, jobUrl,} = domainConfig
  3. return [
  4. {
  5. title: "工作",
  6. titleEn: "Freelance",
  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: "Service",
  27. list: [{
  28. icon: require('../../assets/img/header/new/work_down@2x.png'),
  29. title: "资源商城",
  30. desc: "各种源码资源任您挑选",
  31. href: siteUrl+'/works/?from=top_nav'
  32. }, {
  33. icon: require('../../assets/img/header/new/consult@2x.png'),
  34. title: "咨询服务",
  35. desc: "技术专家面对面咨询",
  36. href: siteUrl+'/consult/?from=top_nav'
  37. }, {
  38. icon: require('../../assets/img/header/new/skill@2x.png'),
  39. title: "客栈学院",
  40. desc: "程序员技术学院",
  41. href: siteUrl+'/learn/?from=top_nav'
  42. }, {
  43. icon: require('../../assets/img/header/new/kaifain2@2x.png'),
  44. title: "开源充电",
  45. desc: "程序员开源社区",
  46. href: siteUrl+'/opensource/?from=top_nav'
  47. }],
  48. },
  49. // {
  50. // title: "招聘",
  51. // titleEn: "Technical recruitment",
  52. // list: [{
  53. // icon: require('../../assets/img/header/new/cloud@2x.png'),
  54. // title: "飞码招聘",
  55. // desc: "专注程序员技术招聘",
  56. // href: jobUrl+'/?from=top_nav'
  57. // }],
  58. // },
  59. ]
  60. }
  61. // jishuin@2x.png
  62. // job@2x.png
  63. // cloud@2x.png
  64. // project@2x.png
  65. // kaifain@2x.png
  66. // jinzhi@2x.png
  67. export default DropDownData;