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.
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
|
|
|
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
<title>结算详情</title>
|
|
|
|
|
<link href="http://admin.vlcms.com/Public/icon.ico" type="image/x-icon" rel="shortcut icon">
|
|
|
|
|
<link rel="stylesheet" type="text/css" href="__CSS__/base.css" media="all">
|
|
|
|
|
<link rel="stylesheet" type="text/css" href="__CSS__/common.css" media="all">
|
|
|
|
|
<link rel="stylesheet" type="text/css" href="__CSS__/module.css">
|
|
|
|
|
<link rel="stylesheet" type="text/css" href="__CSS__/style.css" media="all">
|
|
|
|
|
<link rel="stylesheet" type="text/css" href="__CSS__/default_color.css" media="all">
|
|
|
|
|
</head>
|
|
|
|
|
<style>
|
|
|
|
|
body{ padding: 0px; }
|
|
|
|
|
</style>
|
|
|
|
|
<body>
|
|
|
|
|
<div id="main" class="main" style="min-height: 342px;">
|
|
|
|
|
<!-- 标题栏 -->
|
|
|
|
|
|
|
|
|
|
<div class="cf">
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- 数据列表 -->
|
|
|
|
|
<div class="data_list box_mt">
|
|
|
|
|
<div class="">
|
|
|
|
|
<table>
|
|
|
|
|
<!-- 表头 -->
|
|
|
|
|
<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>
|