作者 无木

修复使用data-locale='{"format":"YYYY-MM-DD"}'方式配置daterangepicker时会丢失Custom Range、Apply、Clear国际化的问题

... ... @@ -208,7 +208,7 @@ define(['jquery', 'bootstrap', 'upload', 'validator'], function ($, undefined, U
$(this).on('cancel.daterangepicker', function (ev, picker) {
$(this).val('').trigger('blur');
});
$(this).daterangepicker($.extend({}, options, $(this).data()), callback);
$(this).daterangepicker($.extend(true, options, $(this).data()), callback);
});
});
}
... ...