moment中常用的一些数据:昨天,今天、本周、上周、前一周、本月、上月、前一月、前一个月、今年,去年,前一年等等;
ranges={{
昨天: [moment(moment().subtract...(1, 'day')), moment(moment().subtract(1, 'day'))],
今天: [moment(), moment()],
本周: [moment().startOf...('week')
],
前一周: [moment(moment().subtract(1, 'week')), moment()],
'本月(截止到昨天)': [moment()....startOf('month'), moment().day(moment().day() - 1)],
本月: [moment().startOf('month'), moment().endOf...],
前一年: [moment(moment().subtract(1, 'year')), moment()]
}}