Showing
1 changed file
with
1 additions
and
1 deletions
@@ -410,7 +410,7 @@ class ChosePanel { | @@ -410,7 +410,7 @@ class ChosePanel { | ||
410 | numText = `限购${cartInfo.limit}件`; | 410 | numText = `限购${cartInfo.limit}件`; |
411 | } else if (this.modes.soonSoldOut) { | 411 | } else if (this.modes.soonSoldOut) { |
412 | numText = '即将售罄'; | 412 | numText = '即将售罄'; |
413 | - } else if (selectSku.storage < 4) { | 413 | + } else if (selectSku.storage < 4 && selectSku.storage > 0) { |
414 | numText = `剩余${selectSku.storage}件`; | 414 | numText = `剩余${selectSku.storage}件`; |
415 | } else { | 415 | } else { |
416 | numText = ''; | 416 | numText = ''; |
-
Please register or login to post a comment