mirror of
https://github.com/ProxyPanel/ProxyPanel.git
synced 2026-04-14 08:23:27 +00:00
94 lines
3.8 KiB
PHP
94 lines
3.8 KiB
PHP
@extends('admin.layouts')
|
|
@section('css')
|
|
<link rel="stylesheet" href="/assets/global/vendor/bootstrap-table/bootstrap-table.min.css">
|
|
@endsection
|
|
@section('content')
|
|
<div class="page-content container-fluid">
|
|
<div class="panel">
|
|
<div class="panel-heading">
|
|
<h3 class="panel-title">余额变动记录</h3>
|
|
</div>
|
|
<div class="panel-body">
|
|
<div class="form-inline pb-20">
|
|
<div class="form-group">
|
|
<input type="text" class="form-control" name="username" value="{{Request::get('username')}}" id="username" placeholder="用户名">
|
|
</div>
|
|
<div class="btn-group">
|
|
<button class="btn btn-primary" onclick="doSearch()">搜索</button>
|
|
<button class="btn btn-danger" onclick="doReset()">重置</button>
|
|
</div>
|
|
</div>
|
|
<table class="text-center" data-toggle="table" data-mobile-responsive="true">
|
|
<thead class="thead-default">
|
|
<tr>
|
|
<th> #</th>
|
|
<th> 用户名</th>
|
|
<th> 订单ID</th>
|
|
<th> 操作前余额</th>
|
|
<th> 发生金额</th>
|
|
<th> 操作后金额</th>
|
|
<th> 描述</th>
|
|
<th> 发生时间</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@if($list->isEmpty())
|
|
<tr>
|
|
<td colspan="8">暂无数据</td>
|
|
</tr>
|
|
@else
|
|
@foreach($list as $vo)
|
|
<tr>
|
|
<td> {{$vo->id}} </td>
|
|
<td>
|
|
@if(empty($vo->user))
|
|
【账号已删除】
|
|
@else
|
|
<a href="/admin/userBalanceLogList?username={{$vo->user->username}}"> {{$vo->user->username}} </a>
|
|
@endif
|
|
</td>
|
|
<td> {{$vo->order_id}} </td>
|
|
<td> {{$vo->before}} </td>
|
|
<td> {{$vo->amount}} </td>
|
|
<td> {{$vo->after}} </td>
|
|
<td> {{$vo->desc}} </td>
|
|
<td> {{$vo->created_at}} </td>
|
|
</tr>
|
|
@endforeach
|
|
@endif
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<div class="panel-footer">
|
|
<div class="row">
|
|
<div class="col-sm-4">
|
|
共 {{$list->total()}} 条记录
|
|
</div>
|
|
<div class="col-sm-8">
|
|
<nav class="Page navigation float-right">
|
|
{{ $list->links() }}
|
|
</nav>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|
|
@section('script')
|
|
<script src="/assets/global/vendor/bootstrap-table/bootstrap-table.min.js"></script>
|
|
<script src="/assets/global/vendor/bootstrap-table/extensions/mobile/bootstrap-table-mobile.min.js"></script>
|
|
<script type="text/javascript">
|
|
// 搜索
|
|
function do_search() {
|
|
const username = $("#username").val();
|
|
|
|
window.location.href = '/admin/userBalanceLogList?username=' + username;
|
|
}
|
|
|
|
// 重置
|
|
function do_reset() {
|
|
window.location.href = '/admin/userBalanceLogList';
|
|
}
|
|
</script>
|
|
@endsection
|