@ -79,7 +79,7 @@
<span>审核记录</span>
<span>
<span style="margin-right: 6px;">
审核次数:{{auditList.length}}
审核次数:{{getVerifyNum()}}
</span>
驳回次数:{{getRejectNum()}}
@ -50,6 +50,17 @@ export class GasBaseInfoComponent implements OnInit {
})
}
//获取审核次数
getVerifyNum(): number {
let num = 0
this.auditList.forEach(item=>{
if (item.auditStatus == 2 || item.auditStatus == 3) {
num = num + 1
return num
//获取驳回次数
getRejectNum(): number {
@ -23,7 +23,7 @@
@ -33,6 +33,17 @@ export class DetailsFileCategoryComponent implements OnInit {
@ -29,7 +29,7 @@
@ -34,6 +34,17 @@ export class DetailsUpdateCategoryComponent implements OnInit {