瀏覽代碼

修改备案号

wyling 3 年之前
父節點
當前提交
9d733c6a0f
共有 1 個文件被更改,包括 64 次插入40 次删除
  1. 64 40
      components/Footer.vue

+ 64 - 40
components/Footer.vue

@@ -6,66 +6,90 @@
           <div class="row">
             <div class="col-lg-3">
               <div class="footer-widget footer-widget__about">
-                <img src="/assets/images/resources/logo-dark.png" width="119" alt="" class="footer-widget__logo">
+                <img
+                  src="/assets/images/resources/logo-dark.png"
+                  width="119"
+                  alt=""
+                  class="footer-widget__logo"
+                />
                 <p class="footer-widget__contact">联系电话</p>
-                <p class="footer-widget__contact"><a href="tel:400-661-7777">400-661-7777</a></p>
+                <p class="footer-widget__contact">
+                  <a href="tel:400-661-7777">400-661-7777</a>
+                </p>
                 <!-- /.footer-widget__contact -->
-              </div><!-- /.footer-widget -->
-            </div><!-- /.col-lg-2 -->
-            <div class="col-lg-6 d-flex justify-content-between footer-widget__links-wrap">
+              </div>
+              <!-- /.footer-widget -->
+            </div>
+            <!-- /.col-lg-2 -->
+            <div
+              class="col-lg-6 d-flex justify-content-between footer-widget__links-wrap"
+            >
               <div class="footer-widget">
-                <h3 class="footer-widget__title">上班时间</h3><!-- /.footer-widget__title -->
+                <h3 class="footer-widget__title">上班时间</h3>
+                <!-- /.footer-widget__title -->
                 <ul class="footer-widget__links list-unstyled">
                   <li>周一 - 周五</li>
                   <li>9:00 - 18:00</li>
-                </ul><!-- /.footer-widget__links -->
-              </div><!-- /.footer-widget -->
+                </ul>
+                <!-- /.footer-widget__links -->
+              </div>
+              <!-- /.footer-widget -->
               <div class="footer-widget">
-                <h3 class="footer-widget__title">公司地址</h3><!-- /.footer-widget__title -->
+                <h3 class="footer-widget__title">公司地址</h3>
+                <!-- /.footer-widget__title -->
                 <ul class="footer-widget__links list-unstyled">
                   <li>福建省福州高新区乌龙江中大道7#</li>
                   <li>创新园二期20号楼16层</li>
-                </ul><!-- /.footer-widget__links -->
-              </div><!-- /.footer-widget -->
-            </div><!-- /.col-lg-6 -->
-
-          </div><!-- /.row -->
-        </div><!-- /.container -->
-      </div><!-- /.site-footer__upper -->
+                </ul>
+                <!-- /.footer-widget__links -->
+              </div>
+              <!-- /.footer-widget -->
+            </div>
+            <!-- /.col-lg-6 -->
+          </div>
+          <!-- /.row -->
+        </div>
+        <!-- /.container -->
+      </div>
+      <!-- /.site-footer__upper -->
       <div class="site-footer__bottom">
         <div class="container">
           <div class="inner-container text-center">
-            <p class="site-footer__copy">&copy; copyright 2020 by <a href="#">zzjs.com</a></p>
+            <p class="site-footer__copy">
+              &copy; 备案号 :
+              <a href="http://beian.miit.gov.cn/">闽ICP备2021003467号-1</a>
+            </p>
             <!-- /.site-footer__copy -->
-          </div><!-- /.inner-container -->
-        </div><!-- /.container -->
-      </div><!-- /.site-footer__bottom -->
+          </div>
+          <!-- /.inner-container -->
+        </div>
+        <!-- /.container -->
+      </div>
+      <!-- /.site-footer__bottom -->
     </footer>
 
-      <a href="#" data-target="html" class="scroll-to-target scroll-to-top"><i class="fa fa-angle-up"></i></a>
-
+    <a href="#" data-target="html" class="scroll-to-target scroll-to-top"
+      ><i class="fa fa-angle-up"></i
+    ></a>
   </div>
 </template>
 
 <script>
-    export default {
-      name: "Footer",
-      mounted() {
-
-        $(window).on('scroll', function () {
-          if ($('.scroll-to-top').length) {
-            var strickyScrollPos = 100;
-            if ($(window).scrollTop() > strickyScrollPos) {
-              $('.scroll-to-top').fadeIn(500);
-            } else if ($(this).scrollTop() <= strickyScrollPos) {
-              $('.scroll-to-top').fadeOut(500);
-            }
-          }
-        })
+export default {
+  name: "Footer",
+  mounted() {
+    $(window).on("scroll", function() {
+      if ($(".scroll-to-top").length) {
+        var strickyScrollPos = 100;
+        if ($(window).scrollTop() > strickyScrollPos) {
+          $(".scroll-to-top").fadeIn(500);
+        } else if ($(this).scrollTop() <= strickyScrollPos) {
+          $(".scroll-to-top").fadeOut(500);
+        }
       }
-    }
+    });
+  }
+};
 </script>
 
-<style scoped>
-
-</style>
+<style scoped></style>