From cd4cb6161a9b0f1b052ea984d4f8459f331411e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E4=BD=B3?= Date: Tue, 20 Aug 2019 19:08:14 +0800 Subject: [PATCH] fix: fix lint some code --- src/components/modal/modal.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/modal/modal.vue b/src/components/modal/modal.vue index 0fec1756..db951e88 100644 --- a/src/components/modal/modal.vue +++ b/src/components/modal/modal.vue @@ -202,8 +202,8 @@ let style = {}; if (this.draggable) { - let customTop = this.styles.top ? parseFloat(this.styles.top) : 0; - let customLeft = this.styles.left ? parseFloat(this.styles.left) : 0; + let customTop = this.styles.top ? parseFloat(this.styles.top) : 0; + let customLeft = this.styles.left ? parseFloat(this.styles.left) : 0; if (this.dragData.x !== null) style.left = `${this.dragData.x - customLeft}px`; if (this.dragData.y !== null) style.top = `${this.dragData.y - customTop}px`; const width = parseInt(this.width);