原本的删除方法用自定义的包装一下:

<el-button @click="myconfirm(scope.row)">删除</el-button>

 包装方法:(使用js原生confirm)

methods: {
	myconfirm (row) {
		if(confirm('确定要删除吗')==true){
			this.handleDelete(row)
		}
	},
}

 

备注:this.handleDelete(handleDelete); 是框架中自带删除方法,没有确认功能

Logo

前往低代码交流专区

更多推荐