| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- const DropDownData = (domainConfig) => {
- const { siteUrl, jishuinUrl, kaifainUrl, jobUrl,} = domainConfig
- return [
- {
- title: "工作",
- titleEn: "Freelance",
- list: [{
- icon: require('../../assets/img/header/new/job@2x.png'),
- title: "自由工作",
- desc: "远程工作、驻场工作",
- href: siteUrl+'/cloud?from=top_nav'
- }, {
- icon: require('../../assets/img/header/new/kaifain@2x.png'),
- title: "项目开发",
- desc: "一站式软件开发",
- href: siteUrl+'/type/service?from=index'
- }, {
- icon: require('../../assets/img/header/new/project@2x.png'),
- title: "人力外包",
- desc: "高效技术人力灵活用工",
- href: siteUrl+'/outsource/sitePublicity?from=top_nav'
- }],
- },
- {
- title: "服务",
- titleEn: "Service",
- list: [{
- icon: require('../../assets/img/header/new/work_down@2x.png'),
- title: "资源商城",
- desc: "各种源码资源任您挑选",
- href: siteUrl+'/works/?from=top_nav'
- }, {
- icon: require('../../assets/img/header/new/consult@2x.png'),
- title: "咨询服务",
- desc: "技术专家面对面咨询",
- href: siteUrl+'/consult/?from=top_nav'
- }, {
- icon: require('../../assets/img/header/new/skill@2x.png'),
- title: "客栈学院",
- desc: "程序员技术学院",
- href: siteUrl+'/learn/?from=top_nav'
- }, {
- icon: require('../../assets/img/header/new/kaifain2@2x.png'),
- title: "开源充电",
- desc: "程序员开源社区",
- href: siteUrl+'/opensource/?from=top_nav'
- }],
- },
- // {
- // title: "招聘",
- // titleEn: "Technical recruitment",
- // list: [{
- // icon: require('../../assets/img/header/new/cloud@2x.png'),
- // title: "飞码招聘",
- // desc: "专注程序员技术招聘",
- // href: jobUrl+'/?from=top_nav'
- // }],
- // },
- ]
- }
- // jishuin@2x.png
- // job@2x.png
- // cloud@2x.png
- // project@2x.png
- // kaifain@2x.png
- // jinzhi@2x.png
- export default DropDownData;
|