site.js 1.6 KB

123456789101112131415161718192021222324252627282930313233343536
  1. // 图片引入
  2. import logo from '@/assets/logo.png'
  3. import home from '@/assets/home.jpg'
  4. import Code from '@/assets/code.png'
  5. import Unit from '@/assets/unit.png'
  6. // 网站基本设置
  7. export const siteInfo = {
  8. display: false,
  9. zhTitle: '新一代信息技术孵化平台',
  10. zhEnglish: 'Information Technology Incubation Platform',
  11. zhBrief: '方寸心间 创新无限',
  12. logoUrl: logo,
  13. videoUrl: home
  14. }
  15. // 网站底部信息
  16. export const footInfo = {
  17. Phone: '0431-81165166',
  18. Email: 'jlpstm@126.com',
  19. Address: '长春朝阳区前进大街1244号(吉林省科技厅科研园)',
  20. Copyright: 'Copyright©2007-2024 吉林省创新指导中心 │ 吉ICP备14005689号',
  21. Company: '长春市福瑞科技有限公司',
  22. Code,
  23. Unit
  24. }
  25. // 菜单设置
  26. export const menuList = [
  27. // { _id: '1', title: '首页', href: 'home', English: 'Home', type: '0' },
  28. { _id: '2', title: '政策新闻', href: 'news', English: 'Policy News', type: '0' },
  29. { _id: '3', title: '新闻资讯', href: 'brain', English: 'News Information', type: '0' },
  30. { _id: '4', title: '供需商城', href: 'demand', English: 'Demand Mall', type: '0' },
  31. { _id: '5', title: '专家智库', href: 'expert', English: 'Expert Tank', type: '0' },
  32. { _id: '6', title: '优质企业', href: 'company', English: 'Authorized Operator', type: '0' },
  33. { _id: '7', title: '项目精选', href: 'project', English: 'Project Selection', type: '0' },
  34. { _id: '8', title: '创新大赛', href: 'innovation', English: 'Innovation Competition', type: '0' },
  35. { _id: '9', title: '成果展示', href: 'achievement', English: 'Achievement Display', type: '0' }
  36. ]