Commit ab2db760 by wuchengwu

设备管理-设备监控管理:修改录入时间查询初始值

parent ae9bf120
......@@ -288,7 +288,8 @@
var nowDate = time.getFullYear() + '-' + (time.getMonth() + 1) + '-' + time.getDate();
var y=time.getFullYear();
var m = time.getMonth();
var firstDay = new Date(y, m, 1);
var firstDay = new Date();
firstDay.setDate(1);
var dateDom = $(".dateType");
$.each($(".startDate"), function (i, dom) {
laydate.render({
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment