style(环境设置): 优化环境编辑页面
This commit is contained in:
parent
e4d1c0c4de
commit
96fa4357cb
|
@ -1,6 +1,6 @@
|
|||
<template>
|
||||
<el-dialog :close-on-click-modal="false" :title="$t('api_test.environment.environment_config')"
|
||||
:visible.sync="visible" class="environment-dialog" width="80%"
|
||||
:visible.sync="visible" class="environment-dialog" width="80%" top="50px"
|
||||
@close="close" append-to-body destroy-on-close ref="environmentConfig">
|
||||
<el-container v-loading="result.loading">
|
||||
<ms-aside-item :enable-aside-hidden="false" :title="$t('api_test.environment.environment_list')"
|
||||
|
|
|
@ -345,8 +345,7 @@
|
|||
border: solid 1px #EBEEF5;
|
||||
margin-left: 200px;
|
||||
min-height: 400px;
|
||||
max-height: 700px;
|
||||
|
||||
max-height: 550px;
|
||||
}
|
||||
|
||||
.el-row {
|
||||
|
|
|
@ -57,7 +57,7 @@
|
|||
</el-card>
|
||||
|
||||
<!-- 创建、编辑、复制环境时的对话框 -->
|
||||
<el-dialog :visible.sync="dialogVisible" :close-on-click-modal="false" :title="dialogTitle" width="66%">
|
||||
<el-dialog :visible.sync="dialogVisible" :close-on-click-modal="false" :title="dialogTitle" width="66%" top="50px">
|
||||
<environment-edit :environment="currentEnvironment" ref="environmentEdit" @close="close"
|
||||
:project-id="currentProjectId" @refreshAfterSave="refresh">
|
||||
</environment-edit>
|
||||
|
|
|
@ -55,7 +55,7 @@
|
|||
</el-card>
|
||||
|
||||
<!-- 创建、编辑、复制环境时的对话框 -->
|
||||
<el-dialog :visible.sync="dialogVisible" :close-on-click-modal="false" :title="dialogTitle" width="66%">
|
||||
<el-dialog :visible.sync="dialogVisible" :close-on-click-modal="false" :title="dialogTitle" top="50px" width="66%">
|
||||
<el-form label-width="80px" :rules="rules">
|
||||
<el-form-item class="project-item" prop="currentProjectId" :label="$t('project.select')">
|
||||
<el-select @change="handleProjectChange" v-model="currentProjectId" filterable clearable>
|
||||
|
@ -402,6 +402,8 @@ export default {
|
|||
margin-left: 0;
|
||||
width: 100%;
|
||||
border: 0;
|
||||
min-height: 400px;
|
||||
max-height: 450px;
|
||||
}
|
||||
|
||||
.project-item {
|
||||
|
|
Loading…
Reference in New Issue