You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
2.6 KiB
HTML
66 lines
2.6 KiB
HTML
<!DOCTYPE html>
|
|
<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
|
|
<meta charset="UTF-8">
|
|
<title>结算详情</title>
|
|
<link href="/Public/Open/css/iconfont.css" rel="stylesheet">
|
|
<link href="/Public/Open/css/common.css" rel="stylesheet">
|
|
<link href="/Public/Open/css/user.css" rel="stylesheet">
|
|
<link href="/Public/Open/css/datetimepicker.css" rel="stylesheet">
|
|
<link href="/Public/Open/css/dropdown.css" rel="stylesheet">
|
|
<link href="/Public/Open/css/user.css" rel="stylesheet">
|
|
<link href="/Public/Open/css/toastr.min.css" rel="stylesheet">
|
|
|
|
<link href="/Public/Open/css/pagination.css" rel="stylesheet">
|
|
<link href="/Public/Open/css/datetimepicker.css" rel="stylesheet">
|
|
<link href="/Public/Open/css/dropdown.css" rel="stylesheet">
|
|
|
|
</head>
|
|
<style>
|
|
body{ padding: 0px; }
|
|
</style>
|
|
<body>
|
|
<div id="main" class="table_container server_table " style="min-height: 342px;">
|
|
<!-- 标题栏 -->
|
|
<div class="cf"></div>
|
|
<!-- 数据列表 -->
|
|
<div class="data_list box_mt">
|
|
<div class="table_responsive">
|
|
<table class="table table_striped table_hover table_control control">
|
|
<!-- 表头 -->
|
|
<thead>
|
|
<tr>
|
|
<th>结算周期</th>
|
|
<th>游戏名称</th>
|
|
<th>总充值(元)</th>
|
|
<th>结算模式</th>
|
|
<th>分成比例(%)</th>
|
|
<th>结算金额(元)</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<!-- 列表 -->
|
|
<tbody>
|
|
<volist name="list_data" id="data">
|
|
<tr>
|
|
<td>{$data.starttime|date='Y-m-d',###}至{$data.endtime|date='Y-m-d',###}</td>
|
|
<td>{$data.game_name}</td>
|
|
<td>{$data.total_money}</td>
|
|
<td>{:get_pattern($data['pattern'])}</td>
|
|
<td>{$data.ratio}</td>
|
|
<td>{$data.sum_money}</td>
|
|
</tr>
|
|
</volist>
|
|
<tr>
|
|
<td colspan='8' style="text-align: center;">汇总:{$total} 元</td>
|
|
</tr>
|
|
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
<div class="page">{$_page}</div>
|
|
</div>
|
|
</body>
|
|
</html>
|