update: 1.优化详情无法查看问题;2.优化PageContainer、Search样式
This commit is contained in:
parent
43bfa89252
commit
676269db6c
|
@ -14,10 +14,10 @@
|
|||
flex-direction: column;
|
||||
}
|
||||
|
||||
.children-full-height {
|
||||
> :nth-child(1) {
|
||||
min-height: 100%;
|
||||
}
|
||||
}
|
||||
//.children-full-height {
|
||||
// > :nth-child(1) {
|
||||
// min-height: 100%;
|
||||
// }
|
||||
//}
|
||||
}
|
||||
}
|
|
@ -286,6 +286,7 @@ handleItems()
|
|||
.JSearch-warp {
|
||||
padding: 24px;
|
||||
background-color: #fff;
|
||||
margin-bottom: 24px;
|
||||
|
||||
.JSearch-content {
|
||||
display: flex;
|
||||
|
|
|
@ -220,7 +220,8 @@ export function filterAsnycRouter(asyncRouterMap: any, parentCode = '', level =
|
|||
route.component = resolveComponent(route.code) || BlankLayoutPage;
|
||||
}
|
||||
} else {
|
||||
route.component = resolveComponent(route.code) || BlankLayoutPage;
|
||||
console.log(route.code)
|
||||
route.component = route.component || resolveComponent(route.code) || BlankLayoutPage;
|
||||
}
|
||||
delete route.name
|
||||
return route
|
||||
|
|
Loading…
Reference in New Issue