diff --git a/frontend/src/business/components/track/case/components/TestCaseEdit.vue b/frontend/src/business/components/track/case/components/TestCaseEdit.vue index 811a5e328e..e33534999b 100644 --- a/frontend/src/business/components/track/case/components/TestCaseEdit.vue +++ b/frontend/src/business/components/track/case/components/TestCaseEdit.vue @@ -355,6 +355,13 @@ this.$success(this.$t('commons.save_success')); if (this.operationType == 'add' && this.isCreateContinue) { this.form.name = ''; + this.form.prerequisite = ''; + this.form.steps = [{ + num: 1, + desc: '', + result: '' + }]; + this.form.remark = ''; this.$emit("refresh"); return; }