|
@@ -159,13 +159,14 @@ function getHistory(data) {
|
|
|
${item.exampleStatus == 2 ?
|
|
|
`<p class="con-title" ><span>审核时间:${item.appealExamineDate || '-'}</span><span>审核人:${item.checkName || '-'}</span></p>
|
|
|
<p class="con-title">审核结果:审核通过</p>
|
|
|
- <p class="con-title">处理方式:${item.exampleOperation == 1 ? '修改' : item.exampleOperation == 2 ? '删除' : item.exampleOperation == 3 ? '新增已有' : item.exampleOperation == 4 ? '新增缺失' : '恢复条目'}</p>
|
|
|
- <p class="con-title">质控条目:${item.casesEntryName || '-'}</p>
|
|
|
+ <p class="con-title">处理方式:${item.exampleOperation == 1 ? '修改' : item.exampleOperation == 2 ? '删除' : item.exampleOperation == 3 ? '新增已有' : item.exampleOperation == 4 ? '新增缺失' : '恢复条目'}</p>`
|
|
|
+ : item.appealOperationType != 2 ?
|
|
|
+ `<p class="con-title">质控条目:${item.casesEntryName || '-'}</p>
|
|
|
<p class="con-title">提示信息:${item.msg || '-'}</p>
|
|
|
<p class="con-title">分值:${item.score == 0 ? '0' : item.score ? item.score : '-'}</p>
|
|
|
<p class="con-title">备注:${item.exampleRemark || '-'}</p>`
|
|
|
: item.exampleStatus == 1 ?
|
|
|
- `<p class="con-title" >审核时间:${item.appealExamineDate || '-'}</p>
|
|
|
+ `<p class="con-title" >审核时间:${item.appealExamineDate || '-'}<span>审核人:${item.checkName || '-'}</span></p>
|
|
|
<p class="con-title">审核结果:驳回</p>
|
|
|
<p class="con-title">驳回理由:${item.rejectReason || '-'}</p>`
|
|
|
: ""}
|