基于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关闭时销毁子组件

element-ui dialog设置为点击弹窗以外的区域不关闭弹窗

element-ui遮罩层el-dialog的使用

Element-ui关于form表单的踩坑

element-ui 弹出框在遮罩层下面

element ui 对话框el-dialog关闭事件( ×号 )