vue+element 使用弹框this.$confirm 区分关闭和取消按钮
vue+element 使用弹框this.$confirm 区分关闭和取消按钮
·
需求描述:
点击按钮,弹出弹窗,要做A和B两个选择,要区分开选择和关闭的功能
代码实现:
this.$confirm("是否确定删除选中的数据?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
distinguishCancelAndClose: true, // 重要,设置为true才会把右上角X和取消区分开来
closeOnClickModal: false
}).then(function () {
// TODO 确认通过执行逻辑
}).catch(function (e) {
if (e == 'cancel') {
// TODO 确认不通过执行逻辑
} else if(e == 'close') {
// TODO 右上角X的执行逻辑
}
})
更多推荐
已为社区贡献4条内容
所有评论(0)