From 51e7ebf4d329640ceca12ae19c2ec5a32bad94ea Mon Sep 17 00:00:00 2001 From: Taric Xin Date: Fri, 4 Mar 2022 10:45:05 +0800 Subject: [PATCH] edit --- .../payable-order-detail.component.ts | 8 ++++---- .../components/payable-order/payable-order.component.ts | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/routes/financial-management/components/payable-order/payable-order-detail/payable-order-detail.component.ts b/src/app/routes/financial-management/components/payable-order/payable-order-detail/payable-order-detail.component.ts index 25e72be4..939ea639 100644 --- a/src/app/routes/financial-management/components/payable-order/payable-order-detail/payable-order-detail.component.ts +++ b/src/app/routes/financial-management/components/payable-order/payable-order-detail/payable-order-detail.component.ts @@ -41,7 +41,7 @@ export class PayableOrderDetailComponent implements OnInit { } beforeReq = (requestOptions: STRequestOptions) => { - Object.assign(requestOptions.body, { billHId: this.billHId }); + Object.assign(requestOptions.body, { phxHId: this.billHId }); if (this.sf) { Object.assign(requestOptions.body, { ...this.sf.value, @@ -159,14 +159,14 @@ export class PayableOrderDetailComponent implements OnInit { private initST(): STColumn[] { return [ { title: '序号', render: 'no', width: 80 }, - { title: '费用号', index: 'feeHCode', width: 100 }, + { title: '费用号', index: 'feeHCode', width: 140 }, { title: '费用日期', index: 'feedate', type: 'date', width: 150 }, - { title: '订单号', index: 'billHCode', width: 100 }, + { title: '订单号', index: 'billHCode', width: 140 }, { title: '订单日期', index: 'billTime', width: 150 }, { title: '费用类型', index: 'feetype', width: 90 }, { title: '订单费用科目', index: 'billLTypeLabel', width: 100 }, { title: '费用科目', index: 'feeSubIdName', width: 140 }, - { title: '结算客户', index: 'cnoName', width: 100 }, + { title: '结算客户', index: 'cnoName', width: 140 }, { title: '已收金额', index: 'phxmoney', diff --git a/src/app/routes/financial-management/components/payable-order/payable-order.component.ts b/src/app/routes/financial-management/components/payable-order/payable-order.component.ts index 66ceac3b..65872e27 100644 --- a/src/app/routes/financial-management/components/payable-order/payable-order.component.ts +++ b/src/app/routes/financial-management/components/payable-order/payable-order.component.ts @@ -263,7 +263,7 @@ export class PayableOrderComponent implements OnInit { { text: '浏览', click: item => - this.router.navigate(['/financial-management/payable-order/detail/' + item.id], { queryParams: { billHId: item.billHId } }) + this.router.navigate(['/financial-management/payable-order/detail/' + item.id], { queryParams: { billHId: item.id } }) } ] }