微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

自定义elementUI中的$confirm弹出框 内容、图标、样式

原生API:MessageBox提示框

使用element-ui的$confirm弹出框,它的认样式如下:

 

 

 但是往往我们在项目中 根据需求会定制化,进行弹框内部的自定义内容或样式:

1、交换取消和确定按钮:

 利用消息框的自定义类名customClass 深度修改按钮位置。

复制代码

this.$confirm('此操作将永久删除文件, 是否继续?', '提示', {
  confirmButtonText: '确定',
  cancelButtonText: '取消',
  customClass:'del-model',
  type: 'warning'
}).then(() => {
    this.$message({
    type: 'success',
    message: '删除成功!'
  });
}).catch(() => {
  this.$message({
    type: 'info',
    message: '已取消删除'
  });          
});

//注意这里不能将样式放到scoped中
<style lang='stylus'>
.del-model {
  .el-message-Box__btns {
    .el-button:nth-child(1) {
      float:right;
    }
    .el-button:nth-child(2) {
      margin-right:10px;
      background-color:#2d8cf0;
      border-color:#2d8cf0;
    }
  }
}
</style>

复制代码

修改后的样式如下:

2、自定义内容

复制代码

const h = this.$createElement
this.$confirm('', {
  message:h('div',null, [
    h('i',{ class:'el-icon-question',style:'color:#f90;font-size:30px;' }),
    h('span',{ style:'margin-left:10px;font-size:16px;line-height:30px;font-weight:600;vertical-align:top;'}, '提示'),
    h('p',{ style:'margin:10px 0 0 40px;' },'此操作将永久删除文件, 是否继续?')
  ]),
  confirmButtonText: '确定',
  cancelButtonText: '取消',
  customClass:'del-model',
  cloSEOnClickModal:false,
  cloSEOnPressEscape:false,
})
  .then(() => {
    this.$message({
      type: 'success',
      message: '删除成功!'
    });
  })
  .catch(() => {
    this.$message({
      type: 'info',
      message: '已取消删除'
    });          
  });

复制代码

样式如下:

 

转自:https://www.cnblogs.com/morango/p/15353329.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐