1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
| $(function () {
| var options = {};
| options.timePicker = true;
| options.timePicker24Hour = true;
| options.timePickerSeconds = true;
| options.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')]
| };
| options.locale = {
| "format": 'YYYY-MM-DD HH:mm:ss',
| "separator": " - ",
| "applyLabel": "确定",
| "cancelLabel": "取消",
| "fromLabel": "起始时间",
| "toLabel": "结束时间'",
| "customRangeLabel": "自定义",
| "weekLabel": "W",
| "daysOfWeek": ["日", "一", "二", "三", "四", "五", "六"],
| "monthNames": ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"],
| "firstDay": 1
| };
| options.opens = 'left';
| options.linkedCalendars = true;
| options.autoUpdateInput = true;
| options.showCustomRangeLabel = true;
| $('#my-datepicker').daterangepicker(
| options,
| function (start, end, label) {
| //console.log('New date range selected: ' + start.format('YYYY-MM-DD') + ' to ' + end.format('YYYY-MM-DD') + ' (predefined range: ' + label + ')');
| }
| );
| });
|
|