getschedulingNurseWilldeleteById(item,index) {
Dialog.confirm({
title: "提示",
message: "是否确定删除?"
})
.then(async () => {
const res = await schedulingNurseWilldeleteById(item.id); //调用删除接口
if (res.code == 200) {
this.yylist.splice(index, 1);
// this.getschedulingNurseWilllist()
}
})
.catch(() => {});
},
