| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- 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: jobUrl+'/?from=top_nav'
- }, {
- icon: require('../../assets/img/header/new/cloud@2x.png'),
- title: "云端工作",
- desc: "按月雇佣程序员",
- href: siteUrl+'/cloud?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;
|