r人员简历页面无法滚动问题修复

This commit is contained in:
Chengliang 2024-08-27 16:49:40 +08:00
parent 7fbd34475e
commit bdb67fd47b
2 changed files with 7 additions and 1 deletions

View File

@ -326,7 +326,7 @@ export default class PersonnelResume extends React.Component {
dropMenuDatas={this.getDropMenuDatas()} dropMenuDatas={this.getDropMenuDatas()}
onDropMenuClick={(e) => this.handleMenuClick(e)} onDropMenuClick={(e) => this.handleMenuClick(e)}
> >
<WeaLeftRightLayout ecId={`${this && this.props && this.props.ecId || ''}_WeaLeftRightLayout@7muhhb`} isNew={true} showLeft={defaultShowLeft} leftCom={this.getTree()}> <WeaLeftRightLayout className='org-personnel-resume' ecId={`${this && this.props && this.props.ecId || ''}_WeaLeftRightLayout@7muhhb`} isNew={true} showLeft={defaultShowLeft} leftCom={this.getTree()}>
{ {
!this.isEmptyObject(resumeList) ? <div id='personnel-resume'> !this.isEmptyObject(resumeList) ? <div id='personnel-resume'>
<div className='content'> <div className='content'>

View File

@ -37,4 +37,10 @@
left: 44%; left: 44%;
box-shadow: 2px 2px 10px #909090; box-shadow: 2px 2px 10px #909090;
background-color: #FFFFFF; background-color: #FFFFFF;
}
.org-personnel-resume {
.wea-left-right-layout-right {
overflow: scroll !important;
}
} }