edit
This commit is contained in:
@ -91,6 +91,16 @@ export class TransactionFlowComponent {
|
|||||||
placeholder: '请输入'
|
placeholder: '请输入'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
orderSn: {
|
||||||
|
type: 'string',
|
||||||
|
title: '订单号',
|
||||||
|
ui: {
|
||||||
|
placeholder: '请输入',
|
||||||
|
visibleIf: {
|
||||||
|
expand: (value: boolean) => value
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
tradeType: {
|
tradeType: {
|
||||||
type: 'string',
|
type: 'string',
|
||||||
title: '交易类型',
|
title: '交易类型',
|
||||||
@ -216,6 +226,7 @@ export class TransactionFlowComponent {
|
|||||||
{ title: '流水号', index: 'transactionNumber', width: 180 },
|
{ title: '流水号', index: 'transactionNumber', width: 180 },
|
||||||
{ title: '交易类型', index: 'tradeTypeLabel', width: 120 },
|
{ title: '交易类型', index: 'tradeTypeLabel', width: 120 },
|
||||||
{ title: '关联单号', index: 'businessNumber', width: 150 },
|
{ title: '关联单号', index: 'businessNumber', width: 150 },
|
||||||
|
{ title: '订单号', index: 'orderSn', width: 150 },
|
||||||
{ title: '账户类型', index: 'accountTypeLabel', width: 130 },
|
{ title: '账户类型', index: 'accountTypeLabel', width: 130 },
|
||||||
{ title: '账户名称', index: 'roleName', width: 180 },
|
{ title: '账户名称', index: 'roleName', width: 180 },
|
||||||
{ title: '所属项目', index: 'projectName', width: 140 },
|
{ title: '所属项目', index: 'projectName', width: 140 },
|
||||||
@ -262,7 +273,6 @@ export class TransactionFlowComponent {
|
|||||||
];
|
];
|
||||||
}
|
}
|
||||||
exportList() {
|
exportList() {
|
||||||
|
this.service.exportStart({ ...this.sf.value, pageSize: -1 }, this.service.$api_get_exportAccountBalanceDetailPage);
|
||||||
this.service.exportStart( { ...this.sf.value, pageSize: -1 }, this.service.$api_get_exportAccountBalanceDetailPage,);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -173,7 +173,7 @@ export class FreightAccountService extends ShipperBaseService {
|
|||||||
const { bankType, snglFlgCd } = params;
|
const { bankType, snglFlgCd } = params;
|
||||||
if (url) {
|
if (url) {
|
||||||
if (params?.bankType === '1') {
|
if (params?.bankType === '1') {
|
||||||
window.open(params?.receiptUrl);
|
window.open(url);
|
||||||
} else if (params?.bankType === '2') {
|
} else if (params?.bankType === '2') {
|
||||||
window.open(url);
|
window.open(url);
|
||||||
// this.exportFile({ bankType, receiptUrl: url, bankSerialNumber: snglFlgCd }, this.$api_download_receipt_apply_byte);
|
// this.exportFile({ bankType, receiptUrl: url, bankSerialNumber: snglFlgCd }, this.$api_download_receipt_apply_byte);
|
||||||
|
|||||||
Reference in New Issue
Block a user