historymoney.html 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <style type="text/css">
  2. .mwd_head_box{
  3. overflow: hidden;
  4. padding: 10px 0;
  5. }
  6. .mwd_head_li{
  7. float: left;
  8. overflow: hidden;
  9. margin-right: 2%;
  10. width: 48%;
  11. padding: 10px;
  12. background-color: #f4f4f4;
  13. box-sizing: border-box;
  14. border-radius: 3px;
  15. }
  16. .mwd_head_li:last-child{
  17. width: 50%;
  18. margin-right: 0;
  19. }
  20. @media (max-width: 640px){
  21. .mwd_head_li,
  22. .mwd_head_li:last-child{
  23. float: none;
  24. margin: 10px 0;
  25. width: auto;
  26. }
  27. }
  28. .mwd_head_tit{
  29. font-size: 16px;
  30. color: #666;
  31. line-height: 24px;
  32. }
  33. .mwd_head_money{
  34. font-size: 30px;
  35. color: #1581ff;
  36. line-height: 50px;
  37. }
  38. .mwd_head_other{
  39. overflow: hidden;
  40. }
  41. .mwd_head_other strong{
  42. margin-right: 10px;
  43. white-space: nowrap;
  44. font-size: 14px;
  45. color: #666;
  46. font-weight: normal;
  47. line-height: 20px;
  48. }
  49. .mwd_head_other span{
  50. color: #1581ff;
  51. }
  52. .card-view{
  53. padding: 5px;
  54. }
  55. </style>
  56. <ul class="nav nav-tabs">
  57. <li role="presentation"><a href="{:url('/admin/vipwithdraw/index')}?addtabs=1">提现信息</a></li>
  58. <li role="presentation" class="active"><a href="{:url('/admin/vipwithdraw/historymoney')}">提现记录</a></li>
  59. </ul>
  60. <div class="panel panel-default panel-intro">
  61. {:build_heading()}
  62. <div class="panel-body">
  63. <div id="myTabContent" class="tab-content">
  64. <div class="tab-pane fade active in" id="one">
  65. <div class="widget-body no-padding">
  66. <div id="toolbar" class="toolbar">
  67. <a href="javascript:;" class="btn btn-primary btn-refresh" title="{:__('Refresh')}" ><i class="fa fa-refresh"></i> </a>
  68. <a class="btn btn-success btn-myexcel-export btn-export" href="javascript:;"><i class="fa fa-user"></i> 导出</a>
  69. </div>
  70. <table id="historytable" class="table table-striped table-bordered table-hover" width="100%">
  71. </table>
  72. </div>
  73. </div>
  74. </div>
  75. </div>
  76. </div>