批量审核
This commit is contained in:
@ -391,7 +391,6 @@ export class OrderManagementRiskComponent implements OnInit {
|
||||
|
||||
|
||||
selectChange(e: number) {
|
||||
console.log(e);
|
||||
this.resourceStatus = e;
|
||||
this.initST();
|
||||
setTimeout(() => {
|
||||
@ -427,7 +426,6 @@ export class OrderManagementRiskComponent implements OnInit {
|
||||
representationsStatus: 3,
|
||||
};
|
||||
this.service.request(this.service.$api_get_listRisk_audit, parms).subscribe(res => {
|
||||
console.log(res);
|
||||
if (res) {
|
||||
this.service.msgSrv.success('审核通过成功!');
|
||||
this.isVisibleRE = false;
|
||||
@ -441,7 +439,6 @@ export class OrderManagementRiskComponent implements OnInit {
|
||||
* 审核拒绝按钮
|
||||
*/
|
||||
reject() {
|
||||
console.log(this.sfView.value);
|
||||
let idList: any[] = [];
|
||||
if(this.selectedRows.length > 0) {
|
||||
this.selectedRows.forEach(item => {
|
||||
@ -456,7 +453,6 @@ export class OrderManagementRiskComponent implements OnInit {
|
||||
representationsStatus: 4,
|
||||
};
|
||||
this.service.request(this.service.$api_get_listRisk_audit, parms).subscribe(res => {
|
||||
console.log(res);
|
||||
if (res) {
|
||||
this.service.msgSrv.success('审核拒绝成功!');
|
||||
this.isVisibleRE = false;
|
||||
@ -477,13 +473,11 @@ export class OrderManagementRiskComponent implements OnInit {
|
||||
} else {
|
||||
this.initSTAudit(2);
|
||||
}
|
||||
console.log(item);
|
||||
}
|
||||
/**
|
||||
*查看详情
|
||||
*/
|
||||
viewEvaluate(item: any) {
|
||||
console.log(item);
|
||||
this.router.navigate(['/order-management/risk-detail', item.id]);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user