Merge branch 'develop' of https://gitlab.eascs.com/tms-ui/tms-obc-web into develop

This commit is contained in:
wangshiming
2022-02-28 19:43:55 +08:00
2 changed files with 6 additions and 3 deletions

View File

@ -139,6 +139,9 @@
<ng-template st-row="no" let-item let-index="index" let-column="column">
{{ index + 1 }}
</ng-template>
<ng-template st-row="phxmoney" let-item let-index="index" let-column="column">
{{ item.phxmoney | currency}}
</ng-template>
</st>
</nz-tab>
</nz-tabset>

View File

@ -100,9 +100,9 @@ export class CostManagementDetailComponent implements OnInit {
{ title: '付款单号', index: 'phxHId' },
{ title: '要求日期', index: 'billTime' },
{ title: '确认日期', index: 'feedate' },
{ title: '付款状态', index: 'callNo' },
{ title: '应付金额', index: 'callNo' },
{ title: '付款金额', index: 'phxmoney' }
// { title: '付款状态', index: 'callNo' },
{ title: '应付金额', render: 'phxmoney' },
{ title: '付款金额', render: 'phxmoney' }
]
};
}