This commit is contained in:
wangshiming
2022-03-22 11:12:35 +08:00
parent 6ba71ef342
commit 6dffa159ef
3 changed files with 20 additions and 7 deletions

View File

@ -4,7 +4,7 @@
* @Author : Shiming
* @Date : 2021-12-06 20:20:26
* @LastEditors : Shiming
* @LastEditTime : 2022-03-21 14:43:06
* @LastEditTime : 2022-03-22 10:56:18
* @FilePath : \\tms-obc-web\\src\\app\\routes\\order-management\\components\\bulk-detail\\bulk-detail.component.ts
* Copyright (C) 2022 huzhenhong. All rights reserved.
*/
@ -29,6 +29,7 @@ export class OrderManagementBulkeDetailComponent implements OnInit {
id = this.route.snapshot.params.id;
billExpenses: any[] = []; //运费信息表格信息
pois: any[] = [];
abnormalList: any[] = [];
i: any;
imges: any;
totalObj: any;
@ -96,10 +97,17 @@ export class OrderManagementBulkeDetailComponent implements OnInit {
];
}
});
this.service.request(this.service.$api_get_getRiskDetail, { id: this.id }).subscribe(res => {
this.service.request(this.service.$api_listBillComplianceAbnormalByBillId, { id: this.id }).subscribe(res => {
if (res) {
console.log('风险详情')
console.log(res)
this.abnormalList = res
}
});
this.service.request(this.service.$api_getAbnormalWarningByBillId, { id: this.id }).subscribe(res => {
if (res) {
console.log('异常预警')
console.log(res)
}
});
}