fix bug
This commit is contained in:
@ -1,7 +1,7 @@
|
||||
<!--
|
||||
* @Author: your name
|
||||
* @Date: 2021-12-03 11:10:14
|
||||
* @LastEditTime : 2022-03-11 16:04:29
|
||||
* @LastEditTime : 2022-03-25 16:31:01
|
||||
* @LastEditors : Shiming
|
||||
* @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
|
||||
@ -85,9 +85,9 @@
|
||||
{{ item?.freightPrice }}/吨
|
||||
<div>{{item?.settlementBasisLabel}}</div>
|
||||
</ng-template>
|
||||
<ng-template st-row="billExpenseDetailVOList" let-item let-index="index">
|
||||
<div *ngIf="item?.billExpenseDetailVOList?.length > 0">
|
||||
<p *ngFor="let data of item?.billExpenseDetailVOList">
|
||||
<ng-template st-row="billExpenseDetails" let-item let-index="index">
|
||||
<div *ngIf="item?.billExpenseDetails?.length > 0">
|
||||
<p *ngFor="let data of item?.billExpenseDetails">
|
||||
{{ data.costName }}:{{ data.price | currency }}
|
||||
<span style="color: #f59a63">{{ data.paymentStatusLabel }}</span>
|
||||
</p>
|
||||
|
||||
@ -253,9 +253,9 @@ export class WaybillManagementBulkComponent implements OnInit {
|
||||
},
|
||||
{
|
||||
title: '运费明细',
|
||||
width: '220px',
|
||||
width: '250px',
|
||||
className: 'text-right',
|
||||
render: 'billExpenseDetailVOList'
|
||||
render: 'billExpenseDetails'
|
||||
},
|
||||
{ title: '录单员', render: 'createUserName', width: '200px', className: 'text-left' },
|
||||
{ title: '网络货运人', index: 'enterpriseInfoName', width: '220px', className: 'text-left' },
|
||||
|
||||
Reference in New Issue
Block a user