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

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

实现效果:

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

实现代码

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,

你可能感兴趣的:(vue,vue.js,prompt,javascript)