footer2.vue 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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><i class="logo"></i></dd>
  9. </dl>
  10. <dl>
  11. <dt>产品服务</dt>
  12. <dd @click="goExamPage">在线考试系统</dd>
  13. <dd @click="goPeixunPage">在线培训系统</dd>
  14. <dd @click="goKechengCusPage">课程定制开发</dd>
  15. <dd @click="goKechengPage">通用课程资源</dd>
  16. </dl>
  17. <dl>
  18. <dt>新闻资讯</dt>
  19. <dd @click="goaboutNews">行业新闻</dd>
  20. <dd @click="goaboutAnli">成功案例</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({path: '/product/exam'});
  64. },
  65. // 培训链接
  66. goPeixunPage(){
  67. this.$router.push({path: '/product/peixun'});
  68. },
  69. // 课程开发链接
  70. goKechengPage(){
  71. this.$router.push({path: '/product/courseResource'});
  72. },
  73. goKechengCusPage(){
  74. this.$router.push({path: '/product/courseCustom'});
  75. },
  76. // 关于帮助中心
  77. goaboutUs(){
  78. this.$router.push({ name: 'introduction' });
  79. },
  80. // 新闻
  81. goaboutNews(){
  82. this.$router.push({ name: 'news' });
  83. },
  84. // 案例
  85. goaboutAnli(){
  86. this.$router.push({ name: 'news' });
  87. },
  88. },
  89. }
  90. </script>