footer2.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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. <dd><img src="#"></dd>
  9. </dl>
  10. <dl>
  11. <dt>产品服务</dt>
  12. <dd @click="goExamPage">在线考试系统</dd>
  13. <dd @click="goPeixunPage">在线培训系统</dd>
  14. <dd @click="goKechengPage">课程定制开发</dd>
  15. <dd @click="goKechengPage">通用课程资源</dd>
  16. </dl>
  17. <dl>
  18. <dt>新闻资讯</dt>
  19. <dd @click="goaboutUs">行业新闻</dd>
  20. <dd @click="goaboutUs">成功案例</dd>
  21. </dl>
  22. <dl>
  23. <dt>联系我们</dt>
  24. <dd>
  25. 公司邮箱: service@llisoft.com
  26. </dd>
  27. <dd>
  28. 联系电话:400-0990-883
  29. </dd>
  30. <dd>
  31. 公司地址:大连市沙河口区数码路北段25号201室
  32. </dd>
  33. </dl>
  34. </div>
  35. <div class="contact-right-box">
  36. <div class="right-sw-box">
  37. <img :src="swTwoCodeImg" alt="商务合作扫微信"/>
  38. </div>
  39. </div>
  40. </div>
  41. <h5>版本所有 © 2021 大连青谷软件有限公司 备案号:辽ICP备15006970号-6</h5>
  42. </div>
  43. <div class="mta-hidden-sm phone-footer-box">
  44. <p>版本所有 © 大连青谷软件有限公司</p>
  45. <a href="https://beian.miit.gov.cn/#/Integrated/index">备案号:辽ICP备15006970号-6</a>
  46. </div>
  47. </div>
  48. </template>
  49. <script>
  50. import { mapState, mapGetters } from 'vuex';
  51. export default {
  52. name: 'mtaFooter',
  53. computed: {
  54. },
  55. data() {
  56. return {
  57. swTwoCodeImg: require(`~/static/images/client/component/sw-two-code.png`),
  58. }
  59. },
  60. methods: {
  61. // 考试链接
  62. goExamPage(){
  63. this.$router.push({ name: 'examsystem' });
  64. },
  65. // 培训链接
  66. goPeixunPage(){
  67. this.$router.push({ name: 'trainsystem' });
  68. },
  69. // 课程开发链接
  70. goKechengPage(){
  71. this.$router.push({ name: 'courseware' });
  72. },
  73. // 关于帮助中心
  74. goaboutUs(){
  75. this.$router.push({ name: 'introduction' });
  76. },
  77. },
  78. }
  79. </script>