<p>操作记录</p>
<div class="tabs-box table-responsive">
    <table class="table table-bordered table-hover">
        <thead>
        <tr>
            <th>操作时间</th>
            <th>操作人</th>
            <th>操作事件</th>
        </tr>
        </thead>
        <tbody>      
            <?php foreach ($actionLog as $k=>$v) { ?>
                <?php if ($k < 4) { ?>
                    <tr>
                        <td width="15%"><?= date('Y-m-d H:i:s', $v->create_time) ?></td>
                        <td width="10%"><?= App\Http\Controllers\getOperatorName($v->operator_id, $v->operator_type) ?></td>
                        <td><?= $v->event ?></td>
                    </tr>
                <?php } else { ?>  
                    <tr class="other-infos">
                        <td width="15%"><?= date('Y-m-d H:i:s', $v->create_time) ?></td>
                        <td width="10%"><?= App\Http\Controllers\getOperatorName($v->operator_id, $v->operator_type) ?></td>
                        <td><?= $v->event ?></td>
                    </tr>                                
                <?php } ?>

                <?php if ($k >= 4 && $k == count($actionLog)-1) { ?>
                    <tr>
                        <td colspan="3" class="text-center click-down"><i class="fa fa-angle-double-down">点击展开</i></td>
                        <td colspan="3" class="text-center click-up"><i class="fa fa-angle-double-up">点击收起</i></td>
                    </tr>
                <?php } ?>
            <?php } ?>                  
        </tbody>
    </table>
</div>