my.html 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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. <div class="panel panel-default panel-intro">
  57. {:build_heading()}
  58. <div class="panel-body">
  59. <div id="myTabContent" class="tab-content">
  60. <div class="mwd_head_box">
  61. <div class="mwd_head_li">
  62. <div class="mwd_head_tit">今日赏金金额</div>
  63. <div class="mwd_head_money">¥{$today_reward_all|number_format=###, 2, '.', ''}</div>
  64. <div class="mwd_head_other">
  65. <strong><span></span></strong>
  66. </div>
  67. </div>
  68. <div class="mwd_head_li">
  69. <div class="mwd_head_tit">累计赏金金额(不含当日)</div>
  70. <div class="mwd_head_money">¥{$reward_all|number_format=###, 2, '.', ''}</div>
  71. <div class="mwd_head_other">
  72. <strong>未提现:<span>¥{$no_cash_money|number_format=###, 2, '.', ''}</span></strong>
  73. <strong>提现中:<span>¥{$reward_money.cash_money|number_format=###, 2, '.', ''}</span></strong>
  74. <strong>已打款:<span>¥{$reward_money.count_cash_money|number_format=###, 2, '.', ''}</span></strong>
  75. </div>
  76. </div>
  77. </div>
  78. <div class="tab-pane fade active in" id="one">
  79. <div class="widget-body no-padding">
  80. <div id="toolbar" class="toolbar">
  81. <a href="javascript:;" class="btn btn-primary btn-refresh" title="{:__('Refresh')}" ><i class="fa fa-refresh"></i> </a>
  82. <a href="javascript:;" class="btn btn-success btn-add {:$auth->check('reward/withdraw/add')?'':'hide'}" title="{:__('Add')}" ><i class="fa fa-plus"></i>申请提现</a>
  83. </div>
  84. <table id="table" class="table table-striped table-bordered table-hover"
  85. data-operate-edit="{:$auth->check('reward/withdraw/edit')}"
  86. width="100%">
  87. </table>
  88. </div>
  89. </div>
  90. </div>
  91. </div>
  92. </div>