From 628f09309dd9c1e812e7aafb8bedde600b798eae Mon Sep 17 00:00:00 2001 From: zhangyuan Date: Wed, 8 Jul 2020 10:24:50 +0800 Subject: [PATCH] format --- src/views/modules/activity/group-add-or-update.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/modules/activity/group-add-or-update.vue b/src/views/modules/activity/group-add-or-update.vue index 980bb37..fed0808 100644 --- a/src/views/modules/activity/group-add-or-update.vue +++ b/src/views/modules/activity/group-add-or-update.vue @@ -239,13 +239,13 @@ export default { }, // 表单提交 dataFormSubmitHandle: debounce(function () { - this.disabled = true + this.disabled = true this.$refs['dataForm'].validate((valid) => { if (!valid) { return false } this.$http[!this.dataForm.id ? 'post' : 'put']('/property/group/interest', this.dataForm).then(({ data: res }) => { - this.disabled = false + this.disabled = false if (res.code !== 0) { return this.$message.error(res.msg) } @@ -259,7 +259,7 @@ export default { } }) }).catch(() => { - this.loading = false + this.loading = false }) }) }, 1000, { 'leading': true, 'trailing': false })