Browse Source

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

dev
zhangsiqi 6 months ago
parent
commit
cdb17c9bdc
  1. 13
      ruoyi-admin/src/main/resources/templates/erp/bom/edit.html

13
ruoyi-admin/src/main/resources/templates/erp/bom/edit.html

@ -227,6 +227,7 @@
editable : {
type : 'text',
title : '用量',
mode:'inline',
validate : function(value) {
if (!value) {
return '用量不能为空';
@ -244,6 +245,7 @@
editable : {
type : 'text',
title : '损耗率(%)',
mode:'inline',
validate : function(value) {
if (!value) {
return '损耗率不能为空';
@ -269,7 +271,16 @@
field: 'remark',
align: 'center',
title: '备注',
editable: true
editable : {
type : 'text',
title : '损耗率',
mode:'inline',
validate : function(value) {
if (!value) {
return '用量不能为空';
}
}
}
}
]
};

Loading…
Cancel
Save