1
81041
2019-06-20 ab3c4acf83f54f8449ca8664c4a2bb79bd30f297
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
$(function() {
    $('#radio').buttonset();    // 图表切换的按钮
    var date = new Date();
    $('#record_end_time').val(date.format("yyyy-MM-dd"));
    // 定义查询时间段
    $('#record_start_time').datepicker({
        'showOtherMonths': true,
        'changeMonth': true,
        'changeYear': true,
        'dateFormat': 'yy-mm-dd',
        'dayNamesMin': ['日','一','二','三','四','五','六'],
        'monthNamesShort': ['一月','二月','三月','四月','五月','六月','七月','八月','九月','十月','十一月','十二月'],
        'monthNames': ['一月','二月','三月','四月','五月','六月','七月','八月','九月','十月','十一月','十二月'],
        'hideIfNoPrevNext': true 
    });
    
    // 结束时间
    $('#record_end_time').datepicker({
        'showOtherMonths': true,
        'changeMonth': true,
        'changeYear': true,
        'dateFormat': 'yy-mm-dd',
        'dayNamesMin': ['日','一','二','三','四','五','六'],
        'monthNamesShort': ['一月','二月','三月','四月','五月','六月','七月','八月','九月','十月','十一月','十二月'],
        'monthNames': ['一月','二月','三月','四月','五月','六月','七月','八月','九月','十月','十一月','十二月'],
        'maxDate': 0,
        'hideIfNoPrevNext': true 
    });
});