index.js
2.46 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/**
* index
* 默认依赖
*/
'use strict';
var $ = require('jquery');
var isMenuShow = false;
var localStorage = window.localStorage;
/**
* 左侧导航
*/
$('#sidebar .nav .has-sub>a').click(function() {
var child = $(this).parent().find('.sub-menu');
$('#sidebar .nav .has-sub>a').each(function() {
$(this).find('.sub-menu').slideUp('fast');
$(this).removeClass('active');
});
if (!child.is(':visible')) {
child.slideDown('fast');
if (!child.parent().hasClass('active'))
child.parent().addClass('active');
} else {
child.slideUp('fast');
child.parent().removeClass('active');
}
isMenuShow = true;
return false;
});
$("#sidebar .nav .sub-menu a").each(function() {
var attr = $(this).attr('href');
if (!isMenuShow && attr == window.location.pathname + window.location.search) {
$(this).parents(".sub-menu").show();
$(this).parent("li").addClass("active");
$(this).parents(".has-sub ").addClass("active");
localStorage.setItem("router", attr);
localStorage.getItem("router");
isMenuShow = true;
}
});
/**
* 左侧最小化
*/
$(".sidebar-minify-btn").click(function(){
$("#page-container").toggleClass("page-sidebar-minified");
});
$(".dropdown").hover(function () {
$(".dropdown-menu").show();
}, function () {
$(".dropdown-menu").hide();
});
/**
* 切换店铺
*/
$('.shops_id').click(function (){
var shop_id = $(this).attr('data-shopid');
$.getJSON('/index/ajaxshop?shops_id='+shop_id, function (data){
if(data.code == 200){
window.location.href="/";
}else{
alert(data.message);
}
})
});
// LocalStorage.setItem("router",);
$('.panel-heading').hover(function() {
$(this).find('.panel-btns').fadeIn('fast');
}, function() {
$(this).find('.panel-btns').fadeOut('fast');
});
$('.panel .panel-close').click(function() {
$(this).closest('.panel').fadeOut(200);
return false;
});
// Minimize Panel
$('.panel .panel-minimize').click(function() {
var t = $(this);
var p = t.closest('.panel');
if (!$(this).hasClass('maximize')) {
p.find('.panel-body, .panel-footer').slideUp(200);
t.addClass('maximize');
t.find('i').removeClass('fa-minus').addClass('fa-plus');
} else {
p.find('.panel-body, .panel-footer').slideDown(200);
t.removeClass('maximize');
t.find('i').removeClass('fa-plus').addClass('fa-minus');
}
return false;
});