Browse Source

审核次数完善

beijing
陈鹏飞 3 years ago
parent
commit
ceeb2e8623
  1. 2
      src/app/pages/audit/gas-base-info/gas-base-info.component.html
  2. 11
      src/app/pages/audit/gas-base-info/gas-base-info.component.ts
  3. 2
      src/app/pages/license/file-category/details-file-category/details-file-category.component.html
  4. 11
      src/app/pages/license/file-category/details-file-category/details-file-category.component.ts
  5. 2
      src/app/pages/license/update-category/details-update-category/details-update-category.component.html
  6. 11
      src/app/pages/license/update-category/details-update-category/details-update-category.component.ts

2
src/app/pages/audit/gas-base-info/gas-base-info.component.html

@ -79,7 +79,7 @@
<span>审核记录</span>
<span>
<span style="margin-right: 6px;">
审核次数:{{auditList.length}}
审核次数:{{getVerifyNum()}}
</span>
<span>
驳回次数:{{getRejectNum()}}

11
src/app/pages/audit/gas-base-info/gas-base-info.component.ts

@ -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 {
let num = 0

2
src/app/pages/license/file-category/details-file-category/details-file-category.component.html

@ -23,7 +23,7 @@
<span>审核记录</span>
<span>
<span style="margin-right: 6px;">
审核次数:{{auditList.length}}
审核次数:{{getVerifyNum()}}
</span>
<span>
驳回次数:{{getRejectNum()}}

11
src/app/pages/license/file-category/details-file-category/details-file-category.component.ts

@ -33,6 +33,17 @@ export class DetailsFileCategoryComponent 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 {
let num = 0

2
src/app/pages/license/update-category/details-update-category/details-update-category.component.html

@ -29,7 +29,7 @@
<span>审核记录</span>
<span>
<span style="margin-right: 6px;">
审核次数:{{auditList.length}}
审核次数:{{getVerifyNum()}}
</span>
<span>
驳回次数:{{getRejectNum()}}

11
src/app/pages/license/update-category/details-update-category/details-update-category.component.ts

@ -34,6 +34,17 @@ export class DetailsUpdateCategoryComponent 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 {
let num = 0

Loading…
Cancel
Save