修改组件查看模式的状态

This commit is contained in:
linxd
2025-07-15 11:13:13 +08:00
parent 51f1559174
commit 47bf5342be
3 changed files with 9 additions and 5 deletions

View File

@ -615,7 +615,10 @@ const EvaluateTemplateTable: React.FC<EvaluateTemplateTableProps> = ({
const filterColumns = (col: any) => {
if (isDetail) {
return false;
// 如果是详情,过滤掉操作列
if (col.key === 'level1Action') {
return false;
}
}
if (getUserRole() != 'admin') {
if (
@ -633,7 +636,9 @@ const EvaluateTemplateTable: React.FC<EvaluateTemplateTableProps> = ({
};
const filterColumnsSecond = (col: any) => {
if (isDetail) {
return false;
if (col.key === 'level2Action') {
return false;
}
}
if (getUserRole() != 'admin') {
if (