<ng-template pTemplate="body" let-item let-i="rowIndex">
<tr [title] = " 'Tran Code : ' + item.tranCode + '\n' + 'Tran Code Description : ' + item.tranCodeDescription"> <!--同时显示两个字段内容-->
<td class="textcenter" [title]=" item.paidTo !== null ? item.paidTo : '' "> <!--对字段内容进行三目运算-->
{{item.paidTo | stringPlus: 9}}
</td>
</tr>
</ng-template>