'123'
This commit is contained in:
parent
04befc1497
commit
e7d6580e74
|
@ -27,7 +27,7 @@
|
|||
</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-item label="账号" prop="account">
|
||||
<el-input v-model="form.account" placeholder="请输入账号" @keyup.enter.native="switchAccountConfirm(form.account)" clearable/>
|
||||
|
@ -63,7 +63,11 @@
|
|||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style>
|
||||
.custom-dialog .el-dialog__body{
|
||||
height: 80px;
|
||||
}
|
||||
</style>
|
||||
<script>
|
||||
import { mapGetters } from 'vuex'
|
||||
import Breadcrumb from '@/components/Breadcrumb'
|
||||
|
|
Loading…
Reference in New Issue