overlist.html 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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/overlist')}">过期的矿机</a></span>
  11. </div>
  12. <div class="data-table table-striped">
  13. <table class="">
  14. <thead>
  15. <tr>
  16. <th class="row-selected row-selected"><input class="check-all" type="checkbox"/></th>
  17. <th class="">ID</th>
  18. <th class="">会员账号</th>
  19. <th class="">类型</th>
  20. <th class="">名称</th>
  21. <th class="">图片</th>
  22. <th class="">购买时间</th>
  23. <th class="">结束时间</th>
  24. <th class="">矿机状态</th>
  25. <th class="">收益次数</th>
  26. <th class="">产出币种</th>
  27. </tr>
  28. </thead>
  29. <tbody>
  30. <notempty name="list">
  31. <volist name="list" id="vo">
  32. <tr>
  33. <td><input class="ids" type="checkbox" name="id[]" value="{$vo.id}"/></td>
  34. <td>{$vo.id}</td>
  35. <td>{$vo.username}</td>
  36. <td>
  37. <if condition="$vo.type eq 1">
  38. 独资
  39. <elseif condition="$vo.type eq 2" />
  40. 共享
  41. </if>
  42. </td>
  43. <td>{$vo.kjtitle}</td>
  44. <td><img src="/Upload/public/{$vo.imgs}" style="height:50px;"></td>
  45. <td><?php echo date("m-d H:i",strtotime($vo['addtime']));?></td>
  46. <td><?php echo date("m-d H:i",strtotime($vo['endtime']));?></td>
  47. <td><span style="color:red;">过期</span></td>
  48. <td><?php echo ($vo['cycle'] - $vo['synum']);?>次</td>
  49. <td><?php echo strtoupper($vo['outcoin']);?></td>
  50. </tr>
  51. </volist>
  52. <else/>
  53. <td colspan="12" class="text-center empty-info"><i class="glyphicon glyphicon-exclamation-sign"></i>暂无数据</td>
  54. </notempty>
  55. </tbody>
  56. </table>
  57. <div class="page">
  58. <div>{$page}</div>
  59. </div>
  60. </div>
  61. </div>
  62. </div>
  63. <include file="Public:footer"/>
  64. <block name="script">
  65. <script type="text/javascript" charset="utf-8">
  66. //导航高亮
  67. highlight_subnav("{:U('Kuangm/overlist')}");
  68. </script>
  69. </block>