判断item.totalPrice
是否为null, 如果不为null 直接传递值, 为null则置0
html
<table>
<tr>
<th>排名</th>
<th>商品名</th>
<th>成交金额</th>
</tr>
<#list items as item>
<tr>
<td>${item?index + 1}</td>
<td>${item.name}</td>
<td>
<#if item.totalPrice??>
${item.totalPrice}
<#else>
${0}
</#if>
</td>
</tr>
</#list>
</table>