footer2.vue 3.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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. <dd @click="goZiyuanPage">通用课程资源</dd>
  13. </dl>
  14. <dl>
  15. <dt>帮助中心</dt>
  16. <dd><a rel="nofollow" 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" target="_blank">考试帮助文档</a></dd>
  17. <dd><a rel="nofollow" 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" target="_blank">培训帮助文档</a></dd>
  18. <!--<dd><a rel="nofollow" href="https://cdnks.mtavip.com/a/register?flug=1" target="_blank">应用下载</a></dd>-->
  19. </dl>
  20. <!--<dl>
  21. <dt>法律声明</dt>
  22. <dd>服务条款</dd>
  23. <dd>隐私声明</dd>
  24. <dd>知识维权</dd>
  25. </dl>-->
  26. <dl>
  27. <dt>关于我们</dt>
  28. <!--<dd class="two-code-box">微信公众号<i class="two-dimensional-code"></i></dd>-->
  29. <dd @click="goaboutUs">公司简介</dd>
  30. <dd @click="goaboutUs">联系我们</dd>
  31. </dl>
  32. </div>
  33. <div class="contact-right-box">
  34. <div class="right-sw-box">
  35. <h4>商务合作微信</h4>
  36. <img :src="swTwoCodeImg" alt="商务合作扫微信"/>
  37. </div>
  38. <div class="gs-js-box">
  39. <p>沈阳久创锐康科技有限公司</p>
  40. <p>公司邮箱:service_024@163.com</p>
  41. <p>联系电话:18642628327</p>
  42. <p style="margin-bottom: 0">公司地址:沈阳市和平区文体路4-2号602室</p>
  43. </div>
  44. <!--<div style="vertical-align: top;">
  45. <h3>400-052-2130</h3>
  46. <p>周一至周日9:00-18:00</p>
  47. <p>(仅收市话费)</p>
  48. <a href="http://p.qiao.baidu.com/cps/chat?siteId=11735491&amp;userId=10530011" target="_blank">联系客服</a>
  49. </div>-->
  50. </div>
  51. </div>
  52. <h5>版权所有 © 沈阳久创锐康科技有限公司 备案号:<a style="color: #B8B8BB" href="https://beian.miit.gov.cn/#/Integrated/index">辽ICP备2021010726号-2</a></h5>
  53. </div>
  54. <div class="mta-hidden-sm phone-footer-box">
  55. <p>Copyright © 2019 llisoft.com All rights reserved</p>
  56. <p>沈阳久创锐康公司 版权所有</p>
  57. <a href="https://beian.miit.gov.cn/#/Integrated/index">辽ICP备2021010726号-2</a>
  58. </div>
  59. </div>
  60. </template>
  61. <script>
  62. import { mapState, mapGetters } from 'vuex';
  63. export default {
  64. name: 'mtaFooter',
  65. computed: {
  66. },
  67. data() {
  68. return {
  69. swTwoCodeImg: require(`~/static/images/client/component/sw-two-code.jpg`),
  70. }
  71. },
  72. methods: {
  73. // 考试链接
  74. goExamPage(){
  75. this.$router.push({ name: 'examsystem' });
  76. },
  77. // 培训链接
  78. goPeixunPage(){
  79. this.$router.push({ name: 'trainsystem' });
  80. },
  81. // 课程定制开发
  82. goKechengPage() {
  83. this.$router.push({name: 'courseware'});
  84. },
  85. // 通用课程资源
  86. goZiyuanPage() {
  87. this.$router.push({name: 'courseResource'});
  88. },
  89. // 关于帮助中心
  90. goaboutUs(){
  91. this.$router.push({ name: 'introduction' });
  92. },
  93. },
  94. }
  95. </script>