fix bug
This commit is contained in:
		| @ -33,7 +33,7 @@ | |||||||
|       </div> |       </div> | ||||||
|       <div nz-col [nzSpan]="_$expand ? 24 : 6" class="text-right"> |       <div nz-col [nzSpan]="_$expand ? 24 : 6" class="text-right"> | ||||||
|         <button nz-button nzType="primary" [nzLoading]="false" (click)="search()"  acl  [acl-ability]="['ORDER-RISK-search']">查询</button> |         <button nz-button nzType="primary" [nzLoading]="false" (click)="search()"  acl  [acl-ability]="['ORDER-RISK-search']">查询</button> | ||||||
|         <button nz-button nzType="primary" [disabled]="false">导出</button> |         <button nz-button nzType="primary" [disabled]="false" (click)="exprot()">导出</button> | ||||||
|         <button nz-button [disabled]="false" (click)="resetSF()">重置</button> |         <button nz-button [disabled]="false" (click)="resetSF()">重置</button> | ||||||
|         <button nz-button nzType="link" (click)="expandToggle()"> |         <button nz-button nzType="link" (click)="expandToggle()"> | ||||||
|           {{ !_$expand ? '展开' : '收起' }} |           {{ !_$expand ? '展开' : '收起' }} | ||||||
|  | |||||||
| @ -532,4 +532,12 @@ export class OrderManagementRiskComponent implements OnInit { | |||||||
|   viewEvaluate(item: any) { |   viewEvaluate(item: any) { | ||||||
|     this.router.navigate(['/order-management/risk-detail', item.id]); |     this.router.navigate(['/order-management/risk-detail', item.id]); | ||||||
|   } |   } | ||||||
|  |     // 导出 | ||||||
|  |     exprot() { | ||||||
|  |       this.service.request(this.service.$api_get_asyncExportRiskBillList, this.reqParams).subscribe((res: any) => { | ||||||
|  |         if (res) { | ||||||
|  |           this.service.msgSrv.success('导出成功,请去下载中心下载!'); | ||||||
|  |         } | ||||||
|  |       }); | ||||||
|  |     } | ||||||
| } | } | ||||||
|  | |||||||
| @ -4,7 +4,7 @@ | |||||||
|  * @Author       : Shiming |  * @Author       : Shiming | ||||||
|  * @Date         : 2021-12-03 15:31:52 |  * @Date         : 2021-12-03 15:31:52 | ||||||
|  * @LastEditors  : Shiming |  * @LastEditors  : Shiming | ||||||
|  * @LastEditTime : 2022-03-30 16:08:50 |  * @LastEditTime : 2022-04-02 13:10:13 | ||||||
|  * @FilePath     : \\tms-obc-web\\src\\app\\routes\\order-management\\services\\order-management.service.ts |  * @FilePath     : \\tms-obc-web\\src\\app\\routes\\order-management\\services\\order-management.service.ts | ||||||
|  * Copyright (C) 2022 huzhenhong. All rights reserved. |  * Copyright (C) 2022 huzhenhong. All rights reserved. | ||||||
|  */ |  */ | ||||||
| @ -191,6 +191,8 @@ export class OrderManagementService extends ShipperBaseService { | |||||||
|   $api_get_asyncExportBulkList = `/api/sdc/billOperate/asyncExportBulkList`; |   $api_get_asyncExportBulkList = `/api/sdc/billOperate/asyncExportBulkList`; | ||||||
|   //  异步导出运营后台整车订单列表 |   //  异步导出运营后台整车订单列表 | ||||||
|   $api_get_asyncExportWholeList = `/api/sdc/billOperate/asyncExportWholeList`; |   $api_get_asyncExportWholeList = `/api/sdc/billOperate/asyncExportWholeList`; | ||||||
|  |   //  异步导出风险单导出 | ||||||
|  |   $api_get_asyncExportRiskBillList = `/api/sdc/billRiskOperate/asyncExportRiskBillList`; | ||||||
|   /** |   /** | ||||||
|    * 根据企业ID,获取企业历史网络货运人 |    * 根据企业ID,获取企业历史网络货运人 | ||||||
|    * @returns |    * @returns | ||||||
|  | |||||||
		Reference in New Issue
	
	Block a user