tablog.vm 1.19 KB
<div class="order-border-header">
     <table class="table table-striped table-bordered table-condensed grid table-hover">
                    <thead>
                        <tr>
                            <th>操作</th>
							<th>操作前订单状态</th>
							<th >操作后订单状态</th>
                            <th style="width:160px;">操作时间</th>
                            <th style="width:160px;">操作人</th>
                        </tr>
                    </thead>
                    <tbody>
                         #foreach(${item} in ${logs})
                          <tr>
                            <td class="textL">
								$!{item.action.name}
                            </td>
                            <td class="textL break-word">$!{item.previousStatus.name}</td>
                            <td class="textC">$!{item.currentStatus.name}</td>
							<td class="textC">#if($!{item.actionTime})$dateTool.format("yyyy-MM-dd HH:mm:ss",${item.actionTime})#end</td>
                            <td class="textC">【$!{item.userType.name}】$!{item.userId}</td>
                          </tr>
                        #end 
                    </tbody>
     </table>
</div>