created () {
//      this.footerAuto();
      $(function() {
        footerAuto();
      })
      function footerAuto() {
        var _wh = $(window).height();
        var _dh = $(document).height();
        var _bh = $(document.body).height();
        if (_bh < _wh) {
          $(".footer").css({
            position: "fixed",
            bottom: "0",
            left: "0",
          })
        } else {
          $(".footer").css({
            position: "static",
            bottom: "auto",
            left: "auto",
          })
        }
      }
    }
Logo

前往低代码交流专区

更多推荐