index.vue 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. <template>
  2. <div>
  3. <lucency-header :lang="lang" :page-key="pageKey"></lucency-header>
  4. <item-banner :title="'支持中心'" :sub-title="'需要我们为您提供些什么内容呢?'"></item-banner>
  5. <div class="conBox">
  6. <q-tab :headers="qTabs">
  7. <template v-slot:question>
  8. <support ></support>
  9. </template>
  10. <template v-slot:download>
  11. <downloads :downloads="downloadsType"></downloads>
  12. </template>
  13. </q-tab>
  14. </div>
  15. <default-footer :lang="lang"></default-footer>
  16. <site-bar wechat-src="/image/wechat.jpg"></site-bar>
  17. </div>
  18. </template>
  19. <script>
  20. import lucencyHeader from "~/components/header/lucencyHeader";
  21. import langMap from "@/map/langMap";
  22. export default {
  23. name: "index",
  24. props:['uLang'],
  25. components: { lucencyHeader },
  26. data(){
  27. return {
  28. lang: this.uLang?this.uLang:langMap.lang.cn,
  29. pageKey: 'support',
  30. qTabs: [
  31. {
  32. text: '技术支持',
  33. content: '技术支持',
  34. key: 'question'
  35. },
  36. {
  37. text: '下载中心',
  38. content: '下载相关技术资料',
  39. key: 'download'
  40. },
  41. ],
  42. downloadsType: [
  43. {
  44. title: "G8100",
  45. key: 1,
  46. subItems: [
  47. {
  48. icon: "doc",
  49. title: "4G低功耗模块G8100B硬件手册",
  50. url: "https://gpscore.net/",
  51. add_time: "1486538906"
  52. },
  53. {
  54. icon: "pdf",
  55. title: "4G低功耗模块G8100B硬件手册",
  56. url: "https://gpscore.net/",
  57. add_time: "1486538906"
  58. },
  59. {
  60. icon: "img",
  61. title: "4G低功耗模块G8100B硬件手册",
  62. url: "https://gpscore.net/",
  63. add_time: "1486538906"
  64. }
  65. ]
  66. },
  67. {
  68. title: "枪机摄像头",
  69. key: 2,
  70. subItems: [
  71. {
  72. icon: "doc",
  73. title: "4G低功耗模块G8100B硬件手册",
  74. url: "https://gpscore.net/",
  75. add_time: "1486538906"
  76. },
  77. {
  78. icon: "pdf",
  79. title: "4G低功耗模块G8100B硬件手册",
  80. url: "https://gpscore.net/",
  81. add_time: "1486538906"
  82. },
  83. {
  84. icon: "img",
  85. title: "4G低功耗模块G8100B硬件手册",
  86. url: "https://gpscore.net/",
  87. add_time: "1486538906"
  88. }
  89. ]
  90. }
  91. ]
  92. }
  93. },
  94. mounted() {
  95. this.$root.$on('changeLang',this.switchLang);
  96. // todo 从后台获取下载列表数据
  97. },
  98. methods:{
  99. switchLang(nextLang){
  100. if(nextLang){
  101. this.lang = nextLang;
  102. }else{
  103. if(this.lang === langMap.lang.cn){
  104. this.lang = langMap.lang.en
  105. }else{
  106. this.lang = langMap.lang.cn
  107. }
  108. }
  109. }
  110. },
  111. }
  112. </script>
  113. <style scoped>
  114. </style>