修改对话框 append-to-body 属性

This commit is contained in:
zhengjie
2019-03-05 15:46:46 +08:00
parent b97bd47b90
commit aa964b65af
15 changed files with 15 additions and 15 deletions

View File

@@ -19,7 +19,7 @@
</template>
</el-table-column>
</el-table>
<el-dialog :append-to-body="true" :visible.sync="dialog" title="异常详情" top="0" width="85%">
<el-dialog :visible.sync="dialog" title="异常详情" append-to-body top="0" width="85%">
<span>
{{ errorInfo }}
</span>

View File

@@ -1,5 +1,5 @@
<template>
<el-dialog :append-to-body="true" :visible.sync="dialog" :title="isAdd ? '新增缓存' : '编辑缓存'" width="500px">
<el-dialog :visible.sync="dialog" :title="isAdd ? '新增缓存' : '编辑缓存'" append-to-body width="500px">
<el-form ref="form" :model="form" :rules="rules" size="small" label-width="66px">
<el-form-item label="key" prop="key">
<el-input v-model="form.key" style="width: 370px;"/>