mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
fix lint
This commit is contained in:
parent
3a1fca4953
commit
c45822b400
@ -19,7 +19,6 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import Popup from 'packages/popup';
|
import Popup from 'packages/popup';
|
||||||
import PopupManager from 'src/mixins/popup/popup-manager';
|
|
||||||
|
|
||||||
const CANCEL_TEXT = '取消';
|
const CANCEL_TEXT = '取消';
|
||||||
const CONFIRM_TEXT = '确认';
|
const CONFIRM_TEXT = '确认';
|
||||||
|
@ -57,7 +57,7 @@ export default {
|
|||||||
|
|
||||||
beforeMount() {
|
beforeMount() {
|
||||||
if (this.transition !== 'popup-fade') {
|
if (this.transition !== 'popup-fade') {
|
||||||
this.currentTransition = `popup-slide-${ this.position }`;
|
this.currentTransition = `popup-slide-${this.position}`;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -74,9 +74,9 @@ export default {
|
|||||||
value(val) {
|
value(val) {
|
||||||
if (val) {
|
if (val) {
|
||||||
if (this.opening) return;
|
if (this.opening) return;
|
||||||
|
|
||||||
this.open();
|
this.open();
|
||||||
} else {
|
} else {
|
||||||
|
if (this.closing) return;
|
||||||
this.close();
|
this.close();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -125,13 +125,18 @@ export default {
|
|||||||
this.closing = false;
|
this.closing = false;
|
||||||
}
|
}
|
||||||
PopupManager.openModal(this._popupId, PopupManager.nextZIndex(), dom);
|
PopupManager.openModal(this._popupId, PopupManager.nextZIndex(), dom);
|
||||||
|
|
||||||
|
// 如果滚动时需要锁定
|
||||||
if (props.lockOnScroll) {
|
if (props.lockOnScroll) {
|
||||||
// 将原来的`bodyOverflow`和`bodyPaddingRight`存起来
|
// 将原来的`bodyOverflow`和`bodyPaddingRight`存起来
|
||||||
if (!this.bodyOverflow) {
|
if (!this.bodyOverflow) {
|
||||||
this.bodyPaddingRight = document.body.style.paddingRight;
|
this.bodyPaddingRight = document.body.style.paddingRight;
|
||||||
this.bodyOverflow = document.body.style.overflow;
|
this.bodyOverflow = document.body.style.overflow;
|
||||||
}
|
}
|
||||||
|
|
||||||
scrollBarWidth = getScrollBarWidth();
|
scrollBarWidth = getScrollBarWidth();
|
||||||
|
|
||||||
|
// 页面是否`overflow`
|
||||||
let bodyHasOverflow = document.documentElement.clientHeight < document.body.scrollHeight;
|
let bodyHasOverflow = document.documentElement.clientHeight < document.body.scrollHeight;
|
||||||
if (scrollBarWidth > 0 && bodyHasOverflow) {
|
if (scrollBarWidth > 0 && bodyHasOverflow) {
|
||||||
document.body.style.paddingRight = scrollBarWidth + 'px';
|
document.body.style.paddingRight = scrollBarWidth + 'px';
|
||||||
|
@ -1,4 +1,17 @@
|
|||||||
/* istanbul ignore next */
|
const trim = function(string) {
|
||||||
|
return (string || '').replace(/^[\s\uFEFF]+|[\s\uFEFF]+$/g, '');
|
||||||
|
};
|
||||||
|
|
||||||
|
export function hasClass(el, cls) {
|
||||||
|
if (!el || !cls) return false;
|
||||||
|
if (cls.indexOf(' ') !== -1) throw new Error('className should not contain space.');
|
||||||
|
if (el.classList) {
|
||||||
|
return el.classList.contains(cls);
|
||||||
|
} else {
|
||||||
|
return (' ' + el.className + ' ').indexOf(' ' + cls + ' ') > -1;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
export function addClass(el, cls) {
|
export function addClass(el, cls) {
|
||||||
if (!el) return;
|
if (!el) return;
|
||||||
var curClass = el.className;
|
var curClass = el.className;
|
||||||
@ -21,7 +34,6 @@ export function addClass(el, cls) {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
/* istanbul ignore next */
|
|
||||||
export function removeClass(el, cls) {
|
export function removeClass(el, cls) {
|
||||||
if (!el || !cls) return;
|
if (!el || !cls) return;
|
||||||
var classes = cls.split(' ');
|
var classes = cls.split(' ');
|
||||||
|
Loading…
x
Reference in New Issue
Block a user