1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <!-- header start -->
- <include file="Public/Header" />
- <!-- header end -->
- <!-- 上传按钮样式 -->
- <style type="text/css">
- .webuploader-container {float: left;height: 28px;}
- .webuploader-pick {height: 28px;line-height: 28px;border-radius:0;padding: 0px 12px;}
- .webuploader-element-invisible {display: none;}
- </style>
- <!-- right content start -->
- <div class="content-right">
- <div class="content">
- <!-- form start -->
- <form class="am-form view-list" action="{{:U('Admin/VipVote/Index')}}" method="POST">
- <div class="am-g">
- <input type="text" class="am-radius form-keyword" style="width: 20rem;display: inline-block;" placeholder="uid搜索" name="keyword" <present name="keyword"> value="{{$keyword}}"</present> />
- <label>分页每页显示条数:</label>
- <input type="text" class="am-radius form-keyword" style="width: 10rem;display: inline-block;" placeholder="分页显示条数" name="listRows" <present name="listRows"> value="{{$listRows}}"</present> />
- <button type="submit" class="am-btn am-btn-secondary am-btn-sm am-radius form-submit">查询</button>
- </div>
- </form>
- <!-- form end -->
- <!-- operation start -->
- <div class="am-g m-t-15">
- <a href="{{:U('Admin/Vote/SaveInfo')}}" class="am-btn am-btn-secondary am-radius am-btn-xs am-icon-plus" style="float: left;"> {{:L('common_operation_add')}}</a>
- </div>
- <div class="am-g" id="faillist">
- </div>
- <!-- operation end -->
- <!-- list start -->
- <table class="am-table am-table-striped am-table-hover am-text-middle m-t-10">
- <thead>
- <tr>
- <th>序号</th>
- <th>ID</th>
- <th class="am-hide-sm-only">活动</th>
- <th class="am-hide-sm-only">uid</th>
- <th class="am-hide-sm-only">已投票数</th>
- <th class="am-hide-sm-only">创建时间</th>
- <th class="am-hide-sm-only">更新时间</th>
- <th>{{:L('common_operation_name')}}</th>
- </tr>
- </thead>
- <tbody>
- <if condition="!empty($List)">
- <foreach name="List" item="v">
- <tr id="data-list-{{$v.source_id}}">
- <td class="am-hide-sm-only">{{$key+1}}</td>
- <td class="am-hide-sm-only">{{$v.id}}</td>
- <td class="am-hide-sm-only">{{$v.act_id}}</td>
- <td class="am-hide-sm-only">{{$v.uid}}</td>
- <td class="am-hide-sm-only">{{$v.num}}</td>
- <td class="am-hide-sm-only">{{$v.created_at}}</td>
- <td class="am-hide-sm-only">{{$v.updated_at}}</td>
- <td class="view-operation">
- <a href="{{:U('Admin/VipVote/SaveInfo', array('id'=>$v['id']))}}">
- <button class="am-btn am-btn-default am-btn-xs am-radius am-icon-edit" data-am-popover="{content: '{{:L('common_operation_edit')}}', trigger: 'hover focus'}"></button>
- </a>
- <button class="am-btn am-btn-default am-btn-xs am-radius am-icon-trash-o submit-delete" data-url="{{:U('Admin/VipVote/Delete')}}" data-am-popover="{content: '{{:L('common_operation_delete')}}', trigger: 'hover focus'}" data-id="{{$v.id}}"></button>
- </td>
- </tr>
- </foreach>
- <else />
- <tr><td colspan="10" class="table-no">{{:L('common_not_data_tips')}}</td></tr>
- </if>
- </tbody>
- </table>
- <!-- list end -->
- <!-- page start -->
- <div id="pages" class="p">{{$page}}</div>
- <!-- page end -->
- </div>
- </div>
- <!-- right content end -->
-
- <!-- footer start -->
- <include file="Public/Footer" />
- <!-- footer end -->
-
|