From 5a921a3f9e5c690908a18705ef189991fe24bd8e Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期六, 30 三月 2024 22:51:44 +0800 Subject: [PATCH] 2024-03-30 --- src/tabviews/basetable/index.jsx | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tabviews/basetable/index.jsx b/src/tabviews/basetable/index.jsx index d91a6c5..51bb531 100644 --- a/src/tabviews/basetable/index.jsx +++ b/src/tabviews/basetable/index.jsx @@ -397,7 +397,7 @@ cell = this.getPrinter(cell, item.uuid) } - return skip || permAction[cell.uuid] + return skip || permAction[cell.uuid] || cell.permission === 'false' } else if (['text', 'number', 'formula'].includes(cell.eleType)) { if (!cell.height) { cell.innerHeight = 'auto' @@ -464,7 +464,7 @@ cell = this.getPrinter(cell, item.uuid) } - return skip || permAction[cell.uuid] + return skip || permAction[cell.uuid] || cell.permission === 'false' }) } -- Gitblit v1.8.0