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