footer2.vue 4.0 KB

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