From 5e2aafeede13d337380f736567caf74f49713be7 Mon Sep 17 00:00:00 2001
From: linwe <872216996@qq.com>
Date: Fri, 09 Aug 2024 14:38:32 +0800
Subject: [PATCH] 代码优化
---
src/components/audit-base/main.vue | 10 ++++++----
1 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/src/components/audit-base/main.vue b/src/components/audit-base/main.vue
index 751e868..34770d8 100644
--- a/src/components/audit-base/main.vue
+++ b/src/components/audit-base/main.vue
@@ -39,8 +39,9 @@
methods: {
handleSubmit () {
- this.form.status = 1
- this.$emit('handleSubmit', this.form)
+ this.$nextTick(() => {
+ this.$emit('handleSubmit', Object.assign({ status: 1 }, this.form))
+ })
},
handleReset () {
@@ -52,8 +53,9 @@
return
}
- this.form.status = 2
- this.$emit('handleSubmit', this.form)
+ this.$nextTick(() => {
+ this.$emit('handleSubmit', Object.assign({ status: 2 }, this.form))
+ })
},
}
}
--
Gitblit v1.9.3