footer2.vue 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <!--无友情链接 footer-->
  2. <template>
  3. <div class="client-footer">
  4. <div class="client-container">
  5. <div class="contact-box">
  6. <div class="contact-left-box">
  7. <dl>
  8. <dt>产品服务</dt>
  9. <dd>考试平台</dd>
  10. <dd>培训平台</dd>
  11. <dd>课程开发</dd>
  12. </dl>
  13. <dl>
  14. <dt>关于栋科</dt>
  15. <dd>公司简介</dd>
  16. <dd>加入栋科</dd>
  17. <dd>联系我们</dd>
  18. </dl>
  19. <dl>
  20. <dt>帮助中心</dt>
  21. <dd>说明文档</dd>
  22. <dd>应用下载</dd>
  23. </dl>
  24. <dl>
  25. <dt>法律声明</dt>
  26. <dd>服务条款</dd>
  27. <dd>隐私声明</dd>
  28. <dd>知识维权</dd>
  29. </dl>
  30. <dl>
  31. <dt>关注我们</dt>
  32. <dd>微信公众号</dd>
  33. <dd>新浪微博</dd>
  34. </dl>
  35. </div>
  36. <div class="contact-right-box">
  37. <h3>400-052-2130</h3>
  38. <p>周一至周日9:00-18:00</p>
  39. <p>(仅收市话费)</p>
  40. <a href="http://p.qiao.baidu.com/cps/chat?siteId=11735491&amp;userId=10530011" target="_blank">联系客服</a>
  41. </div>
  42. </div>
  43. <h5>Copyright © 2019 llisoft.com All rights reserved 大连栋科软件工程有限公司 版权所有 辽ICP备09022904号-19</h5>
  44. </div>
  45. </div>
  46. </template>
  47. <script>
  48. import { mapState, mapGetters } from 'vuex';
  49. export default {
  50. name: 'mtaFooter',
  51. computed: {
  52. },
  53. methods: {
  54. },
  55. }
  56. </script>