init: 从宝塔同步到 Gitea

This commit is contained in:
root
2026-02-25 01:50:31 +08:00
commit e633c8e27d
2444 changed files with 399341 additions and 0 deletions
@@ -0,0 +1,41 @@
{include file="public/header"}
<style>
.layui-table{margin-bottom:0;}
.layui-table th{text-align:center;}
.no-data{background:#f2f2f2;text-align:center;height:30px;line-height:30px;}
</style>
<body>
<div class="x-body">
<div class="layui-btn no-print" onclick="jQuery('html').print()">打印</div>
<table class="layui-table">
<div style="text-align: center;font-size: 18px;font-weight:bold;">收益日报表</div>
<thead>
<tr>
<th>用户名</th>
<th>占成%</th>
<th>占成收益</th>
<th>洗码率%</th>
<th>洗码收益</th>
<th>总收益金额</th>
</tr>
</thead>
<tbody>
{foreach name="agent_list" item="vo"}
<tr>
<td>{$vo.username}</td>
<td>{$vo.agent_cs}</td>
<td>{$vo.self_income_cs}</td>
<td>{$vo.self_income_xima}</td>
<td>{$vo.agent_ximalv}</td>
<td>{$vo.total_income}</td>
</tr>
{/foreach}
</tbody>
</table>
<?php if(count($agent_list) == 0): ?>
<div class="no-data">暂无数据</div>
<?php endif; ?>
</div>
</body>
</html>