|
|
|
@ -144,7 +144,6 @@ export class AuditIngComponent implements OnInit {
|
|
|
|
|
SkipCount: this.SkipCount, |
|
|
|
|
MaxResultCount: this.MaxResultCount, |
|
|
|
|
}; |
|
|
|
|
console.log(params,1557); |
|
|
|
|
|
|
|
|
|
this.http |
|
|
|
|
.get(`/api/services/app/ContentAuditLog/GetAuditting`, { params }) |
|
|
|
@ -211,9 +210,18 @@ export class AuditIngComponent implements OnInit {
|
|
|
|
|
let body = instance.isPass ? 2 : 3; |
|
|
|
|
this.http.post(url, body, { params }).subscribe((data) => { |
|
|
|
|
resolve(data); |
|
|
|
|
this.list = []; |
|
|
|
|
this.SkipCount = "0"; |
|
|
|
|
this.getStationList(); |
|
|
|
|
// this.list = [];
|
|
|
|
|
// this.SkipCount = "0";
|
|
|
|
|
// this.getStationList();
|
|
|
|
|
for (let index = 0; index < this.list.length; index++) { |
|
|
|
|
const element = this.list[index]; |
|
|
|
|
if(element.id==item.id){ |
|
|
|
|
this.list.splice(index,1) |
|
|
|
|
this.SkipCount = String(Number(this.SkipCount)-1); |
|
|
|
|
this.totalCount = String(Number(this.totalCount)-1); |
|
|
|
|
this.list = [...this.list]; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
this.message.create("success", "审核完成!"); |
|
|
|
|
return true; |
|
|
|
|
}); |
|
|
|
|