|
@@ -247,13 +247,15 @@
|
|
|
historyHTML.push('<div class="timeline-item-icon bg-warning text-light"><i class="fa fa-level-up"></i></div>');
|
|
|
} else if (group.status === auditConst2.status.checking) {
|
|
|
historyHTML.push('<div class="timeline-item-icon bg-warning text-light"><i class="fa fa-ellipsis-h"></i></div>');
|
|
|
- } else {
|
|
|
+ } else if(group.status === auditConst2.status.checkAgain) {
|
|
|
+ historyHTML.push('<div class="timeline-item-icon bg-warning text-light"><i class="fa fa-check"></i></div>');
|
|
|
+ } else {
|
|
|
historyHTML.push('<div class="timeline-item-icon bg-secondary text-light"></div>');
|
|
|
}
|
|
|
|
|
|
historyHTML.push('<div class="timeline-item-content">');
|
|
|
const statuStr = group.status !== auditConst2.status.uncheck ?
|
|
|
- `<span class="pull-right ${auditConst2.statusClass[group.status]}">${auditConst2.statusString[group.status]}</span>` : '';
|
|
|
+ `<span class="pull-right ${auditConst2.auditStringClass[group.status]}">${auditConst2.statusString[group.status]}</span>` : '';
|
|
|
historyHTML.push(`<div class="py-1">
|
|
|
<span class="text-black-50">
|
|
|
${ !group.is_final ? group.audit_order + '' : '终' }审 ${getAuditTypeText(group.audit_type)}
|
|
@@ -269,6 +271,10 @@
|
|
|
historyHTML.push('<span class="pull-right text-success"><i class="fa fa-check-circle"></i></span>');
|
|
|
} if (auditor.status === auditConst2.status.checkNo || auditor.status === auditConst2.status.checkNoPre || auditor.status === auditConst2.status.checkCancel) {
|
|
|
historyHTML.push('<span class="pull-right text-warning"><i class="fa fa-share-square fa-rotate-270"></i></span>');
|
|
|
+ } else if (auditor.status === auditConst2.status.checking) {
|
|
|
+ historyHTML.push('<span class="pull-right text-warning"><i class="fa fa-commenting"></i></span>');
|
|
|
+ } else if (auditor.status === auditConst2.status.checkAgain) {
|
|
|
+ historyHTML.push('<span class="pull-right text-warning"><i class="fa fa-check-circle"></i></span>');
|
|
|
}
|
|
|
historyHTML.push('</div>');
|
|
|
if (auditor.opinion) {
|