This commit is contained in:
Taric Xin
2022-04-18 14:30:56 +08:00
parent 6fcb57a45e
commit c5edc81049
2 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ export class ETCInvoicedListComponent implements OnInit {
const modal = this.nzModalService.create({
nzTitle: '运单交易明细',
nzContent: TransactionDetailsComponent,
nzWidth: 900,
nzWidth: 950,
nzComponentParams: { data: item },
nzOnOk: com => {
console.log(com.selectedData);

View File

@ -73,7 +73,7 @@ export class TransactionDetailsComponent implements OnInit {
get reqParams() {
const a: any = {};
if (this.data?.id) {
a.wayBillId = this.data?.wayBillId;
a.waybillId = this.data?.wayBillId;
}
const params: any = Object.assign({}, this.sf?.value || {});
delete params._$expand;