|
|
@ -30,7 +30,7 @@
|
|
|
|
height:26px;line-height:26px;font-size:12px;
|
|
|
|
height:26px;line-height:26px;font-size:12px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.select2-results__option[aria-selected] {font-size:12px;}
|
|
|
|
.select2-results__option[aria-selected] {font-size:12px;}
|
|
|
|
.layui-layer-dialog .layui-layer-content{color:red}
|
|
|
|
/* .layui-layer-dialog .layui-layer-content{color:red} */
|
|
|
|
.butnbox {padding:10px 0 10px;}
|
|
|
|
.butnbox {padding:10px 0 10px;}
|
|
|
|
.butnbox .butnlist {overflow:hidden;clear:both;}
|
|
|
|
.butnbox .butnlist {overflow:hidden;clear:both;}
|
|
|
|
.butnbox .butnlist .butn,.butnbox .butnlist .butn:hover {text-decoration:none;border:none;}
|
|
|
|
.butnbox .butnlist .butn,.butnbox .butnlist .butn:hover {text-decoration:none;border:none;}
|
|
|
@ -283,6 +283,14 @@ highlight_subnav("{:U('index')}");
|
|
|
|
$(function(){
|
|
|
|
$(function(){
|
|
|
|
//搜索功能
|
|
|
|
//搜索功能
|
|
|
|
$("#search").click(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 url = $(this).attr('url');
|
|
|
|
var query = $('.jssearch').find('input').serialize();
|
|
|
|
var query = $('.jssearch').find('input').serialize();
|
|
|
|
query += "&"+$('.jssearch').find('select').serialize();
|
|
|
|
query += "&"+$('.jssearch').find('select').serialize();
|
|
|
|