Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: 修复多个注解bug #109

Merged
merged 1 commit into from
May 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
}
}
Expand Down
Loading