From 85ce5821d719e100f0b815fcbb9127cebcd6a26f Mon Sep 17 00:00:00 2001 From: lijiayao <13831655+xiao-yao-charge-forward@user.noreply.gitee.com> Date: Tue, 23 Apr 2024 22:17:24 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B0=8F=E7=BB=84=E7=AE=A1=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/manage/clazz/index.vue | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/views/manage/clazz/index.vue b/src/views/manage/clazz/index.vue index 5695447..5272bc2 100644 --- a/src/views/manage/clazz/index.vue +++ b/src/views/manage/clazz/index.vue @@ -198,7 +198,9 @@ export default { }, // 表单参数 form: {}, - groupsForm: {}, + groupsForm: { + groupName:undefined + }, // 表单校验 rules: { }, @@ -226,6 +228,8 @@ export default { // 取消按钮 cancel() { this.open = false; + this.dialogTableVisible = false + this.dialogFormVisible = false this.reset(); }, // 表单重置 @@ -320,6 +324,7 @@ export default { }, /** 新增小组按钮操作 */ handleGroupsAdd() { + this.groupsForm.groupName = undefined this.dialogTableVisible = false this.dialogFormVisible = true },