Authored by dongjunjie

代销变价销售价不能为0

... ... @@ -186,6 +186,7 @@ $(document).on('click', '.modify-btn', function() {
vipPrice($wrap);
});
$submitBtn.on('click', function() {
if($price.val() != 0){
common.util.__ajax({
url: '/product/updateProductPrice',
data: {
... ... @@ -202,6 +203,9 @@ $(document).on('click', '.modify-btn', function() {
}, function(res) {
if (res.code == 200) {g.reload()}
})
}else{
common.util.__tip("销售价不能为0!");
}
});
},true);
}
... ...