feat(property-marketing): 优化空数据展示处理,调整图表组件和投资指南组件交互逻辑

This commit is contained in:
林志军
2025-07-11 16:04:51 +08:00
parent 27c8d2e200
commit 492a38fcb4
7 changed files with 27 additions and 7 deletions

View File

@ -5,6 +5,6 @@ export function checkRoutePermission(routeName: string) {
const allowAccessRoutes = userStore.allowAccessRoutes;
if (!routeName) return false;
return true
return allowAccessRoutes.includes(routeName);
}