基于element-ui对话框el-dialog初始化form的校验问题解决
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了基于element-ui对话框el-dialog初始化form的校验问题解决相关的知识,希望对你有一定的参考价值。
参考技术A 初始化有校验提示但是需求不想初始化就有提示
思路:在打开弹框的时候,清除校验结果,但是第一次点击没有必要清除
判断this.$refs['informationMaintenanceFrom']的值,如果不是undefined就清除
点击关闭时也要清除校验结果
这样就不会有高亮的提示啦~
element-ui遮罩层el-dialog的使用
template
<el-button type="text" @click="dialogVisible = true">点击打开 Dialog</el-button> <el-dialog title="提示" :visible.sync="dialogVisible" width="80%" :before-close="handleClose" :close-on-click-modal="false"> <span>这是一段信息</span> <span slot="footer" class="dialog-footer"> <el-button @click="dialogVisible = false">取 消</el-button> <el-button type="primary" @click="dialogVisible = false">确 定</el-button> </span> </el-dialog>
data
dialogVisible:false,
methods
closeShadow() this.dialogVisible=false; , handleClose(done) this.$confirm(‘确认关闭?‘) .then(_ => done(); ) .catch(_ => );
close-on-click-modal:是否可以通过点击 modal 关闭 Dialog 默认值为true
更多api参照官网:https://element.eleme.cn/#/zh-CN/component/quickstart
以上是关于基于element-ui对话框el-dialog初始化form的校验问题解决的主要内容,如果未能解决你的问题,请参考以下文章
elementui解决el-dialog不清空内容的问题,el-dialog关闭时销毁子组件