12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <include file="Public:header"/>
- <script src="__PUBLIC__/Admin/js/layer/laydate/laydate.js"></script>
- <div id="main-content">
- <div id="top-alert" class="fixed alert alert-error" style="display: none;">
- <button class="close fixed" style="margin-top: 4px;">×</button>
- <div class="alert-content">警告内容</div>
- </div>
- <div id="main" class="main">
- <div class="main-title-h">
- <span class="h1-title">财务明细</span>
- </div>
- <div class="cf">
- <div class="search-form fl cf">
- <div class="sleft">
- <form name="formSearch" id="formSearch" method="get" name="form1" >
- <select style=" width: 160px; float: left; margin-right: 10px;" name="field" class="form-control">
- <option value="username" <eq name="Think.get.field" value="username">selected</eq>>用户名</option>
- </select>
- <input type="text" name="name" class="search-input form-control " value="{$Think.get.name}" placeholder="请输入查询内容" style="">
- <a class="sch-btn" href="javascript:;" id="search"> <i class="btn-search"></i> </a>
- </form>
- <script>
- //搜索功能
- $(function(){
- $('#search').click(function(){
- $('#formSearch').submit();
- });
- });
- //回车搜索
- $(".search-input").keyup(function(e){
- if(e.keyCode===13){
- $("#search").click();
- return false;
- }
- });
- </script>
- </div>
- </div>
- </div>
- <div class="data-table table-striped">
- <table class="">
- <thead>
- <tr>
- <th class="row-selected row-selected"><input class="check-all" type="checkbox"/></th>
- <th class="">ID</th>
- <th class="">用户名</th>
- <th class="">操作币种</th>
- <th class="">操作数量</th>
- <th class="">操作类型</th>
- <th class="">操作之后</th>
- <th class="">操作说明</th>
- <th class="">操作时间</th>
- <th class="">状态</th>
- </tr>
- </thead>
- <tbody>
- <notempty name="list">
- <volist name="list" id="vo">
- <tr>
- <td><input class="ids" type="checkbox" name="id[]" value="{$vo.id}"/></td>
- <td>{$vo.id}</td>
- <td>{$vo.username}</td>
- <td><?php echo strtoupper($vo['coinname']);?></td>
- <td>{$vo.num}</td>
- <td><?php if($vo['type'] == '55'){
- echo '后台手动操作';
- }else{
- echo gettype_info($vo['type']);
- } ?></td>
- <td>{$vo.afternum}</td>
- <td>{$vo['remark']}</td>
- <td>{$vo['addtime']}</td>
- <td>正常</td>
- </tr>
- </volist>
- <else/>
- <td colspan="12" class="text-center empty-info"><i class="glyphicon glyphicon-exclamation-sign"></i>暂无数据</td>
- </notempty>
- </tbody>
- </table>
- <div class="page">
- <div>{$page}</div>
- </div>
- </div>
- </div>
- </div>
- <include file="Public:footer"/>
- <block name="script">
- <script type="text/javascript" charset="utf-8">
- //导航高亮
- highlight_subnav("{:U('Finance/index')}");
- </script>
- </block>
|