公会信息导入导出
parent
24fcfc4b90
commit
824b7b3f06
@ -1,147 +0,0 @@
|
|||||||
<extend name="Public/base"/>
|
|
||||||
|
|
||||||
<block name="body">
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="__CSS__/select2.min.css" type="text/css" />
|
|
||||||
<script type="text/javascript" src="__JS__/bootstrap.min.js"></script>
|
|
||||||
<script type="text/javascript" src="__JS__/select2.min.js"></script>
|
|
||||||
<script src="__STATIC__/table2excel.js"></script>
|
|
||||||
<style>
|
|
||||||
html{
|
|
||||||
opacity: 0;
|
|
||||||
}
|
|
||||||
.select2-container--default .select2-selection--single {
|
|
||||||
color: #000;
|
|
||||||
resize: none;
|
|
||||||
border-width: 1px;
|
|
||||||
border-style: solid;
|
|
||||||
border-color: #a7b5bc #ced9df #ced9df #a7b5bc;
|
|
||||||
box-shadow: 0px 3px 3px #F7F8F9 inset;height:35px;
|
|
||||||
height:28px;border-radius:3px;font-size:12px;
|
|
||||||
}
|
|
||||||
.select2-container--default .select2-selection--single .select2-selection__rendered {
|
|
||||||
line-height:35px;
|
|
||||||
line-height:28px;
|
|
||||||
}
|
|
||||||
.select2-container--default .select2-selection--single .select2-selection__arrow {
|
|
||||||
height:26px;
|
|
||||||
}
|
|
||||||
.select2-container--default .select2-search--dropdown .select2-search__field {
|
|
||||||
height:26px;line-height:26px;font-size:12px;
|
|
||||||
}
|
|
||||||
.select2-results__option[aria-selected] {font-size:12px;}
|
|
||||||
.data_list table td{
|
|
||||||
text-indent:0;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
|
||||||
<div class="cf main-place top_nav_list navtab_list">
|
|
||||||
<h3 class="page_title">{$meta_title}</h3>
|
|
||||||
</div>
|
|
||||||
<!-- 数据列表 -->
|
|
||||||
<div class="data_list data_game_list">
|
|
||||||
<!-- <div style="margin:auto;font-size: 20px;color: red;line-height: 3;padding: 20px;">
|
|
||||||
导出进行中。。。<br/>
|
|
||||||
如果导出成功你也可以手动关闭此页面
|
|
||||||
</div> -->
|
|
||||||
<div class="">
|
|
||||||
<table border="1" id="exporttable">
|
|
||||||
<!-- 表头 -->
|
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<th>省份</th>
|
|
||||||
<th>城市</th>
|
|
||||||
<th>公司</th>
|
|
||||||
<th>注册资本</th>
|
|
||||||
<th>负责人</th>
|
|
||||||
<th>电话</th>
|
|
||||||
<th>微信</th>
|
|
||||||
<th>QQ</th>
|
|
||||||
<th>游戏类型</th>
|
|
||||||
<th>所做游戏</th>
|
|
||||||
<th>合作平台</th>
|
|
||||||
<th>推广规模</th>
|
|
||||||
<th>流水</th>
|
|
||||||
<th>地址</th>
|
|
||||||
<th>联盟信息</th>
|
|
||||||
<th>是否为意向客户</th>
|
|
||||||
<th>备注信息</th>
|
|
||||||
<th>对接人</th>
|
|
||||||
<th>录入时间</th>
|
|
||||||
<th>最后沟通时间</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
|
|
||||||
<!-- 列表 -->
|
|
||||||
<tbody>
|
|
||||||
<empty name ="listData">
|
|
||||||
<td colspan="15" class="text-center">aOh! 暂时还没有内容!</td>
|
|
||||||
<else />
|
|
||||||
<volist name="listData" id="data">
|
|
||||||
<tr>
|
|
||||||
<td rowspan="{$data.row}">{$data.province}</td>
|
|
||||||
<td rowspan="{$data.row}">{$data.city}</td>
|
|
||||||
<td rowspan="{$data.row}">{$data.company_name}</td>
|
|
||||||
<td rowspan="{$data.row}">{$data.register_capital}</td>
|
|
||||||
<td rowspan="{$data.row}">{$data.functionary}</td>
|
|
||||||
<td rowspan="{$data.row}">{$data.phone}</td>
|
|
||||||
<td rowspan="{$data.row}">{$data.wechat}</td>
|
|
||||||
<td rowspan="{$data.row}">{$data.qq}</td>
|
|
||||||
<td rowspan="{$data.row}">{$data.game_type}</td>
|
|
||||||
<td rowspan="{$data.row}">{$data.game_name}</td>
|
|
||||||
<td rowspan="{$data.row}">{$data.join_platform}</td>
|
|
||||||
<td rowspan="{$data.row}">{$data.promote_scale}</td>
|
|
||||||
<td rowspan="{$data.row}">{$data.turnover}</td>
|
|
||||||
<td rowspan="{$data.row}">{$data.address}</td>
|
|
||||||
<td rowspan="{$data.row}">{$data.league_info}</td>
|
|
||||||
<td rowspan="{$data.row}">{$data.is_potential}</td>
|
|
||||||
<td rowspan="{$data.row}">{$data.remark}</td>
|
|
||||||
<td rowspan="{$data.row}">{$data.interface_person}</td>
|
|
||||||
<td rowspan="{$data.row}">{$data.create_time|date='Y-m-d H:i:s', ###}</td>
|
|
||||||
<td rowspan="{$data.row}">{$data.communication_time|date='Y-m-d H:i:s', ###}</td>
|
|
||||||
</tr>
|
|
||||||
</volist>
|
|
||||||
</empty>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="page">
|
|
||||||
{$_page|default=''}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
</block>
|
|
||||||
|
|
||||||
<block name="script">
|
|
||||||
<script src="__STATIC__/layer/layer.js"></script>
|
|
||||||
<script src="__STATIC__/layer/extend/layer.ext.js"></script>
|
|
||||||
<link href="__STATIC__/datetimepicker/css/datetimepicker.css" rel="stylesheet" type="text/css">
|
|
||||||
<php>if(C('COLOR_STYLE')=='blue_color') echo '<link href="__STATIC__/datetimepicker/css/datetimepicker_blue.css" rel="stylesheet" type="text/css">';</php>
|
|
||||||
<link href="__STATIC__/datetimepicker/css/dropdown.css" rel="stylesheet" type="text/css">
|
|
||||||
<script type="text/javascript" src="__STATIC__/datetimepicker/js/bootstrap-datetimepicker.min.js"></script>
|
|
||||||
<script type="text/javascript" src="__STATIC__/datetimepicker/js/locales/bootstrap-datetimepicker.zh-CN.js" charset="UTF-8"></script>
|
|
||||||
<style>
|
|
||||||
.layui-layer-demo .layui-layer-title {background:#F0F5F7;font-weight:bold;}
|
|
||||||
.layui-layer-demo .layui-layer-content {}
|
|
||||||
.layui-layer-demo .layui-layer-content table{width:100%;border:0;border-spacing:0;padding:0;}
|
|
||||||
.layui-layer-demo .layui-layer-content td {height:42px;padding-left:20px;}
|
|
||||||
.layui-layer-demo .layui-layer-content tr:hover {background:#F0F5F7;}
|
|
||||||
.layui-layer-demo .layui-layer-content tr~tr {border-top:1px solid #ccc;}
|
|
||||||
.layui-layer-demo .layui-layer-content td~td {border-left:1px solid #ccc;}
|
|
||||||
.layui-layer-demo .layui-layer-content tr:last-child td {}
|
|
||||||
</style>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
<volist name=":I('get.')" id="vo">
|
|
||||||
Think.setValue('{$key}',"{$vo}");
|
|
||||||
</volist>
|
|
||||||
$(".select_gallery").select2();
|
|
||||||
</script>
|
|
||||||
<script type="text/javascript">
|
|
||||||
$("#exporttable").table2excel({
|
|
||||||
filename: "公会信息.xls", // do include extension
|
|
||||||
preserveColors: false // set to true if you want background colors and font colors preserved
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
</block>
|
|
Loading…
Reference in New Issue