From c0e88ada5c9355445df2e571b315a99b1ee5e5c9 Mon Sep 17 00:00:00 2001 From: zhaofang <752743406@qq.com> Date: Fri, 10 Jun 2022 17:39:35 +0800 Subject: [PATCH] =?UTF-8?q?=E6=95=99=E5=B8=88=E8=BD=AC=E5=AE=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/course/WaitAudit.vue | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) 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}}