This commit is contained in:
xd 2024-08-07 08:49:46 +08:00
parent 04befc1497
commit e7d6580e74
1 changed files with 6 additions and 2 deletions

View File

@ -27,7 +27,7 @@
</el-tooltip> </el-tooltip>
<el-dialog :title="switchAccountTitle" :visible.sync="switchAccountOpen" width="500px" append-to-body> <el-dialog :title="switchAccountTitle" :visible.sync="switchAccountOpen" width="500px" class="custom-dialog" append-to-body>
<el-form ref="form" :model="form":rules="rules" label-width="100px" @submit.native.prevent> <el-form ref="form" :model="form":rules="rules" label-width="100px" @submit.native.prevent>
<el-form-item label="账号" prop="account"> <el-form-item label="账号" prop="account">
<el-input v-model="form.account" placeholder="请输入账号" @keyup.enter.native="switchAccountConfirm(form.account)" clearable/> <el-input v-model="form.account" placeholder="请输入账号" @keyup.enter.native="switchAccountConfirm(form.account)" clearable/>
@ -63,7 +63,11 @@
</div> </div>
</div> </div>
</template> </template>
<style>
.custom-dialog .el-dialog__body{
height: 80px;
}
</style>
<script> <script>
import { mapGetters } from 'vuex' import { mapGetters } from 'vuex'
import Breadcrumb from '@/components/Breadcrumb' import Breadcrumb from '@/components/Breadcrumb'