|
@@ -156,6 +156,8 @@ function actionGoodsCart() { |
|
@@ -156,6 +156,8 @@ function actionGoodsCart() { |
156
|
var text = '';
|
156
|
var text = '';
|
157
|
|
157
|
|
158
|
$.fn.miniCart = function(options) {
|
158
|
$.fn.miniCart = function(options) {
|
|
|
159
|
+ var $cartNum = $(params.cartNum);
|
|
|
160
|
+
|
159
|
params = $.extend(defaults, options);
|
161
|
params = $.extend(defaults, options);
|
160
|
if (typeof window.cookie(params.cookie) === 'undefined') {
|
162
|
if (typeof window.cookie(params.cookie) === 'undefined') {
|
161
|
cartInfo = null;
|
163
|
cartInfo = null;
|
|
@@ -177,8 +179,10 @@ function actionGoodsCart() { |
|
@@ -177,8 +179,10 @@ function actionGoodsCart() { |
177
|
} else {
|
179
|
} else {
|
178
|
$('#icart-num').attr('class', 'icart-num');
|
180
|
$('#icart-num').attr('class', 'icart-num');
|
179
|
}
|
181
|
}
|
180
|
- $(params.cartNum).html(totalNum);
|
182
|
+ $cartNum.html(totalNum);
|
181
|
}
|
183
|
}
|
|
|
184
|
+
|
|
|
185
|
+ totalNum ? $cartNum.removeClass('hide') : $cartNum.addClass('hide');
|
182
|
};
|
186
|
};
|
183
|
$.fn.search = function(searchDomain) {
|
187
|
$.fn.search = function(searchDomain) {
|
184
|
|
188
|
|