欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

element ui el-button按钮防止多次触发单击事件

程序员文章站 2022-06-25 09:40:07
需求:添加提示,使按钮点击提交数据时,按钮不可以再操作,防止数据重复提交,防止多次触发事件实现思路:添加全局loading让遮罩层后不可点击话不多说上代码 提交这里提交数据为formdatapush(){const loadingObj=this.$loading({ lock:true, text:"提交中...",...

需求:添加提示,使按钮点击提交数据时,按钮不可以再操作,防止数据重复提交,防止多次触发事件

实现思路:添加全局loading让遮罩层后不可点击

话不多说上代码

        <el-button type="primary" @click="push">提交</el-button>

这里提交数据为formdata

push(){
	const loadingObj=this.$loading({
        lock:true,
        text:"提交中...",
        spinner:"el-icon-loading",
        background:"rgba(0,0,0,0.5)",
        target:document.querySelector(".submit-test-dialog")
      })
          formData.append("titleName", this.form.title);
          pushManageCoupon(formData).then(res => {
            if (res.data.status == 200) {
              this.$alert(res.data.code, "提示", {
                confirmButtonText: "确定",
                callback: action => {}
              });
            }
            loadingObj.close();
          });
}

这样当点击提交时loading出现 请求完毕后loading消失 当然也可以使用按钮的disable属性
详情请看element ui官网

本文地址:https://blog.csdn.net/Ares0412/article/details/107961498