Commit 874a1c1f by H.wb.wang.peixun

批卷接口对接

parent ae1b32f4
...@@ -357,11 +357,16 @@ export default { ...@@ -357,11 +357,16 @@ export default {
} }
}, },
clickComplete() { clickComplete() {
completeReadOver({ id: this.form.recordId }).then((res) => { let self = this
this.open = false; this.$refs["form"].validate(valid => {
this.$modal.msgSuccess("批卷完成"); if (valid) {
this.getList(); completeReadOver({ id: self.form.recordId }).then((res) => {
}) self.open = false;
self.$modal.msgSuccess("批卷完成");
self.getList();
})
}
});
}, },
// 典例精讲 // 典例精讲
changeExplain(e) { 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