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.
400 lines
18 KiB
HTML
400 lines
18 KiB
HTML
<extend name="Public/manage" />
|
|
<block name="head">
|
|
<link href="__CSS__/user_zxy.css" rel="stylesheet">
|
|
<script src="__JS__/bootstrap-datetimepicker.min.js"></script>
|
|
<script src="__JS__/bootstrap-datetimepicker.zh-CN.js"></script>
|
|
<script src="__JS__/bootstrap-select.min.js"></script>
|
|
|
|
<style type="text/css">
|
|
.matter_right {min-height:759px;}
|
|
.table>thead:first-child>tr:first-child>th{border-top: none;}
|
|
.user_btn_see{padding: 1px 6px;}
|
|
.table>tbody>tr>td{padding-top: 4px;padding-bottom: 4px;}
|
|
.table_container table{border-bottom: 1px solid #E1E7F0;}
|
|
</style>
|
|
</block>
|
|
|
|
<block name="location">
|
|
<a class="z_nav curt_nav" href="{:U('Game/index')}">游戏管理</a>
|
|
</block>
|
|
|
|
<block name="body" >
|
|
<div class="matter_right_content border_right" style="padding-bottom:0;">
|
|
<div class="tabtitle clearfix">
|
|
<a href="{:U('index')}" class="btn tab_btn jbtn active ">管理模式</a>
|
|
<a href="{:U('data_table')}" class="btn tab_btn jbtn ">数据模式</a>
|
|
</div>
|
|
<div class="tabcontent matter_game">
|
|
<div id="tab1" class="matter_right_manager">
|
|
<form action="" method="post" class="search_form">
|
|
<div class="matter_right_search server_search clearfix">
|
|
<div class="mrc_colum0_8_3 mrc form-group" style="margin-right: 0;">
|
|
<button type="button" class="btn btn_primary user_btn" url="{:U('Game/index')}" id="search">查询</button>
|
|
</div>
|
|
<div class="mrc_colum1_6_6 mrc form-group">
|
|
<input type="text" name="game_name" value="{:I('game_name')}" class="form-control egretFormFont13" placeholder="游戏名称">
|
|
</div>
|
|
<div class="mrc_colum1_3_3 mrc form-group">
|
|
<select class="form-control egretFormFont13" name="apply_status" id="statusId">
|
|
<option value="">审核状态</option>
|
|
<option value="0">未审核</option>
|
|
<option value="1">已审核</option>
|
|
</select>
|
|
</div>
|
|
<div class="mrc_colum1_3_3 mrc mrc form-group">
|
|
<select class="form-control " name="sdk_version" id="platformId">
|
|
<option value="">运行平台</option>
|
|
<option value="1">安卓</option>
|
|
<option value="2">苹果</option>
|
|
</select>
|
|
</div>
|
|
<div class="mrc_colum1_3_3 mrc mrc form-group">
|
|
<select id="typeId" name="game_type_id" class="form-control">
|
|
<option value="">全部类型</option>
|
|
<volist name=":get_game_type_all()" id="vo">
|
|
<option value="{$vo.id}">{$vo.type_name}</option>
|
|
</volist>
|
|
</select>
|
|
</div>
|
|
|
|
<div class=" mrc form-group matter_create_right">
|
|
<a href="{:U('Game/add')}" class="btn btn_primary user_btn matter_create btn_adds"><i class="icon-adds"></i><span>添加游戏</span></a>
|
|
</div>
|
|
<!-- <div class=" mrc form-group matter_create_right">
|
|
<a href="javascript:;" class="btn btn_primary user_btn matter_create btn_delete">批量删除</a>
|
|
</div> -->
|
|
</div>
|
|
</form>
|
|
<div class="table_container server_table">
|
|
<div class="table_responsive">
|
|
<table class="table table_striped table_hover table_control control table_new" >
|
|
<thead>
|
|
<tr>
|
|
<th>
|
|
<label class="checked">
|
|
<input class="check-all" type="checkbox">
|
|
<i class="check_icon"></i>
|
|
</label>
|
|
</th>
|
|
<th class="gname">游戏名称</th>
|
|
<th>运行平台</th>
|
|
<th>审核状态</th>
|
|
<th>创建时间</th>
|
|
<th>游戏资料</th>
|
|
<th>游戏原包</th>
|
|
<th>素材包</th>
|
|
<th>操作</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<volist name="data" id="vo">
|
|
<tr>
|
|
<td>
|
|
<!--<img src="{:get_cover($vo['icon'],'path')}" title="{$vo.game_name}">-->
|
|
<label class="checked">
|
|
<input class="ids" type="checkbox" value="" name="ids">
|
|
<i class="check_icon"></i>
|
|
</label>
|
|
</td>
|
|
<td><span class="gname">{$vo.game_name}</span><span class="gtype">{$vo.game_type_name}</span></td>
|
|
<td>{:get_info_status($vo['sdk_version'],23)}</td>
|
|
<td>{:get_info_status($vo['apply_status'],31)}</td>
|
|
<td>{:time_format($vo['create_time'])}</td>
|
|
<td>
|
|
<a href="{:U('Game/edit',['id'=>$vo['id']])}" class="btn user_btn_see btn_style_green" data-original-title="更新游戏资料" data-placement="bottom" data-toggle="tooltip">更新</a>
|
|
</td>
|
|
<td>
|
|
<a href="{:U('Game/source',['game_id'=>$vo['id']])}" class="btn user_btn_see btn_style_red" data-original-title="游戏原包" data-placement="bottom" data-toggle="tooltip">
|
|
{:empty($vo['source_id']) ? '上传' : '更新'}
|
|
</a>
|
|
</td>
|
|
<td>
|
|
<a href="{:U('Game/material',['game_id'=>$vo['id']])}" class="btn user_btn_see btn_style_red" data-original-title="游戏素材包" data-placement="bottom" data-toggle="tooltip">
|
|
{:empty($vo['material_url']) ? '上传' : '更新'}
|
|
</a>
|
|
</td>
|
|
<td>
|
|
<a href="javascript:" class="btn user_btn_see param" data-values="" data-ga-id="{$vo.id}" >参数</a>
|
|
<!--<a href="{:U('set_game_status',['game_id'=>$vo['id']])}" class="btn user_btn_see" data-original-title="{$vo['game_status']==1 ? '下线' : '上线'}" data-placement="bottom" data-toggle="tooltip">{$vo['game_status']==1 ? '下线' : '上线'}</a>-->
|
|
</td>
|
|
</tr>
|
|
</volist>
|
|
</tbody>
|
|
</table>
|
|
<div class="pagination_wrap">
|
|
{$_page}
|
|
</div>
|
|
<empty name="data">
|
|
<div class="text_format">
|
|
<img src="__IMG__/zwmimages/gamemanagement_icon_matadata.png">
|
|
<p class="p_lineh30">暂无数据</p>
|
|
</div>
|
|
</empty>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div id="tab2" class="matter_right_data hidden">
|
|
<form action="" method="get">
|
|
<div class="matter_right_search server_search clearfix">
|
|
<div class="mrc_colum1_3_3 mrc mrc form-group">
|
|
<select id="gameId" name="game_id" class="form-control selectpicker" data-live-search="true">
|
|
<option value="">全部游戏</option>
|
|
<volist name=":getDevelopGameList(UID)" id="vo">
|
|
<option value="{$vo.id}">{$vo.game_name}</option>
|
|
</volist>
|
|
</select>
|
|
</div>
|
|
<div class=" mrc form-group matter_create_wrap">
|
|
<a href="javascript:;" class="btn btn_primary user_btn matter_create">导出数据</a>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
<hr>
|
|
<div class="table_container server_table">
|
|
<div class="table_responsive">
|
|
<table class="table table_striped table_hover table_control control">
|
|
<thead>
|
|
<tr>
|
|
<th class=""></th>
|
|
<th class="gname">游戏</th>
|
|
<th class="">新增玩家</th>
|
|
<th class="">活跃玩家</th>
|
|
<th class="">流水</th>
|
|
<th class="">ARPU</th>
|
|
<th class="">ARPPU</th>
|
|
<th class="">付费率</th>
|
|
<th class="">累计流水</th>
|
|
<th class="">累计玩家</th>
|
|
|
|
<th class="">上线时间</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr name="rows">
|
|
<td>
|
|
<img src="__IMG__/icon_200.png" title="暗影之怒">
|
|
</td>
|
|
<td title="暗影之怒"><span class="gname">暗影之怒</td>
|
|
<td>32</td>
|
|
<td>36</td>
|
|
<td>0</td>
|
|
<td>0</td>
|
|
<td>0</td>
|
|
<td>--</td>
|
|
<td>36</td>
|
|
<td>479</td>
|
|
|
|
<td>2016-11-07</td>
|
|
</tr>
|
|
<tr name="rows">
|
|
<td>
|
|
<img src="__IMG__/icon_200.png" width="35" title="暗影之怒">
|
|
</td>
|
|
<td title="愚公移山">
|
|
<span class="gname">愚公移山</span></td>
|
|
<td>18</td>
|
|
<td>22</td>
|
|
<td>12</td>
|
|
<td>0.55</td>
|
|
<td>6</td>
|
|
<td>9.09%</td>
|
|
<td>224</td>
|
|
<td>200</td>
|
|
|
|
<td>2016-11-11</td>
|
|
</tr>
|
|
<tr name="rows">
|
|
<td>
|
|
<img src="__IMG__/icon_200.png" title="暗影之怒">
|
|
</td>
|
|
<td title="西游神传">
|
|
<span class="gname">西游神传</span>
|
|
</td>
|
|
<td>15</td>
|
|
<td>18</td>
|
|
<td>0</td>
|
|
<td>0</td>
|
|
<td>0</td>
|
|
<td>--</td>
|
|
<td>36</td>
|
|
<td>193</td>
|
|
|
|
<td>2016-11-01</td>
|
|
</tr>
|
|
<tr name="rows">
|
|
<td>
|
|
<img src="__IMG__/icon_200.png" title="暗影之怒">
|
|
</td>
|
|
<td title="乱戳三国">
|
|
<span class="gname">乱戳三国</span>
|
|
</td>
|
|
<td>10</td>
|
|
<td>15</td>
|
|
<td>0</td>
|
|
<td>0</td>
|
|
<td>0</td>
|
|
<td>--</td>
|
|
<td>30</td>
|
|
<td>123</td>
|
|
|
|
<td>2016-11-07</td>
|
|
</tr>
|
|
<tr name="rows">
|
|
<td>
|
|
<img src="__IMG__/icon_200.png" title="暗影之怒">
|
|
</td>
|
|
<td title="地下城勇士">
|
|
<span class="gname">地下城勇士</span>
|
|
</td>
|
|
<td>8</td>
|
|
<td>10</td>
|
|
<td>0</td>
|
|
<td>0</td>
|
|
<td>0</td>
|
|
<td>--</td>
|
|
<td>57</td>
|
|
<td>142</td>
|
|
|
|
<td>2016-11-04</td>
|
|
</tr>
|
|
<tr name="rows">
|
|
<td>
|
|
<img src="__IMG__/icon_200.png" title="暗影之怒">
|
|
</td>
|
|
<td title="口袋妖怪联盟">
|
|
<span class="gname">口袋妖怪联盟</span>
|
|
</td>
|
|
<td>0</td>
|
|
<td>0</td>
|
|
<td>0</td>
|
|
<td>0</td>
|
|
<td>0</td>
|
|
<td>--</td>
|
|
<td>0</td>
|
|
<td>0</td>
|
|
|
|
<td>2016-11-07</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<div class="pagination_wrap">
|
|
<ul class="pagination pagination_change pagination_center">
|
|
<li><a href="javascript:void(0)">总共72条 每页10条</a></li>
|
|
<li class="active"><a href="javascript:void(0)">1</a></li>
|
|
<li><a href="">2</a></li>
|
|
<li><a href="">3</a></li>
|
|
<li><a href="">4</a></li>
|
|
<li><a href="">5</a></li>
|
|
<li><a href="javascript:void(0);">...</a></li>
|
|
<li><a href="">7</a></li>
|
|
<li><a href="">8</a></li>
|
|
<li><a href="">下一页</a></li>
|
|
<li><a href="">最后一页</a></li>
|
|
</ul>
|
|
</div>
|
|
<p class="text_format hidden">暂无数据</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<script>
|
|
|
|
$('select[name=game_id]').change(function(){
|
|
$(this).closest('form').submit();
|
|
});
|
|
|
|
|
|
|
|
$.VMenu.show('#menu');
|
|
$.VMenu.open('m2.1');
|
|
|
|
$(function () {
|
|
$("#search").click(function () {
|
|
var url = $(this).attr('url');
|
|
var query = $('.search_form').find('input').serialize();
|
|
query += "&" + $('.search_form').find('select').serialize();
|
|
query = query.replace(/(&|^)(\w*?\d*?\-*?_*?)*?=?((?=&)|(?=$))/g, '');
|
|
query = query.replace(/^&/g, '');
|
|
if (url.indexOf('?') > 0) {
|
|
url += '&' + query;
|
|
} else {
|
|
url += '?' + query;
|
|
}
|
|
window.location.href = url;
|
|
});
|
|
|
|
Think.setValue("game_type_id","{:I('game_type_id')}");
|
|
Think.setValue("sdk_version","{:I('sdk_version')}");
|
|
Think.setValue("apply_status","{:I('apply_status')}");
|
|
|
|
$(".param").click(function () {
|
|
var id = $(this).attr("data-ga-id");
|
|
layer.open({
|
|
type: 2,
|
|
title: '游戏参数',
|
|
shadeClose: true,
|
|
area: ['30%', '40%'],
|
|
content: "{:U('get_game_param','',false)}" + "/game_id/" + id
|
|
});
|
|
});
|
|
|
|
$(".btn_delete").click(function () {
|
|
if($('.ids').serialize()){
|
|
layer.confirm('确定要执行改操作吗?', {
|
|
btn: ['确认','取消'], //按钮
|
|
title: '提示信息'
|
|
}, function(){
|
|
|
|
$.ajax({
|
|
type:'post',
|
|
dataType:'json',
|
|
url:'{:U("del")}',
|
|
data:$('.ids').serialize(),
|
|
success:function(data){
|
|
if(parseInt(data.status)==1) {
|
|
layer.msg('删除成功!', {icon: 1});
|
|
} else {
|
|
layer.msg(data.info, {icon: 2});
|
|
}
|
|
},
|
|
error:function(){
|
|
layer.msg('服务器故障,请稍后再试',{icon:5});
|
|
}
|
|
});
|
|
|
|
|
|
});
|
|
} else {
|
|
layer.msg('请选择需要操作的数据',{icon:2});
|
|
}
|
|
return false;
|
|
});
|
|
|
|
$('#statusId').selectpicker({
|
|
size: 15
|
|
});
|
|
$('#platformId').selectpicker({
|
|
size: 15
|
|
});
|
|
$('#typeId').selectpicker({
|
|
size: 15
|
|
});
|
|
|
|
|
|
//给全选的复选框添加事件
|
|
$(".check-all").click(function(){
|
|
var userids=this.checked;
|
|
$("input[name=ids]").each(function(){
|
|
this.checked=userids;
|
|
});
|
|
});
|
|
|
|
});
|
|
|
|
|
|
</script>
|
|
</block> |