From 5ce59a0fecfe8fa3b48c24a4bd698abd966b2396 Mon Sep 17 00:00:00 2001 From: xiangxy Date: Mon, 7 Nov 2022 09:01:43 +0800 Subject: [PATCH] =?UTF-8?q?=E8=BD=AF=E5=BA=9F=E6=B8=85=E6=B4=97=E5=87=BA?= =?UTF-8?q?=E5=BA=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../xinrui/storage/outstorage/SoftWasteCleanOutStore.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pages/xinrui/storage/outstorage/SoftWasteCleanOutStore.vue b/src/pages/xinrui/storage/outstorage/SoftWasteCleanOutStore.vue index 3eca86a..85446f4 100644 --- a/src/pages/xinrui/storage/outstorage/SoftWasteCleanOutStore.vue +++ b/src/pages/xinrui/storage/outstorage/SoftWasteCleanOutStore.vue @@ -199,11 +199,11 @@ export default { }, returnStore () { this.disabled2 = true - if (this.val1 && this.val2) { - this._backstore() - } else { + if (!(this.val1 && this.val2)) { this.disabled2 = false + return } + this._backstore() } } }