| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- const DropDownData = (domainConfig) => {
- const { siteUrl, jishuinUrl, kaifainUrl, jobUrl,} = domainConfig
- return [
- {
- title: "服务",
- titleEn: "Technical manpower",
- 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: "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;
|