Merge remote-tracking branch 'origin/dev' into dev
commit
dc65aa0766
@ -1,162 +0,0 @@
|
||||
<extend name="Public/promote_base"/>
|
||||
<block name="css">
|
||||
<link href="__CSS__/20180207/account.css" rel="stylesheet" >
|
||||
</block>
|
||||
<block name="body">
|
||||
<div class="page-list normal_list promote-mychlid-list">
|
||||
<div class="trunk-title">
|
||||
<div class="location">
|
||||
<div class="location-container">当前位置:<span>数据中心></span><span>角色查询</span></div>
|
||||
</div>
|
||||
<img src="__IMG__/20180207/icon_normal_game.png">
|
||||
<span class="title_main">角色查询</span>
|
||||
</div>
|
||||
<div class="trunk-content article">
|
||||
<div class="trunk-search clearfix">
|
||||
<form action="{:U('Promote/mychlid',array('row'=>I('get.row')))}" method="post" enctype="multipart/form-data">
|
||||
<div class="form-group fr">
|
||||
<input type="submit" class="submit normal_space" value="查询">
|
||||
</div>
|
||||
<div class="form-group fr normal_space">
|
||||
<input type="text" name="real_name" class="txt normal_txt" id="uid" placeholder="请输入姓名" value="{:I('real_name')}">
|
||||
</div>
|
||||
<div class="form-group fr normal_space">
|
||||
<input type="text" name="mobile" class="txt normal_txt" id="uid" placeholder="请输入手机号" value="{:I('mobile')}">
|
||||
</div>
|
||||
<div class="form-group fr normal_space">
|
||||
<input type="text" name="idcard" class="txt normal_txt" id="uid" placeholder="请输入身份证" value="{:I('idcard')}">
|
||||
</div>
|
||||
<div class="form-group fr normal_space">
|
||||
<input type="text" name="account" class="txt normal_txt" id="uid" placeholder="请输入帐号" value="{:I('account')}">
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
<div class="trunk-list list_normal">
|
||||
<table class="table normal_table">
|
||||
<tr class="odd">
|
||||
<th>玩家帐号</th>
|
||||
<th>推广账号</th>
|
||||
<th>游戏名称</th>
|
||||
<th>平台</th>
|
||||
<th>游戏区服</th>
|
||||
<th>角色名</th>
|
||||
<th>等级</th>
|
||||
<th>创建时间</th>
|
||||
</tr>
|
||||
<empty name="lists_data">
|
||||
<tr><td colspan="8" style="text-align: center;height: 45vh;"><img src="__IMG__/20180207/icon_wushujv2.png"/><p style="line-height: 40px;color: #A5A5A5;">暂无数据</p></td></tr>
|
||||
<else />
|
||||
<volist name="lists_data" id="vo" mod="2">
|
||||
<tr data-id="{$vo.id}" class="<eq name='mod' value='1'>odd</eq>">
|
||||
<td>{$vo.user_account}</td>
|
||||
<td>{$vo.promote_account}</td>
|
||||
<td>{$vo.game_name}</td>
|
||||
<td>{:getSDKTypeName($vo['sdk_version'])}</td>
|
||||
<td>{$vo.server_name}</td>
|
||||
<td>{$vo.role_name}</td>
|
||||
<td>{$vo.role_level}</td>
|
||||
<td>{$vo.play_time|date='Y-m-d H:i:s',###}</td>
|
||||
</tr>
|
||||
</volist>
|
||||
</empty>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
<div class="pagenation clearfix">
|
||||
<a class="sch-btn" href="{:U('Export/child',array(
|
||||
'p'=>I('p'),
|
||||
'account'=>I('account'),'xlsname'=>'管理中心_'.get_pro_grade_name(PRO_GRADE,1),'row'=>I('request.row')
|
||||
))}" >导出</a>
|
||||
{$_page}
|
||||
</div>
|
||||
</div>
|
||||
<div class="page-explain promote-mychlid-explain">
|
||||
<div class="trunk-content article border_normal">
|
||||
<!-- <table class="desccontent">
|
||||
<tr><td class="title" style="width: 100px;display: inline-block;">二级渠道说明:</td><td class="det">推广员默认为一级渠道,一级渠道可通过推广员后台新增二级渠道;二级渠道由一级渠道管理开启权限,并由一级渠道给二级渠道结算,结算可到财务管理操作。</td></tr>
|
||||
</table>-->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</block>
|
||||
<block name="script">
|
||||
<script type="text/javascript" src="__JS__/20170831/select2.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(function(){
|
||||
$(".select_gallery").select2();
|
||||
$('.reset-password-btn').on({
|
||||
click: function() {
|
||||
var id = $(this).parents('tr').eq(0).attr('data-id')
|
||||
layer.confirm('是否确认重置密码?', {icon: 3, title:'提示'}, function(index){
|
||||
$.ajax({
|
||||
url: "{:U('Promote/resetPassword')}",
|
||||
data: {promote_id: id},
|
||||
type: 'post',
|
||||
dataType: 'json',
|
||||
success: function(response) {
|
||||
layer.close(index)
|
||||
if (response.status == 1) {
|
||||
layer.open({
|
||||
content: '重置密码成功,您的新密码为:' + response.data.password
|
||||
})
|
||||
} else {
|
||||
layer.msg(response.msg)
|
||||
}
|
||||
}
|
||||
})
|
||||
})
|
||||
}
|
||||
})
|
||||
|
||||
$('.froze-btn').on({
|
||||
click: function() {
|
||||
var id = $(this).parents('tr').eq(0).attr('data-id')
|
||||
layer.confirm('是否确认冻结帐号?', {icon: 3, title:'提示'}, function(index){
|
||||
$.ajax({
|
||||
url: "{:U('Promote/froze')}",
|
||||
data: {promote_id: id},
|
||||
type: 'post',
|
||||
dataType: 'json',
|
||||
success: function(response) {
|
||||
layer.msg(response.msg, {time: 1000}, function() {
|
||||
window.location.href = window.location.href
|
||||
})
|
||||
}
|
||||
})
|
||||
})
|
||||
}
|
||||
})
|
||||
|
||||
$('.unfreeze-btn').on({
|
||||
click: function() {
|
||||
var id = $(this).parents('tr').eq(0).attr('data-id')
|
||||
layer.confirm('是否确认解冻帐号?', {icon: 3, title:'提示'}, function(index){
|
||||
$.ajax({
|
||||
url: "{:U('Promote/unfreeze')}",
|
||||
data: {promote_id: id},
|
||||
type: 'post',
|
||||
dataType: 'json',
|
||||
success: function(response) {
|
||||
layer.msg(response.msg, {time: 1000}, function() {
|
||||
window.location.href = window.location.href
|
||||
})
|
||||
}
|
||||
})
|
||||
})
|
||||
}
|
||||
})
|
||||
|
||||
$('.shift-btn').on({
|
||||
click: function() {
|
||||
var id = $(this).parents('tr').eq(0).attr('data-id')
|
||||
layer.open({
|
||||
title: '渠道迁移',
|
||||
type: 1,
|
||||
content: $('#shift-box'),
|
||||
area: ['600px', '400px']
|
||||
})
|
||||
}
|
||||
})
|
||||
})
|
||||
</script>
|
||||
</block>
|
@ -0,0 +1,229 @@
|
||||
<extend name="Public/promote_base"/>
|
||||
<block name="css">
|
||||
<link href="__CSS__/20180207/account.css" rel="stylesheet" >
|
||||
<style>
|
||||
.form-group {
|
||||
float: left;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.form-group label {
|
||||
line-height: 34px;
|
||||
height: 34px;
|
||||
}
|
||||
</style>
|
||||
</block>
|
||||
<block name="body">
|
||||
<div class="page-list normal_list promote-mychlid-list">
|
||||
<div class="trunk-title">
|
||||
<div class="location">
|
||||
<div class="location-container">当前位置:<span>数据中心></span><span>玩家充值</span></div>
|
||||
</div>
|
||||
<img src="__IMG__/20180207/icon_normal_game.png">
|
||||
<span class="title_main">玩家充值</span>
|
||||
</div>
|
||||
<div class="trunk-content article">
|
||||
<div class="trunk-search clearfix">
|
||||
<form action="{:U('Query/userRecharges',array('row'=>I('get.row')))}" method="post" enctype="multipart/form-data">
|
||||
<div class="form-group normal_space">
|
||||
<select name="game_id" class="reselect select_gallery" style="width: 220px;" >
|
||||
<option value="0">请选择游戏</option>
|
||||
<volist name="games" id="game">
|
||||
<option value="{$game.game_id}">{$game.game_name}</option>
|
||||
</volist>
|
||||
</select>
|
||||
</div>
|
||||
<div class="form-group normal_space">
|
||||
<select name="headman_promote_id" class="reselect select_gallery" style="width: 220px;" >
|
||||
<option value="0">请选择区服</option>
|
||||
<volist name="groupPromotes" id="promote">
|
||||
<option ba-id="{$promote.id}" value="{$promote.id}">{$promote.account}</option>
|
||||
</volist>
|
||||
</select>
|
||||
</div>
|
||||
<div class="form-group normal_space">
|
||||
<select name="sdk_version" class="reselect select_gallery" style="width: 220px;" >
|
||||
<option value="0">请选择设备类型</option>
|
||||
<option value="1" <if condition="I('sdk_version') === '1'">selected</if>>Andriod</option>
|
||||
<option value="2" <if condition="I('sdk_version') === '2'">selected</if>>IOS</option>
|
||||
</select>
|
||||
</div>
|
||||
<if condition="$grand_id eq 0">
|
||||
<div class="form-group normal_space">
|
||||
<select name="promote_id" class="reselect select_gallery" style="width: 220px;" >
|
||||
<option value="0">请选择推广员</option>
|
||||
<volist name="promotes" id="promote">
|
||||
<option ba-id="{$promote.id}" value="{$promote.id}">{$promote.account}</option>
|
||||
</volist>
|
||||
</select>
|
||||
</div>
|
||||
</if>
|
||||
<if condition="$parent_id eq 0">
|
||||
<div class="form-group normal_space">
|
||||
<select name="headman_promote_id" class="reselect select_gallery" style="width: 220px;" >
|
||||
<option value="0">请选择组长</option>
|
||||
<volist name="groupPromotes" id="promote">
|
||||
<option ba-id="{$promote.id}" value="{$promote.id}">{$promote.account}</option>
|
||||
</volist>
|
||||
</select>
|
||||
</div>
|
||||
</if>
|
||||
<div class="form-group normal_space">
|
||||
<input type="text" name="role_name" class="txt normal_txt" id="uid" placeholder="请输入角色名" value="{:I('role_name')}">
|
||||
</div>
|
||||
<div class="form-group normal_space">
|
||||
<input type="text" name="user_account" class="txt normal_txt" id="uid" placeholder="请输入玩家账号" value="{:I('user_account')}">
|
||||
</div>
|
||||
<!-- <div class="form-group normal_space">
|
||||
<input type="text" name="device_sn" class="txt normal_txt" id="uid" placeholder="请输入设备号" value="{:I('device_sn')}">
|
||||
</div> -->
|
||||
<div class="form-group normal_space fr">
|
||||
<label>充值总额:</label>
|
||||
<input type="text" class="txt" name="cost_begin" style="width: 50px" value="{:I('cost_begin')}" >
|
||||
<label> ~ </label>
|
||||
<input type="text" class="txt" name="cost_end" style="width: 50px" value="{:I('cost_end')}" >
|
||||
</div>
|
||||
<div class="form-group normal_space">
|
||||
<input type="submit" class="submit" value="查询">
|
||||
</div>
|
||||
<div class="form-group normal_space">
|
||||
<label><input name="is_self" value="1" type="checkbox"> 本账号推广</label>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
<div class="trunk-list list_normal">
|
||||
<table class="table normal_table">
|
||||
<tr class="odd">
|
||||
<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>
|
||||
<empty name="records">
|
||||
<tr><td colspan="12" style="text-align: center;height: 45vh;"><img src="__IMG__/20180207/icon_wushujv2.png"/><p style="line-height: 40px;color: #A5A5A5;">暂无数据</p></td></tr>
|
||||
<else />
|
||||
<volist name="records" id="record" mod="2">
|
||||
<tr data-id="{$vo.id}" class="<eq name='mod' value='1'>odd</eq>">
|
||||
<td>{$record.user_account}</td>
|
||||
<td>{$record.game_name}</td>
|
||||
<td>{:getSDKTypeName($record['sdk_version'])}</td>
|
||||
<td>{$record.server_name}</td>
|
||||
<td>{$record.role_name}</td>
|
||||
<td>{$record.role_level}</td>
|
||||
<td>{$record.recharge_cost}</td>
|
||||
<td>{$record.recharge_count}</td>
|
||||
<td>{$record.recharge_cost_today}</td>
|
||||
<td>{$record.unlogin_day}</td>
|
||||
<td>{$record.play_time|date='Y-m-d H:i:s',###}</td>
|
||||
<td>{$record.promote_account}</td>
|
||||
</tr>
|
||||
</volist>
|
||||
</empty>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
<div class="pagenation clearfix">
|
||||
<a class="sch-btn" href="{:U('Export/child',array(
|
||||
'p'=>I('p'),
|
||||
'account'=>I('account'),'xlsname'=>'管理中心_'.get_pro_grade_name(PRO_GRADE,1),'row'=>I('request.row')
|
||||
))}" >导出</a>
|
||||
{$_page}
|
||||
</div>
|
||||
</div>
|
||||
<div class="page-explain promote-mychlid-explain">
|
||||
<div class="trunk-content article border_normal">
|
||||
<!-- <table class="desccontent">
|
||||
<tr><td class="title" style="width: 100px;display: inline-block;">二级渠道说明:</td><td class="det">推广员默认为一级渠道,一级渠道可通过推广员后台新增二级渠道;二级渠道由一级渠道管理开启权限,并由一级渠道给二级渠道结算,结算可到财务管理操作。</td></tr>
|
||||
</table>-->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</block>
|
||||
<block name="script">
|
||||
<script type="text/javascript" src="__JS__/20170831/select2.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(function(){
|
||||
$(".select_gallery").select2();
|
||||
$('.reset-password-btn').on({
|
||||
click: function() {
|
||||
var id = $(this).parents('tr').eq(0).attr('data-id')
|
||||
layer.confirm('是否确认重置密码?', {icon: 3, title:'提示'}, function(index){
|
||||
$.ajax({
|
||||
url: "{:U('Promote/resetPassword')}",
|
||||
data: {promote_id: id},
|
||||
type: 'post',
|
||||
dataType: 'json',
|
||||
success: function(response) {
|
||||
layer.close(index)
|
||||
if (response.status == 1) {
|
||||
layer.open({
|
||||
content: '重置密码成功,您的新密码为:' + response.data.password
|
||||
})
|
||||
} else {
|
||||
layer.msg(response.msg)
|
||||
}
|
||||
}
|
||||
})
|
||||
})
|
||||
}
|
||||
})
|
||||
|
||||
$('.froze-btn').on({
|
||||
click: function() {
|
||||
var id = $(this).parents('tr').eq(0).attr('data-id')
|
||||
layer.confirm('是否确认冻结帐号?', {icon: 3, title:'提示'}, function(index){
|
||||
$.ajax({
|
||||
url: "{:U('Promote/froze')}",
|
||||
data: {promote_id: id},
|
||||
type: 'post',
|
||||
dataType: 'json',
|
||||
success: function(response) {
|
||||
layer.msg(response.msg, {time: 1000}, function() {
|
||||
window.location.href = window.location.href
|
||||
})
|
||||
}
|
||||
})
|
||||
})
|
||||
}
|
||||
})
|
||||
|
||||
$('.unfreeze-btn').on({
|
||||
click: function() {
|
||||
var id = $(this).parents('tr').eq(0).attr('data-id')
|
||||
layer.confirm('是否确认解冻帐号?', {icon: 3, title:'提示'}, function(index){
|
||||
$.ajax({
|
||||
url: "{:U('Promote/unfreeze')}",
|
||||
data: {promote_id: id},
|
||||
type: 'post',
|
||||
dataType: 'json',
|
||||
success: function(response) {
|
||||
layer.msg(response.msg, {time: 1000}, function() {
|
||||
window.location.href = window.location.href
|
||||
})
|
||||
}
|
||||
})
|
||||
})
|
||||
}
|
||||
})
|
||||
|
||||
$('.shift-btn').on({
|
||||
click: function() {
|
||||
var id = $(this).parents('tr').eq(0).attr('data-id')
|
||||
layer.open({
|
||||
title: '渠道迁移',
|
||||
type: 1,
|
||||
content: $('#shift-box'),
|
||||
area: ['600px', '400px']
|
||||
})
|
||||
}
|
||||
})
|
||||
})
|
||||
</script>
|
||||
</block>
|
@ -0,0 +1,157 @@
|
||||
<extend name="Public/promote_base"/>
|
||||
<block name="css">
|
||||
<link href="__CSS__/20180207/account.css" rel="stylesheet" >
|
||||
<style>
|
||||
.form-group {
|
||||
float: left;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.form-group label {
|
||||
line-height: 34px;
|
||||
height: 34px;
|
||||
}
|
||||
</style>
|
||||
</block>
|
||||
<block name="body">
|
||||
<div class="page-list normal_list promote-mychlid-list">
|
||||
<div class="trunk-title">
|
||||
<div class="location">
|
||||
<div class="location-container">当前位置:<span>数据中心></span><span>角色查询</span></div>
|
||||
</div>
|
||||
<img src="__IMG__/20180207/icon_normal_game.png">
|
||||
<span class="title_main">角色查询</span>
|
||||
</div>
|
||||
<div class="trunk-content article">
|
||||
<div class="trunk-search clearfix">
|
||||
<form action="{:U('Query/userRoles',array('row'=>I('get.row')))}" method="post" enctype="multipart/form-data">
|
||||
|
||||
<div class="form-group normal_space">
|
||||
<select name="game_id" class="reselect select_gallery" style="width: 220px;" >
|
||||
<option value="0">请选择游戏</option>
|
||||
<volist name="games" id="game">
|
||||
<option value="{$game.game_id}" <if condition="I('game_id') === $game['id']">selected</if>>{$game.game_name}</option>
|
||||
</volist>
|
||||
</select>
|
||||
</div>
|
||||
<div class="form-group normal_space">
|
||||
<select name="server_id" class="reselect select_gallery" style="width: 220px;" >
|
||||
<option value="0">请选择区服</option>
|
||||
<volist name="groupPromotes" id="promote">
|
||||
<option ba-id="{$promote.id}" value="{$promote.id}">{$promote.account}</option>
|
||||
</volist>
|
||||
</select>
|
||||
</div>
|
||||
<div class="form-group normal_space">
|
||||
<select name="sdk_version" class="reselect select_gallery" style="width: 220px;" >
|
||||
<option value="0">请选择设备类型</option>
|
||||
<option value="1" <if condition="I('sdk_version') === '1'">selected</if>>Andriod</option>
|
||||
<option value="2" <if condition="I('sdk_version') === '2'">selected</if>>IOS</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="form-group normal_space">
|
||||
<input type="text" name="role_name" class="txt normal_txt" id="uid" placeholder="请输入角色名" value="{:I('role_name')}">
|
||||
</div>
|
||||
<div class="form-group normal_space">
|
||||
<input type="text" name="user_account" class="txt normal_txt" id="uid" placeholder="请输入玩家账号" value="{:I('user_account')}">
|
||||
</div>
|
||||
<if condition="$grand_id eq 0">
|
||||
<div class="form-group normal_space">
|
||||
<select name="promote_id" class="reselect select_gallery" style="width: 220px;" >
|
||||
<option value="0">请选择推广员</option>
|
||||
<volist name="promotes" id="promote">
|
||||
<option ba-id="{$promote.id}" value="{$promote.id}" <if condition="I('promote_id') === $promote['id']">selected</if>>{$promote.account}</option>
|
||||
</volist>
|
||||
</select>
|
||||
</div>
|
||||
</if>
|
||||
<if condition="$parent_id eq 0">
|
||||
<div class="form-group normal_space">
|
||||
<select name="headman_promote_id" class="reselect select_gallery" style="width: 220px;" >
|
||||
<option value="0">请选择组长</option>
|
||||
<volist name="groupPromotes" id="promote">
|
||||
<option ba-id="{$promote.id}" value="{$promote.id}" <if condition="I('promote_id') === $promote['id']">selected</if>>{$promote.account}</option>
|
||||
</volist>
|
||||
</select>
|
||||
</div>
|
||||
</if>
|
||||
<div class="form-group normal_space fr">
|
||||
<label>创建时间:</label>
|
||||
<input type="text" class="txt range-date" name="play_time" placeholder="创建时间" value="{:I('play_time')}" >
|
||||
</div>
|
||||
<div class="form-group normal_space fr">
|
||||
<label>玩家等级:</label>
|
||||
<input type="text" class="txt" name="role_level_begin" style="width: 50px" value="{:I('role_level_begin')}" >
|
||||
<label> ~ </label>
|
||||
<input type="text" class="txt" name="role_level_end" style="width: 50px" value="{:I('role_level_end')}" >
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<input type="submit" class="submit normal_space" value="查询">
|
||||
</div>
|
||||
<div class="form-group normal_space">
|
||||
<label><input name="is_self" value="1" type="checkbox"> 本账号推广</label>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
<div class="trunk-list list_normal">
|
||||
<table class="table normal_table">
|
||||
<tr class="odd">
|
||||
<th>玩家帐号</th>
|
||||
<th>推广账号</th>
|
||||
<th>游戏名称</th>
|
||||
<th>平台</th>
|
||||
<th>游戏区服</th>
|
||||
<th>角色名</th>
|
||||
<th>等级</th>
|
||||
<th>创建时间</th>
|
||||
</tr>
|
||||
<empty name="records">
|
||||
<tr><td colspan="8" style="text-align: center;height: 45vh;"><img src="__IMG__/20180207/icon_wushujv2.png"/><p style="line-height: 40px;color: #A5A5A5;">暂无数据</p></td></tr>
|
||||
<else />
|
||||
<volist name="records" id="record" mod="2">
|
||||
<tr data-id="{$vo.id}" class="<eq name='mod' value='1'>odd</eq>">
|
||||
<td>{$record.user_account}</td>
|
||||
<td>{$record.promote_account}</td>
|
||||
<td>{$record.game_name}</td>
|
||||
<td>{:getSDKTypeName($record['sdk_version'])}</td>
|
||||
<td>{$record.server_name}</td>
|
||||
<td>{$record.role_name}</td>
|
||||
<td>{$record.role_level}</td>
|
||||
<td>{$record.play_time|date='Y-m-d H:i:s',###}</td>
|
||||
</tr>
|
||||
</volist>
|
||||
</empty>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
<div class="pagenation clearfix">
|
||||
<a class="sch-btn" href="{:U('Export/child',array(
|
||||
'p'=>I('p'),
|
||||
'account'=>I('account'),'xlsname'=>'管理中心_'.get_pro_grade_name(PRO_GRADE,1),'row'=>I('request.row')
|
||||
))}" >导出</a>
|
||||
{$_page}
|
||||
</div>
|
||||
</div>
|
||||
<div class="page-explain promote-mychlid-explain">
|
||||
<div class="trunk-content article border_normal">
|
||||
<!-- <table class="desccontent">
|
||||
<tr><td class="title" style="width: 100px;display: inline-block;">二级渠道说明:</td><td class="det">推广员默认为一级渠道,一级渠道可通过推广员后台新增二级渠道;二级渠道由一级渠道管理开启权限,并由一级渠道给二级渠道结算,结算可到财务管理操作。</td></tr>
|
||||
</table>-->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</block>
|
||||
<block name="script">
|
||||
<link rel="stylesheet" href="__STATIC__/flatpickr/flatpickr.min.css">
|
||||
<script src="__STATIC__/flatpickr/flatpickr.min.js"></script>
|
||||
<script src="__STATIC__/flatpickr/l10n/zh.js"></script>
|
||||
<script type="text/javascript" src="__JS__/20170831/select2.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(function() {
|
||||
$('.range-date').flatpickr({
|
||||
mode: 'range',
|
||||
locale: 'zh',
|
||||
})
|
||||
$('.select_gallery').select2();
|
||||
})
|
||||
</script>
|
||||
</block>
|
@ -0,0 +1,121 @@
|
||||
<extend name="Public/promote_base"/>
|
||||
<block name="css">
|
||||
<link href="__CSS__/20180207/account.css" rel="stylesheet" >
|
||||
</block>
|
||||
<block name="body">
|
||||
<div class="page-list normal_list promote-mychlid-list">
|
||||
<div class="trunk-title">
|
||||
<div class="location">
|
||||
<div class="location-container">当前位置:<span>数据中心></span><span>注册明细</span></div>
|
||||
</div>
|
||||
<img src="__IMG__/20180207/icon_normal_game.png">
|
||||
<span class="title_main">注册明细</span>
|
||||
</div>
|
||||
<div class="trunk-content article">
|
||||
<div class="trunk-search clearfix">
|
||||
<form action="{:U('Promote/mychlid',array('row'=>I('get.row')))}" method="post" enctype="multipart/form-data">
|
||||
<div class="form-group fr">
|
||||
<input type="submit" class="submit normal_space" value="查询">
|
||||
</div>
|
||||
<div class="form-group fr normal_space">
|
||||
<input type="text" name="account" class="txt normal_txt" placeholder="请输入玩家帐号" value="{:I('account')}">
|
||||
</div>
|
||||
<div class="form-group fr normal_space">
|
||||
<select name="promote_id" class="reselect select_gallery" style="width: 220px;" >
|
||||
<option value="0">请选择设备类型</option>
|
||||
<volist name="subPromotes" id="promote">
|
||||
<option ba-id="{$promote.id}" value="{$promote.id}">{$promote.account}</option>
|
||||
</volist>
|
||||
</select>
|
||||
</div>
|
||||
<if condition="$grand_id eq 0">
|
||||
<div class="form-group fr normal_space">
|
||||
<select name="promote_id" class="reselect select_gallery" style="width: 220px;" >
|
||||
<option value="0">请选择推广员</option>
|
||||
<volist name="promotes" id="promote">
|
||||
<option ba-id="{$promote.id}" value="{$promote.id}">{$promote.account}</option>
|
||||
</volist>
|
||||
</select>
|
||||
</div>
|
||||
</if>
|
||||
<if condition="$parent_id eq 0">
|
||||
<div class="form-group fr normal_space">
|
||||
<select name="headman_promote_id" class="reselect select_gallery" style="width: 220px;" >
|
||||
<option value="0">请选择组长</option>
|
||||
<volist name="groupPromotes" id="promote">
|
||||
<option ba-id="{$promote.id}" value="{$promote.id}">{$promote.account}</option>
|
||||
</volist>
|
||||
</select>
|
||||
</div>
|
||||
</if>
|
||||
<div class="form-group normal_space fr">
|
||||
<label>注册时间:</label>
|
||||
<input type="text" id="search-play-time" class="txt" name="register_time" placeholder="注册时间" value="{:I('register_time')}" >
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
<div class="trunk-list list_normal">
|
||||
<table class="table normal_table">
|
||||
<tr class="odd">
|
||||
<th>玩家帐号</th>
|
||||
<th>推广账号</th>
|
||||
<th>设备IMIE/IDFA</th>
|
||||
<th>设备类型</th>
|
||||
<th>注册时间</th>
|
||||
<th>注册IP</th>
|
||||
<th>最近登录时间</th>
|
||||
<th>最近登陆IP</th>
|
||||
<th>操作</th>
|
||||
</tr>
|
||||
<empty name="records">
|
||||
<tr><td colspan="8" style="text-align: center;height: 45vh;"><img src="__IMG__/20180207/icon_wushujv2.png"/><p style="line-height: 40px;color: #A5A5A5;">暂无数据</p></td></tr>
|
||||
<else />
|
||||
<volist name="records" id="record" mod="2">
|
||||
<tr data-id="{$record.id}" class="<eq name='mod' value='1'>odd</eq>">
|
||||
<td>{$record.account}</td>
|
||||
<td>{$record.promote_account}</td>
|
||||
<td>{$record.device_number}</td>
|
||||
<td></td>
|
||||
<td>{$record.register_time|date='Y-m-d H:i:s',###}</td>
|
||||
<td>{$record.register_ip}</td>
|
||||
<td>{$record.login_time|date='Y-m-d H:i:s',###}</td>
|
||||
<td>{$record.login_ip}</td>
|
||||
<td><a href="{:U('Query/userRoles', ['id' => $record['id']])}">查看角色</a></td>
|
||||
</tr>
|
||||
</volist>
|
||||
</empty>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
<div class="pagenation clearfix">
|
||||
<a class="sch-btn" href="{:U('Export/child',array(
|
||||
'p'=>I('p'),
|
||||
'account'=>I('account'),'xlsname'=>'管理中心_'.get_pro_grade_name(PRO_GRADE,1),'row'=>I('request.row')
|
||||
))}" >导出</a>
|
||||
{$_page}
|
||||
</div>
|
||||
</div>
|
||||
<div class="page-explain promote-mychlid-explain">
|
||||
<div class="trunk-content article border_normal">
|
||||
<!-- <table class="desccontent">
|
||||
<tr><td class="title" style="width: 100px;display: inline-block;">二级渠道说明:</td><td class="det">推广员默认为一级渠道,一级渠道可通过推广员后台新增二级渠道;二级渠道由一级渠道管理开启权限,并由一级渠道给二级渠道结算,结算可到财务管理操作。</td></tr>
|
||||
</table>-->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</block>
|
||||
<block name="script">
|
||||
<link rel="stylesheet" href="__STATIC__/flatpickr/flatpickr.min.css">
|
||||
<script src="__STATIC__/flatpickr/flatpickr.min.js"></script>
|
||||
<script src="__STATIC__/flatpickr/l10n/zh.js"></script>
|
||||
<script type="text/javascript" src="__JS__/20170831/select2.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
$(function(){
|
||||
$('#search-play-time').flatpickr({
|
||||
mode: 'range',
|
||||
locale: 'zh',
|
||||
})
|
||||
$('.select_gallery').select2();
|
||||
})
|
||||
</script>
|
||||
</block>
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1,68 @@
|
||||
(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
|
||||
typeof define === 'function' && define.amd ? define(['exports'], factory) :
|
||||
(global = global || self, factory(global.zh = {}));
|
||||
}(this, function (exports) { 'use strict';
|
||||
|
||||
var fp = typeof window !== "undefined" && window.flatpickr !== undefined
|
||||
? window.flatpickr
|
||||
: {
|
||||
l10ns: {}
|
||||
};
|
||||
var Mandarin = {
|
||||
weekdays: {
|
||||
shorthand: ["周日", "周一", "周二", "周三", "周四", "周五", "周六"],
|
||||
longhand: [
|
||||
"星期日",
|
||||
"星期一",
|
||||
"星期二",
|
||||
"星期三",
|
||||
"星期四",
|
||||
"星期五",
|
||||
"星期六",
|
||||
]
|
||||
},
|
||||
months: {
|
||||
shorthand: [
|
||||
"一月",
|
||||
"二月",
|
||||
"三月",
|
||||
"四月",
|
||||
"五月",
|
||||
"六月",
|
||||
"七月",
|
||||
"八月",
|
||||
"九月",
|
||||
"十月",
|
||||
"十一月",
|
||||
"十二月",
|
||||
],
|
||||
longhand: [
|
||||
"一月",
|
||||
"二月",
|
||||
"三月",
|
||||
"四月",
|
||||
"五月",
|
||||
"六月",
|
||||
"七月",
|
||||
"八月",
|
||||
"九月",
|
||||
"十月",
|
||||
"十一月",
|
||||
"十二月",
|
||||
]
|
||||
},
|
||||
rangeSeparator: " 至 ",
|
||||
weekAbbreviation: "周",
|
||||
scrollTitle: "滚动切换",
|
||||
toggleTitle: "点击切换 12/24 小时时制"
|
||||
};
|
||||
fp.l10ns.zh = Mandarin;
|
||||
var zh = fp.l10ns;
|
||||
|
||||
exports.Mandarin = Mandarin;
|
||||
exports.default = zh;
|
||||
|
||||
Object.defineProperty(exports, '__esModule', { value: true });
|
||||
|
||||
}));
|
Loading…
Reference in New Issue