footer.vue 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. <template>
  2. <div class="client-footer">
  3. <div class="client-container mta-hidden-xs">
  4. <div class="link-box">
  5. <h4>友情链接</h4>
  6. <div class="link-a-box">
  7. <a :href="item.url" v-for="(item,index) in requestData" :key="index">{{item.name}}</a>
  8. </div>
  9. </div>
  10. <div class="contact-box">
  11. <div class="contact-left-box">
  12. <dl>
  13. <dd><i class="logo"></i></dd>
  14. </dl>
  15. <dl>
  16. <dt>产品服务</dt>
  17. <dd @click="goExamPage">在线考试系统</dd>
  18. <dd @click="goPeixunPage">在线培训系统</dd>
  19. <dd @click="goKechengPage">课程定制开发</dd>
  20. <dd @click="goKechengPage">通用课程资源</dd>
  21. <div style="display: none">
  22. <a :href="`${baseUrl}/examsystem`"></a>
  23. <a :href="`${baseUrl}/trainsystem`"></a>
  24. <a :href="`${baseUrl}/courseware`"></a>
  25. <a :href="`${baseUrl}/introduction`"></a>
  26. </div>
  27. </dl>
  28. <dl>
  29. <dt>新闻资讯</dt>
  30. <dd @click="goaboutUs">行业新闻</dd>
  31. <dd @click="goaboutUs">成功案例</dd>
  32. </dl>
  33. <dl>
  34. <dt>联系我们</dt>
  35. <dd>
  36. 公司邮箱: service@llisoft.com
  37. </dd>
  38. <dd>
  39. 联系电话:400-0990-883
  40. </dd>
  41. <dd>
  42. 公司地址:大连市沙河口区数码路北段25号201室
  43. </dd>
  44. </dl>
  45. </div>
  46. <div class="contact-right-box">
  47. <div class="right-sw-box">
  48. <img :src="swTwoCodeImg" alt="商务合作扫微信"/>
  49. </div>
  50. </div>
  51. </div>
  52. <h5>版本所有 © 2021 大连青谷软件有限公司 备案号:辽ICP备15006970号-6</h5>
  53. </div>
  54. <div class="mta-hidden-sm phone-footer-box">
  55. <p>版本所有 © 大连青谷软件有限公司 </p>
  56. <a href="https://beian.miit.gov.cn/#/Integrated/index">备案号:辽ICP备15006970号-6</a>
  57. </div>
  58. </div>
  59. </template>
  60. <script>
  61. import {mapState, mapGetters} from 'vuex';
  62. export default {
  63. name: 'mtaFooter',
  64. computed: {
  65. baseUrl() {
  66. return this.getBaseUrl;
  67. },
  68. requestData() {
  69. return this.getFooterYouQingLianJie;
  70. },
  71. ...mapGetters(['getFooterYouQingLianJie','getBaseUrl']),
  72. },
  73. data() {
  74. return {
  75. swTwoCodeImg: require(`~/static/images/client/component/sw-two-code.png`),
  76. footerData: [
  77. {
  78. name: '首页',
  79. url: '/',
  80. },
  81. {
  82. name: '体验中心',
  83. url: '/tiyanCenter',
  84. },
  85. {
  86. name: '电话咨询',
  87. url: 'tel:400-099-0883',
  88. },
  89. {
  90. name: '在线咨询',
  91. url: 'https://p.qiao.baidu.com/cps/chat?siteId=17930048&userId=40179606&siteToken=e767a987c8404575246ab0084fb2c9bd',
  92. }
  93. ]
  94. }
  95. },
  96. methods: {
  97. goToPage(item) {
  98. window.location.href = item.url
  99. },
  100. // 考试链接
  101. goExamPage() {
  102. this.$router.push({name: 'examsystem'});
  103. },
  104. // 培训链接
  105. goPeixunPage() {
  106. this.$router.push({name: 'trainsystem'});
  107. },
  108. // 课程开发链接
  109. goKechengPage() {
  110. this.$router.push({name: 'courseware'});
  111. },
  112. // 关于帮助中心
  113. goaboutUs() {
  114. this.$router.push({name: 'introduction'});
  115. },
  116. },
  117. }
  118. </script>