djprofit.html 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <include file="Public:header"/>
  2. <div id="main-content">
  3. <div id="top-alert" class="fixed alert alert-error" style="display: none;">
  4. <button class="close fixed" style="margin-top: 4px;">&times;</button>
  5. <div class="alert-content">警告内容</div>
  6. </div>
  7. <div id="main" class="main">
  8. <div class="main-title-h">
  9. <span class="h1-title">矿机管理</span>
  10. <span class="h2-title">>><a href="{:U('Kuangm/djprofit')}">收益列表</a></span>
  11. </div>
  12. <div class="cf">
  13. <div class="search-form fr cf" style="43px;float: none !important;">
  14. <div class="sleft">
  15. <form name="formSearch" id="formSearch" method="get" name="form1">
  16. <input type="text" name="username" class="search-input form-control" value="" placeholder="输入用户账号" />
  17. <a class="sch-btn" href="javascript:;" id="search"> <i class="btn-search"></i> </a>
  18. </form>
  19. <script>
  20. //搜索功能
  21. $(function () {
  22. $('#search').click(function () {
  23. $('#formSearch').submit();
  24. });
  25. });
  26. //回车搜索
  27. $(".search-input").keyup(function (e) {
  28. if (e.keyCode === 13) {
  29. $("#search").click();
  30. return false;
  31. }
  32. });
  33. </script>
  34. </div>
  35. </div>
  36. </div>
  37. <div class="data-table table-striped">
  38. <table class="">
  39. <thead>
  40. <tr>
  41. <th class="row-selected row-selected"><input class="check-all" type="checkbox"/></th>
  42. <th class="">ID</th>
  43. <th class="">会员账号</th>
  44. <th class="">冻结金额</th>
  45. <th class="">冻结币种</th>
  46. <th class="">状态</th>
  47. <th class="">冻结时间</th>
  48. <th class="">解冻结时间</th>
  49. <th class="">冻结说明</th>
  50. </tr>
  51. </thead>
  52. <tbody>
  53. <notempty name="list">
  54. <volist name="list" id="vo">
  55. <tr>
  56. <td><input class="ids" type="checkbox" name="id[]" value="{$vo.id}"/></td>
  57. <td>{$vo.id}</td>
  58. <td>{$vo.username}</td>
  59. <td>{$vo.num}</td>
  60. <td><?php echo strtoupper($vo['coin']);?></td>
  61. <td>
  62. <if condition="$vo.status eq 1">
  63. <span style="color:green">待释放</span>
  64. <elseif condition="$vo.status eq 2" />
  65. <span style="color:red">已释放</span>
  66. </if>
  67. </td>
  68. <td>{$vo.addday}</td>
  69. <td>{$vo.thawday}</td>
  70. <td>{$vo.remark}</td>
  71. </tr>
  72. </volist>
  73. <else/>
  74. <td colspan="12" class="text-center empty-info"><i class="glyphicon glyphicon-exclamation-sign"></i>暂无数据</td>
  75. </notempty>
  76. </tbody>
  77. </table>
  78. <div class="page">
  79. <div>{$page}</div>
  80. </div>
  81. </div>
  82. </div>
  83. </div>
  84. <include file="Public:footer"/>
  85. <block name="script">
  86. <script type="text/javascript" charset="utf-8">
  87. //导航高亮
  88. highlight_subnav("{:U('Kuangm/djprofit')}");
  89. </script>
  90. </block>