update: 1.优化详情无法查看问题;2.优化PageContainer、Search样式
This commit is contained in:
parent
43bfa89252
commit
676269db6c
|
@ -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%;
|
||||||
}
|
// }
|
||||||
}
|
//}
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -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;
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue