Commit 874a1c1f by H.wb.wang.peixun

批卷接口对接

parent ae1b32f4
......@@ -357,11 +357,16 @@ export default {
}
},
clickComplete() {
completeReadOver({ id: this.form.recordId }).then((res) => {
this.open = false;
this.$modal.msgSuccess("批卷完成");
this.getList();
let self = this
this.$refs["form"].validate(valid => {
if (valid) {
completeReadOver({ id: self.form.recordId }).then((res) => {
self.open = false;
self.$modal.msgSuccess("批卷完成");
self.getList();
})
}
});
},
// 典例精讲
changeExplain(e) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment