|
|
<!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">
|
|
|
<!--[if lt IE 9]>
|
|
|
<script type="text/javascript" src="__STATIC__/jquery-1.10.2.min.js"></script>
|
|
|
<![endif]--><!--[if gte IE 9]><!-->
|
|
|
<script type="text/javascript" src="__STATIC__/jquery-2.0.3.min.js"></script>
|
|
|
</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>
|
|
|
<if condition="$settlementType eq 3">
|
|
|
<th>默认分成比例</th>
|
|
|
<th>补点分成比例</th>
|
|
|
<else/>
|
|
|
<th>分成比例</th>
|
|
|
</if>
|
|
|
<th>结算总额</th>
|
|
|
</tr>
|
|
|
</thead>
|
|
|
|
|
|
<!-- 列表 -->
|
|
|
<tbody>
|
|
|
<volist name="records" id="record">
|
|
|
<tr>
|
|
|
<td>{$record.settlement_time}</td>
|
|
|
<td>{$record.game_name}</td>
|
|
|
<td>{$record.sum_amount}</td>
|
|
|
<if condition="$settlementType eq 3">
|
|
|
<td>{$record.default_ratio}</td>
|
|
|
<td>{$record.ratio}</td>
|
|
|
<else/>
|
|
|
<td>{$record.ratio}</td>
|
|
|
</if>
|
|
|
<td>{$record.settlement_amount}</td>
|
|
|
</tr>
|
|
|
</volist>
|
|
|
</tbody>
|
|
|
</table>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="page">
|
|
|
{$_page}
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<script>
|
|
|
(function(){
|
|
|
var ThinkPHP = window.Think = {
|
|
|
"ROOT" : "__ROOT__", //当前网站地址
|
|
|
"APP" : "__APP__", //当前项目地址
|
|
|
"PUBLIC" : "__PUBLIC__", //项目公共目录地址
|
|
|
"DEEP" : "{:C('URL_PATHINFO_DEPR')}", //PATHINFO分割符
|
|
|
"MODEL" : ["{:C('URL_MODEL')}", "{:C('URL_CASE_INSENSITIVE')}", "{:C('URL_HTML_SUFFIX')}"],
|
|
|
"VAR" : ["{:C('VAR_MODULE')}", "{:C('VAR_CONTROLLER')}", "{:C('VAR_ACTION')}"]
|
|
|
}
|
|
|
})();
|
|
|
</script>
|
|
|
<script type="text/javascript" src="__STATIC__/think.js"></script>
|
|
|
<script type="text/javascript" src="__JS__/common.js"></script>
|
|
|
<script>
|
|
|
Think.setValue('row', "{:I('row', 10)}");
|
|
|
</script>
|
|
|
</body>
|
|
|
</html>
|