@@ -17,6 +17,9 @@ const formatRouter = (list) => {
p.children = [];
authorities.push(p);
} else {
+ if (p.source === 2 && p.extend) {
+ p.path = p.path + '/' + p.extend;
+ }
if (p.children?.length) {
p.children = fn(p.children);