element-ui 弹出确认提示框

作者: 月中眠_d56d | 来源:发表于2019-08-08 16:15 被阅读4次

    直接上代码:


    image.png
         this.$confirm('此操作将任务状态改为删除状态, 是否继续?', '提示', {
                confirmButtonText: '确定',
                cancelButtonText: '取消',
                type: 'warning'
              }).then(() => {
                //点击确定的操作(调用接口)
              }).catch(() => {
                //几点取消的提示
              });
    

    看效果:


    image.png

    相关文章

      网友评论

        本文标题:element-ui 弹出确认提示框

        本文链接:https://www.haomeiwen.com/subject/eowxjctx.html