data.ts 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. import zh from '@/assets/images/home/china@2x.png'
  2. import en from '@/assets/images/home/USA@2x.jpg'
  3. export const pcFooter = (t:any) => {
  4. return [
  5. {
  6. title: t('header.core_product'),
  7. list: [
  8. {
  9. text: t('header.sdsg'),
  10. link: 'Meta'
  11. },
  12. {
  13. text: t('header.Mega'),
  14. link: 'Mega'
  15. },
  16. {
  17. text: t('header.kankanMinion'),
  18. link: 'Minion'
  19. },
  20. {
  21. text: t('header.mallPro'),
  22. link: 'KanKan'
  23. }
  24. ]
  25. },
  26. {
  27. title: t('header.solutions'),
  28. list: [
  29. {
  30. text: t('header.solutionsExi'),
  31. link: 'solutions/smartCity'
  32. },
  33. {
  34. text: t('header.solutionsSubject'),
  35. link: 'solutions/museum'
  36. },
  37. {
  38. text: t('header.solutionsSec'),
  39. link: 'solutions/government'
  40. },
  41. {
  42. text: t('header.solutionsHouse'),
  43. link: 'solutions/property'
  44. },
  45. ]
  46. },
  47. {
  48. title: t('header.service'),
  49. list: [
  50. {
  51. text: t('header.serviceApp'),
  52. link: 'service/app/pro'
  53. }, {
  54. text: t('service.help'),
  55. link: 'service/use/help'
  56. },
  57. {
  58. text: t('header.serviceBaoxiu'),
  59. link: 'service/clause/pro'
  60. },
  61. ]
  62. },
  63. {
  64. title: t('header.about'),
  65. list: [
  66. {
  67. text: t('header.aboutCompany'),
  68. link: 'about'
  69. },
  70. {
  71. text: t('header.aboutNews'),
  72. link: 'news'
  73. },
  74. {
  75. text: t('header.aboutAgent'),
  76. link: 'distributor'
  77. }
  78. ]
  79. }
  80. ]
  81. }
  82. export const pcHeader = (t:any) => {
  83. return [
  84. { text: t('header.sdsg'), link: '/mall/meta' },
  85. { text: t('header.Mega'), link: '/mall/mega' },
  86. { text: t('header.kankanMinion'), link: '/mall/kankanMinion' },
  87. { text: t('header.mallPro'), link: '/mall/kankanPro' },
  88. { text: t('header.mallPeijian'), link: '/mall/zhijia',items: [
  89. {
  90. text: t('header.tripod'),
  91. link: '/mall/zhijia'
  92. },
  93. {
  94. text: t('header.USBdrive'),
  95. link: '/mall/USBdrive'
  96. },
  97. {
  98. text: t('header.Battery'),
  99. link: '/mall/Battery'
  100. },
  101. ] },
  102. { text: t('header.addService'), link: '/mall/member' }
  103. ]
  104. }
  105. export const languageList = [
  106. {
  107. name: '简体中文',
  108. img: zh,
  109. value: 'zh'
  110. },
  111. {
  112. name: 'English',
  113. img: en,
  114. value: 'en'
  115. }
  116. ]