site.js 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. // 图片引入
  2. import logo from '/images/logo.png'
  3. import home from '/images/home.jpg'
  4. import Code from '/images/code.png'
  5. import Unit from '/images/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: '吉林省长春市硅谷西街156号',
  20. Copyright: 'Copyright©2007-2024 吉林省华欣数字科技股份有限公司 │ 吉ICP备14005689号',
  21. Company: '吉林省华欣数字科技股份有限公司',
  22. Code,
  23. Unit
  24. }
  25. // 菜单设置
  26. export const menuList = [
  27. { _id: '1', title: '首页', href: 'one', English: 'Home', type: '1' },
  28. { _id: '2', title: '信息发布', href: 'two', English: 'Information Release', type: '1' },
  29. { _id: '3', title: '创新中心', href: 'thr', English: 'News Information', type: '1' },
  30. { _id: '4', title: '信息检索', href: 'four', English: 'Expert Tank', type: '1' },
  31. { _id: '5', title: '双创活动', href: 'five', English: 'Authorized Operator', type: '1' },
  32. { _id: '6', title: '中试平台', href: 'six', English: 'Project Selection', type: '1' },
  33. { _id: '7', title: '服务支撑', href: 'seven', English: 'Innovation Competition', type: '1' },
  34. { _id: '8', title: '产业集群', href: 'eight', English: 'Innovation Competition', type: '1' },
  35. {
  36. _id: '9',
  37. title: '成果展示',
  38. href: 'nine',
  39. English: 'Innovation Competition',
  40. type: '1'
  41. },
  42. {
  43. _id: '10',
  44. title: '信息库',
  45. href: 'ten',
  46. English: 'Innovation Competition',
  47. type: '1'
  48. },
  49. { _id: '11', title: '孵化器', href: 'eleven', English: 'Achievement Display', type: '1' },
  50. {
  51. _id: '12',
  52. title: '产业孵化大脑',
  53. href: 'twelve',
  54. English: 'Achievement Display',
  55. type: '1'
  56. },
  57. {
  58. _id: '13',
  59. title: '行研产研',
  60. href: 'thirteen',
  61. English: 'Research Development',
  62. type: '1'
  63. }
  64. ]