本文介绍: vue element MessageBox.prompt this.$prompt组件禁止或取消显示右上角关闭按钮,取消按钮,及点击遮罩层关闭。

vue element MessageBox.prompt this.$prompt组件禁止或取消显示右上角关闭按钮,取消按钮,及点击遮罩层关闭

实现效果:

在这里插入图片描述

实现代码

MessageBox.prompt('请先完成手机号绑定', '系统提示', {
        confirmButtonText: '提 交',
        showClose: false,
        closeOnClickModal: false,
        showCancelButton: false,
        inputPattern: /[w!#$%&'*+/=?^_`{|}~-]+(?:.[w!#$%&'*+/=?^_`{|}~-]+)*@(?:[w](?:[w-]*[w])?.)+[w](?:[w-]*[w])?/,
        inputErrorMessage: '邮箱格式不正确'
      }).then(() => {
        location.reload()
      })

属性详解

不显示右下角关闭按钮

showClose: false,

取消点击遮罩层关闭

closeOnClickModal: false,

不显示底部取消按钮

showCancelButton: false,

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注