Swal.fire({
title: "是否删除",
text: "是否删除?一旦提交,无法恢复!",
icon: "warning",
showCancelButton: true,
confirmButtonColor: "#DD6B55",
confirmButtonText: "确定",
cancelButtonText: "取消"
}).then((isConfirm) =>{
if (isConfirm.value) {
Swal.fire("删除成功", "成功", "success");
}else{
Swal.fire("取消操作", "点击了取消", "error");
}
});
Swal.fire使用
最新推荐文章于 2024-08-17 21:48:20 发布