提交 62fe767c 编写于 作者: tony001's avatar tony001

更新表格行编辑禁用问题

上级 655c53f3
......@@ -2398,7 +2398,11 @@ import { Environment } from '@/environments/environment';
const curColumn:any = this.allColumns.find((item:any) =>{
return item.name === name;
})
return data.srfuf == 1 ? (curColumn.enableCond & 2) !== 2 : (curColumn.enableCond & 1) !== 1
if(curColumn.hasOwnProperty('enableCond')){
return data.srfuf == 1 ? (curColumn.enableCond & 2) !== 2 : (curColumn.enableCond & 1) !== 1
}else{
return false;
}
}
}
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册