Merge branch 'develop' of https://gitlab.eascs.com/tms-ui/tms-obc-web into develop
This commit is contained in:
@ -32,8 +32,22 @@
|
||||
|
||||
<st #st [data]="service.$api_get_refund_record_page" [columns]="columns" [req]="{ process: beforeReq }"
|
||||
[loading]="service.http.loading" [scroll]="{ x:'1200px' }">
|
||||
<ng-template st-row="bankCardNumber" let-item let-index="index" let-column="column">
|
||||
{{ item.bankName }} <br> {{ item.bankCardNumber }}
|
||||
<ng-template st-row="orderRefundCode" let-item let-index="index" let-column="column">
|
||||
{{ item.orderRefundCode }} <br> {{ item.refundStatusLabel }}
|
||||
</ng-template>
|
||||
<ng-template st-row="refundAmount" let-item let-index="index" let-column="column">
|
||||
{{ item.refundAmount |currency }}
|
||||
</ng-template>
|
||||
<ng-template st-row="billRefundPaymentVOS" let-item let-index="index" let-column="column">
|
||||
<ng-container *ngFor="let bill of item.billRefundPaymentVOS">
|
||||
{{ bill.paymentApplicationCode }}<br>
|
||||
</ng-container>
|
||||
</ng-template>
|
||||
<ng-template st-row="driver" let-item let-index="index" let-column="column">
|
||||
{{ item.driverName }} <br> {{ item.driverTelephone }}<br>{{ item.driverLicencePlate }}
|
||||
</ng-template>
|
||||
<ng-template st-row="captain" let-item let-index="index" let-column="column">
|
||||
{{ item.captainName }} <br> {{ item.captainTelephone }}
|
||||
</ng-template>
|
||||
</st>
|
||||
</nz-card>
|
||||
|
||||
@ -245,23 +245,16 @@ export class RefundRecordComponent implements OnInit {
|
||||
|
||||
private initST(): STColumn[] {
|
||||
return [
|
||||
{ title: '退款单号', index: 'orderRefundCode', width: 180 },
|
||||
{ title: '退款单号', render: 'orderRefundCode', width: 180 },
|
||||
{ title: '退款类型', index: 'refundType', width: 120 },
|
||||
{
|
||||
title: '退款金额',
|
||||
render: 'refundAmount',
|
||||
width: 120,
|
||||
type: 'widget',
|
||||
className: 'text-right',
|
||||
widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.refundAmount }) }
|
||||
},
|
||||
{ title: '退款时间', index: 'applyTime', width: 100 },
|
||||
{ title: '退款金额', render: 'refundAmount', width: 120 },
|
||||
{ title: '退款时间', index: 'applyTime', width: 150 },
|
||||
{ title: '货主', index: 'shipperId', width: 100 },
|
||||
{ title: '所属项目', index: 'enterpriseProjectName', width: 140 },
|
||||
{ title: '支付单', index: 'billRefundPaymentVOS.paymentApplicationCode', width: 100 },
|
||||
{ title: '支付单', render: 'billRefundPaymentVOS', width: 100 },
|
||||
{ title: '订单号', index: 'billCode', width: 100 },
|
||||
{ title: '货源号', index: 'resourceCode', width: 100 },
|
||||
{ title: '司机', render: ' driver', width: 100 },
|
||||
{ title: '司机', render: 'driver', width: 100 },
|
||||
{ title: '收款人', render: 'captain', width: 100 },
|
||||
{ title: '网络货运人', render: 'ltdName', width: 180 },
|
||||
{ title: '银行类型', index: 'bankTypeLabel', width: 100 },
|
||||
|
||||
@ -44,15 +44,15 @@ export class FreightConfigComponent implements OnInit {
|
||||
businessId: item.id,
|
||||
formatTypeList: (item: any[]) => [
|
||||
...item,
|
||||
{
|
||||
name: '权限配置',
|
||||
items: [
|
||||
{
|
||||
configType: 1,
|
||||
itemType: 999
|
||||
}
|
||||
]
|
||||
},
|
||||
// {
|
||||
// name: '权限配置',
|
||||
// items: [
|
||||
// {
|
||||
// configType: 1,
|
||||
// itemType: 999
|
||||
// }
|
||||
// ]
|
||||
// },
|
||||
{
|
||||
name: '费率变更记录',
|
||||
items: [
|
||||
|
||||
@ -18,8 +18,7 @@ import { BaseService } from 'src/app/shared/services';
|
||||
|
||||
@Component({
|
||||
selector: 'app-dynamic-setting-modal',
|
||||
templateUrl: './dynamic-setting-modal.component.html',
|
||||
styleUrls: ['./dynamic-setting-modal.component.less']
|
||||
templateUrl: './dynamic-setting-modal.component.html'
|
||||
})
|
||||
export class DynamicSettingModalComponent implements OnInit {
|
||||
tabs: any[] = [];
|
||||
|
||||
Reference in New Issue
Block a user