Footer.vue 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <template>
  2. <div id="lxfs">
  3. <footer class="site-footer">
  4. <div class="site-footer__upper">
  5. <div class="container">
  6. <div class="row">
  7. <div class="col-lg-3">
  8. <div class="footer-widget footer-widget__about">
  9. <span style="font-weight:bold">厦门祖儿科技</span>
  10. <p class="footer-widget__contact">联系电话</p>
  11. <p class="footer-widget__contact">
  12. <a href="tel:400-661-7777">400-661-7777</a>
  13. </p>
  14. <!-- /.footer-widget__contact -->
  15. </div>
  16. <!-- /.footer-widget -->
  17. </div>
  18. <!-- /.col-lg-2 -->
  19. <div
  20. class="col-lg-6 d-flex justify-content-between footer-widget__links-wrap"
  21. >
  22. <div class="footer-widget">
  23. <h3 class="footer-widget__title">上班时间</h3>
  24. <!-- /.footer-widget__title -->
  25. <ul class="footer-widget__links list-unstyled">
  26. <li>周一 - 周五</li>
  27. <li>8:30 - 17:30</li>
  28. </ul>
  29. <!-- /.footer-widget__links -->
  30. </div>
  31. <!-- /.footer-widget -->
  32. <div class="footer-widget">
  33. <h3 class="footer-widget__title">公司地址</h3>
  34. <!-- /.footer-widget__title -->
  35. <ul class="footer-widget__links list-unstyled">
  36. <li>福建省福州高新区乌龙江中大道7#</li>
  37. <li>创新园二期20号楼16层</li>
  38. </ul>
  39. <!-- /.footer-widget__links -->
  40. </div>
  41. <!-- /.footer-widget -->
  42. </div>
  43. <!-- /.col-lg-6 -->
  44. </div>
  45. <!-- /.row -->
  46. </div>
  47. <!-- /.container -->
  48. </div>
  49. <!-- /.site-footer__upper -->
  50. <div class="site-footer__bottom">
  51. <div class="container">
  52. <div class="inner-container text-center">
  53. <p>
  54. &copy;
  55. <a href="https://www.miit.gov.cn/" style="color: black;"
  56. >闽ICP备2021003467号-1</a
  57. >
  58. </p>
  59. <!-- /.site-footer__copy -->
  60. </div>
  61. <!-- /.inner-container -->
  62. </div>
  63. <!-- /.container -->
  64. </div>
  65. <!-- /.site-footer__bottom -->
  66. </footer>
  67. <a href="#" data-target="html" class="scroll-to-target scroll-to-top"
  68. ><i class="fa fa-angle-up"></i
  69. ></a>
  70. </div>
  71. </template>
  72. <script>
  73. export default {
  74. name: "Footer",
  75. mounted() {
  76. $(window).on("scroll", function() {
  77. if ($(".scroll-to-top").length) {
  78. var strickyScrollPos = 100;
  79. if ($(window).scrollTop() > strickyScrollPos) {
  80. $(".scroll-to-top").fadeIn(500);
  81. } else if ($(this).scrollTop() <= strickyScrollPos) {
  82. $(".scroll-to-top").fadeOut(500);
  83. }
  84. }
  85. });
  86. }
  87. };
  88. </script>
  89. <style scoped></style>