Element Ui 修改MessageBox内容(图片+文字)

  • Post author:
  • Post category:其他

Element Ui 修改MessageBox内容(图片+文字)

效果图:
在这里插入图片描述
核心代码:
在这里插入图片描述

 const Url = require("图片路径");
      this.$confirm("<img src="%20+%20Url%20+%20"><p>确定删除此用户?</p>", "提示", {
        dangerouslyUseHTMLString: true,
        customClass: 'messageBox_class',
        confirmButtonText: "确定",
        showCancelButton: false,
        type: "warning"
      })

css样式:
可根据自己需求,这个只是上面效果图的样式而已。

// MessageBox样式修改
.messageBox_class {
  width: 540px;
  .el-message-box__header {
    background: #f1f2f6 !important;
  }
  .el-message-box__headerbtn .el-message-box__close {
    color: #3a3d46;
  }
  .el-message-box__status.el-icon-warning {
    display: none;
  }
  .el-message-box__status + .el-message-box__message {
    padding: 0;
    margin: 0;
  }
  .el-message-box__message p {
    text-align: center;
    color: #3a3d46;
    margin-top: 10px;
  }
  .el-button--primary {
    background: #4c8bff;
  }
}

版权声明:本文为weixin_45486264原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。