<table class="datagrid-table">
<thead>
<tr>
<th>序号</th>
<th>修改时间</th>
<th>修改价格</th>
</tr>
</thead>
<tbody>
<#if (page.result??)&&(page.result?size>0)>
<#assign index=0 />
<#list page.result as goodsHistoryPrice>
<#if goodsHistoryPrice_index <= 2>
<tr>
<td>${page.firstElementIndex + goodsHistoryPrice_index }</td>
<td>
<#if goodsHistoryPrice.createTime??>${goodsHistoryPrice.createTime?string('yyyy-MM-dd HH:mm:ss')}</#if>
</td>
<td>
${(goodsHistoryPrice.historyPrice!'')?string('0.00')}
</td>
</tr>
</#if>
<#assign index=index+1 />
</#list>
<#else>
<tr>
<td colspan="18">没有符合条件的记录</td>
</tr>
</#if>
</tbody>
</table>
<thead>
<tr>
<th>序号</th>
<th>修改时间</th>
<th>修改价格</th>
</tr>
</thead>
<tbody>
<#if (page.result??)&&(page.result?size>0)>
<#assign index=0 />
<#list page.result as goodsHistoryPrice>
<#if goodsHistoryPrice_index <= 2>
<tr>
<td>${page.firstElementIndex + goodsHistoryPrice_index }</td>
<td>
<#if goodsHistoryPrice.createTime??>${goodsHistoryPrice.createTime?string('yyyy-MM-dd HH:mm:ss')}</#if>
</td>
<td>
${(goodsHistoryPrice.historyPrice!'')?string('0.00')}
</td>
</tr>
</#if>
<#assign index=index+1 />
</#list>
<#else>
<tr>
<td colspan="18">没有符合条件的记录</td>
</tr>
</#if>
</tbody>
</table>