diff --git a/src/views/course/WaitAudit.vue b/src/views/course/WaitAudit.vue index a0891550..bb388a7b 100644 --- a/src/views/course/WaitAudit.vue +++ b/src/views/course/WaitAudit.vue @@ -73,6 +73,7 @@ + 审核 @@ -168,6 +169,15 @@ + + + + 转审人:{{item.sysCreateBy}} + 转审时间:{{item.sysCreateTime}} + + 转审说明:{{item.auditRemark}} + + 取 消 提交 @@ -215,6 +225,7 @@ export default { detailType: '', examineId: '', examineName: '', + audit:[], }, paperJson:{items:[]}, courseType: courseType, @@ -412,11 +423,19 @@ export default { window.open(this.webBaseUrl+routeData.href, '_blank'); }, toExamine(row) { + console.log(row,'row'); this.examin.detailType = row.type; this.examin.examineId = row.id; this.examin.examineName = row.name; this.auditInfo.remark = ''; this.dialogVisible = true; + apiCourse.getAuditInfo({courseId:row.id}).then(res=>{ + if(res.status == 200) { + this.examin.audit = res.result; + } else { + this.$message.error(res.message); + } + }) }, enSure() { // 确认事件 @@ -561,6 +580,11 @@ export default {
转审说明:{{item.auditRemark}}