| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- 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/cloud@2x.png'),
- title: "飞码招聘",
- desc: "专注程序员技术招聘",
- href: jobUrl+'/?from=top_nav'
- }],
- },
- {
- title: "开发",
- titleEn: "Industry Solutions",
- list: [{
- icon: require('../../assets/img/header/new/project@2x.png'),
- title: "项目开发",
- desc: "一站式软件开发",
- href: siteUrl+'/type/service?from=index'
- }, {
- icon: require('../../assets/img/header/new/kaifain@2x.png'),
- title: "开发屋",
- desc: "全行业立体化解决方案平台",
- href: kaifainUrl
- } ],
- },
- {
- title: "更多",
- titleEn: "More",
- list: [
- // {
- // icon: require('../../assets/img/header/new/jinzhi@2x.png'),
- // title: "进制数据",
- // desc: "数据API交易平台",
- // href: "http://www.binstd.com/?from=proginn"
- // },
- {
- icon: require('../../assets/img/header/new/jishuin@2x.png'),
- title: "技术圈",
- desc: "最新行业动态",
- href: jishuinUrl
- } ],
- },
- ]
- }
- // jishuin@2x.png
- // job@2x.png
- // cloud@2x.png
- // project@2x.png
- // kaifain@2x.png
- // jinzhi@2x.png
- export default DropDownData;
|