Merge branch 'feature/user_paywhite_list' of 47.111.118.107:wmtx/platform into feature/pay_white_list
commit
6b8f9a47d0
@ -0,0 +1,126 @@
|
||||
<?php
|
||||
|
||||
namespace Admin\Controller;
|
||||
|
||||
use User\Api\UserApi as UserApi;
|
||||
|
||||
/**
|
||||
* 推广查询控制器
|
||||
* @author 王贺
|
||||
*/
|
||||
class UserPayWhiteListController extends ThinkController
|
||||
{
|
||||
public function index($p = 1) {
|
||||
|
||||
$page = intval($p);
|
||||
$page = $page ? $page : 1; //默认显示第一页数据
|
||||
$row=10;
|
||||
if(isset($_REQUEST['row'])) {$row = $_REQUEST['row'];}else{$row = 10;}
|
||||
|
||||
$map = [];
|
||||
|
||||
|
||||
if ($_REQUEST['show']) {
|
||||
|
||||
$data = M('user_pay_whitelist','tab_')->where($map)
|
||||
->page($page,$row)
|
||||
->select();
|
||||
|
||||
foreach ($data as $key => $value) {
|
||||
if ($value['status']==2) {
|
||||
$data[$key]['time_status'] = '永久';
|
||||
} else {
|
||||
$data[$key]['time_status'] = '有效期至'.date('Y-m-d H:i:s',$value['update_time']+$value['time']);
|
||||
}
|
||||
|
||||
$data[$key]['update_time'] = date('Y-m-d H:i:s',$value['update_time']);
|
||||
|
||||
}
|
||||
|
||||
$count = M('user_pay_whitelist','tab_')->where($map)->count();
|
||||
|
||||
$this->assign('data',$data);
|
||||
|
||||
$page = set_pagination($count,$row);
|
||||
if($page) {$this->assign('_page', $page);}
|
||||
}
|
||||
|
||||
$this->assign('data',$data);
|
||||
$this->meta_title = '玩家支付限制白名单';
|
||||
|
||||
$this->display();
|
||||
|
||||
}
|
||||
|
||||
public function add() {
|
||||
|
||||
if (IS_POST) {
|
||||
|
||||
$post = $_POST;
|
||||
|
||||
if($post['account']!=$post['account_check']) {
|
||||
$this->ajaxReturn(['status'=>0,'msg'=>'两次输入不一致']);
|
||||
exit();
|
||||
}
|
||||
|
||||
$hav_user = M('user','tab_')->where(['account'=>$post['account']])->find();
|
||||
|
||||
if(!$hav_user) {
|
||||
$this->ajaxReturn(['status'=>0,'msg'=>'账号不存在']);
|
||||
exit();
|
||||
}
|
||||
|
||||
$whiteList = M('user_pay_whitelist','tab_')->where(['user_id'=>$hav_user['id']])->find();
|
||||
|
||||
$insert = [];
|
||||
|
||||
$insert['user_id'] = $hav_user['id'];
|
||||
$insert['user_account'] = $hav_user['account'];
|
||||
|
||||
if(!$whiteList) {
|
||||
|
||||
$insert['status'] = 0;
|
||||
$insert['time'] = 7*86400;
|
||||
$insert['create_time'] = time();
|
||||
$insert['update_time'] = time();
|
||||
|
||||
$is_success = M('user_pay_whitelist','tab_')->add($insert);
|
||||
|
||||
} else {
|
||||
$insert['update_time'] = time();
|
||||
if($whiteList['status']==0) {
|
||||
$insert['status'] = 1;
|
||||
$insert['time'] = 30*86400;
|
||||
} elseif($whiteList['status']==1) {
|
||||
$insert['status'] = 2;
|
||||
$insert['time'] = 1;
|
||||
|
||||
}
|
||||
|
||||
if($whiteList['sstatus']==2) {
|
||||
$this->ajaxReturn(['status'=>0,'msg'=>'该账号已经是永久无需再进行操作']);
|
||||
exit();
|
||||
}
|
||||
|
||||
$is_success = M('user_pay_whitelist','tab_')->where(['user_id'=>$hav_user['id']])->save($insert);
|
||||
}
|
||||
|
||||
if($is_success) {
|
||||
$this->ajaxReturn(['status'=>1,'msg'=>'操作成功']);
|
||||
exit();
|
||||
} else {
|
||||
$this->ajaxReturn(['status'=>0,'msg'=>'操作失败']);
|
||||
exit();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
$this->meta_title = '新增支付限制白名单账号';
|
||||
|
||||
$this->display();
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,131 @@
|
||||
<extend name="Public/base" />
|
||||
|
||||
<block name="body">
|
||||
<!-- <link rel="stylesheet" type="text/css" href="__CSS__/admin_table.css" media="all"> -->
|
||||
<script type="text/javascript" src="__STATIC__/uploadify/jquery.uploadify.min.js"></script>
|
||||
<script type="text/javascript" src="__STATIC__/provincecityarea/area1.js"></script>
|
||||
<script type="text/javascript" src="__STATIC__/provincecityarea/AreaData_min.js"></script>
|
||||
<script type="text/javascript" src="__STATIC__/provincecityarea/jquery-1.7.min.js"></script>
|
||||
<script type="text/javascript" src="__JS__/jquery.mousewheel.js"></script>
|
||||
|
||||
|
||||
<div class="cf main-place top_nav_list navtab_list">
|
||||
<!-- <ul class="tabnav1711 fr jstabnav">-->
|
||||
<!-- <li data-tab="tab1" class="current"><a href="javascript:void(0);">基本信息</a></li></li>-->
|
||||
<!-- <li data-tab="tab2" ><a href="javascript:void(0);">结算信息</a></li>-->
|
||||
<!-- </ul>-->
|
||||
<h3 class="page_title">新增支付限制白名单账号</h3>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- 标签页导航 -->
|
||||
<div class="tab-wrap">
|
||||
|
||||
<div class="tab-content tabcon1711">
|
||||
<!-- 表单 -->
|
||||
<form id="form" action="{:U('add?model='.$model['id'])}" method="post" class="form-horizontal">
|
||||
|
||||
<!-- 基础文档模型 -->
|
||||
<div id="tab1" class="tab-pane in tab1">
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td class="l">账号:</td>
|
||||
<td class="r">
|
||||
<input type="text" class="txt" id="account" name="account" value="{$_REQUEST['account']}" onKeyUp="value=value.replace(/[^\w\.\/]/ig,'')">
|
||||
|
||||
</td>
|
||||
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="l">账号确认:</td>
|
||||
<td class="r">
|
||||
<input type="text" class="txt" id="account_check" name="account_check" value="{$_REQUEST['account']}" onKeyUp="value=value.replace(/[^\w\.\/]/ig,'')">
|
||||
|
||||
</td>
|
||||
|
||||
</tr>
|
||||
</tr>
|
||||
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div class="form-item cf">
|
||||
<button class="submit_btn mlspacing" id="save" type="button">
|
||||
保存
|
||||
</button>
|
||||
<a class="submit_btn " alt="返回上一页" title="返回上一页" href="javascript:window.history.back(-1);" >
|
||||
返回
|
||||
</a>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="common_settings">
|
||||
<span class="plus_icon"><span><img src="__IMG__/zwmimages/icon_jia.png"></span></span>
|
||||
<form class="addShortcutIcon">
|
||||
<input type="hidden" name="title" value="{$m_title}">
|
||||
<input type="hidden" name="url" value="Promote/lists/type/1">
|
||||
</form>
|
||||
<a class="ajax-post add-butn <notempty name='commonset'>addSIsetted</notempty>" href="javascript:;" target-form="addShortcutIcon" url="{:U('Think/addShortcutIcon')}"><img src="__IMG__/zwmimages/icon_jia.png"><span><notempty name='commonset'>已添加<else />添加至常用设置</notempty></span></a>
|
||||
</div>
|
||||
|
||||
</block>
|
||||
|
||||
<block name="script">
|
||||
<script type="text/javascript" src="__STATIC__/datetimepicker/js/bootstrap-datetimepicker.min.js"></script>
|
||||
<script src="__STATIC__/layer/layer.js" type="text/javascript"></script>
|
||||
<script type="text/javascript">
|
||||
//导航高亮
|
||||
highlight_subnav('{:U('TestWhiteList/lists')}');
|
||||
|
||||
$(function(){
|
||||
// var pro="{:$data['bank_area']['0']}";
|
||||
// alert (pro);
|
||||
showTab();
|
||||
prov="{:substr($data['bank_area'],0,2)}";
|
||||
city="{:substr($data['bank_area'],2,2)}";
|
||||
ciarea="{:substr($data['bank_area'],4,2)}";
|
||||
//initComplexArea('seachprov', 'seachcity', 'seachdistrict', area_array, sub_array, prov, city, ciarea);
|
||||
|
||||
$("#save").click(function () {
|
||||
var text = [];
|
||||
|
||||
$('#tip').css('display','none');
|
||||
|
||||
text.push({"account": $("#account").val(), "account_check": $("#account_check").val()});
|
||||
$('#tip').find('.tipclose').click();
|
||||
layer.confirm('【警告】如需继续请点击确认', {
|
||||
btn: ['确认','取消'],
|
||||
title:false
|
||||
}, function() {
|
||||
|
||||
$.ajax({
|
||||
url: "{:U('UserPayWhiteList/add')}",
|
||||
type: "post",
|
||||
data: text[0],
|
||||
dataType: 'json',
|
||||
success: function (data) {
|
||||
if (data.status == 0) {
|
||||
layer.msg("<em style='color:white'>" + data.msg + "</em>");
|
||||
} else {
|
||||
layer.msg("<em style='color:white'>" + data.msg + "</em>")
|
||||
|
||||
setTimeout(function(){
|
||||
window.location.href = "/admin.php?s=/UserPayWhiteList/index.html";
|
||||
},1500);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
})
|
||||
|
||||
})
|
||||
|
||||
|
||||
});
|
||||
</script>
|
||||
</block>
|
||||
|
@ -0,0 +1,659 @@
|
||||
<extend name="Public/base"/>
|
||||
|
||||
<block name="body">
|
||||
<link rel="stylesheet" href="__CSS__/select2.min.css" type="text/css" />
|
||||
<link rel="stylesheet" href="__CSS__/pro_promote.css" type="text/css" />
|
||||
<script src="__STATIC__/jquery.form.js"></script>
|
||||
<script src="__STATIC__/layer/layer.js"></script>
|
||||
<script type="text/javascript" src="__JS__/bootstrap.min.js"></script>
|
||||
<script type="text/javascript" src="__JS__/select2.min.js"></script>
|
||||
<script type="text/javascript" src="__STATIC__/layer3/layer.js"></script>
|
||||
|
||||
<style>
|
||||
.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;}
|
||||
.layui-layer-dialog .layui-layer-content{color:red}
|
||||
.butnbox {padding:10px 0 10px;}
|
||||
.butnbox .butnlist {overflow:hidden;clear:both;}
|
||||
.butnbox .butnlist .butn,.butnbox .butnlist .butn:hover {text-decoration:none;border:none;}
|
||||
.butnbox .butnlist .butn {display:inline-block;width:120px;height:28px;line-height:28px;text-align:center;color:#FFF;background:#3C95C8;border-radius:3px;}
|
||||
.butnbox .butnlist .butn.last {background:#009900;}
|
||||
.butnbox .butnlist .butn~.butn {margin-left:20px;}
|
||||
.data_list table tbody tr a.disabled,.data_list table tbody tr a.disabled:hover {color:#999;cursor:default;}
|
||||
.layui-layer-title {
|
||||
text-align: center;
|
||||
height: 80px;
|
||||
line-height: 80px;
|
||||
font-weight: 600;
|
||||
font-size: 18px;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div class="cf main-place top_nav_list navtab_list">
|
||||
<h3 class="page_title">结算单管理</h3>
|
||||
<p class="description_text" id="order_url"></p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<!--<div class="cf top_nav_list" style="height: 38px;">-->
|
||||
<!--<!– 高级搜索 –>-->
|
||||
<!--<div class="jssearch fl cf search_list" style="margin-bottom: 0">-->
|
||||
<!--<div class="input-list input-list-promote search_label_rehab">-->
|
||||
<!--<select id="statement_type" name="statement_type" class="select_gallery" style="width:150px;">-->
|
||||
<!--<option value="">对账类型</option>-->
|
||||
<!--<option value="0">上游对账单</option>-->
|
||||
<!--<option value="1">下游对账单</option>-->
|
||||
<!--<option value="2">下游补点对账单</option>-->
|
||||
<!--</select>-->
|
||||
<!--</div>-->
|
||||
<!--<div class="input-list input-list-promote search_label_rehab">-->
|
||||
<!--<select id="company_id" name="company_id" class="select_gallery" >-->
|
||||
<!--<option company-type="" value="">请选择或输入对账公司</option>-->
|
||||
<!--<volist name=":getCompanyList()" id="vo">-->
|
||||
<!--<option company-type="{$vo.company_type}" value="{$vo.company_name}" <?php echo $vo.company_name == I('company_name') ? 'selected':''; ?> >{$vo.company_name}</option>-->
|
||||
<!--</volist>-->
|
||||
<!--</select>-->
|
||||
<!--</div>-->
|
||||
<!--<div class="input-list">-->
|
||||
<!--<input type="text" readonly id="time_start" name="time_start" class="" value="{:I('time_start')}" placeholder="开始时间" />-->
|
||||
<!-- - -->
|
||||
<!--<div class="input-append date" id="datetimepicker" style="display:inline-block">-->
|
||||
<!--<input type="text" readonly id="time_end" name="time_end" class="" value="{:I('time_end')}" placeholder="结束时间" />-->
|
||||
<!--<span class="add-on"><i class="icon-th"></i></span>-->
|
||||
<!--</div>-->
|
||||
<!--</div>-->
|
||||
<!--<div class="input-list input-list-promote search_label_rehab">-->
|
||||
<!--<select id="verify_status" name="verify_status" class="select_gallery" >-->
|
||||
<!--<option value="">请选择审核状态</option>-->
|
||||
<!--<option value="0">未审核</option>-->
|
||||
<!--<option value="1">审核通过</option>-->
|
||||
<!--<option value="2">审核拒绝</option>-->
|
||||
<!--</select>-->
|
||||
<!--</div>-->
|
||||
<!--<input type="hidden" name="" value="" class="sortBy">-->
|
||||
<!--<input type="hidden" name="type" value="{$_GET['type']}">-->
|
||||
<!--<div class="input-list">-->
|
||||
<!--<a class="sch-btn" href="javascript:;" id="search" url="{:U('StatementMangement/lists','model='.$model['name'] .'&row='.I('row'),false)}">搜索</a>-->
|
||||
<!--</div>-->
|
||||
|
||||
<!--</div>-->
|
||||
<!--</div>-->
|
||||
|
||||
<div class="butnbox" >
|
||||
<div class="butnlist jscheckbutn" style="margin-left: 2px">
|
||||
<a class="butn" style="width:180px" href="/admin.php?s=/UserPayWhiteList/add.html">添加允许支付账号</a>
|
||||
<a class="butn" style="width:180px" href="/admin.php?s=/UserPayWhiteList/index/show/1.html">查看允许支付白名单</a>
|
||||
</div>
|
||||
</div>
|
||||
<if condition = "!empty($data)">
|
||||
<!-- 数据列表 -->
|
||||
<div class="data_list">
|
||||
<div class="">
|
||||
<table>
|
||||
<!-- 表头 -->
|
||||
<thead>
|
||||
<tr>
|
||||
<th><input class="check-all" type="checkbox"></th>
|
||||
<th>序号</th>
|
||||
<th>账号</th>
|
||||
<th>状态</th>
|
||||
<th>有效时间</th>
|
||||
<th>时间</th>
|
||||
<th>操作</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
<!-- 列表 -->
|
||||
<tbody>
|
||||
<if condition = "empty($data)">
|
||||
<tr>
|
||||
<td colspan="16" class="text-center">aOh! 暂时还没有内容!</td>
|
||||
</tr>
|
||||
</if>
|
||||
<notemtpy name = "data">
|
||||
<volist name="data" id="data">
|
||||
<tr>
|
||||
<td ><input class="ids" type="checkbox" value="{$data['id']}" name="ids[]" >
|
||||
</td>
|
||||
<td>{$data.id}</td>
|
||||
<td>{$data.user_account}</td>
|
||||
<td><if condition="$data['status'] eq 0">7天允许支付<elseif condition="$data['status'] eq 1"/>30天允许支付<elseif condition="$data['status'] eq 2"/>永久允许支付<elseif condition="$data['statement_type'] eq 2"/>下游个人结算单</if></td>
|
||||
<td>{$data.time_status}</td>
|
||||
<td>{$data.update_time}</td>
|
||||
|
||||
</tr>
|
||||
</volist>
|
||||
</notemtpy>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</if>
|
||||
<div class="page">
|
||||
<if condition="$is_admin eq true ">
|
||||
<a class="sch-btn" href="{:U('Export/promote_list',array_merge(['xlsname'=>'推广员管理_推广员列表'.((I('type',1)==2)?'_混服申请':'_推广员列表')],I('get.')))}">导出</a>
|
||||
</if>
|
||||
{$_page|default=''}
|
||||
</div>
|
||||
<div class="common_settings">
|
||||
<span class="plus_icon"><span><img src="__IMG__/zwmimages/icon_jia.png"></span></span>
|
||||
<form class="addShortcutIcon">
|
||||
<input type="hidden" name="title" value="{$m_title}">
|
||||
<input type="hidden" name="url" value="Promote/lists/type/{:I('type',1)}">
|
||||
</form>
|
||||
<a class="ajax-post add-butn <notempty name='commonset'>addSIsetted</notempty>" href="javascript:;" target-form="addShortcutIcon" url="{:U('Think/addShortcutIcon')}"><img src="__IMG__/zwmimages/icon_jia.png"><span><notempty name='commonset'>已添加<else />添加至常用设置</notempty></span></a>
|
||||
</div>
|
||||
|
||||
</block>
|
||||
|
||||
<block name="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>
|
||||
<script src="__STATIC__/layer/layer.js" type="text/javascript"></script>
|
||||
<script type="text/javascript">
|
||||
</script>
|
||||
<script>
|
||||
<volist name=":I('get.')" id="vo">
|
||||
Think.setValue('{$key}',"{$vo}");
|
||||
</volist>
|
||||
$(".select_gallery").select2();
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
//导航高亮
|
||||
highlight_subnav("{:U('StatementMangement/lists')}");
|
||||
function reload() {
|
||||
window.location.reload();
|
||||
}
|
||||
|
||||
$(function(){
|
||||
|
||||
$("#shenhe").click(function () {
|
||||
var text = $("input:checkbox[name='ids[]']:checked").map(function(index,elem) {
|
||||
return $(elem).val();
|
||||
}).get().join(",");
|
||||
|
||||
layer.confirm('【警告】撤销后将不可回退,如需继续请点击确认', {
|
||||
btn: ['确认','取消'],
|
||||
title:false
|
||||
}, function(index) {
|
||||
if (!text) {
|
||||
layer.msg("<em style='color:white'>" + '请选择后再进行操作' + "</em>");
|
||||
return;
|
||||
}
|
||||
|
||||
$.ajax({
|
||||
url: "{:U('statementMangement/verifyStatementStatus')}",
|
||||
type: "get",
|
||||
data: {order: text},
|
||||
dataType: 'json',
|
||||
success: function (data) {
|
||||
if (data.status == 0) {
|
||||
layer.msg("<em style='color:white'>" + '审核通过失败' + "</em>");
|
||||
} else {
|
||||
layer.msg("<em style='color:white'>" + '审核通过成功' + "</em>")
|
||||
setTimeout(function(){
|
||||
window.parent.reload();
|
||||
},1500);
|
||||
}
|
||||
}
|
||||
});
|
||||
})
|
||||
|
||||
|
||||
})
|
||||
|
||||
$("#reject").click(function () {
|
||||
var text = $("input:checkbox[name='ids[]']:checked").map(function(index,elem) {
|
||||
return $(elem).val();
|
||||
}).get().join(",");
|
||||
|
||||
|
||||
layer.confirm('【警告】撤销后将不可回退,如需继续请点击确认', {
|
||||
btn: ['确认','取消'],
|
||||
title:false
|
||||
}, function(index) {
|
||||
if (!text) {
|
||||
layer.msg("<em style='color:white'>" + '请选择后再进行操作' + "</em>");
|
||||
return;
|
||||
}
|
||||
|
||||
$.ajax({
|
||||
url: "{:U('statementMangement/rejectStatementStatus')}",
|
||||
type: "get",
|
||||
data: {order: text},
|
||||
dataType: 'json',
|
||||
success: function (data) {
|
||||
if (data.status == 0) {
|
||||
layer.msg("<em style='color:white'>" + '审核拒绝失败' + "</em>");
|
||||
} else {
|
||||
layer.msg("<em style='color:white'>" + '审核拒绝成功' + "</em>")
|
||||
|
||||
setTimeout(function(){
|
||||
window.parent.reload();
|
||||
},1500);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
})
|
||||
|
||||
})
|
||||
|
||||
//搜索功能
|
||||
var start = $("#time_start").val();
|
||||
var end = $("#time_end").val();
|
||||
if(start !='' && end != ''){
|
||||
if (Date.parse(start) > Date.parse(end)){
|
||||
layer.msg('开始时间必须小于等于结束时间');
|
||||
return false;
|
||||
}
|
||||
}
|
||||
//设置对账网址
|
||||
var order_url = window.location.protocol+"//"+window.location.host+"/admin.php?s=/Public/cp_login.html";
|
||||
$("#order_url").html("说明:允许玩家正常支付的白名单");
|
||||
|
||||
$("#upstream").click(function () {
|
||||
layer.open({
|
||||
type: 2,
|
||||
title: "海南万盟天下科技有限公司",
|
||||
shadeClose: true,
|
||||
shade: 0.8,
|
||||
area: ['70%', '80%'],
|
||||
content:'/admin.php?s=/Statement/createCpStatement/'
|
||||
});
|
||||
});
|
||||
|
||||
$("#downstream").click(function () {
|
||||
layer.open({
|
||||
type: 2,
|
||||
title: "海南万盟天下科技有限公司",
|
||||
shadeClose: true,
|
||||
shade: 0.8,
|
||||
area: ['70%', '80%'],
|
||||
content: '/admin.php?s=/statementMangement/createDownstreamOrder/'
|
||||
});
|
||||
});
|
||||
|
||||
$("#persondownstream").click(function () {
|
||||
layer.open({
|
||||
type: 2,
|
||||
title: "海南万盟天下科技有限公司",
|
||||
shadeClose: true,
|
||||
shade: 0.8,
|
||||
area: ['70%', '80%'],
|
||||
content: '/admin.php?s=/statementMangement/PersonOrderList/'
|
||||
});
|
||||
});
|
||||
|
||||
$(".statement_edit").click(function () {
|
||||
|
||||
var edit = $(this).data();
|
||||
var ext_field = $(this).attr('ext_field');
|
||||
if(edit.type == 0){
|
||||
var url = "/admin.php?s=/Statement/editCpStatement/id/"+edit.id;
|
||||
}else if(edit.type == 1){
|
||||
var url = "/admin.php?s=/StatementMangement/editDownstreamOrder/id/"+edit.id+"/ext_field/"+ext_field;
|
||||
}else if(edit.type == 2){
|
||||
var url = "/admin.php?s=/StatementMangement/PersonOrderEdit/id/"+edit.id+"/withdraw/"+ext_field+"/time_start/"+edit.start+"/time_end/"+edit.end;
|
||||
}
|
||||
|
||||
layer.open({
|
||||
type: 2,
|
||||
title: "海南万盟天下科技有限公司",
|
||||
shadeClose: true,
|
||||
shade: 0.8,
|
||||
area: ['70%', '80%'],
|
||||
content: url
|
||||
});
|
||||
});
|
||||
$(".statement_view").click(function () {
|
||||
var id = $(this).data("id");
|
||||
|
||||
var type = $(this).data("type");
|
||||
if (type == 2) {
|
||||
var url = "/admin.php?s=/StatementMangement/personOrderDetail/id/"+id;
|
||||
} else {
|
||||
var url = "/admin.php?s=/VerifyBill/show/id/"+id+"/from/pc";
|
||||
}
|
||||
|
||||
layer.open({
|
||||
type: 2,
|
||||
title: "海南万盟天下科技有限公司",
|
||||
shadeClose: true,
|
||||
shade: 0.8,
|
||||
area: ['70%', '80%'],
|
||||
content: url
|
||||
});
|
||||
});
|
||||
$(".statement_del").click(function () {
|
||||
var del = $(this).data();
|
||||
layer.confirm('【警告】撤销后将不可回退,如需继续请点击确认', {
|
||||
btn: ['确认','取消'],
|
||||
title:false
|
||||
}, function(){
|
||||
if(del.type == 0){
|
||||
var url = "/admin.php?s=/Statement/delCpStatement/id/"+del.id;
|
||||
}else{
|
||||
var url = "/admin.php?s=/StatementMangement/delStatementData/id/"+del.id;
|
||||
}
|
||||
layer.load(2);
|
||||
$.ajax({
|
||||
url: url,
|
||||
type: "get",
|
||||
dataType: "json",
|
||||
success: function (data) {
|
||||
if(data.code == 0){
|
||||
layer.closeAll('loading');
|
||||
layer.msg("<font style='color:#fff'>删除成功</font>");
|
||||
setTimeout(function(){
|
||||
window.location.reload();
|
||||
},350);
|
||||
}else{
|
||||
alert("删除失败,请联系管理员")
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
}, function(){
|
||||
|
||||
});
|
||||
|
||||
|
||||
|
||||
});
|
||||
|
||||
$("#search").click(function(){
|
||||
|
||||
var start = $("#time_start").val();
|
||||
var end = $("#time_end").val();
|
||||
if(start !='' && end != ''){
|
||||
if (Date.parse(start) > Date.parse(end)){
|
||||
layer.msg('开始时间必须小于等于结束时间');
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
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.location.href = url;
|
||||
});
|
||||
|
||||
$('#time_start').datetimepicker({
|
||||
format: 'yyyy-mm-dd',
|
||||
language: "zh-CN",
|
||||
minView: 2,
|
||||
autoclose: true
|
||||
});
|
||||
|
||||
$('#datetimepicker').datetimepicker({
|
||||
format: 'yyyy-mm-dd',
|
||||
language: "zh-CN",
|
||||
minView: 2,
|
||||
autoclose: true,
|
||||
pickerPosition: 'bottom-left'
|
||||
})
|
||||
|
||||
|
||||
$("#company_id").change(function(){
|
||||
|
||||
var str = '<option value="">对账类型</option>';
|
||||
console.log($("#company_id option:selected").attr('company-type'))
|
||||
if ($("#company_id option:selected").attr('company-type') == '1') {
|
||||
str += ' <option value="1" selected=selected>下游游对账单</option>\n' +
|
||||
' <option value="0">上游对账单</option>';
|
||||
} else if ($("#company_id option:selected").attr('company-type') == '0') {
|
||||
str += ' <option value="1">下游对账单</option>\n' +
|
||||
' <option value="0" selected=selected>上游对账单</option>';
|
||||
}
|
||||
|
||||
|
||||
$("#statement_type").empty();
|
||||
$("#statement_type").append(str);
|
||||
$("#statement_type").select2();
|
||||
|
||||
});
|
||||
|
||||
|
||||
$(".paixu").click(function(){
|
||||
var that=$(this);
|
||||
$data_order=that.attr('data-order');
|
||||
$order_type='{$userarpu_order}';
|
||||
if($order_type==''||$order_type=='4'){
|
||||
$(".sortBy").attr('name','data_order');
|
||||
val='3,'+$data_order;
|
||||
$(".sortBy").attr('value',val);
|
||||
$("#search").click();
|
||||
}else if($order_type=='3'){
|
||||
$(".sortBy").attr('name','data_order');
|
||||
val='4,'+$data_order;
|
||||
$(".sortBy").attr('value',val);
|
||||
$("#search").click();
|
||||
}
|
||||
});
|
||||
//回车自动提交
|
||||
$('.jssearch').find('input').keyup(function(event){
|
||||
if(event.keyCode===13){
|
||||
$("#search").click();
|
||||
}
|
||||
});
|
||||
$("#admin").on('click',function(event) {
|
||||
var navlist = $(this).find('.i_list_li');
|
||||
if (navlist.hasClass('hidden')) {
|
||||
navlist.removeClass('hidden');
|
||||
$(this).find('#i_list_id').focus().val('');
|
||||
} else {
|
||||
navlist.addClass('hidden');
|
||||
}
|
||||
$(document).one("click", function(){
|
||||
navlist.addClass('hidden');
|
||||
});
|
||||
event.stopPropagation();
|
||||
});
|
||||
|
||||
$('#admin #i_list_id').on('keyup',function(event) {
|
||||
var val = $.trim($(this).val()).toLowerCase();
|
||||
$(this).closest('.drop-down').find('#i_list_idh').val(val);
|
||||
});
|
||||
|
||||
$("#admin #i_list_li").find("a").each(function(){
|
||||
$(this).click(function(){
|
||||
var text = $.trim($(this).text()).toLowerCase();
|
||||
$(this).closest('.drop-down').find("#i_list_id").val(text);
|
||||
$(this).closest('.drop-down').find('#i_list_idh').val(text);
|
||||
})
|
||||
});
|
||||
|
||||
//下拉内容框
|
||||
$(".drop-down2").on('click',function(event) {
|
||||
var navlist = $(this).find('.i_list_li');
|
||||
if (navlist.hasClass('hidden')) {
|
||||
navlist.removeClass('hidden');
|
||||
$('#i_list_id').focus().val('');
|
||||
} else {
|
||||
navlist.addClass('hidden');
|
||||
}
|
||||
$(document).one("click", function(){
|
||||
navlist.addClass('hidden');
|
||||
});
|
||||
event.stopPropagation();
|
||||
});
|
||||
/* 状态搜索子菜单 */
|
||||
/*渠道删除*/
|
||||
$('.delete').click(function(){
|
||||
var id = $(this).attr('data-id');
|
||||
layer.confirm('渠道删除后,下级渠道同时被删除,所属数据归属于自然渠道!', {
|
||||
title:'确定要删除该渠道?',
|
||||
icon:0,
|
||||
btn: ['删除','取消'] //按钮
|
||||
}, function(){
|
||||
$.ajax({
|
||||
type: "POST",
|
||||
url: "{:U('del_promote')}",
|
||||
dataType: 'json',
|
||||
async: false,
|
||||
data: {id:id},
|
||||
success:function(data){
|
||||
if(data.status==1){
|
||||
layer.msg(data.msg);
|
||||
setTimeout(function(){
|
||||
window.location.reload();
|
||||
},1500);
|
||||
}
|
||||
}
|
||||
});
|
||||
}, function(){
|
||||
layer.close();
|
||||
});
|
||||
|
||||
})
|
||||
})
|
||||
|
||||
|
||||
</script>
|
||||
<script type="text/javascript">
|
||||
|
||||
//点击字母按照条件按钮筛选
|
||||
$(".pro_promot_select_list_con").click(function(){
|
||||
//选中高亮样式
|
||||
$(this).addClass('active');
|
||||
$(this).siblings().removeClass('active');
|
||||
|
||||
var that = $(this);
|
||||
var index = $(this).attr("data-index");
|
||||
|
||||
$("#game_list li").each(function(index,ele){
|
||||
var short = $(this).attr('data-short');
|
||||
$(this).show();
|
||||
if(that.attr('data-index')){
|
||||
if(that.attr('data-index')!=short.charAt(0)){
|
||||
$(this).hide();
|
||||
}
|
||||
}
|
||||
})
|
||||
});
|
||||
|
||||
//打开弹窗
|
||||
$(".ajax-view").click(function(){
|
||||
//获取游戏列表
|
||||
var url = "{:U('Promote/getPromoteGame')}";
|
||||
var id = $(this).attr('data-id');
|
||||
$.post(url,{id:id},function(res){
|
||||
if(res.code==1){
|
||||
|
||||
$(".pro_promot_select_list a").eq(0).addClass('active');
|
||||
$(".pro_promot_select_list a").eq(0).siblings().removeClass('active');
|
||||
|
||||
var game_list = res.data.game_list;
|
||||
var promote_info = res.data.promote_info;
|
||||
var lis = [];
|
||||
|
||||
$.each(game_list,function(index,ele){
|
||||
if(ele.game_name.length>6){
|
||||
ele.game_name = ele.game_name .substring(0,6)+"..."
|
||||
}
|
||||
lis.push('<li class="fl pro_promot_game_con" data-short="'+ele.short+'">');
|
||||
|
||||
|
||||
if(promote_info['game_ids']==''){
|
||||
lis.push('<input type="checkbox" value="'+ele.id+'" name="game_ids[]" class="fl pro_promot_game_check jsgameid" checked="checked" id="gameCheck'+index+'" />');
|
||||
}else{
|
||||
if(promote_info['game_ids'].indexOf(ele.id)>-1){
|
||||
lis.push('<input type="checkbox" value="'+ele.id+'" name="game_ids[]" class="fl pro_promot_game_check jsgameid" checked="checked" id="gameCheck'+index+'" />');
|
||||
}else{
|
||||
lis.push('<input type="checkbox" value="'+ele.id+'" name="game_ids[]" class="fl pro_promot_game_check jsgameid" id="gameCheck'+index+'" />');
|
||||
}
|
||||
}
|
||||
lis.push('<label for="gameCheck'+index+'" class="fl"></label>');
|
||||
lis.push('<span class="fl pro_promot_game_name">'+ele.game_name+'</span>');
|
||||
lis.push('</li>');
|
||||
});
|
||||
|
||||
$("#game_list").html(lis.join(''));
|
||||
$(".pro_promot_number").text(res.data.promote_info.account);
|
||||
$("#se_promote_id").val(res.data.promote_info.id);
|
||||
$(".pro_promot").css("display","block");
|
||||
|
||||
jsgameid();
|
||||
|
||||
}else{
|
||||
var tip_msg = res.info ? res.info : '操作失败';
|
||||
layer.msg(tip_msg);
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
//保存修改
|
||||
$(".pro_promot_btn_confirm").click(function(){
|
||||
$("#ajaxForm").ajaxSubmit(function(res){
|
||||
layer.msg(res.msg);
|
||||
$(".pro_promot").hide();
|
||||
});
|
||||
return false;
|
||||
});
|
||||
|
||||
//关闭弹窗
|
||||
$(".pro_promot_close").click(function(){
|
||||
$(".pro_promot").css("display","none");
|
||||
});
|
||||
//取消修改
|
||||
$(".pro_promot_btn_cancel").click(function(){
|
||||
$(".pro_promot").css("display","none");
|
||||
layer.msg('修改已取消');
|
||||
});
|
||||
|
||||
$(".jsgamecheckall").click(function(){
|
||||
$(this).closest('.jsgamecheckallbox').siblings("#game_list").find(".jsgameid").prop("checked", this.checked);
|
||||
});
|
||||
|
||||
//可申请游戏 全选及全选反选 功能 @author zwm date 20180604
|
||||
function jsgameid(){
|
||||
$(".jsgameid").click(function(){
|
||||
var option = $(this).closest('ul').find(".jsgameid"),
|
||||
checkall = $(this).closest('ul').siblings('.jsgamecheckallbox').find('.jsgamecheckall');
|
||||
option.each(function(i){
|
||||
if(!this.checked){
|
||||
checkall.prop("checked", false);
|
||||
return false;
|
||||
}else{
|
||||
checkall.prop("checked", true);
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
</script>
|
||||
</block>
|
Loading…
Reference in New Issue