HaniBlindBox/server/php/app/admin/view/User/user_profit_loss.html
2026-01-01 20:46:07 +08:00

133 lines
5.7 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{include file="Public:header2"/}
<body>
<div class="layui-fluid">
<div class="layui-card">
<form method="get" class="layui-form layui-card-header layuiadmin-card-header-auto">
<div class="layui-form-item">
<div class="layui-inline">
<div class="layui-input-inline" style="width: 300px;margin-left: 0px">
<input type="text" id="uid" name="uid" value="{$Request.get.uid}" class="layui-input"
placeholder="会员UID" style="" autocomplete="off">
</div>
</div>
<div class="layui-inline">
<div class="layui-input-inline" style="width: 300px;margin-left: 0px">
<input type="text" id="addtime" name="addtime" value="{$Request.get.addtime}"
class="layui-input" placeholder="开始时间" style="width:300px;" autocomplete="off">
</div>
</div>
<div class="layui-inline">
<button class="layui-btn layuiadmin-btn-useradmin" lay-submit
lay-filter="LAY-user-front-search">
<i class="layui-icon layui-icon-search layuiadmin-button-btn"></i>
</button>
</div>
</div>
</form>
<div class="layui-card-body">
<xblock>
<div style="padding-bottom: 10px;">
<span style="line-height:40px;float:right;">共有数据: {$count}条</span>
</div>
</xblock>
<table class="layui-table">
<thead>
<tr>
<!-- <th>总计</th>-->
</tr>
<tr>
<th>用户信息</th>
<!-- <th>钻石</th> -->
<!--<th>充值吧唧币</th>-->
<th>微信支付</th>
<th>钻石</th>
<th>UU币</th>
<th>达达券</th>
<th>背包价值</th>
<th>发货价值</th>
<th>收入RMB支付+钻石)</th>
<th style="width: 200px;">盈亏(收入- 发货金额- 用户剩余达达券 - 盒柜剩余)</th>
</tr>
</thead>
<tbody>
{volist name="total_money" id="vo"}
<!-- <tr>
<td>总计</td>
<td>{$vo['price_total']}</td>
<td>{$vo['total_money']}</td>
<td></td>
<td></td>
<td>{$vo['shang_money_total']}</td>
<td>{$vo['fh_money_total']}</td>
<td></td>
<td></td>
<td>{$vo['profit_loss_total']}</td>
</tr> -->
{/volist}
{volist name="list" id="vo"}
<tr>
<td style="text-align: left">
<div style="display: flex;">
<div><img src="{:imageUrl($vo['headimg'])}" alt="" width="50px" height="50px"></div>
<div style="margin-left: 10px">
<p style="color: #e91e63;font-size: 9px">UID{$vo['uid']}</p>
<p style="color: #e91e63;font-size: 9px">真实ID{$vo['id']}</p>
<p style="color: #666666ba;font-size: 9px">{$vo['nickname']}</p>
</div>
</div>
</td>
<td>{$vo['price']}</td>
<td>{$vo['money']}</td>
<td>{$vo['integral']}</td>
<td>{$vo['money2']*100}</td>
<td>{$vo['shang_money']}</td>
<td>{$vo['fh_money']}</td>
<td>{$vo['shouru']}</td>
<td>
<div>
{$vo['lirun']}
<p style="color: #666666ba;font-size: 9px">{$vo['liruntips']}</p>
</div>
</td>
</tr>
{/volist}
{if condition="empty($list)"}
<tr>
<td colspan='10' style="text-align:center;">暂时没有数据!</td>
</tr>
{/if}
</tbody>
</table>
<div class="my_page layui-box layui-laypage layui-laypage-default">
{$page|raw}
</div>
</div>
</div>
</div>
{include file="Public:footer"/}
<script type="text/javascript">
layui.use(['table', 'laydate'], function () {
var laydate = layui.laydate;
//执行一个laydate实例
laydate.render({
elem: '#addtime'
, type: 'datetime'
, range: '-'
, format: 'yyyy-MM-dd'
})
});
</script>
</body>
</html>