订单上报优化

This commit is contained in:
潘晓云
2022-04-11 10:49:09 +08:00
parent 6e5b2fd9b5
commit 67f1c84f7e
2 changed files with 3 additions and 3 deletions

View File

@ -56,7 +56,7 @@
</ng-template> </ng-template>
<ng-template st-row="freightAmount" let-item let-index="index"> <ng-template st-row="freightAmount" let-item let-index="index">
<div class="text-right">{{item?.freightAmount | currency :' '}}</div> <div class="text-right">{{item?.freightAmount | currency }}</div>
</ng-template> </ng-template>
<ng-template st-row="goodsInfoList" let-item let-index="index"> <ng-template st-row="goodsInfoList" let-item let-index="index">
<div *ngFor="let _item of item?.goodsInfoList"> <div *ngFor="let _item of item?.goodsInfoList">

View File

@ -306,7 +306,7 @@ export class DatatableOrderReportingComponent implements OnInit {
{ title: '装货地址', index: 'loadingAddress', className: 'text-center', width: '200px' }, { title: '装货地址', index: 'loadingAddress', className: 'text-center', width: '200px' },
{ title: '收货方名称', index: 'receivingName', className: 'text-center', width: '150px' }, { title: '收货方名称', index: 'receivingName', className: 'text-center', width: '150px' },
{ title: '收货地址', index: 'consigneeAddress', className: 'text-center', width: '150px' }, { title: '收货地址', index: 'consigneeAddress', className: 'text-center', width: '150px' },
{ title: '运费金额', render: 'freightAmount', className: 'text-center', width: '250px' }, { title: '运费金额', render: 'freightAmount', className: 'text-center', width: '100px' },
{ title: '车牌号', index: 'carNo', className: 'text-center', width: '150px' }, { title: '车牌号', index: 'carNo', className: 'text-center', width: '150px' },
{ {
title: '车牌颜色', title: '车牌颜色',
@ -518,7 +518,7 @@ export class DatatableOrderReportingComponent implements OnInit {
* 异步导出 * 异步导出
*/ */
export() { export() {
this.service.exportStart({...this.sf?.value, pageSize: -1 }, this.service.$api_export_reporting_order); this.service.exportStart({ ...this.sf?.value, pageSize: -1 }, this.service.$api_export_reporting_order);
} }
openWainingModal(content: string, title = '提示') { openWainingModal(content: string, title = '提示') {