This commit is contained in:
wangshiming
2022-03-25 16:33:00 +08:00
parent 052ca6e1a7
commit 2f9ce76435
2 changed files with 6 additions and 6 deletions

View File

@ -1,7 +1,7 @@
<!-- <!--
* @Author: your name * @Author: your name
* @Date: 2021-12-03 11:10:14 * @Date: 2021-12-03 11:10:14
* @LastEditTime : 2022-03-11 16:04:29 * @LastEditTime : 2022-03-25 16:31:01
* @LastEditors : Shiming * @LastEditors : Shiming
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE * @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
* @FilePath : \\tms-obc-web\\src\\app\\routes\\waybill-management\\components\\bulk\\bulk.component.html * @FilePath : \\tms-obc-web\\src\\app\\routes\\waybill-management\\components\\bulk\\bulk.component.html
@ -85,9 +85,9 @@
{{ item?.freightPrice }}/吨 {{ item?.freightPrice }}/吨
<div>{{item?.settlementBasisLabel}}</div> <div>{{item?.settlementBasisLabel}}</div>
</ng-template> </ng-template>
<ng-template st-row="billExpenseDetailVOList" let-item let-index="index"> <ng-template st-row="billExpenseDetails" let-item let-index="index">
<div *ngIf="item?.billExpenseDetailVOList?.length > 0"> <div *ngIf="item?.billExpenseDetails?.length > 0">
<p *ngFor="let data of item?.billExpenseDetailVOList"> <p *ngFor="let data of item?.billExpenseDetails">
{{ data.costName }}{{ data.price | currency }} {{ data.costName }}{{ data.price | currency }}
<span style="color: #f59a63">{{ data.paymentStatusLabel }}</span> <span style="color: #f59a63">{{ data.paymentStatusLabel }}</span>
</p> </p>

View File

@ -253,9 +253,9 @@ export class WaybillManagementBulkComponent implements OnInit {
}, },
{ {
title: '运费明细', title: '运费明细',
width: '220px', width: '250px',
className: 'text-right', className: 'text-right',
render: 'billExpenseDetailVOList' render: 'billExpenseDetails'
}, },
{ title: '录单员', render: 'createUserName', width: '200px', className: 'text-left' }, { title: '录单员', render: 'createUserName', width: '200px', className: 'text-left' },
{ title: '网络货运人', index: 'enterpriseInfoName', width: '220px', className: 'text-left' }, { title: '网络货运人', index: 'enterpriseInfoName', width: '220px', className: 'text-left' },