update 2023.4.10

This commit is contained in:
lb
2023-04-10 10:42:28 +08:00
parent 45fe1d5d3c
commit 9773d2a9ae
7 changed files with 146 additions and 116 deletions

View File

@@ -1,6 +1,6 @@
<template>
<el-dialog
class="dialog-just-form"
class="dialog-with-menu"
style="padding: 40px"
:fullscreen="fullscreen"
:visible="visible"
@@ -113,7 +113,7 @@ export default {
</script>
<style scoped>
.dialog-just-form >>> .el-dialog__body {
.dialog-with-menu >>> .el-dialog__body {
padding-top: 40px !important;
padding-bottom: 40px !important;
/* padding-top: 0 !important;
@@ -130,20 +130,21 @@ export default {
width: 100% !important;
}
.dialog-just-form >>> .el-dialog__header {
.dialog-with-menu >>> .el-dialog__header {
padding: 0;
/* background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25), white); */
}
.dialog-just-form >>> .el-dialog__body {
.dialog-with-menu >>> .el-dialog__body {
height: calc(100% - 72px);
}
.dialog-just-form >>> .el-tabs__content {
.dialog-with-menu >>> .el-tabs__content {
height: calc(100% - 32px);
overflow-y: auto;
padding-right: 12px;
}
.dialog-just-form >>> .el-tabs {
.dialog-with-menu >>> .el-tabs {
height: 100%;
}