footer.vue 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  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. <dd @click="goZiyuanPage">通用课程资源</dd>
  12. </dl>
  13. <dl>
  14. <dt>帮助中心</dt>
  15. <dd><a rel="nofollow"
  16. href="https://www.kancloud.cn/yhm-122130/mtaks2020/content/%E4%BA%8C%E7%BA%A7%E7%AE%A1%E7%90%86%E5%91%98%E8%AE%BE%E7%BD%AE%E5%8A%9F%E8%83%BD%E8%AF%B4%E6%98%8E.md"
  17. target="_blank">考试文档</a></dd>
  18. <dd><a rel="nofollow"
  19. href="https://www.kancloud.cn/yhm-122130/mtapx_new/content/%E4%BA%BA%E5%91%98%E7%AE%A1%E7%90%86%E5%8A%9F%E8%83%BD%E4%BB%8B%E7%BB%8D.md"
  20. target="_blank">培训文档</a></dd>
  21. <!--<dd><a rel="nofollow" href="https://cdnks.mtavip.com/a/register?flug=1" target="_blank">应用下载</a></dd>-->
  22. </dl>
  23. <!-- <dl>
  24. <dt>法律声明</dt>
  25. <dd>服务条款</dd>
  26. <dd>隐私声明</dd>
  27. <dd>知识维权</dd>
  28. </dl>-->
  29. <dl>
  30. <dt>关注我们</dt>
  31. <!--<dd class="two-code-box">微信公众号<i class="two-dimensional-code"></i></dd>-->
  32. <dd @click="goaboutUs">公司简介</dd>
  33. <dd @click="goaboutUs">联系我们</dd>
  34. </dl>
  35. </div>
  36. <div class="contact-right-box">
  37. <div class="right-sw-box">
  38. <h4>商务合作微信</h4>
  39. <img :src="swTwoCodeImg" alt="商务合作扫微信"/>
  40. </div>
  41. <div class="gs-js-box">
  42. <p>沈阳久创锐康科技有限公司</p>
  43. <p>公司邮箱:service_024@163.com</p>
  44. <p>联系电话:15842668230</p>
  45. <p style="margin-bottom: 0">公司地址:沈阳市和平区文体路4-2号602室</p>
  46. </div>
  47. <!--<div style="vertical-align: top;">
  48. <h3>400-052-2130</h3>
  49. <p>周一至周日9:00-18:00</p>
  50. <p>(仅收市话费)</p>
  51. <a href="http://p.qiao.baidu.com/cps/chat?siteId=11735491&amp;userId=10530011" target="_blank">联系客服</a>
  52. </div>-->
  53. </div>
  54. </div>
  55. <div class="link-box">
  56. <h4>友情链接</h4>
  57. <div class="link-a-box">
  58. <a :href="item.url" v-for="(item,index) in requestData" :key="index">{{item.name}}</a>
  59. </div>
  60. </div>
  61. <h5>版权所有 © 沈阳久创锐康科技有限公司 备案号:辽ICP备15006970号-X<a style="color: #B8B8BB"
  62. href="https://beian.miit.gov.cn/#/Integrated/index">
  63. 辽ICP备09022904号-18</a></h5>
  64. </div>
  65. <div class="mta-hidden-sm phone-footer-box">
  66. <p>Copyright © 2019 llisoft.com All rights reserved</p>
  67. <p>沈阳久创锐康公司 版权所有</p>
  68. <a href="https://beian.miit.gov.cn/#/Integrated/index">辽ICP备09022904号-18</a>
  69. </div>
  70. </div>
  71. </template>
  72. <script>
  73. import {mapState, mapGetters} from 'vuex';
  74. export default {
  75. name: 'mtaFooter',
  76. computed: {
  77. requestData() {
  78. return this.getFooterYouQingLianJie;
  79. },
  80. ...mapGetters(['getFooterYouQingLianJie']),
  81. },
  82. data() {
  83. return {
  84. swTwoCodeImg: require(`~/static/images/client/component/sw-two-code.jpg`),
  85. footerData: [
  86. {
  87. name: '首页',
  88. url: '/',
  89. },
  90. {
  91. name: '体验中心',
  92. url: '/tiyanCenter',
  93. },
  94. {
  95. name: '电话咨询',
  96. url: 'tel:400-052-2130',
  97. },
  98. {
  99. name: '在线咨询',
  100. url: 'http://p.qiao.baidu.com/cps/chat?siteId=11735491&amp;userId=10530011',
  101. }
  102. ]
  103. }
  104. },
  105. methods: {
  106. goToPage(item) {
  107. window.location.href = item.url
  108. },
  109. // 考试链接
  110. goExamPage() {
  111. this.$router.push({name: 'examsystem'});
  112. },
  113. // 培训链接
  114. goPeixunPage() {
  115. this.$router.push({name: 'trainsystem'});
  116. },
  117. // 课程定制开发
  118. goKechengPage() {
  119. this.$router.push({name: 'courseware'});
  120. },
  121. // 通用课程资源
  122. goZiyuanPage() {
  123. this.$router.push({name: 'courseResource'});
  124. },
  125. // 关于帮助中心
  126. goaboutUs() {
  127. this.$router.push({name: 'introduction'});
  128. },
  129. },
  130. }
  131. </script>