| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <include file="public@header"/>
- </head>
- <body>
- <div class="wrap">
- <ul class="nav nav-tabs">
- <li class="active"><a>{:lang('USER_ADMINUSERACTION_INDEX')}</a></li>
- </ul>
- <form method="post" class="js-ajax-form margin-top-20">
- <php>$cycle_types=['0'=>'不限','1'=>'天','2'=>'小时','3'=>'永久']</php>
- <table class="table table-hover table-bordered">
- <thead>
- <tr>
- <th>操作</th>
- <th>积分更改</th>
- <th>金币更改</th>
- <th>奖励周期</th>
- <th>{:lang('ACTIONS')}</th>
- </tr>
- </thead>
- <tbody>
- <foreach name="actions" item="vo">
- <php></php>
- <tr>
- <td>{$vo.name} {$vo.action}</td>
- <td>{$vo.score}</td>
- <td>{$vo.coin}</td>
- <th>
- <eq name="vo.cycle_type" value="0">
- 不限
- <else/>
- {$vo.reward_number}次/{$vo.cycle_time}{$cycle_types[$vo['cycle_type']]}
- </eq>
- </th>
- <td>
- <a class="btn btn-xs btn-primary" href="{:url('AdminUserAction/edit')}?id={$vo.id}" title="编辑"
- data-toggle="tooltip">
- <i class="fa fa-edit fa-fw"></i>
- </a>
- </td>
- </tr>
- </foreach>
- </tbody>
- </table>
- <div class="pagination">{$page}</div>
- </form>
- </div>
- <script src="__STATIC__/js/admin.js?v={$_static_version}"></script>
- </body>
- </html>
|