user.html 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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('Coin/index')}">币种列表</a></span>
  11. </div>
  12. <div class="cf">
  13. <div class="search-form fr cf">
  14. <div class="sleft">
  15. </div>
  16. </div>
  17. </div>
  18. <div class="data-table table-striped">
  19. <table class="">
  20. <thead>
  21. <tr>
  22. <th class="row-selected row-selected"><input class="check-all" type="checkbox" /></th>
  23. <th class="">ID</th>
  24. <th class="">标签(用户名)</th>
  25. <th class="">钱包余额</th>
  26. <th class="">钱包地址</th>
  27. <th class="">站内余额</th>
  28. <th class="">站内地址</th>
  29. </tr>
  30. </thead>
  31. <tbody>
  32. <notempty name="list">
  33. <volist name="list" id="vo">
  34. <tr>
  35. <td><input class="ids" type="checkbox" name="id[]" value="{$vo.id}" /></td>
  36. <td>{$vo.id}</td>
  37. <td>
  38. {$key}
  39. </td>
  40. <td>{$vo.num}</td>
  41. <td>{$vo.addr}</td>
  42. <td>可用{$vo.xnb}<br>冻结{$vo.xnbd}<br>总额{$vo.zj}</td>
  43. <td>{$vo.xnbb}</td>
  44. </tr>
  45. </volist> <else />
  46. <td colspan="12" class="text-center empty-info"><i class="glyphicon glyphicon-exclamation-sign"></i>暂无数据</td>
  47. </notempty>
  48. </tbody>
  49. </table>
  50. <div class="page">
  51. <div>{$page}</div>
  52. </div>
  53. </div>
  54. </div>
  55. </div>
  56. <script type="text/javascript">
  57. //主导航高亮
  58. $('.config-box').addClass('current');
  59. $('.config-coin').addClass('current');
  60. </script>
  61. <include file="Public:footer" />