...
|
...
|
@@ -275,10 +275,11 @@ $yohoPage.on('touchstart', '.btn-minus', function() { |
|
|
}
|
|
|
|
|
|
if (num === 1 || 0 === leftNum - 0) {
|
|
|
tip.show('您选择的数量不能为零~');
|
|
|
return;
|
|
|
}
|
|
|
if (num < 1) {
|
|
|
$num.val(1);
|
|
|
if (num < 0) {
|
|
|
tip.show('您选择的数量不能为零~');
|
|
|
return;
|
|
|
}
|
|
|
|
...
|
...
|
@@ -299,7 +300,7 @@ $yohoPage.on('touchstart', '.btn-minus', function() { |
|
|
|
|
|
//TODO:库存数验证
|
|
|
if (num > leftNum - 1) {
|
|
|
$num.val(leftNum);
|
|
|
tip.show('您选择的数量超过了最大库存量~');
|
|
|
return;
|
|
|
}
|
|
|
$num.val(num + 1);
|
...
|
...
|
@@ -317,11 +318,6 @@ $yohoPage.on('touchstart', '.btn-minus', function() { |
|
|
if (!checkColorSizeNum()) {
|
|
|
return;
|
|
|
}
|
|
|
if (isNaN(num)) {
|
|
|
tip.show('您选择的数量不是一个数字~');
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
|
|
|
//TODO status change
|
|
|
if ($('#chose-btn-sure').html() === '已售罄') {
|
...
|
...
|
|