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.

125 lines
4.5 KiB
HTML

5 years ago
<!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">
<script type="text/javascript" src="__STATIC__/jquery-2.0.3.min.js"></script>
</head>
<style>
html {
min-width:100%;
}
body {
padding: 0px;
}
</style>
<body>
<div id="main" class="main" style="min-height: 342px;">
<!-- 标题栏 -->
<div class="cf top_nav_list">
<!-- 高级搜索 -->
<div class="jssearch fl cf search_list">
<!--游戏类型搜索END-->
5 years ago
<input type="hidden" name="promote_id" value="{$_GET['promote_id']}"/>
<input type="hidden" name="time_start" value="{$_GET['time_start']}"/>
<input type="hidden" name="time_end" value="{$_GET['time_end']}"/>
5 years ago
<div class="input-list">
5 years ago
<input type="text" name="sn" placeholder="请输入支付订单号" class="" value="{:I('sn')}" style="width: 250px"/>&nbsp;
5 years ago
</div>
5 years ago
<div class="input-list input-list-game search_label_rehab">
<select id="type" name="type" class="select_gallery" >
<option value="">操作类型</option>
<option value="1" <?php echo I('type') == 1 ? "selected" : ''?>>收入</option>
<option value="2" <?php echo I('type') == 2 ? "selected" : ''?>>支出</option>
</select>
5 years ago
</div>
<div class="input-list">
5 years ago
<a class="sch-btn" href="javascript:;" id="search" url="{:U('FinancePromote/insideCoinDetail','model='.$model['name'].'&row='.I('row'),false)}"style="">搜索</a>
5 years ago
</div>
</div>
</div>
<!-- 数据列表 -->
<div class="data_list box_mt">
<div class="">
<table>
<!-- 表头 -->
<thead>
<tr>
5 years ago
<th >流水号</th>
<th>操作类型</th>
<th >操作方式</th>
<th >对手账号类型</th>
<th >平台币数量</th>
<th >平台币余额</th>
<th >交易说明</th>
<th >交易时间</th>
5 years ago
</tr>
</thead>
<!-- 列表 -->
<tbody>
<volist name="data" id="data">
<tr>
5 years ago
<td >{$data.sn}</td>
<td >{$data.op_type}</td>
<td >{$data.op_sty}</td>
<td >{$data.account}</td>
<td >{$data.op_num}</td>
<td >{$data.balance_coin}</td>
<td >{$data.mark}</td>
<td >{$data.create_time}</td>
5 years ago
</tr>
</volist>
<tr>
5 years ago
<td><span>累计平台币数量:</span></td>
<td colspan='7'><span><if condition="$total_cost neq ''">{$total_cost}<else/>0</if></span></td>
5 years ago
</tr>
</tbody>
</table>
</div>
</div>
<div class="page">
<a class="sch-btn"
href="{:U(CONTROLLER_NAME.'/'.ACTION_NAME,array_merge(['export'=>1],I('get.')))}" target="_blank">导出</a>
5 years ago
{$_page}
</div>

</div>
<script>
$(function(){
//搜索功能
$("#search").click(function(){
console.log(222);
var url = $(this).attr('url');
var query = $('.jssearch').find('input').serialize();
query += "&" + $('.jssearch').find('select').serialize();
query = query.replace(/(&|^)(\w*?\d*?\-*?_*?)*?=?((?=&)|(?=$))/g,'');
query = query.replace(/^&/g,'');
if ( url.indexOf('?')>0 ){
url += '&' + query;
} else {
url += '?' + query;
}
window.parent.reloadIframe(url);
parent.document.getElementsByTagName('iframe').src = url;
});
});
</script>
</body>
</html>