From 8070f4b9f539e83461ff1d2677c4baf86636f0c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A7=9C=E4=BB=A4=E6=B5=A9?= Date: Fri, 17 May 2024 18:55:48 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E4=BF=AE=E5=A4=8D=E5=A4=9A=E4=B8=AA?= =?UTF-8?q?=E6=B3=A8=E8=A7=A3bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../cust_anno_permission/annotations/feAnnotation/index.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/cust/cust_anno_permission/annotations/feAnnotation/index.js b/packages/cust/cust_anno_permission/annotations/feAnnotation/index.js index 9fcf761e..1677d754 100644 --- a/packages/cust/cust_anno_permission/annotations/feAnnotation/index.js +++ b/packages/cust/cust_anno_permission/annotations/feAnnotation/index.js @@ -76,8 +76,7 @@ export default function (el, binding, vnode, oldVnode) { // 此处假定逻辑返回的数据结构为多叉树 组件只能绑定叶子节点: 否则要比较 a.b.c a.b 的关系 let enProp = enProps.find(p => p.propertyName === ref.propName) if (enProp) { - visible = enProp.columnRuleType !== 'none' - + visible = visible && enProp.columnRuleType !== 'none' } } }