|
@@ -128,7 +128,7 @@ function getInfo(data) {
|
|
|
function getCon(data) {
|
|
|
console.log(data);
|
|
|
let str = ''
|
|
|
- str += `<p class="con-title">申述模块:${data.casesName || '-'}</p>
|
|
|
+ str += `<p class="con-title">申诉模块:${data.casesName || '-'}</p>
|
|
|
<p class="con-title">病历内容:${data.defectContent || '-'}</p>
|
|
|
<p class="con-title">缺陷详情:${data.qcresultDetailMsg || '-'}</p>
|
|
|
<p class="con-title"> 评分:${data.qcresultDetaiValue || '-'}</p>
|
|
@@ -145,12 +145,12 @@ function getHistory(data) {
|
|
|
for (let i = 0; i < data.length; i++) {
|
|
|
const item = data[i]
|
|
|
str += `<div class="box">
|
|
|
- <p class="con-title"><span>申述时间:${item.appealCreateDate || '-'}</span><span>申述人:${item.claimantName || '-'}</span><span>审核人:${item.checkName || '-'}</span></p>
|
|
|
+ <p class="con-title"><span>申诉时间:${item.appealCreateDate || '-'}</span><span>申诉人:${item.claimantName || '-'}</span><span>审核人:${item.checkName || '-'}</span></p>
|
|
|
<p class="con-title">操作类型:${item.appealOperationType == 0 ? '删改条目' : item.appealOperationType == 1 ? '新增已有条目' : item.appealOperationType == 2 ? '新增缺失条目' : '恢复条目'}</p>
|
|
|
- <p class="con-title">申述说明:${item.appealExplain || '-'}</p>
|
|
|
+ <p class="con-title">申诉说明:${item.appealExplain || '-'}</p>
|
|
|
${item.exampleStatus == 2 ?
|
|
|
`<p class="con-title" style="border-top: 1px solid #333;margin-top: 10px;padding-top: 10px;">审核时间:${item.appealExamineDate || '-'}</p>
|
|
|
- <p class="con-title">申述结果:审核通过</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.msg || '-'}</p>
|
|
@@ -158,7 +158,7 @@ function getHistory(data) {
|
|
|
<p class="con-title">备注:${item.exampleRemark || '-'}</p>`
|
|
|
: item.exampleStatus == 1 ?
|
|
|
`<p class="con-title" style="border-top: 1px solid #333;margin-top: 10px;padding-top: 10px;">审核时间:${item.appealExamineDate || '-'}</p>
|
|
|
- <p class="con-title">申述结果:审核通过</p>
|
|
|
+ <p class="con-title">申诉结果:审核通过</p>
|
|
|
<p class="con-title">驳回理由:${item.rejectReason || '-'}</p>`
|
|
|
: ""}
|
|
|
</div>`;
|