diff --git a/web/src/pages/group/List.vue b/web/src/pages/group/List.vue index fcbbe21..69dab52 100644 --- a/web/src/pages/group/List.vue +++ b/web/src/pages/group/List.vue @@ -377,6 +377,7 @@ title="测试用户登录" :visible.sync="authLoginDialog" width="600px" + custom-class="valgin-dialog" center> @@ -389,6 +390,7 @@ 登录 取 消 + @@ -682,4 +684,20 @@ export default { .el-select { width: 80px; } + +::v-deep .valgin-dialog{ + display: flex; + flex-direction: column; + margin:0 !important; + position:absolute; + top:50%; + left:50%; + transform:translate(-50%,-50%); + max-height:calc(100% - 30px); + max-width:calc(100% - 30px); +} +::v-deep .valgin-dialog .el-dialog__body{ + flex:1; + overflow: auto; +}