| 1234567891011121314151617181920212223242526272829303132 |
- <include file="public@header"/>
- </head>
- <body>
- <div class="wrap js-check-wrap">
- <form class="js-ajax-form" action="" method="post">
- <table class="table table-hover table-bordered table-list">
- <thead>
- <tr>
- <th width="100">操作人</th>
- <th width="120">内容</th>
- <th width="120">操作时间</th>
- </tr>
- </thead>
- <foreach name="list" item="vo">
- <tr>
- <td>{$vo.name}</td>
- <td>{$vo.content}</td>
- <td>{$vo.create_time}</td>
- </tr>
- </foreach>
- </table>
- <ul class="pagination">{$page|default=''}</ul>
- </form>
- </div>
- <script src="__STATIC__/js/admin.js"></script>
- <script>
- function reloadPage(win) {
- win.location.reload();
- }
- </script>
- </body>
- </html>
|