Browse Source

[feat]bom添加是table用量条件判断

dev
zhangsiqi 6 months ago
parent
commit
b8a5d50cba
  1. 29
      ruoyi-admin/src/main/resources/templates/erp/bom/add.html

29
ruoyi-admin/src/main/resources/templates/erp/bom/add.html

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

Loading…
Cancel
Save