...
|
...
|
@@ -259,6 +259,14 @@ $(document).on("click",".sortadd",function(){ |
|
|
common.util.__tip("请填写销售价","warning");
|
|
|
return;
|
|
|
}
|
|
|
if (($.trim($("#salesPriceStr").val())).length>10) {
|
|
|
common.util.__tip("销售价不合法,包含小数位不能大于10位","warning");
|
|
|
return;
|
|
|
}
|
|
|
if (($.trim($("#retailPriceStr").val())).length>10) {
|
|
|
common.util.__tip("吊牌价不合法,包含小数位不能大于10位","warning");
|
|
|
return;
|
|
|
}
|
|
|
if ($.trim($("#factoryCode").val())=="") {
|
|
|
common.util.__tip("请填写厂家编号","warning");
|
|
|
return;
|
...
|
...
|
@@ -521,6 +529,16 @@ e.on("validate",function(){ |
|
|
return "销售价应该限定小于等于吊牌价";
|
|
|
}
|
|
|
});
|
|
|
e.on("validate",function(){
|
|
|
if (($.trim($("#salesPriceStr").val())).length>10) {
|
|
|
common.util.__tip("销售价不合法,包含小数位不能大于10位","warning");
|
|
|
return;
|
|
|
}});
|
|
|
e.on("validate",function(){
|
|
|
if (($.trim($("#retailPriceStr").val())).length>10) {
|
|
|
common.util.__tip("吊牌价不合法,包含小数位不能大于10位","warning");
|
|
|
return;
|
|
|
}});
|
|
|
|
|
|
/*非销售属性验证*/
|
|
|
// e.on("validate",function(){
|
...
|
...
|
|