!56 修复连续创建客户组失败的问题

* 数字1
* 修复连续创建客户组失败问题
This commit is contained in:
宋良辰 2023-03-13 03:20:03 +00:00 committed by Edward Yang
parent d84393b237
commit 688f6a2511
1 changed files with 4 additions and 2 deletions

View File

@ -190,7 +190,8 @@
} else {
this.customer_groups[this.dialog.index] = res.data
}
this.dialog.show = false
this.dialog.show = false;
this.dialog.form.level = 1
})
});
},
@ -214,7 +215,8 @@
Object.keys(this.dialog.form).forEach(key => this.dialog.form[key] = '')
this.dialog.form.name = {};
this.dialog.form.description = {};
this.dialog.show = false
this.dialog.show = false;
this.dialog.form.level = 1
}
}
})