返佣
This commit is contained in:
@ -4,7 +4,7 @@
|
|||||||
* @Author : Shiming
|
* @Author : Shiming
|
||||||
* @Date : 2022-03-21 14:19:21
|
* @Date : 2022-03-21 14:19:21
|
||||||
* @LastEditors : Shiming
|
* @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
|
* @FilePath : \\tms-obc-web\\src\\app\\routes\\financial-management\\components\\payment-record\\payment-record.component.html
|
||||||
* Copyright (C) 2022 huzhenhong. All rights reserved.
|
* 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]="{}"
|
<st #st [data]="service.$api_get_order_payment_page" [columns]="columns" [req]="{ process: beforeReq }" [page]="{}"
|
||||||
[loading]="false" [scroll]="{ x:'1200px' }">
|
[loading]="false" [scroll]="{ x:'1200px' }">
|
||||||
<ng-template st-row="orderPaymentCode" let-item let-index="index" let-column="column">
|
<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>
|
||||||
<ng-template st-row="amountDetails" let-item let-index="index" let-column="column">
|
<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 />
|
{{detail.costName}}:{{ detail.price | currency }}<br />
|
||||||
</ng-container>
|
</ng-container>
|
||||||
</ng-template>
|
</ng-template>
|
||||||
<ng-template st-row="billCode" let-item let-index="index" let-column="column">
|
<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>
|
||||||
<ng-template st-row="wayBillCode" let-item let-index="index" let-column="column">
|
<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>
|
||||||
<ng-template st-row="driverId" let-item let-index="index" let-column="column">
|
<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>
|
||||||
<ng-template st-row="captainName" let-item let-index="index" let-column="column">
|
<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>
|
</ng-template>
|
||||||
</st>
|
</st>
|
||||||
</nz-card>
|
</nz-card>
|
||||||
Reference in New Issue
Block a user