* [refac bug #61496] Adjust disabled style.

This commit is contained in:
wangyidong
2025-04-15 16:13:17 +08:00
committed by 刘刚
parent fd332719a1
commit 80207a938c
2 changed files with 4 additions and 2 deletions
+3 -1
View File
@@ -3,4 +3,6 @@ menu .panel-actions {width: auto;}
td .check-list {flex-direction:row;}
th.form-batch-head[data-name=ACTIONS]{width:120px;}
tr.disabled td[data-name="enabled"] .switch label{filter: unset;}
.max-w-100px {max-width: 100px; overflow: hidden;}
.max-w-100px {max-width: 100px; overflow: hidden;}
.disabled, .disabled * {pointer-events: none; opacity: 0.9;}
.disabled [data-name="enabled"] {pointer-events: all; cursor: pointer !important;}
+1 -1
View File
@@ -223,7 +223,7 @@ window.handleRenderRow = function($row, index, data)
let items = [{text: '', value: ''}];
let disabled = level > 0 ? true : false;
if(typeof data != 'undefined' && typeof data.attribute != 'undefined')
if(typeof data != 'undefined' && typeof data.attribute != 'undefined' && !disabled)
{
const attribute = data.attribute;
for(let point in ipdStagePoint[attribute])