This commit is contained in:
你的名字
2025-07-14 10:22:40 +08:00
commit 0483b4b364
1388 changed files with 219353 additions and 0 deletions

View File

@ -0,0 +1,53 @@
{extend name='akszadmin@main'}
{block name="content"}
<div class="think-box-shadow">
{include file='order_log/index_search'}
<table class="layui-table margin-top-10" lay-skin="line">
{notempty name='list'}
<thead>
<tr>
<th class='text-center nowrap'>编号</th>
<th class='text-center nowrap'>会员ID</th>
<th class="text-center nowrap">用户名</th>
<th class='text-center nowrap'>订单ID</th>
<th class="text-center nowrap">增加金额</th>
<th class="text-center nowrap">增加积分</th>
<th class="text-center nowrap">平仓后余额</th>
<th class="text-center nowrap">时间</th>
</tr>
</thead>
{/notempty}
<tbody>
{foreach $list as $key=>$vo}
<tr>
<td class='text-center nowrap'>
{$vo.id|default='--'}
</td>
<td class='text-center nowrap'>
{$vo.uid|default='--'}
</td>
<td class='text-center nowrap'>
{$vo.phone|default='--'}
</td>
<td class='text-center nowrap'>
{$vo.oid|default='--'}
</td>
<td class='text-center nowrap'>
{$vo.addprice|default='--'}
</td>
<td class='text-center nowrap'>
{$vo.addpoint|default='--'}
</td>
<td class='text-center nowrap'>
{$vo.user_money|default='--'}
</td>
<td class='text-center nowrap'>
{:date('Y-m-d H:i:s',$vo.time)}
</td>
</tr>
{/foreach}
</tbody>
</table>
{empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
</div>
{/block}

View File

@ -0,0 +1,21 @@
<fieldset>
<legend>条件搜索</legend>
<form class="layui-form layui-form-pane form-search" action="{:request()->url()}" onsubmit="return false" method="get" autocomplete="off">
<div class="layui-form-item layui-inline">
<label class="layui-form-label">用户名</label>
<div class="layui-input-inline">
<input name="u_phone" value="{$Think.get.u_phone|default=''}" placeholder="请输入用户名" class="layui-input">
</div>
</div>
<div class="layui-form-item layui-inline">
<label class="layui-form-label">平仓日期</label>
<div class="layui-input-inline">
<input data-date-range name="i_time" value="{$Think.get.i_time|default=''}" placeholder="请选择平仓日期" class="layui-input">
</div>
</div>
<div class="layui-form-item layui-inline">
<button class="layui-btn layui-btn-primary"><i class="layui-icon">&#xe615;</i> 搜 索</button>
</div>
</form>
<script>form.render()</script>
</fieldset>