在用datetimepicker日期范围选择插件的时候,想要显示所有时间,这里的所有时间打算指定从某个时间开始到现在的时间,请问该如何写? 还有今天该如何写呢?ranges: { '所有时间': [moment(), moment()], '今天': [], '昨天': [moment().subtract(1, 'days'), moment().subtract(1, 'days')], '最近7天': [moment().subtract(6, 'days'), moment()], '最近30天': [moment().subtract(29, 'days'), moment()], '这个月': [moment().startOf('month'), moment().endOf('month')], '上个月': [moment().subtract(1, 'month').startOf('month'), moment().subtract(1, 'month').endOf('month')] },
添加回答
举报
0/150
提交
取消