| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- @extends('layouts.base')
- @section('title', '手动提现记录详情')
- @section('content')
- <div class="panel panel-default">
- <div class='panel-heading'>
- 提现者信息
- </div>
- <div class='panel-body'>
- <div style='height:auto;width:120px;float:left;'>
- <img src='{{tomedia($item['has_one_member']['avatar'])}}' style='width:100px;height:100px;border:1px solid #ccc;padding:1px'/>
- </div>
- <div style='float:left;height:auto;overflow: hidden'>
- <p>
- <b>昵称:</b>
- {{$item['has_one_member']['nickname']}}
- <b>姓名:</b>
- {{$item['has_one_member']['realname']}}
- <b>手机号:</b>
- {{$item['has_one_member']['mobile']}}
- </p>
- <p>
- <b>可用消费积分: </b> {{$item['integral']['integral']}}
- </p>
- <p>
- <b>申请金额: </b><span style='color:red'>{{$item['change']}}</span> 元
- <p>
- <p>
- <b>提出地址: </b>{{$item['address']}}
- <p>
- <p>
- <b>提出二维码: </b><img src='{{yz_tomedia($item['qr'])}}' style='width:100px;height:100px;border:1px solid #ccc;padding:1px'/>
- <p>
- <p>
- <b>状态: </b>{{$item['status_name']}}
- </p>
- <p>
- <b>申请时间: </b>{{$item['created_at']}}
- </p>
- @if($item['audit_at'])
- <p>
- <b>审核时间: </b>{{date('Y-m-d H:i:s',$item['audit_at'])}}
- </p>
- @endif
- @if($item['pay_at'])
- <p>
- <b>打款时间: </b>{{date('Y-m-d H:i:s',$item['pay_at'])}}
- </p>
- @endif
- </div>
- </div>
- <div class='panel-heading'>
- 提现申请信息
- </div>
- <form action="{{yzWebUrl("plugin.integral.Backend.Modules.Integral.Controllers.manual-withdraw.examine",['id'=>$item['id']])}}" method='post' class='form-horizontal'>
- <div class='panel-body'>
- <table class="table table-hover">
- <thead class="navbar-inner">
- <tr>
- <td></td>
- <th>ID</th>
- <th>提现类型</th>
- <th>提现金额</th>
- <th>提现状态</th>
- <th>提现时间</th>
- </tr>
- </thead>
- <tbody>
- <tr style="background: #eee">
- <td>
- @if($item['status'] == '0' )
- <label class="radio-inline">
- <input type="radio" name="status" value="1" @if($item['status'] == 0 || $item['status'] == 1 )checked="checked"@endif/>
- 通过
- </label>
- <label class="radio-inline">
- <input type="radio" name="status" value="-1" @if($item['status'] == -1 )checked="checked"@endif/> 无效
- </label>
- @endif
- </td>
- <td>{{$item['id']}}</td>
- <td>{{$item['type_name']}}</td>
- <td>{{$item['change']}}</td>
- <td>{{$item['status_name']}}</td>
- <td>{{$item['created_at']}}</td>
- </tr>
- </table>
- </div>
- <div class='panel-body'>
- 打款信息【
- 审核金额: <span style='color:red'>{{ $item['change'] }}</span> 元
- 手续费: <span style='color:red'>{{ $item['poundage'] }}</span> 元
- 应打款:<span style='color:red'>{{ $item['amount'] }}</span>元】
- </div>
- <div class="form-group col-sm-12">
- @if($item['status'] != '-1')
- @if($item['status'] == '0')
- <input type="submit" name="submit_check" value="提交审核" class="btn btn-primary col-lg-1"/>
- @endif
- @if($item['status'] == '1')
- <input type="submit" name="submit_pay" value="手动打款" class="btn btn-primary col-lg-1"/>
- @endif
- @endif
- <input type="button" class="btn btn-default" name="submit" onclick="goBack()" value="返回" style='margin-left:10px;'/>
- </div>
- </form>
- </div>
- <script language='javascript'>
- function goBack() {
- window.location.href = "{!! yzWebUrl('plugin.integral.Backend.Modules.Integral.Controllers.manual-records.index') !!}";
- }
- </script>
- @endsection
|