feat(REQ-2699):元素表增加路由扩展数据字段

This commit is contained in:
李昆鹏 2024-08-07 17:20:43 +08:00
parent 551afc5b24
commit 2773589289

View File

@ -632,7 +632,8 @@ public class SaasFeatureResourceServiceImpl extends ServiceImpl<SaasFeatureResou
private boolean recursionFilterNode(FeatureResourceTreeNode node) {
boolean matched = FeatureResourceType.PAGE.getCode().equals(node.getFeatureType())
|| FeatureResourceType.COMPONENT.getCode().equals(node.getFeatureType())
|| FeatureResourceType.MENU_PARTITION_GROUP.getCode().equals(node.getFeatureType());
|| FeatureResourceType.MENU_PARTITION_GROUP.getCode().equals(node.getFeatureType())
|| FeatureResourceType.APP_ENTRY.getCode().equals(node.getFeatureType());
if (CollectionUtils.isEmpty(node.getNodeChildren())) {
return matched;
}