Showing
1 changed file
with
5 additions
and
1 deletions
@@ -272,7 +272,11 @@ $applyBtn.click(function() { | @@ -272,7 +272,11 @@ $applyBtn.click(function() { | ||
272 | var $tip = $applyBtn.siblings('.apply-tip'), | 272 | var $tip = $applyBtn.siblings('.apply-tip'), |
273 | param = packApplyInfo(); | 273 | param = packApplyInfo(); |
274 | 274 | ||
275 | - if (!param) { | 275 | + if ($(this).hasClass('disable')) { |
276 | + return; | ||
277 | + } | ||
278 | + | ||
279 | + if (!param || !param.goods) { | ||
276 | $tip.removeClass('hide'); | 280 | $tip.removeClass('hide'); |
277 | return; | 281 | return; |
278 | } else { | 282 | } else { |
-
Please register or login to post a comment