footer.vue 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. <template>
  2. <div class="client-footer">
  3. <div class="client-container mta-hidden-xs">
  4. <div class="contact-box">
  5. <div class="contact-left-box">
  6. <dl>
  7. <dt>产品服务</dt>
  8. <dd @click="goExamPage">考试平台</dd>
  9. <dd @click="goPeixunPage">培训平台</dd>
  10. <dd @click="goKechengPage">课程开发</dd>
  11. </dl>
  12. <dl>
  13. <dt>关于栋科</dt>
  14. <dd @click="goaboutUs">公司简介</dd>
  15. <dd @click="goaboutUs">加入栋科</dd>
  16. <dd @click="goaboutUs">联系我们</dd>
  17. <dd @click="goHzs">城市合作商</dd>
  18. </dl>
  19. <dl>
  20. <dt>帮助中心</dt>
  21. <dd><a rel="nofollow"
  22. href="https://xzrnn7br7j.k.topthink.com/@mtavip/mta001.html"
  23. target="_blank">帮助文档</a></dd>
  24. <!--<dd><a rel="nofollow" href="https://cdnks.mtavip.com/a/register?flug=1" target="_blank">应用下载</a></dd>-->
  25. </dl>
  26. <!-- <dl>
  27. <dt>法律声明</dt>
  28. <dd>服务条款</dd>
  29. <dd>隐私声明</dd>
  30. <dd>知识维权</dd>
  31. </dl>-->
  32. <dl>
  33. <dt>关注我们</dt>
  34. <dd class="two-code-box">微信公众号<i class="two-dimensional-code"></i></dd>
  35. <!--<dd>新浪微博</dd>-->
  36. </dl>
  37. <dl v-if="hotList.length">
  38. <dt>热门推荐</dt>
  39. <div style="display: flex;flex-direction: column;justify-content: flex-start;flex-wrap: wrap;height: 80px">
  40. <dd style="margin-right: 10px;text-align: left" v-for="item in hotList" :key="item.iiId" @click="checkNews(item)">{{item.biaoqian}}</dd>
  41. </div>
  42. </dl>
  43. </div>
  44. <div class="contact-right-box">
  45. <div class="right-sw-box">
  46. <h4>商务合作微信</h4>
  47. <img :src="swTwoCodeImg" alt="商务合作扫微信"/>
  48. </div>
  49. <div style="vertical-align: top;">
  50. <h3>400-052-2130</h3>
  51. <p>周一至周日9:00-18:00</p>
  52. <a href="https://p.qiao.baidu.com/cps/chat?siteId=17930048&userId=40179606&siteToken=e767a987c8404575246ab0084fb2c9bd" target="_blank">联系客服</a>
  53. </div>
  54. </div>
  55. </div>
  56. <div class="link-box">
  57. <h4>友情链接</h4>
  58. <div class="link-a-box">
  59. <a :href="item.url" v-for="(item,index) in requestData" :key="index">{{item.name}}</a>
  60. </div>
  61. </div>
  62. <h5>Copyright © 2019 llisoft.com All rights reserved 大连栋科软件工程有限公司 版权所有 <a style="color: #B8B8BB"
  63. href="https://beian.miit.gov.cn/#/Integrated/index">
  64. 辽ICP备09022904号-18</a></h5>
  65. </div>
  66. <div class="mta-hidden-sm phone-footer-box">
  67. <p>Copyright © 2019 llisoft.com All rights reserved</p>
  68. <p>大连栋科软件工程有限公司 版权所有</p>
  69. <a href="https://beian.miit.gov.cn/#/Integrated/index">辽ICP备09022904号-18</a>
  70. </div>
  71. </div>
  72. </template>
  73. <script>
  74. import {mapState, mapGetters} from 'vuex';
  75. export default {
  76. name: 'mtaFooter',
  77. computed: {
  78. requestData() {
  79. return this.getFooterYouQingLianJie;
  80. },
  81. hotList() {
  82. return this.getHotList;
  83. },
  84. ...mapGetters(['getFooterYouQingLianJie','getHotList']),
  85. },
  86. data() {
  87. return {
  88. swTwoCodeImg: require(`~/static/images/client/component/sw-two-code.png`),
  89. footerData: [
  90. {
  91. name: '首页',
  92. url: '/',
  93. },
  94. {
  95. name: '体验中心',
  96. url: '/tiyanCenter',
  97. },
  98. {
  99. name: '电话咨询',
  100. url: 'tel:400-052-2130',
  101. },
  102. {
  103. name: '在线咨询',
  104. url: 'https://p.qiao.baidu.com/cps/chat?siteId=17930048&userId=40179606&siteToken=e767a987c8404575246ab0084fb2c9bd',
  105. }
  106. ]
  107. }
  108. },
  109. methods: {
  110. checkNews(item) {
  111. const opt = {
  112. id: item.code,
  113. };
  114. this.$router.push({ name: 'news-id', params: opt });
  115. },
  116. goToPage(item) {
  117. window.location.href = item.url
  118. },
  119. // 考试链接
  120. goExamPage() {
  121. this.$router.push({name: 'examsystem'});
  122. },
  123. // 培训链接
  124. goPeixunPage() {
  125. this.$router.push({name: 'trainsystem'});
  126. },
  127. // 课程开发链接
  128. goKechengPage() {
  129. this.$router.push({ path: '/courseware/synopsis' });
  130. },
  131. // 关于帮助中心
  132. goaboutUs() {
  133. this.$router.push({name: 'introduction'});
  134. },
  135. // 合作商
  136. goHzs(){
  137. this.$router.push({ name: 'urbanPartners' });
  138. },
  139. },
  140. }
  141. </script>