2018-09-16 19:33:56 +08:00
|
|
|
|
$(function () {
|
|
|
|
|
toastr.options = {
|
|
|
|
|
"closeButton": true,
|
|
|
|
|
"debug": false,
|
|
|
|
|
"progressBar": true,
|
|
|
|
|
"positionClass": "toast-bottom-right",
|
|
|
|
|
"onclick": null,
|
|
|
|
|
"showDuration": "600",
|
|
|
|
|
"hideDuration": "2000",
|
|
|
|
|
"timeOut": "4000",
|
|
|
|
|
"extendedTimeOut": "1000",
|
|
|
|
|
"showEasing": "swing",
|
|
|
|
|
"hideEasing": "linear",
|
|
|
|
|
"showMethod": "fadeIn",
|
|
|
|
|
"hideMethod": "fadeOut"
|
|
|
|
|
};
|
|
|
|
|
|
2018-09-19 00:19:43 +08:00
|
|
|
|
var $sideMenu = $(".sidebar");
|
2018-09-16 19:33:56 +08:00
|
|
|
|
|
|
|
|
|
$sideMenu.dcAccordion({
|
|
|
|
|
autoExpand: true
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$("#gotoTop").on('click', function (e) {
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
$('body').animate({
|
|
|
|
|
scrollTop: 0
|
|
|
|
|
}, 200);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// breadcrumb
|
2018-09-23 14:08:13 +08:00
|
|
|
|
var $breadNav = $('#breadNav');
|
2018-09-16 19:33:56 +08:00
|
|
|
|
var arch = $sideMenu.find('a.active').last();
|
|
|
|
|
if (arch.text() !== "") $breadNav.removeClass('d-none').text(arch.text());
|
|
|
|
|
|
2018-09-19 00:19:43 +08:00
|
|
|
|
$('.sidebar-toggle-box').on('click', function () {
|
2018-09-23 14:08:13 +08:00
|
|
|
|
if ($(window).width() >= 768) return;
|
2018-09-19 00:19:43 +08:00
|
|
|
|
$('body').toggleClass('sidebar-open');
|
2018-09-16 19:33:56 +08:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('[data-toggle="dropdown"].dropdown-select').dropdown('select');
|
|
|
|
|
|
|
|
|
|
// tooltip
|
|
|
|
|
$('[data-toggle="tooltip"]').tooltip();
|
|
|
|
|
});
|