footer.vue 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  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;justify-content: flex-start;flex-wrap: wrap">
  40. <dd style="min-width: 30%" v-for="item in hotList" :key="item.iiId" @click="checkNews(item)">{{item.biaoqian}}</dd>
  41. <dd style="min-width: 30%" v-for="item in hotList" :key="item.iiId" @click="checkNews(item)">{{item.biaoqian}}</dd>
  42. </div>
  43. </dl>
  44. </div>
  45. <div class="contact-right-box">
  46. <div class="right-sw-box">
  47. <h4>商务合作微信</h4>
  48. <img :src="swTwoCodeImg" alt="商务合作扫微信"/>
  49. </div>
  50. <div style="vertical-align: top;">
  51. <h3>400-052-2130</h3>
  52. <p>周一至周日9:00-18:00</p>
  53. <a href="https://p.qiao.baidu.com/cps/chat?siteId=17930048&userId=40179606&siteToken=e767a987c8404575246ab0084fb2c9bd" target="_blank">联系客服</a>
  54. </div>
  55. </div>
  56. </div>
  57. <div class="link-box">
  58. <h4>友情链接</h4>
  59. <div class="link-a-box">
  60. <a :href="item.url" v-for="(item,index) in requestData" :key="index">{{item.name}}</a>
  61. </div>
  62. </div>
  63. <h5>Copyright © 2019 llisoft.com All rights reserved 大连栋科软件工程有限公司 版权所有 <a style="color: #B8B8BB"
  64. href="https://beian.miit.gov.cn/#/Integrated/index">
  65. 辽ICP备09022904号-18</a></h5>
  66. </div>
  67. <div class="mta-hidden-sm phone-footer-box">
  68. <p>Copyright © 2019 llisoft.com All rights reserved</p>
  69. <p>大连栋科软件工程有限公司 版权所有</p>
  70. <a href="https://beian.miit.gov.cn/#/Integrated/index">辽ICP备09022904号-18</a>
  71. </div>
  72. </div>
  73. </template>
  74. <script>
  75. import {mapState, mapGetters} from 'vuex';
  76. export default {
  77. name: 'mtaFooter',
  78. computed: {
  79. requestData() {
  80. return this.getFooterYouQingLianJie;
  81. },
  82. hotList() {
  83. return this.getHotList;
  84. },
  85. ...mapGetters(['getFooterYouQingLianJie','getHotList']),
  86. },
  87. data() {
  88. return {
  89. swTwoCodeImg: require(`~/static/images/client/component/sw-two-code.png`),
  90. footerData: [
  91. {
  92. name: '首页',
  93. url: '/',
  94. },
  95. {
  96. name: '体验中心',
  97. url: '/tiyanCenter',
  98. },
  99. {
  100. name: '电话咨询',
  101. url: 'tel:400-052-2130',
  102. },
  103. {
  104. name: '在线咨询',
  105. url: 'https://p.qiao.baidu.com/cps/chat?siteId=17930048&userId=40179606&siteToken=e767a987c8404575246ab0084fb2c9bd',
  106. }
  107. ]
  108. }
  109. },
  110. methods: {
  111. checkNews(item) {
  112. const opt = {
  113. id: item.code,
  114. };
  115. this.$router.push({ name: 'news-id', params: opt });
  116. },
  117. goToPage(item) {
  118. window.location.href = item.url
  119. },
  120. // 考试链接
  121. goExamPage() {
  122. this.$router.push({name: 'examsystem'});
  123. },
  124. // 培训链接
  125. goPeixunPage() {
  126. this.$router.push({name: 'trainsystem'});
  127. },
  128. // 课程开发链接
  129. goKechengPage() {
  130. this.$router.push({ path: '/courseware/synopsis' });
  131. },
  132. // 关于帮助中心
  133. goaboutUs() {
  134. this.$router.push({name: 'introduction'});
  135. },
  136. // 合作商
  137. goHzs(){
  138. this.$router.push({ name: 'urbanPartners' });
  139. },
  140. },
  141. }
  142. </script>