update: 1.优化详情无法查看问题;2.优化PageContainer、Search样式

This commit is contained in:
xieyonghong 2023-02-01 10:10:19 +08:00
parent 43bfa89252
commit 676269db6c
3 changed files with 8 additions and 6 deletions

View File

@ -14,10 +14,10 @@
flex-direction: column; flex-direction: column;
} }
.children-full-height { //.children-full-height {
> :nth-child(1) { // > :nth-child(1) {
min-height: 100%; // min-height: 100%;
} // }
} //}
} }
} }

View File

@ -286,6 +286,7 @@ handleItems()
.JSearch-warp { .JSearch-warp {
padding: 24px; padding: 24px;
background-color: #fff; background-color: #fff;
margin-bottom: 24px;
.JSearch-content { .JSearch-content {
display: flex; display: flex;

View File

@ -220,7 +220,8 @@ export function filterAsnycRouter(asyncRouterMap: any, parentCode = '', level =
route.component = resolveComponent(route.code) || BlankLayoutPage; route.component = resolveComponent(route.code) || BlankLayoutPage;
} }
} else { } else {
route.component = resolveComponent(route.code) || BlankLayoutPage; console.log(route.code)
route.component = route.component || resolveComponent(route.code) || BlankLayoutPage;
} }
delete route.name delete route.name
return route return route