fix bug
This commit is contained in:
@ -4,7 +4,7 @@
|
||||
* @Author : Shiming
|
||||
* @Date : 2021-12-15 13:17:42
|
||||
* @LastEditors : Shiming
|
||||
* @LastEditTime : 2022-01-18 17:21:57
|
||||
* @LastEditTime : 2022-03-02 13:50:12
|
||||
* @FilePath : \\tms-obc-web\\src\\app\\routes\\order-management\\modal\\vehicle\\confir-receipt\\confir-receipt.component.html
|
||||
* Copyright (C) 2022 huzhenhong. All rights reserved.
|
||||
-->
|
||||
@ -17,7 +17,20 @@
|
||||
|
||||
<sv-container col="1">
|
||||
<sv label="费用明细">
|
||||
<st #st [widthMode]="{ type: 'strict' }" [data]="costDetail" [columns]="columns" bordered="true" [page]="{ show: false }"></st>
|
||||
<st #st [widthMode]="{ type: 'strict' }" [data]="costDetail" [columns]="columns" bordered="true" [page]="{ show: false }">
|
||||
<ng-template st-row="PRE" let-item let-index="index">
|
||||
{{item.PRE | currency}}
|
||||
</ng-template>
|
||||
<ng-template st-row="RECE" let-item let-index="index">
|
||||
{{ item.RECE | currency }}
|
||||
</ng-template>
|
||||
<ng-template st-row="BACK" let-item let-index="index">
|
||||
{{ item.BACK | currency }}
|
||||
</ng-template>
|
||||
<ng-template st-row="traiPrice" let-item let-index="index">
|
||||
{{ item.traiPrice | currency }}
|
||||
</ng-template>
|
||||
</st>
|
||||
</sv>
|
||||
<sv label="司机车辆">
|
||||
<div>{{ dataInfo?.driverName }} / {{ dataInfo?.driverPhone }}/ {{ dataInfo?.carNo }}</div>
|
||||
|
||||
@ -4,7 +4,7 @@
|
||||
* @Author : Shiming
|
||||
* @Date : 2021-12-15 13:17:42
|
||||
* @LastEditors : Shiming
|
||||
* @LastEditTime : 2022-02-25 15:34:07
|
||||
* @LastEditTime : 2022-03-02 13:52:27
|
||||
* @FilePath : \\tms-obc-web\\src\\app\\routes\\order-management\\modal\\vehicle\\confir-receipt\\confir-receipt.component.ts
|
||||
* Copyright (C) 2022 huzhenhong. All rights reserved.
|
||||
*/
|
||||
@ -143,23 +143,27 @@ export class VehicleConfirReceiptComponent implements OnInit {
|
||||
this.columns = [
|
||||
{
|
||||
title: '预付',
|
||||
index: 'PRE'
|
||||
index: 'PRE',
|
||||
render:'PRE'
|
||||
},
|
||||
{
|
||||
title: '到付',
|
||||
index: 'RECE'
|
||||
},
|
||||
{
|
||||
title: '油卡',
|
||||
index: 'OIL'
|
||||
index: 'RECE',
|
||||
render:'RECE'
|
||||
},
|
||||
// {
|
||||
// title: '油卡',
|
||||
// index: 'OIL'
|
||||
// },
|
||||
{
|
||||
title: '回单付',
|
||||
index: 'BACK'
|
||||
index: 'BACK',
|
||||
render:'BACK'
|
||||
},
|
||||
{
|
||||
title: '总运费',
|
||||
index: 'traiPrice'
|
||||
index: 'traiPrice',
|
||||
render:'traiPrice'
|
||||
}
|
||||
];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user