feature/2.10.1.2401.01-页面操作日志添加

This commit is contained in:
黎永顺 2024-01-31 11:37:20 +08:00
parent 3093279f29
commit e2898441cf
2 changed files with 12 additions and 1 deletions

View File

@ -29,7 +29,12 @@ class AttendanceDataViewSlide extends Component {
}
componentWillReceiveProps(nextProps, nextContext) {
if (nextProps.visible !== this.props.visible && nextProps.visible) this.viewAttendQuote({}, nextProps);
if (nextProps.visible !== this.props.visible && nextProps.visible) {
document.querySelector(".attendanceRefWrapper").classList.add("zIndex0-attendance");
this.viewAttendQuote({}, nextProps);
} else if (nextProps.visible !== this.props.visible && !nextProps.visible) {
document.querySelector(".attendanceRefWrapper").classList.remove("zIndex0-attendance");
}
}
viewAttendQuote = (extraPayload = {}, props) => {

View File

@ -25,6 +25,12 @@
}
}
.zIndex0-attendance {
.wea-new-top-req {
z-index: 0 !important;
}
}
.attendenceImportWrapper {
.wea-dialog-body {