diff --git a/src/app/routes/financial-management/components/payment-order/payment-order.component.ts b/src/app/routes/financial-management/components/payment-order/payment-order.component.ts index e5668635..a33ede6e 100644 --- a/src/app/routes/financial-management/components/payment-order/payment-order.component.ts +++ b/src/app/routes/financial-management/components/payment-order/payment-order.component.ts @@ -241,6 +241,7 @@ export class PaymentOrderComponent implements OnInit { { title: '付款备注', index: 'callNo' }, { title: '操作', + width: '90px', buttons: [ { text: '浏览', diff --git a/src/app/routes/financial-management/components/voucher-management/voucher-management.component.ts b/src/app/routes/financial-management/components/voucher-management/voucher-management.component.ts index a34465c0..cc042cbf 100644 --- a/src/app/routes/financial-management/components/voucher-management/voucher-management.component.ts +++ b/src/app/routes/financial-management/components/voucher-management/voucher-management.component.ts @@ -296,6 +296,7 @@ export class VoucherManagementComponent implements OnInit { { title: '创建人', index: 'sts' }, { title: '操作', + width: '90px', buttons: [ { text: '浏览' diff --git a/src/app/routes/financial-management/components/withdrawals-record/withdrawals-record.component.less b/src/app/routes/financial-management/components/withdrawals-record/withdrawals-record.component.less index cd8c3436..7f0f8379 100644 --- a/src/app/routes/financial-management/components/withdrawals-record/withdrawals-record.component.less +++ b/src/app/routes/financial-management/components/withdrawals-record/withdrawals-record.component.less @@ -16,8 +16,8 @@ } .ant-tabs-tab-btn { - padding-left : 16px; padding-right: 16px; + padding-left : 16px; } .text-truncate { @@ -26,16 +26,16 @@ } .expend-options { - margin-top: 0px; + margin-top: 0; } @media (min-width: 1200px) { .expend-options { - max-width: 400px; position : absolute; right : 0; bottom : 25px; + max-width: 400px; } } \ No newline at end of file diff --git a/src/app/routes/financial-management/components/withdrawals-record/withdrawals-record.component.ts b/src/app/routes/financial-management/components/withdrawals-record/withdrawals-record.component.ts index a3565c95..416ef781 100644 --- a/src/app/routes/financial-management/components/withdrawals-record/withdrawals-record.component.ts +++ b/src/app/routes/financial-management/components/withdrawals-record/withdrawals-record.component.ts @@ -254,10 +254,10 @@ export class WithdrawalsRecordComponent implements OnInit { { title: '失败原因', index: 'failCause', width: 150 }, { title: '操作', - width: 120, + width: '110px', buttons: [ { - text: '审核', + text: '审核  ', iif: item => item.refundStatus === '1', click: item => this.auditAction(item) }, @@ -267,7 +267,7 @@ export class WithdrawalsRecordComponent implements OnInit { // click: item => this.auditAction(item) }, { - text: '详情', + text: '详情  ', click: item => this.router.navigate(['/financial-management/withdrawals-record/detail/' + item.id]) } ]