vue-element弹窗

vue-element默认弹窗

  将改方法放置 methods中

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

  

posted @ 2020-04-09 18:24  爱跑步的乌龟  阅读(1171)  评论(0编辑  收藏  举报