@ -273,16 +273,13 @@
editable : {
type : 'text',
title : '用量',
mode:'inline',
validate : function(value) {
if (!value) {
return '用量不能为空';
return '损耗率不能为空';
}
if (isNaN(value)) {
return '用量必须为数字';
}else if(value >100){
return "输入数值不能大100"
}else if(value < 0){
return "输入数值不能小于0";
return '损耗率必须为数字';
@ -294,12 +291,17 @@
title : '损耗率',
@ -316,7 +318,16 @@
field: 'remark',
align: 'center',
title: '备注',
editable: true
}]
};
$.table.init(options);