12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <style type="text/css">
- .mwd_head_box{
- overflow: hidden;
- padding: 10px 0;
- }
- .mwd_head_li{
- float: left;
- overflow: hidden;
- margin-right: 2%;
- width: 48%;
- padding: 10px;
- background-color: #f4f4f4;
- box-sizing: border-box;
- border-radius: 3px;
- }
- .mwd_head_li:last-child{
- width: 50%;
- margin-right: 0;
- }
- @media (max-width: 640px){
- .mwd_head_li,
- .mwd_head_li:last-child{
- float: none;
- margin: 10px 0;
- width: auto;
- }
- }
- .mwd_head_tit{
- font-size: 16px;
- color: #666;
- line-height: 24px;
- }
- .mwd_head_money{
- font-size: 30px;
- color: #1581ff;
- line-height: 50px;
- }
- .mwd_head_other{
- overflow: hidden;
- }
- .mwd_head_other strong{
- margin-right: 10px;
- white-space: nowrap;
- font-size: 14px;
- color: #666;
- font-weight: normal;
- line-height: 20px;
- }
- .mwd_head_other span{
- color: #1581ff;
- }
- .card-view{
- padding: 5px;
- }
- </style>
- <ul class="nav nav-tabs">
- <li role="presentation"><a href="{:url('/admin/vipwithdraw/index')}?addtabs=1">提现信息</a></li>
- <li role="presentation" class="active"><a href="{:url('/admin/vipwithdraw/historymoney')}">提现记录</a></li>
- </ul>
- <div class="panel panel-default panel-intro">
- {:build_heading()}
- <div class="panel-body">
- <div id="myTabContent" class="tab-content">
- <div class="tab-pane fade active in" id="one">
- <div class="widget-body no-padding">
- <div id="toolbar" class="toolbar">
- <a href="javascript:;" class="btn btn-primary btn-refresh" title="{:__('Refresh')}" ><i class="fa fa-refresh"></i> </a>
- <a class="btn btn-success btn-myexcel-export btn-export" href="javascript:;"><i class="fa fa-user"></i> 导出</a>
- </div>
- <table id="historytable" class="table table-striped table-bordered table-hover" width="100%">
- </table>
- </div>
- </div>
- </div>
- </div>
- </div>
|