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.
102 lines
3.7 KiB
HTML
102 lines
3.7 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="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>
|
|
<script src="__STATIC__/table2excel.js"></script>
|
|
</head>
|
|
<style>
|
|
html {
|
|
min-width: 100%;
|
|
}
|
|
|
|
body {
|
|
padding: 0px;
|
|
}
|
|
</style>
|
|
|
|
<body>
|
|
<div style="margin:auto;font-size: 16px;color: red;line-height: 3;padding: 20px;">
|
|
导出进行中。。。<br />
|
|
如果导出成功你也可以手动关闭此页面
|
|
</div>
|
|
<table border="1" id="exporttable" style="opacity: 0;">
|
|
<!-- 表头 -->
|
|
<thead>
|
|
<tr>
|
|
<th>合作方名称</th>
|
|
<th>流水金额</th>
|
|
<?php if ($pageType=='monthly'):?>
|
|
<th>达标月份</th>
|
|
<?php endif;?>
|
|
<th>会长账号</th>
|
|
<th>市场专员</th>
|
|
<th>所属市场部</th>
|
|
<th>是否签约</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<!-- 列表 -->
|
|
<tbody>
|
|
<empty name ="records">
|
|
<td colspan="99" class="text-center">aOh! 暂时还没有内容!</td>
|
|
<else />
|
|
<volist name="records" id="data">
|
|
<tr data-id="<?=$data['id']?>" <?php if($data['rowspan'] > 0):?>class="new_row"<?php endif;?>>
|
|
<?php if($data['rowspan']>0):?>
|
|
<td rowspan="{$data.rowspan}">{$data.company_name}</td>
|
|
<td rowspan="{$data.rowspan}">{$data.pay_amount}</td>
|
|
<?php if ($pageType=='monthly'):?>
|
|
<td rowspan="{$data.rowspan}">{$data.month}</td>
|
|
<?php endif;?>
|
|
<?php endif;?>
|
|
<td>{$data.account}</td>
|
|
<td>{$data.market_user_name}</td>
|
|
<td>{$data.market_department_name}</td>
|
|
<?php if($data['rowspan']>0):?>
|
|
<td rowspan="{$data.rowspan}">{$data.is_sign_contact_text}</td>
|
|
<?php endif;?>
|
|
</tr>
|
|
</volist>
|
|
</empty>
|
|
</tbody>
|
|
</table>
|
|
|
|
<script>
|
|
$(function () {
|
|
$("#exporttable").table2excel({
|
|
filename: "<?=$pageTypeName?>.xls", // do include extension
|
|
preserveColors: false // set to true if you want background colors and font colors preserved
|
|
});
|
|
//搜索功能
|
|
$("#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> |