diff --git a/ruoyi-admin/src/main/resources/templates/erp/bom/add.html b/ruoyi-admin/src/main/resources/templates/erp/bom/add.html index 98ebac06..0309f324 100644 --- a/ruoyi-admin/src/main/resources/templates/erp/bom/add.html +++ b/ruoyi-admin/src/main/resources/templates/erp/bom/add.html @@ -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 @@ editable : { type : 'text', title : '损耗率', + mode:'inline', validate : function(value) { if (!value) { - return '损耗率不能为空'; + return '用量不能为空'; } if (isNaN(value)) { - return '损耗率必须为数字'; + return '用量必须为数字'; + }else if(value >100){ + return "输入数值不能大100" + }else if(value < 0){ + return "输入数值不能小于0"; } } } @@ -316,7 +318,16 @@ field: 'remark', align: 'center', title: '备注', - editable: true + editable : { + type : 'text', + title : '损耗率', + mode:'inline', + validate : function(value) { + if (!value) { + return '用量不能为空'; + } + } + } }] }; $.table.init(options);