index.html 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. <style type="text/css">
  2. .ord_red,
  3. .ord_yellow,
  4. .ord_green{
  5. display: inline-block;
  6. padding: 4px 10px;
  7. color: #fff;
  8. white-space: nowrap;
  9. border-radius: 3px;
  10. }
  11. .ord_red{
  12. background-color: red;
  13. }
  14. .ord_green{
  15. background-color: green;
  16. }
  17. .ord_yellow{
  18. background-color: yellow;
  19. color: red;
  20. }
  21. .card-view{
  22. padding: 5px;
  23. }
  24. #withdraw{
  25. margin-left: 10px;
  26. vertical-align: middle;
  27. font-size: 13px;
  28. line-height: 24px;
  29. }
  30. .mwd_head_box{
  31. overflow: hidden;
  32. padding: 10px 0;
  33. }
  34. .mwd_head_li{
  35. float: left;
  36. overflow: hidden;
  37. margin-right: 2%;
  38. width: 31.33%;
  39. padding: 10px;
  40. background-color: #fff;
  41. box-sizing: border-box;
  42. border-radius: 3px;
  43. }
  44. .mwd_head_li:last-child{
  45. width: 33.33%;
  46. margin-right: 0;
  47. }
  48. @media (max-width: 640px){
  49. .mwd_head_li,
  50. .mwd_head_li:last-child{
  51. float: none;
  52. margin: 10px 0;
  53. width: auto;
  54. }
  55. }
  56. .mwd_head_tit{
  57. font-size: 16px;
  58. color: #666;
  59. line-height: 24px;
  60. }
  61. .mwd_head_money{
  62. font-size: 30px;
  63. color: #1581ff;
  64. line-height: 50px;
  65. }
  66. .mwd_head_other{
  67. overflow: hidden;
  68. }
  69. .mwd_head_other strong{
  70. margin-right: 10px;
  71. white-space: nowrap;
  72. font-size: 14px;
  73. color: #666;
  74. font-weight: normal;
  75. line-height: 20px;
  76. }
  77. .mwd_head_other span{
  78. color: #1581ff;
  79. }
  80. </style>
  81. <div class="mwd_head_box">
  82. <div class="mwd_head_li">
  83. <div class="mwd_head_tit">待打款</div>
  84. <div class="mwd_head_money">¥<span id="state1">(加载中..)</span></div>
  85. </div>
  86. <div class="mwd_head_li">
  87. <div class="mwd_head_tit">打款中</div>
  88. <div class="mwd_head_money">¥<span id="state2">(加载中..)</span></div>
  89. </div>
  90. <div class="mwd_head_li">
  91. <div class="mwd_head_tit">已打款</div>
  92. <div class="mwd_head_money">¥<span id="state3">(加载中..)</span></div>
  93. </div>
  94. </div>
  95. <div class="panel panel-default panel-intro">
  96. {:build_heading()}
  97. <div class="panel-body">
  98. <div id="myTabContent" class="tab-content">
  99. <div class="tab-pane fade active in" id="one">
  100. <div class="widget-body no-padding">
  101. <div id="toolbar" class="toolbar">
  102. <a href="javascript:;" class="btn btn-primary btn-refresh" title="{:__('Refresh')}" ><i class="fa fa-refresh"></i> </a>
  103. <div class="dropdown btn-group {:$auth->check('withdraw/multi')}">
  104. <a class="btn btn-primary btn-more dropdown-toggle btn-disabled disabled" data-toggle="dropdown"><i class="fa fa-cog"></i>更多</a>
  105. <ul class="dropdown-menu text-left" role="menu">
  106. <!--<li><a class="btn btn-link btn-multi btn-disabled disabled" href="javascript:;" data-params="state=1"><i class="fa fa-eye"></i>提现中</a></li>-->
  107. <li><a class="btn btn-link btn-multi btn-disabled disabled" href="javascript:;" data-params="state=2"><i class="fa fa-eye-slash"></i>打款中</a></li>
  108. <li><a class="btn btn-link btn-multi btn-disabled disabled" href="javascript:;" data-params="state=3"><i class="fa fa-eye-slash"></i>已打款</a></li>
  109. </ul>
  110. </div>
  111. <a class="btn btn-success btn-export btn-myexcel-export" href="javascript:;"><i class="fa fa-user"></i> 导出</a>
  112. </div>
  113. </div>
  114. <table id="table" class="table table-striped table-bordered table-hover"
  115. data-operate-edit="{:$auth->check('withdraw/edit')}"
  116. width="100%">
  117. </table>
  118. </div>
  119. </div>
  120. </div>
  121. </div>
  122. </div>