Merge branch 'develop' of https://gitlab.eascs.com/tms-ui/tms-obc-web into develop
This commit is contained in:
@ -35,7 +35,8 @@ export class DriverAccountDetailComponent implements OnInit {
|
||||
ltdId: this.params.ltdId,
|
||||
projectId: this.params.projectId,
|
||||
enterpriseId: this.params.enterpriseId,
|
||||
roleId: this.params.roleId
|
||||
roleId: this.params.roleId,
|
||||
bankType: this.params.bankType,
|
||||
});
|
||||
if (this.sf) {
|
||||
Object.assign(requestOptions.body, {
|
||||
@ -59,6 +60,7 @@ export class DriverAccountDetailComponent implements OnInit {
|
||||
roleId: this.params.roleId,
|
||||
pageIndex: this.st.pi,
|
||||
pageSize: this.st.ps,
|
||||
bankType: this.params.bankType,
|
||||
createTime: {
|
||||
start: this.sf?.value?.createTime?.[0] || '',
|
||||
end: this.sf?.value?.createTime?.[1] || ''
|
||||
@ -162,13 +164,13 @@ export class DriverAccountDetailComponent implements OnInit {
|
||||
|
||||
private initST(): STColumn[] {
|
||||
return [
|
||||
{ title: '交易时间', index: 'createTime', type: 'date' },
|
||||
{ title: '流水号', index: 'channelPaySn' },
|
||||
{ title: '交易类型', index: 'tradeTypeLabel', className: 'text-center' },
|
||||
{ title: '交易单号', index: 'businessNumber' },
|
||||
{ title: '订单号', index: 'orderSn' },
|
||||
{ title: '运单号', index: 'transportSn' },
|
||||
{ title: '收支类型', index: 'incomeTypeLabel', className: 'text-center' },
|
||||
{ title: '交易时间', index: 'createTime', type: 'date', width: 150 },
|
||||
{ title: '流水号', index: 'channelPaySn', width: 170 },
|
||||
{ title: '交易类型', index: 'tradeTypeLabel', className: 'text-center', width: 150 },
|
||||
{ title: '交易单号', index: 'businessNumber' , width: 190},
|
||||
{ title: '订单号', index: 'orderSn' , width: 190},
|
||||
{ title: '运单号', index: 'transportSn', width: 190 },
|
||||
{ title: '收支类型', index: 'incomeTypeLabel', className: 'text-center', width: 150 },
|
||||
{
|
||||
title: '交易金额',
|
||||
index: 'amount',
|
||||
@ -185,9 +187,9 @@ export class DriverAccountDetailComponent implements OnInit {
|
||||
className: 'text-right',
|
||||
widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.accountBalance }) }
|
||||
},
|
||||
{ title: '付款方', index: 'payName'},
|
||||
{ title: '收款方', index: 'payeeName' },
|
||||
{ title: '备注', index: 'tradeContent' },
|
||||
{ title: '付款方', index: 'payName', width: 150},
|
||||
{ title: '收款方', index: 'incomeName', width: 150 },
|
||||
{ title: '备注', index: 'tradeContent' , width: 150},
|
||||
];
|
||||
}
|
||||
}
|
||||
|
||||
@ -221,7 +221,7 @@ export class FreightAccountDetailComponent implements OnInit {
|
||||
widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.accountBalance }) }
|
||||
},
|
||||
{ title: '付款方', index: 'payName' , width: 170},
|
||||
{ title: '收款方', index: 'payeeName', width: 170 },
|
||||
{ title: '收款方', index: 'incomeName', width: 170 },
|
||||
{ title: '备注', index: 'tradeContent', width: 170 }
|
||||
];
|
||||
}
|
||||
|
||||
@ -221,7 +221,7 @@ export class PlatformAccountDetailComponent implements OnInit {
|
||||
widget: { type: 'currency-chy', params: ({ record }) => ({ value: record.accountBalance }) }
|
||||
},
|
||||
{ title: '付款方', index: 'payName', className: 'text-center', width: 150 },
|
||||
{ title: '收款方', index: 'payeeName', className: 'text-center', width: 150 },
|
||||
{ title: '收款方', index: 'incomeName', className: 'text-center', width: 150 },
|
||||
{ title: '备注', index: 'tradeContent', className: 'text-center', width: 150 }
|
||||
];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user