|
|
|
@ -215,7 +215,7 @@
|
|
|
|
|
<!--游戏类型搜索END-->
|
|
|
|
|
|
|
|
|
|
<div class="input-list">
|
|
|
|
|
<a class="sch-btn" href="javascript:history.go(-1)" style="background:#fff;color: #000;border: #000 solid 1px;width: 100px">返回</a>
|
|
|
|
|
<a class="sch-btn" href="{:U('PayChannelIntention/index')}" style="background:#fff;color: #000;border: #000 solid 1px;width: 100px">返回</a>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="input-list">
|
|
|
|
@ -378,14 +378,6 @@
|
|
|
|
|
pickerPosition:'bottom-left'
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$('.page a').click(function () {
|
|
|
|
|
var href = $(this).attr('href');
|
|
|
|
|
$(this).removeAttr('href');
|
|
|
|
|
window.location.replace(href)
|
|
|
|
|
console.log(href)
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('#forbit').click(function () {
|
|
|
|
|
var text = $("input:checkbox[name='ids[]']:checked").map(function(index,elem) {
|
|
|
|
|
return $(elem).val();
|
|
|
|
@ -438,7 +430,17 @@
|
|
|
|
|
}else{
|
|
|
|
|
url += '?' + query;
|
|
|
|
|
}
|
|
|
|
|
window.location.replace(url);
|
|
|
|
|
|
|
|
|
|
var start = $("#timestart").val();
|
|
|
|
|
var end = $("#timeend").val();
|
|
|
|
|
if(start !='' && end != ''){
|
|
|
|
|
if (Date.parse(start) > Date.parse(end)){
|
|
|
|
|
layer.msg('开始时间必须小于等于结束时间');
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
window.location.href = url;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('#noforbit').click(function () {
|
|
|
|
|