vue项目中this.$confirm中,确定和取消执行不同的逻辑

效果图片:
在这里插入图片描述

【确定】按钮执行逻辑A,【取消】按钮执行逻辑B。 [x]按钮关闭confirm,和取消按钮执行不同的逻辑 代码如下:

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的执行逻辑
 
    }
})


Logo

前往低代码交流专区

更多推荐