123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- <style type="text/css">
- .mwd_head_box{
- overflow: hidden;
- padding: 10px 0;
- position: relative;
- }
- .mwd_head_li{
- float: left;
- overflow: hidden;
- /* margin-right: 2%; */
- /* width: 20%; */
- padding: 10px;
- background-color: #f4f4f4;
- box-sizing: border-box;
- border-radius: 3px;
- border-left: 10px #fff solid;
- }
- .mwd_head_li1 {width:25%;}
- .mwd_head_li3 {position:absolute;right:0;width:25%;}
- .mwd_head_li2 {width:50%;}
- .mwd_head_li_num .mwd_head_li1{width:50%;}
- .mwd_head_li_num .mwd_head_li2{width:50%;}
- .mwd_head_li_num .mwd_head_li3{display:none}
- /*.mwd_head_li:nth-last-child(2){*/
- /* width: 50%;*/
- /* !* margin-right: 10px; *!*/
- /* !* margin-left: 10px; *!*/
- /*}*/
- @media (max-width: 640px){
- .mwd_head_box {padding:0;}
- .mwd_head_li,
- .mwd_head_li_num .mwd_head_li{
- position:relative;
- 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>
- <div class="panel panel-default panel-intro">
- {:build_heading()}
- <div class="panel-body">
- <div id="myTabContent" class="tab-content">
- <div class="mwd_head_box {if condition='$split_money == 0'}mwd_head_li_num{/if}">
- <div class="mwd_head_li mwd_head_li1">
- <div class="mwd_head_tit">总充值金额(不含当日)</div>
- <div class="mwd_head_money">¥{$recharge_all|number_format=###, 2, '.', ''}</div>
- <div class="mwd_head_other">
- <strong><span></span></strong>
- </div>
- </div>
- <div class="mwd_head_li mwd_head_li2">
- <div class="mwd_head_tit">结算单总额(不含当日)</div>
- <div class="mwd_head_money">¥{$count_money|number_format=###, 2, '.', ''}</div>
- <div class="mwd_head_other">
- <strong>未提现(不含当日):<span>¥{$no_cash_money|number_format=###, 2, '.', ''}</span></strong>
- <strong>提现中:<span>¥{$admin_money.cash_money|number_format=###, 2, '.', ''}</span></strong>
- <strong>已打款:<span>¥{$admin_money.count_cash_money|number_format=###, 2, '.', ''}</span></strong>
- </div>
- </div>
- <div class="mwd_head_li mwd_head_li3">
- <div class="mwd_head_tit">分账账户总金额(不含当日)</div>
- <div class="mwd_head_money">¥{$split_money|number_format=###, 2, '.', ''}</div>
- <div class="mwd_head_other">
- <strong><span></span></strong>
- </div>
- </div>
- </div>
- <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 href="javascript:;" class="btn btn-success btn-add {:$auth->check('withdraw/add')?'':'hide'}" title="{:__('Add')}" ><i class="fa fa-plus"></i>申请提现</a>
- <a class="btn btn-success btn-myexcel-export btn-export" data-url="" href="javascript:;"><i class="fa fa-user"></i> 导出</a>
- </div>
- <table id="table" class="table table-striped table-bordered table-hover"
- data-operate-edit="{:$auth->check('withdraw/edit')}"
- width="100%">
- </table>
- </div>
- </div>
- {foreach $agreementyiArr as $vo}
- <p><a href="/admin/agreementyi/edit/ids/{$vo['id']}" target="_blank">分销平台合作协议</a></p>
- {/foreach}
- {foreach $agreementyiArr as $vo}
- <p><a href="/admin/agreementyi/edit/ids/{$vo['id']}/is_down/0/tech_type/1" target="_blank">福建米花信息科技有限公司(乙方)</a></p>
- {/foreach}
- {foreach $agreementyiArr as $vo}
- <p><a href="/admin/agreementyi/edit/ids/{$vo['id']}/is_down/0/tech_type/2" target="_blank">广州市汇聚支付电子科技有限公司(乙方)</a></p>
- {/foreach}
- </div>
- </div>
- </div>
|