bk-magic-vue 2.5.8-beta.5 → 2.5.8-beta.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -31297,7 +31297,6 @@
31297
31297
  methods: {
31298
31298
  handleFixMessage: function handleFixMessage(isFixed) {
31299
31299
  this.isFixed = isFixed;
31300
- console.log('handleFixMessage', isFixed);
31301
31300
  if (isFixed) {
31302
31301
  this.stopCountDown();
31303
31302
  } else {
@@ -31312,13 +31311,11 @@
31312
31311
  var _this = this;
31313
31312
  if (this.delay > 0 && !this.isFixed) {
31314
31313
  this.countID = setTimeout(function () {
31315
- console.log('--Close');
31316
31314
  _this.visible && _this.close();
31317
31315
  }, this.delay);
31318
31316
  }
31319
31317
  },
31320
31318
  stopCountDown: function stopCountDown() {
31321
- console.log('--stopCountDown');
31322
31319
  clearTimeout(this.countID);
31323
31320
  },
31324
31321
  close: function close() {
@@ -40203,7 +40200,6 @@
40203
40200
  }
40204
40201
  setTimeout(function () {
40205
40202
  var tableHeight = _this2.tableHeight = _this2.table.$el.offsetHeight - _this2.paginationHeight;
40206
- console.warn("this.table.$el.offsetHeight: ".concat(_this2.table.$el.offsetHeight, " --- this.paginationHeight: ").concat(_this2.paginationHeight, " --- tableHeight: ").concat(tableHeight));
40207
40203
  var footerHeight = _this2.footerHeight = footerWrapper ? footerWrapper.offsetHeight : 0;
40208
40204
  _this2.bodyHeight = tableHeight - headerHeight - footerHeight + (footerWrapper ? 1 : 0);
40209
40205
  _this2.fixedBodyHeight = _this2.scrollX ? _this2.bodyHeight - _this2.gutterWidth : _this2.bodyHeight;
@@ -49118,7 +49114,6 @@
49118
49114
  },
49119
49115
  methods: {
49120
49116
  calcSize: function calcSize() {
49121
- console.log(this);
49122
49117
  var swiperSize = getElementSize(this.$refs.swiper);
49123
49118
  var swiperParentSize = getElementSize(this.$refs.swiper && this.$refs.swiper.parentElement);
49124
49119
  this.realWidth = +this.width > 0 ? this.width : swiperSize.width > 0 ? swiperSize.width : swiperParentSize.width;