This commit is contained in:
wangshiming
2022-03-21 15:03:52 +08:00
parent 7a3b01c4e6
commit 0778aabadd

View File

@ -4,7 +4,7 @@
* @Author : Shiming
* @Date : 2022-03-21 14:19:21
* @LastEditors : Shiming
* @LastEditTime : 2022-03-21 15:02:37
* @LastEditTime : 2022-03-21 15:03:40
* @FilePath : \\tms-obc-web\\src\\app\\routes\\financial-management\\components\\payment-record\\payment-record.component.html
* Copyright (C) 2022 huzhenhong. All rights reserved.
-->
@ -43,24 +43,24 @@
<st #st [data]="service.$api_get_order_payment_page" [columns]="columns" [req]="{ process: beforeReq }" [page]="{}"
[loading]="false" [scroll]="{ x:'1200px' }">
<ng-template st-row="orderPaymentCode" let-item let-index="index" let-column="column">
{{ item.orderPaymentCode }} <br> <a>{{ item.paymentStatusLabel }}</a>
{{ item?.orderPaymentCode }} <br> <a>{{ item?.paymentStatusLabel }}</a>
</ng-template>
<ng-template st-row="amountDetails" let-item let-index="index" let-column="column">
<ng-container *ngFor="let detail of item.amountDetails">
<ng-container *ngFor="let detail of item?.amountDetails">
{{detail.costName}}:{{ detail.price | currency }}<br />
</ng-container>
</ng-template>
<ng-template st-row="billCode" let-item let-index="index" let-column="column">
{{ item.billCode }} <br> {{item.billStatusLabel }}
{{ item?.billCode }} <br> {{item?.billStatusLabel }}
</ng-template>
<ng-template st-row="wayBillCode" let-item let-index="index" let-column="column">
{{ item.wayBillCode }} <br> {{item.wayBillStatusLabel }}
{{ item?.wayBillCode }} <br> {{item?.wayBillStatusLabel }}
</ng-template>
<ng-template st-row="driverId" let-item let-index="index" let-column="column">
{{ item.driverName }} <br> {{ item.driverTelephone }} {{ item?.driverLicencePlate }}
{{ item?.driverName }} <br> {{ item?.driverTelephone }} {{ item?.driverLicencePlate }}
</ng-template>
<ng-template st-row="captainName" let-item let-index="index" let-column="column">
{{ item.captainName }} <br> {{ item.captainTelephone }}
{{ item?.captainName }} <br> {{ item?.captainTelephone }}
</ng-template>
</st>
</nz-card>