|
@@ -61,7 +61,11 @@
|
|
|
>
|
|
|
</el-pagination></div></el-col
|
|
|
></el-row>
|
|
|
- <el-dialog title="设置重考" :visible.sync="dialogFormVisible">
|
|
|
+ <el-dialog
|
|
|
+ title="设置重考"
|
|
|
+ :visible.sync="dialogFormVisible"
|
|
|
+ @closed="reexamineDialogClosed"
|
|
|
+ >
|
|
|
<el-form :model="reexamineForm" ref="reexamineForm">
|
|
|
<el-form-item
|
|
|
prop="reexamineType"
|
|
@@ -249,6 +253,9 @@ export default {
|
|
|
return false;
|
|
|
}
|
|
|
});
|
|
|
+ },
|
|
|
+ reexamineDialogClosed() {
|
|
|
+ this.$refs["reexamineForm"].resetFields();
|
|
|
}
|
|
|
},
|
|
|
created() {}
|