bk-magic-vue 2.4.15-beta.1 → 2.4.15-beta.3
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.
package/dist/bk-magic-vue.js
CHANGED
|
@@ -33878,7 +33878,7 @@
|
|
|
33878
33878
|
methods: {
|
|
33879
33879
|
handleInputChange: function handleInputChange(event) {
|
|
33880
33880
|
var $target = event.target;
|
|
33881
|
-
var value =
|
|
33881
|
+
var value = _parseInt$2($target.textContent, 10);
|
|
33882
33882
|
if (!value || value < 1 || value > this.total || value === this.current) return;
|
|
33883
33883
|
this.currentPage = value;
|
|
33884
33884
|
this.setSelection();
|
|
@@ -36124,6 +36124,9 @@
|
|
|
36124
36124
|
var root = document.querySelector('html');
|
|
36125
36125
|
removeClass$1(root, 'bk-sideslider-show');
|
|
36126
36126
|
removeResizeListener(this.$refs.content, this.handleContentResize);
|
|
36127
|
+
if (this.$el && this.$el.parentNode) {
|
|
36128
|
+
this.$el.parentNode.removeChild(this.$el);
|
|
36129
|
+
}
|
|
36127
36130
|
},
|
|
36128
36131
|
beforeDestroy: function beforeDestroy() {
|
|
36129
36132
|
this.isShow && this.popUid && popManager.hide(this.popUid);
|