Swal.fire({
title: "是否删除",
text: "是否删除?一旦提交,无法恢复!",
icon: "warning",
showCancelButton: true,
confirmButtonColor: "#DD6B55",
confirmButtonText: "确定",
cancelButtonText: "取消"
}).then((isConfirm) =>{
if (isConfirm.value) {
Swal.fire("删除成功", "成功", "success");
}else{
Swal.fire("取消操作", "点击了取消", "error");
}
});