60 lines
1.9 KiB
PHP
60 lines
1.9 KiB
PHP
@extends('layouts.app')
|
|
|
|
@section('content')
|
|
<section class="padding_btm">
|
|
<!--总额-->
|
|
<div class="j_account_money" style="border-bottom: 0">
|
|
已提金额<span style="font-size: .9rem">{{ $withdraw_total }}</span>
|
|
<div class="accounts_apply_btn" data-href="{{ route('withdraw.wechat') }}" style="bottom: 1.5rem;">
|
|
提现
|
|
</div>
|
|
</div>
|
|
<!--end 总额-->
|
|
<!--记录-->
|
|
<div class="accounts_detail">
|
|
提现明细
|
|
</div>
|
|
<ul class="bi-list" style="background:none">
|
|
@if($logs->count() > 0)
|
|
<div class="record_title">
|
|
<span>时间</span>
|
|
<span>提现金额</span>
|
|
<span>实到金额</span>
|
|
<span>提现方式</span>
|
|
<span>状态</span>
|
|
</div>
|
|
|
|
@foreach($logs as $log)
|
|
<li style="background-color: #fff;padding: .6rem 0">
|
|
<div class="record_block">
|
|
<div class="bi-list-r bi-list-small">{{ $log->created_at->format('m/d H:i') }}</div>
|
|
<div class="bi-list-l bi-list-small">{{ number_format($log->amount,2)}}</div><!--提现金额-->
|
|
<div class="bi-list-r bi-list-small">{{ number_format($log->take,2) }}</div><!--实到金额-->
|
|
<div class="bi-list-r bi-list-small">{{ $log->type_text }}</div><!--提现方式-->
|
|
<div class="bi-list-l" >{{ $log->state_text }}</div>
|
|
</div>
|
|
</li>
|
|
@endforeach
|
|
|
|
|
|
@else
|
|
<div class="empty">
|
|
<img src="/assets/home/img/c010.png">
|
|
<p>暂无提现记录</p>
|
|
</div>
|
|
@endif
|
|
</ul>
|
|
<!--end 记录-->
|
|
</section>
|
|
@endsection
|
|
@section('script')
|
|
<script type="text/javascript">
|
|
$(".take_notice").click(function (e) {
|
|
$(".take_pop").show();
|
|
});
|
|
$(".take_close").click(function (e) {
|
|
$(".take_pop").hide();
|
|
});
|
|
</script>
|
|
@endsection
|