jueyue 发表于 2013-7-25 23:21:17

jeecg 中 查询日期的设置

日期查询时我们常用的查询,设置默认也是很正常的情况,jeecg的日期设置是使用的easyui-datebox
这个datebox设置有一个问题也是easyui问题(我个人猜想,不正确可以指出来----easyui同样也是
在页面加载完成之后执行,估计也是jquery的ready方法,这样我们的ready就不能一开始就拿到
easy的值)------这个猜想是我实现的依据,很简单我们在easyui初始化完成时候执行就是了对不$("input").attr("class","easyui-datebox");//设置为日期样式
                $("input").attr("id","applytime_begin");//给他设置id,默认没有生成
                $("input").attr("class","easyui-datebox");
                $("input").attr("id","applytime_end");接下来我们等1秒,这个看大家,我自己测试500毫秒也可以的setTimeout(function(){
                        var myDate = new Date();
                        var time = myDate.getFullYear()+"-"+(myDate.getMonth()+1)+"-"+myDate.getDate();
                        $("#applytime_begin").datebox('setValue', time);
                        $("#applytime_end").datebox('setValue', time);
                },1000);这样设置我们想要的时间就可以了,欢迎拍砖,大家如果有好办法,希望介绍给楼主最后上个图吧,默认的时间
不过没有按照这个时间查询,我们可以在后台也设置下就可以调通了



huanlema 发表于 2013-10-6 11:18:13

谢谢分享,学习中
页: [1]
查看完整版本: jeecg 中 查询日期的设置