fix bug
This commit is contained in:
		| @ -4,7 +4,7 @@ | ||||
|  * @Author       : Shiming | ||||
|  * @Date         : 2021-12-06 20:20:26 | ||||
|  * @LastEditors  : Shiming | ||||
|  * @LastEditTime : 2022-03-21 14:43:04 | ||||
|  * @LastEditTime : 2022-03-22 11:06:16 | ||||
|  * @FilePath     : \\tms-obc-web\\src\\app\\routes\\order-management\\components\\bulk-detail\\bulk-detail.component.html | ||||
|  * Copyright (C) 2022 huzhenhong. All rights reserved. | ||||
| --> | ||||
| @ -232,9 +232,9 @@ | ||||
|         您的订单可能存在交易风险,请及时提交申诉材料,提交成功后,平台将及时完成审核并通知您! | ||||
|       </div> | ||||
|       <div>如果您的运单没有问题,可以提出申诉,并提供相关资料,我们将24小时内审核反馈</div> | ||||
|       <ul> | ||||
|         <li>系统识别:司机装货轨迹异常</li> | ||||
|         <li>司机装货轨迹异常,您可在企业端提交申诉材料或联系客服。</li> | ||||
|       <ul *ngFor="let item of abnormalList"> | ||||
|         <li>系统识别:{{item?.complianceTypeName}}</li> | ||||
|         <li>{{item?.determineDetails}},您可在企业端提交申诉材料或联系客服。</li> | ||||
|         <li>2021-11-07 03:20:15</li> | ||||
|       </ul> | ||||
|     </nz-tab> | ||||
|  | ||||
| @ -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) | ||||
|       } | ||||
|     }); | ||||
|   } | ||||
|  | ||||
		Reference in New Issue
	
	Block a user